@charset "UTF-8";

/* ← ここでページ全体に「縦方向のスナップ」を有効化（htmlだけ） */
html {
  scroll-snap-type: y proximity;
}

html, body {
  margin: 0;
  padding: 0;
  background: transparent; /* ← 背景は透過にして、下に固定したTOP画像を見せる */
}

/*❎TOPイメージ*/
.top-img {
  position: fixed; /* ← 背景に固定 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1; /* ← 背景にする */
}

/* ピンクリボン背景 */
.ribbon-bg {
  position: absolute;
  top: 42%;
  right: 0;
  height: 10vh;
  width: 0;
  background-color: #ef96bd;
  z-index: 1;
  animation: ribbon-slide 1.8s ease-out forwards;
  transform-origin: right center;
}

/* 🔹右→左へ伸びるアニメーション */
@keyframes ribbon-slide {
  0% { width: 0; }
  100% { width: 100%; }
}

/* 画像たち（位置は変更なし） */
.top-img01,
.top-img02,
.top-img03,
.top-img04,
.top-img05,
.top-img06,
.white-logo {
  position: absolute;
  object-fit: cover;
  z-index: 2;
}

/*リボン*/
.top-img01 {
  min-height: 40vh;
  width: 25%;
  top: 0;
  left: 0;
}

/*花*/
.top-img02 {
  width: 17%;
  top: 0;
  left: 27.5%;
  height: 52vh;
}

/*胡蝶蘭*/
.top-img03 {
  width: 25%;
  top: 0;
  right: 28%;
  height: 33vh;
}

/*女神像*/
.top-img04 {
  width: 25%;
  height: 100%;
  top: 0;
  right: 0;
}

/*HANATERU文字*/
.top-text {
  position: absolute;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
  color: #603813;
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  top: 38%;
  left: 3%;
  z-index: 2;
}

/* リボン上のロゴ */
.white-logo {
  position: absolute;
  max-width: 300px;
  top: 43vh;
  right: 30%;
  z-index: 3;
  opacity: 0;
  animation: logo-fade 0.6s ease-out forwards;
  animation-delay: 1.8s;
}
@media screen and (max-width: 700px) {

  .white-logo {
    left: 25%;
    right: auto;
    transform: translateX(-50%);
    top: 45vh;

    width: 70vw;        /* ← ここが重要：画面幅基準 */
    max-width: 260px;   /* ← 大きくしすぎない保険 */
    height: auto;
  }

}


/* ロゴがふわっと出る動き */
@keyframes logo-fade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*アレンジメント*/
.top-img05 {
  width: 30%;
  bottom: 0;
  left: 0;
  height: 40vh;
}

/*花束*/
.top-img06 {
  width: 39%;
  bottom: 0;
  left: 33%;
  height: 43vh;
}

/*===============================
 下層コンテンツは背景より前面
===============================*/
.background-white {
  background-color: #fff;
  padding-top: 100px;
}

.service,
.sns,
.order,
footer {
  position: relative;
  z-index: 10;
}

