@charset "UTF-8";

/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kaisei+Opti&family=Katibeh&family=Zen Antique Soft&display=swap');
.pageLoading {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    background: #fff;
}
.loading__box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}
.loading__box img {
    max-width: 400px;
}
.loading__box .icon {
    animation:
        fuwafuwa 3s ease-in-out infinite;
}
.loading__box p {
    margin-top: 10px;
    font-family: YakuHanJP, "Noto Serif JP", serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    opacity: 0.8;
}
@media (max-width: 900px) {
    .loading__box img {
        max-width: 80%;
        ;
    }
}
.scroll-image {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-left: -700px;
    z-index: -2;
    animation: floatAnimation 3s ease-in-out infinite;
}

@media (max-width: 900px) {
    .scroll-image {
        display: none;
    }
}
body {
  margin: 0;
  padding: 0;

  background-image: url("../images/common/bigtext.png"), url("../images/common/dot.png");

  /* 位置の順番も画像の順番に合わせる */
  background-position: left 20px center, 0 0;

  /* repeat の指定 */
  background-repeat: no-repeat, repeat;

  /* 固定と通常スクロール */
  background-attachment: fixed, scroll;

  /* サイズ指定（必要なら調整） */
  background-size: auto, auto;
}
.blur-bg {
    background: rgba(255, 255, 255, 0.8); /* 半透明の白 */
    backdrop-filter: blur(10px); /* ぼかし */
    -webkit-backdrop-filter: blur(10px); /* Safari対応 */
    padding: 70px 50px 100px 50px;
    border-radius: 10px;
    margin-bottom: 40px;
}
.blur-bg:last-of-type {
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .blur-bg {
        padding: 30px 20px 60px 20px;
    }
}
.gradation-text {
    background: linear-gradient(to right, #ff5ed3, #ff96c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.gradation-text-blue {
    background: linear-gradient(to right, #b458ef, #8482e7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
/*common------------------*/
a:link {
    color: var(--main-color);
}
a:visited {
    color: var(--main-color);
}
a:hover {
    color: var(--main-color);
}
a:active {
    color: var(--main-color);
}
.att{color:#ed5096;
font-weight: bold;}
.center{text-align: center;}
.linkBtn {
    position: relative;
    top: 0px;
    transition: all 0.5s;
	margin: 0px auto;
	text-align: center;
	transition: transform 0.2s ease; /* 動きの滑らかさ */
}
.linkBtn:hover {
	filter: brightness(1.2);
	transform: scale(1.1); /* 1.1倍に拡大 */
}
.linkBtn img {
    display: block;
}
.linkBtnComing {
    top: 0px;
    pointer-events: none;
}
.linkBtn img {
    filter: drop-shadow(0px 5px 7px rgba(0, 0, 0, 0.1));
}
.hoverlink img {
    transition: .3s ease-in-out;
}
.hoverlink img:hover {
    filter: brightness(1.2);
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}
a.btn-base {
    display: inline-flex;
    align-items: center;
    justify-content: space-between; /* アイコンとテキストを両端に配置 */
    position: relative;
    padding: 5px 20px; /* アイコンの余白分調整 */
    background: var(--accent-color);
    border-radius: 30px;
    color: #fff;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    font-size: 16px;
    font-family: "Zen Antique Soft", serif; /* ここに font-family を追加 */
    text-decoration: none; /* aタグのデフォルトの下線を消す */
    min-width: 250px;
}
a.btn-base::before {
    content: "";
    position: absolute;
    top: -4px;
    bottom: -4px;
    left: -4px;
    right: -4px;
    border: solid 1px var(--gold-color); /* 外枠のスタイル */
    z-index: -1;
    border-radius: 35px;
}
a.btn-base:hover {
    background: var(--gold-color);
    transform: scale(1.05);
}
/* アイコンのスタイル */
a.btn-base .icon-left, a.btn-base .icon-right {
    width: 16px; /* アイコンのサイズ */
    height: 16px; /* アイコンのサイズ */
    background-size: cover;
    display: inline-block;
}
a.btn-base .icon-left {
    background-image: url('../images/base_btn_icon.png'); /* 左側のアイコン画像 */
    margin-right: 10px; /* テキストとの間隔 */
}
a.btn-base .icon-right {
    background-image: url('../images/base_btn_icon.png'); /* 右側のアイコン画像 */
    margin-left: 10px; /* テキストとの間隔 */
}
.content-title {
    font-family: "Zen Antique Soft", serif;
    font-size: 10px;
    font-weight: normal;
    line-height: 1;
    background: url("../character/contents-title.png") no-repeat;
    background-size: 100px 18px;
    height: 18px;
    width: 100px;
    color: #fff;
    letter-spacing: 1px;
    display: flex; /* Flexboxを使用 */
    align-items: center; /* 縦中央揃え */
    justify-content: center; /* 横中央揃え */
    text-align: center; /* 文字を中央揃え */
    padding-top: 0px;
    margin-top: 30px;
}
h3.content-title-big {
    margin: 20px auto;
    text-align: center;
}
h3.content-title-big img {
    max-width: 40%;
}
div + h3.content-title-big {
    margin-top: 80px;
}
@media (max-width: 900px) {
    h3.content-title-big img {
        max-width: 100%;
    }
    h3.content-title-big {
        margin: 20px auto 10px auto;
    }
    div + h3.content-title-big {
        margin-top: 40px;
    }
}
section {
    position: relative;
}
.newmark {
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 10;
}

/*-------------------------------------------
common
-------------------------------------------*/
html {
    font-size: 100%;
}
body {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    color: var(--text-color);
    line-height: 2;
    font-weight: 400;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
    vertical-align: top;
}
li {
    list-style: none;
}
.inner {
    max-width: 1600px;
    padding: 0px 20px;
    margin: 0 auto;
    z-index: 3;
    position: relative;
}
.center {
    text-align: center;
}
section {
    padding: 80px 0px;
    position: relative;
    z-index: 10;
}
.section-title {
    text-align: center;
    margin-bottom: 30px;
}
.no-space {
    letter-spacing: 0;
}
.fadeIn {
    opacity: 0;
}
.fadeIn.is-inview {
    opacity: 1;
    transition: all .5s;
}

/*-------------------------------------------
mainVisual
-------------------------------------------*/
.mainVisual {
    max-width: 100%;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    z-index: 1;
    top: 0px;
	
	
}
.mainVisual-img div {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: auto;
}
.mainVisual-img div img{

    width: 100%;

}
.mainVisual-bg img{
	width:100%;
}
.mainVisual-img .mainVisual-chara {
    opacity: 0;
    z-index: 3;
    top: 10px;
}
.mainVisual-img .mainVisual-chara.anime {
    animation: mvbounce 1s ease-out forwards;
}
.mainVisual-img .mainVisual-chara.fuwafuwa {
    opacity: 1;
    animation:
        fuwafuwa 3s ease-in-out infinite;
}
.mainVisual-img .mainVisual-shino {
    top: -10%;
    left: 8%;
    opacity: 0;
    z-index: 2;
}
.mainVisual-img .mainVisual-shino.anime {
    animation:
        shino-bounce 1s ease-out forwards;
}
.mainVisual-img .mainVisual-shino.fuwafuwa {
    opacity: 1;
    animation:
        fuwafuwa 3s ease-in-out infinite;
}
.mainVisual-img .mainVisual-kirakira {
    opacity: 0;
    z-index: 2;
    transition: opacity 2s ease-in-out;
}
.mainVisual-img .mainVisual-kirakira.anime {
    opacity: 1;
}
.mainVisual-img .mainVisual-kirakira.fuwafuwa {
    opacity: 1;
    animation:
        fuwafuwa 6s ease-in-out infinite;
}
@keyframes shino-bounce {
    0% {
        transform: translateY(200px) translateX(-100px);
        opacity: 0;
        filter: brightness(5);
    }
    50% {
        transform: translateY(-30px) translateX(30px); /* 少し跳ねる */
        opacity: 1;
        filter: brightness(1.2);
    }
    100% {
        transform: translateY(0) translateX(0); /* 最終位置 */
        opacity: 1;
        filter: brightness(1);
    }
}
@keyframes fuwafuwa {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes mvbounce {
    0% {
        transform: translateY(100px);
        opacity: 0;
        filter: brightness(5); /* 暗め */
    }
    50% {
        transform: translateY(-20px);
        opacity: 1;
        filter: brightness(1.2); /* 少し明るく */
    }
    100% {
        transform: translateY(0);
        opacity: 1;
        filter: brightness(1); /* 通常の明るさ */
    }
}
.mainVisual-img .mainVisual-catch {
    opacity: 0;
    z-index: 5;
    transform-origin: center; /* 拡大の基準点を中央に設定 */
}
.mainVisual-img .mainVisual-catch.animeFade {
    opacity: 0;
    transform: scale(0.5); /* 初期状態で縮小 */
    animation: enlargeAndShrink 1.5s ease-in-out forwards; /* アニメーション適用 */
}
@keyframes enlargeAndShrink {
    0% {
        opacity: 0;
        transform: scale(0.5); /* 初期状態で小さい */
    }
    50% {
        opacity: 1;
        transform: scale(1.1); /* 拡大 */
    }
    100% {
        opacity: 1;
        transform: scale(1); /* 通常のサイズに戻る */
    }
}
.animateZoom img {
    max-width: 100%;
    height: auto;
    animation: animationZoom 10s ease-in-out forwards, animationBrightness 1s ease-in-out forwards;
}
@keyframes animationZoom {
    100% {
        transform: scale(1.1);
    }
}
.mainVisual-object {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.mainVisual-img .mainVisual-logo {
    opacity: 0;
    z-index: 5;
    transform-origin: center; /* 拡大の基準点を中央に設定 */
}
.mainVisual-img .mainVisual-logo.animeFade {
    opacity: 0;
    transform: scale(0.5); /* 初期状態で縮小 */
	animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
 
@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*-------------------------------------------
SPECIAL
-------------------------------------------*/
#special {
    background-color: rgba(255, 255, 255, 0.4);
}

/*-------------------------------------------
SPEC
-------------------------------------------*/
#spec {
    font-size: 14px;
    position: relative;
	margin-top: -50px;
}
#spec-special {
    text-align: center;
	width: 1200px;
}
#spec-special p {
    margin-bottom: 30px;
}
#spec-spec{margin-top: 50px;}
.package_pic img{
    display: grid;
	justify-items: center;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-bottom: 40px;
	margin-top: 50px;
    border-radius: 5px;
    background-color: #fff; /* 背景色（丸の中） */
    border: 2px solid #fff; /* 内側の白フチ */
    box-shadow: 0 0 0 1px #D9AD62, /* 外側のD9AD62色のフチ */ 0 0 0 3px #fff; /* さらにその外側に白フチ */
	position:relative;
	width: 100%;
	margin: 30px auto;
}
.specList {
	width: 80%;
    display: grid;
    grid-template-columns: 500px 1fr; /* 左：狭い、右：広い */
    column-gap: 40px;
    justify-items: center;
    margin: 50px auto 40px auto;
}
.specList li {
    text-align: center; /* li自体を中央配置 */
    margin: 0 auto 30px auto;
}

@media (max-width: 1100px) {
  .specList {
      grid-template-columns: 1fr; /* ←1列に戻す */
      row-gap: 30px;              /* liの上下間隔を追加 */
  }

  .specList li {
      width: 100%;   /* スマホ時は幅100%でOK */
      max-width: 500px;
      margin: 0 auto;
  }
}
#spec .item-block {
    text-align: left; /* テキストは左揃えのまま */
}
/* 左：狭い（抱き枕カバーなど） */
.speclist .spec-left {
  flex: 0 0 32%;       /* 固定32%幅（調整可） */
  max-width: 32%;
}

/* 右：広い（予約期間など） */
.speclist .spec-right {
  flex: 1;             /* 右を残り全部使う */
  max-width: 68%;
}


.specList li div {
    margin: 20px 0px;
}

.specList .content-title {
    margin: 0 0 5px 0;
}
/* spec 内だけ丸いフォントにする */
#spec {
  font-family: "M PLUS Rounded 1c";
}

