@charset "UTF-8";
/* ===== Variables (Minimal) ===== */
/* --- Color --- */
/* --- Layout --- */
/* --- Breakpoint --- */
/* ======= Base ====== */
/* ======　Base / 1rem = 10px ====== */
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-size: 1.6rem; /* 16px */
  line-height: 1.7;
  color: #333;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
}

/* 画像の隙間防止（LP前提） */
img {
  display: block;
}

/* 共通リンク */
a {
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}

/* ボタン */
button {
  cursor: pointer;
}

/* キーボード操作可視化 */
:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* ====== layout ====== */
.l-inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

.l-section {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .l-section {
    padding: 60px 0;
  }
}

.l-section--sm {
  padding: 40px 0;
}

.l-section--lg {
  padding: 120px 0;
}

.l-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* ====== Body ====== */
/* ====== Animation ====== */
.js-fade {
  opacity: 0;
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.js-fade.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ====== Header ====== */
.header {
  width: 100%;
  height: 78px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #000080;
}

.header__inner {
  width: 100%;
  height: 100%;
  padding: 0 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}

.header__logo {
  width: clamp(280px, 22vw, 350px);
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header__toggle {
  display: none;
}

/* ====== PC g-nav ====== */
.g-nav {
  display: block;
}

.g-nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(16px, 1.8vw, 32px);
}

.g-nav__item {
  color: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* 通常ナビだけに効かせる */
.g-nav__item a:not(.g-nav__btn) {
  color: inherit;
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
}

/* PC CTA button */
.g-nav__btn {
  width: 170px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  border-radius: 4px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.g-nav__btn:hover {
  opacity: 0.8;
}

.g-nav__btn--web {
  color: #477fc2;
  background-color: #fff;
  border: 2px solid #3f7fc8;
}

.g-nav__btn--tel {
  width: 185px;
  color: #fff;
  background-color: #477fc2;
}

.g-nav__btn-icon {
  width: 26px;
  height: auto;
  display: block;
}

/* ====== SP nav 初期状態 ====== */
.sp-nav {
  display: none;
}

/* ====== Header (Tab) ====== */
/* 1100px以下でPCナビを消してハンバーガー表示 */
@media (max-width: 1100px) {
  .g-nav {
    display: none;
  }
  .header__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6px;
    width: 40px;
    height: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
  }
  .header__toggle--line {
    width: 28px;
    height: 2px;
    background: #fff;
    display: block;
  }
  .sp-nav {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 420px;
    height: 100vh;
    background: rgba(0, 0, 128, 0.95);
    z-index: 999;
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
  }
  .sp-nav.is-open {
    right: 0;
  }
  .sp-nav__inner {
    padding: 72px 24px 32px;
  }
  .sp-nav__close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    margin: 0 auto 32px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
  }
  .sp-nav__close-icon {
    width: 24px;
    height: auto;
  }
  .sp-nav__head {
    margin-bottom: 32px;
    text-align: center;
  }
  .sp-nav__logo {
    padding: 0;
  }
  .sp-nav__logo img {
    width: 280px;
    max-width: 100%;
    height: auto;
  }
  .sp-nav__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 18px;
    text-align: center;
  }
  .sp-nav__item {
    color: #fff;
  }
  .sp-nav__item a:not(.sp-nav__btn) {
    color: inherit;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.6;
    text-decoration: none;
  }
  .sp-nav__item-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 280px;
    margin: 24px auto 0;
  }
  .sp-nav__btn {
    width: 100%;
    height: 52px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    border-radius: 4px;
  }
  .sp-nav__btn--web {
    color: #477fc2;
    background-color: #fff;
    border: 2px solid #3f7fc8;
  }
  .sp-nav__btn--tel {
    color: #fff;
    background-color: #477fc2;
  }
  .sp-nav__btn-icon {
    width: 24px;
    height: auto;
    display: block;
  }
}
/* ====== Header (SP) ====== */
@media (max-width: 767px) {
  .header {
    height: 65px;
    position: relative;
    top: auto;
    left: auto;
  }
  .header__inner {
    padding: 0 10px;
  }
  .header__logo {
    width: 240px;
    height: auto;
    margin-left: 14px;
  }
  .header__toggle {
    width: 40px;
    height: 40px;
  }
  .header__toggle--line {
    width: 28px;
    height: 2px;
  }
  .sp-nav {
    width: 82%;
    max-width: none;
  }
  .sp-nav__inner {
    padding: 64px 24px 32px;
  }
  .sp-nav__close {
    margin-bottom: 28px;
    font-size: 16px;
  }
  .sp-nav__close-icon {
    width: 22px;
  }
  .sp-nav__head {
    margin-bottom: 28px;
  }
  .sp-nav__logo img {
    width: 260px;
  }
  .sp-nav__menu {
    gap: 16px;
  }
  .sp-nav__item a:not(.sp-nav__btn) {
    font-size: 16px;
  }
  .sp-nav__item-group {
    max-width: 260px;
    gap: 12px;
    margin-top: 22px;
  }
  .sp-nav__btn {
    height: 50px;
    font-size: 15px;
  }
  .sp-nav__btn-icon {
    width: 22px;
  }
}
/* ====== Hero (PC) ====== */
.hero {
  width: 100%;
  height: 750px;
  background-image: url(../img/fv-pc.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  z-index: 0;
  margin-top: 88px;
}

.hero__inner {
  max-width: 1440px;
  height: 100%;
  position: relative;
  margin: 0 auto;
}

.hero__image {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero__image img {
  display: block;
  width: 900px;
  height: auto;
}

.hero__copy {
  position: absolute;
  left: 80px;
  top: 300px;
  z-index: 2;
  max-width: 590px;
  color: #444;
}

.hero__catch {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.3;
}

.hero__subtext--group {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.hero__sub {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.hero__lead {
  margin-top: 20px;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #87ceeb;
  letter-spacing: 0.12em;
}

.hero__lead::before {
  content: "";
  width: 64px;
  height: 1px;
  background-color: #87ceeb;
  margin-right: 10px;
}

.sp-only {
  display: none;
}

/* ====== Hero (Tab) ====== */
@media (max-width: 1100px) {
  .hero {
    height: 700px;
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .hero__inner {
    max-width: 1080px;
    height: 100%;
    padding: 0 32px;
  }
  .hero__copy {
    top: 220px;
    left: 56px;
    max-width: 400px;
  }
  .hero__catch {
    font-size: 34px;
    line-height: 1.45;
  }
  .hero__subtext--group {
    margin-top: 32px;
    gap: 6px;
  }
  .hero__sub {
    font-size: 14px;
    line-height: 1.6;
  }
  .hero__lead {
    margin-top: 18px;
    font-size: 10px;
  }
  .hero__lead::before {
    width: 48px;
  }
  .hero__image {
    right: -24px;
    bottom: 0;
  }
  .hero__image img {
    width: 680px;
  }
}
/* ====== Hero (SP) ====== */
@media (max-width: 767px) {
  .hero {
    height: 700px;
    padding: 10px 15px 0;
    background-image: url(../img/fv-sp.png);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 0;
  }
  .hero__inner {
    height: 100%;
    position: relative;
    padding: 0;
  }
  .hero__image {
    position: absolute;
    right: 10px;
    bottom: 30px;
  }
  .hero__image img {
    width: 280px;
    height: auto;
  }
  .hero__copy {
    position: absolute;
    top: 54px;
    left: 24px;
    max-width: 300px;
  }
  .hero__catch {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.45;
  }
  .hero__subtext--group {
    margin-top: 24px;
    gap: 0;
  }
  .hero__sub {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
  }
  .hero__lead {
    margin-top: 18px;
    font-size: 9px;
  }
  .hero__lead::before {
    width: 30px;
    margin-right: 8px;
  }
  .sp-only {
    display: inline;
  }
}
/* ====== Gallery ====== */
.gallery {
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
  background-color: #fbfdff;
}

.gallery__inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.gallery__slider {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1%;
}

.gallery__text-group {
  text-align: center;
  margin: 28px auto 0;
  max-width: 720px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #444;
}

/* ====== Gallery (SP) ====== */
@media (max-width: 767px) {
  .gallery {
    padding: 40px 12px;
  }
  .gallery__inner {
    width: 100%;
  }
  .swiper-slide img {
    width: 100%;
    height: 160px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .gallery__text-group {
    margin: 28px auto 0;
    padding: 0 20px;
    font-size: 13px;
    line-height: 1.8;
    text-align: left;
  }
}
/* ====== Reason ====== */
.reason {
  width: 100%;
  padding: 120px 0;
}

.reason__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.reason__title-area {
  text-align: center;
  margin-bottom: 56px;
  color: #444;
}

/* h2：セクションタイトル */
.reason__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
}

/* p：英字サブタイトル */
.reason__subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}

.reason__image {
  max-width: 550px;
}

.reason__image img {
  width: 100%;
  height: auto;
  border-radius: 1%;
}

.reason__main-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 54px;
  max-width: 1100px;
  padding: 0 32px;
  margin: 0 auto;
}

.reason__copy {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 480px;
  line-height: 1.8;
  color: #444;
}

.reason__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* h3相当：各理由の見出し */
.reason__item {
  font-size: 18px;
  font-weight: 700;
}

.reason__list-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

/* p：各理由の本文 */
.reason__text {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 8px;
}

/* ====== Reason (SP) ====== */
@media (max-width: 767px) {
  .reason {
    padding: 68px 12px;
  }
  .reason__title-area {
    margin-bottom: 42px;
  }
  .reason__main-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 28px;
    padding: 0 32px;
  }
  /* h2：セクションタイトル */
  .reason__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
  }
  /* p：英字サブタイトル */
  .reason__subtitle {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
  }
  .reason__image {
    max-width: 300px;
  }
  .reason__copy {
    max-width: 100%;
    padding: 0;
  }
  .reason__list {
    gap: 12px;
    max-width: 94%;
    margin: 0 auto;
  }
  /* h3相当：各理由の見出し */
  .reason__item {
    font-size: 16px;
    line-height: 1.6;
  }
  .reason__list-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
  }
  /* p：各理由の本文 */
  .reason__text {
    font-size: 12px;
    line-height: 1.9;
    letter-spacing: 0.03em;
  }
}
/* ====== Info ====== */
.info {
  width: 100%;
  padding: 56px 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 35, 60, 0.6))), url(../img/info-bg-pc.png);
  background-image: linear-gradient(rgba(20, 35, 60, 0.6)), url(../img/info-bg-pc.png);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.info__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.info__copy {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 56px;
}

