@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Kaisei+Opti:wght@700&display=swap');

@media only screen and (min-width: 1500px) {
  /* 画面幅1000px以上でPC画像を表示 */
  .bigpc-only {
    display: block;
	width: 100%;
    height: auto;
    object-fit: contain;
    justify-content: center; /* 横中央 */
    align-items: center;     /* 縦中央 */
	 
  }
  /* 画面幅1000px以上でSP画像を非表示 */
  .sp-only {
    display: none;
	width: 100%;
    height: auto;
    object-fit: contain;
  }
	
/* 画面幅768px以下でPC画像を非表示 */
  .pc-only {
    display: none;
	width: 100%;
    height: auto;
    object-fit: contain;
  }
}
@media only screen and (min-width: 768px)and (max-width:1500px) {
  /* 画面幅768px以上でPC画像を表示 */
  .pc-only {
    display: block;
	width: 100%;
    height: auto;
    object-fit: contain;
  }
  /* 画面幅768px以上でSP画像を非表示 */
  .sp-only {
    display: none;
	width: 100%;
    height: auto;
    object-fit: contain;
  }
.bigpc-only {
    display:none;
	width: 100%;
    height: auto;
    object-fit: contain;
	margin: 20px 0px;/* 上下20px、左右30px */
  }
}
@media only screen and (max-width: 768px) {
  /* 画面幅768px以下でPCスマホ画像を表示 */
  .sp-only {
    display: block;
	width: 100%;
    height: auto;
    object-fit: contain;
	
  }
/* 画面幅768px以下でPC画像を非表示 */
  .pc-only {
    display: none;
	width: 100%;
    height: auto;
    object-fit: contain;
	margin: 20px 0px;/* 上下20px、左右30px */
  }
  .bigpc-only {
    display: none;
	width: 100%;
    height: auto;
    object-fit: contain;
	margin: 20px 0px;/* 上下20px、左右30px */
  }
}

body {
  margin: 0;
　padding: 0;
  background: repeating-linear-gradient(
    90deg,                /* 90度＝縦ストライプ */
    #FAD0E5,
    #FAD0E5 20px,
    #D7C4F3 20px,
    #D7C4F3 40px
  );
  }

/*ヘッダー*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(180deg, rgb(255,219,240), rgb(255,255,255));
  display: flex;
  justify-content: center; /* ロゴを中央基準に配置 */
  align-items: center;     /* 縦中央揃え */
  z-index: 1000;
}

/* ロゴ中央 */
.head-logo {
  margin: 0;
}

.head-logo img {
  display: block;
  height: 40px;
  width: auto;
}

/* ハンバーガーメニュー右上 */
.menu-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 3px;
  background: #FFBDE2;
  border-radius: 2px;
  transition: 0.3s;
}

/* メニュー開閉アニメーション */
.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translateY(13px);
}
.menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-13px);
}

.nav {
  position: absolute;
  top: 70px;           /* ヘッダーの下に表示 */
  right: 0;            /* 右端から出す */
  background: #fff;
  width: 200px;
  display: none;       /* 初期は非表示 */
  flex-direction: column;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 999;
}

/* ハンバーガーをクリックしたときに表示される */
.nav.active {
  display: flex;
}