/* ここから下は前回同じ */
#spec .item-block {
  margin-bottom: 40px;
  text-align: left;
}
#spec .label {
  display: inline-block;  /* 横幅を文字分だけにする */
  padding: 6px 16px;
  border-radius: 20px;
  color: #6d5c5c;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}

#spec .label-blue {
  background: #8de3e3;
}

#spec .label-pink {
  background: #ffb5d7;
}

#spec .label-yellow {
  background: #f3e765;
}

/* 数字だけ大きくする */
#spec .text .num-large {
  font-size: 1.6em;         /* ベースの24pxに対して1.6em ≒ 38px（調整可） */
  display: inline-block;    /* サイズを変えてもレイアウト崩れしないように */
  line-height: 1;           /* 高さを詰める */
  vertical-align: baseline; /* テキストのベースラインに揃える */
  margin: 0 2px;            /* 前後の余白（見た目調整） */
}

/* 既存の .text と strong スタイル（前回のものを念のため） */
#spec .text {
  font-size: 24px;
  color: #6d5c5c;
  margin: 0;
  line-height: 1.7;
  font-weight: 500;
}
#spec .text strong {
  font-weight: 900;
  color: #4a3e3e;
  font-size: 26px;
}

.lineup {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(468px, max-content));
  gap: 30px;
  justify-content: center;
  padding: 0;
  list-style: none;
  margin: 0 auto;
}
.lineup a{
  display: block;   /* ← これが重要 */
  width: 80%;
  margin: 0 auto;   /* 中央揃え */
}
.lineup li {
  text-align: center;
  color: #333;
  background-color: #FFF;
  font-size: 30px;
  border-radius: 24px;
  box-shadow: 0px 0px 6px 4px rgba(183, 183, 183, 0.3);
  position: relative;
  width: 468px;
  margin: 0 auto 30px auto;
}
.lineup li img:last-of-type {
  margin-bottom: 20px; /* 好きな値に調整 */
}
.lineup li img {
  display: block;
  margin: 0 auto 10px; /* 間隔調整 */
  border-radius: 20px;
}
.lineup li div {
    margin: 20px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.lineup .content-title {
    margin: 0 0 5px 0;
}

.textList dl {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}
.textList dt {
    font-weight: bold;
    margin-right: 15px;
    width: 120px;
}
.textList dd {
    flex: 1;
}
#spec-staff {
    margin-bottom: 40px;
}
#spec-staff .textList dl {
    display: block;
}
#spec-staff dt {
    color: var(--main-color);
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.5px;
}
#spec-staff dd {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 20px;
}
#spec a.btn-base {
    font-size: 12px;
    min-width: 100px;
    letter-spacing: normal;
    max-height: 30px;
