@charset "UTF-8";
/*min関数*/
/*clamp関数*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  color: #ffffff;
  font-family: fot-tsukuardgothic-std, serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  font-size: 16px;
  display: flex;
  height: 100svh;
  overflow: hidden;
  text-align: center;
}
@media screen and (max-width: 500px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #ffffff;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

.pd20 {
  padding: 0 20px;
}

@media screen and (max-width: 500px) {
  .spNone {
    display: none;
  }
}

.pcNone {
  display: none;
}
@media screen and (max-width: 500px) {
  .pcNone {
    display: block;
  }
}

.common_btn {
  width: 307px;
  margin: 0 auto 60px;
  font-size: 15px;
  text-align: center;
  display: block;
  padding: 17px 0;
  background: #dbbfbb;
  border-radius: 40px;
  transition: all 0.3s ease;
  color: #6f0909;
  font-weight: bold;
}
@media screen and (min-width: 981px) {
  .common_btn {
    margin: 0 auto 70px;
  }
}
@media screen and (max-width: 500px) {
  .common_btn {
    max-width: 92vw;
  }
}
.common_btn:hover {
  background: #c8aaa6;
  transition: all 0.3s ease;
}

.main-container {
  max-width: 500px;
  margin: 0 auto;
  background-color: #7e3337;
  overflow-y: auto;
  overflow-x: clip;
  flex-shrink: 0;
  scrollbar-width: none;
}
@media screen and (max-width: 500px) {
  .main-container {
    width: 100%;
    overflow-x: clip;
  }
}
@media screen and (min-width: 501px) and (max-width: 989px) {
  .main-container {
    background-color: #7e3337;
  }
}

.sidebar_left,
.sidebar_right {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  background-color: #d9ccbe;
}
.sidebar_left::before,
.sidebar_right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/bg_pattern.webp) repeat;
  background-size: 495px;
  opacity: 0.2;
}

@media screen and (max-width: 980px) {
  .sidebar_left .logo_left {
    display: none;
  }
}

.sidebar_left img {
  width: 17.7083333333vw;
  position: absolute;
  top: 25%;
  left: 8%;
}

.sidebar_right {
  box-sizing: border-box;
  flex: 2;
}

.main-container .fv_img .bg {
  position: relative;
  width: 100%;
}
.main-container .fv_img .bg .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 264px;
}
@media screen and (max-width: 500px) {
  .main-container .fv_img .bg .logo {
    width: 53.3333333333vw;
  }
}
.main-container .fv_txtarea {
  padding: 60px 0 50px;
  background: url(../images/FV/flower_bg.webp) no-repeat right top/200px auto;
}
.main-container .fv_txtarea h1 {
  font-size: 28px;
  line-height: 1.28;
  font-family: fot-tsukuaoldmin-pr6n, serif;
  font-weight: 300;
  font-style: normal;
}
@media screen and (max-width: 500px) {
  .main-container .fv_txtarea h1 {
    font-size: 6.4vw;
  }
}
.main-container .fv_txtarea .fv_txt {
  margin: 27px 0;
}

.section_bg {
  position: relative;
  aspect-ratio: 3/4;
}
.section_bg .title_area {
  margin: 40px 0 0 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.section_bg .title_area .en-title {
  font-family: mina, serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.86;
  font-size: 23px;
  transform: rotate(-3deg);
}
@media screen and (max-width: 500px) {
  .section_bg .title_area .en-title {
    font-size: 4.8vw;
  }
}
.section_bg .title_area .en-title {
  margin-left: -10px;
  text-align: start;
}
.section_bg .title_area h2 {
  font-size: 30px;
  line-height: 1.43;
  letter-spacing: 0.07%;
  text-align: left;
  font-family: fot-tsukuaoldmin-pr6n, serif;
  font-weight: 300;
  font-style: normal;
}
@media screen and (max-width: 500px) {
  .section_bg .title_area h2 {
    font-size: 6.6666666667vw;
  }
}

.txt_area {
  z-index: 2;
  margin-top: -20px;
}

.section_bg {
  position: relative;
  width: 100%;
}
.section_bg .title_area {
  z-index: 10; /* 文字が画像の下に隠れないように前面へ */
}