/* h2：セクションタイトル */
.info__title {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
}

/* p：英字サブタイトル */
.info__subtitle {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}

/* h3相当：各理由の見出し */
.info-card__title {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

/* p：各理由の本文 */
.info-card__text {
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.info__cards {
  display: grid;
  grid-template-columns: repeat(3, 210px);
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

.info-card {
  width: 100%;
  max-width: 75%;
  justify-self: center;
}

.info-card__copy {
  max-width: 95%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.info-card__icon {
  width: 200px;
  margin: 0 auto 16px;
}

/* ====== Info (SP) ====== */
@media (max-width: 767px) {
  .info {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 35, 60, 0.6))), url(../img/info-bg-sp.png);
    background-image: linear-gradient(rgba(20, 35, 60, 0.6)), url(../img/info-bg-sp.png);
  }
  .info__copy {
    gap: 8px;
    margin-bottom: 40px;
  }
  /* h2：セクションタイトル */
  .info__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
  }
  /* p：英字サブタイトル */
  .info__subtitle {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
  }
  .info__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .info-card {
    width: 100%;
  }
  .info-card__icon {
    width: 110px;
    margin-bottom: 12px;
  }
  /* h3相当：各理由の見出し */
  .info-card__title {
    font-size: 15px;
    line-height: 1.6;
  }
  /* p：各理由の本文 */
  .info-card__text {
    display: none;
  }
}
/* ====== Vets ====== */
.vets {
  width: 100%;
  padding: 80px 0;
}

