@charset "UTF-8";
/* ======================================================================
 reset
====================================================================== */
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  overflow-y: scroll;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul {
  list-style: none;
  padding-left: 0;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video,
input, select, textarea {
  box-sizing: border-box;
}

html {
  /* Sets a specific default `font-size` for user with `rem` type scales.*/
  font-size: 62.5%;
  /* Changes the default tap highlight to be completely transparent in iOS.*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  color: #333333;
  line-height: 1.6;
  background: #fff;
  font-family: "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Avenir, "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, sans-serif;
  font-weight: 400;
  word-wrap: break-word;
  word-break: break-all;
  min-width: 1300px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body {
    min-width: inherit;
  }
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

strong {
  font-weight: bold;
}

a:link {
  color: #333333;
  text-decoration: none;
  cursor: pointer;
}
a:visited {
  color: #333333;
  text-decoration: none;
}
a:hover {
  color: #333333;
  text-decoration: none;
}
a:active {
  color: #333333;
  text-decoration: none;
}

a[href^=tel] {
  color: #333333;
}

:focus-ring {
  outline: none;
}

.contain {
  width: 1300px;
  min-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* input */
input, textarea, select {
  display: block;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  -o-border-image: none;
     border-image: none;
  background: transparent;
  font-family: inherit;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input::-ms-expand, textarea::-ms-expand, select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

input:-moz-placeholder-shown, textarea:-moz-placeholder-shown {
  color: #333333;
}

input:placeholder-shown, textarea:placeholder-shown {
  color: #333333;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #333333;
}
input::placeholder, textarea::placeholder {
  color: #333333;
}
input:focus:-moz-placeholder-shown, textarea:focus:-moz-placeholder-shown {
  color: #333333;
}
input:focus:placeholder-shown, textarea:focus:placeholder-shown {
  color: #333333;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: #333333;
}
input:focus::placeholder, textarea:focus::placeholder {
  color: #333333;
}

/* ======================================================================
 layout
====================================================================== */
/* =================================
 l-footer
================================= */
.l-footer {
  background: #e8e8e8;
  padding-block: 70px;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding-block: calc(100 /750*100vw);
  }
  .l-footer__logo {
    width: calc(286 /750*100vw);
    margin-inline: auto;
    margin-bottom: calc(100 /750*100vw);
  }
}
.l-footer__outer {
  margin-inline: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l-footer__outer {
    margin-inline: calc(30 /750*100vw);
    display: block;
  }
}
.l-footer__nav {
  display: flex;
  gap: 25px;
  font-family: "Poppins", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
}
.l-footer__nav a:link, .l-footer__nav a:active, .l-footer__nav a:visited {
  color: #333333;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.l-footer__nav a:hover {
  color: #00a7ea;
}
@media screen and (max-width: 768px) {
  .l-footer__nav {
    gap: 0;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: calc(28 /750*100vw);
  }
  .l-footer__nav li {
    width: calc(295 /750*100vw);
    text-align: center;
  }
  .l-footer__nav li a {
    display: block;
    padding-block: calc(30 /750*100vw);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
  .l-footer__nav li:nth-of-type(1), .l-footer__nav li:nth-of-type(2) {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
  }
}
.l-footer__nav-ja {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  font-size: 1.4rem;
  margin-block: 16px;
}
@media screen and (max-width: 768px) {
  .l-footer__nav-ja {
    justify-content: center;
    gap: calc(40 /750*100vw);
    font-size: calc(24 /750*100vw);
    margin-block: calc(100 /750*100vw) calc(50 /750*100vw);
  }
}
.l-footer__nav-ja a:link, .l-footer__nav-ja a:active, .l-footer__nav-ja a:visited {
  color: #333333;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.l-footer__nav-ja a:hover {
  color: #00a7ea;
}
.l-footer__copy {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  color: #999999;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .l-footer__copy {
    font-size: calc(20 /750*100vw);
    text-align: center;
  }
}

/* ======================================================================
 layout
====================================================================== */
/* =================================
 l-content__size
================================= */
.l-content__size-sp-1 {
  padding: 0 4%;
}
@media screen and (min-width: 1025px) {
  .l-content__size-sp-1 {
    max-width: 1300px;
    margin: 0 auto;
  }
}

.l-content__size-pc-1 {
  width: 1300px;
  margin: 0 auto;
  padding-inline: 50px;
}
@media screen and (max-width: 768px) {
  .l-content__size-pc-1 {
    width: auto;
    padding: 0 calc(30 /750*100vw);
  }
}

/* =================================
 l-header
================================= */
.l-header {
  z-index: 999;
  position: fixed;
  top: 30px;
  left: 0;
  width: 100%;
  min-width: 1300px;
}
@media screen and (max-width: 768px) {
  .l-header {
    min-width: inherit;
    top: calc(20 /750*100vw);
  }
}
.l-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  box-shadow: 0px 1px 10px 0px rgba(10, 2, 5, 0.15);
  border-radius: 40px;
  padding: 17px 20px;
  margin-inline: 30px;
}
@media screen and (max-width: 768px) {
  .l-header nav {
    border-radius: calc(55 /750*100vw);
    padding: calc(10 /750*100vw) calc(10 /750*100vw) calc(10 /750*100vw) calc(20 /750*100vw);
    margin-inline: calc(20 /750*100vw);
  }
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    width: calc(348 /750*100vw);
  }
}
.l-header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav a:link, .l-header__nav a:active, .l-header__nav a:visited {
  color: #333333;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.l-header__nav a:hover {
  color: #00a7ea;
}
.l-header__nav-contact a {
  background: #00a7ea;
  border-radius: 20px;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  width: 180px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-header__nav-contact a:after {
  content: "";
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid #fff;
  border-bottom: 0;
  margin-left: 12px;
}
.l-header__nav-contact a:link, .l-header__nav-contact a:active, .l-header__nav-contact a:visited {
  color: #fff;
  transition: background 0.2s;
}
.l-header__nav-contact a:hover {
  background: #0057bd;
}
.l-header__toggle {
  display: none;
  position: relative;
  width: calc(90 /750*100vw);
  height: calc(90 /750*100vw);
  margin-right: calc(10 /750*100vw);
  background: #00a7ea;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .l-header__toggle {
    display: block;
  }
}
.l-header__toggle span {
  width: calc(36 /750*100vw);
  height: calc(5 /750*100vw);
  background: #fff;
  border-radius: calc(3 /750*100vw);
  display: block;
  position: absolute;
  left: calc(27 /750*100vw);
  transition: transform 0.6s ease-in-out, top 0.5s ease;
}
.l-header__toggle span:nth-of-type(1) {
  top: calc(26 /750*100vw);
}
.l-header__toggle span:nth-of-type(2) {
  top: calc(42 /750*100vw);
}
.l-header__toggle span:nth-of-type(3) {
  top: calc(58 /750*100vw);
}
.l-header.active .l-header__toggle span:nth-of-type(1) {
  top: calc(42 /750*100vw);
  transform: rotate(45deg);
}
.l-header.active .l-header__toggle span:nth-of-type(2) {
  top: calc(42 /750*100vw);
  width: 0;
  left: 50%;
}
.l-header.active .l-header__toggle span:nth-of-type(3) {
  top: calc(42 /750*100vw);
  transform: rotate(-45deg);
}

