@charset "UTF-8";
/* ----------------------------------------
  初期設定
---------------------------------------- */
/* ---------------------------
  フォント
--------------------------- */
/* 日本語フォント */
/* 英字フォント */
/* ---------------------------
  カラー
--------------------------- */
/* ---------------------------
  ヘッダー高さ
--------------------------- */
/* ---------------------------
  レスポンシブ
--------------------------- */
/* ----------------------------------------
  共通設定
---------------------------------------- */
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: #333333;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 1.6px;
  width: 100%;
  margin: 0;
  padding: 0;
  font-weight: 400;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
}

body.no-scroll {
  overflow-y: hidden;
}

h1,
h2,
h3,
h4,
h5,
p,
ul,
li,
ol,
th,
td {
  padding: 0;
  margin: 0;
  font-size: initial;
}

a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.3;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 12px;
}
@media screen and (max-width: 768px) {
  img {
    border-radius: 8px;
  }
}

section {
  padding: 6rem 0 10rem;
}

.inner {
  width: 100%;
  padding: 0 2rem;
  margin-left: auto;
  margin-right: auto;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 1.6rem;
  }
}

.wrapper {
  max-width: 1020px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .wrapper {
    padding: 0;
  }
}

.l-inner {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .l-inner {
    margin-top: 5.6rem;
  }
}

/* ----------------------------------------
  コンポーネント
---------------------------------------- */
/* ---------------------------
  セクションタイトル
--------------------------- */
.section-title {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 3.2px;
  color: #D95A19;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 0.8rem;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 2.4rem;
    letter-spacing: 2.4px;
  }
}
.section-title.center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.section-title__small {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333333;
}

/* ---------------------------
  パンくずリスト
--------------------------- */
.breadcrumbs {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.breadcrumbs__inner {
  max-width: 144rem;
  width: 100%;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .breadcrumbs__inner {
    padding: 0.8rem 1.6rem;
  }
}
.breadcrumbs span {
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 1.2px;
  background: #ffffff;
}
.breadcrumbs .archive {
  background: #ffffff;
}

/* ---------------------------
  ボタン
--------------------------- */
.btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  .btn-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 2rem;
  }
}
.btn-wrapper.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  color: #D95A19;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .btn {
    font-size: 1.6rem;
    letter-spacing: 1.6px;
  }
}
.btn:hover {
  opacity: 1;
}
.btn:hover img {
  -webkit-animation: 0.4s linear arrow;
          animation: 0.4s linear arrow;
}
.btn__arrow {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #D95A19;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
}
@media screen and (max-width: 768px) {
  .btn__arrow {
    width: 4rem;
    height: 4rem;
  }
}
.btn img {
  width: 0.7rem;
  height: 1.4rem;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .btn img {
    width: 0.4rem;
    height: 0.8rem;
  }
}

