@charset "UTF-8";
/*==========================================
mainViewのスタイル（初期設定 最大：767px）
===========================================*/
.mainView {
  position: relative;
  background-attachment: fixed; /* 背景を固定 */
}
.mainView:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
  width: 100%;
  height: 100vh;
  background-image: url("../img/bg-body-sp2.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bg-slider {
  width: 100vw;
  height: 100vh;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
}
/* -----メイン画像ロゴ----- */
.bg-slider .pc {
  display: none;
}
/* -----共通----- */
.subtitle1, .subtitle2 {
  padding-bottom: 0.5em;
}
.subtitle1 img, .subtitle2 img {
  width: 95%;
  height: auto;
}
img {
  border-radius: 5px;
}
.shadow {
 box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); /* アルファ値を 0.5 に設定 */
}
/* -----accent（クーポン）----- */
.accent {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.accent img {
  width: 90%;
  border-radius: 5px;
  max-width: 806px;
  margin-top: 1em;
  margin-bottom: 1em;
}
/* -----memo---- */
.memo {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  border: thin solid #FECA4E;
  padding: 10px;
  background-color: hsla(0, 0%, 100%, 0.75);
  text-align: center;
}
.memo h3 img {
  max-width: 26px;
  margin-bottom: 5px;
}
.memo p {
  text-align: justify;
}
.memo dl {
  text-align: left;
  margin-left: 5px;
  margin-right: 5px;
  margin-top: 1em;
  margin-bottom: 1em;
}
.memo dl dt {
  background-color: #000000;
  padding: 5px;
  color: #FFFFFF;
  margin-bottom: 0.5em;
}
.memo dl dd {
  margin-bottom: 0.5em;
}
/*==========================================
greetingのスタイル（初期設定 最大：767px）
===========================================*/
#greeting {
  margin-top: 7.5em;
  margin-bottom: 3em;
}

#greeting .greeting-inner {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 2em;
    padding-top: 1em;
    border-radius: 5px;
    background-color: rgba(222, 175, 221, 0.3); /* #deafddの色に透明度を追加 */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding-left: 10px;
    padding-right: 10px;
}

.content1 .textWrap {
  padding-left: 0.5em;
  padding-right: 0.5em;
	padding-bottom: 2em;
}
.textWrap .text1.move_left2 p {
  line-height: 1.8;
  margin-bottom: 0.5em;
	color: #333;
}
.textWrap .text1.move_left2 h2 img {
    display: block;
    max-width: 100%;   /* 親要素の幅を超えない */
    height: auto;
    margin: 0 auto;    /* 中央寄せ */
}

.textWrap .text1.move_left2 h2 {
    text-align: center;
}
/* 吹き出しボタン（リンク本体） */
a.btn-bubble {
  display: inline-block;
  width: min(100%, 680px); /* モバイル基準の最大幅（少し広め） */
  padding: clamp(12px, 3.8vw, 18px) clamp(18px, 5vw, 28px);
  border-radius: 999px;
  background: #f60888;
  color: #fff;
  text-decoration: none;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 4.5vw, 1.5rem);
  line-height: 1.26;
  position: relative;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}


/* 吹き出しの三角（下中央） */
a.btn-bubble::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 12px 12px 0 12px;
  border-style: solid;
  border-color: #f60888 transparent transparent transparent;
}

/* 1行目と2行目の調整（電話番号を2行目に） */
a.btn-bubble .line-break {
  display: block;
  margin-top: 4px;
  font-size: 0.94em;
  letter-spacing: 0.02em;
}
/* アイコンの見た目（SVG/Font AwesomeどちらでもOK） */
a.btn-bubble .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15em;
  height: 1.15em;
  margin-right: 0.45em;
  line-height: 1;
  color: currentColor; /* 文字色と合わせる（=白） */
  vertical-align: -0.12em;
}

/* hover/focus/active */
a.btn-bubble:hover,
a.btn-bubble:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.28);
  outline: none;
}
a.btn-bubble:active {
  transform: translateY(0);
  box-shadow: 0 5px 10px rgba(0,0,0,0.22);
}