.fade-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: #b5a08d;
}
.fade-container .fade-item {
  position: absolute;
  inset: 0;
  opacity: 1;
}
.fade-container .fade-item img {
  width: 100%;
  object-fit: cover;
}
.fade-container .item1 {
  z-index: 2;
  animation: crossfade 8s ease-in-out infinite;
}
.fade-container .item2 {
  z-index: 1;
}

@keyframes crossfade {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.title_area .caution1 {
  text-align: start;
  line-height: 1.5;
  padding-left: 5px;
}

.txt_area {
  position: relative;
  z-index: 2; /* 文字が画像の下に隠れないように前面へ */
}
.txt_area p {
  margin-top: 35px;
}

h3 {
  font-size: 24px;
  line-height: 1.87;
  font-family: fot-tsukuaoldmin-pr6n, serif;
  font-weight: 300;
  font-style: normal;
}
@media screen and (max-width: 500px) {
  h3 {
    font-size: 5.3333333333vw;
  }
}

.month {
  padding: 0 20px 0 40px;
}
@media screen and (max-width: 500px) {
  .month {
    padding: 0 15px;
  }
}
.month {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 11px;
  color: #5e3612;
  font-size: 84px;
  line-height: 1;
  font-family: fot-tsukuaoldmin-pr6n, serif;
  font-weight: 300;
  font-style: normal;
}
@media screen and (max-width: 500px) {
  .month {
    font-size: 16vw;
  }
}
.month .En {
  font-size: 34px;
}
@media screen and (max-width: 500px) {
  .month .En {
    font-size: 6.4vw;
  }
}

#special_price .price_month {
  display: flex;
}
#special_price .price_month .leaf {
  width: 110px;
}
@media screen and (max-width: 500px) {
  #special_price .price_month .leaf {
    width: 21.3333333333vw;
  }
}
#special_price .txt_area::before, #special_price .txt_area::after {
  content: "";
  display: block;
  width: 80px;
  height: 95px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(../images/leaf_bottom.webp);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(20%, 35%);
}
@media screen and (max-width: 500px) {
  #special_price .txt_area::before, #special_price .txt_area::after {
    width: 21.3333333333vw;
    height: 25.3333333333vw;
    transform: translate(-10%, 40%);
  }
}
#special_price .txt_area::after {
  left: auto;
  right: 0;
  transform: translate(-20%, 35%) scaleX(-1);
}
@media screen and (max-width: 500px) {
  #special_price .txt_area::after {
    transform: translate(10%, 40%) scaleX(-1);
  }
}
#special_price .scroll-wrap {
  width: 100%;
  box-sizing: border-box;
  overflow-x: scroll;
  overflow-y: hidden;
  cursor: grab;
  user-select: none; /* ドラッグ中にテキスト選択されないように */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 60px 20px 0;
}
#special_price .scroll-wrap:active {
  cursor: grabbing;
}
#special_price .scroll-wrap::-webkit-scrollbar {
  display: none;
}
#special_price .scroll-wrap.dragging {
  cursor: grabbing;
}
#special_price .scroll-wrap {
  /* JS側でclassを付け外しする */
}
#special_price .scroll-wrap .scroll-inner {
  display: flex;
  gap: 16px;
  width: max-content; /* 折り返さず横に伸ばす */
}
#special_price .scroll-wrap .scroll-inner .box {
  flex-shrink: 0; /* flexで縮まないように */
  background-color: #e1d7ca;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  width: 410px;
  height: 275px;
  padding: 18px 18px 20px 18px;
}
#special_price .scroll-wrap .scroll-inner .box .box_txt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 180px;
  line-height: 1.5;
  color: #5e3612;
  text-align: start;
}
#special_price .scroll-wrap .scroll-inner .box .box_txt .title {
  display: inline; /* インライン要素にすることで文字だけに線が引けます */
  font-size: 20px;
  border-bottom: 1px solid #5e3612;
}
#special_price .scroll-wrap .scroll-inner .box .box_txt .price {
  font-size: 18px;
}
#special_price .scroll-wrap .scroll-inner .box .box_txt .desc {
  font-size: 12px;
  letter-spacing: -0.03em;
}
#special_price .scroll-wrap .scroll-inner .box .box_txt a,
#special_price .scroll-wrap .scroll-inner .box .box_txt .comingsoon {
  background-color: #5e3612;
  border-radius: 100px;
  text-align: center;
  width: 100%;
  line-height: 40px;
  color: #ffffff;
}
#special_price .scroll-wrap .scroll-inner .box .box_pic img {
  width: 178px;
  border-radius: 10px;
}
#special_price .scroll-arrow {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 20px; /* 文字と矢印の間のスキマ */
  color: #5e3612;
  font-size: 18px;
  padding: 5px 15px 50px 0;
}
#special_price .scroll-arrow .arrow-line {
  position: relative;
  width: 50px; /* 線の長さ（好みの長さに調整してね） */
  height: 1px; /* 線の太さ */
  background: #5e3612; /* まっすぐな横線の色 */
  /* 👇 ここで矢印の「斜めのハネ」を作っています */
}
#special_price .scroll-arrow .arrow-line::after {
  content: "";
  position: absolute;
  right: 0; /* 線の右端にぴったり合わせる */
  bottom: 0; /* 線の位置を基準にする */
  width: 15px; /* ハネの長さ */
  height: 1px; /* ハネの太さ */
  background: #5e3612;
  /* 右端を軸にして、反時計回りに30度回転させて斜めにする */
  transform-origin: right top;
  transform: rotate(30deg);
}
#special_price .common_btn {
  background-color: #5e3612;
  color: #ffffff;
}
#special_price .common_btn:hover {
  background: #775a40;
  transition: all 0.3s ease;
}