/* =========================================
   top-message：半透明＋縦横センター＋1回だけ吸い付く
========================================= */
.top-message {
  margin-top: 100vh;      /* 1画面分スクロールした位置から始まる */
  text-align: center;
  position: relative;
  z-index: 10;
  background: rgba(251,218, 200, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(6px);
  height: 100vh;          /* 1画面ちょうど */
  padding: 0;
  display: flex;          /* 縦横中央配置 */
  justify-content: center;
  align-items: center;
  flex-direction: column;
  scroll-snap-align: start;  /* ← スクロール時にここでピタっと止まる */

}
.top-message img{
	max-width: 300px;
}
.top-message p{
	font-size: 1.5rem;
	margin-top: 15px;
}
.top-message span{
	font-size: 2rem;
	font-weight: bold;
	
}


@media screen and (max-width: 700px) {
	.top-message{
		  height: 120vh; 
	}
	.top-message img{
		padding-top: 0vh;
	max-width: 200px;
}
	.top-message p{
	font-size: 1rem;
	margin-top: 15px;
		width: 90%;
}
.top-message span{
	font-size: 1.4rem;
	font-weight: bold;
	
}
	
}

/*===============================*/

@media screen and (max-width: 1250px) {
  .top-img { height: 130vh; }

  .top-img01,
  .top-img02,
  .top-img03,
  .top-img04,
  .top-img05,
  .top-img06 {
    z-index: 2;
  }

  .top-img03 {
    width: 53%;
    top: 0;
    left: 0;
    height: 33vh;
  }

  .top-img04 {
    width: 40%;
    height: 60%;
    top: 0;
    right: 0;
  }

  .top-text {
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    top: 25%;
  }

  .ribbon-bg {
    z-index: 3;
    top: 35%;
  }

  .white-logo {
    max-width: 300px;
    top: 46vh;
    right: 30%;
    z-index: 4;
  }

  .top-img06 {
    width: 70%;
    height: 35vh;
    left: 0%;
    top: 40%;
    transform: translateY(-50%);
  }

  .top-img05 {
    width: 75%;
    bottom: 0;
    left: 0;
    height: 38vh;
  }

  .top-img01 { display: none; }

  .top-img02 {
    bottom: 0;
    top: auto;
    width: 20%;
    height: 45vh;
    left: auto;
    right: 0;
  }
}

/* ランダム個別遅延 */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.top-img01,
.top-img02,
.top-img03,
.top-img04,
.top-img05,
.top-img06 {
  opacity: 0;
  animation: fadeInUp 1.2s ease-out forwards;
}

.top-img01 { animation-delay: 0.3s; }
.top-img02 { animation-delay: 1.2s; }
.top-img03 { animation-delay: 0.6s; }
.top-img04 { animation-delay: 1.5s; }
.top-img05 { animation-delay: 0.9s; }
.top-img06 { animation-delay: 0.45s; }

/****************************
 * ここまでがTOPまわり
 ****************************/


/*❎サービス*/

.service {
  margin: 100px 0;
  text-align: center;
  color: #622d18;
  padding: 0 20px;
}

/* 商品リスト */
.service ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 55px 40px;
  padding: 0;
  margin: 60px auto;
}

.service li {
  list-style: none;
  min-width: 240px;
  max-width: 280px;
  position: relative;
  z-index: 1;
}

/* 丸画像（無色の水彩ぼかし） */
.service li img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 15px;
  position: relative;
  z-index: 2;
  transition: transform 0.35s ease;
}

.service li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 248px;
  height: 248px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 1;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.45) 40%,
    rgba(255, 255, 255, 0.12) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: blur(18px);
  pointer-events: none;
}

/* ホバー：ほんの少しだけ拡大（上品） */
.service li img:hover {
  transform: scale(1.04);
}

/* 商品名 */
.service a {
  font-size: 1.2rem;
  text-decoration: none;
  color: #622d18;
  font-weight: 600;
  line-height: 1.6;
  display: inline-block;
  transition: 0.3s ease;
}

.service a:hover {
  color: #8f5c43;
}

/* 下部テキスト */
.service p {
  margin: 40px auto 30px;
  line-height: 2;
  font-size: 1.05rem;
  max-width: 680px;
  color: #7a4a32;
  opacity: 0.95;
}

/* ギャラリーボタン（シンプル無彩色） */
.service > a {
  display: inline-block;
  margin-top: 10px;
  padding: 11px 28px;
  border: 1px solid #bfa6a0;
  color: #7a4a32;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 40px;
  background: rgba(255,255,255,0.7);
  transition: 0.3s ease;
}

.service > a:hover {
  background: #7a4a32;
  color: #fff;
}
/* レスポンシブ（サービス） */
@media screen and (max-width: 900px) {
  .service li img {
    width: 200px;
    height: 200px;
  }

  .service li::before {
    width: 230px;
    height: 230px;
  }
}

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

  /* サービス一覧：縦並び */
  .service ul {
    flex-direction: column;
    gap: 45px; /* ← カテゴリ同士の距離は維持 */
  }

  /* 各サービス項目（中身だけを70%で中央配置） */
  .service li {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }

  /* 丸画像 */
  .service li img {
    width: 185px;
    height: 185px;
    margin-bottom: 0; /* ← 余白を完全に切る */
  }

  /* 水彩ぼかし */
  .service li::before {
    width: 210px;
    height: 210px;
  }

  /* タイトルを写真に“食い込ませる” */
  .service li a {
    font-size: 1.3rem;
    line-height: 1.15;
    display: inline-block;
    margin-top: -8px;   /* ← 決定打 */
  }
}



/*❎1年先まで承ります*/