/* =================================
 l-header__sp
================================= */
.l-header__sp {
  z-index: 999;
}

/* =================================
 l-menu
================================= */
.l-menu {
  z-index: 998;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: rgba(0, 0, 0, 0.85);
  font-family: "Poppins", sans-serif;
  font-size: calc(50 /750*100vw);
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-top: calc(242 /750*100vw);
  text-align: center;
  overflow: auto;
  display: none;
}
.l-menu__nav li + li {
  margin-top: calc(80 /750*100vw);
}
.l-menu__nav a {
  color: #fff;
}

/* ======================================================================
 layout
====================================================================== */
/* =================================
 l-loader
================================= */
.l-loader {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-loader.hide {
  pointer-events: none;
  opacity: 0;
  transition: opacity 500ms;
}
.l-loader__logo {
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 117px);
}
.l-loader .spinner-box {
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
.l-loader .pulse-container {
  width: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-loader .pulse-bubble {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #0057bd;
}
.l-loader .pulse-bubble-1 {
  animation: pulse 0.4s ease 0s infinite alternate;
}
.l-loader .pulse-bubble-2 {
  animation: pulse 0.4s ease 0.2s infinite alternate;
}
.l-loader .pulse-bubble-3 {
  animation: pulse 0.4s ease 0.4s infinite alternate;
}

/* =================================
 l_breadcrumbs
================================= */
/* =================================
 l_main_visual
================================= */
/* =================================
 l_main
================================= */
/* ======================================================================
 layout
====================================================================== */
/* =================================
 l_side
================================= */
.l_side {
  z-index: 996;
}

.c-btn__submit button, .c-btn__back button {
  width: 240px;
  height: 46px;
  background: #00a7ea;
  border-radius: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
@media screen and (max-width: 768px) {
  .c-btn__submit button, .c-btn__back button {
    width: calc(370 /750*100vw);
    height: calc(90 /750*100vw);
    border-radius: calc(45 /750*100vw);
    font-size: calc(30 /750*100vw);
  }
}
.c-btn__submit button:after, .c-btn__back button:after {
  content: "";
  border-style: solid;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #fff;
  border-right: 0;
  margin-left: 14px;
}
@media screen and (max-width: 768px) {
  .c-btn__submit button:after, .c-btn__back button:after {
    margin-left: calc(25 /750*100vw);
  }
}
.c-btn__submit button:hover, .c-btn__back button:hover {
  background: #0057bd;
}
.c-btn__back button {
  background: #999;
}
.c-btn a {
  width: 240px;
  height: 46px;
  background: #00a7ea;
  border-radius: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
@media screen and (max-width: 768px) {
  .c-btn a {
    width: calc(370 /750*100vw);
    height: calc(90 /750*100vw);
    border-radius: calc(45 /750*100vw);
    font-size: calc(30 /750*100vw);
  }
}
.c-btn a:after {
  content: "";
  border-style: solid;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #fff;
  border-right: 0;
  margin-left: 14px;
}
@media screen and (max-width: 768px) {
  .c-btn a:after {
    margin-left: calc(25 /750*100vw);
  }
}
.c-btn a:hover {
  background: #0057bd;
}

@keyframes up {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes down {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes left {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes right {
  0% {
    transform: translateX(20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0.25;
    transform: scale(0.75);
  }
}
/* アニメーション */
.animation {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 5%;
  box-sizing: border-box;
}
.animation div {
  width: 23%;
  height: 300px;
  margin: 0 0 2.5vw;
  padding: 3%;
  box-sizing: border-box;
  background: #09c;
}

.c-sa {
  opacity: 0;
}
.c-sa.show {
  opacity: 1;
}

.c-sa__up.show {
  animation: up 1s ease-in-out;
}

.c-sa__down.show {
  animation: down 1s ease-in-out;
}

.c-sa__left.show {
  animation: left 1s ease-in-out;
}

.c-sa__right.show {
  animation: right 1s ease-in-out;
}

.c-ttl {
  font-size: 3.2rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-ttl {
    font-size: calc(48 /750*100vw);
  }
}
.c-ttl:before {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../img/index/icon_tile.png);
  margin-right: 13px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .c-ttl:before {
    width: calc(30 /750*100vw);
    height: calc(30 /750*100vw);
    background: url(../img/index/sp/icon_tile.png) contain;
    margin-right: calc(15 /750*100vw);
  }
}

.c-txt {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-txt {
    font-size: calc(28 /750*100vw);
  }
}

.c-link {
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .c-link {
    font-size: calc(28 /750*100vw);
  }
}
.c-link a {
  color: #00a7ea;
  border-bottom: 1px solid #00a7ea;
  padding-bottom: 4px;
  transition: border-bottom 0.2s;
}
.c-link a:hover {
  border-color: transparent;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}
.c-news__list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
@media screen and (max-width: 768px) {
  .c-news__list {
    flex-direction: column;
    gap: calc(46 /750*100vw);
  }
}
.c-news__item {
  width: 280px;
}
@media screen and (max-width: 768px) {
  .c-news__item {
    width: inherit;
    display: flex;
    justify-content: space-between;
    margin-inline: calc(30 /750*100vw);
  }
}
.c-news__item-img {
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .c-news__item-img {
    width: 38.0952380952%;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-news__item-info {
    width: 57.1428571429%;
  }
}
.c-news__item-date {
  font-size: 1.4rem;
  color: #999999;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .c-news__item-date {
    font-size: calc(24 /750*100vw);
    margin-bottom: calc(24 /750*100vw);
    line-height: 1;
  }
}
.c-news__item-ttl {
  font-weight: 400;
}

.p-index__mv {
  background: url(../img/index/mv.jpg) center center/cover no-repeat;
  height: 700px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-index__mv {
    background: url(../img/index/sp/mv.jpg) center center/cover no-repeat;
    height: calc(1050 /750*100vw);
  }
}
.p-index__mv:before {
  content: "";
  position: absolute;
  left: calc(50% - 50px);
  bottom: -70px;
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p-index__mv:before {
    left: calc(50% - (65 /750*100vw));
    bottom: calc(-90 /750*100vw);
    width: calc(130 /750*100vw);
    height: calc(130 /750*100vw);
  }
}
.p-index__mv:after {
  content: "";
  position: absolute;
  left: calc(50% - 6px);
  bottom: 2px;
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid #00a7ea;
  border-bottom: 0;
  animation: scroll 1000ms infinite forwards;
}
@media screen and (max-width: 768px) {
  .p-index__mv-catch {
    margin-top: calc(200 /750*100vw);
  }
}
.p-index__mv-catch-ja {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-right: 30px;
  margin-bottom: 20px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-index__mv-catch-ja {
    font-size: calc(30 /750*100vw);
    color: #153a76;
    margin-right: calc(30 /750*100vw);
    margin-bottom: calc(30 /750*100vw);
    text-shadow: 0px 0px 3.3px white;
  }
}
.p-index__mv-catch-en {
  font-family: "Poppins", sans-serif;
  font-size: 7rem;
  font-weight: 600;
  color: #fff;
  text-align: right;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-index__mv-catch-en {
    font-size: calc(84 /750*100vw);
    line-height: 1.39;
  }
}
.p-index__mv-catch-en span {
  background: rgba(0, 42, 106, 0.75);
  padding-inline: 30px;
}
@media screen and (max-width: 768px) {
  .p-index__mv-catch-en span {
    padding-inline: calc(30 /750*100vw);
  }
}
.p-index__sec {
  padding-block: 120px;
}
@media screen and (max-width: 768px) {
  .p-index__sec {
    padding-block: calc(140 /750*100vw);
  }
}
@media screen and (max-width: 768px) {
  .p-index__concept {
    padding-bottom: 0;
  }
}
.p-index__concept-inner {
  display: flex;
  justify-content: space-between;
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  .p-index__concept-inner {
    display: block;
    margin-right: 0;
  }
}
.p-index__concept-left {
  width: calc(100% - 392px);
}
@media screen and (max-width: 768px) {
  .p-index__concept-left {
    width: inherit;
    margin-right: calc(30 /750*100vw);
  }
}
.p-index__concept .c-ttl {
  margin-left: 23px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-index__concept .c-ttl {
    margin-left: 0;
    margin-bottom: calc(55 /750*100vw);
  }
}
.p-index__concept-ttl {
  font-size: 3.6rem;
  font-weight: 700;
  margin-left: 50px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-index__concept-ttl {
    font-size: calc(50 /750*100vw);
    margin-left: calc(30 /750*100vw);
    margin-bottom: calc(50 /750*100vw);
  }
}
.p-index__concept .c-txt {
  margin-left: 50px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-index__concept .c-txt {
    margin-left: calc(30 /750*100vw);
    line-height: 1.8;
    font-size: calc(30 /750*100vw);
  }
}
.p-index__concept-name {
  text-align: right;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-index__concept-name {
    margin-top: calc(50 /750*100vw);
  }
}
.p-index__concept-img {
  width: 332px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__concept-img {
    width: calc(490 /750*100vw);
    margin: calc(80 /750*100vw) calc(-30 /750*100vw) calc(-141 /750*100vw) auto;
  }
}
.p-index__concept-img img {
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__concept-img img {
    border-radius: calc(30 /750*100vw) 0 0 calc(30 /750*100vw);
  }
}
.p-index__service {
  background: #f3f3f3;
}
@media screen and (max-width: 768px) {
  .p-index__service {
    padding-top: calc(280 /750*100vw);
  }
}
.p-index__service .c-ttl {
  margin-bottom: 80px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-index__service .c-ttl {
    margin-bottom: calc(140 /750*100vw);
  }
}
.p-index__service-list {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .p-index__service-list {
    flex-direction: column;
    gap: calc(70 /750*100vw);
  }
}
.p-index__service-item {
  width: 340px;
  background: #fff;
  border-radius: 15px;
  padding: 30px 30px 50px;
}
@media screen and (max-width: 768px) {
  .p-index__service-item {
    width: inherit;
    padding: calc(100 /750*100vw) calc(30 /750*100vw);
  }
}
.p-index__service-item-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0057bd;
  height: 3.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__service-item-ttl {
    font-size: calc(40 /750*100vw);
    height: inherit;
    margin-bottom: calc(50 /750*100vw);
  }
}
.p-index__service-item-img {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__service-item-img {
    width: calc(523 /750*100vw);
    margin-inline: auto;
    margin-bottom: calc(28 /750*100vw);
  }
}
.p-index__service-item .c-txt {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-index__service-item .c-txt {
    margin-inline: calc(10 /750*100vw);
    margin-bottom: calc(60 /750*100vw);
  }
}
.p-index__service-item-dl + .p-index__service-item-dl {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .p-index__service-item-dl + .p-index__service-item-dl {
    margin-top: calc(30 /750*100vw);
  }
}
.p-index__service-item-dl dt {
  background: linear-gradient(to right, #0057bd, #00a7ea);
  color: #fff;
  text-align: center;
  border-radius: 13px;
  font-size: 1.4rem;
  padding-block: 2px;
}
@media screen and (max-width: 768px) {
  .p-index__service-item-dl dt {
    border-radius: calc(25 /750*100vw);
    font-size: calc(26 /750*100vw);
    padding-block: calc(6 /750*100vw);
  }
}
.p-index__service-item-dl dd {
  margin-top: 15px;
  margin-inline: 10px;
}
@media screen and (max-width: 768px) {
  .p-index__service-item-dl dd {
    margin-top: calc(28 /750*100vw);
    margin-inline: calc(10 /750*100vw);
  }
}
.p-index__service-item-dl ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.6rem;
  gap: 0 1em;
}
@media screen and (max-width: 768px) {
  .p-index__service-item-dl ul {
    font-size: calc(28 /750*100vw);
  }
}
.p-index__service-item-dl li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.2rem;
  color: #0057bd;
  margin-right: 2px;
}
@media screen and (max-width: 768px) {
  .p-index__service-item-dl li:before {
    font-size: calc(24 /750*100vw);
  }
}
.p-index__about {
  background: url(../img/index/bg_about.jpg) center center/cover no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-index__about {
    background: url(../img/index/sp/bg_about.jpg) center center/cover no-repeat;
    background-attachment: fixed;
  }
}
.p-index__about:before {
  content: "";
  background: inherit;
  filter: blur(10px);
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
}
.p-index__about .c-ttl {
  margin-bottom: 80px;
  justify-content: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-index__about .c-ttl {
    margin-bottom: calc(70 /750*100vw);
  }
}
.p-index__about-box {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: #fff;
  padding: 50px 100px;
}
@media screen and (max-width: 768px) {
  .p-index__about-box {
    border-radius: calc(30 /750*100vw);
    padding: calc(60 /750*100vw) calc(30 /750*100vw);
  }
}
.p-index__about-table {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.p-index__about-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: block;
}
.p-index__about-table th, .p-index__about-table td {
  padding-block: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__about-table th, .p-index__about-table td {
    display: block;
    padding: calc(40 /750*100vw) calc(10 /750*100vw);
  }
}
.p-index__about-table th {
  width: 140px;
  text-align: left;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-index__about-table th {
    width: 100%;
    font-size: calc(24 /750*100vw);
    padding-bottom: 0;
  }
}
.p-index__about-table td {
  width: calc(100% - 140px);
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-index__about-table td {
    width: 100%;
    font-size: calc(28 /750*100vw);
    padding-top: 0;
  }
}
.p-index__about-table td .u-pc {
  display: inline;
}
@media screen and (max-width: 768px) {
  .p-index__about-table td .u-pc {
    display: none;
  }
}
.p-index__news-outer {
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-index__news-outer {
    display: block;
  }
}
.p-index__news-left {
  width: calc(100% - 900px);
}
@media screen and (max-width: 768px) {
  .p-index__news-left {
    width: inherit;
  }
}
.p-index__news .c-ttl {
  margin-left: 23px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-index__news .c-ttl {
    margin-left: 0;
    margin-bottom: calc(82 /750*100vw);
  }
}
.p-index__news .c-link {
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .p-index__news .c-link {
    margin-left: 0;
    text-align: center;
  }
}
.p-index__news-list {
  width: 900px;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .p-index__news-list {
    width: inherit;
    gap: calc(46 /750*100vw);
    margin-bottom: calc(60 /750*100vw);
  }
}
.p-index__contact {
  background: #f3f3f3;
}
.p-index__contact-outer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  .p-index__contact-outer {
    display: block;
    margin-right: 0;
  }
}
.p-index__contact .c-ttl {
  margin-left: 23px;
}
@media screen and (max-width: 768px) {
  .p-index__contact .c-ttl {
    margin-left: 0;
    margin-bottom: calc(80 /750*100vw);
  }
}
.p-index__contact-inner {
  width: 833px;
}
@media screen and (max-width: 768px) {
  .p-index__contact-inner {
    width: inherit;
    margin-inline: calc(30 /750*100vw);
  }
}
.p-index__contact-table {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .p-index__contact-table {
    margin-top: calc(70 /750*100vw);
  }
}
.p-index__contact-table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  display: block;
}
.p-index__contact-table th {
  width: 170px;
  padding: 20px 0 20px 20px;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-index__contact-table th {
    width: 100%;
    display: block;
    padding: calc(35 /750*100vw) 0 calc(18 /750*100vw) calc(10 /750*100vw);
    font-size: calc(24 /750*100vw);
  }
}
.p-index__contact-table td {
  width: 683px;
  padding: 20px 20px 20px 0;
}
@media screen and (max-width: 768px) {
  .p-index__contact-table td {
    width: 100%;
    display: block;
    padding: 0 calc(10 /750*100vw) calc(30 /750*100vw) calc(10 /750*100vw);
  }
}
.p-index__contact-table input[type=text], .p-index__contact-table textarea {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  width: 100%;
  font-size: 1.6rem;
  padding: 6px 15px;
}
@media screen and (max-width: 768px) {
  .p-index__contact-table input[type=text], .p-index__contact-table textarea {
    border-radius: calc(12 /750*100vw);
    padding: calc(12 /750*100vw) calc(20 /750*100vw);
  }
}
.p-index__contact-table textarea {
  height: 130px;
}
@media screen and (max-width: 768px) {
  .p-index__contact-table textarea {
    height: calc(230 /750*100vw);
  }
}
.p-index__contact-label {
  display: flex;
  font-size: 1.6rem;
  margin-block: 50px 30px;
}
@media screen and (max-width: 768px) {
  .p-index__contact-label {
    font-size: calc(28 /750*100vw);
    margin-block: calc(60 /750*100vw);
  }
}
.p-index__contact-label a {
  color: #00a7ea;
  border-bottom: 1px solid #00a7ea;
  padding-bottom: 2px;
  transition: border-bottom 0.2s;
}
.p-index__contact-label a:hover {
  border-color: transparent;
}
.p-index__contact input[type=checkbox] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  margin-right: 9px;
}
@media screen and (max-width: 768px) {
  .p-index__contact input[type=checkbox] {
    margin-right: calc(15 /750*100vw);
  }
}
@media screen and (max-width: 768px) {
  .p-index__contact .c-btn__submit {
    display: flex;
    justify-content: center;
  }
}

.p-thanks__box {
  background: #fff;
  padding-block: 200px 100px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-thanks__box {
    padding-block: calc(280 /750*100vw) calc(140 /750*100vw);
    background: transparent;
  }
}
.p-thanks__ttl {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.p-thanks__txt {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.p-thanks .c-btn {
  display: flex;
  justify-content: center;
}

.p-confirm__box {
  padding-block: 60px;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-confirm__box {
    padding-block: calc(60 /750*100vw);
  }
}
.p-confirm__box .l-content__size-pc-1 {
  background: #fff;
  padding-block: 80px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-confirm__box .l-content__size-pc-1 {
    padding: calc(80 /750*100vw) 0;
    background: transparent;
  }
}
.p-confirm__box h3 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-confirm__box #formWrap {
    background: #fff;
    padding: calc(80 /750*100vw) calc(40 /750*100vw);
  }
}
.p-confirm__text-1 {
  margin-bottom: 20px;
}
.p-confirm__text-2 {
  margin-block: 20px;
}
@media screen and (max-width: 768px) {
  .p-confirm__text-2 {
    text-align: left;
  }
}

.p-subcon__contents {
  padding-block: 200px 120px;
}
.p-subcon__contents .c-ttl {
  margin-bottom: 80px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-subcon__contents .c-ttl {
    margin-bottom: calc(140 /750*100vw);
  }
}
@media screen and (max-width: 768px) {
  .p-subcon__contents {
    padding-block: calc(300 /750*100vw) calc(140 /750*100vw);
  }
}

@media screen and (min-width: 769px) {
  .u-pc {
    display: block;
  }
  .u-sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}