@charset "UTF-8";
/* Universal box-sizing reset */
*,
*::before,
*::after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  zoom: 1;
}

/* Set default styles for html */
html {
  -webkit-text-size-adjust: none;
  overflow-x: hidden;
  overflow-y: scroll;
  box-sizing: border-box;
  font-size: 100%;
}

/* Reset margin for common block-level elements */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
input,
textarea,
label {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  word-break: auto-phrase;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-size-adjust: 0.5;
}

html,
body {
  font-weight: normal;
  font-style: normal;
  font-optical-sizing: auto;
  font-style: normal;
  max-width: 100vw;
  overflow-x: clip;
}

strong {
  font-style: normal;
  line-height: 1;
  font-weight: 600;
}

/* Reset default link styles */
a {
  text-decoration: none; /* Remove underlines from all links */
  color: inherit; /* Make sure the link color inherits the surrounding text color */
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  outline: none;
  cursor: pointer;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Reset styles for form elements */
input,
button,
textarea,
select {
  font: inherit;
  border: none; /* Remove borders on form elements */
  background: transparent; /* Make background transparent */
}

/* Remove animations and transitions for users with reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
li {
  list-style-type: none;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=submit],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  justify-content: center;
}

iframe {
  border: none;
  display: block;
}

a {
  transition: all 0.3s ease;
}
a:hover {
  transition: all 0.3s ease;
}

.js-tick {
  overflow: hidden;
  white-space: nowrap;
}

.js-tick-track {
  display: inline-flex;
  will-change: transform;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-animation: loopText var(--loop-duration, 10s) linear infinite;
          animation: loopText var(--loop-duration, 10s) linear infinite;
}

.js-tick-item {
  display: inline-block;
  padding-right: 4rem;
}

@-webkit-keyframes loopText {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--loop-distance, 0px)), 0, 0);
  }
}

@keyframes loopText {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--loop-distance, 0px)), 0, 0);
  }
}
.js-tab-panel {
  display: none;
  opacity: 0;
}
.js-tab-panel.is-show {
  display: block;
  -webkit-animation: panel-show 0.6s ease forwards;
  animation: panel-show 0.6s ease forwards;
}

@-webkit-keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
:root {
  /* Roboto Condensed */
  --robo:
    "roboto-condensed", "Roboto Condensed", "Arial Narrow", "Helvetica Neue",
    "Helvetica", "Arial", sans-serif;
  /* DNP 秀英ゴシック銀 */
  --shuei:
    "dnp-shuei-gothic-gin-std", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Yu Gothic Medium", "Yu Gothic", "Meiryo", "Segoe UI", sans-serif;
  /* Zen Kaku Gothic New */
  --zen:
    "zen-kaku-gothic-new", "Zen Kaku Gothic New", "Hiragino Sans",
    "ヒラギノ角ゴ ProN W3", "Yu Gothic", "YuGothic", "Meiryo", "メイリオ",
    sans-serif;
}

body {
  font-family: var(--zen);
  font-weight: 500;
  font-style: normal;
  font-optical-sizing: auto;
  line-height: 2;
  letter-spacing: normal;
  overflow-x: clip;
  color: #000;
  word-break: auto-phrase;
}
@media (min-width: 768px) {
  body {
    letter-spacing: 0.1em;
  }
}

html.is-nav-open,
body.is-nav-open {
  overflow: hidden;
  height: 100%;
}

.bg-fix {
  background-image: url("../images/common-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--zen);
  font-weight: 900;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

a {
  color: #000;
  text-decoration: none !important;
}

a:hover {
  color: #36abff;
  cursor: pointer;
}

/* フォント */
.zen-m {
  font-family: var(--zen) !important;
  font-weight: 500 !important;
}

.fc-white {
  color: #fff !important;
}

.fc-blue {
  color: #0a3961 !important;
}

.fc-red {
  color: #e40000 !important;
}

.fc-blue2 {
  color: #1387ed !important;
}

.v-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
}

.text-shadow {
  text-shadow: 2px 2px 5px black;
}

.text-shadow-white {
  text-shadow: 2px 2px 5px white;
}

.has-shadow {
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
}

/* 背景 */
.bg-white {
  background-color: #fff;
}

.bg-black {
  background-color: #26200e;
}

.bg-red {
  background-color: #c86828;
}

.r-4 {
  border-radius: 4px;
}

/*罫線*/
.b-black {
  border: 1px solid #000;
}

.b-red {
  border: 1px solid #c86828;
}

.bl-black {
  border-left: 1px solid #000;
}

.br-black {
  border-right: 1px solid #000;
}

.bb-black {
  border-bottom: 1px solid #000;
}

.bt-black {
  border-bottom: 1px solid #000;
}

/* ボタン */
.button {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s;
  background-color: #fff;
  border: 2px #00305a solid;
  border-radius: 100px;
  padding: 1.2rem 2rem;
  gap: 0.8rem;
  min-width: 240px;
  max-width: 280px;
}
.button::before {
  content: "";
  display: block;
  width: 50px;
  height: 10px;
  background-image: url("../images/arrow.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.button.free {
  width: 80%;
  max-width: 390px;
  padding: 1.2rem 1.4rem;
}
@media (min-width: 768px) {
  .button.free {
    width: 95%;
  }
}
@media (min-width: 992px) {
  .button.free {
    width: 80%;
  }
}
.button p {
  font-size: clamp(0.75rem, 0.629rem + 0.53vw, 1.125rem);
  color: #202020 !important;
  line-height: 1.8;
}
.button:hover {
  background-color: #ffff9e;
  box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.2);
  transform: scale(1.03);
}
.button:hover::before {
  right: 18px;
}

.inst-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.2rem 2.4rem;
  background-color: #fff;
  transition: all 0.3s;
  border: solid 1px #5d3209;
}

.inst-btn p {
  font-size: clamp(0.875rem, 0.673rem + 0.88vw, 1.5rem);
  color: #5d3209;
}

.inst-btn img {
  width: 26px;
}

.inst-btn:hover {
  background-color: #e8e1d1;
}

.contact-button1 {
  width: 100%;
  max-width: 300px;
}
.contact-button1:hover {
  box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.2);
  transform: scale(1.03);
}

/* ナビ */
.a-nav-menu {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: -100px;
  width: 100%;
  height: 100%;
  z-index: 900;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  overflow-y: auto;
  background: linear-gradient(121deg, #00529a 21.51%, #0b6ec4 81.24%);
}
@media (min-width: 768px) {
  .a-nav-menu {
    width: 50%;
    gap: 3rem;
  }
}
@media (orientation: landscape) and (max-height: 750px) {
  .a-nav-menu {
    display: flex;
    width: 100%;
    padding-block: 380px;
    gap: 3rem;
  }
}

.a-nav-menu.is-active {
  visibility: visible;
  opacity: 1;
  left: 0;
}

.a-nav-menu.edit {
  visibility: visible;
  opacity: 1;
  left: 0;
}

.nav-menu-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  font-family: var(--shuei);
  font-weight: 600;
  text-align: center;
  flex: 1;
}
@media (min-width: 768px) {
  .nav-menu-box {
    gap: 1rem;
    flex: none;
  }
}
@media (orientation: landscape) and (max-height: 750px) {
  .nav-menu-box {
    gap: 1rem;
    flex: none;
  }
}
.nav-menu-box .button-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  max-width: 250px;
  width: 100%;
  margin-block: 0.5rem;
}
.nav-menu-box .button-box .nav-button {
  width: 100%;
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
  transition: all 0.3s;
}
.nav-menu-box .button-box .nav-button .p1 {
  color: #1387ed !important;
  margin: auto;
}
.nav-menu-box .button-box .nav-button .p2 {
  color: #06c755 !important;
  margin: auto;
}
.nav-menu-box .button-box .nav-button .p3 {
  color: #f69134 !important;
  margin: auto;
}
.nav-menu-box a {
  min-height: auto;
}
.nav-menu-box a p {
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.125rem);
  color: #fff;
  transition: all 0.3s;
  line-height: 1.5;
}

.nav-menu-box2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #023c6f;
  width: 100%;
  padding-block: 1.6rem;
}
@media (min-width: 768px) {
  .nav-menu-box2 {
    padding-block: 2rem;
    gap: 0.8rem;
  }
}
.nav-menu-box2 p {
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.125rem);
  font-family: var(--shuei);
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.nav-menu-box2 .reserv-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.nav-menu-box2 .reserv-button .line-button {
  height: 60px;
  transition: all 0.3s;
  display: flex;
}
.nav-menu-box2 .reserv-button .line-button:hover {
  transform: scale(1.05);
}
.nav-menu-box2 .reserv-button .phone-button {
  height: 60px;
  transition: all 0.3s;
  display: flex;
}
.nav-menu-box2 .reserv-button .phone-button:hover {
  transform: scale(1.05);
}

