@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300..700;1,300..700&family=Noto+Serif+JP:wght@200..900&display=swap');

*{box-sizing:border-box}

html,body{
  margin:0;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: 16px;
  color: #55381b;
  letter-spacing: 0.1rem;
}

a{color:inherit;text-decoration:none}

p{line-height: 1.8;}

.pc{display: block;}
.sp{display: none;}
@media(max-width: 576px){
  .pc{display: none;}
  .sp{display: block;}
}
























/* =========================================
MV
========================================= */
.mv {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.mv-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  padding: 18px 38px 0 92px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: #fff;
}

.mv-header__catch {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  line-height: 1;
  font-weight: 400;
}

.mv-header__logo-link {
  display: inline-block;
}

.mv-header__logo-img {
  display: block;
  height: 27px;
  width: auto;
}

.drawer-menu.is-open .mv-header__logo-img{
  height: 36px;
}

/* スクロール後 */
.mv-header.is-fixed .mv-header__catch {
  display: none;
}

.mv-header__right {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 25px;
}

.mv-header__reserve {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-decoration: none;
  line-height: 1;
}

.mv-header__reserve::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #fff;
  transform: translateX(-50%);
  transition: width 0.35s cubic-bezier(.4, 0, .2, 1);
}

.mv-header__reserve:hover::after {
  width: 100%;
}

.mv-header__menu {
  width: 55px;
  height: 55px;
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 50%;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.mv-header__menu span {
  width: 25px;
  height: 1px;
  background: #fff;
  display: block;
}

@media (max-width: 768px) {
  .mv-header {
    padding: 14px 18px 0;
    align-items: center;
  }

  .mv-header__catch {
    font-size: 10px;
    margin-top: 10px;
  }

  .mv-header__logo-img{
   height: 25px;
 }

 .mv-header__mark {
  width: 22px;
  height: 22px;
}

.mv-header__right {
  gap: 14px;
  padding-top: 0;
}

.mv-header__reserve {
  display: none;
}

.mv-header__menu {
  width: 52px;
  height: 52px;
  gap: 6px;
}

.mv-header__menu span {
  width: 24px;
}
}

/* スライダー */
.mv__slider,
.mv__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mv__slide {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.mv__slide.is-active {
  opacity: 1;
}

.mv__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv__slide.is-active {
  opacity: 1;
}

@media (max-width: 768px) {
  .mv {
    min-height: 100vh;
    min-height: 100svh;
  }
}

@media (max-width: 576px) {
  .mv {
    min-height: 450px;
  }
}


.drawer-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #f2efeb;
  color: #55381b;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s ease, visibility .4s ease;
}

.drawer-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer-menu__inner {
  position: relative;
  min-height: 100vh;
  padding: 30px 60px 30px 60px;
  overflow: hidden;
}

.drawer-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-menu__logo a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #55381b;
  text-decoration: none;
  font-size: 25px;
  letter-spacing: .16em;
  line-height: 1;
}

.drawer-menu__mark {
  width: 32px;
  height: 32px;
  border: 1px solid #d99a8f;
  border-radius: 50%;
  display: inline-block;
}

.drawer-menu__close {
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: #b99d8c;
  position: relative;
  cursor: pointer;
}

.drawer-menu__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 1px;
  background: #fff;
}

.drawer-menu__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.drawer-menu__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer-menu__address {
  margin: 6px 0 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .1em;
}

.drawer-menu__line {
  height: 1px;
  background: #b99d8c;
  margin-bottom: 55px;
}

.drawer-menu__body {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.drawer-menu__nav {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 10px;
  align-items: flex-start;
}

.drawer-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer-menu__list li {
  margin-bottom: 10px;
}

.drawer-menu__list a {
  color: #55381b;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: .12em;
  line-height: 1.6;
}

.drawer-menu__bnrs {
  display: block;
}

/* 上段 */
.drawer-menu__bnrs-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

/* 下段（Doctors File） */
.drawer-menu__bnrs-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* 共通 */
.drawer-menu__bnrs img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

/* WEB予約は上に固定 */
.drawer-menu__reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  margin-bottom: 22px;
  border: 1px solid #b99d8c;
  background: #fff;
  font-size: 16px;
}

.drawer-menu__bnrs a {
  display: block;
}

.drawer-menu__bnrs img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.drawer-menu__reserve {
  grid-column: 1 / -1;
  height: 58px;
  border: 1px solid #b99d8c;
  background: #fff;
  color: #55381b;
  text-decoration: none;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap:10px;
  font-size: 16px;
  letter-spacing: .14em;
  transition: .3s;
}

.drawer-menu__bnrs a{
  transition: .3s;
}

.drawer-menu__bnrs a:hover {
  opacity: .7;
}

.drawer-menu__reserve>img {
  width: 16px;
  height: auto;
  display: block;
}

.drawer-menu__bgtext {
  margin: 0;
  font-weight: 100;
  font-size: 100px;
  color: #fff;
  line-height: 0.9em;
  font-family: "Cormorant Infant", serif;
  pointer-events: none;
}

body.drawer-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .drawer-menu__inner {
    padding: 24px 20px 50px;
    overflow-y: auto;
  }

  .drawer-menu__logo a {
    font-size: 15px;
  }

  .drawer-menu.is-open .mv-header__logo-img {
    height: auto;
    width: 100%;
  }

  .drawer-menu__head {
    display: grid;
    grid-template-columns: 5fr 1fr;
    gap: 15px;
  }

  .drawer-menu__close {
    width: 50px;
    height: 50px;
  }

  .drawer-menu__body {
    display: block;
  }

  .drawer-menu__nav {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .drawer-menu__bnrs {
    margin-top: 30px;
  }

  .drawer-menu__bgtext {
    font-size: 42px;
    left: 20px;
    bottom: 20px;
  }
  .drawer-menu__address{
   font-size: 13px;
 }
}

@media (max-width: 768px) {
  .drawer-menu {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .drawer-menu__inner {
    min-height: auto;
    height: auto;
    padding: 24px 20px 80px;
    overflow: visible;
  }

  .drawer-menu__body {
    display: block;
  }

  .drawer-menu__nav {
    display: block;
  }

  .drawer-menu__bnrs {
    margin-top: 32px;
  }

  .drawer-menu__bnrs-main,
  .drawer-menu__bnrs-sub {
    gap:10px;
  }

  .drawer-menu__bgtext {
    position: static;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 40px;
  }
}


/*スクロール用*/
.mv-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9000;
  width: 100%;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  transition: background-color .4s ease, padding .4s ease;
}

.mv-header.is-fixed {
  background: rgba(85, 56, 27, 0.8);
  padding: 15px 10px;
}

.mv-header.is-fixed .mv-header__catch {
  display: none;
}

.mv-header.is-fixed .mv-header__right {
  padding-top: 0;
}

@media (max-width: 576px) {
  .mv-header.is-fixed {
    padding: 9px 10px;
  }

  .drawer-menu.is-open .drawer-menu__list{
    margin-bottom: 30px;
  }
}

/* =========================================
MV コンテンツ
========================================= */
.mv__content {
  position: absolute;
  top: 50%;
  right: 9.5vw;
  transform: translateY(-46%);
  z-index: 2;
  width: 500px;
  color: #fff;
}

/* キャッチコピー */
.mv__lead {
  margin: 0 0 40px;
  font-size: 40px;
  text-indent: -0.5em;
  line-height: 1.72;
  font-weight: 400;
  letter-spacing: 0.08em;
}

/* サブコピー */
.mv__sub {
  margin: 0 0 42px;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.08em;
}

/* リンク */
.mv__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 72px;
  margin-bottom: 62px;
  max-width: 400px;
}

.mv__links a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 180px;
  padding-bottom: 8px;
  color: #fff;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-decoration: none;
  transition: color .3s ease;
}

