@charset "UTF-8";

.half img {
	width: 50%;
	height: auto;
}

.half {
	display:flex;
	align-items: center;
}

/* 枠吹き出し */
.hukidashi_frame_right {
  position: relative;
  margin: 0 15px 2em 0; /* 四角外の余白の指定 */
  padding: 1em 11px 0 1em ; /* 四角と文字の間の指定 */
  color: #000000;
  font-size: auto;
  background: 000; /* 中の色の指定 */
  border: solid 2.5px #000000; /* 線の太さと色の指定 */
  box-sizing: border-box;
  border-radius: 10px; /* 角丸 */
}

/* 吹き出しの中の三角部分 */
.hukidashi_frame_right:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  margin-top: -10px;
  width: 20px; /* 四角形の幅 */
  height: 20px; /* 四角形の高さ */
  background: #fff;
  transform: rotate(-45deg); /* 45度回転して菱形に */
  border-right: 2px solid #000; /* 右側にborder */
  border-bottom: 2px solid #000;/* 下側にborder */
  z-index: 2; /* 優先順位 */
}

button.btn_insta {
    color: #fff; 
    background: linear-gradient(45deg, #FFD600, #FF7A00, #FF0069, #D300C5, #7638FA);
}

button.btn_insta02 {
    color: #D300C5;
    border: 5px solid; 
    border-image: linear-gradient(45deg, #FFD600, #FF7A00, #FF0069, #D300C5, #7638FA)1;
}

.font-txt_mincho {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.relative {
  position: relative;
}
.absolute {
  position: absolute;
  top: 0;
}

/* フェードイン画像 */
/* 上から下に移動しながらフェードイン */
.fadeInDown {
    opacity: 0;
    transform: translateY(-100px);
    animation-name: fadeIn;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}
/* フェードインアニメーション */
@keyframes fadeIn {
    0% {
    }
    100% {
        opacity: 1;
        transform: translate(0);
    }
}


/* 左右フェードイン文字 */
.txt {
    display: flex;
    overflow: hidden;
}

.txt p {
    font-size: min(5.2vw,40px); 
    font-weight: 800;
    color: #007130; 
    margin-top: 1em;

    /* ここからアニメーション関係 */
    opacity: 0;
    animation: textanimation 1s forwards;
}
/* 1文字目 */
.txt p:nth-child(1) {
    animation-delay: 1s
}
/* 2文字目 */
.txt p:nth-child(2) {
    animation-delay: 1.1s
}
/* 3文字目 */
.txt p:nth-child(3) {
    animation-delay: 1.2s
}
/* 4文字目 */
.txt p:nth-child(4) {
    animation-delay: 1.3s
}
/* 5文字目 */
.txt p:nth-child(5) {
    animation-delay: 1.4s
}
/* 6文字目 */
.txt p:nth-child(6) {
    animation-delay: 1.5s
}
/* 7文字目 */
.txt p:nth-child(7) {
    animation-delay: 1.6s
}
/* 8文字目 */
.txt p:nth-child(8) {
    animation-delay: 1.7s
}
/* 9文字目 */
.txt p:nth-child(9) {
    animation-delay: 1.8s
}
/* 10文字目 */
.txt p:nth-child(10) {
    animation-delay: 1.9s
}
/* 11文字目 */
.txt p:nth-child(11) {
    animation-delay: 2s
}
/* 12文字目 */
.txt p:nth-child(12) {
    animation-delay: 2.1s
}
/* 13文字目 */
.txt p:nth-child(13) {
    animation-delay: 2.2s
}
/* 14文字目 */
.txt p:nth-child(14) {
    animation-delay: 2.3s
}
/* 15文字目 */
.txt p:nth-child(15) {
    animation-delay: 2.4s
}
/* 16文字目 */
.txt p:nth-child(16) {
    animation-delay: 2.5s
}
/* 17文字目 */
.txt p:nth-child(17) {
    animation-delay: 2.6s
}
/* 18文字目 */
.txt p:nth-child(18) {
    animation-delay: 2.7s
}
/* 19文字目 */
.txt p:nth-child(19) {
    animation-delay: 2.8s
}
/* 20文字目 */
.txt p:nth-child(20) {
    animation-delay: 2.9s
}

@keyframes textanimation {
    0% {
        opacity: 0;
    }
   100% {
        opacity: 1;
    }
}


#backline{
	margin-bottom: 2em;
}
#backline div:nth-child(2) {
	margin-top: 2em;
}

p.grip_p{
	margin-bottom: 3em;
}

.scroll-space {
    box-sizing: border-box;
    weight: 100%;
    height: 100%;
    overflow: hidden;
    margin: 2em auto 50px;
}
.scroll-space p{
    font-weight:bold;
	text-align:center;
}

.fadein_down {
    opacity: 0;
    transform: translate(0, 0);
    transition: all 0.7s;
    margin-top: 3em;
}
.fadein_down.scrollin {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}
.fadein_down .fadein-bottom {
    transform: translate(0, 30px);
}

/* ズームイン画像 */
.zoomIn {
  opacity: 0;
}
.zoomIn_transition {
  opacity: 1;
  transition: zoomIn 0.3s linear forwards;
}
.zoomIn.active {
  opacity: 1;
  animation: zoomIn 0.3s linear forwards;
}
@keyframes zoomIn{
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
.zoomIn p {
    font-weight:bold;
    text-align:center;
}

ul.kuroten {
    list-style-type:disc;
    padding-left: 1em;
    margin-top: 0;
    margin-bottom: 2em;
}

.marker-y {
  background:linear-gradient(transparent 70%, #fff100);
  display: inline-block;
  /* 背景の繰り返しを停止 */
  background-repeat: no-repeat;
  /* マーカーの横方向を0にして縮める */
  background-size: 0% 100%;
  /* マーカーが引かれる速度を指定 */
  padding: 0.15em 0.15em;
}
/* マーカーが引かれる際に付与するクラス */
.marker-y.on {
  /* 横方向を100%にして、マーカーを引く */
  background-size: 100% 100%;
}
.marker-y_transition {
    transition:background-size 1s;
}
.marker-y_animation {
    animation: markerDraw 1s ease-out forwards;
}
@keyframes markerDraw {
  to {
    background-size: 100% 100%;
  }
}
.box-toroku{
	width: 100%;
	margin: 0 auto;
	overflow:hidden;
    background-color: #fff6d6;
}

.box-toroku p{
	margin: 2em 1.5em 1em;
}

.box-toroku-arrow {
  width: 100%;
  height: 90px;
  /* ▼三角形の形 */
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.border-r{
    width: 92%;
    margin: 1em auto;
	overflow:hidden;
    border: 3px solid #e60012;
}

.fadeUp {
  opacity: 0;
  transform: translateY(30px);
}
.fadeUp.active {
  opacity: 1;
  animation: bounceIn 0.8s ease-out forwards;
}
/* バウンド（跳ねる）アニメーション */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* ---- アイコン配置 ---- */
.icon-wrap {
  position: relative;
  width: min(90vw, 500px);  /* 画面幅に応じて自動調整 */
  aspect-ratio: 5/ 4.4;      /* 高さを比率で固定（縦横比） */
  margin: 0 auto;
}

.icon-wrap img {
  position: absolute;
  opacity: 0;
  max-width: 100%;
  height: auto;
  transform-origin: center;
}

/* 配置（画像のようなレイアウト） */
.icon1 { top: 30%; right: 34%; width: 24%;}/*緑*/       
.icon2 { top: 0; left: 5%; width: 40%;} /*青*/
.icon3 { bottom: 0px; left: 25%; width: 23%;} /*黄*/
.icon4 { top: 10%; right: 10%; width: 20%;} /*桃*/
.icon5 { bottom: 10%; right: 5%; width: 28%;}

/* ---- アニメーション順序設定 ---- */
/*緑*/
.fadeUp.active .icon1 { animation: bounceIn 0.5s ease-out forwards; animation-delay: 0.17s; }
/*青*/
.fadeUp.active .icon2 { animation: bounceIn 0.5s ease-out forwards; animation-delay: 0s; }
/*黄*/
.fadeUp.active .icon3 { animation: bounceIn 0.5s ease-out forwards; animation-delay: 0.12s; }
.fadeUp.active .icon4 { animation: bounceIn 0.5s ease-out forwards; animation-delay: 0.22s; }
.fadeUp.active .icon5 { animation: bounceIn 0.5s ease-out forwards; animation-delay: 0.27s; }

h3.toroku-shop {
    font-size:17px;
	font-weight: normal;
	line-height: 1.5;
	padding-bottom: 1em;
	margin-bottom: 1em;
    padding-left: 15px;
}

.heartbeat {
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%/*尺*/ { 
    opacity: 0;/*透明度*/
    transform: scale(1);/*大きさ*/
  }
  32%/*尺*/ { 
    opacity: 0;/*透明度*/
    transform: scale(1);/*大きさ*/
  }
  33% {
    opacity: 1;/*透明度*/
    transform: scale(1);
  }

  100% {
    opacity: 1;/*透明度*/
    transform: scale(1);
  }
}

/* ▼縦方向に流れるグラデ矢印 */
.gradarrow {
  width: 50%;
  height: 70px;
  margin: 0 auto;

  /* ▼三角形の形 */
  clip-path: polygon(50% 100%, 0 0, 100% 0);

  /* ▼白 → ピンク → 赤の縦グラデーション */
  background-image: linear-gradient(
    180deg,
    #ffffff 35%,
    #f7b6b6 50%,
    #FF5555 80%,
    #e30000 100%
  );

  /* ▼背景の “縦” を長くする（ここが正しい） */
  background-size: 100% 100px;

  /* ▼スタート位置（上） */
  background-position: 0 0;

  /* ▼上 → 下へ等距離で動かす */
  animation: arrowFlow 2.2s linear infinite;
}

@keyframes arrowFlow {
  0% {
    background-position: 0 0;
  }
  100% {
    /* ▼背景の “縦サイズ” と必ず一致させる */
    background-position: 0 100px;
  }
}