.header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}
@media (min-width: 768px) {
  .header-wrap {
    background-color: #fff;
  }
}
@media (min-width: 1200px) {
  .header-wrap {
    padding: 0;
  }
}

.main-box {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
}

.a-burger {
  position: relative;
  z-index: 1100;
  cursor: pointer;
  border: 1px solid #00529a;
  border-radius: 5px;
  background-color: #fff;
  width: 52px;
  height: 52px;
  padding: 0;
  display: block;
  margin: 1rem;
}
@media (min-width: 768px) {
  .a-burger {
    margin: 0.8rem 1rem;
  }
}
@media (min-width: 1200px) {
  .a-burger {
    display: none;
  }
}

.a-burger div {
  height: 1px;
  background-color: #00529a;
  position: absolute;
  left: 11px;
  width: 28px;
  transform-origin: center;
  transition: all 0.3s;
  padding: 0;
  margin: 0;
  min-height: 1px !important;
}

.a-burger div:nth-child(1) {
  top: 18px;
}

.a-burger div:nth-child(2) {
  bottom: 18px;
}

.a-burger.is-active div:nth-child(1) {
  transform: rotate(-45deg);
  top: 25px;
}

.a-burger.is-active div:nth-child(2) {
  transform: rotate(45deg);
  bottom: 24px;
}

.header-box {
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  gap: 1.5rem;
  height: 100%;
  padding: 0 2rem;
  /* 開いた状態 */
}
.header-box .gnav-item {
  position: relative;
  height: 100%;
  transition: all 0.3s;
  padding-block: 1.4rem;
}
.header-box .gnav-item:hover {
  background-color: #a8dbff;
  padding-inline: 0.5rem;
}
.header-box .mega-menu {
  position: absolute;
  top: 100%;
  left: -80%;
  width: 100vw;
  background: #e1f1ff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 4rem;
}
.header-box .mega-menu .icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  text-align: center;
  max-width: 200px;
  transition: all 0.3s;
}
.header-box .mega-menu .icon-box:hover img {
  opacity: 0.9;
}
.header-box .mega-menu .icon-box p {
  font-size: 18px;
}
.header-box .mega-menu.is-open,
.header-box .mega-menu.edit {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.header-box a {
  min-width: auto;
}
.header-box p {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  color: #031e31;
  transition: all 0.3s;
  font-family: var(--shuei);
  font-weight: 600;
}
.header-box a:hover p {
  color: #36abff;
}
@media (min-width: 1200px) {
  .header-box {
    display: flex;
  }
}

.reserv-button-box {
  display: none;
  height: auto;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background-color: #023c6f;
  transition: all 0.3s;
  padding: 0 1.4rem;
}
@media (min-width: 768px) {
  .reserv-button-box {
    display: flex;
  }
}
@media (min-width: 1200px) {
  .reserv-button-box {
    gap: 1.6rem;
  }
}
.reserv-button-box p {
  font-size: clamp(0.875rem, 0.855rem + 0.09vw, 0.938rem);
  font-family: var(--shuei);
  line-height: 1.6;
  color: #fff;
}
.reserv-button-box .line-button {
  height: 46px;
  transition: all 0.3s;
}
.reserv-button-box .line-button:hover {
  transform: scale(1.05);
}
.reserv-button-box .phone-button {
  height: 46px;
  transition: all 0.3s;
}
.reserv-button-box .phone-button:hover {
  transform: scale(1.05);
}

/* フッター */
.foot-wrap {
  width: 100%;
  background-color: #fff;
  overflow: hidden;
  padding-block: 4rem 3rem;
}
@media (min-width: 768px) {
  .foot-wrap {
    padding-block: 6rem 4rem;
  }
}

.foot-box {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .foot-box {
    flex-direction: row;
    align-items: stretch;
    padding-inline: 0;
    gap: 2rem;
  }
}
@media (min-width: 992px) {
  .foot-box {
    max-width: 882px;
  }
}
.foot-box .l {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  font-size: clamp(0.75rem, 0.669rem + 0.35vw, 1rem);
}
@media (min-width: 768px) {
  .foot-box .l {
    flex: 1;
    align-items: start;
    text-align: start;
  }
}
.foot-box .r {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .foot-box .r {
    flex: 1.1;
    align-items: start;
  }
}

.list-box {
  display: flex;
  align-items: start;
  justify-content: center;
  width: 75%;
  gap: 4rem;
}
@media (min-width: 768px) {
  .list-box {
    width: 100%;
    gap: 1rem;
  }
}

.menu-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.6rem;
}
.menu-box a {
  align-items: center;
  justify-content: start;
  min-height: auto;
}
.menu-box a.sub {
  padding-left: 30px;
  position: relative;
}
.menu-box a.sub::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../images/foot-deco.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.menu-box a p {
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
  transition: all 0.3s;
  font-family: var(--shuei);
  color: #0a3961;
}
.menu-box a:hover p {
  color: #2587dd;
}

.foot-logo {
  max-width: 280px;
}

.foot-line {
  width: 44px;
}

/* News表示 */
.webgene-blog {
  width: 100%;
}