@-webkit-keyframes arrow {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(16px);
            transform: translateX(16px);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateX(16px);
            transform: translateX(16px);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-16px);
            transform: translateX(-16px);
    opacity: 0;
  }
  80% {
    -webkit-transform: translateX(-16px);
            transform: translateX(-16px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes arrow {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(16px);
            transform: translateX(16px);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateX(16px);
            transform: translateX(16px);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-16px);
            transform: translateX(-16px);
    opacity: 0;
  }
  80% {
    -webkit-transform: translateX(-16px);
            transform: translateX(-16px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/* ---------------------------
  診療時間
--------------------------- */
.time-table {
  width: 100%;
  max-width: 55.5rem;
  min-width: 35.6rem;
  border-collapse: collapse;
  margin: 0 auto;
  border: none;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
}
.time-table__wrapper {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.time-table * {
  border-width: 0;
  vertical-align: middle;
}
.time-table th,
.time-table td {
  border: none;
}
.time-table thead {
  width: 100%;
}
.time-table thead th {
  width: 14rem;
  height: 5.6rem;
  background-color: #D95A19;
  color: #ffffff;
  padding: 0 1.2rem 0 2.4rem;
  border-radius: 12px 0 0 0;
}
@media screen and (max-width: 768px) {
  .time-table thead th {
    width: 11rem;
    padding: 0 0.4rem 0 1.2rem;
	  /*padding: 0 0.4rem 0 0.8rem;*/
    font-size: 1.4rem;
  }
}
.time-table thead td {
  width: 5.6rem;
  height: 5.6rem;
  background-color: #D95A19;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .time-table thead td {
    width: 3.4rem;
    font-size: 1.4rem;
  }
}
.time-table thead td:last-child {
  border-radius: 0 12px 0 0;
  padding-right: 1.2rem;
}
.time-table tbody th {
  width: 14rem;
  height: 5.6rem;
  background: #ffffff;
  padding: 0 1.2rem 0 2.4rem;
}
@media screen and (max-width: 768px) {
  .time-table tbody th {
    width: 11rem;
    padding: 0 0.4rem 0 1.2rem;
	  /*padding: 0 0.4rem 0 0.8rem;*/
    font-size: 1.4rem;
  }
}
.time-table tbody td {
  width: 5.6rem;
  height: 5.6rem;
  background: #ffffff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .time-table tbody td {
    width: 3.4rem;
    font-size: 1.4rem;
  }
}
.time-table tbody td:last-child {
  padding-right: 1.2rem;
}
.time-table tbody tr:last-child th {
  border-radius: 0 0 0 12px;
}
.time-table tbody tr:last-child td:last-child {
  border-radius: 0 0 12px 0;
  padding-right: 1.2rem;
}

/* ---------------------------
  ヘッダー
--------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #ffffff;
  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;
}
.header__inner {
  padding: 0 0 0 4rem;
  width: 100%;
  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;
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .header__inner {
    padding: 0 0 0 2rem;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 12px 16px;
  }
}
.header__logo {
  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;
}
.header__logo a {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 3.2px;
  color: #D95A19;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .header__logo a {
    font-size: 2.4rem;
    letter-spacing: 2.4px;
  }
}
.header__logo a:hover {
  color: #FFD9A0;
  opacity: 1;
}
.header__nav {
  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;
}
.header__nav-lists {
  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: 3.2rem;
  margin-right: 3.2rem;
}
@media screen and (max-width: 1280px) {
  .header__nav-lists {
    gap: 2rem;
    margin-right: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .header__nav-lists {
    display: none;
  }
}
.header__nav-lists a {
  font-weight: 700;
  color: #D95A19;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.header__nav-lists a:hover {
  color: #FFD9A0;
  opacity: 1;
}
.header__nav-lists a::before {
  content: "";
  position: absolute;
  background: #FFD9A0;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header__nav-lists a:hover::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
}
.header__btn a {
  background: #D95A19;
  color: #ffffff;
  padding: 2.4rem;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__btn a:hover {
  opacity: 1;
  background: #FFD9A0;
  color: #D95A19;
}
@media screen and (max-width: 768px) {
  .header__btn {
    display: none;
  }
}

.toggle {
  width: 4rem;
  height: 4rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: #D95A19;
  cursor: pointer;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 12px;
}
.toggle img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (min-width: 769px) {
  .toggle {
    display: none;
  }
}
.toggle__close {
  opacity: 0;
  visibility: hidden;
}
.toggle__line {
  display: block;
  height: 2px;
  width: 2rem;
  background: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.toggle__line:nth-of-type(1) {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}
.toggle__line:nth-of-type(3) {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}

.toggle.is-active .toggle__line:nth-of-type(1) {
  -webkit-transform: translateY(1px) rotate(-45deg);
          transform: translateY(1px) rotate(-45deg);
}
.toggle.is-active .toggle__line:nth-of-type(2) {
  display: none;
}
.toggle.is-active .toggle__line:nth-of-type(3) {
  -webkit-transform: translateY(0px) rotate(45deg);
          transform: translateY(0px) rotate(45deg);
}

/* ---------------------------
  ドロワー
--------------------------- */
.drawer {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  /*スクロールバーは非表示*/
  overflow-y: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 99;
}
.drawer.js-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.drawer__content {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 44px;
  width: 100%;
  background: #FDEFE3;
  margin-top: 5.6rem;
  padding: 8rem 1.6rem;
}
.drawer__lists {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 3.2rem;
}
.drawer__lists li {
  width: 100%;
  position: relative;
}
.drawer__lists a {
  color: #D95A19;
  font-weight: 700;
  width: 100%;
}
.drawer__btn a {
  padding: 2rem 3rem;
  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;
  width: 100%;
  background: #D95A19;
  gap: 1.6rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 2px;
}
.drawer__btn a:hover {
  opacity: 1;
}
.drawer__btn-icon {
  width: 3.2rem;
  height: 3.2rem;
}
.drawer__bg {
  position: fixed;
  z-index: 98;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4))), url(<path-to-image>) lightgray 50%/cover no-repeat;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url(<path-to-image>) lightgray 50%/cover no-repeat;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.7;
}
.drawer__bg.js-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* ---------------------------
  フッター