.bg_brown {
  background-color: #b5a08d;
}

.data {
  font-size: 33px;
  margin: 10px 0;
}
@media screen and (max-width: 500px) {
  .data {
    font-size: 6.6666666667vw;
  }
}

.bg_red {
  margin-top: -50px;
  background: #7e3337;
}

#revival .txt_area {
  position: relative;
}
#revival .txt_area::before {
  content: "";
  display: block;
  width: 142px;
  height: 188px;
  position: absolute;
  top: 80%;
  left: 0;
  z-index: -1;
}
#revival .anniversary {
  font-size: min(6vw, 30px);
  position: relative;
  margin: 65px auto 55px;
}
#revival .anniversary::before, #revival .anniversary::after {
  content: "";
  display: block;
  width: 65px;
  height: 80px;
  position: absolute;
  bottom: 6px;
  left: 18%;
  background-image: url(../images/leaf_bottom.webp);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translate(20%, 35%);
}
@media screen and (max-width: 500px) {
  #revival .anniversary::before, #revival .anniversary::after {
    width: 17.3333333333vw;
    height: 21.3333333333vw;
    transform: translate(-20%, 40%);
  }
}
#revival .anniversary::after {
  left: auto;
  right: 18%;
  transform: translate(-20%, 35%) scaleX(-1);
}
@media screen and (max-width: 500px) {
  #revival .anniversary::after {
    transform: translate(10%, 40%) scaleX(-1);
  }
}
#revival .anniversary_lead {
  font-size: 20px;
}
#revival .anniversary_txt {
  margin-top: 40px;
  padding: 0 10px;
}
#revival .common_btn {
  margin-top: 150px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 500px) {
  #revival .common_btn {
    margin-top: 24vw;
  }
}
#revival .common_btn:hover {
  background: #c8aaa6;
  transition: all 0.3s ease;
}