.one-year {
  margin: 70px auto;
  padding: 50px 60px 60px;
  max-width: 860px;

  background: #fff;
 
}
.one-year img{
	width: 100%;
	max-width: 900px;
}
/* 見出し */
.one-year h1 {
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  padding-bottom: 6px;
  margin-bottom: 0px;
  display: inline-block;
 
  color: #411506;
  font-weight: 600;
	 text-align: center;
}

/* テキスト */
.one-year p {
  line-height: 2.1;
  font-size: 1.05rem;
  color: #603813;
  margin-bottom: 45px;
	 text-align: left;
	max-width: 600px;
}

/* ボタンコンテナ */
.one-year-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
}

/* 電話・フォーム共通ボタン */
.one-year-links .btn-line {
  display: inline-block;
  padding: 13px 42px;
  border-radius: 999px;
  border: 1px solid #d65288;
  color: #d65288;
  background: #fff;
  font-size: 1.03rem;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
	
}

/* hover時 */
.one-year-links .btn-line:hover {
  background: #d65288;
  color: #fff;
}

/* ===============================
   スマホ調整
=============================== */
@media screen and (max-width: 700px) {

  .one-year {
    padding: 45px 25px;
  }
	  .one-year h1{
   font-size: 1.2rem;
		  margin-bottom: 0;
  }

  .one-year-links {
    flex-direction: column;
    gap: 20px;
  }

  .one-year-links .btn-line {
    width: 70%;
    padding: 13px 0;
    text-align: center;
  }
}



/*❎インスタ*/
.sns {
  background-color: #F3D6D6;
  margin: 0;
  padding: 100px 50px;
  text-align: center;
}

.sns h1 {
  margin: 0 0 50px 0;
}

.sns-underline {
  width: 100%;
  object-fit: cover;
}

/* iframe を中央にする */
.sns iframe {
  margin: 0 auto;
  display: block;
  max-width: 100%;
}


/* スマホ幅（700px以下） */
@media screen and (max-width: 700px) {
  .sns {
    padding: 60px 20px;
  }

  .sns iframe {
    width: 100% !important;
    height: 300px !important; /* ← ここが重要 */
    max-width: 100%;
  }
}



/*❎ご注文について*/
.order {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  color: #622d18;
  text-align: center;
}

/* リスト全体 */
.order > ul {
  list-style: none;
  padding: 0;
  margin: 40px 0 60px;
  display: grid;
  gap: 40px;
}

/* 各項目（カード無し） */
.order > ul > li {
  padding-bottom: 20px;
  border-bottom: 1px solid #ef96bd;
}

.order > ul > li h2 {
  margin: 0 0 8px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #622d18;
}

.order > ul > li a {
  color: #e46b9d;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
}

.order > ul > li a:hover {
  text-decoration: underline;
}

.order > ul > li p {
  margin: 5px 0 0;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* ご注文についてボタン化 */
.order .order-btn {
  display: inline-block;
  padding: 14px 22px;
  background: #ef96bd;
  color: #fff !important;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.25s ease;
  border: 1px solid #ef96bd;
  min-width: 200px;
}

.order .order-btn:hover {
  background: #fff;
  color: #ef96bd !important;
  border-color: #ef96bd;
}

.order > ul > li a.order-btn {
  margin-top: 8px;
  display: inline-block;
}

/* スマホ対応：特に押しやすく */
@media screen and (max-width: 700px) {
  .order .order-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 0;
    font-size: 1.2rem;
    border-radius: 60px;
  }

  .order > ul > li {
    padding-bottom: 20px;
  }
}


/*❎支払い方法について*/
.payment {
  margin-top: 60px;
  padding: 0 5px;
}

.payment h3 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  border-left: 5px solid #ef96bd;
  padding-left: 12px;
}

.payment p {
  margin-bottom: 15px;
  font-size: 1rem;
  opacity: 0.9;
}

.payment ul {
  list-style: none;
  padding: 0;
}

.payment ul li {
  margin-bottom: 25px;
}

.payment ul li h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #622d18;
}

/* 決済アイコン（シンプルで均等に見せる） */
.payment img {
  max-height: 32px;
  width: auto;
  margin: 6px 12px 0 0;
  vertical-align: middle;
}

/* レスポンシブ調整（支払い） */
@media screen and (max-width: 700px) {
  .order {
    padding: 30px 15px 60px;
  }

  .order > ul > li {
    padding-bottom: 15px;
  }

  .payment img {
    max-height: 26px;
    margin-right: 8px;
  }
}