.mv__links a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #6b4b33;
  transition: width .3s ease;
}

.mv__links a::after {
  content: "";
  width: 15px;
  height: 15px;
  margin-left: 24px;
  background: url("../img/front/icon-arrow-white.webp") center / contain no-repeat;
  transition: background-image .3s ease, transform .3s ease;
}

.mv__links a:hover {
  color: #6b4b33;
}

.mv__links a:hover::before {
  width: 100%;
}

.mv__links a:hover::after {
  background-image: url("../img/front/icon-arrow-brown.webp");
  transform: translateX(4px);
}

/* 診療時間 */
.mv__time {
  width: 100%;
}

.mv__time.sp{
	display: none;
	padding: 20px 10px;
	background: #f2efeb;
}

.mv__time table {
  width: 100%;
  margin: 0;
  color: #fff;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.mv__time th,
.mv__time td {
  padding: 15px 15px;
  border-bottom: 1px solid rgba(255,255,255,.85);
  text-align: center;
  font-weight: 400;
  vertical-align: middle;
}

.mv__time th:first-child,
.mv__time td:first-child {
  width: 160px;
  text-align: center;
}

.mv__time th {
  font-size: 18px;
}

.mv__time td {
  font-size: 18px;
}

.mv__circle {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
}

.mv__note {
  margin: 26px 0 12px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.mv__caution {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

/* =========================================
SP
========================================= */
@media (max-width: 768px) {
  .mv__content {
    width: 100%;
    padding: 0 10px 0 30px;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    top: auto;
    bottom: 5%;
    right: auto;
    left: 50%;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  }

  .mv__lead {
    font-size: 28px;
    text-align: right;
    text-indent: 0;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .mv__sub {
    margin-top: 10px;
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: 20px;
    font-size: 13px;
    letter-spacing: 0px;
    text-align: right;
  }

  .mv__links {
    column-gap: 14px;
    margin-bottom: 0;
  }

  .mv__links a {
    min-width: 0;
    font-size: 16px;
    border-bottom: 1px solid;
    padding: 10px;
  }

  .mv__links a::after {
    width: 16px;
    height: 12px;
    margin-left: 11px;
  }

  .mv__time.pc{
   display: none;
 }

 .mv__time.sp{
   display: block;
 }


 .mv__time table {
  font-size: 13px;
}

.mv__time th,
.mv__time td {
  height: 46px;
  padding: 10px;
  border-bottom-width: 1px;
  border-color: #b3927b;
  color: #55381b;
}

.mv__time thead th{
	border-top-width: 1px;
  border-color: #b3927b;
}

.mv__time th:first-child,
.mv__time td:first-child {
  width: 130px;
}

.mv__time th,
.mv__time td {
  font-size: 15px;
}

.mv__circle {
  width: 13px;
  height: 13px;
  background: #55381b;
}

.mv__note {
  margin-top: 16px;
  font-size: 14px;
}

.mv__caution {
  font-size: 12px;
}
}

/* =========================================
MV Scroll 装飾
========================================= */
.scroll {
  padding-bottom: 15px;
  font-size: 18px;
  font-family: "Cormorant Infant", serif;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  bottom: 120px;
  left: 60px;
}

.scroll::before {
  content: "";
  width: 5px;
  height: 5px;
  margin: auto;
  border-radius: 50%;
  background-color: #fff;
  -webkit-animation: scroll 3s infinite;
  animation: scroll 3s infinite;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  z-index: 2;
}

.scroll::after {
  content: "";
  width: 1px;
  height: 120px;
  margin: auto;
  background-color: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

/* 線のアニメーション */
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  100% {
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  100% {
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
}

@-webkit-keyframes scroll_sp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  100% {
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
}

@keyframes scroll_sp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  100% {
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
}

@media(max-width: 576px){
  .scroll {
    padding-bottom: 5px;
    bottom: 60px;
    left: 2px;
    font-size: 14px;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  }
  .scroll a {
    font-size: 14px;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  }
  .scroll::before {
    -webkit-animation: scroll_sp 3s infinite;
    animation: scroll_sp 3s infinite;
  }
  .scroll::after {
    height: 60px;
  }
}



























































/* =========================================
共通ボタン
========================================= */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  height: 50px;
  padding: 0 48px;
  border: 1px solid #b9957d;
  border-radius: 999px;
  background: #b9957d;
  color: #fff;
  font-size: 18px;
  font-family: "Cormorant Infant", serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}

.c-btn:hover {
  background: #fff;
  color: #6b4b33;
  border-color: #6b4b33;
}

/* =========================================
TOP お知らせ
========================================= */
.top-news {
  background: #f3eee9;
  padding: 88px 0 96px;
  color: #5a3c28;
}

.top-news__inner {
  width: min(1000px, calc(100% - 120px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
/*column-gap: 100px;*/
}

.top-news__head {
  padding-top: 18px;
}

.top-news__title {
  margin: 0;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.top-news__en {
  margin: 8px 0 0;
  color: #b9957d;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.top-news__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-news__item {
  border-top: 1px solid #b9957d;
}

.top-news__item:last-child {
  border-bottom: 1px solid #b9957d;
}

.top-news__link {
  display: grid;
  grid-template-columns: 170px 210px 1fr;
  align-items: center;
  min-height: 91px;
  padding: 0 1rem;
  color: #5a3c28;
  text-decoration: none;
  transition: opacity .3s ease;
}

.top-news__link:hover {
  opacity: .65;
}

.top-news__date {
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.top-news__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 27px;
  border: 1px solid #5a3c28;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.top-news__text {
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.top-news__more {
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .top-news {
    padding: 30px 0 70px;
  }

  .top-news__inner {
    width: calc(100% - 40px);
    display: block;
  }

  .top-news__head {
    padding-top: 0;
    margin-bottom: 32px;
  }

  .top-news__title {
    font-size: 22px;
  }

  .top-news__en {
    font-size: 18px;
  }

  .top-news__link {
    display: block;
    min-height: auto;
    padding: 22px 0;
  }

  .top-news__date {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 14px;
  }

  .top-news__cat {
    width: auto;
    height: auto;
    padding: 3px 5px;
    font-size: 11px;
  }

  .top-news__text {
    display: block;
    font-size: 16px;
  }

  .top-news__more {
    margin-top: 40px;
  }

  .c-btn {
    min-width: 230px;
    height: 50px;
    font-size: 18px;
  }
}



.fc {
  padding: 28px 0 115px;
  position: relative;
}

.fc:before {
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, rgb(242, 239, 235)), to(rgba(242, 239, 235, 0)));
  background: linear-gradient(180deg, rgb(242, 239, 235) 30%, rgba(242, 239, 235, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.fc-bg{
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.fc__inner {
  width: min(1000px, calc(100% - 84px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.fc__head {
  margin-bottom: 82px;
}

.fc__title {
  margin: 0;
  font-family: "Cormorant Infant", "Yu Mincho", "YuMincho", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: .1rem;
}

.fc__en {
  margin: 8px 0 0;
  font-family: "Cormorant Infant", serif;
  font-size: 23px;
  line-height: 1;
  letter-spacing: .08em;
  color: #b88f75;
}

.fc__list {
  display: grid;
  gap: 46px;
}

.fc-item {
  display: grid;
  grid-template-columns: 281px 1fr;
  column-gap: 40px;
  align-items: flex-start;
}

.fc-item__icon-wrap {
  position: relative;
  min-height: 218px;
}

.fc-item__num {
  position: absolute;
  top: 1px;
  left: 0;
  z-index: 2;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Cormorant Infant", serif;
  color: #563619;
  font-size: 55px;
  line-height: 1;
  letter-spacing: .02em;
}

.fc-item__num span {
  font-size: 18px;
  letter-spacing: .12em;
}

.fc-item__circle {
  width: 183px;
  height: 183px;
  margin-left: 98px;
  border: 1px solid #b98f75;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.fc-item__circle img {
  width: 55%;
  height: 45%;
  object-fit: contain;
}

.fc-item__body h3 {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: .12em;
}

.fc-item__body p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: .1rem;
}


/* SP */
@media screen and (max-width: 768px) {
  .fc {
    padding: 58px 0 58px;
    background: #f5f1ed;
    margin-top: 0;
  }

  .fc__inner {
    width: calc(100% - 4%);
  }

  .fc__head {
    margin-bottom: 33px;
  }

  .fc__title {
    font-size: 22px;
    line-height: 1.35;
    letter-spacing: .08em;
  }

  .fc__en {
    margin-top: 6px;
    font-size: 18px;
    letter-spacing: .02em;
  }

  .fc__list {
    gap: 30px;
  }

  .fc-item {
    display: block;
  }

  .fc-item__icon-wrap {
    min-height: 164px;
    margin-bottom: 32px;
  }

  .fc-item__num {
    position: static;
    margin-bottom: 10px;
    font-size: 40px;
  }

  .fc-item__num span {
    font-size: 18px;
    letter-spacing: .09em;
  }

  .fc-item__circle {
    width: 88px;
    height: 88px;
    margin: 0;
  }

  .fc-item__circle img {
    width: 50px;
  }

  .fc-item__body h3 {
    margin: -152px 0 78px;
    padding-left: 220px;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: .06em;
  }

  .fc-item__body p {
    font-size: 29px;
    line-height: 2.05;
    letter-spacing: .04em;
  }

  .fc__btn {
    margin-top: 58px;
  }

  .c-readmore {
    width: 295px;
    height: 58px;
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .fc-item__body h3 {
    padding-left: 105px;
    margin: -134px 0 19px;
  }

  .fc-item__body p {
    font-size: 16px;
  }
}



.hdc-menu {
  color: #543619;
  background: #f5f1ed;
  font-family: "Yu Mincho", "YuMincho", serif;
}

.hdc-concept {
  position: relative;
  padding: 103px 0 145px;
  background: #f2efeb;
}

.hdc-concept__inner {
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto;
}

.hdc-concept__head {
  margin: auto;
  margin-bottom: 52px;
  width: 92%;
}

.hdc-concept__head h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.55;
}

.hdc-concept__head p {
  margin: 3px 0 0;
  font-family: "Cormorant Infant", serif;
  font-size: 22px;
  text-align: left;
  line-height: 1.2;
  color: #b88f75;
}

.hdc-concept__content {
  position: relative;
  min-height: 500px;
}

.hdc-concept__text {
  position: absolute;
  top: 94px;
  left: 50%;
  transform: translateX(-50%);
  width: 620px;
  margin: 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: .08em;
}

.hdc-concept__img {
  position: absolute;
}
.hdc-concept__img:before{
 content:'';
 width:100%;
 height:100%;
 border: 1px solid #b98f75;
 border-radius: 10px;
 position:absolute;
 top: 0;
 left: 0;
 z-index: 1;
}

.hdc-concept__img img {
  display: block;
  width: 100%;
  max-width: 276px;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  transform: translate(11px, 11px);
}

.hdc-concept__img--left {
  left: 0;
  top: 0;
/*width: 23%;*/
height: auto;
}

.hdc-concept__img--right {
  right: 0;
  top: -55px;
/*width: 23%;*/
height: auto;
}

.hdc-cards {
  position: relative;
  z-index: 2;
  margin-top: -150px;
  padding-bottom: 0;
}

.hdc-cards::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  bottom: 0;
  height: 235px;
  background: #e2ded7;
  z-index: -1;
}

.hdc-cards__inner {
  width: min(1000px, calc(100% - 4%));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px;
}

.hdc-card {
  overflow: hidden;
  min-height: 242px;
  border-radius: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #fff;
  text-decoration: none;
  color: #543619;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.hdc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
}

.hdc-card__icon {
  width: 86px;
  height: 86px;
  margin-bottom: 19px;
  border: 1px solid #b98f75;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.hdc-card__icon img {
  width: 48px;
  height: auto;
}

.hdc-card p {
  margin: 0 0 32px;
  font-size: 20px;
  line-height: 1;
  letter-spacing: .08em;
}

.hdc-card span {
  width: 100%;
  height: 50px;
  background: #bea391;
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Cormorant Infant", serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .08em;
}

.hdc-info {
  position: relative;
  overflow: hidden;
  padding: 242px 0 134px;
  background: #e2ded7;
}

.hdc-info__inner {
  position: relative;
  width: min(1000px, calc(100% - 60px));
  margin: 0 auto;
}

.hdc-info__bg {
  position: absolute;
  top: -145px;
  right: 0;
  margin: 0;
  color: #fff;
  font-family: "Cormorant Infant", serif;
  font-size: 100px;
  line-height: .92;
  letter-spacing: .03em;
  opacity: .5;
  text-align: right;
  pointer-events: none;
}

.hdc-info__head {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}

.hdc-info__head h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .08em;
}

.hdc-info__head p {
  margin: 8px 0 0;
  font-family: "Cormorant Infant", serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: .08em;
  color: #b88f75;
}

.hdc-info__lead {
  position: relative;
  z-index: 1;
  margin: 0 0 44px;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: .08em;
}

.hdc-info__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px 24px;
}

.hdc-info-card {
  position: relative;
  min-height: 90px;
  padding: 0 62px 0 20px;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  color: #543619;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .4s ease, opacity .4s ease;
}

.hdc-info-card::before {
  content: "";
  width: 0%;
  height: 0%;
  display: block;
  border-radius: 62% 38% 63% 37%/40% 60% 40% 60%;
  background-color: #b3927b;
  opacity: 0.5;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
}

.hdc-info-card:hover:before {
  width: 200%;
  height: 300%;
}

.hdc-info-card::after {
  content: "";
  position: absolute;
  right: 21px;
  top: 50%;
  width: 18px;
  height: 12px;
  background: #543619;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  clip-path: polygon(0 0, 100% 50%, 0 100%, 28% 50%);
  transform: translateY(-50%);
}

.hdc-info-card:hover:after {
  right: 10px;
}

.hdc-info-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.hdc-info-card span {
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: .08em;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .hdc-concept {
    overflow: hidden;
    padding: 56px 0 0;
  }

  .hdc-concept__inner {
    width: calc(100% - 4%);
  }

  .hdc-concept__head {
    width: calc(100% - 32px);
    margin: 0 auto 28px;
    text-align: left;
  }

  .hdc-concept__head h2 {
    font-size: 22px;
    line-height: 1.45;
    letter-spacing: .04em;
  }

  .hdc-concept__head p {
    margin-top: 8px;
    margin-left: -18px;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: .03em;
    white-space: nowrap;
  }

  .hdc-concept__content {
    min-height: auto;
    display: grid;
    grid-template-columns: 120px 1fr;
    column-gap: 23px;
    align-items: end;
    width: calc(100% - 4%);
    margin: 0 auto;
  }

  .hdc-concept__img {
    position: relative;
  }

  .hdc-concept__img img {
    transform: translate(8px, 8px);
  }

  .hdc-concept__img--left {
    left: auto;
    top: 0;
    width: 120px;
    height: auto;
    grid-column: 1;
    grid-row: 1;
  }

  .hdc-concept__img--right {
    right: auto;
    top: -40px;
    width: 185px;
    height: auto;
    grid-column: 2;
    grid-row: 1;
    margin-bottom: -76px;
  }

  .hdc-concept__text {
    position: static;
    grid-column: 1 / -1;
    transform: none;
    width: 100%;
    margin: 67px 0 0 0;
    text-align: left;
    font-size: 16px;
  }

  .hdc-cards {
    display: block;
    margin-top: 27px;
  }

  .hdc-cards::before{
   height: 100%;
 }

 .hdc-cards__inner{
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 10px;
 }

 .hdc-card{
   width: calc(33% - 10px);
   min-height: 140px;
   border-radius: 8px;
 }

 .hdc-card p{
   font-size: 16px;
   margin-bottom: 14px;
 }

 .hdc-card__icon{
   width: 54px;
   height: 54px;
   margin-bottom: 14px;
   margin-top: 10px;
 }

 .hdc-card__icon img{
   width: 38px;
 }

 .hdc-card span{
   height: 31px;
 }

 .hdc-info {
  margin-top: 0;
  padding: 68px 0 88px;
}

.hdc-info__inner {
  width: calc(100% - 4%);
}

.hdc-info__bg {
  position: unset;
  font-size: 44px;
  margin-bottom: 30px;
}

.hdc-info__head {
  margin-bottom: 42px;
}

.hdc-info__head h2 {
  font-size: 22px;
}

.hdc-info__head p {
  font-size: 18px;
}

.hdc-info__lead {
  margin-bottom: 42px;
  font-size: 16px;
  line-height: 1.8;
}

.hdc-info__grid {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hdc-info-card {
  min-height: 75px;
  padding: 0 15px 0;
  border-radius: 10px;
}

.hdc-info-card img {
  width: 35px;
}

.hdc-info-card span {
  font-size: 15px;
}

.hdc-info-card::after{
	width: 10px;
	height: 10px;
}
}


.hcp {
  padding: 120px 0 66px;
  background: url(../img/front/fc-bg.webp) no-repeat;
  background-size: cover;
  background-position: bottom;
  color: #543619;
  font-family: "Yu Mincho", "YuMincho", serif;
}

.hcp__inner {
  width: min(1000px, calc(100% - 80px));
  margin: 0 auto;
}

.hcp__head {
  margin-bottom: 58px;
}

.hcp__title {
  margin: 0;
  font-size: 30px;
  font-weight: 500;
  line-height:1.5;
}

.hcp__en {
  margin: 0;
  font-family: "Cormorant Infant", serif;
  font-size: 22px;
  color: #b3927b;
}

.hcp__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 44px 42px;
}

.hcp-card {
  overflow: hidden;
  grid-column: span 2;
  border-radius: 10px;
  background: #fff;
}

.hcp-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.hcp-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.hcp-card__visual {
  position: relative;
  height: 150px;
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
}

.hcp-card__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(84, 54, 25, .82);
}

.hcp-card__visual h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .08em;
  text-align: center;
}

.hcp-card__body {
  padding: 30px 20px;
}

.hcp-card__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hcp-card__body li {
  position: relative;
  padding-left: 21px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .08em;
}

.hcp-card__body li + li {
  margin-top: 17px;
}

.hcp-card__body li::before {
  content: "";
  position: absolute;
  top: .38em;
  left: 0;
  width: 14px;
  height: 10px;
  background: #543619;
  clip-path: polygon(0 0, 100% 50%, 0 100%, 28% 50%);
}

.hcp__btn {
  margin-top: 62px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .hcp {
    padding: 64px 0 52px;
  }

  .hcp__inner {
    width: calc(100% - 4%);
  }

  .hcp__head {
    margin-bottom: 38px;
  }

  .hcp__title {
    font-size: 22px;
    line-height: 1.45;
    letter-spacing: .05em;
  }

  .hcp__en {
    font-size: 18px;
    letter-spacing: .04em;
  }

  .hcp__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hcp-card,
  .hcp-card:nth-child(4),
  .hcp-card:nth-child(5) {
    grid-column: auto;
    min-height: auto;
  }

  .hcp-card__visual {
    height: 70px;
  }

  .hcp-card__visual h3 {
    font-size: 18px;
  }

  .hcp-card__visual h3 br{
   display: none;
 }

 .hcp-card__body {
  padding: 15px 15px 20px;
}

.hcp-card__body li {
  font-size: 16px;
  line-height: 1.5;
}

.hcp__btn {
  margin-top: 48px;
}
}


.h-about {
  position: relative;
  overflow: hidden;
  padding: 126px 0 92px;
  background: #f2efeb;
  color: #543619;
  font-family: "Yu Mincho", "YuMincho", serif;
}

.h-about__inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 54.5% 1fr;
  align-items: start;
}

.h-about__slide {
  position: relative;
  padding: 0 0 100px;
}

.h-about-slider {
  position: relative;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
}

.h-about-slider__track {
  display: flex;
  width: 100%;
  height: 440px;
  transition: transform .8s cubic-bezier(.4, 0, .2, 1);
}

.h-about-slider__item {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.h-about-slider__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.h-about-slider__dots {
  position: absolute;
  top: -36px;
  right: 8px;
  display: flex;
  gap: 14px;
  z-index: 3;
}

.h-about-slider__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d6cdc4;
  cursor: pointer;
}

.h-about-slider__dots button.is-active {
  background: #6b4a2b;
}

.h-about__bg-text {
  width: calc(100vw - (50% - 600px) / 2);
  position: absolute;
  bottom: -33px;
  left: calc(50vw - 600px);
  z-index: 2;
  margin: 0;
  color: rgba(255,255,255,.9);
  font-family: "Cormorant Infant", serif;
  font-size: 99px;
  line-height: .92;
  letter-spacing: .035em;
  pointer-events: none;
}

.h-about__body {
  padding: 0 40px 0 80px;
}

.h-about__head {
  margin-bottom: 50px;
}

.h-about__head h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .1em;
}

.h-about__head p {
  margin: 8px 0 0;
  font-family: "Cormorant Infant", serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: .08em;
  color: #b98f75;
}

.h-about__links {
  margin: 0 0 40px;
  padding:0;
  list-style: none;
}

.h-about__links li {
  border-bottom: 1px solid #543619;
}

.h-about__links a {
  position: relative;
  min-height: 57px;
  padding: 15px 65px 15px 15px;
  font-weight: 400;
  font-size: 18px;
  display: flex;
  align-items: center;
  color: #543619;
  text-decoration: none;
  line-height: 1.4;
  letter-spacing: .1em;
  transition: opacity .3s ease;
}

.h-about__links a::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 18px;
  height: 12px;
  background: #543619;
  clip-path: polygon(0 0, 100% 50%, 0 100%, 28% 50%);
  transform: translateY(-50%);
}

.h-about__links a:hover {
  opacity: .6;
}

.h-about__btn {
  margin-left: 50px;
}

.h-about__btn .c-readmore {
  width: 330px;
}

@media screen and (max-width: 768px) {
  .h-about {
    padding: 42px 0 0;
  }
  .h-about__inner{
    display: flex;
    flex-direction: column-reverse;
    gap:60px;
  }
  .h-about__body {
    width: 100%;
    padding: 0 2%;
  }
  .h-about__head {
    margin-bottom: 30px;
  }
  .h-about__head h2{
    font-size: 22px;
  }
  .h-about__head p{
    font-size: 18px;
  }
  .h-about__links a{
    padding: 15px;
    font-size: 16px;
  }
  .h-about-slider__track{
   width: 300px;
   height: 210px;
 }
 .h-about-slider__dots {
  top: -23px;
}
.h-about__bg-text{
 bottom: 43px;
 left: 0;
 font-size: 44px;
}
}









.h-director {
  padding: 86px 0 21px;
  background: #f2efeb;
}

.h-director__inner {
  width: min(1000px, calc(100% - 80px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48% 1fr;
  column-gap: 88px;
  align-items: start;
}

.h-director__head {
  margin-bottom: 54px;
}

.h-director__head h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: .1em;
}

.h-director__head p {
  margin: 4px 0 0;
  font-family: "Cormorant Infant", serif;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: .09em;
  color: #b98f75;
}

.h-director__name {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid #b98f75;
}

.h-director__name span {
  padding: 7px 13px 7px;
  border: 1px solid #543619;
  border-radius: 15px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: .08em;
}

.h-director__name strong {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: .12em;
}

.h-director__name em {
  font-family: "Cormorant Infant", serif;
  font-size: 13px;
  font-style: normal;
  letter-spacing: .16em;
  color: #b98f75;
}

.h-director__list {
  margin: 0;
}

.h-director__list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  padding: 24px 0;
  border-bottom: 1px solid #b98f75;
}

.h-director__list dt {
  font-size: 16px;
  text-align: center;
  font-weight: 600;
  letter-spacing: .08em;
}

.h-director__list dd {
  margin: 0;
  font-size: 16px;
}

.h-director__message {
  margin-top: 52px;
}

.h-director__message-en {
  margin: 0 0 22px;
  color: rgba(255,255,255,.9);
  font-family: "Cormorant Infant", serif;
  font-size: 90px;
  line-height: 1;
  letter-spacing: .04em;
}

.h-director__text {
  width: 157%;
  margin-right: -40%;
  margin: 0;
  font-size: 16px;
  line-height: 2;
  letter-spacing: .08em;
}

.h-director__visual {
  position: relative;
  padding-top: 28px;
  height: 100%;
}

.h-director__photo {
  position: relative;
  width: 460px;
  height: 460px;
  margin-left: auto;
  border: 1px solid #b98f75;
  border-radius: 8px;
}

.h-director__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transform: translate(10px, 10px);
}

.h-director__catch {
  position: absolute;
  z-index: 2;
  margin: 0;
  padding: 18px 10px;
  background: rgba(255,255,255,1);
  color: #543619;
  writing-mode: vertical-rl;
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: .12em;
}

.h-director__catch--01 {
  right: 36px;
  top: 360px;
}

.h-director__catch--02 {
  right: 104px;
  top: 410px;
}

@media screen and (max-width: 768px) {
  .h-director {
    padding: 64px 0 26px;
  }

  .h-director__inner {
   width: calc(100% - 4%);
   display: flex;
   flex-direction: row;
   gap: 12px;
 }

 .h-director__content {
  flex: 1;
}

.h-director__head {
  order: 1;
  margin-bottom: 0;
}

.h-director__head.pc{
	display: none;
}

.h-director__head.sp{
	display: block;
	width: calc(100% - 4%);
	margin: 0 auto 30px;
}

.h-director__head h2 {
  font-size: 22px;
}

.h-director__head p {
  font-size: 18px;
}

.h-director__visual {
  flex: 1;
  padding-top: 0;
  padding-bottom: 0;
}

.h-director__photo {
  width: 180px;
  height: 230px;
  margin: 0;
}

.h-director__photo img {
  transform: translate(6px, 6px);
}

.h-director__catch {
  font-size: 17px;
  padding: 10px 6px;
  white-space: nowrap;
}

.h-director__catch--01 {
  right: 6px;
  top: 46%;
}

.h-director__catch--02 {
  right: 46px;
  top: 66%;
}

.h-director__name {
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.h-director__name span {
  padding: 3px 7px 3px;
  font-size: 12px;
}

.h-director__name strong{
  font-size: 20px;
}

.h-director__list div {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}

.h-director__list dt,
.h-director__list dd {
  font-size: 14px;
  text-align: left;
}

.h-director__message {
  margin: 0 auto;
  width: calc(100% - 4%);
}

.h-director__message.pc{
  display: none;
}

.h-director__message.sp{
  display: block;
  margin-top: 30px;
}

.h-director__message-en {
  font-size: 64px;
}

.h-director__text {
  width: 100%;
  font-size: 16px;
  line-height: 2;
}
}






.h-blog {
  padding: 76px 0 70px;
  background: #f2efeb;
  color: #543619;
  font-family: "Yu Mincho", "YuMincho", serif;
}

.h-blog__inner {
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
}

.h-blog__head h2 {
  margin: 0;
  font-size: 31px;
  font-weight: 500;
  letter-spacing: .1em;
}

.h-blog__head p {
  margin: 0;
  font-family: "Cormorant Infant", serif;
  font-size: 22px;
  color: #b3927b;
  line-height: 1;
}

.h-blog__body {
  position: relative;
  padding: 80px 56px 80px 0;
}

.h-blog__body::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: #e2ded7;
  border-radius: 20px 0 0 20px;
}

.h-blog-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.h-blog-row + .h-blog-row {
  margin-top: 40px;
}

.h-blog-row__head {
  padding-top: 24px;
}

.h-blog-row__head h3 {
  margin: 0 0 5px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .08em;
}

.h-blog-row__head a {
  position: relative;
  display: block;
  padding-bottom: 14px;
  border-bottom: 1px solid #55381b;
  color: #55381b;
  text-decoration: none;
  font-family: "Cormorant Infant", serif;
  font-size: 18px;
  overflow: hidden;
  transition: color .35s ease;
}

.h-blog-row__head a span {
  display: inline-block;
  transition: transform .35s ease;
}

.h-blog-row__head a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: #55381b;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.77,0,.175,1);
}

.h-blog-row__head a::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 16px;
  height: 10px;
  background: #55381b;
  clip-path: polygon(0 0, 100% 50%, 0 100%, 28% 50%);
  transform: translateY(-50%);
  transition:
  transform .35s ease,
  background .35s ease;
}

.h-blog-row__head a:hover {
  color: #543619;
}

.h-blog-row__head a:hover::before {
	background: #b1a08f;
  transform: scaleX(1);
}

.h-blog-row__head a:hover::after {
  background: #b1a08f;
  transform: translate(6px, -50%);
}

.h-blog-row__slider {
  position: relative;
  min-width: 0;
}

.h-blog-row__viewport {
  overflow: hidden;
  width: 100%;
}

.h-blog-row__track {
  display: flex;
  gap: 24px;
  transition: transform .5s ease;
}

.h-blog-card {
  flex: 0 0 calc((100% - 72px) / 4);
}

.h-blog-card a {
  display: block;
  color: #543619;
  text-decoration: none;
}

.h-blog-card__img {
  width: 100%;
  aspect-ratio: 217 / 141;
  overflow: hidden;
  border-radius: 12px;
}

.h-blog-card__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.h-blog-card h4 {
  margin: 12px 0 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .06em;
}

.h-blog-row__arrow {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  border: 1px solid #543619;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  z-index: 5;
  transform: translateY(-50%);
}

.h-blog-row__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #543619;
  border-right: 2px solid #543619;
}

.h-blog-row__arrow--next {
  right: -21px;
}

.h-blog-row__arrow--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.h-blog-row__arrow--prev {
  left: -21px;
}

.h-blog-row__arrow--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.h-blog-row__arrow.is-hidden {
  display: none;
}

/* ======================
PC調整
====================== */
@media screen and (min-width: 769px) {

  .h-blog__inner {
    width: auto;
    max-width: none;
    margin-left: calc(50% - 500px);
    margin-right: 0;
  }

  .h-blog__body {
    padding: 80px 20px 80px 0;
  }

  .h-blog-row {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 70px;
  }

  .h-blog-row__slider {
    padding-right: 0;
  }

  .h-blog-row__arrow {
    top: 62px;
    transform: translateY(-50%);
  }

  .h-blog-row__arrow--next {
    right: -10px;
  }

  .h-blog-row__arrow--prev {
    left: -10px;
  }
}

/* ======================
SP
====================== */
@media screen and (max-width: 768px) {

  .h-blog {
    padding: 42px 0 56px;
  }

  .h-blog__inner {
    width: 100%;
    margin: 0;
  }

  .h-blog__head {
    width: calc(100% - 32px);
    margin: 0 auto 48px;
  }

  .h-blog__head h2 {
    font-size: 22px;
  }

  .h-blog__head p {
    font-size: 18px;
  }

  .h-blog__body {
    padding: 0 16px 56px;
  }

  .h-blog__body::before {
    top: -22px;
    right: 0;
    width: 60%;
    height: calc(100% + 22px);
    border-radius: 20px 0 0 20px;
  }

  .h-blog-row {
    display: block;
  }

  .h-blog-row + .h-blog-row {
    margin-top: 58px;
  }

  .h-blog-row__head {
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 20px;
    align-items: end;
    padding-top: 0;
    margin-bottom: 22px;
  }

  .h-blog-row__head h3 {
    margin: 0;
    font-size: 25px;
    line-height: 1.45;
    letter-spacing: .08em;
  }

  .h-blog-row__head a {
    padding-bottom: 10px;
    font-size: 24px;
    text-align: left;
  }

  .h-blog-row__head a::after {
    bottom: 20px;
    width: 16px;
    height: 10px;
  }

  .h-blog-row__track {
    gap: 16px;
  }

  .h-blog-card {
    flex: 0 0 calc((100% - 16px) / 2);
  }

  .h-blog-card__img {
    aspect-ratio: 188 / 122;
    border-radius: 8px;
  }

  .h-blog-card h4 {
    margin-top: 10px;
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: .04em;
  }

  .h-blog-row__arrow {
    top: 53px;
    width: 35px;
    height: 35px;
  }

  .h-blog-row__arrow::before {
    width: 6px;
    height: 6px;
  }

  .h-blog-row__arrow--prev {
    left: -8px;
  }

  .h-blog-row__arrow--next {
    right: -8px;
  }
}

@media screen and (max-width: 430px) {

  .h-blog-row__head {
    grid-template-columns: 1fr 135px;
  }

  .h-blog-row__head h3 {
    font-size: 18px;
  }

  .h-blog-row__head a {
    font-size: 16px;
  }

  .h-blog-card h4 {
    font-size: 16px;
  }
}








.h-faq {
  padding: 90px 0 100px;
  background: #f3f0eb;
  color: #55381b;
  font-family: "Cormorant Infant", "Noto Serif JP", serif;
}

.h-faq__inner {
  width: min(100% - 40px, 1000px);
  margin: 0 auto;
}

.h-faq__head {
  margin-bottom: 42px;
}

.h-faq__title {
  margin: 0;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.16em;
  line-height: 1.4;
}

.h-faq__en {
  margin: 4px 0 0;
  color: #b3927b;
  font-size: 24px;
  line-height: 1;
}

.h-faq__list {
  width: 100%;
}

.h-faq__item {
  border-bottom: 1px solid #b3927b;
}

.h-faq__item:first-child {
  border-top: none;
}

.h-faq__q {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr 32px;
  align-items: center;
  width: 100%;
  padding: 28px 30px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.h-faq__qmark {
  color: #b3927b;
  font-family: "Cormorant Infant", serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
}

.h-faq__qtext {
  font-size: 18px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.12em;
  line-height: 1.7;
}

.h-faq__icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.h-faq__icon::before,
.h-faq__icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 24px;
  height: 1px;
  background: #55381b;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.h-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.h-faq__item.is-open .h-faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.h-faq__a {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.45s ease;
}

.h-faq__item.is-open .h-faq__a {
  grid-template-rows: 1fr;
}

.h-faq__a-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 72px;
  transition: padding 0.45s ease;
}