.lineup-wrap {
  position: relative;
  width: 100%;
  background: #7e3337;
  margin-top: 85px;
  height: min(150vw, 750px);
}
@media screen and (max-width: 500px) {
  .lineup-wrap {
    height: 181.3333333333vw;
  }
}

.lineup-ribbon {
  position: relative;
  text-align: center;
  z-index: 10;
  margin-bottom: 20px;
}
@media screen and (max-width: 500px) {
  .lineup-ribbon {
    margin-bottom: 40px;
  }
}
.lineup-ribbon img {
  width: min(90vw, 450px);
}

.lineup-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(14px, 4vw, 20px);
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.lineup-stage {
  position: relative;
  width: 100%;
  margin: -100px auto;
}

.lineup-curtain {
  position: absolute;
  top: 0;
  z-index: 5;
  pointer-events: none;
}
.lineup-curtain.left {
  left: 0;
}
.lineup-curtain.right {
  right: 0;
}
.lineup-curtain img {
  width: min(32vw, 160px);
  height: min(150vw, 750px);
  display: block;
}
@media screen and (max-width: 500px) {
  .lineup-curtain img {
    width: 30.6666666667vw;
    height: 181.3333333333vw;
  }
}

.lineup-slider {
  z-index: 4;
  width: 100%;
}

.lineup-slide {
  position: relative;
  height: min(150vw, 750px);
  width: 100%;
}
@media screen and (max-width: 500px) {
  .lineup-slide {
    height: min(181.3333333333vw, 680px);
  }
}

.slide-img {
  width: 435px;
  margin: 0 auto;
}
@media screen and (max-width: 500px) {
  .slide-img {
    width: 89.3333333333vw;
  }
}
.slide-img img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.slide-info {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #dbbfbb;
  z-index: 6;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: min(87vw, 435px);
  min-height: 242px;
}
@media screen and (max-width: 500px) {
  .slide-info {
    height: 39%;
    padding: 8vw;
  }
}
.slide-info .slide-name {
  position: absolute;
  top: -20px;
  left: 50%;
  white-space: nowrap;
  transform: translateX(-50%);
  color: #6f0909;
  background: #dbbfbb;
  font-weight: bold;
  font-size: clamp(18px, 4.4vw, 22px);
  padding: 10px 13px 0;
  border-radius: 25px;
  margin: 0 auto;
}
@media screen and (max-width: 500px) {
  .slide-info .slide-name {
    font-size: 4.8vw;
  }
}
.slide-info .slide-price {
  color: #6f0909;
  font-size: clamp(16px, 3.6vw, 18px);
  font-weight: bold;
}
@media screen and (max-width: 500px) {
  .slide-info .slide-price {
    font-size: 4.2666666667vw;
    margin-top: 5px;
  }
}
.slide-info .slide-desc {
  color: #6f0909;
  font-size: clamp(14px, 3.2vw, 16px);
  line-height: 1.8;
  text-align: left;
  margin: 0 auto 13px;
  width: min(72vw, 360px);
}
@media screen and (max-width: 500px) {
  .slide-info .slide-desc {
    margin: 0 auto;
    font-size: 3.7333333333vw;
  }
}
.slide-info .slide-btn {
  display: inline-block;
  background: #7e3337;
  color: #fff;
  padding: 10px 40px;
  border-radius: 40px;
  font-size: clamp(12px, 2.8vw, 14px);
  text-decoration: none;
  width: fit-content;
}
.slide-info .slide-btn:hover {
  background: #775a40;
  transition: all 0.3s ease;
}
@media screen and (max-width: 500px) {
  .slide-info .slide-btn {
    padding: 8px 10.6666666667vw;
  }
}

.lineup-slide:nth-of-type(5) .slide-info .slide-name {
  font-size: clamp(18px, 3.8vw, 19px);
  top: -40px;
}