/* News表示 画像あり版 */
.news-list .webgene-blog {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.news-list .webgene-item {
  width: 100%;
}

@media (min-width: 768px) {
  .news-list .webgene-item {
    width: 48%;
  }
}
/* ページネーション共通 */
.webgene-pagination {
  width: 100%;
}

.webgene-pagination ul,
.pagelink {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  gap: 20px;
  max-width: 280px;
  margin-top: 4rem;
}

.webgene-pagination ul li,
.pagelink p {
  font-size: clamp(0.75rem, 0.669rem + 0.35vw, 1rem);
  letter-spacing: 0.2rem;
  line-height: 1.5;
  width: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.webgene-pagination ul li a,
.pagelink p a {
  display: inline-flex !important;
  width: 130px;
  height: 58px;
  padding: 15px 0 !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  position: relative;
  background-color: #fff;
  border: 1px solid #00305a;
  color: #0a3961;
  border-radius: 40px;
}

.webgene-pagination ul li a:hover,
.pagelink p a:hover {
  cursor: pointer;
  background-color: #ffff38;
  box-shadow: 1px 1px 12px 0 rgba(0, 0, 0, 0.1);
}

.webgene-pagination .next {
  margin-left: auto;
}

@media (min-width: 768px) {
  .webgene-pagination ul,
.pagelink {
    max-width: 300px;
  }
}
.newsdetail-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  padding-inline: 2rem;
}
@media (min-width: 768px) {
  .newsdetail-box {
    padding-inline: 3rem;
  }
}

.news-icon {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/* フォーム */
.formInput,
.formTextArea {
  width: 100%;
  padding: 0.5rem;
  border: none;
  border-radius: 0;
  border: 1px solid #969696;
  background-color: #fff;
  margin-bottom: 2rem;
}

.formTextArea {
  height: 8rem;
}

.formInput:focus,
.formInput:focus-visible,
.formTextArea:focus,
.formTextArea:focus-visible,
.form-button:focus,
.form-button:focus-visible {
  border: 1px solid #969696;
  background-color: #fff;
}

.zipInput {
  width: 6rem;
}

@media (min-width: 768px) {
  .formTh {
    padding-left: 2rem;
  }
}
.requiredText {
  background-color: #a3987c;
  color: #fff;
  padding: 4px 8px;
  font-size: 0.8rem;
  margin-left: 1rem;
}

.privacyformError {
  padding-top: 25px;
}

@media (min-width: 768px) {
  .privacyformError {
    padding-top: 0;
  }
}
.form-privacy {
  border: solid 1px #2d2d2d;
  background-color: white;
  height: 230px;
  overflow-y: auto;
  padding: 40px 30px;
}

/* ページ共通設定 */
.fv-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background: linear-gradient(330deg, #00529a 21.51%, #0b6ec4 81.24%);
  overflow: hidden;
  padding-inline: 2rem;
  padding-block: 2rem;
}
@media (min-width: 768px) {
  .fv-wrap {
    height: 100vh;
    min-height: 968px;
    background: linear-gradient(121deg, #00529a 21.51%, #0b6ec4 81.24%);
  }
}
@media (min-width: 1200px) {
  .fv-wrap {
    height: calc(100vh + 200px);
    max-height: 1020px;
  }
}
@media (768px <= width <= 1024px) and (orientation: portrait) {
  .fv-wrap {
    height: auto;
    min-height: 860px;
  }
}
@media (orientation: landscape) and (max-height: 900px) {
  .fv-wrap {
    height: 992px;
  }
}
.fv-wrap::before {
  content: "";
  display: block;
  width: 700px;
  height: 600px;
  background-image: url("../images/fv-top-deco.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
}
@media (min-width: 768px) {
  .fv-wrap::before {
    width: 1200px;
    height: 900px;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 992px) {
  .fv-wrap::before {
    width: 1500px;
    height: 1300px;
  }
}
@media (768px <= width <= 1024px) and (orientation: portrait) {
  .fv-wrap::before {
    width: 1200px;
    height: 900px;
    transform: translate(-50%, -50%);
  }
}
.fv-wrap .fv-bg-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #fff;
  z-index: -1;
}
@media (min-width: 768px) {
  .fv-wrap .fv-bg-box {
    height: 26%;
  }
}
@media (min-width: 1200px) {
  .fv-wrap .fv-bg-box {
    height: 15%;
  }
}
.fv-wrap .fv-sp-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.fv-wrap .fv-sp-logo .img {
  width: 200px;
  margin-left: auto;
  margin-right: 1rem;
}
@media (min-width: 768px) {
  .fv-wrap .fv-sp-logo {
    display: none;
  }
}
.fv-wrap .fv-sec1-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 95%;
  z-index: 4;
  max-width: 1380px;
  margin-inline: auto;
  gap: 1rem;
}
@media (min-width: 768px) {
  .fv-wrap .fv-sec1-box {
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
  }
}
.fv-wrap .fv-sec1-box .img-box1 {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: 770px;
  max-height: 160px;
  border-radius: 20px;
}
@media (min-width: 576px) {
  .fv-wrap .fv-sec1-box .img-box1 {
    max-height: 280px;
  }
}
@media (min-width: 768px) {
  .fv-wrap .fv-sec1-box .img-box1 {
    flex: 1.2;
    width: 100%;
    height: auto;
    border-radius: 30px;
    max-height: 410px;
  }
}
.fv-wrap .fv-sec1-box .img-box1 .box {
  display: block;
  width: 45%;
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 316px;
}
@media (min-width: 576px) {
  .fv-wrap .fv-sec1-box .img-box1 .box {
    width: 36%;
  }
}
@media (min-width: 768px) {
  .fv-wrap .fv-sec1-box .img-box1 .box {
    width: 50%;
  }
}
.fv-wrap .fv-sec1-box .img-box1 .bg {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.fv-wrap .fv-sec1-box .img-box2 {
  position: relative;
  width: 90%;
  overflow: hidden;
  max-width: 612px;
  border-radius: 16px;
  margin-left: 70px;
  max-height: 150px;
}
@media (min-width: 576px) {
  .fv-wrap .fv-sec1-box .img-box2 {
    max-height: 240px;
  }
}
@media (min-width: 768px) {
  .fv-wrap .fv-sec1-box .img-box2 {
    flex: 1;
    width: 100%;
    height: auto;
    margin-top: 4rem;
    margin-left: 0;
    border-radius: 30px;
    max-height: 380px;
    transform: translateY(70px);
  }
}
@media (min-width: 992px) {
  .fv-wrap .fv-sec1-box .img-box2 {
    transform: translateY(50px);
  }
}
.fv-wrap .fv-sec1-box .img-box2 .box {
  display: block;
  width: 45%;
  position: absolute;
  left: -3px;
  bottom: -3px;
  max-width: 270px;
}
@media (min-width: 576px) {
  .fv-wrap .fv-sec1-box .img-box2 .box {
    width: 36%;
  }
}
@media (min-width: 768px) {
  .fv-wrap .fv-sec1-box .img-box2 .box {
    width: 50%;
    left: 0;
    bottom: 0;
  }
}
.fv-wrap .fv-sec1-box .img-box2 .bg {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.fv-wrap .fv-sec2-box {
  display: flex;
  flex-direction: column-reverse;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  width: 100%;
  z-index: 5;
  max-width: 1180px;
  margin-inline: auto;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .fv-wrap .fv-sec2-box {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
    gap: 2rem;
  }
}
.fv-wrap .fv-sec2-box .l {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-family: var(--zen);
  font-weight: 700;
}
@media (min-width: 768px) {
  .fv-wrap .fv-sec2-box .l {
    gap: 1rem;
  }
}
.fv-wrap .fv-sec2-box .l .title {
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  color: #ffff38;
}
.fv-wrap .fv-sec2-box .l .text {
  font-size: clamp(0.875rem, 0.673rem + 0.88vw, 1.5rem);
  color: #fff;
}
.fv-wrap .fv-sec2-box .l img {
  display: none;
}
@media (min-width: 768px) {
  .fv-wrap .fv-sec2-box .l img {
    width: 60%;
    display: block;
  }
}
.fv-wrap .fv-sec2-box .r {
  position: relative;
  width: 75%;
  overflow: hidden;
  max-width: 612px;
  border-radius: 16px;
  max-height: 130px;
}
@media (min-width: 576px) {
  .fv-wrap .fv-sec2-box .r {
    max-height: 220px;
  }
}
@media (min-width: 768px) {
  .fv-wrap .fv-sec2-box .r {
    width: 50%;
    height: auto;
    border-radius: 20px;
    max-height: 240px;
  }
}
@media (min-width: 768px) {
  .fv-wrap .fv-sec2-box .r {
    max-height: 300px;
  }
}
@media (768px <= width <= 1024px) and (orientation: portrait) {
  .fv-wrap .fv-sec2-box .r {
    width: 35%;
  }
}
.fv-wrap .fv-sec2-box .r .box {
  display: block;
  width: 46%;
  position: absolute;
  left: 0;
  top: 0;
  max-width: 220px;
}
@media (min-width: 576px) {
  .fv-wrap .fv-sec2-box .r .box {
    width: 36%;
  }
}
@media (min-width: 768px) {
  .fv-wrap .fv-sec2-box .r .box {
    width: 50%;
  }
}
.fv-wrap .fv-sec2-box .r .bg {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.fv-sub-wrap {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 6rem 3rem;
  background: linear-gradient(121deg, #00529a 21.51%, #0b6ec4 81.24%);
}
@media (768px <= width <= 1024px) and (orientation: portrait) {
  .fv-sub-wrap {
    height: 60vh;
    min-height: 824px;
  }
}
@media (orientation: landscape) and (max-height: 900px) {
  .fv-sub-wrap {
    height: 824px;
  }
}
@media (min-width: 768px) {
  .fv-sub-wrap {
    padding-block: 6rem 2rem;
  }
}
@media (min-width: 1200px) {
  .fv-sub-wrap {
    height: 80vh;
  }
}
.fv-sub-wrap.green {
  background: linear-gradient(121deg, #5cbc7d 21.51%, #91e7af 81.24%);
}
.fv-sub-wrap.orange {
  background: linear-gradient(121deg, #f69134 21.51%, #ffb571 81.24%);
}
.fv-sub-wrap .fv-sub-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1332px;
  width: 100%;
  z-index: 2;
  gap: 3.4rem;
}
@media (min-width: 768px) {
  .fv-sub-wrap .fv-sub-box {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
  }
}
.fv-sub-wrap .fv-sub-box .l {
  flex: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  padding-left: 2rem;
  gap: 1rem;
}
@media (min-width: 768px) {
  .fv-sub-wrap .fv-sub-box .l {
    flex: 1;
    padding-left: 6rem;
    padding-block: 3rem;
    gap: 3rem;
  }
}
.fv-sub-wrap .fv-sub-box .l .title {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  position: relative;
  width: 55%;
}
.fv-sub-wrap .fv-sub-box .l .title::before {
  content: "";
  display: block;
  width: 420px;
  height: 350px;
  background-image: url("../images/fv-sub-deco.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-38%, -50%);
  z-index: -1;
}
@media (min-width: 768px) {
  .fv-sub-wrap .fv-sub-box .l .title::before {
    width: 614px;
    height: 426px;
    transform: translate(-45%, -50%);
  }
}
.fv-sub-wrap .fv-sub-box .l .title p {
  font-size: clamp(3.75rem, 3.021rem + 3.15vw, 6rem);
  font-family: var(--robo);
  line-height: 1;
  color: #ffff38;
  letter-spacing: 0.05em;
}
.fv-sub-wrap .fv-sub-box .l .title.clinic p {
  font-size: clamp(2.625rem, 2.22rem + 1.75vw, 3.875rem);
}
.fv-sub-wrap .fv-sub-box .l .title h1 {
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  font-weight: 700;
  color: #fff;
}
.fv-sub-wrap .fv-sub-box .l .img {
  width: 50%;
  max-width: 282px;
}
@media (min-width: 768px) {
  .fv-sub-wrap .fv-sub-box .l .img {
    width: 60%;
  }
}
.fv-sub-wrap .fv-sub-box .r {
  flex: none;
  width: 85%;
  height: 35vh;
  min-height: 300px;
  overflow: hidden;
  border-radius: 30px;
}
@media (min-width: 768px) {
  .fv-sub-wrap .fv-sub-box .r {
    flex: 1.4;
    height: 100%;
    width: 100%;
    max-height: 500px;
  }
}
.fv-sub-wrap .fv-sub-box .r img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.fv-sub-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64%;
  z-index: 0;
  background-color: #fff;
}
@media (min-width: 768px) {
  .fv-sub-bg {
    height: 40%;
  }
}

@media (min-width: 1200px) {
  .py-max-10 {
    padding-block: 9rem !important;
  }
}

/* プラシバシーポリシー */
.policy-box {
  overflow-y: scroll;
  height: 400px;
  border-radius: 30px;
}

.btn a::after {
  content: "→";
}

.top-sec2-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.top-sec2-title {
  width: 100%;
  background: linear-gradient(121deg, #00529a 21.51%, #0b6ec4 81.24%);
  padding-block: 4rem;
}
.top-sec2-title.green {
  background: linear-gradient(121deg, #5cbc7d 21.51%, #91e7af 81.24%);
}
.top-sec2-title.orange {
  background: linear-gradient(121deg, #f69134 21.51%, #ffb571 81.24%);
}
.top-sec2-title .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  font-family: var(--zen);
  padding-inline: 2rem;
}
.top-sec2-title .box .text {
  font-size: clamp(0.875rem, 0.713rem + 0.7vw, 1.375rem);
  font-weight: 700;
  color: #fff;
}
.top-sec2-title .box .title {
  font-size: clamp(1.75rem, 1.305rem + 1.93vw, 3.125rem);
  font-weight: 900;
  color: #ffff38;
}

.top-sec2-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 6rem;
  gap: 4rem;
  width: 100%;
  max-width: 1520px;
}
@media (min-width: 992px) {
  .top-sec2-box {
    gap: 6rem;
  }
}
@media (min-width: 1200px) {
  .top-sec2-box {
    gap: 8rem;
  }
}
.top-sec2-box .box1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  width: 100%;
  gap: 2.4rem;
  padding-inline: 1.6rem;
}
@media (min-width: 768px) {
  .top-sec2-box .box1 {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    width: 95%;
    margin-left: auto;
    max-width: 1300px;
    padding-inline: 0;
    gap: 1.4rem;
  }
}
@media (min-width: 992px) {
  .top-sec2-box .box1 {
    width: 90%;
  }
}
.top-sec2-box .box1 .l {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.6rem;
  font-family: var(--zen);
}
.top-sec2-box .box1 .l .title {
  font-size: clamp(1.5rem, 1.176rem + 1.4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.8;
  color: #023c6f;
}
.top-sec2-box .box1 .l .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  font-weight: 500;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .top-sec2-box .box1 .l .text {
    line-height: 2.2;
  }
}
.top-sec2-box .box1 .r {
  border-radius: 40px 0 0 40px;
  width: 100%;
  margin-left: auto;
  overflow: hidden;
  max-width: 750px;
}
.top-sec2-box .box1 .r img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-sec2-box .box2 {
  width: 90%;
  max-width: 780px;
  height: 360px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (min-width: 768px) {
  .top-sec2-box .box2 {
    width: 68%;
    height: 500px;
  }
}
@media (min-width: 992px) {
  .top-sec2-box .box2 {
    height: 710px;
  }
}
.top-sec2-box .box2 .img1 {
  position: absolute;
  width: 100%;
  left: -4px;
  z-index: -1;
  -webkit-animation: rotate 30s linear infinite;
          animation: rotate 30s linear infinite;
}
@-webkit-keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.top-sec2-box .box2 .img2 {
  width: 100%;
}
.top-sec2-box .box3 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-block: 3rem;
  border: 1px solid #00529a;
  border-radius: 30px;
  font-family: var(--zen);
  text-align: center;
  width: 85%;
}
@media (min-width: 768px) {
  .top-sec2-box .box3 {
    text-align: start;
    width: 95%;
    padding-block: 5rem;
  }
}
.top-sec2-box .box3 .title {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translate(-50%);
  background-color: #fff;
  padding: 1rem 3rem;
  font-weight: 700;
  font-size: clamp(1rem, 0.676rem + 1.4vw, 2rem);
  color: #00529a;
}
.top-sec2-box .box3 .row {
  width: 90%;
  gap: 0.6rem;
  border-bottom: 1px solid #2d2d2d;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .top-sec2-box .box3 .row {
    gap: 0;
  }
}
@media (min-width: 992px) {
  .top-sec2-box .box3 .row {
    width: 80%;
  }
}
.top-sec2-box .box3 .text1 {
  font-weight: 700;
  color: #0a3961;
  font-size: clamp(1rem, 0.757rem + 1.05vw, 1.75rem);
}
.top-sec2-box .box3 .text2 {
  font-weight: 500;
  font-size: clamp(1rem, 0.757rem + 1.05vw, 1.75rem);
}

.top-sec3-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 6rem;
  background: linear-gradient(121deg, #00529a 21.51%, #0b6ec4 81.24%);
  gap: 4rem;
}
@media (min-width: 992px) {
  .top-sec3-wrap {
    gap: 5rem;
  }
}
.top-sec3-wrap .title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.top-sec3-wrap .title-box .en {
  font-family: var(--robo);
  font-size: clamp(4.25rem, 3.805rem + 1.93vw, 5.625rem);
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
}
.top-sec3-wrap .title-box .jp {
  font-size: clamp(0.875rem, 0.592rem + 1.23vw, 1.75rem);
  color: #fff;
  font-weight: 700;
  margin-top: 0.6rem;
}
.top-sec3-wrap .title-box .title {
  font-size: clamp(1.375rem, 0.97rem + 1.75vw, 2.625rem);
  color: #ffff38;
  font-weight: 900;
  margin-top: 2.4rem;
}
.top-sec3-wrap .service-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (min-width: 576px) {
  .top-sec3-wrap .service-box {
    max-width: 680px;
  }
}
@media (min-width: 992px) {
  .top-sec3-wrap .service-box {
    flex-direction: row;
    align-items: start;
    max-width: 1080px;
  }
}
.top-sec3-wrap .service-box .l {
  width: 100%;
  overflow: hidden;
  border-radius: 30px 0 0 30px;
  max-height: 527px;
  min-height: 300px;
  height: 40vh;
}
@media (min-width: 992px) {
  .top-sec3-wrap .service-box .l {
    flex: 1;
    height: auto;
  }
}
.top-sec3-wrap .service-box .l img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.top-sec3-wrap .service-box .r {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: start;
  justify-content: center;
  width: 100%;
}
@media (min-width: 992px) {
  .top-sec3-wrap .service-box .r {
    flex: 1;
  }
}
.top-sec3-wrap .service-box .r .title {
  border-left: #ffff38 6px solid;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #fff;
  font-weight: 700;
  width: 100%;
}
.top-sec3-wrap .service-box .r .title h3 {
  font-size: clamp(1.5rem, 1.014rem + 2.1vw, 3rem);
}
.top-sec3-wrap .service-box .r .title p {
  font-size: clamp(0.875rem, 0.673rem + 0.88vw, 1.5rem);
}
.top-sec3-wrap .service-box .r .tab {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
}
.top-sec3-wrap .service-box .r .tab div {
  display: block;
  background-color: #ffff38;
  padding: 0.8rem 1.2rem;
  color: #05335c;
  text-align: center;
  font-size: clamp(0.75rem, 0.71rem + 0.18vw, 0.875rem);
  font-weight: 700;
}
.top-sec3-wrap .service-box .r .text {
  padding: 2rem;
  background-color: #fff;
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.2;
  width: 100%;
}

.top-sec4-wrap {
  padding-block: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.top-sec4-wrap .title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  text-align: center;
  color: #023c6f;
  font-weight: 700;
}
.top-sec4-wrap .title-box .text {
  font-size: clamp(1rem, 0.757rem + 1.05vw, 1.75rem);
}
.top-sec4-wrap .title-box .title {
  font-size: clamp(1.375rem, 0.97rem + 1.75vw, 2.625rem);
}
.top-sec4-wrap .icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .top-sec4-wrap .icon-box {
    flex-direction: row;
    align-items: stretch;
  }
}
.top-sec4-wrap .icon-box .w-box {
  display: flex;
  flex: 1;
  width: 100%;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
}
.top-sec4-wrap .icon-box .w-box .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  border-radius: 20px;
  background-color: #2587dd;
  box-shadow: 3px 3px 8px 0 rgba(0, 0, 0, 0.25);
  width: 50%;
  height: 100%;
  margin-block: auto;
  gap: 2rem;
}
@media (min-width: 768px) {
  .top-sec4-wrap .icon-box .w-box .box {
    padding: 3rem 1rem;
  }
}
.top-sec4-wrap .icon-box .w-box .box img {
  height: 80px;
  width: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 992px) {
  .top-sec4-wrap .icon-box .w-box .box img {
    height: 120px;
    width: 120px;
  }
}
.top-sec4-wrap .icon-box .w-box .box p {
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  text-align: center;
  line-height: 1.6;
  color: #ffff38;
  font-weight: 700;
  text-align: center;
}

.top-sec5-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  width: 100%;
  max-width: 1520px;
  padding-bottom: 6rem;
}
.top-sec5-wrap .top-sec5-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  width: 100%;
  gap: 2.4rem;
  padding-inline: 1.6rem;
}
@media (min-width: 768px) {
  .top-sec5-wrap .top-sec5-box {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    width: 95%;
    margin-left: auto;
    max-width: 1300px;
    gap: 1.4rem;
    padding-inline: 0;
  }
}
@media (min-width: 992px) {
  .top-sec5-wrap .top-sec5-box {
    width: 90%;
  }
}
.top-sec5-wrap .top-sec5-box .l {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  font-family: var(--zen);
  text-align: center;
}
@media (min-width: 768px) {
  .top-sec5-wrap .top-sec5-box .l {
    align-items: start;
    text-align: start;
  }
}
.top-sec5-wrap .top-sec5-box .l .title {
  font-size: clamp(1.5rem, 1.176rem + 1.4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.8;
  color: #023c6f;
}
.top-sec5-wrap .top-sec5-box .l .text {
  font-size: clamp(1rem, 0.757rem + 1.05vw, 1.75rem);
  font-weight: 700;
  line-height: 1.8;
  color: #023c6f;
}
@media (min-width: 768px) {
  .top-sec5-wrap .top-sec5-box .l .text {
    line-height: 2.2;
  }
}
.top-sec5-wrap .top-sec5-box .r {
  border-radius: 40px 0 0 40px;
  width: 100%;
  margin-left: auto;
  overflow: hidden;
  max-width: 750px;
}
.top-sec5-wrap .top-sec5-box .r img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-sec6-wrap {
  background-image: url("../images/top-sec5-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .top-sec6-wrap {
    padding-block: 7rem;
    gap: 5rem;
  }
}
.top-sec6-wrap .title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  padding-inline: 2rem;
}
.top-sec6-wrap .title-box .en {
  font-family: var(--robo);
  font-size: clamp(3.375rem, 3.011rem + 1.58vw, 4.5rem);
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
}
.top-sec6-wrap .title-box .title {
  font-size: clamp(1.375rem, 0.97rem + 1.75vw, 2.625rem);
  color: #ffff38;
  font-weight: 900;
  margin-top: 1rem;
}
.top-sec6-wrap .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
@media (min-width: 768px) {
  .top-sec6-wrap .box {
    flex-direction: row;
  }
}
.top-sec6-wrap .box .l {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .top-sec6-wrap .box .l {
    flex: 1;
  }
}
.top-sec6-wrap .box .l .img-box {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .top-sec6-wrap .box .l .img-box {
    height: 350px;
  }
}
.top-sec6-wrap .box .l .img-box img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: top;
     object-position: top;
}
.top-sec6-wrap .box .l .text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 3rem;
  background-color: #fff;
  width: 100%;
}
@media (min-width: 768px) {
  .top-sec6-wrap .box .l .text-box {
    align-items: start;
    justify-content: center;
  }
}
.top-sec6-wrap .box .l .text-box h3 {
  font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
  font-weight: 700;
  color: #0a3961;
}

.top-sec7-wrap {
  padding-block: 5rem;
}
@media (min-width: 768px) {
  .top-sec7-wrap {
    padding-block: 6rem;
  }
}

.top-sec7-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 2rem;
}
@media (min-width: 768px) {
  .top-sec7-box {
    flex-direction: row;
    align-items: start;
  }
}
.top-sec7-box .l {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 100%;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .top-sec7-box .l {
    flex: 1;
    margin-bottom: 0;
  }
}
.top-sec7-box .l .en {
  color: #0a3961;
  font-family: var(--robo);
  letter-spacing: 0.05em;
  font-size: clamp(2.875rem, 2.511rem + 1.58vw, 4rem);
  line-height: 1;
}
.top-sec7-box .l .jp {
  font-weight: 700;
  color: #0a3961;
  font-size: clamp(1.25rem, 1.088rem + 0.7vw, 1.75rem);
  margin-top: 1.2rem;
}
.top-sec7-box .l .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.4;
  margin-block: 1.6rem;
}
.top-sec7-box .r {
  width: 100%;
}
@media (min-width: 768px) {
  .top-sec7-box .r {
    flex: 1.3;
  }
}