/* 吹き出しボタンの下に余白を追加 */
.textWrap .text1.move_left2 h2 {
  margin-bottom: 1.8em; /* 好みに応じて2em, 2.5emなどに調整可能 */
}

/* 説明文の<p>の上の余白 */
.textWrap .text1.move_left2 p {
  margin-top: 1.2em; /* 必要なら調整 */
}

/*==========================================
galleryのスタイル（初期設定 最大：767px）
===========================================*/
.gallery {
  margin-bottom: 0em;
  margin-top: 5.5em;
}
#gallery .gallery-inner {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding: 2em 0.8em;
  border-radius: 5px;

background-color: rgba(222, 175, 221, 0.3); /* #deafddの色に透明度を追加 */

  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}

.gallery-inner ul {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
	/* スマホサイズでのみ横スクロール */
  overflow-x: auto; /* 横スクロールを有効化 */
  white-space: nowrap; /* li要素を折り返さない */
}
.gallery-inner ul li {
  margin-bottom: 1em;
  display: inline-block; /* 横並びにする */
  margin-right: 0.5em; /* li要素間の余白 */
	margin-left: 0.5em; /* li要素間の余白 */
}
.gallery-title {
  font-size: 1.4em;
  margin: 30px 0 15px;
  text-align: center;
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #333;
  letter-spacing: 1px;
  position: relative;
}

.gallery-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;           /* 少し太くすると丸みが目立ちやすい */
  background: #333;
  margin: 8px auto 0;
  border-radius: 5px;    /* ← ここを大きくすると丸みが出ます */
  opacity: 0.7;
}

/*==========================================
priceのスタイル（初期設定 最大：767px）
===========================================*/
.price {
  margin-bottom: 5.5em;
  margin-top: 0em;
}
#price .price-inner {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding: 2em 0.8em;
  border-radius: 5px;

  background-color: rgba(222, 175, 221, 0.3); /* #deafddの色に透明度を追加 */
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
	

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}

.plan-table {
  position: relative;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  background-color: #FFBFDE;

  background-image: url("../img/bg-menu.webp");
  background-repeat: no-repeat;

  /* ▼ここを変更 */
  background-size: cover;          /* 横幅いっぱい＆はみ出し分は上下をカット */
  background-position: center bottom; /* 下側（シルク・桜）を優先して表示 */

  border: 1px solid #D0A900;
  border-image: linear-gradient(90deg,#D0A900,#E8D18E,#D0A900) 1;
  box-shadow:
    inset 0 0 22px rgba(0,0,0,0.05),
    0 10px 22px rgba(201,168,87,.16),
    inset 0 1px 0 rgba(255,255,255,.7);
		 /* ▼ここを追加：下に“シルク専用ゾーン”を作る */
  padding-bottom: 220px;  /* 値は後で調整OK */
  box-sizing: border-box; /* padding分も含めて高さ計算 */

}


/* 改良フェード：2段階で馴染ませる */
.plan-table::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;

  height: 65%; /* 調整可能・60%で効かない場合は65～75%がおすすめ */

  background: linear-gradient(
    to bottom,
    /* ① 背景色と一致 #FFBFDE（完全不透明） */
    #FFBFDE 0%,

    /* ② 画像の上部の色に近いフェード（例：#F7BBD2） */
    rgba(247, 187, 210, 0.9) 40%,

    /* ③ 透明にフェード */
    rgba(247, 187, 210, 0) 100%
  );

  pointer-events: none;
}

.plan-desc {
  margin: 0.5em auto 1.2em;
  padding: 0.4em 1em;

  width: 80%;              /* ← h3より狭くする（70〜80%でお好み調整） */
  max-width: 420px;        /* ← 大きくなりすぎないように上限を設定 */

  font-size: 1em;
  line-height: 1.6;
  letter-spacing: 0.03em;

  color: #7A4F3A;
  font-weight: 500;

  background: rgba(255, 255, 255, 0.65);
  border-radius: 6px;      /* ← 丸すぎない、上品な角丸 */
  border: 1px solid rgba(220, 192, 138, 0.45);

  box-shadow:
    0 1px 4px rgba(180, 140, 120, 0.10),
    inset 0 1px 3px rgba(255,255,255,0.4);
		
}