.h-faq__item.is-open .h-faq__a-inner {
  padding: 0 72px 34px;
}

.h-faq__a p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.9;
}

.h-faq__btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 62px;
}

@media screen and (max-width: 768px) {
  .h-faq {
    padding: 24px 0 72px;
  }

  .h-faq__inner {
    width: 100%;
  }

  .h-faq__head {
    margin-bottom: 10px;
  }

  .h-faq__title {
    font-size: 22px;
  }

  .h-faq__en {
    font-size: 18px;
  }

  .h-faq__q {
    grid-template-columns: 35px 1fr 24px;
    padding: 20px 10px 20px 0;
  }

  .h-faq__qmark {
    font-size: 34px;
  }

  .h-faq__qtext {
    font-size: 16px;
    letter-spacing: 0.08em;
  }

  .h-faq__a-inner {
    padding: 0 0 0 42px;
  }

  .h-faq__item.is-open .h-faq__a-inner {
    padding: 0 0 26px 42px;
  }

  .h-faq__a p {
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 1.8;
  }

  .h-faq__btn-wrap {
    margin-top: 44px;
  }

  .c-more-btn {
    min-width: 230px;
    height: 54px;
    font-size: 18px;
  }
}





.h-loop {
  width: 100%;
  overflow: hidden;
  background: #f3f0eb;
}