.lineup-slide:nth-of-type(4) .slide-info .slide-name {
  font-size: clamp(18px, 4vw, 20px);
}
@media screen and (max-width: 500px) {
  .lineup-slide:nth-of-type(4) .slide-info .slide-name {
    top: -40px;
  }
}

.lineup-arrows {
  z-index: 10;
}

.lineup-stage .slick-prev,
.lineup-stage .slick-next {
  position: absolute;
  z-index: 10;
  width: min(13.6vw, 68px);
  height: min(13.6vw, 68px);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}
.lineup-stage .slick-prev::before,
.lineup-stage .slick-next::before {
  display: none;
}
.lineup-stage .slick-prev {
  left: min(4vw, 20px);
}
.lineup-stage .slick-next {
  right: min(4vw, 20px);
}

.slick-initialized .slick-slide {
  min-height: 750px;
}
@media screen and (max-width: 500px) {
  .slick-initialized .slick-slide {
    min-height: 181.3333333333vw;
  }
}

.special_coupon {
  margin-top: 60px;
}
.special_coupon .coupon_ribbon {
  width: min(90vw, 450px);
}
.special_coupon .coupon_letter {
  width: min(80vw, 400px);
}
.special_coupon .coupon_title {
  font-size: clamp(20px, 4.8vw, 24px);
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: 45px 0 22px;
}

.campaign_summary {
  margin: 50px auto;
}
.campaign_summary dl {
  text-align: start;
  margin: 25px 0;
}
@media screen and (max-width: 500px) {
  .campaign_summary dl {
    padding: 0;
  }
}
.campaign_summary dl dt {
  font-size: 14px;
  line-height: 1.7;
  font-weight: bold;
}
.campaign_summary dl dd a {
  display: inline-block;
  margin-left: 20px;
  font-size: 13px;
  border-bottom: 0.5px solid #ffffff;
}
.campaign_summary dl dd.border_line {
  height: 3px; /* 最低限の高さにする */
  line-height: 1; /* 文字用の高さをリセット */
  margin: 10px 0; /* 線の上下に少しだけ隙間が欲しい場合はここで調整 */
}
.campaign_summary dl dd.border_line img {
  display: block; /* 画像の下に謎の隙間ができるのを防ぐお守り */
  width: 100%;
  height: auto;
}
.campaign_summary dl .line2 {
  transform: scaleX(-1);
}

.caution_txt {
  font-size: 12px;
  line-height: 1.4166666667;
  margin: 30px 0;
  text-align: start;
}

.coupon_flow {
  width: 460px;
  margin: 55px auto 25px;
  padding: 44px 22.5px;
  border: 1px solid rgba(212, 195, 188, 0.8);
  background-color: rgba(237, 228, 225, 0.5);
  border-radius: 30px;
}
@media screen and (max-width: 500px) {
  .coupon_flow {
    width: 93.3333333333vw;
  }
}
.coupon_flow p {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 500px) {
  .coupon_flow p {
    font-size: 16px;
  }
}
.coupon_flow .flow_row {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}
.coupon_flow .flow_row .arrow {
  display: flex;
  align-items: center;
  width: 49px;
  height: 140px;
}
.coupon_flow .flow_row .flow_item {
  width: 165px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
@media screen and (max-width: 500px) {
  .coupon_flow .flow_row .flow_item {
    width: 44vw;
    gap: 3.7333333333vw;
  }
}
.coupon_flow .flow_row .flow_item img {
  width: 140px;
  aspect-ratio: 1;
}
@media screen and (max-width: 500px) {
  .coupon_flow .flow_row .flow_item img {
    width: 26.6666666667vw;
  }
}
.coupon_flow .flow_row .item-coupon {
  gap: 7px;
}
.coupon_flow .flow_row .item-coupon p {
  line-height: 1.1666666667;
}

.member .title {
  font-size: 20px;
  margin-top: 30px;
  font-weight: bold;
}
@media screen and (max-width: 500px) {
  .member .title {
    font-size: 18px;
  }
}
.member .phone {
  width: min(51vw, 255px);
  margin: 20px auto 0;
}
.member .checklist {
  padding: 0 40px;
  margin: 30px auto 0;
  width: fit-content;
}
.member .checklist_item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 18px;
  text-align: start;
}
@media screen and (min-width: 981px) {
  .member .checklist_item {
    margin-top: 10px;
  }
}
.member .checklist_item img {
  width: 19px;
  flex-shrink: 0;
  margin-top: 5px;
}
.member a {
  background-color: #dbbfbb;
  color: #6f0909;
  font-weight: bold;
  margin-top: 20px;
}