.top-sec8-wrap {
  padding-block: 6rem;
  background: linear-gradient(180deg, #fff 28.85%, #e1f1ff 100%);
}

.top-sec8-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}
.top-sec8-box .en {
  color: #0a3961;
  font-family: var(--robo);
  letter-spacing: 0.05em;
  font-size: clamp(2.875rem, 2.511rem + 1.58vw, 4rem);
  line-height: 1;
}
.top-sec8-box .jp {
  font-weight: 700;
  color: #0a3961;
  font-size: clamp(1.25rem, 1.088rem + 0.7vw, 1.75rem);
  margin-top: 1.2rem;
}
.top-sec8-box .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2.4;
  margin-block: 1.6rem;
  margin-block: 1.4rem;
}
.top-sec8-box .button-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
}
@media (min-width: 768px) {
  .top-sec8-box .button-box {
    flex-direction: row;
    gap: 2.4rem;
  }
}

.fit-sec2-wrap {
  background: linear-gradient(180deg, #fff 55.29%, #f2f8ff 90.87%);
  padding-block: 4rem;
  width: 100%;
}
@media (min-width: 768px) {
  .fit-sec2-wrap {
    padding-block: 6rem;
  }
}
.fit-sec2-wrap.green {
  background: linear-gradient(180deg, #fff 55.29%, #f9fff7 90.87%);
}
.fit-sec2-wrap.orange {
  background: linear-gradient(180deg, #fff 55.29%, #fff8f2 90.87%);
}

.fit-sec2-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 1.6rem;
}
@media (min-width: 768px) {
  .fit-sec2-box {
    padding-inline: 5rem;
  }
}
.fit-sec2-box .title {
  font-size: clamp(1.625rem, 1.18rem + 1.93vw, 3rem);
  font-weight: 700;
  color: #023c6f;
  width: 100%;
}
.fit-sec2-box .text {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  line-height: 2.2;
  margin-top: 2rem;
  margin-bottom: 2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .fit-sec2-box .text {
    margin-bottom: 3.4rem;
  }
}
.fit-sec2-box .img-box {
  width: 100%;
  display: flex;
  margin-top: 1.4rem;
}
.fit-sec2-box .img-box img {
  width: 92%;
  margin-right: auto;
}
@media (min-width: 768px) {
  .fit-sec2-box .img-box img {
    width: 85%;
  }
}
.fit-sec2-box .img-box.l img {
  margin-left: auto;
  margin-right: 0;
}

.fit-sec3-wrap {
  padding-block: 5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
@media (min-width: 768px) {
  .fit-sec3-wrap {
    padding-block: 6rem 2rem;
  }
}

.fit-sec3-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding-inline: 1.6rem;
}
@media (min-width: 992px) {
  .fit-sec3-box {
    padding-inline: 3.6rem;
  }
}
.fit-sec3-box .text1 {
  color: #1387ed;
  font-family: var(--robo);
  letter-spacing: 0.08em;
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  width: 100%;
}
.fit-sec3-box .title {
  font-size: clamp(1.5rem, 1.298rem + 0.88vw, 2.125rem);
  font-weight: 700;
  color: #023c6f;
  width: 100%;
}
.fit-sec3-box .text2 {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  line-height: 2.2;
  width: 100%;
}
.fit-sec3-box .img-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 2rem;
}
@media (min-width: 768px) {
  .fit-sec3-box .img-box {
    flex-direction: row;
    align-items: stretch;
  }
}
@media (min-width: 768px) {
  .fit-sec3-box .img-box.rev {
    flex-direction: row-reverse;
  }
}
.fit-sec3-box .img-box .box {
  width: 100%;
  border-radius: 20px;
  height: auto;
  overflow: hidden;
}
@media (min-width: 768px) {
  .fit-sec3-box .img-box .box {
    flex: 1;
  }
}
.fit-sec3-box .img-box .box.l {
  box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.25);
}
.fit-sec3-box .img-box .box.l img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.fit-sec3-box .img-box .box.r {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.4rem 0;
  background-color: #ffffe0;
  color: #023c6f;
  line-height: 2;
  font-weight: 700;
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
}