margin-top:10px;
	
}
#spec a.btn-base::before {
    content: "";
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    border: solid 1px var(--gold-color); /* 外枠のスタイル */
    z-index: 0;
    border-radius: 35px;
	
}
/* アイコンのスタイル */
#spec a.btn-base .icon-left, #spec a.btn-base .icon-right {
    width: 10px; /* アイコンのサイズ */
    height: 10px; /* アイコンのサイズ */
    background-size: cover;
    display: inline-block;
}
#spec a.btn-base .icon-left {
    margin-right: 10px;
}
#spec a.btn-base .icon-right {
    margin-left: 10px;
}
/* PC版 */
@media screen and (min-width: 900px) {
    .flexBox {
        display: flex;
        gap: 100px;
        justify-content: center;
    }
    /* dtとddを横並びに */
    .textList dl {
        flex-direction: row; /* 横並び */
    }
}
/* SP版 */
@media screen and (max-width: 900px) {
    .textList {
        width: 100%;
    }
    .textList dl {
        border-bottom: solid 1px #fff;
        padding: 15px 0px;
        margin: 0;
    }
    #spec-staff dd {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    #spec-spec {
        margin-top: 80px;
    }
    #spec-staff {
        margin-bottom: 80px;
    }
}
/*------------------
■footer
------------------*/
footer {
    padding: 30px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 1.5px;
    ont-family: "M PLUS Rounded 1c";
	color: #FFF;
	background-color: #6d5858;
}
#footerlogo{margin: 0 auto;text-align: center;}
/*------------------
■anime
------------------*/
.fadeUp {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s, transform .8s, filter 1.5s;
    filter: blur(4px);
}
.fadeUp.is-inview {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .3s;
    filter: blur(0px);
}
.fadeUp-delay {
    opacity: 0;
    filter: blur(4px);
    transition: opacity .8s, filter 1.5s;
}
.fadeUp-delay.is-inview {
    opacity: 1;
    filter: blur(0px);
    transition-delay: .8s;
}
.fadeIn {
    opacity: 0;
    transition: opacity 1.5s
}
.fadeIn.is-inview {
    opacity: 1;
    transition-delay: 0.5s;
}
.letterSpacing {
    opacity: 0;
    letter-spacing: 12px;
    transition: opacity 1.5s, letter-spacing 1.5s;
}
.letterSpacing.is-inview {
    opacity: 1;
    letter-spacing: 2px;
    transition-delay: 0.5s;
}




  /* 最初は非表示 */
  .banner_hidden { display:none; }
  /* フェードイン効果 */
  .fade-in {
    display:flex !important;
    opacity:0;
    transform: translateY(15px);
    animation: fadeInUp 0.4s forwards;
  }
  @keyframes fadeInUp {
    to { opacity:1; transform: translateY(0); }
  }