.vets__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 56px;
}

.vets__copy {
  text-align: center;
}

/* h2：セクションタイトル */
.vets__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
}

/* p：英字サブタイトル */
.vets__subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}

.vets__cards {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.vets-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  width: 350px;
}

.vets__image {
  width: 100%;
}

/* h3相当：各理由の見出し */
.vets-card__name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}

/* p：各理由の本文 */
.vets-card__profile,
.vets-card__specialty,
.vets-card__message {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 86x;
}

/* ====== Vets (SP) ====== */
@media (max-width: 767px) {
  .vets {
    padding: 68px 12px;
  }
  .vets__inner {
    gap: 42px;
  }
  /* h2：セクションタイトル */
  .vets__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
  }
  /* p：英字サブタイトル */
  .vets__subtitle {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
  }
  .vets__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 54px;
  }
  .vets-card {
    width: 100%;
    max-width: 320px;
    gap: 12px;
  }
  /* h3相当：各理由の見出し */
  .vets-card__name {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
  }
  /* p：各理由の本文 */
  .vets-card__profile,
  .vets-card__specialty,
  .vets-card__message {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 5px;
  }
}
/* ====== Contact ====== */
.contact {
  width: 100%;
  padding: 80px 0;
  background-color: #fbfdff;
}

.contact__inner {
  max-width: 1440px;
  padding: 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  margin: 0 auto;
}