.fit-sec3-box2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .fit-sec3-box2 {
    flex-direction: row;
    align-items: stretch;
  }
}
.fit-sec3-box2 .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  gap: 1.4rem;
}
@media (min-width: 768px) {
  .fit-sec3-box2 .box {
    flex: 1;
  }
}
.fit-sec3-box2 .box .img {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 2px 2px 12px 0 rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 270px;
}
.fit-sec3-box2 .box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fit-sec3-box2 .box .text {
  background-color: #0b6ec4;
  border-radius: 100px;
  width: 100%;
  padding: 1rem 0;
  text-align: center;
  color: #fff;
  font-size: clamp(0.813rem, 0.772rem + 0.18vw, 0.938rem);
}

.calendar-img {
  width: 100%;
  max-width: 850px;
  margin-top: 4rem;
  margin-inline: auto;
  overflow-x: auto;
}
.calendar-img img {
  width: 700px;
  max-width: none;
}
@media (min-width: 768px) {
  .calendar-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    max-width: auto;
  }
}

.fit-sec4-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 6rem;
  background: linear-gradient(121deg, #00529a 21.51%, #0b6ec4 81.24%);
  gap: 4rem;
}
@media (min-width: 992px) {
  .fit-sec4-wrap {
    gap: 5rem;
  }
}
.fit-sec4-wrap .title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.fit-sec4-wrap .title-box .en {
  font-family: var(--robo);
  font-size: clamp(4.25rem, 3.805rem + 1.93vw, 5.625rem);
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
}
.fit-sec4-wrap .title-box .jp {
  font-size: clamp(0.875rem, 0.592rem + 1.23vw, 1.75rem);
  color: #fff;
  font-weight: 700;
  margin-top: 1.6rem;
}
.fit-sec4-wrap .title-box .title {
  font-size: clamp(1.375rem, 0.97rem + 1.75vw, 2.625rem);
  color: #ffff38;
  font-weight: 900;
  margin-top: 2.4rem;
}