.plan-header {
  max-width: 600px;
  margin: 1.8em auto 1.4em;
  text-align: center;
}

.plan-table .plan {
	/*background-color: #FFFBEA;*/
	color: #000000;
	/*border: 2px solid #bfa046;*/
	border-radius: 5px;
	margin-bottom: 1em;
	padding: 1em 0.5em;
	text-align: center;
	font-weight: bold;
}

.plan-name {
  display: block;
  max-width: 600px;
   margin: 0 auto 0.6em;
  padding: 14px 26px;

  background: #FFFFFFCC; /* 半透明ホワイト */
  backdrop-filter: blur(4px);
  color: #6B4A32;        /* 落ち着いたブラウン */

  border-radius: 60px;
  border: 1.5px solid #DCC08A; /* シャンパンゴールド */

  box-shadow:
    0 2px 8px rgba(150, 120, 80, 0.25),
    inset 0 1px 3px rgba(255,255,255,0.7);
  text-align: center;
}




/* 英語（上段） */
.plan-name .plan-name-en {
  display: block;
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}

/* 日本語（下段） */
.plan-name .plan-name-jp {
  display: block;
  /*font-size: 0.85em;*/
	font-size: 1em;
  opacity: 0.9;
}
.plan-item {
	display: flex;
	flex-wrap: wrap;           /* 折り返し可 */
	justify-content: center;
	align-items: center;
	gap: 0.5em;
	margin-bottom: 1.5em;
}
	.plan-item:last-child {
    margin-bottom: 0;
  }


/* 時間と通常料金の間に「・・・」を挿入（共通では非表示） */
.plan-prices .normal::before {
  content: "・・・・・・";
  margin: 0 0.5em;
}

/* プライマリグループ */
.plan-prices, .plan-campaign {
  display: flex;
  align-items: center;
  gap: 0.25em;
}

.plan-item .arrow {
  font-size: 1em;       /* 矢印アイコンのサイズ */
  color: inherit;       /* 親の文字色に合わせる */
  display: inline-block;
  vertical-align: middle;
}
.campaign-label {
  background-color: #c62828;
  color: #fffbe6;
  border: 1px solid #ffd700;
  /*padding: 1px 4px;*/
  border-radius: 3px;
  font-size: 0.65em;
  font-weight: bold;
  letter-spacing: 0.5px;
	margin-right: 3px;
	display: inline-flex;
	align-items: center; 
	justify-content: center;
	height: 1.5em;
	line-height: 1.2; 
	padding: 0 0.4em;
}
.campaign-price{
color: #ffd700;
}
.extension{
	color: #0000A3;
}
/*==========================================
accessImgのスタイル（初期設定 最大：767px）
===========================================*/
#accessImg {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  clear: both;
  padding-top: 2em;
	display: block !important;
}

.access-title {
  font-size: 1.4em;                  /* .gallery-title と統一 */
  margin: 30px 0 15px;
  text-align: center;
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #DCCBA2;
  letter-spacing: 1px;
  position: relative;
  display: block; 
}

.access-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #DCCBA2;
  margin: 8px auto 0;
  border-radius: 5px;
  opacity: 0.7;
}

/* セクション全体の中央寄せ（既存と同じ） */
#accessImg .accessTitle {
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#accessImg h3 {
  margin-top: 1em;
  font-size: 1em;
  padding: 0.5em;
  color: #030201;
  border: thin solid #DCCBA2;
  background-color: hsla(0, 0%, 100%, 0.70);
}

#accessImg ul {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
	/* スマホサイズでのみ横スクロール */
  overflow-x: auto; /* 横スクロールを有効化 */
  white-space: nowrap; /* li要素を折り返さない */
}
#accessImg ul li {
  margin-bottom: 1em;
  display: inline-block; /* 横並びにする */
  margin-right: 0.5em; /* li要素間の余白 */
	margin-left: 0.5em; /* li要素間の余白 */
}