--------------------------- */
.footer {
  width: 100%;
  color: #333333;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 6rem 0 2rem;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  background: url(../img/common/bg-footer.png) no-repeat center center/cover;
  right: 0;
  bottom: 0;
  max-width: 56.5rem;
  max-height: 41.5rem;
  aspect-ratio: 565/415;
  width: 100%;
  height: auto;
  z-index: -1;
}
.footer__container {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 6rem;
}
.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer__content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.2rem;
  width: 58.2352941176%;
  max-width: 59.4rem;
}
@media screen and (max-width: 768px) {
  .footer__left {
    width: 100%;
  }
}
.footer__logo {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 3.2px;
  color: #D95A19;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    text-align: center;
    font-size: 2.4rem;
    letter-spacing: 2.4px;
  }
}
.footer__access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.footer__access-title {
  font-weight: 700;
}
.footer__access-lists li {
  list-style: disc;
  margin-left: 2.4rem;
}
@media screen and (max-width: 768px) {
  .footer__access-lists li {
    font-size: 1.4rem;
    letter-spacing: 1.4px;
  }
}
.footer__img {
  width: 39.4rem;
  height: 31.6rem;
}
@media screen and (max-width: 550px) {
  .footer__img {
    width: 100%;
    height: auto;
    aspect-ratio: 343/276;
  }
}
.footer__map {
  width: 100%;
  padding-top: 39.2156862745%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__map {
    padding-top: 145.7725947522%;
  }
}
.footer__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.footer__nav {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    max-width: 36rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 550px) {
  .footer__nav {
    max-width: 22.3rem;
  }
}
.footer__nav a {
  font-weight: 700;
  color: #D95A19;
}
.footer__nav-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .footer__nav-lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 2rem;
  }
}
.footer__copyright {
  font-size: 1.2rem;
  letter-spacing: 1.2px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 1rem;
  }
}

/* ---------------------------
  cta
--------------------------- */
.cta {
  background: url(../img/common/bg_cta.jpg) no-repeat center center/cover;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 8rem 0;
}
.cta::after {
  content: "";
  position: absolute;
  background: #FFD9A0;
  opacity: 0.75;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .cta__inner {
    padding: 0 0.8rem;
  }
}
.cta__container {
  position: relative;
  z-index: 5;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 4rem;
}
.cta .section-title {
  color: #333333;
}
.cta__content {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  width: 100%;
}
.cta__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .cta__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
.cta__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 700;
  letter-spacing: 2.4px;
}
.cta__btn a:hover {
  opacity: 1;
}
.cta__btn.tel a {
  background: #ffffff;
  color: #333333;
  font-size: 2.4rem;
  padding: 1.6rem 3.2rem;
}
@media screen and (max-width: 768px) {
  .cta__btn.tel a {
    gap: 2.4rem;
    /* justify-content: center; */
    font-size: 2rem;
  }
}
.cta__btn.mail a {
  background: #D95A19;
  color: #ffffff;
  font-size: 2rem;
  padding: 2rem 3.2rem;
}
@media screen and (max-width: 768px) {
  .cta__btn.mail a {
    font-size: 1.8rem;
  }
}
.cta__btn-icon {
  width: 3.2rem;
  height: 3.2rem;
}
.cta__text {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-align: center;
}

/* ---------------------------
  下層ページMV
--------------------------- */
.page-mv {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 30rem;
  background: #FDEFE3;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-mv {
    height: 22rem;
  }
}
.page-mv::before {
  content: "";
  position: absolute;
  background: url(../img/common/bg_gradation.png) no-repeat center center/cover;
  width: 100%;
  height: 21rem;
  left: 0;
  bottom: 0;
}
.page-mv__container {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
.page-mv__container::before {
  content: "";
  position: absolute;
  background: url(../img/common/leaf.png) no-repeat center center/cover;
  width: 17.2rem;
  height: 14.6rem;
  right: 3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .page-mv__container::before {
    width: 11rem;
    height: 9.3rem;
    right: 0;
  }
}
.page-mv__title-en {
  font-size: 4rem;
  letter-spacing: 4px;
  color: #D95A19;
}
@media screen and (max-width: 768px) {
  .page-mv__title-en {
    font-size: 3.2rem;
    letter-spacing: 3.2px;
  }
}
.page-mv__title-ja {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: #D95A19;
}
@media screen and (max-width: 768px) {
  .page-mv__title-ja {
    font-size: 1.6rem;
    letter-spacing: 1.6px;
  }
}

/* ---------------------------
  下層ページ リード文
--------------------------- */
.page-lead {
  padding: 6rem 0;
}
.page-lead__wrapper {
  max-width: 1080px;
}

.h2__title {
  background: #D95A19;
  color: #ffffff;
  font-size: 2.4rem;
  letter-spacing: 2.4px;
  font-weight: 700;
  padding: 1.2rem 2rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .h2__title {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}

/* ---------------------------
  表示設定
--------------------------- */
@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

.tab-only {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tab-only {
    display: block;
  }
}

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

.mobile-only {
  display: none;
}
@media screen and (max-width: 550px) {
  .mobile-only {
    display: block;
  }
}

/* 固定ヘッダーの高さ分だけ余白を空ける */
.anchor-offset {
  scroll-margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .anchor-offset {
    scroll-margin-top: 5.6rem;
  }
}