.fit-sec4-wrap2 {
  background: linear-gradient(180deg, #fff 55.29%, #f2f8ff 90.87%);
  padding-block: 6rem;
  width: 100%;
}

.fit-sec4-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 1.6rem;
}
@media (min-width: 768px) {
  .fit-sec4-box {
    padding-inline: 5rem;
  }
}
.fit-sec4-box .img-box {
  width: 100%;
  height: 112px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .fit-sec4-box .img-box {
    height: 290px;
  }
}
.fit-sec4-box .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fit-sec4-box .title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding-block: 3rem;
}
@media (min-width: 768px) {
  .fit-sec4-box .title-box {
    padding-block: 4rem;
  }
}
.fit-sec4-box .title-box .title {
  position: relative;
  font-weight: 900;
  line-height: 1.5;
  color: #00529a;
  font-size: clamp(1.5rem, 1.014rem + 2.1vw, 3rem);
}
.fit-sec4-box .title-box .title::before {
  content: "";
  display: block;
  width: 94px;
  height: 97px;
  background-image: url("../images/fit-sec4-icon-l.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: -145px;
  transform: translateY(-50%);
}
.fit-sec4-box .title-box .title::after {
  content: "";
  display: block;
  width: 94px;
  height: 97px;
  background-image: url("../images/fit-sec4-icon-r.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: -145px;
  transform: translateY(-50%);
}
.fit-sec4-box .text {
  width: 100%;
  line-height: 2.2;
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  padding-block: 3rem;
}
.fit-sec4-box .plan-box {
  padding: 2rem 1rem;
  border: 1px solid #00529a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: 900;
  text-align: center;
  gap: 1.4rem;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .fit-sec4-box .plan-box {
    padding: 3rem 3rem;
  }
}
.fit-sec4-box .plan-box .title {
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  color: #00529a;
  margin-bottom: 1rem;
}
.fit-sec4-box .plan-box .text2 {
  font-size: clamp(0.875rem, 0.713rem + 0.7vw, 1.375rem);
  padding: 1.2rem;
  background-color: #c2e3ff;
  border-radius: 100px;
  width: 100%;
  color: #023c6f;
}

.fit-sec5-wrap {
  padding-block: 6rem;
  background-image: url("../images/fit-sec4-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fit-sec5-wrap .title {
  font-size: clamp(1.5rem, 1.014rem + 2.1vw, 3rem);
  color: #fff;
}
.fit-sec5-wrap .athlete-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  color: #fff;
  text-align: center;
  font-weight: 700;
  gap: 1.2rem;
  margin-top: 3.2rem;
}
.fit-sec5-wrap .athlete-box .img {
  width: 100%;
  aspect-ratio: 1/1.2;
  overflow: hidden;
}
.fit-sec5-wrap .athlete-box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.fit-sec5-wrap .athlete-box .name {
  font-size: clamp(1.125rem, 0.963rem + 0.7vw, 1.625rem);
}
.fit-sec5-wrap .athlete-box .text {
  font-size: clamp(0.625rem, 0.504rem + 0.53vw, 1rem);
}

.fit-sec5-wrap2 {
  padding-block: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .fit-sec5-wrap2 {
    padding-block: 6rem;
  }
}
.fit-sec5-wrap2 .fit-sec5-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 2rem;
  /* ヘッダー */
  /* 左右の外枠 */
}
.fit-sec5-wrap2 .fit-sec5-box .title {
  font-weight: 900;
  font-size: clamp(1.5rem, 1.136rem + 1.58vw, 2.625rem);
  color: #023c6f;
}
.fit-sec5-wrap2 .fit-sec5-box .title.green {
  color: #19c053;
}
.fit-sec5-wrap2 .fit-sec5-box .title.orange {
  color: #ffa14a;
}
.fit-sec5-wrap2 .fit-sec5-box .plan-table-wrap {
  width: 100%;
  overflow-x: auto;
}
.fit-sec5-wrap2 .fit-sec5-box .plan-table {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
}
@media (min-width: 768px) {
  .fit-sec5-wrap2 .fit-sec5-box .plan-table {
    width: 100%;
  }
}
.fit-sec5-wrap2 .fit-sec5-box .plan-row {
  display: flex;
}
.fit-sec5-wrap2 .fit-sec5-box .plan-cell {
  display: flex;
  width: 160px;
  justify-content: center;
  align-items: center;
  min-height: 90px;
  padding: 16px;
  text-align: center;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  line-height: 1.5;
  font-size: clamp(0.875rem, 0.794rem + 0.35vw, 1.125rem);
}
@media (min-width: 576px) {
  .fit-sec5-wrap2 .fit-sec5-box .plan-cell {
    width: 200px;
  }
}
@media (min-width: 768px) {
  .fit-sec5-wrap2 .fit-sec5-box .plan-cell {
    flex: 1;
    width: auto;
  }
}
.fit-sec5-wrap2 .fit-sec5-box .plan-head .plan-cell {
  background: #999;
  color: #fff;
  min-height: 60px;
}
.fit-sec5-wrap2 .fit-sec5-box .plan-head .plan-cell {
  min-height: 60px;
  background: #9d9d9d;
  color: #fff;
  font-weight: 700;
}
.fit-sec5-wrap2 .fit-sec5-box .plan-row .plan-cell:first-child {
  border-left: 1px solid #e5e5e5;
}
.fit-sec5-wrap2 .fit-sec5-box .plan-row:first-child .plan-cell {
  border-top: 1px solid #e5e5e5;
}

.fit-sec6-title {
  background-color: #00529a;
  width: 100%;
  padding-block: 2.6rem;
}
@media (min-width: 768px) {
  .fit-sec6-title {
    padding-block: 3rem;
  }
}
.fit-sec6-title .title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  font-weight: 700;
}
.fit-sec6-title .title-box .text {
  color: #00529a;
  padding: 0.6rem 5rem;
  background-color: #ffff38;
  border-radius: 100px;
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
}
.fit-sec6-title .title-box .title {
  color: #fff;
  font-size: clamp(1.25rem, 0.845rem + 1.75vw, 2.5rem);
}