.contact__copy {
  text-align: center;
}

/* h2：セクションタイトル */
.contact__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
}

/* p：英字サブタイトル */
.contact__subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}

.contact__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 48px;
}

.contact__btn {
  width: 320px;
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  border-radius: 3px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.contact__btn:hover {
  opacity: 0.8;
}

.contact__btn--web {
  color: #477fc2;
  background-color: #fff;
  border: 2px solid #3f7fc8;
}

.contact__btn--tel {
  color: #fff;
  background-color: #477fc2;
}

.contact__btn-icon {
  width: 50px;
  height: auto;
}

.contact__text {
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}

/* ====== Contact (SP) ====== */
@media (max-width: 767px) {
  .contact {
    padding: 68px 0;
  }
  .contact__inner {
    padding: 0 24px;
    gap: 40px;
  }
  /* h2：セクションタイトル */
  .contact__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
  }
  /* p：英字サブタイトル */
  .contact__subtitle {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
  }
  .contact__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
  }
  .contact__btn {
    width: 280px;
    height: 56px;
    font-size: 18px;
  }
  .contact__btn-icon {
    width: 24px;
  }
  .contact__text {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.8;
  }
}
/* ====== FAQ ====== */
.faq {
  width: 100%;
  padding: 80px 0;
}

.faq__inner {
  max-width: 1440px;
  padding: 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  gap: 60px;
}

.faq__copy {
  text-align: center;
  margin-bottom: 24px;
}

/* h2：セクションタイトル */
.faq__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
}

/* p：英字サブタイトル */
.faq__subtitle {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}

.faq__list {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}