/* リスト基本設定 */
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 各リンクの見た目 */
.nav li a {
  display: block;
  padding: 14px 16px;
  color: #FFBDE2;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

/* ホバー時の効果 */
.nav li a:hover {
  background: #f9f9f9;
}
/*KVがぞう*/
.relative{
	padding-top: 80px;
	display: flex;
    justify-content: center; /* 横中央 */
    align-items: center;     /* 縦中央 */
	margin: 10px 0px 10px 0px;
	
}

.center-container {
  display: flex;
  justify-content: center;
 
}


/*1.18しなこと合える動く文字*/
.swing {
  display: inline-block;
  margin: 10px;
  transform-origin: center;
  animation: swing 2s infinite steps(2, start);
}

@keyframes swing {
  0% { transform: rotate(-2deg); }   /* 左に5度 */
  50% { transform: rotate(2deg); }   /* 右に5度 */
  100% { transform: rotate(-2deg); } /* 左に戻る */
}

/* 画面幅768px以下のとき */
@media (max-width: 768px) {
  .swing {
    width: 300px; /* 小さくする */
  }
}

@media (min-width: 768px) {
  .swing {
    width: 700px; /* 小さくする */
	padding-bottom: 50px;
	}

}
	

@media (min-width: 1000px) {
  .swing {
    width: 800px; /* 小さくする */
  }
}

.shinakopro {
  background-color: #E9C5FF;
  text-align: center;
  padding: 20px 10px;
}


/* 親には絶対 relative つける！ */
.shinako_message {
  opacity: 0;
  transform: scale(0.93);
  transition: opacity .3s ease, transform .3s ease; /* 保険 */
  text-align: center;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #FFFFFF;
  font-weight: 900;
  font-size: 16px;

 text-shadow:
  0 0 1px #ff69b4,
  0 0 2px #ff69b4,
  1px 1px 0 #ff69b4, -1px -1px 0 #ff69b4,
  -1px 1px 0 #ff69b4,  1px -1px 0 #ff69b4,
  1px 0 0 #ff69b4, -1px 0 0 #ff69b4,
  0 1px 0 #ff69b4,  0 -1px 0 #ff69b4;
}

/* ← show が付いたらふわっと表示 */
.shinako_message.show {
  animation: fuwatto 1.8s ease forwards;
}

@keyframes fuwatto {
  0% { opacity: 0; transform: scale(0.93); }
  60% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}


@media (min-width: 768px) {
.shinako_message {
		font-size: 26px;
	}
}

/*----↑ここまでsinakoアニメーション--*/

/* ========== 共通 ========== */
.product-section {
  align-items: center;
  background: rgba(245,240,255);
  margin: 20px 20px;
  
  border-radius: 10px; /* 数値を大きくするとより丸くなる */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);

	
  /* ▼ここからアニメーション関連を追加！ */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 表示されたときに「ふわっ」と出す */
.product-section.show {
  opacity: 1;
  transform: translateY(0);
}
.product-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.product-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.product-name {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.triangle img{
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}

.scent-img {
  width: 100%;
  height: auto;
  max-width: 150px;
}
.message {
  font-size: 18px; /* ← 好きなサイズに変更してOK（px、remなど） */
  font-weight: 500; /* ← 少し太くする（任意） */
 
}

/* スマホ（768px以下） */
@media (max-width: 768px) {
  .message {
    font-size: 16px;
	text-align: center;
  }
}

/* PC（768px以上） */
@media (min-width: 768px) {
  .message {
    font-size: 20px;
  }
	
.product-image img{
	width: 500px;
	padding-bottom: 3px;
	}

.product-image2 img{
	width: 500px;
	padding-bottom: 3px;
	padding-left: 30px;
	}
}

/* ========== スマホ ========== */
@media (max-width: 768px) {
  .product-inner {
    align-items: center;
	font-size: 8px;
    color: #FF5FA0;
	margin: 10px;
  }
}

@media (max-width: 768px) {
  .product-inner img {
    display: block;
    margin: 0 auto;
  }
	
.product-inner2 img {
    display: block;
    margin: 0 auto;
  }

  .product-image img {
    width: 350px;
  }
}


/* ========== PC ========== */
@media (min-width: 768px) {
  .product-inner {
    flex-direction: row;
	font-size: 12px;
    color: #FF5FA0;
  }
}

  .product-info {
    text-align: left;
  }


  .scent-img {
    max-width: 200px;
  }

.product-section2 {
  align-items: center;
  background: rgba(255,240,255);
  margin: 20px 20px;

  border-radius: 10px; /* 数値を大きくするとより丸くなる */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);

  /* ▼ここからアニメーション関連を追加！ */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
	
}


/* 表示されたときに「ふわっ」と出す */
.product-section2.show {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 900px) {
  .product-section2 {
    margin: 20px 100px;
  }
	
  .product-section {
    margin: 20px 100px;
  }
}
.product-info2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.product-name2 {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.triangle2 img{
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}

.scent-img2 {
  width: 100%;
  height: auto;
  max-width: 150px;
}

/* スマホ（768px以下） */
@media (max-width: 768px) {
  .message2 {
    font-size: 13px;
	text-align: center;
	font-weight: 500;
  }
}

/* PC（768px以上） */
@media (min-width: 768px) {
  .message2 {
    font-size: 16px;
	font-weight: 600;
	text-align: center;
  }
}

/* ========== スマホ ========== */
@media (max-width: 768px) {
  .product-inner2 {
    align-items: center;
	justify-content: center;
	font-size: 8px;
    color: #FF2629;
	margin: 10px;
  }
}

@media (max-width: 768px) {
  .product-inner2 img {
    display: block;
    margin: 0 auto;
  }
 .product-image2 img {
    width: 350px;
  }
}

 


/* ========== PC ========== */
@media (min-width: 768px) {
  .product-inner2 {
  display: flex;
  flex-direction: row-reverse; /* ←ここで反転！ */
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #FF2629;
  gap: 40px;
  }
}

  .product-info2 {
    text-align: left;
  }


  .scent-img2 {
    max-width: 300px;
  }

.attention-title{
	text-align: center;
	font-weight: 600;
	font-size: 20px;
	color: #000000;
}

.attention-group{
	border-top: 1px solid #000;
    border-bottom: 1px solid #000; 
	text-align: center;
	object-fit: contain;
	margin-right: 10px;
	margin-left: 10px;

}

@media only screen and (min-width: 768px) {
	.attention-group{
	border-top: 1px solid #000;
    border-bottom: 1px solid #000; 
	text-align: center;
	object-fit: contain;
	margin-right: 250px;
	margin-left: 250px;
	
}
}
	
.attention{
	color: #000000;
	text-align: left;
	display: inline-block;
	font-size: 14px;
	width: 100%; 
	margin: 3px;
	font-weight: normal;
	
}

@media screen and (max-width: 768px){
	.attention{
		font-size:10px;
	}
}


  /* 画面幅768px以下でPCスマホ画像を表示 */
 @media only screen and (max-width: 768px) {
  .evkv img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

.title {
  position: absolute;
  top: 120px; /* 上からの距離 */
  right: 30px;  /* ← 右寄せのため追加！ */
  text-align: right;
  animation: marudeStretch 2.5s ease-in-out infinite;
  transform-origin: center center;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15));
}

.title {
	width: 80%;
}
@keyframes marudeStretch {
  0%, 100% {
    transform: scaleY(1) scaleX(1);
  }
  50% {
    transform: scaleY(1.05) scaleX(1.0);
  }
}

@media (min-width: 768px) {
  .event_title {
    width: 450px; /* 大きくする */
	margin-right: 10px;
  }
}

@media (min-width: 1200px) {
  .event_title {
    width: 600px; /* 大きくする */
	margin-right: 200px;
  }
}


.frame {
  display: flex;
  justify-content: center; /* 横中央 */
  align-items: center;      /* 縦中央（必要なら） */
  margin: 20px;
}

.mask-box {
  width: 600px;
  height: 150px;
  background-color: #A78BFA; /* 紫背景 */
  overflow: hidden; /* 枠外を隠す */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 12px;
  position: relative;
  padding-left: 20px;
  border: none;        /* ←破線の原因対策① */
  outline: none;       /* ←破線の原因対策② */
  box-sizing: border-box;
  margin: 80px auto; 
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  
  /* ▼ 枠だけぷるぷるアニメーション */
  animation: purupuruBox 2s ease-in-out infinite;
  transform-origin: center;
	
}

.mask-box img {
  width: 40%;
  object-fit: cover;
  animation: swing 4s infinite ease-in-out;
  transform-origin: center center; /* 回転の基点を中央に */
}

@keyframes swing {
  0%, 100% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(-3deg);
  }
}

