@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(255,231,237,0.70);
	/*
  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;
	margin-top: 80px;
}
.top-message p{
	font-size: 1.5rem;
	margin-top: 15px;
	color: #e1208f;
	text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
}
.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まわり
 ****************************/
.Concept {
    text-align: center;
}

.Concept p {
    display: inline-block; 
    text-align: left;      
}

/* サービスボタン */
.service-button {
  display: inline-block;
  margin-top: 30px;
  position: relative; /* 子要素（img）を重ねる基準 */
  max-width: 280px;
  width: 100%;
  overflow: hidden; /* はみ出し防止 */
}

.service-button img {
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease, transform 0.3s ease; /* 透明度と動きをなめらかに */
  display: block;
}

/* ホバー用画像を最初から「透明」にして重ねる */
.service-button .img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0; /* 最初は透明 */
}

/* --- ホバー時の動き --- */

/* 親(aタグ)がホバーされたら、通常画像を透明にする */
.service-button:hover .img-main {
  opacity: 0;
  transform: translateY(-5px) scale(1.03); /* 動きを付ける場合 */
}

/* 親(aタグ)がホバーされたら、ホバー用画像を不透明にする */
.service-button:hover .img-hover {
  opacity: 1; /* ここを0.8にすれば少し透けます */
  transform: translateY(-5px) scale(1.03);
}

/*❎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: 20px;
  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%;
  }
}


/*❎インスタ下メッセージ*/

.bottom-text {
    text-align: center;
    padding: 80px 20px;
    background: #fff; 
}

.bottom-text h1 {
    display: inline-block; 
    text-align: left;     
    
    /* フォント設定 */
    font-size: 1.5rem;     
    font-weight: normal;   
    line-height: 1.8;
    color:#ef96bd;       
    text-shadow: 0 0 15px rgba(100, 149, 237, 0.2); 
    letter-spacing: 0.1em;
}

/* スマホ対応：画面が狭いときは文字を少し小さく */
@media (max-width: 768px) {
    .bottom-text h1 {
        font-size: 1.2rem;
    }
}