.faq__item {
  width: 100%;
  background-color: #fff;
  border: 1px solid #cfe6ee;
  border-radius: 8px;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  padding: 16px 24px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  gap: 12px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.faq__answer {
  display: none;
  padding: 0 24px 18px;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  font-size: 15px;
  line-height: 1.7;
}

.faq__item.is-open .faq__answer {
  display: grid;
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.faq__label {
  color: #4a82c8;
  font-weight: 700;
  line-height: 1.6;
}

.faq__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.faq__item-icon {
  margin-left: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* ====== FAQ (SP) ====== */
@media (max-width: 767px) {
  .faq {
    padding: 68px 7px;
  }
  .faq__inner {
    padding: 0 24px;
    gap: 40px;
  }
  .faq__copy {
    margin-bottom: 10px;
  }
  .faq__list {
    gap: 12px;
    width: 100%;
    max-width: 320px;
  }
  /* h2：セクションタイトル */
  .faq__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
  }
  /* p：英字サブタイトル */
  .faq__subtitle {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
  }
  .faq__question {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
  .faq__answer {
    padding: 0 16px 18px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
  /* p：各理由の本文 */
  .faq__answer .faq__text {
    font-size: 13px;
    line-height: 1.6;
  }
}
/* ====== Footer ====== */
.footer {
  width: 100%;
  padding: 24px 0;
  background-color: #001b5e;
}

.footer__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 80px;
}

.footer__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 32px;
}

.footer__logo {
  width: 760px;
  height: auto;
  max-width: 100%;
}

.footer__access {
  margin-top: 16px;
  text-align: center;
  color: #fff;
}

.footer__address {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}

.footer__tel {
  color: inherit;
  font-size: 18px;
  font-weight: 600;
}

.footer__information {
  width: 100%;
  max-width: 980px;
  color: #fff;
}

.footer__schedule-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  margin-top: 8px;
}

.footer__schedule-table thead th,
.footer__schedule-table tbody th,
.footer__schedule-table tbody td {
  padding: 12px 8px;
  font-weight: 400;
  vertical-align: middle;
  text-align: center;
}

.footer__schedule-table thead th {
  border-bottom: 1px solid #fff;
}

.footer__schedule-table tbody tr {
  border-bottom: 1px solid #FFF;
}

.footer__schedule-table th:first-child {
  width: 180px;
}

.footer__paw {
  width: 24px;
  height: auto;
  display: inline-block;
}

.footer__schedule-text {
  margin-top: 24px;
  font-size: 12px;
  line-height: 1.8;
}

.footer__map {
  margin: 0 auto;
  width: 100%;
  max-width: 950px;
  height: 240px;
}

.footer__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 5px;
}

/* ====== Footer (SP) ====== */
@media (max-width: 767px) {
  .footer {
    padding: 24px 0 120px;
  }
  .footer__inner {
    gap: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .footer__logo {
    width: 320px;
    height: auto;
  }
  .footer__address {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 400;
  }
  .footer__tel {
    color: inherit;
    font-size: 28px;
    font-weight: 500;
  }
  .footer__schedule-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    margin-top: 6px;
  }
  .footer__schedule-table th,
  .footer__schedule-table td {
    padding: 8px 4px;
    font-size: 11px;
  }
  .footer__schedule-table th:first-child {
    width: 90px;
  }
  .footer__paw {
    width: 28px;
  }
  .footer__schedule-text {
    font-size: 11px;
    margin-top: 15px;
  }
  .footer__map {
    height: 240px;
  }
}
/* ====== Fixed CTA ====== */
/* 変更：PCでは表示しない */
.fixed-cta {
  display: none;
}

@media (max-width: 767px) {
  .fixed-cta {
    width: 100%;
    height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1000;
    background-color: #fff;
  }
  .fixed-cta__tel,
  .fixed-cta__reserve {
    width: 50%;
    height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
  }
  .fixed-cta__tel-main,
  .fixed-cta__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
  }
  .fixed-cta__reserve {
    position: relative;
    background-color: #f0e68c;
  }
  .fixed-cta__reserve-label {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -70%);
            transform: translate(-50%, -70%);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: 84px;
    height: 21px;
    padding: 0 14px;
    background-color: #fff;
    color: #8b6b00;
    border: 1px solid #d9c15a;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
    z-index: 2;
  }
  .fixed-cta__reserve-label::after {
    content: "";
    position: absolute;
    left: 30%;
    bottom: -6px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
  }
  .fixed__paw {
    width: 18px;
  }
}/*# sourceMappingURL=style.css.map */