/* ===== テキスト ===== */
.message3 {
  color: white;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-weight: 700; /* 太字 */
  font-size: 24px;
  margin-left: 40px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}


.message3_2 {
	color: #FFF350;
	font-size: 20px;
	
}

/* ===== スマホ版（768px以下） ===== */
@media (max-width: 768px) {
  .mask-box {
    width: 320px;
    height: 85px;
    margin: 40px auto;
    padding-left: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .mask-box img {
    width: 140px;
  }

  .message3 {
    font-size: 13px;
    margin-left: 8px;
  }
	
.message3_2 {
	color: #FFF350;
	font-size: 10px;
	}
}


.eventtitle {
	text-align: center;
	font-family: 'Kaisei Opti', serif;
    font-size: 20px;
	color: #FF2792;

}

.event_bunsyou {
	padding-top: 3px;
	font-size: 12px;
    font-family: 'Noto Sans JP', 'Yu Gothic', 'Meiryo', sans-serif;
	margin: 0px 10px 0px 10px;
    display: inline-block; /* ← 幅を確保してブロックとして扱う */
    text-align: left; /* ← 文字は左寄せ */
    max-width: 90%; /* ← バランスよく文章幅をまとめる（おしゃれになる）*/ 
}

    
   

.event_syousai{
	background-color: rgba(255,255,255,0.3);
	padding-bottom: 20px;
	margin: 20px 40px 0px 40px;
	text-align: center;
	
}   

.marker {
  background: linear-gradient(transparent 60%, #fff7a9 60%);
  font-weight: 700;

}

@media (min-width: 1200px){
	.event_syousai {
       font-size: 25px;
	   margin: 20px 100px 0px 100px;
		}
}

@media (min-width: 1200px){
	.event_bunsyou {
       font-size: 18px;
		}
}

.aaa {
	  display: block;       /* 行として独立させる */
      text-align: center;   /* この行だけ中央揃え */
	
}

.event_dd {
	text-align: center;
	font-weight: 600;
	font-size: 10px;
}

@media(min-width: 768px){
.event_dd {
	font-size: 24px;
}
}


.chamu {
  display: flex;
  flex-direction: column; /* スマホ：縦並び */
  align-items: center;    /* 画像を中央揃え */
  gap: 20px;
}

/* 画像のサイズはスマホ基準で書く */
.chamu-title img {
	
  opacity: 0;
  transform: translateX(-40px);
  transition: .8s ease-out;
}

.chamu-title.show img {
  opacity: 1;
  transform: translateX(0);
}

/* ふわっと左からスライドイン */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px); /* 左から */
  }
  100% {
    opacity: 1;
    transform: translateX(0); /* 元の位置 */
  }
}