#show-more{
	text-align: center;
	padding-bottom: 50px;
	}


.tachi_change {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.tachi_change img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.tachi_change img.visible {
	opacity: 1;}

	#caution{
		color: #6d5858;
		font-size: 16px;
		text-align: center;
		margin: 100px auto;
		width: 80%;
	}
	#caution p {
	}
	.moji_bold{
		font-size: 26px;
		font-weight: 900;
		margin-top: 50px;
		margin-bottom: 30px;
		color:#9d7d88;
		font-family: "M PLUS Rounded 1c";
		text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.9),0px 0px 4px rgba(255, 255, 255, 0.9),0px 0px 6px rgba(255, 255, 255, 0.9);
	}
	.moji_setsu{
		font-size: 20px;
		margin-bottom: 50px;
		font-weight: bold;
		line-height: 34px;
		font-family: "M PLUS Rounded 1c";
		text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.9),0px 0px 4px rgba(255, 255, 255, 0.9),0px 0px 6px rgba(255, 255, 255, 0.9);
	}
	.moji_chu{
		text-align: left;

		font-size: 15px;
		line-height: 24px;
		font-family: "M PLUS Rounded 1c";
		text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.9),0px 0px 4px rgba(255, 255, 255, 0.9),0px 0px 6px rgba(255, 255, 255, 0.9);
		text-indent: 0;         /* 1行目はインデントしない */
		padding-left: 1em;      /* 全体に1em左余白 */
		text-indent: -1em;      /* 1行目だけ左に戻す → 実質「2行目以降が1em」 */
	}
.line {
  width: 80%;
  border-top: 1px solid #b7b7b7;
  margin: 15px 0;         /* ← auto ではなく上下だけにする */
  justify-self: center;   /* ★ grid 子要素の中央寄せはこれ！ */
}
.sectin_line{
  width: 80%;
  border-top: 1px solid #b7b7b7;
  margin: 15px 0;         /* ← auto ではなく上下だけにする */
  justify-self: center;   /* ★ grid 子要素の中央寄せはこれ！ */
  margin-top: 75px;
  margin-bottom: 75px;
}
.lineup li hr {
  width: 80%;
  margin: 20px auto 20px auto;   /* ← これで中央揃え */
	}
.love2alt{
	padding: 50px;
}