/*==========================================
newsのスタイル（初期設定 最大：767px）
===========================================*/
.news {
  margin-bottom: 3em;
  margin-top: 3em;
}
#news .news-inner {
  width: 98%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#news .news-inner h2 {
    text-align: center;
    background-color: #D0A900;
    margin-bottom: 0px;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    color: #FFFFFF;
}
#news .news-inner ul {
  max-height: 230px;
  overflow: scroll;
  background-color: #FFFFFF;
}
#news .news-inner ul li {
  border-bottom: 1px dotted #64605f;
  padding-left: 1em;
  padding-top: 0.5em;
  padding-bottom: 0.2em;
  margin: 0.5em;
}
#news .news-inner ul li .day {
  margin-right: 1em;
  font-weight: bold;
  margin-bottom: 0.5em;
  display: block;
}
#news .news-inner ul li:first-child .day:before {
  content: "new";
  background-color: #ff1900;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 80%;
  border-radius: 3px;
  padding: 5px;
  margin-right: 3px;
}
/* ────────── スマホだけ（767px以下） ────────── */
@media screen and (max-width: 767px) {
  .plan-item {
    flex-wrap: wrap;             /* スマホでは折り返しOK */
  }
  .plan-campaign {
    flex-basis: 100%;            /* 必ず新しい行に */
    align-self: flex-start;      /* 上寄せ */
    margin-top: -0.8em;         /* 上への詰め */
    justify-content: center;
  }
	 .plan-prices {
    gap: 1em;   /* デフォルト 0.25em → 1em に拡大 */
  }
.plan-table {
    position: relative;
    overflow: hidden;
    z-index: 0;
  }
 .plan-table {
    padding-bottom: 160px;  /* スクロールしやすいよう少し浅め */
  }
	.plan-desc {
  width: 90%; 
	}
}
@media screen and (min-width:768px) {
  /*==========================================
mainViewのスタイル（最小：768px）
===========================================*/
  .mainView:before {
    background-image: url("../img/bg-body-tab2.webp");
  }
  /* -----メイン画像ロゴ----- */
  .bg-slider .sp {
    display: none;
  }
  .bg-slider .pc {
    display: block;
  }
  /* -----共通----- */
  .subtitle2 img {
    width: 50%;
    height: auto;
  }
  /* -----memo---- */
  .memo {
    width: 70%;
    padding: 20px;
  }
  /*==========================================
greetingのスタイル（最小：768px）
===========================================*/
  #greeting .greeting-inner {
    padding: 2em;
  }
	.textWrap .text1.move_left2 h2 img {
      max-width: 250px;
      margin: 0 auto;
      display: block;
  }
  /*==========================================
galleryのスタイル（最小：768px）
===========================================*/
  #gallery .gallery-inner {
    width: 95%;
    padding: 5em 2em;
  }
  #gallery .gallery-inner .subtitle2 {
    margin-bottom: 2em;
  }
  .gallery-inner ul {
    width: 100%;
  }
  .gallery-inner ul li {
    width: 48%;
    margin-bottom: 1.5em;
    display: inline-block;
  }
  /*==========================================
priceのスタイル（最小：768px）
===========================================*/
  #price .price-inner {
    width: 95%;
    padding: 5em 2em;
  }
