@charset "UTF-8";

/* CSS関数設定 */
:root {
	/* カラーパレット */
	--WHITE: #FFFFFF;
	--WHITE_OP50: rgba(255, 255, 255, 0.5);
	--BLACK: #000000;

	--GRAY01: #F5F5F5;
	--GRAY02: #DEDEDE;
	--GRAY03: #A7A7A7;


  --PINK01: #ffe7fc;
	--PINK02: #f085d6;
  --BLUE: #beedff;

	/* テキストカラー */
	--TXT_COLOR_BASE: var(--PINK02);
	--TXT_COLOR_WHITE: var(--WHITE);

	/* 共通ボックス影 */
	--COMMON_BXSD: 0px 0px 15px -5px var(--GRAY03);
	--COMMON_BXSD_BTM: 0px 5px 15px -5px var(--GRAY03);

	/* ベース文字間隔 */
	--LETTER_SPACING: 0.1em;

	/* フォント */
	--FF_BASE: "Zen Kaku Gothic New", serif;

	/* 英数字フォント */
	--FF_EN: var(--FF_BASE);
	--FF_NUM: var(--FF_BASE);

	/* フォントウェイト */
	--FF_WEIGHT_BASE: 500;
	
	/* アニメーション */
	--ANIME_FADEIN: fadeIn .5s ease-in-out 0s forwards;
	--ANIME_FADEOUT: fadeOut .5s ease-in-out 0s forwards;

	/* フォトサイズ */
	--FZ_9: clamp(8px, 0.8vw, 9px);
	--FZ_10: clamp(8px, 0.8vw, 10px);
	--FZ_11: clamp(10px, 1.1vw, 11px);
	--FZ_12: clamp(10px, 1.1vw, 12px);
	--FZ_13: clamp(11px, 1vw, 13px);
	--FZ_14: clamp(12px, 1.2vw, 14px);
	--FZ_15: clamp(13px, 1.4vw, 15px);
	--FZ_16: clamp(14px, 1.5vw, 16px);
	--FZ_18: clamp(15px, 1.6vw, 18px);
	--FZ_20: clamp(16px, 1.8vw, 20px);
	--FZ_23: clamp(18px, 2vw, 23px);
	--FZ_25: clamp(20px, 2vw, 25px);
	--FZ_28: clamp(22px, 2.5vw, 28px);
	--FZ_30: clamp(25px, 3vw, 30px);
	--FZ_35: clamp(25px, 3vw, 35px);
	--FZ_38: clamp(30px, 3.5vw, 38px);
	--FZ_40: clamp(30px, 3.5vw, 40px);
  --FZ_41: clamp(30px, 3.5vw, 41px);
	--FZ_43: clamp(30px, 4vw, 43px);
	--FZ_50: clamp(30px, 4vw, 50px);
  --FZ_52: clamp(32px, 4.3vw, 52px);
  --FZ_57: clamp(35px, 4.8vw, 57px);
	--FZ_60: clamp(40px, 5vw, 60px);
	--FZ_70: clamp(50px, 6vw, 70px);
	--FZ_10_CONST: 10px;
	--FZ_12_CONST: 12px;
	--FZ_14_CONST: 14px;
	--FZ_15_CONST: 15px;
	--FZ_16_CONST: 16px;
	--FZ_18_CONST: 18px;
	--FZ_20_CONST: 20px;

	/* ブロック間 */
	--GAP_10: clamp( 5px, 1.1vw, 10px);
	--GAP_15: clamp( 10px, 1.2vw, 15px);
	--GAP_20: clamp( 15px, 1.7vw, 20px);
	--GAP_25: clamp( 15px, 1.7vw, 25px);
	--GAP_35: clamp( 20px, 2.5vw, 35px);
	--GAP_30: clamp( 20px, 2.5vw, 30px);
	--GAP_40: clamp( 30px, 3.5vw, 40px);
	--GAP_50: clamp( 30px, 3.5vw, 50px);
	--GAP_60: clamp( 40px, 4.5vw, 60px);
	--GAP_65: clamp( 50px, 5.5vw, 65px);
	--GAP_75: clamp( 60px, 6.5vw, 75px);
	--GAP_80: clamp( 50px, 5.5vw, 80px);
	--GAP_90: clamp( 60px, 6.5vw, 90px);
	--GAP_100: clamp( 70px, 7.5vw, 100px);
  --GAP_150: clamp(80px, 15vw, 150px);
  --GAP_200: clamp(72px, 20vw, 200px);
  --GAP_250: clamp(100px, 24vw, 250px);
	--GAP_5_CONST: 5px;
	--GAP_10_CONST: 10px;
	--GAP_15_CONST: 15px;
	--GAP_20_CONST: 20px;
	--GAP_30_CONST: 30px;
	--GAP_40_CONST: 40px;

	/* PCマックス幅 */
	--PC_MAX_WIDTH: var(--PC_MAX_WIDTH_M);
	--PC_MAX_WIDTH_SS: 800px;
	--PC_MAX_WIDTH_S: 1000px;
	--PC_MAX_WIDTH_M: 1200px;
	--PC_MAX_WIDTH_L: 1440px;

	/* 親要素を超えて幅100% */
	--FULL_WIDTH: calc(50% - 50vw);

	/* セクション間隔半分 */
	--GENERALSEC_HALF: calc(var(--GENERALSEC) / 2);
}