.nxt_month .month {
  justify-content: center;
  color: #ffffff;
}
.nxt_month .txt {
  margin: 40px auto 20px;
  font-size: 20px;
  color: #ffffff;
  line-height: 2.1;
}
@media screen and (max-width: 500px) {
  .nxt_month .txt {
    font-size: 4.8vw;
  }
}
.nxt_month img {
  width: 440px;
  margin: 0 auto 0 30px;
}
@media screen and (max-width: 500px) {
  .nxt_month img {
    width: 90.6666666667vw;
    margin: 0 auto 0;
  }
}

#archive {
  color: #dbbfbb;
  margin-bottom: 70px;
}
#archive .line {
  margin: 0 auto;
  width: 440px;
}
@media screen and (max-width: 500px) {
  #archive .line {
    width: 90.6666666667vw;
    margin: 0 auto 0;
  }
}
#archive .archive {
  font-family: fot-tsukuaoldmin-pr6n, serif;
  font-weight: 300;
  font-style: normal;
  font-size: 34px;
}
#archive .flexbox {
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 20px auto 0;
}
@media screen and (max-width: 500px) {
  #archive .flexbox {
    width: 90.6666666667vw;
  }
}
#archive a {
  font-size: 18px;
  line-height: 2.1111111111;
  color: #dbbfbb;
}
#archive a .arrow_footer {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-left: 10px;
}

footer {
  position: relative;
  padding: 0 15px 60px;
  text-align: center;
}
footer h2 {
  font-size: clamp(1.375rem, 1.239rem + 0.68vw, 1.75rem);
  padding: 15px 0;
  background: #dbbfbb;
  color: #6f0909;
  position: relative;
}
@media screen and (min-width: 981px) {
  footer h2 {
    padding: 19px 0;
  }
}
footer h2::before, footer h2::after {
  content: "";
  display: block;
  background: #7e3337;
  width: 100%;
  height: 1px;
  position: absolute;
}
footer h2::before {
  top: 4px;
}
footer h2::after {
  bottom: 4px;
}
footer h2 span {
  letter-spacing: 0.06em;
}
footer .foot_txt {
  text-align: center;
  line-height: 30px;
  font-size: clamp(0.938rem, 0.869rem + 0.34vw, 1.125rem);
  letter-spacing: 1px;
  padding: 45px 0;
}
@media screen and (min-width: 981px) {
  footer .foot_txt {
    padding: 65px 0;
    line-height: 40px;
  }
}
footer .sns_wrap {
  width: fit-content;
  margin: 20px auto;
}

.caution {
  margin: -113px 0 93px;
  text-align: center;
  font-size: clamp(0.625rem, 0.58rem + 0.23vw, 0.75rem);
}
@media screen and (min-width: 981px) {
  .caution {
    margin: -110px 0 0;
    font-size: 14px;
  }
}
@media screen and (max-width: 500px) {
  .caution {
    line-height: 20px;
  }
}

.sns_link {
  margin-top: 20px;
}
.sns_link li a {
  display: flex;
  align-items: center; /* アイコンと文字の上下中央を揃える */
  gap: 12px; /* アイコンと文字の間の隙間 */
  color: #dbbfbb;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
}
.sns_link li a .sns_icon {
  width: 32px; /* アイコンのサイズ */
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #dbbfbb;
  border-radius: 50%;
}
.sns_link li a .sns_icon img {
  width: 20px;
  height: auto;
}
.sns_link li a i {
  text-decoration: underline;
}
.sns_link li:first-child {
  margin-bottom: 10px; /* 上のアイコンと下のアイコンの間の隙間 */
}