.fit-sec6-wrap {
  padding-block: 5rem;
}
@media (min-width: 768px) {
  .fit-sec6-wrap {
    padding-block: 6rem;
  }
}
.fit-sec6-wrap .fit-sec6-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 1.6rem;
  gap: 3rem;
}
@media (min-width: 768px) {
  .fit-sec6-wrap .fit-sec6-box {
    padding-inline: 5rem;
  }
}
.fit-sec6-wrap .fit-sec6-box .step-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 100%;
  gap: 2rem;
  max-width: 890px;
}
.fit-sec6-wrap .fit-sec6-box .step-box .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 1.6rem;
}
@media (min-width: 768px) {
  .fit-sec6-wrap .fit-sec6-box .step-box .box {
    flex-direction: row;
    align-items: start;
  }
}
.fit-sec6-wrap .fit-sec6-box .step-box .box .number {
  width: 80px;
}
@media (min-width: 768px) {
  .fit-sec6-wrap .fit-sec6-box .step-box .box .number {
    width: 140px;
  }
}
.fit-sec6-wrap .fit-sec6-box .step-box .box .text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  gap: 0.6rem;
}
@media (min-width: 768px) {
  .fit-sec6-wrap .fit-sec6-box .step-box .box .text-box {
    text-align: start;
    align-items: start;
  }
}
.fit-sec6-wrap .fit-sec6-box .step-box .box .text-box .title {
  font-size: clamp(1.25rem, 1.088rem + 0.7vw, 1.75rem);
  font-weight: 900;
  color: #023c6f;
}
.fit-sec6-wrap .fit-sec6-box .step-box .box .text-box .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
}
.fit-sec6-wrap .fit-sec6-box .title2 {
  font-weight: 700;
  color: #00529a;
  font-size: clamp(1rem, 0.676rem + 1.4vw, 2rem);
}
.fit-sec6-wrap .fit-sec6-box .text-box2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  background-color: #f2f9ff;
  max-width: 836px;
}
@media (min-width: 768px) {
  .fit-sec6-wrap .fit-sec6-box .text-box2 {
    padding: 3rem;
  }
}

.cli-sec2-box {
  width: 100%;
  border: 1px solid #0a3961;
  display: flex;
  flex-direction: column;
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  text-align: center;
}
.cli-sec2-box .title2 {
  width: 100%;
  background-color: #0a3961;
  padding: 1.2rem;
  color: #fff;
}
.cli-sec2-box .text2 {
  color: #0a3961;
  padding-block: 2rem;
  padding-inline: 1rem;
}

.cli-sec2-img {
  width: 100%;
}
.cli-sec2-img .img-box2 {
  width: 95%;
  margin-left: auto;
  border-radius: 40px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cli-sec2-img .img-box2 {
    width: 85%;
  }
}
.cli-sec2-img .img-box2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cli-sec3-wrap {
  padding-block: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}
@media (min-width: 768px) {
  .cli-sec3-wrap {
    padding-block: 6rem;
  }
}
.cli-sec3-wrap .cli-sec3-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
}
@media (min-width: 768px) {
  .cli-sec3-wrap .cli-sec3-box {
    flex-direction: row;
    gap: 5.4rem;
    align-items: stretch;
  }
}
.cli-sec3-wrap .cli-sec3-box .l {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 30px;
}
@media (min-width: 768px) {
  .cli-sec3-wrap .cli-sec3-box .l {
    flex: 1;
    height: auto;
    aspect-ratio: 1;
  }
}
.cli-sec3-wrap .cli-sec3-box .l img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cli-sec3-wrap .cli-sec3-box .r {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 100%;
  z-index: 0;
  gap: 1.6rem;
  height: auto;
}
@media (min-width: 768px) {
  .cli-sec3-wrap .cli-sec3-box .r {
    flex: 1.5;
  }
}
.cli-sec3-wrap .cli-sec3-box .r::before {
  content: "";
  display: block;
  width: 300px;
  height: 70px;
  background-image: url("../images/point01-deco.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -30px;
  right: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  .cli-sec3-wrap .cli-sec3-box .r::before {
    width: 400px;
  }
}
.cli-sec3-wrap .cli-sec3-box .r.point02::before {
  background-image: url("../images/point02-deco.svg");
}
.cli-sec3-wrap .cli-sec3-box .r.point03::before {
  background-image: url("../images/point03-deco.svg");
}
.cli-sec3-wrap .cli-sec3-box .r .title {
  font-size: clamp(1.25rem, 0.967rem + 1.23vw, 2.125rem);
  font-weight: 700;
  color: #023c6f;
}
.cli-sec3-wrap .cli-sec3-box .r .text {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  line-height: 2.2;
}
.cli-sec3-wrap .cli-sec3-text {
  width: 100%;
  color: #023c6f;
  font-size: clamp(1.25rem, 0.805rem + 1.93vw, 2.625rem);
  font-weight: 700;
  margin-top: 3rem;
  text-align: center;
  padding-inline: 2rem;
}
.cli-sec3-wrap .cli-sec3-text2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  background-color: #f2f9ff;
  max-width: 594px;
  margin-block: 3rem;
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  line-height: 3;
}
@media (min-width: 768px) {
  .cli-sec3-wrap .cli-sec3-text2 {
    padding: 3rem;
  }
}
.cli-sec3-wrap .text2 {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  line-height: 2.6;
  text-align: center;
}

.price-sec2-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 1.6rem;
}
@media (min-width: 768px) {
  .price-sec2-wrap {
    padding-inline: 0;
  }
}
.price-sec2-wrap .title {
  font-size: clamp(1.25rem, 0.926rem + 1.4vw, 2.25rem);
  text-align: center;
  padding-block: 2rem;
  color: #023c6f;
  font-weight: 700;
}
@media (min-width: 768px) {
  .price-sec2-wrap .title {
    padding-block: 4rem;
  }
}
.price-sec2-wrap .button-box {
  background-color: #f2f9ff;
  padding-block: 2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .price-sec2-wrap .button-box {
    padding-block: 4rem;
  }
}
.price-sec2-wrap .button-box .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 1rem;
}
@media (min-width: 768px) {
  .price-sec2-wrap .button-box .box {
    flex-direction: row;
    gap: 2rem;
  }
}
.price-sec2-wrap .button-box .box .store-button {
  padding: 2rem;
  width: 100%;
  border-radius: 10px;
  color: #fff;
  background-color: #00529a;
  font-weight: 700;
  transition: all 0.3s;
  font-size: 18px;
  text-align: center;
}
@media (min-width: 768px) {
  .price-sec2-wrap .button-box .box .store-button {
    flex: 1;
    font-size: 24px;
  }
}
.price-sec2-wrap .button-box .box .store-button.green {
  background-color: #19c053;
}
.price-sec2-wrap .button-box .box .store-button.orange {
  background-color: #ffa14a;
}
.price-sec2-wrap .button-box .box .store-button:hover {
  transform: scale(1.02);
}

.price-sec3-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
}

.price-sec3-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 3.4rem;
  background-color: #00529a;
  color: #fff;
  font-size: clamp(1.75rem, 1.507rem + 1.05vw, 2.5rem);
  font-weight: 700;
}
.price-sec3-title.green {
  background-color: #19c053;
}
.price-sec3-title.orange {
  background-color: #ffa14a;
}

.price-sec3-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 1.6rem;
  gap: 2.4rem;
  margin-top: 5rem;
}
@media (min-width: 992px) {
  .price-sec3-box {
    padding-inline: 2rem;
  }
}
.price-sec3-box .main-text {
  line-height: 2.6;
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
  text-align: center;
  margin-bottom: 2rem;
}
.price-sec3-box .plan-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .price-sec3-box .plan-box {
    flex-direction: row;
  }
}
.price-sec3-box .plan-box .name {
  background-color: #0b6ec4;
  width: 246px;
  border-radius: 100px;
  padding: 1rem;
  color: #fff;
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .price-sec3-box .plan-box .name {
    width: 300px;
  }
}
.price-sec3-box .plan-box .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  line-height: 2;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .price-sec3-box .plan-box .text {
    text-align: start;
  }
}