@media screen and (min-width: 768px){
	:root{
		--INNER_WIDTH: 95%;
		--GENERALSEC: clamp(70px, 8vw, 100px);
	}
}
@media screen and (max-width: 767px){
	:root{
	--INNER_WIDTH: 87.201%;
	--GENERALSEC: 50px;
	}
}

/* リセットCSS */
*{margin:0;padding:0;min-height: 0;min-width: 0;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
html {height:100%;scroll-behavior: smooth;}
ul li ,ol li{list-style:none;}
h1,h2,h3,h4,h5,h6{font-weight: var(--FF_WEIGHT_BASE);font-size: 100%;margin: 0;}
p{margin: 0;}
strong{font-weight: inherit;}
a:focus, *:focus{ outline:none; }
article, header, footer, aside, figure, figcaption, nav, section,main{ 
  display:block;
}
body{
	font-family: var(--FF_BASE);
	font-weight: var(--FF_WEIGHT_BASE);
	font-feature-settings: "palt" 1;
	letter-spacing: var(--LETTER_SPACING);
	width:100%;
	color: var(--TXT_COLOR_BASE);
	position:relative;
	z-index: 0;
	overflow-x: clip;
}
a{
	text-decoration: none;
	outline: none;
	word-wrap: break-word;
	color: var(--TXT_COLOR_BASE);
}

a img,a{
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all  0.5s;
}
img{
	height: auto;
	max-width: 100%;
	box-sizing: unset;
	vertical-align: bottom;
}
/* imgリセット */
.imgauto{
	height: auto;
	width: 100%;
	box-sizing: unset;
	line-height: 1rem;
	display: block;
}

/* ↑↑↑リセット↑↑↑◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎◼︎ */
/* ======================共通====================== */
body{
  color: var(--TXT_COLOR_BASE);
}
h1,h2,h3,h4{
  font-family:"";
  font-size: var(--FZ_38);
}
section{
  margin-bottom: 0;
}
@media (hover: hover){
  a:hover{
    opacity: 0.8;
  }
}

main.fs-l-main{
  margin: 0;
  padding-inline: 0 !important;
  max-width: unset;
}
section.fs-l-pageMain{
  margin-bottom: 0;
  padding-inline: 0 !important;
}
.fs-l-page{
  overflow: unset;
}
.bqcSum-inner{
  width: 94%;
  max-width: 900px;
  margin-inline: auto;
}
.bqcSum-price{
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 90%;
  position: relative;
  z-index: 2;
}
.bqcSum-price li{
  display: flex;
  align-items: center;
}
.bqcSum-priceBtnArea{
  text-align: center;
  /* margin: 0 auto; */
}
.bqcSum-priceBtn{
  display: block;
  background-color: var(--PINK02);
  color: var(--WHITE) !important;
  border-radius: 30px;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.bqcSum-price--center{
  margin-inline: auto;
}
.bqcSum-headTitle{
  font-family: "Sacramento", cursive;
  font-size: var(--FZ_57);
  text-align: center;
  margin-bottom: var(--GAP_10);
}
.bqcSum-headText{
  text-align: center;
  margin-bottom: var(--GAP_50);
  letter-spacing: 0;
}
.bqcSum-img{
  position: relative;
}
.bqcSum-imgIntext{
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Sacramento", cursive;
  text-align: center;
}
@media screen and (min-width: 768px){
  .bqcSum-headText{
    font-size: var(--FZ_23);
  }
  .bqcSum-imgIntext{
    width: fit-content;
    font-size: var(--FZ_41);
  }
  .bqcSum-priceName{
    font-size: var(--FZ_18);
  }
  .bqcSum-priceBtnArea{
    width: 20%;
    max-width: 45px;
  }
  .bqcSum-priceBtn{
    font-size: 14px;
  }
  .bqcSum-price{
    gap: var(--GAP_20) var(--GAP_80);
    max-width: 600px;
  }
  .bqcSum-price--right{
    margin-inline: auto 5%;
    margin-top: var(--GAP_30);
  }
  .bqcSum-price--left{
    margin-inline: 5% auto;
    margin-top: var(--GAP_30);
  }
  .bqcSum-price--center{
    margin-top: var(--GAP_60);
  }
}
@media screen and (max-width: 767px){
  .bqcSum-headText{
    font-size: var(--FZ_16);
  }
  .bqcSum-imgIntext{
    width: fit-content;
    min-width: 350px;
    font-size: var(--FZ_30);
  }
  .bqcSum-priceName{
    font-size: clamp(11px, 2.8vw, 14px);
    letter-spacing: 0;
    width: 70%;
  }
  .bqcSum-priceBtnArea{
    width: 30px;
  }
  .bqcSum-priceBtn{
    font-size: 10px;
  }
  .bqcSum-price{
    gap: 5% var(--GAP_10);
    max-width: 400px;
  }
  .bqcSum-price li{
    gap: var(--GAP_10);
  }
  .bqcSum-price--right{
    margin-inline: auto 0;
    margin-top: var(--GAP_20);
  }
  .bqcSum-price--left{
    margin-inline: 0 auto;
    margin-top: var(--GAP_20);
  }
  .bqcSum-price--center{
    margin-top: var(--GAP_20);
  }
}

/* ======================TOP====================== */
.bqcSum-top{
  background-color: var(--PINK01);
}
.bqcSum-top__headTitle{
  margin-inline: auto;
  margin-bottom: var(--GAP_50);
}
.bqcSum-top__title{
  font-family: "Rubik", sans-serif;
  text-align: center;
  margin-block: var(--GAP_40) var(--GAP_20);
  letter-spacing: 0;
}
.bqcSum-top__text{
  text-align: center;
  line-height: 1.6;
  margin-bottom: var(--GAP_60);
}
.bqcSum-top__linkList{
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.bqcSum-top__linkList li{
  position: relative;
}
.bqcSum-top__linkTitle{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  z-index: 2;
  font-family: "Sacramento", cursive;
  font-weight: 400;
}
.bqcSum-top__linkList li:nth-child(1) .bqcSum-top__linkTitle,
.bqcSum-top__linkList li:nth-child(3) .bqcSum-top__linkTitle{
  color: var(--WHITE);
}
.bqcSum-top__linkList li:nth-child(2) .bqcSum-top__linkTitle{
  color: #d98aed;
}
.bqcSum-top__linkList li:nth-child(4) .bqcSum-top__linkTitle{
  color: #9ccbef;
}
@media screen and (min-width: 768px){
  .bqcSum-top{
    padding-block: var(--GAP_100);
  }
  .bqcSum-top__headTitle{
    max-width: 530px;
  }
  .bqcSum-top__title{
    font-size: var(--FZ_30);
  }
  .bqcSum-top__text{
    font-size: var(--FZ_23);
  }
  .bqcSum-top__linkList li{
    padding-inline: var(--GAP_20);
  }
  .bqcSum-top__linkList li + li{
    border-left: 2px solid #fff;
  }
  .bqcSum-top__linkTitle{
    top: 20%;
    font-size: var(--FZ_35);
  }
}
@media screen and (max-width: 767px){
  .bqcSum-top{
    padding-block: var(--GAP_60);
  }
  .bqcSum-top__headTitle{
    min-width: 300px;
    width: 70%;
  }
  .bqcSum-top__title{
    font-size: clamp(20px, 5vw, 28px);
  }
  .bqcSum-top__text{
    font-size: clamp(14px, 3vw, 18px);
  }
  .bqcSum-top__linkList{
    --OYA: calc(50% - 50vw);
    margin-left: var(--OYA);
    margin-right: var(--OYA);
  }
  .bqcSum-top__linkList li{
    padding-inline: 8%;
  }
  .bqcSum-top__linkList li + li{
    border-left: 1px solid #fff;
  }
  .bqcSum-top__linkTitle{
    top: 18%;
    font-size: clamp(15px, 4vw, 24px);
    font-weight: bold;
  }
}
/* ======================scene1====================== */
.bqcSum-sceneOne{
  background-color: var(--PINK01);
  padding-block: var(--GAP_30) var(--GAP_150);
}
.bqcSum-sceneOne_2colImg{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-block: var(--GAP_80);
  width: 90%;
  margin-inline: auto;
}
.bqcSum-sceneOne_2colImg li:nth-child(odd){
  display: flex;
  flex-direction: column;
}
.bqcSum-sceneOne_2colImg li:nth-child(even){
  display: flex;
  flex-direction: column-reverse;
}
.bqcSum-sceneOne_2colImg__img{
  flex: 1;
  border: 2.5px solid #ffd7eb;
}
.bqcSum-sceneOne_2colImg__text{
  font-family: "Homemade Apple", cursive;
  height: var(--GAP_100);
  width: fit-content;
  display: flex;
  align-items: center;
}
.bqcSum-sceneOne_2colImg__text--left{
  color: #e3afef;
  margin-inline: -20px auto;
}
.bqcSum-sceneOne_2colImg__text--right{
  color: #eda9cc;
  margin-inline: auto -20px;
}
.bqcSum-sceneOne_2colImg__img--left,
.bqcSum-sceneOne_2colImg__img--right{
  position: relative;
}
.bqcSum-sceneOne_2colImg__img--left::after{
  content: "";
  position: absolute;
  background: url(https://kimuratan.itembox.design/item/img/f/251/bqc/images/ribbon-w.png) no-repeat center / contain;
  bottom: -4%;
  left: -10%;
  width: 35%;
  aspect-ratio: 137 / 134;
  height: auto;
  transform-origin: center top;
  animation: yurayura 1.5s linear infinite;
}
.bqcSum-sceneOne_2colImg__img--right::after{
  content: "";
  position: absolute;
  background: url(https://kimuratan.itembox.design/item/img/f/251/bqc/images/ribbon-w.png) no-repeat center / contain;
  top: -5%;
  right: -10%;
  width: 35%;
  aspect-ratio: 137 / 134;
  height: auto;
  transform-origin: center top;
  animation: yurayura 1.5s linear infinite;
}
@media screen and (min-width: 768px){
  .bqcSum-sceneOne_2colImg{
    gap: var(--GAP_20);
  }
  .bqcSum-sceneOne_2colImg__text{
    font-size: clamp(9px, 1.7vw, 18px);
  }
}
@media screen and (max-width: 767px){
  .bqcSum-sceneOne_2colImg{
    gap: 2%
  }
  .bqcSum-sceneOne_2colImg__text{
    font-size: clamp(5px, 1.6vw, 18px);
  }
}


/* ======================scene2====================== */
.bqcSum-sceneTwo{
  background-color: #e8deff;
  padding-block: var(--GAP_100);
}
.bqcSum-sceneTwo__layout{
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-block: var(--GAP_150);
}
.bqcSum-sceneTwo__layoutCnt{
  display: flex;
}
.bqcSum-sceneTwo__layoutCnt--left{
  flex-direction: column;
}
.bqcSum-sceneTwo__layoutCnt--left{
  flex-direction: column;
}
.bqcSum-sceneTwo__layoutCnt--right{
  flex-direction: column-reverse;
}
.bqcSum-sceneTwo__layoutDeco{
  height: var(--GAP_250);
}

.bqcSum-sceneTwo__layoutDeco--img{
  display: flex;
  justify-content: center;
}
.bqcSum-sceneTwo__layoutDeco--img1{
  aspect-ratio: 77 / 149;
  width: 18%;
  height: auto;
  animation: fuwafuwa 2s linear infinite;
}
.bqcSum-sceneTwo__layoutDeco--img2{
  aspect-ratio: 54 / 124;
  width: 13%;
  height: auto;
  animation: fuwafuwa 2s 1s linear infinite;
}
.bqcSum-sceneTwo__layoutDeco--img3{
  aspect-ratio: 92 / 94;
  width: 23%;
  height: auto;
  animation: fuwafuwa 2s linear infinite;
}
.bqcSum-sceneTwo__layoutDeco--img4{
  aspect-ratio: 76 / 118;
  width: 18%;
  height: auto;
  animation: fuwafuwa 2s 1s linear infinite;
}
.bqcSum-sceneTwo__layoutDeco--img5{
  aspect-ratio: 58 / 127;
  width: 13%;
  height: auto;
  animation: fuwafuwa 2s linear infinite;
}
.bqcSum-sceneTwo__layoutDeco--img6{
  aspect-ratio: 75 / 133;
  width: 18%;
  height: auto;
  animation: fuwafuwa 2s 1s linear infinite;
}
/* .arc-text {
  display: flex;
  justify-content: center;
  position: relative;
  width: 200px;
  height: 100px;
} */
.bqcSum-sceneTwo__layout.flower{
  margin-top: var(--GAP_200);
  margin-bottom: var(--GAP_80);
}

@media screen and (min-width: 768px){
  .bqcSum-sceneTwo__layoutDeco--textLeft{
    transform: translate(30%,-30%);
  }
  .bqcSum-sceneTwo__layoutDeco--textRight{
    transform: translate(10%,-30%);
  }
  .bqcSum-sceneTwo__layout{
    gap: var(--GAP_20);
  }
  .bqcSum-sceneTwo__layoutDeco--img1{
    margin: 60px 0 50px 0;
  }
  .bqcSum-sceneTwo__layoutDeco--img2{
    margin: 30px -30px 0 50px;
  }
  .bqcSum-sceneTwo__layoutDeco--img3{
    margin: 40% 0 0 -50px;
  }
  .bqcSum-sceneTwo__layoutDeco--img4{
    margin: 80px 0 0 0;
  }
  .bqcSum-sceneTwo__layoutDeco--img5{
    margin: 50px 5% 0 5%;
  }
  .bqcSum-sceneTwo__layoutDeco--img6{
    margin: 80px 0 0 0;
  }
}

@media screen and (max-width: 767px){
  .bqcSum-sceneTwo__layoutDeco--textLeft{
    transform: translate(0%,-10%);
    width: 100%;
  }
  .bqcSum-sceneTwo__layoutDeco--textRight{
    transform: translate(0%,-10%);
    width: 100%;
  }
  .bqcSum-sceneTwo__layout{
    gap: 0;
  }
  .bqcSum-sceneTwo__layoutCnt--right{
    margin-left: -3%;
  }
  .bqcSum-sceneTwo__layoutCnt--left{
    margin-right: -3%;
  }
  .bqcSum-sceneTwo__layoutDeco--img1{
    margin: 20% 5% 20px 30px;
    min-width: 30px;
  }
  .bqcSum-sceneTwo__layoutDeco--img2{
    margin: 20px 0px 0 5%;
    min-width: 28px;
  }
  .bqcSum-sceneTwo__layoutDeco--img3{
    margin: 40% 20px 0 -10%;
    min-width: 40px;
  }
  .bqcSum-sceneTwo__layoutDeco--img4{
    margin: 30% 0 0 0;
    min-width: 40px;
  }
  .bqcSum-sceneTwo__layoutDeco--img5{
    margin: 20% 5% 0 6%;
    min-width: 30px;
  }
  .bqcSum-sceneTwo__layoutDeco--img6{
    margin: 30% 0 0 0;
    min-width: 40px;
  }
}
/* ======================scene3====================== */
.bqcSum-sceneThr{
  background-color: #ccf6f0;
  padding-block: var(--GAP_100);
  color: #68d5d8;
}
.bqcSum-sceneThr .bqcSum-priceBtn{
  background-color: #68d5d8;
}
.bqcSum-sceneThr__layout{
  margin-block: var(--GAP_100);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  z-index: 2;
}
.bqcSum-sceneThr__layoutImg--star{
  width: 100%;
  max-width: 416px;
}
.bqcSum-sceneThr__layoutImg--shell{
  width: 80%;
}
.bqcSum-sceneThr__layout .bqcSum-sceneThr__layoutImg:nth-child(2){
  margin-inline: auto 5%;
  margin-top: -80px;
}
.bqcSum-sceneThr__layout .bqcSum-sceneThr__layoutImg:nth-child(3){
  margin-inline: auto 5%;
}
.bqcSum-sceneThr__layout .bqcSum-sceneThr__layoutImg:nth-child(4){
  margin-top: -80px;
}
.bqcSum-sceneThr__imgIntext--white{
  color: var(--WHITE);
}
@media screen and (min-width: 768px){
  .bqcSum-sceneThr__imgIntext{
    min-width: 480px;
  }
  .bqcSum-sceneThr__layout{
    gap: var(--GAP_60) var(--GAP_80);
  }
  .bqcSum-sceneThr__layoutImg--shell{
    max-width: 340px;
  }
}
@media screen and (max-width: 767px){
  .bqcSum-sceneThr__imgIntext{
    min-width: 350px;
  }
  .bqcSum-sceneThr__layout{
    gap: var(--GAP_60) 0;
  }
  .bqcSum-sceneThr__layoutImg--shell{
    max-width: 250px;
  }
}
@media screen and (max-width: 500px){
  .bqcSum-sceneThr .bqcSum-img{
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
/* ======================scene4====================== */
.bqcSum-sceneFou{
  background-color: #fffbd6;
  color: #88c1e5;
}
.bqcSum-sceneFou__imgIntext{
  color: #5a8cdb;
}
.bqcSum-sceneFou .bqcSum-priceBtn{
  background-color: #88c1e5;
}
.bqcSum-sceneFou__postList{
  display: grid;
  grid-template-columns: repeat(10,1fr);
}
.bqcSum-sceneFou__postList div:nth-child(2){
  position: relative;
  z-index: 1;
}
.bqcSum-sceneFou__postList div:nth-child(2)::after{
  content: "";
  position: absolute;
  background: url(https://kimuratan.itembox.design/item/img/f/251/bqc/images/socute.svg) no-repeat center / contain;
  right: 15%;
  width: 40%;
  aspect-ratio: 153 / 68;
  height: auto;
}
.bqcSum-sceneFou__postList div:nth-child(3){
  width: 98%;
  position: relative;
  z-index: 1;
}
.bqcSum-sceneFou__postList div:nth-child(4){
  position: relative;
  z-index: 1;
}
.bqcSum-sceneFou__postList div:nth-child(4)::after{
  content: "";
  position: absolute;
  background: url(https://kimuratan.itembox.design/item/img/f/251/bqc/images/arrow-text.svg) no-repeat center / contain;
  left: 10%;
  width: 60%;
  aspect-ratio: 254 / 203;
  height: auto;
}
.bqcSum-sceneFou__postList div:nth-child(5){
  position: relative;
  z-index: 1;
}
.bqcSum-sceneFou__postList div:nth-child(5)::after{
  content: "";
  position: absolute;
  background: url(https://kimuratan.itembox.design/item/img/f/251/bqc/images/text-heart.svg) no-repeat center / contain;
  left: 10%;
  width: 70%;
  aspect-ratio: 254 / 30;
  height: auto;
}
@media screen and (min-width: 768px){
  .bqcSum-sceneFou{
    padding-block: var(--GAP_100);
  }
  .bqcSum-sceneFou__imgIntext{
    min-width: 480px;
  }
  .bqcSum-sceneFou__postList{
    margin-block: var(--GAP_100);
  }
  .bqcSum-sceneFou__postList div:nth-child(1){
    grid-column: 1/5; grid-row: 1/5;
  }
  .bqcSum-sceneFou__postList div:nth-child(2){
    grid-column: 7/11; grid-row: 1/5;
  }
  .bqcSum-sceneFou__postList div:nth-child(3){
    grid-column: 4/8; grid-row: 3/7;
    margin-left: -40px;
  }
  .bqcSum-sceneFou__postList div:nth-child(4){
    grid-column: 1/5; grid-row: 6/10;
  }
  .bqcSum-sceneFou__postList div:nth-child(5){
    grid-column: 7/11; grid-row: 6/10;
  }
  .bqcSum-sceneFou__postList div:nth-child(2)::after{
    bottom: 13%;
  }
  .bqcSum-sceneFou__postList div:nth-child(5)::after{
    bottom: 16%;
  }
  .bqcSum-sceneFou__postList div:nth-child(4)::after{
    bottom: -15%;
  }
}
@media screen and (max-width: 767px){
  .bqcSum-sceneFou{
    padding-block: var(--GAP_100) var(--GAP_50);
  }
  .bqcSum-sceneFou__imgIntext{
    min-width: 350px;
  }
  .bqcSum-sceneFou__postList{
    margin-block: var(--GAP_80) var(--GAP_20);
  }
  .bqcSum-sceneFou__postList div:nth-child(1){
    grid-column: 1/6; grid-row: 1/5;
  }
  .bqcSum-sceneFou__postList div:nth-child(2){
    grid-column: 6/11; grid-row: 2/6;
    margin-top: -10%;
  }
  .bqcSum-sceneFou__postList div:nth-child(3){
    grid-column: 3/8; grid-row: 4/8;
    margin-left: 0;
  }
  .bqcSum-sceneFou__postList div:nth-child(4){
    grid-column: 1/6; grid-row: 7/11;
  }
  .bqcSum-sceneFou__postList div:nth-child(5){
    grid-column: 6/11; grid-row: 8/12;
    margin-top: -10%;
  }
  .bqcSum-sceneFou__postList div:nth-child(2)::after{
    bottom: 20%;
  }
  .bqcSum-sceneFou__postList div:nth-child(5)::after{
    bottom: 18%;
  }
  .bqcSum-sceneFou__postList div:nth-child(4)::after{
    bottom: -18%;
  }
}
@media screen and (max-width: 500px){
  .bqcSum-sceneFou .bqcSum-img{
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
/* ======================フッター====================== */
.bqcSum-footer{
  background-color: #fffbd6;
  color: #9ccbef;
  padding-bottom: var(--GAP_150);
}
.bqcSum-footer__btnArea{
  text-align: center;
  margin: 0 auto;
}
.bqcSum-footer__btn{
  display: block;
  background-color: #9ccbef;
  color: #fffbd6 !important;
  border-radius: 50px;
  line-height: 1;
}
.bqcSum-footer__btn span{
  display: block;
  padding-top: 5px;
}
.bqcSum-contact__snsList{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-inline: auto;
}
.bqcSum-footer__text{
  text-align: center;
  margin-inline: auto;
  margin-block: var(--GAP_60);
  position: relative;
  z-index: 1;
}
.bqcSum-footer__text::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  background-color: #9ccbef;
  z-index: -2;
}
.bqcSum-footer__text::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: #fffbd6;;
  width: 50%;
  height: 100%;
  z-index: -1;
}
@media screen and (min-width: 768px){
  .bqcSum-footer__btnArea{
    max-width: 420px;
  }
  .bqcSum-footer__btn{
    padding: 10px 0 18px;
    font-size: var(--FZ_52);
  }
  .bqcSum-footer__btn span{
    font-size: var(--FZ_15);
  }
  .bqcSum-footer__text{
    max-width: 420px;
    font-size: var(--FZ_35);
  }
  .bqcSum-footer__text::after{
    height: 3px;
  }
  .bqcSum-contact__snsList{
    max-width: 420px;
    gap: 12%;
  }
}
@media screen and (max-width: 767px){
  .bqcSum-footer__btnArea{
    max-width: 250px;
  }
  .bqcSum-footer__btn{
    padding: 8px 0 13px;
    font-size: var(--FZ_40);
  }
  .bqcSum-footer__btn span{
    font-size: 10px;
    letter-spacing: 0;
  }
  .bqcSum-footer__text{
    max-width: 250px;
    font-size: var(--FZ_28);
  }
  .bqcSum-footer__text::after{
    height: 2px;
  }
  .bqcSum-contact__snsList{
    max-width: 250px;
    gap: 10%;
  }
}
/* ======================アニメーション====================== */
/* ゆらゆら揺れるアニメーション */
@keyframes yurayura{
  0%, 100%{
    transform: rotate(5deg);
  }
  50%{
    transform: rotate(-5deg);
  }
}
/* ひっくり返るアニメーション */
.flip-container--heart{
  width: 100%;
  max-width: 430px;
  aspect-ratio: 430 / 392;
  position: relative;
  perspective: 1000px;
}
.flip-container--flower{
  width: 100%;
  max-width: 406px;
  aspect-ratio: 406 / 405;
  position: relative;
  perspective: 1000px;
}
.flipper {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transition: transform 2.5s ease-in-out; /* 自然な回転 */
}
@keyframes flipAnimation {
  0%, 80% { transform: rotateY(0deg); }
  90% { transform: rotateY(360deg); }
  100% { transform: rotateY(540deg); }
}
.front, .back {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  object-fit: cover;
}
.front {
  transform: rotateY(0deg); /* 表面：正面 */
}
.back {
  transform: rotateY(180deg); /* 裏面：180度回転して裏面を定義 */
}


/* .front, .back {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  object-fit: cover;
}
.back {
  transform: rotateY(180deg);
} */
/* @keyframes flipAnimation {
  0%, 40% { transform: rotateY(0deg); }
  45% { transform: rotateY(360deg); }
  50% { transform: rotateY(540deg); }
  
  90% { transform: rotateY(540deg); }
  95% { transform: rotateY(900deg); }
  100% { transform: rotateY(1080deg); }
} */




/* ふわふわさせるアニメーション */
@keyframes fuwafuwa{0%{-webkit-transform:translateY(0);transform:translateY(0)}50%{-webkit-transform:translateY(-10%);transform:translateY(-10%)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes flip1-back{0%{-webkit-transform:rotateY(-180deg);transform:rotateY(-180deg)}20%{-webkit-transform:rotateY(180deg);transform:rotateY(180deg)}100%{-webkit-transform:rotateY(180deg);transform:rotateY(180deg)}}

/* 貝殻アニメーション */
.marine-scene {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.marine-shell {
  position: absolute;
  height: auto;
  opacity: 1;
  pointer-events: none;
}
@media screen and (min-width: 768px){
  .marine-shell {
    max-width: 50px;
  }
}
@media screen and (max-width: 767px){
  .marine-shell {
    max-width: 30px;
  }
}
/* 貼られていくアニメーション */
.bqcSum-sceneFou__postList div:nth-child(2)::after,
.bqcSum-sceneFou__postList div:nth-child(4)::after,
.bqcSum-sceneFou__postList div:nth-child(5)::after {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.bqcSum-sceneFou__postList div:nth-child(2).show-after::after,
.bqcSum-sceneFou__postList div:nth-child(4).show-after::after,
.bqcSum-sceneFou__postList div:nth-child(5).show-after::after {
  opacity: 1;
}