/* ===========================
   ナビ：タイトル
=========================== */
.sidecontent {
  margin: 25% auto;
}

.tl-title {
  text-align: center;
  margin-bottom: 35px;
  color: #5e3612;
}
.tl-title .title {
  font-family: fot-tsukuaoldmin-pr6n, serif;
  font-weight: 300;
  font-style: normal;
  font-size: 2.0833333333vw;
  line-height: 1.3;
}
@media screen and (max-width: 500px) {
  .tl-title .title {
    font-size: 6.4vw;
  }
}
.tl-title .script {
  font-size: 1.5972222222vw;
  font-family: mina, serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.86;
  font-size: 23px;
  transform: rotate(-3deg);
}
@media screen and (max-width: 500px) {
  .tl-title .script {
    font-size: 4.8vw;
  }
}
.tl-title .script {
  transform: rotate(0deg);
}
@media screen and (max-width: 500px) {
  .tl-title .script {
    font-size: 4.8vw;
  }
}

/* ===========================
   ナビ：タイムライン軸
=========================== */
.tl {
  position: relative;
  width: 23.8194444444vw;
  margin: auto;
}

/* 縦線 */
.tl-track {
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 0.5px;
  background: #5e3612;
}

/* 上下のドット */
.tl-dot {
  position: absolute;
  left: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5e3612;
}

/* ===========================
   ナビ：月ブロック
=========================== */
.month-block {
  margin-bottom: 28px;
  position: relative;
  padding-left: 2.4305555556vw;
}

.month-block:last-child {
  margin-bottom: 0;
}

.month-label {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
  font-family: fot-tsukuaoldmin-pr6n, serif;
  font-weight: 300;
  font-style: normal;
  cursor: pointer;
}

.month-num {
  font-size: 2.0833333333vw;
  font-weight: 400;
  line-height: 1;
  color: #b19c89;
  transition: color 0.25s ease;
}
@media screen and (max-width: 500px) {
  .month-num {
    font-size: 6.4vw;
  }
}

.month-mo {
  font-size: 11px;
  color: #b19c89;
  transition: color 0.25s ease;
}
@media screen and (max-width: 500px) {
  .month-mo {
    font-size: 4.2666666667vw;
  }
}

/* 月がアクティブなとき */
.month-block.month-active .month-num,
.month-block.month-active .month-mo {
  color: #5e3612;
}

.main-container .container500 .month-block {
  padding: 0;
}