.plan-item {
    flex-wrap: nowrap;       /* 折り返し禁止 */
  }
	.plan-campaign {
    flex-basis: auto;            /* 幅は中身に合わせる */
    align-self: center;          /* 中央揃え */
    margin-top: 0;               /* マージンもリセット */
  }
  .plan-prices .normal::before {
    display: inline;         /* 「・・・」を表示 */
  }
	
  /* -----.coupon----- */
  .price-inner .flexbox .coupon p {
    width: 55%;
    display: inline-block;
  }
  .coupon p img {
    border-radius: 5px;
    width: 100%;
  }
  /* -----.note----- */
  .flexbox.cf .plan-table.matchHeight .note {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5em;
    padding-top: 1em;
    padding-bottom: 1em;
    padding-left: 2em;
  }
  .price-inner .accent4 {
    width: 50%;
  }
  .option {
    width: 80%;
  }
	 .plan-table {
    padding-bottom: 200px;
  }
  /*==========================================
accessImgのスタイル（最小：768px）
===========================================*/
/*  #accessImg .shop-accessImg {
    width: 40%;
    margin-left: 0%;
    margin-right: 0%;
    display: inline-block;
  }
  */
  #accessImg .accessTitle {
    width: 50%;
  }
  .accessvideo {
    width: 40%;
  }
  #accessImg h3 {
    padding: 1em;
    display: inline-block;
  }
  #accessImg h3 br {
    display: none;
  }
	#accessImg ul {
    width: 100%;
  }
 #accessImg ul li {
    width: 48%;
    margin-bottom: 1.5em;
    display: inline-block;
  }

  /*==========================================
newsのスタイル（最小：768px）
===========================================*/
  #news .news-inner {
    width: 95%;
    padding: 2em;
  }
}
@media screen and (min-width:1025px) {
  .mainView:before {
    background-image: url("../img/bg-body-pc2.webp");
  }
  .accent #coupon {
    padding-top: 3em;
    padding-bottom: 3em;
  }
  /* -----memo---- */
  .memo {
    width: 40%;
    padding: 30px;
  }
  /*==========================================
greetingのスタイル（最小：1025px）
===========================================*/
  #greeting {
    margin-bottom: 4em;
  }
  #greeting .greeting-inner {
    width: 80%;
    border-radius: 8px;
  }
  .content1 {
    display: flex;
    align-items: center; /* 縦方向の中央揃え */
  }
  .content1 .textWrap {
    width: 49%;
    margin-right: auto; /* 右側に配置 */
  }
  .greeting .content1 .photo1 {
    width: 48%;
  }
  .box {
    display: flex;
    justify-content: center; /* 水平方向の中央揃え */
    align-items: center; /* 縦方向の中央揃え */
  }
	.textWrap .text1.move_left2 h2 img {
    max-width: 294px;
}
.textWrap .text1.move_left2 p {
 font-size: 1.1em;
}
 .sns li a {
    width: 64px;
    height: 64px;
  }
  /*==========================================
galleryのスタイル（最小：1025px）
===========================================*/
  #gallery .gallery-inner {
    width: 90%;
    padding: 4em 2em;
    border-radius: 8px;
  }
	.gallery-inner ul {
   width: 90%;
  padding: 0.5em 0em;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-inner ul li {
  width: 30%;
  margin-bottom: 1.5em;
  margin-right: 3.33%; 
}

  /*==========================================
priceのスタイル（最小：1025px）
===========================================*/
   #price .price-inner {
    width: 90%;
    padding: 4em 2em;
    border-radius: 8px;
  }
.plan-item {
    gap: 1em;
  }
  .option {
    width: 40%;
  }
	.plan-table {
    padding-bottom: 260px;  /* シルク＋桜をしっかり見せたい場合 */
  }
  /* -----.coupon----- */
  .accent #coupon {
    padding-top: 3em;
    padding-bottom: 3em;
  }
  /* -----.note----- */
  .flexbox.cf .plan-table.matchHeight .note {
    width: 40%;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    padding-left: 2.5em;
  }
  .price-inner .accent4 {
    width: 30%;
  }

  /*==========================================
accessImgのスタイル（最小：1025px）
===========================================*/
/*  #accessImg .shop-accessImg {
    width: 20%;
    margin-left: 1%;
    margin-right: 1%;
    display: inline-block;
  }*/
/*  #accessImg img {
    width: 20%;
  }*/
  #accessImg .accessTitle {
    width: 40%;
  }
  #accessImg h3 {
    font-size: 1.2em;
  }
		#accessImg ul {
   width: 90%;
  padding: 0.5em 0em;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#accessImg ul li {
  width: 20%;
  margin-bottom: 1.5em;
  margin-left: 1%;
    margin-right: 1%;
}

  /*==========================================
newsのスタイル（最小：1025px）
===========================================*/
  #news .news-inner {
    width: 80%;
    padding: 4em;
    border-radius: 8px;
    background-color: hsla(0, 0%, 100%, 0.00);
  }
  #news .news-inner h2 {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
  #news .news-inner ul {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
  #news .news-inner ul li {
    padding-top: 1em;
    padding-bottom: 1em;
  }
}