.store-sec2-wrap {
  padding-top: 4rem;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
@media (min-width: 768px) {
  .store-sec2-wrap {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.store-sec2-wrap .store-sec2-box {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 3.6rem;
}
@media (min-width: 768px) {
  .store-sec2-wrap .store-sec2-box {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
}
.store-sec2-wrap .store-sec2-box .l {
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}
@media (min-width: 768px) {
  .store-sec2-wrap .store-sec2-box .l {
    height: auto;
    flex: 1;
  }
}
.store-sec2-wrap .store-sec2-box .l .img-box {
  width: 100%;
  height: 50%;
}
.store-sec2-wrap .store-sec2-box .l .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.store-sec2-wrap .store-sec2-box .r {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 1.6rem;
  flex: 1;
}
@media (min-width: 768px) {
  .store-sec2-wrap .store-sec2-box .r {
    padding-left: 2rem;
  }
}
@media (min-width: 992px) {
  .store-sec2-wrap .store-sec2-box .r {
    padding-left: 4rem;
  }
}
.store-sec2-wrap .store-sec2-box .r .title {
  font-size: clamp(1.75rem, 1.548rem + 0.88vw, 2.375rem);
  color: #023c6f;
  font-weight: 700;
  font-family: var(--robo);
}
.store-sec2-wrap .store-sec2-box .r .text1 {
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.125rem);
  font-weight: 700;
  line-height: 2.2;
}
.store-sec2-wrap .store-sec2-box .r .text2 {
  font-size: clamp(0.75rem, 0.669rem + 0.35vw, 1rem);
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #000;
  line-height: 2.2;
  width: 100%;
}
.store-sec2-wrap .inst-button {
  width: 100%;
  max-width: 300px;
  margin: auto;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  .store-sec2-wrap .inst-button {
    max-width: 340px;
  }
}
.store-sec2-wrap .inst-button:hover {
  transform: scale(1.03);
  opacity: 0.8;
}
.store-sec2-wrap .map-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.store-sec2-wrap .map-box .map-title {
  font-size: clamp(1.75rem, 1.548rem + 0.88vw, 2.375rem);
  color: #023c6f;
  font-weight: 700;
}
.store-sec2-wrap .map-box .map-wrap {
  width: 80%;
  max-width: 980px;
  height: 330px;
}

.case-sec2-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-block: 4rem;
}
@media (min-width: 768px) {
  .case-sec2-box {
    padding-block: 6rem;
    gap: 4rem;
  }
}
.case-sec2-box .icon-box {
  display: flex;
  justify-content: center;
  width: 100%;
}
.case-sec2-box .title-box {
  background: linear-gradient(121deg, #00529a 21.51%, #0b6ec4 81.24%);
  border-radius: 20px;
  color: #ffff38;
  text-align: center;
  padding: 1.6rem;
  font-size: clamp(1.125rem, 0.923rem + 0.88vw, 1.75rem);
  width: 100%;
}
.case-sec2-box .text {
  text-align: center;
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  line-height: 2.8;
  width: 100%;
}
@media (min-width: 768px) {
  .case-sec2-box .text {
    padding-block: 2rem;
  }
}

.case-sec3-wrap {
  display: flex;
  flex-direction: column;
  padding-block: 4rem;
  background-color: #f0f8ff;
  align-items: center;
  justify-content: center;
}
.case-sec3-wrap.white {
  background-color: #fff;
}
@media (min-width: 768px) {
  .case-sec3-wrap {
    padding-block: 6rem;
    padding-inline: 5rem;
  }
}
.case-sec3-wrap .case-sec3-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  max-width: 900px;
}
@media (min-width: 768px) {
  .case-sec3-wrap .case-sec3-box {
    gap: 3rem;
  }
}
.case-sec3-wrap .case-sec3-box .number {
  padding: 0.6rem 4rem;
  background-color: #0b6ec4;
  color: #fff;
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.125rem);
  border-radius: 60px;
  font-family: var(--robo);
}
.case-sec3-wrap .case-sec3-box .case-title {
  text-align: center;
  font-size: clamp(1.375rem, 1.173rem + 0.88vw, 2rem);
  color: #0e64b0;
  font-weight: 900;
}
.case-sec3-wrap .case-sec3-box .yazirushi {
  width: 55px;
}
.case-sec3-wrap .case-sec3-box .case-box {
  background-color: #ffffe0;
  width: 100%;
  padding: 3.2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}
@media (min-width: 768px) {
  .case-sec3-wrap .case-sec3-box .case-box {
    gap: 2.4rem;
    padding: 5rem 1rem;
  }
}
.case-sec3-wrap .case-sec3-box .case-box img {
  width: 100%;
  max-width: 640px;
}
.case-sec3-wrap .case-sec3-box .case-box .title {
  color: #0e64b0;
  text-align: center;
  line-height: 1.7;
  font-size: clamp(1.5rem, 1.136rem + 1.58vw, 2.625rem);
  font-weight: 900;
}
.case-sec3-wrap .case-sec3-box .text {
  width: 100%;
  font-size: clamp(0.875rem, 0.794rem + 0.35vw, 1.125rem);
  line-height: 2.3;
}

.case-sec4-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 2rem;
}
@media (min-width: 768px) {
  .case-sec4-wrap {
    padding-block: 3rem;
  }
}

.case-sec4-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  text-align: center;
}
.case-sec4-box .title {
  font-size: clamp(1.5rem, 1.136rem + 1.58vw, 2.625rem);
  font-weight: 700;
  color: #023c6f;
}
.case-sec4-box img {
  width: 100%;
}
.case-sec4-box img.sp {
  display: flex;
}
@media (min-width: 768px) {
  .case-sec4-box img.sp {
    display: none;
  }
}
.case-sec4-box img.pc {
  display: none;
}
@media (min-width: 768px) {
  .case-sec4-box img.pc {
    display: flex;
  }
}
.case-sec4-box .text {
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
  line-height: 2.8;
}

.staff-sec2-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
  width: 100%;
}
@media (min-width: 992px) {
  .staff-sec2-wrap {
    padding-inline: 3rem;
  }
}

.staff-sec2-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 100%;
  max-width: 1300px;
  padding-block: 5rem;
  gap: 3rem;
}
@media (min-width: 768px) {
  .staff-sec2-box {
    padding-block: 6rem;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
}
.staff-sec2-box .main-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .staff-sec2-box .main-wrap {
    flex: 1;
  }
}
.staff-sec2-box .main-wrap .title-box {
  background-color: #00529a;
  text-align: center;
  color: #fff;
  font-size: clamp(1rem, 0.879rem + 0.53vw, 1.375rem);
  padding-block: 1rem;
  width: 100%;
}
.staff-sec2-box .main-wrap .title-box.green {
  background-color: #19c053;
}
.staff-sec2-box .main-wrap .title-box.orange {
  background-color: #ffa14a;
}
.staff-sec2-box .main-wrap .staff-box {
  width: 100%;
  display: flex;
  align-items: stretch;
}
.staff-sec2-box .main-wrap .staff-box .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  gap: 0.6rem;
}
.staff-sec2-box .main-wrap .staff-box p {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  color: #0a3961;
  text-align: center;
}

.staff-sec3-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-inline: 1.6rem;
  gap: 2rem;
}
@media (min-width: 768px) {
  .staff-sec3-wrap {
    gap: 3rem;
  }
}
@media (min-width: 992px) {
  .staff-sec3-wrap {
    padding-inline: 4rem;
    gap: 3rem;
  }
}

.staff-sec3-title {
  width: 100%;
  background-color: #00529a;
  padding-block: 0.5rem;
  text-align: center;
  color: #fff;
  font-size: clamp(1rem, 0.676rem + 1.4vw, 2rem);
}
.staff-sec3-title.green {
  background-color: #19c053;
}
.staff-sec3-title.orange {
  background-color: #ffa14a;
}

.staff-sec3-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #898989;
}
@media (min-width: 768px) {
  .staff-sec3-box {
    flex-direction: row;
    align-items: stretch;
    padding-bottom: 3rem;
  }
}
@media (min-width: 992px) {
  .staff-sec3-box {
    gap: 3rem;
  }
}
.staff-sec3-box .l {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  width: 100%;
  gap: 0.8rem;
}
@media (min-width: 768px) {
  .staff-sec3-box .l {
    flex: 1;
    gap: 1.6rem;
  }
}
.staff-sec3-box .l .img {
  width: 100%;
  aspect-ratio: 1;
}
.staff-sec3-box .l .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.staff-sec3-box .l p {
  color: #0a3961;
  font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
  font-weight: 700;
}
.staff-sec3-box .r {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 0.8rem;
  width: 100%;
}
@media (min-width: 768px) {
  .staff-sec3-box .r {
    flex: 1.3;
  }
}
.staff-sec3-box .r .title {
  padding-left: 1rem;
  border-left: solid 5px #0a3961;
  padding-block: 0.1rem;
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
  font-weight: 700;
  color: #0a3961;
}
.staff-sec3-box .r .text {
  font-size: clamp(0.875rem, 0.835rem + 0.18vw, 1rem);
  color: #0a3961;
}

.parallax {
  position: relative;
  overflow: hidden;
}

.parallax img {
  width: 100% !important;
  height: 130% !important;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.inner-box p {
  text-align: justify;
  text-justify: inter-ideograph;
  overflow-wrap: break-word;
  word-break: normal;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}