/* ===========================
   ナビ：各アイテム
=========================== */
.nav-items {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-item {
  text-align: left;
  font-size: 1.1111111111vw;
  color: #b19c89;
  line-height: 1.9;
  cursor: pointer;
  transition: color 0.2s ease, font-size 0.2s ease;
  padding-left: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-item::before {
  content: "・";
}

/* アクティブなアイテム */
.nav-item.item-active {
  color: #5e3612;
  font-size: 1.5277777778vw;
}

/* coming soon はクリック不可 */
.nav-item.soon {
  font-style: italic;
  cursor: default;
  color: #b19c89;
  transition: color 0.25s ease;
}

.nav-item.soon.item-active {
  color: #5e3612;
}

/* ===========================
   スクロールバー
=========================== */
.main-container::-webkit-scrollbar,
.sidebar_right::-webkit-scrollbar {
  width: 4px;
}

.main-container::-webkit-scrollbar-thumb,
.sidebar_right::-webkit-scrollbar-thumb {
  background: #d3d1c7;
  border-radius: 2px;
}

.hamburger {
  display: none;
  position: relative;
  width: 50px;
  height: 51px;
}
@media screen and (max-width: 980px) {
  .hamburger {
    display: block;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 100;
    background: none;
    border: none;
    cursor: pointer;
    padding: 23px 14px 20px;
  }
  .hamburger-house {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 51px;
  }
  .hamburger-house img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.3s ease;
  }
  .hamburger-house .house-dark {
    opacity: 0;
  }
  .hamburger-label {
    font-size: 12px;
    color: #5e3612;
    text-align: center;
    margin-top: 10px;
    position: relative;
    left: -3px;
    font-family: fot-tsukuardgothic-std, serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    transition: color 0.3s ease;
  }
  .hamburger span {
    position: relative;
    z-index: 1;
    display: block;
    width: 22px;
    height: 1px;
    background: #5e3612;
    margin: 6px 0;
    transition: all 0.3s ease;
  }
  .hamburger.is-dark .house-default {
    opacity: 0;
  }
  .hamburger.is-dark .house-dark {
    opacity: 1;
  }
  .hamburger.is-dark .hamburger-label {
    color: #ffffff;
  }
  .hamburger.is-dark span {
    background: #ffffff;
  }
  .hamburger.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media screen and (max-width: 500px) {
  .sidebar_right {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100svh;
    overflow-y: auto;
    z-index: 99;
    transition: right 0.3s ease;
    background: #d9ccbe;
  }
  .sidebar_right.is-open {
    right: 0;
  }
  .sidebar_right.is-open .sp-menu {
    display: block;
  }
}

@media screen and (max-width: 980px) {
  .pc-menu {
    display: none;
  }
}

.sp-menu {
  display: none;
}
@media screen and (max-width: 980px) {
  .sp-menu {
    display: block;
    padding: 0 14px;
  }
  .sp-menu .fit {
    width: fit-content;
    margin: 0 auto;
  }
  .sp-menu .month-block .month-label span {
    color: #5e3612;
  }
  .sp-menu .month-block .month-num {
    font-size: 32px;
  }
  .sp-menu .month-block .month-mo {
    font-size: 18px;
  }
  .sp-menu .month-block .nav-items .nav-item {
    position: relative;
    padding-left: 20px;
    font-size: 18px;
  }
  .sp-menu .month-block .nav-items .nav-item::before {
    content: "";
    background: url(../images/flowericon.svg) no-repeat center/contain;
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    transform: translateY(80%);
  }
  .sp-menu .month-block .nav-items .nav-item a {
    color: #5e3612;
    font-size: 18px;
  }
  .sp-menu .month-block .nav-items .nav-item .soon {
    font-size: 18px;
  }
}

@media screen and (min-width: 769px) and (max-width: 980px) {
  .hamburger {
    display: none;
  }
  .sidebar_left {
    display: none;
  }
  .main-container {
    margin: 0;
  }
  .pc-menu {
    display: block;
  }
  .sp-menu {
    display: none;
  }
}
@media screen and (min-width: 501px) and (max-width: 768px) {
  .sidebar_left {
    display: none;
  }
  .sidebar_right {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100svh;
    overflow-y: auto;
    z-index: 99;
    background: #d9ccbe;
    transition: right 0.3s ease;
  }
  .sidebar_right.is-open {
    right: 0;
  }
  .main-container {
    background-size: 495px;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    background-color: #d9ccbe;
    position: relative;
    overflow-x: clip;
  }
  .main-container::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url(../images/parts/bg_pattern.webp) repeat;
    background-size: 495px;
    opacity: 0.2;
    pointer-events: none;
  }
  .main-container .container500 {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    background-color: #7e3337;
    z-index: 1;
  }
  .hamburger {
    display: block;
  }
  .pc-menu {
    display: none;
  }
  .sidebar_right.is-open .sp-menu {
    display: block;
  }
  .sidebar_right.is-open .sp-menu .tl-title .title {
    font-size: 4.1666666667vw;
  }
}/*# sourceMappingURL=style.css.map */