.chamu-img img,
.chamu-img2 img {
  width: 100%;
  max-width: 300px;
}

/* ここからPC (768px〜) */
@media (min-width: 768px) {
  .chamu {
    flex-direction: row;   /* PC：横並び */
    justify-content: center;
	margin: 80px;
  }

  .chamu-title img {
    max-width: 500px;      /* PC用画像サイズ */
  }

  .chamu-img img,
  .chamu-img2 img {
    max-width: 400px;
  }
}

.tilt-fade {
  opacity: 0;
  transform: translateY(30px) rotate(-4deg); /* 最初：傾け＋下げる */
  transition: opacity .8s ease, transform .8s ease;
}

/* 表示されたとき */
.tilt-fade.show {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.link {
	display: block;       /* 行として独立させる */
    text-align: center;  
	background-color: #FF8EC3;
	padding: 10px 10px;
	margin: 12px 20px 0px 20px;
	font-weight: 900px;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	font-family: 'Kaisei Opti', serif;
}



/* aタグをボタンっぽく装飾する */
.oubo_link {
  text-align: center;
  margin: 10px 60px;
}

.oubo_link a {
  display: inline-block;
  background-color: #FF63A2;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Kaisei Opti', serif;
  font-size: 20px;
  padding: 10px 30px;
  border-radius: 12px;
  opacity: 0; /* 最初は透明 */
  transform: translateY(20px); /* 下から出る */
  transition: opacity 1s ease, transform 1s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* 表示されたとき（スクロールでクラスが追加される） */
.oubo_link a.show {
  opacity: 1;
  transform: translateY(0);
}

.oubo_link a:hover {
  background-color: #FF85B8;
  transform: translateY(-3px); /* ホバーでちょっと浮く */
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
.oubo_link {
		margin: 10px 10px;
		padding: 10px 10px;
	}
	
.link {
	margin: 20px 100px 0px 100px;
}
}

@media (min-width: 750px) and (max-width: 1130px) {

  .product-inner,
  .product-inner2 {
    flex-wrap: nowrap; /* 横一列を維持 */
    gap: 20px;         /* 少し狭める */
  }

  .product-image img,
  .product-image2 img {
    width: 350px; /* ← 500px → 350px に縮小 */
  }

  .triangle img,
  .triangle2 img {
    max-width: 200px; /* 三角形も少し小さく */
  }
}

.chamu-title {
	display: block;
	text-align: center;	
}

.chamu-title img {
  width: 300px;
}

@media (min-width: 750px) {
.chamu-title img {
  width: 500px;
}
	
}

.donki {
   text-align: center;
}

.copyright{
	color: #FFFFFF;
	background-color: #FF87C2;
	text-align: center;
	margin-top: 50px;
}

a {
  text-decoration: none;
}
