:root {
  --c_base: #504237;
 --c_yamabuki:#F8B500;
	 --c_cleam:#fbfaf5;
  --w_pc: calc(100% - clamp(60px, 8vw, 120px));
  --w_pc2: calc(100% - clamp(120px, 16vw, 240px));
  --w_sp: 89.3334%;
  --mr_sp: 5.3334%;
  --f_serif: 'Kiwi Maru', serif;
  --f_en: 'Josefin Sans', sans-serif;
  --f_num: 'Josefin Sans', sans-serif;
}


/* ========================================

common

======================================== */
.serif {
  font-family: var(--f_serif);
}
.en {
  font-family: var(--f_en);
}
.num {
  font-family: var(--f_num);
}

.is-fade > *:not(.is-not) {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
}
.is-fade > .is-not {
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
}
.is-fade.fadeIn > * {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.box-fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
}
.box-fade.fadeIn {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p_hover a:hover {
  opacity: 0.7;
}

.svg.c_white svg {
  fill: #fff;
}
.svg.c_black svg {
  fill: #000;
}

.img-fit {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.img-fit::before {
  width: 100%;
  height: 0;
  content: '';
  display: block;
  padding-top: 100%;
  position: relative;
}
.img-fit img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.is-fade > *:nth-child(0) {
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
}

.is-fade > *:nth-child(1) {
  -webkit-transition-delay: 220ms;
          transition-delay: 220ms;
}

.is-fade > *:nth-child(2) {
  -webkit-transition-delay: 340ms;
          transition-delay: 340ms;
}

.is-fade > *:nth-child(3) {
  -webkit-transition-delay: 460ms;
          transition-delay: 460ms;
}

.is-fade > *:nth-child(4) {
  -webkit-transition-delay: 580ms;
          transition-delay: 580ms;
}

.is-fade > *:nth-child(5) {
  -webkit-transition-delay: 700ms;
          transition-delay: 700ms;
}

.is-fade > *:nth-child(6) {
  -webkit-transition-delay: 820ms;
          transition-delay: 820ms;
}

.is-fade > *:nth-child(7) {
  -webkit-transition-delay: 940ms;
          transition-delay: 940ms;
}

.is-fade > *:nth-child(8) {
  -webkit-transition-delay: 1060ms;
          transition-delay: 1060ms;
}

.is-fade > *:nth-child(9) {
  -webkit-transition-delay: 1180ms;
          transition-delay: 1180ms;
}

.is-fade > *:nth-child(10) {
  -webkit-transition-delay: 1300ms;
          transition-delay: 1300ms;
}

.is-fade > *:nth-child(11) {
  -webkit-transition-delay: 1420ms;
          transition-delay: 1420ms;
}

.is-fade > *:nth-child(12) {
  -webkit-transition-delay: 1540ms;
          transition-delay: 1540ms;
}

.is-fade > *:nth-child(13) {
  -webkit-transition-delay: 1660ms;
          transition-delay: 1660ms;
}

.is-fade > *:nth-child(14) {
  -webkit-transition-delay: 1780ms;
          transition-delay: 1780ms;
}

.is-fade > *:nth-child(15) {
  -webkit-transition-delay: 1900ms;
          transition-delay: 1900ms;
}

.l_tel {
  pointer-events: none;
}

@media screen and (max-width: 800px) {
  .l_tel {
    pointer-events: auto;
  }
}
.arrow, .arrow_ul {
  width: 9px;
  height: 9px;
  vertical-align: middle;
  display: block;
  position: relative;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.arrow::before, .arrow_ul::before {
  width: 9px;
  height: 9px;
  content: '';
  display: block;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.arrow::after, .arrow_ul::after {
  width: 12px;
  height: 1px;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0.5px;
  background-color: #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.arrow_ul {
  width: 11px;
  height: 13px;
  border-bottom: 1px solid #fff;
}
.arrow_ul::before {
  margin-left: 1px;
}
.arrow_ul::after {
  right: 1.5px;
}

a:hover .arrow._hover::before, a:hover ._hover.arrow_ul::before {
  border-color: var(--c_base);
}
a:hover .arrow._hover::after, a:hover ._hover.arrow_ul::after {
  background-color: var(--c_base);
}
a:hover .arrow_ul._hover {
  border-color: var(--c_base);
}

.link._hover a {
  position: relative;
}
.link._hover a::before {
  width: 0%;
  height: 1px;
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fff;
  -webkit-transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
  transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
}
.link._hover a:hover::before {
  width: 100%;
}

/* ========================================

page

======================================== */
.page_title {
  position: relative;
  margin: 0;
  padding: clamp(111px, 15.5vw, 186px)
           clamp(10vw, 6vw, 8vw)
           clamp(81px, 11.25vw, 135px)
           clamp(10vw, 16vw, 18vw);
  width: 100%;
  max-width: none;
  z-index: 1;
  text-align: left !important;  /* ← 中央寄せを強制解除 */
}

.page_title h1 {
  position: relative;
  display: block;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;  /* ← 中央寄せを絶対に無効化 */
  word-break: keep-all;
  font-size: clamp(24px, 4vw, 48px);
  line-height: 1.4;
  font-weight: bold;
  font-family: var(--f_serif);
  opacity: 0;
  filter: blur(5px);
  transition: all 1s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 2;
}



.page_title .illust {
  width: 100%;
  height: calc(100% + 80px);
  overflow: hidden;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.page_title .illust .img {
  display: block;
  position: absolute;
  -webkit-filter: blur(6px);
          filter: blur(6px);
  opacity: 0;
  -webkit-transition: all 1s cubic-bezier(0.76, 0, 0.24, 1);
  transition: all 1s cubic-bezier(0.76, 0, 0.24, 1);
}
.page_title.fadeIn h1 {
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
}
.page_title.fadeIn .illust .img01 {
  -webkit-animation: fadeIn 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0s forwards;
          animation: fadeIn 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0s forwards;
}
.page_title.fadeIn .illust .img02 {
  -webkit-animation: fadeIn 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.2s forwards;
          animation: fadeIn 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.2s forwards;
}
.page_title.fadeIn .illust .img03 {
  -webkit-animation: fadeIn 0.6s cubic-bezier(0.76, 0, 0.24, 1) 0.4s forwards;
          animation: fadeIn 0.6s cubic-bezier(0.76, 0, 0.24, 1) 0.4s forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    -webkit-filter: blur(6px);
            filter: blur(6px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    -webkit-filter: blur(6px);
            filter: blur(6px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
@media screen and (max-width: 800px) {
  .page_title {
    width: 100%;
    max-width: none;
    padding: 60px 20px 50px 20px; /* 上・右・下・左 */
    text-align: left !important; /* ← 念のため中央揃えを解除 */
  }

  .page_title h1 {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 1.5rem; /* ← モバイルに最適な大きさ */
    line-height: 1.5;
    text-align: left !important;
    word-break: keep-all;
  }
  .page_title .illust {
    height: 130%;
    opacity: 0.5;
  }
}
.page_title h1 {
  width: 37.7%;
  max-width: 377px;
}
.page_title .illust .img {
  width: 42.4%;
  max-width: 424px;
  right: 9%;
  bottom: clamp(62px, 7.7334vw, 116px);
}

@media screen and (max-width: 800px) {
  .page_title h1 {
    width: 194px;
  }
  .page_title .illust .img {
    width: 76.8%;
    right: auto;
    left: 41.8667%;
    bottom: -6px;
  }
}
/* ========================================

about

======================================== */
.about {
  margin-bottom: 190px;
}
.about_inner {
  width: var(--w_pc2);
  max-width: 1260px;
  position: relative;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.about .box_img {
  text-align: center;
  width: clamp(180px, 26.1905%, 330px);
  margin-top: 14px;
  margin-right: clamp(20px, 2.6667vw, 40px);
}
.about .box_img .img {
  margin-bottom: 44px;
}
.about .box_img .img .caption {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 0.02;
  text-align: right;
  display: block;
  margin-top: 6px;
}
.about .box_img .name {
  font-family: var(--f_serif);
  font-size: 30px;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
.about .box_img .exp {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.66;
  letter-spacing: 0.05em;
}
.about .txt {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  line-height: 2.22;
  letter-spacing: 0.05em;
  width: calc(92% - clamp(180px, 26.1905%, 330px));
  max-width: 702px;
}
.about .illust {
  max-width: 436px;
  position: absolute;
  right: -34px;
  bottom: -10px;
}

.img_inter {
  max-width: 1500px;
  margin: 0 auto 180px;
}
.img_inter .caption {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 0.02;
  text-align: right;
  display: block;
  margin: 6px 6px 0 0;
}


@media screen and (max-width: 800px) {
  .about {
    margin-bottom: 80px;
  }
  .about_inner {
    width: var(--w_sp);
    display: block;
  }
  .about .box_img {
    width: 240px;
    margin: 0 auto 40px;
  }
  .about .box_img .img {
    margin-bottom: 18px;
  }
  .about .box_img .img .caption {
    font-size: 10px;
  }
  .about .box_img .name {
    font-size: 23px;
    margin-bottom: 12px;
  }
  .about .txt {
    font-size: 14px;
    line-height: 2.14;
    text-align: justify;
    width: 100%;
    margin-bottom: 34px;
  }
  .about .illust {
    width: 96.7165%;
    margin: 0 auto;
    position: relative;
    right: auto;
    bottom: auto;
  }

  .img_inter {
    margin-bottom: 84px;
  }
  .img_inter .caption {
    font-size: 10px;
    margin-right: 4px;
  }
}
/* ========================================
history
======================================== */
.history {
  margin-bottom: 250px;
	background-color: var(--c_cleam);
}
.history_tit {
  text-align: center;
  margin-bottom: 88px;
	color: var(--c_base);
}
.history_tit h2 {
  font-family: var(--f_serif);
  font-size: 38px;
	color: var(--c_yamabuyki);
  letter-spacing: 0.05em;
  margin-bottom: 21px;
}
.history_tit .en {
  font-size: 13px;
	color:var(--c_yamabuyki);
}
.history ul {
  width: var(--w_pc2);
  max-width: 1260px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.history ul li {
  font-family: var(--f_serif);
  font-size: clamp(16px, 1.2667vw, 19px);
	color:var(--c_yamabuyki);
  line-height: 2;
  letter-spacing: 0.05em;
  padding: 39px 0 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.history ul li .date {
  width: clamp(180px, 14.6667vw, 220px); /* ← 拡張 */
  margin-right: clamp(0px, 2.6667vw, 40px);
}
/* .age 削除不要なため、完全に消す */
.history ul li .txt {
  width: calc(100% - clamp(180px, 14.6667vw, 220px)); /* ← date幅に合わせる */
  margin-left: auto;
}

@media screen and (max-width: 800px) {
  .history {
    margin-bottom: 100px;
  }
  .history_tit {
    margin-bottom: 44px;
  }
  .history_tit h2 {
    font-size: 27px;
    margin-bottom: 12px;
  }
  .history_tit .en {
    font-size: 12px;
  }
  .history ul {
    width: var(--w_sp);
  }
  .history ul li {
    font-size: 13px;
    padding: 36px 0 38px;
  }
  .history ul li .date {
    width: 100%;
    margin-right: 0;
    margin-bottom: 4px;
  }
  .history ul li .txt {
    font-size: 18px;
    width: 100%;
    margin-top: 6px;
  }
}




/* ========================================

access

======================================== */
.access {
  width: var(--w_pc2);
  max-width: 1260px;
  margin: 0 auto 105px;
	color: var(--c_base);
}

.access::before {
  content: '';
  position: absolute;
  z-index: -1; /* ← 背面に配置する */
  width: 100%;
  height: calc(100% - 440px);
  right: 0;
  bottom: 0;
  background-color: var(--c_cleam);
}
.access_inner {
  margin-bottom: 65px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.access_inner .map {
  width: 47.6191%;
}
.access_inner .map iframe {
  width: 100%;
  height: 100%;
}
.access_inner .img {
  width: 46.7461%;
}
.access dl {
  font-size: 18px;
  line-height: 1.94;
  letter-spacing: 0.05em;
	color: var(--c_base);
}
.access dl div {
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
}
.access dl div dt {
  width: 18.6507%;
  max-width: 235px;
}
.access dl div dd {
  color: color: var(--c_base);;
}
.access dl div dd a {
  color: var(--c_base);
  font-size: 15px;
  margin-left: 12px;
  border-bottom: 1px solid #fff;
}
.access dl div dd a:hover {
  opacity: 0.6;
}
.access dl div.required {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.access dl div.required .from {
  width: 8em;
}
.access dl div.required .time {
  width: calc(100% - 8em);
}

@media screen and (max-width: 800px) {
  .access {
    width: var(--w_sp);
    margin: 0 auto 90px;
  }
  .access_inner {
    margin-bottom: 54px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .access_inner .map {
    width: 100%;
    margin-bottom: 30px;
  }
  .access_inner .map iframe {
    height: 340px;
  }
  .access_inner .img {
    width: 100%;
  }
  .access dl {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.05em;
	  color: var(--c_base);
  }
  .access dl div {
    margin-bottom: 20px;
  }
  .access dl div dt {
    line-height: 1;
    width: 100%;
    max-width: none;
    margin-bottom: 6px;
  }
  .access dl div dd {
   color: var(--c_base);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .access dl div dd a {
    font-size: 13px;
    margin-left: 0;
	  color: var(--c_base);
  }
  .access dl div dd a:hover {
    opacity: 0.6;
	  color: var(--c_base);
  }
  .access dl div.required dd {
    line-height: 2.3;
	  color: var(--c_base);
  }
}
/* ========================================

reservation

======================================== */
.reservation-bg {
  background-color: var(--c_base); /* お好きな色 */
  width: 100%;
}
.reservation {
  width: var(--w_pc2);
  max-width: 1260px;
  margin: 0 auto ;
  padding-top: 120px;
	padding-bottom:222px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.reservation_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.reservation_tit {
  width: 200px;
  margin-bottom: 88px;
}
.reservation_tit h2 {
  font-family: var(--f_serif);
  font-size: 29px;
  letter-spacing: 0.05em;
  margin-bottom: 21px;
}
.reservation_tit .en {
  font-size: 15px;
	 font-family: var(--f_serif);
  letter-spacing: 0.05em;
  margin-bottom: 21px;
	line-height: 1.5;
}
.reservation ul {
  width: calc(100% - 200px);
  max-width: 770px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.reservation ul li {
  width: 44.1559%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.reservation ul li .arrow_ul {
  vertical-align: middle;
  margin: -2px 0 0 20px;
}
.reservation ul li h3 {
  font-family: var(--f_serif);
  font-size: 23px;
  letter-spacing: 0.05em;
  margin: 27px 0 25px 0;
}
.reservation ul li h3 a {
  pointer-events: none;
}
.reservation ul li .desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0.05em;
  margin-bottom: 39px;
}
.reservation ul li .link {
  font-size: 14px;
  letter-spacing: 0.025em;
  margin-top: auto;
}
.reservation ul li .link a {
  position: relative;
  padding: 0 24px 8px 0;
}
.reservation ul li .link a .arrow, .reservation ul li .link a .arrow_ul {
  display: inline-block;
}

@media screen and (max-width: 800px) {
  .reservation {
    width: var(--w_sp);
    padding-top: 84px;
	  padding-bottom:222px;
  }
  .reservation_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .reservation_tit {
    text-align: center;
    width: 100%;
    margin-bottom: 44px;
  }
  .reservation_tit h2 {
    font-size: 28px;
    margin-bottom: 11px;
  }

  .reservation_tit .en {
    font-size: 12px;
  }
  .reservation ul {
    width: 100%;
    max-width: none;
    display: block;
  }
  .reservation ul li {
    width: 100%;
  }
  .reservation ul li:not(:last-of-type) {
    margin-bottom: 98px;
  }
  .reservation ul li h3 {
    font-size: 23px;
    margin: 27px 0 25px 0;
  }
  .reservation ul li h3 a {
    pointer-events: auto;
    display: flex;
    flex-wrap: wrap;
  }
  .reservation ul li h3 a .arrow, .reservation ul li h3 a .arrow_ul {
    margin: 6px 0 0 5px;
  }
  .reservation ul li .desc {
    margin-bottom: 0;
  }
  .reservation ul li .link {
    display: none;
  }
}

.g_yamabuki {
  width: var(--w_pc2);
  max-width: 1260px;
  margin: 0 auto 140px;
  padding-top: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.g_yamabuki_title {
  text-align: center;
  margin-bottom: 60px;
}

.g_yamabuki_title h2 {
  font-family: var(--f_serif);
  font-size: 37px;
  letter-spacing: 0.1em;
  color: var(--c_yamabuki);
  margin-bottom: 10px;
}

.g_yamabuki_title .en {
  font-family: var(--f_en);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.g_yamabuki_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.g_yamabuki .img-box {
  overflow: hidden;
  border-radius: 8px;
}

.g_yamabuki .img-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.g_yamabuki .img-box:hover img {
  transform: scale(1.05);
}

/* スマホ対応 */
@media screen and (max-width: 800px) {
  .g_yamabuki {
    width: 100%;
    padding: 80px var(--mr_sp);
  }

  .g_yamabuki_title h2 {
    font-size: 28px;
  }

  .g_yamabuki_title .en {
    font-size: 12px;
  }

  .g_yamabuki_grid {
    gap: 16px;
  }
}