.h-loop__track {
  display: flex;
  width: max-content;
  animation: hLoopSlide 24s linear infinite;
}

.h-loop__group {
  display: flex;
  width: 100vw;
  flex-shrink: 0;
}

.h-loop__item {
  width: calc(100vw / 3);
  aspect-ratio: 3 / 2;
  flex-shrink: 0;
  overflow: hidden;
}

.h-loop__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes hLoopSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100vw);
  }
}

@media screen and (max-width: 768px) {
  .h-loop__item {
    width: calc(100vw / 3);
    aspect-ratio: 3 / 2;
  }

  .h-loop__track {
    animation-duration: 18s;
  }
}




.h-footer {
  background: #f3f0eb;
  padding: 100px 0;
  color: #55381b;
}

.h-footer__inner {
  width: min(100% - 40px, 1100px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.h-footer__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.h-footer__logo img {
  width: 100%;
  max-width: 360px;
  height: auto;
}

.h-footer__address {
  line-height: 1.5;
  margin-bottom: 10px;
  font-size: 16px;
}

.h-footer__tel,
.h-footer__fax {
  margin: 0;
  font-size: 16px;
}

.h-footer__table {
  margin: 20px 0 10px;
}

.h-footer__table table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 15px;
}

.h-footer__table th,
.h-footer__table td {
  padding: 12px 3px;
  text-align: center;
}

.h-footer__table thead th {
  font-weight: 500;
}

.h-footer__table tbody tr {
  border-top: 1px solid #b3927b;
}

.h-footer__table tbody tr:last-child {
  border-bottom: 1px solid #b3927b;
}

.h-footer__table td:first-child {
  padding-left: 0;
}

.h-footer__note {
  font-size: 14px;
  margin-bottom: 10px;
}

.h-footer__note.small {
  font-size: 13px;
  line-height: 1.8;
}

.h-footer__right iframe {
  width: 100%;
  height: 100%;
  max-height: 450px;
  border: none;
}

/* SP */
@media screen and (max-width: 768px) {
  .h-footer {
    padding: 60px 0;
  }

  .h-footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .h-footer__logo span {
    font-size: 18px;
  }

  .h-footer__address {
    font-size: 14px;
  }

  .h-footer__table table {
    font-size: 15px;
  }

  .h-footer__right iframe {
    min-height: 300px;
  }
}



.h-footer-nav {
  background: #e2ded7;
  font-family: "Cormorant Infant", "Noto Serif JP", serif;
}

.h-footer-nav__inner {
  width: min(100% - 40px, 1100px);
  margin: 0 auto;
  padding: 70px 0 86px;
  display: grid;
  grid-template-columns: 1.25fr 440px;
  gap: 74px;
}

.h-footer-nav__links {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.9fr;
  gap: 42px;
}

.h-footer-nav__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.h-footer-nav__menu li + li {
  margin-top: 18px;
}

.h-footer-nav__menu a {
  color: #55381b;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.h-footer-nav__menu a:hover {
  opacity: 0.6;
}

.h-footer-nav__links a:hover {
  opacity: 0.6;
}

.h-footer-nav__reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 58px;
  border: 1px solid #b9957f;
  border-radius: 5px;
  background: #fff;
  color: #55381b;
  text-decoration: none;
  letter-spacing: 0.14em;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.h-footer-nav__reserve>img{
 width: 16px;
 height: auto;
 display: block;
}

.h-footer-nav__reserve:hover,.h-footer-nav__doctor:hover {
  opacity: .7;
}

.h-footer-nav__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.h-footer-nav__bnr {
  display: block;
  height: auto;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  transition: 0.3s;
}

.h-footer-nav__bnr:nth-child(5) {
  grid-column: 1 / 2;
}

.h-footer-nav__bnr:hover {
  opacity: .7;
}

.h-footer-nav__bnr img,
.h-footer-nav__doctor img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.h-footer-nav__doctors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.h-footer-nav__doctor {
  display: block;
  height: auto;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  transition: 0.3s;
}

.h-footer-nav__copy {
  margin: 0;
  padding: 20px 20px;
  background: #b3927b;
  color: #fff;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* SP */
@media screen and (max-width: 768px) {
  .h-footer-nav__inner {
    width: calc(100% - 4%);
    padding: 50px 0 60px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .h-footer-nav__links {
    grid-template-columns: 1fr 1fr;
    gap: 18px 28px;
  }

  .h-footer-nav__col:nth-child(1) {
    order:1;
  }
  .h-footer-nav__col:nth-child(2) {
    order:3;
  }
  .h-footer-nav__col:nth-child(3) {
    order:2;
  }

  .h-footer-nav__col:nth-child(2) {
    grid-column: 1 / -1;
  }

  .h-footer-nav__col:nth-child(2) .h-footer-nav__menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
  }

  .h-footer-nav__menu li + li {
    margin-top: 14px;
  }

  .h-footer-nav__col:nth-child(2) .h-footer-nav__menu li + li {
    margin-top: 0;
  }

  .h-footer-nav__menu a {
    font-size: 14px;
    letter-spacing: 0.08em;
  }

  .h-footer-nav__reserve {
    height: 56px;
    font-size: 16px;
  }

  .h-footer-nav__grid {
    gap: 10px;
  }

  .h-footer-nav__bnr {
    height: 58px;
  }

  .h-footer-nav__doctors {
    gap: 10px;
  }

  .h-footer-nav__doctor,
  .h-footer-nav__doctor.is-large {
    height: 72px;
  }

  .h-footer-nav__copy {
    padding: 18px 16px;
    font-size: 11px;
  }
}









.archive-blog {
  background: #f3f0eb;
  color: #5b351f;
  padding: 18px 0 100px;
  font-family: "Cormorant Infant", "Noto Serif JP", serif;
}

.archive-blog__breadcrumb {
  width: min(100% - 80px, 1280px);
  margin: 0 auto 120px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.archive-blog__breadcrumb a {
  color: #b9957f;
  text-decoration: none;
}

.archive-blog__inner {
  width: min(100% - 80px, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 56px;
}

.archive-blog__item {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 48px;
  padding: 0 0 22px;
  border-bottom: 1px solid #b9957f;
}

.archive-blog__item + .archive-blog__item {
  padding-top: 22px;
}

.archive-blog__img {
  display: block;
  width: 100%;
  aspect-ratio: 217 / 141;
  overflow: hidden;
  border-radius: 6px;
}

.archive-blog__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-blog__meta {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 6px;
  margin-bottom: 24px;
}

.archive-blog__meta time {
  font-size: 18px;
  letter-spacing: 0.12em;
}

.archive-blog__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.archive-blog__cats a {
  min-width: 130px;
  padding: 5px 20px;
  border: 1px solid #5b351f;
  border-radius: 999px;
  color: #5b351f;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.archive-blog__title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.7;
}

.archive-blog__title a {
  color: #5b351f;
  text-decoration: none;
}

.archive-blog__side {
  padding-top: 0;
}

.archive-side-box + .archive-side-box {
  margin-top: 46px;
}

.archive-side-box__title {
  margin: 0 0 16px;
  padding: 16px 20px;
  border-radius: 4px;
  background: #b9957f;
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.18em;
  text-align: center;
}

.archive-side-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.archive-side-box li {
  position: relative;
  padding-left: 22px;
}

.archive-side-box li + li {
  margin-top: 22px;
}

.archive-side-box li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b9957f;
}

.archive-side-box a {
  color: #5b351f;
  font-size: 17px;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-decoration: none;
}

.archive-blog__pagination {
  margin-top: 70px;
}

.archive-blog__pagination ul {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.archive-blog__pagination a,
.archive-blog__pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #e4dfd7;
  color: #5b351f;
  font-size: 26px;
  line-height: 1;
  text-decoration: none;
}

.archive-blog__pagination .current {
  background: #5b351f;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .archive-blog {
    padding: 16px 0 70px;
  }

  .archive-blog__breadcrumb {
    width: calc(100% - 32px);
    margin-bottom: 56px;
    font-size: 12px;
  }

  .archive-blog__inner {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .archive-blog__item {
    grid-template-columns: 120px 1fr;
    gap: 18px;
    padding-bottom: 22px;
  }

  .archive-blog__item + .archive-blog__item {
    padding-top: 22px;
  }

  .archive-blog__meta {
    display: block;
    margin: 0 0 12px;
  }

  .archive-blog__meta time {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
  }

  .archive-blog__cats {
    gap: 5px;
  }

  .archive-blog__cats a {
    min-width: auto;
    padding: 4px 12px;
    font-size: 11px;
  }

  .archive-blog__title {
    font-size: 15px;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }

  .archive-blog__pagination ul {
    gap: 12px;
  }

  .archive-blog__pagination a,
  .archive-blog__pagination span {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .archive-side-box__title {
    font-size: 18px;
  }

  .archive-side-box a {
    font-size: 15px;
  }
}





.single-blog {
  background: #f3f0eb;
  color: #5b351f;
  padding: 18px 0 100px;
  font-family: "Cormorant Infant", "Noto Serif JP", serif;
}

.single-blog__breadcrumb {
  width: min(100% - 80px, 1280px);
  margin: 0 auto 135px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.single-blog__breadcrumb a {
  color: #b9957f;
  text-decoration: none;
}

.single-blog__inner {
  width: min(100% - 80px, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 56px;
}

.single-blog__meta {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 24px;
}

.single-blog__meta time {
  font-size: 18px;
  letter-spacing: 0.12em;
}

.single-blog__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.single-blog__cats a {
  min-width: 130px;
  padding: 5px 20px;
  border: 1px solid #5b351f;
  border-radius: 999px;
  color: #5b351f;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.single-blog__title {
  margin: 0 0 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #b9957f;
  color: #b9957f;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.single-blog__content {
  font-size: 17px;
  letter-spacing: 0.1em;
  line-height: 1.9;
}

.single-blog__content p {
  margin: 0 0 1.8em;
}

.single-blog__content h2 {
  margin: 2.2em 0 0.8em;
  font-size: 24px;
  line-height: 1.6;
}

.single-blog__content img {
  max-width: 100%;
  height: auto;
}

.single-side-box + .single-side-box {
  margin-top: 46px;
}

.single-side-box__title {
  margin: 0 0 16px;
  padding: 16px 20px;
  border-radius: 4px;
  background: #b9957f;
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.18em;
  text-align: center;
}

.single-side-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-side-box li {
  position: relative;
  padding-left: 22px;
}

.single-side-box li + li {
  margin-top: 22px;
}

.single-side-box li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b9957f;
}

.single-side-box a {
  color: #5b351f;
  font-size: 17px;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-decoration: none;
}

/* おすすめの記事 */
.single-recommend {
  margin-top: 110px;
}

.single-recommend__inner {
  width: min(100% - 80px, 1100px);
  margin: 0 auto;
}

.single-recommend__head {
  margin-bottom: 62px;
}

.single-recommend__head h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.4;
}

.single-recommend__head p {
  margin: 6px 0 0;
  color: #b9957f;
  font-size: 24px;
  letter-spacing: 0.12em;
}

.single-recommend__item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  padding-bottom: 36px;
  border-bottom: 1px solid #b9957f;
}

.single-recommend__item + .single-recommend__item {
  padding-top: 30px;
}

.single-recommend__img {
  display: block;
  width: 100%;
  aspect-ratio: 217 / 141;
  overflow: hidden;
  border-radius: 8px;
}

.single-recommend__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-recommend__meta {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 28px;
}

.single-recommend__meta time {
  font-size: 22px;
  letter-spacing: 0.12em;
}

.single-recommend__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.single-recommend__cats a {
  min-width: 150px;
  padding: 7px 22px;
  border: 1px solid #5b351f;
  border-radius: 999px;
  color: #5b351f;
  font-size: 15px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.single-recommend__body h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.7;
}

.single-recommend__body h3 a {
  color: #5b351f;
  text-decoration: none;
}

.single-recommend__btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

.single-recommend__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  height: 60px;
  padding: 0 40px;
  border: 1px solid #b9957f;
  border-radius: 999px;
  background: #b9957f;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.single-recommend__btn:hover {
  background: #fff;
  color: #b9957f;
}

@media screen and (max-width: 768px) {
  .single-blog {
    padding: 16px 0 70px;
  }

  .single-blog__breadcrumb {
    width: calc(100% - 32px);
    margin-bottom: 60px;
    font-size: 12px;
  }

  .single-blog__inner {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .single-blog__meta {
    display: block;
    margin-bottom: 18px;
  }

  .single-blog__meta time {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
  }

  .single-blog__cats a {
    min-width: auto;
    padding: 5px 14px;
    font-size: 12px;
  }

  .single-blog__title {
    font-size: 21px;
  }

  .single-blog__content {
    font-size: 15px;
    letter-spacing: 0.06em;
  }

  .single-recommend {
    margin-top: 70px;
  }

  .single-recommend__inner {
    width: calc(100% - 32px);
  }

  .single-recommend__head {
    margin-bottom: 36px;
  }

  .single-recommend__head h2 {
    font-size: 28px;
  }

  .single-recommend__head p {
    font-size: 18px;
  }

  .single-recommend__item {
    grid-template-columns: 120px 1fr;
    gap: 18px;
    padding-bottom: 24px;
  }

  .single-recommend__item + .single-recommend__item {
    padding-top: 24px;
  }

  .single-recommend__meta {
    display: block;
    margin-bottom: 12px;
  }

  .single-recommend__meta time {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
  }

  .single-recommend__cats {
    gap: 5px;
  }

  .single-recommend__cats a {
    min-width: auto;
    padding: 4px 12px;
    font-size: 11px;
  }

  .single-recommend__body h3 {
    font-size: 15px;
    letter-spacing: 0.08em;
  }

  .single-recommend__btn {
    min-width: 230px;
    height: 54px;
    font-size: 18px;
  }

  .single-side-box__title {
    font-size: 18px;
  }

  .single-side-box a {
    font-size: 15px;
  }
}







.faq-archive {
  background: #f3f0eb;
  color: #5b351f;
  padding: 18px 0 100px;
  font-family: "Cormorant Infant", "Noto Serif JP", serif;
}

.faq-archive__breadcrumb {
  width: min(100% - 80px, 1280px);
  margin: 0 auto 120px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.faq-archive__breadcrumb a {
  color: #b9957f;
  text-decoration: none;
}

.faq-archive__inner {
  width: min(100% - 80px, 1100px);
  margin: 0 auto;
}

.faq-archive__item {
  border-bottom: 1px solid #b9957f;
}

.faq-archive__q {
  display: grid;
  grid-template-columns: 54px 1fr 32px;
  align-items: center;
  width: 100%;
  padding: 32px 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-archive__qmark {
  color: #b3927b;
  font-family: "Cormorant Infant", serif;
  font-size: 42px;
  line-height: 1;
}

.faq-archive__qtext {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.7;
}

.faq-archive__icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.faq-archive__icon::before,
.faq-archive__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 1px;
  background: #5b351f;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-archive__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-archive__item.is-open .faq-archive__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-archive__a {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.45s ease;
}

.faq-archive__item.is-open .faq-archive__a {
  grid-template-rows: 1fr;
}

.faq-archive__a-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 54px;
  transition: padding 0.45s ease;
}

.faq-archive__item.is-open .faq-archive__a-inner {
  padding: 0 54px 34px;
}

.faq-archive__a-inner p {
  margin: 0 0 1.4em;
  font-size: 17px;
  letter-spacing: 0.1em;
  line-height: 1.9;
}

.faq-archive__pagination {
  margin-top: 58px;
}

.faq-archive__pagination ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-archive__pagination a,
.faq-archive__pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e4dfd7;
  color: #5b351f;
  font-size: 22px;
  text-decoration: none;
}

.faq-archive__pagination .current {
  background: #5b351f;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .faq-archive {
    padding: 16px 0 70px;
  }

  .faq-archive__breadcrumb {
    width: calc(100% - 32px);
    margin-bottom: 56px;
    font-size: 12px;
  }

  .faq-archive__inner {
    width: calc(100% - 32px);
  }

  .faq-archive__q {
    grid-template-columns: 42px 1fr 24px;
    padding: 24px 0;
  }

  .faq-archive__qmark {
    font-size: 34px;
  }

  .faq-archive__icon::before, .faq-archive__icon::after{
    width: 15px;
  }

  .faq-archive__qtext {
    font-size: 16px;
    letter-spacing: 0.08em;
    padding-right: 10px;
  }

  .faq-archive__a-inner {
    padding: 0 0 0 42px;
  }

  .faq-archive__item.is-open .faq-archive__a-inner {
    padding: 0 0 26px 42px;
  }

  .faq-archive__a-inner p {
    font-size: 14px;
    letter-spacing: 0.06em;
  }

  .faq-archive__pagination a,
  .faq-archive__pagination span {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}


.sp-fixed-cta {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-fixed-cta {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    width: 100%;
    padding: 10px 12px;
    gap: 10px;
    background: #d8c8b9;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.12);
  }

  .sp-fixed-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    border-radius: 8px;
    text-decoration: none;
    line-height: 1.35;
  }

  .sp-fixed-cta__btn--reserve {
    width: 49%;
    text-align: center;
    color: #4b2f16;
    background: #fff;
    border: 1px solid #b8947a;
  }

  .sp-fixed-cta__btn--contact {
    width: 51%;
    color: #fff;
    background: #b8957d;
  }

  .sp-fixed-cta__main img {
    display: block;
    width: 14px;
    height: 14px;
  }

  .sp-fixed-cta__main,
  .sp-fixed-cta__sub{
   display: flex;
   align-items: center;
   justify-content: center;
   gap:5px;
   font-weight: 500;
 }

 .sp-fixed-cta__main {
  font-size: 14px;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.sp-fixed-cta__sub {
  font-size: 12px;
}

.sp-fixed-cta__sub img {
  width: 12px;
  height: 10px;
}

.sp-fixed-cta__btn--contact .sp-fixed-cta__main{
 margin-bottom: 0;
 letter-spacing: 0;
}

body {
  padding-bottom: 88px;
}
}