main.fs-l-main {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none;
}
.coeura-contents {
  display: block;
  margin: 0;
  padding: 0;
}
section.fs-l-pageMain {
  margin: 0;
}
.imgauto{
  width: 100%;
  height: auto;
}
html,body{
  color: #ff6699;
  margin: 0;
}
.coeura-container section{
  margin: 0;
}
.fs-l-main.fs-l-main__wid100{
  max-width: 100vw;
  width: 100%;
  margin: 0;
}
.fs-l-page{
  overflow: auto;
}
a, a:visited {
  text-decoration: none;
  color: inherit;
}
p{
margin-bottom: 0;
}
ul li{
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px){
  a:hover {
	  text-decoration: none;
	  opacity: 0.7;
	}
  .sp{
    display: none;
  }
  .pc{
    display: block;
  }
}
@media screen and (max-width: 1200px){
  .fs-l-main.fs-l-main__wid100{
    padding: 0!important;
  }
  .sp{
    display: block;
  }
  .pc{
    display: none;
  }
}
/* フォント */
.liana{
  font-family: liana, script;
}
.textshadow {
  text-shadow: 0px 0px 2px rgba(0,0,0,.4);
}
.textshadow2{
  text-shadow: 0px 0px 2px rgba(255,255,255,.4);
}
.textshadow3{
  text-shadow: 0px 0px 5px rgba(255,255,255,.8);
}
.coeura-inner{
  width: 90%;
  margin: 0 auto;
}
.pdg30{
  padding: 30px 0;
}


/* ■■■■■■■■■■■■■■■ アニメーション ■■■■■■■■■■■■■■■*/

/***** プルプル *****/
.huwahuwa {
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}

@keyframes floating-y {
0% {
  transform: translateY(-5%);
}
100% {
  transform: translateY(5%);
}
}

/***** ゆらゆら *****/
#yurayura, #yurayura4 {
  transform-origin: center top;
  animation: yurayura 1.5s linear infinite;
}
#yurayura2{
  transform-origin: center top;
  animation: yurayura2 2s linear infinite;
}
#yurayura3{
  transform-origin: center top;
  animation: yurayura3 2s linear infinite;
}
@keyframes yurayura {
0%, 100% {
transform: rotate(5deg);
}
50% {
transform: rotate(-5deg);
}
}
@keyframes yurayura2 {
0%, 100% {
transform: rotate(-8deg);
}
50% {
transform: rotate(8deg);
}
}
@keyframes yurayura3 {
0%, 100% {
transform: rotate(20deg);
}
50% {
transform: rotate(7deg);
}
}

/***** タイピング *****/
.item03 {
  position: relative;
}
/* span.type-img {
  width: 30px;
  font-weight: bold;
} */
.typing-text {
  overflow: hidden;
  opacity: 0;
}
.typing-text.active {
  opacity: 1;
  transition: opacity 1s linear;
}
.typing-text .type-char {
  opacity: 0;
  transition: opacity 1s;
}
.type-text-test span {
  opacity: 0;
  transition: opacity 0.5s;
}
.vertical-wrapper{
  writing-mode: vertical-rl; /* 縦書き */
  text-orientation: upright; /* 文字の向きを正しく */
  font-size: 16px;
  font-weight: 500;
  width: 20%;
}
.vertical-ja01{
  position: absolute;
  top: 0;
  right: 50px;
}
.vertical-ja02{
  position: absolute;
  top: 120px;
  right: 80px;
}
.type-img {
  display: inline-block;
  opacity: 0; /* 初期状態で非表示 */
  transition: opacity 0.1s;
}
@media screen and (max-width: 1100px){
  .vertical-ja01{
    right: 30px;
  }
  .vertical-ja02{
    right: 50px;
  }
}

/***** フェードイン *****/
.fadein-bx {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: 1s ease-in-out;
}
.fadein-bx.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/***** 左からフェードイン *****/
.fadein-left {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-30px);
  transition: 1s ease-in-out;
}
/***** 右からフェードイン *****/
.fadein-right {
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: 1s ease-in-out;
}
.fadein-left.active,
.fadein-right.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/***** スクロールアニメーション *****/
.vertical-text-container {
  position: relative;
  width: 200px; /* 必要に応じて幅を調整 */
  height: 400px; /* 縦の表示領域 */
  overflow: hidden; /* コンテナ外の文字を非表示 */
  writing-mode: vertical-rl; /* 縦書き指定 */
  text-orientation: upright; /* 縦書きで文字を直立 */
  border: 1px solid #ccc; /* 見やすいように枠線を追加 */
  font-size: 20px;
  line-height: 2; /* 行間を調整 */
}
.vertical-text {
  position: absolute;
  top: 100%; /* 最初はコンテナの外 */
  animation: vertical-scroll 10s linear infinite; /* アニメーション設定 */
}
@keyframes vertical-scroll {
  0% {
    top: 100%; /* 初期位置: 下の外側 */
  }
  100% {
    top: -100%; /* 最終位置: 上の外側 */
  }
}


/***** シャボン玉 *****/
.bubble-anime01{
  transform-origin: center top;
  animation: bubble 12s linear infinite;
}
@keyframes bubble {
0%, 100% {
transform: translate(-40px, -60px) rotate(5deg);
}
50% {
transform: translate(0, 60px) rotate(-25deg);
}
}

.bubble-anime2{
  transform-origin: center top;
  animation: bubble-anime02 8s linear infinite;
}
@keyframes bubble-anime02 {
0%, 100% {
transform: translateY(-40px) rotate(5deg);
}
50% {
transform: translateY(40px) rotate(-15deg);
}
}

/* ■■■■■■■■■■■■■■■ PCトップイメージ ■■■■■■■■■■■■■■■*/
@media screen and (min-width: 767px){
	body#fs_CustomPage::before {
	  content: "";
	  display: block;
	  width: 100vw;
	  height: 100vh;
	  background: url(https://kimuratan.itembox.design/item/img/f/250/cc/top-mv.jpg);
	  background-size: cover;
	  background-repeat: no-repeat;
	  background-position: center;
	  position: relative;
	  z-index: -1;
	  position: fixed;
	  top: 0;
	  left: 0;
	}
  .pctop{
    width: calc( 100% - (15% + 520px));
    position: fixed;
    top: 20%;
    color: #ff6699;
    text-align: center;
  }
  .pctop-inner{
    width: 100%;
    max-width: 600px;
    margin: 0 0 0 auto;
  }
  .pctop__txt01{
    font-size: clamp( 38px, 3vw, 46px);
    line-height: 3;
    font-weight: bold;
  }
  .pctop__txt02{
    font-weight: 500;
    font-size: 18px;
  }
  .pctop__btnarea{
    padding: 50px 0;
  }
  .pctop__btn{
    width: 70%;
    margin: 0 auto;
  }
  .pctop__btn a{
    background-color: #ff6699;
    display: block;
    text-align: center;
    padding: 10px 0;
    border-radius: 20px;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
  }
  .pctop__btnarea li:not(:last-child){
    margin-bottom: 20px;
  }
  .pctop__txt03{
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 90%;
    max-width: 400px;
  }
  .coeura-contents{
    max-width: 520px;
    margin: 0 15% 0 auto;
  }
}
@media screen and (max-width: 1100px){
  .pctop{
    width: calc( 100% - 375px);
  }
  .coeura-contents{
    max-width: 375px;
    margin: 0 0 0 auto;
  }
}

@media screen and (max-width: 767px){
  .pctop{
    display: none;
  }
  .coeura-contents {
    position: static; /* モバイルでは固定を解除 */
    overflow-y: auto; /* スマートフォンではスクロールを有効にする */
    -webkit-overflow-scrolling: touch; /* スムーズスクロールを有効にする */
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
  }
  .fv-movie{
    height: 100%;
  }
}
section.fv-movie {
  line-height: 0;
}

/* ■■■■■■■■■■■■■■■  ■■■■■■■■■■■■■■■*/
.item__flex{
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.item__flex--algcenter{
  align-items: center;
}
.item__flex--algflexend{
  align-items: flex-end;
}
.item__flex--algflexstart{
  align-items: flex-start;
}
.item__fleximg{
  width: 50%;
}
.priceArea{
  margin: 0 auto;
}
.priceArea .product__price:nth-child(2),
.priceArea .product__price:nth-child(3),
.priceArea .product__price:nth-child(4){
  padding-top: 5px;
}
.product__price a {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}
.cartleft{
  width: 50px;
}
.flexitem__wiz50{
  width: 50%;
}
.generalpd{
  padding: 70px 0;
}
@media screen and (min-width: 768px){
  .cartright{
    font-size: 16px;
  }
  .priceArea{
    padding:  80px 0;
    width: 60%;
  }
}
@media screen and (max-width: 1100px){
  .priceArea{
    padding:  60px 0;
    width: 73%;
  }
  .cartright{
    font-size: 14px;
  }
}


/* ■■■■■■■■■■■■■■■ 青色セクション ■■■■■■■■■■■■■■■*/
.catcharea__ttl{
  font-size: 30px;
  margin-bottom: 50px;
  text-align: center;
  font-weight: bold;
}
.catcharea__txt{
  font-size: 15px;
  margin-bottom: 30px;
  line-height: 1.75;
  text-align: center;
  font-weight: 500;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 1100px){
  .catcharea__ttl{
    font-size: 20px;
    margin-bottom: 20px;
  }
  .catcharea__txt{
    font-size: 12px;
    margin-bottom: 20px;
  }
}
.bg-blue{
  position: relative;
  background-color: #d0e7f0;
  padding-bottom: 0;
}
.item01-parts1{
  position: absolute;
  top: 40px;
  right: 20px;
  width: 100px;
}
@media screen and (max-width: 1100px){
  .item01-parts1{
    top: 40px;
    right: 5px;
    width: 60px;
  }
}
.img-toptext{
  position: relative;
}
.img-toptxt__txtarea{
  position: absolute;
  top: 16%;
  right: 25px;
}
.img-toptxt__en{
  color: #faf87f;
  font-weight: bold;
  line-height: 1.2;
  font-size: 30px;
}
.img-toptxt__ja{
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-align: right;
}
.item01-1area{
  margin: 60px 0 0;
}
.item01-2area{
  margin-top: -70px;
}
.item01-img2{
  width: 75%;
  margin-top: 100px;
}
.item01__rightparts{
  width: 40%;
  margin-top: 60px;
}
.item01-parts2{
  width: 100px;
  margin: 0 0 0 auto;
}
.item01-parts3{
  width: 100px;
  margin: 0 auto 0 30px;
}
@media screen and (max-width: 1100px){
  .img-toptxt__en{
    font-size: 23px;
  }
  .img-toptxt__ja{
    font-size: 10px;
  }
  .item01-1area{
    margin: 30px 0 0;
  }
}

/* item02 */
.item02-area{
  position: relative;
  background: url(https://kimuratan.itembox.design/item/img/f/250/cc/item02-bg.jpg)center / cover no-repeat;
  width: 100%;
  height: 100%;
  padding: 100px 0;
}
.item02-img1{
  width: 90%;
  margin: 0 auto 30px;
}
.item02-img2{
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 767px){
  .item02-area{
    padding: 30px 0;
  }
}
/* item03 */
.item03-img1{
  width: 40%;
  margin-bottom: -80px;
}
.item03-img2{
  width: 60%;
}
.item03-img3{
  padding-top: 100px;
}

/* ■■■■■■■■■■■■■■■ ピンクセクション ■■■■■■■■■■■■■■■*/
.bg-pink{
background-color: #ffd5e0;
position: relative;
}
.item04-2area{
  width: 40%;
}
.vertical-ja03{
  position: absolute;
  top: 70px;
  right: 60px;
}
.vertical-ja04{
  position: absolute;
  top: 120px;
  right: 90px;
}
.img-btmtxt__txtarea{
  position: absolute;
  bottom: 7%;
  left: 30px;
}
.item04-parts01{
  position: absolute;
  width: 80px;
  right: 10px;
  top: 40%;
}
.item04-3area{
  position: relative;
}
.item04-parts02{
  position: absolute;
  width: 70px;
  left: 10px;
  bottom: -30%;
}
.item04-img3{
  width: 60%;
  margin: 0 20px 0 auto;
}
.item05-img2{
  width: 60%;
  margin: 0 0 0 auto;
}
.vertical-ja05{
  position: absolute;
  top: 35%;
  left: 100px;
}
.vertical-ja06{
  position: absolute;
  top: 40%;
  left: 80px;
}
@media screen and (min-width: 768px){
  .img-btmtxt__txtarea .img-toptxt__en{
    font-size: 20px;
    letter-spacing: -0.06em;
  }
}
@media screen and (max-width: 767px){
  .img-btmtxt__txtarea .img-toptxt__en{
    font-size: 15px;
    letter-spacing: -0.02em;
  }
  .img-btmtxt__txtarea .img-toptxt__ja{
    font-size: 8px;
  }
}
/* シャボン玉 */
.bubble01{
  width: 100px;
  margin: 0 20px 0 auto;
}
.bubble02{
  width: 80px;
  margin: 0 0 0 auto;
}
.bubble03{
  position: absolute;
  bottom: 0;
  left: 40px;
  width: 100px;
  margin: 0 0 0 auto;
}
.bubble04{
  width: 190px;
  margin: 0 0 0 auto;
  position: absolute;
  top: 30px;
  left: 30px;
}
@media screen and (max-width: 1100px){
  .item04-img2{
    width: 60%;
  }
  .item04__flexitem1{
    top: 10%;
  }
  .bubble04{
    width: 150px;
  }
  
}

/* ■■■■■■■■■■■■■■■ グリーンセクション ■■■■■■■■■■■■■■■*/
.bg-green{
  background-color: #e9ffe3;
  position: relative;
  padding: 100px 0 200px;
}
.item06-img01{
  max-width: 400px;
  width: 65%;
  margin: 0 auto 0 20px;
}
.item06-img2{
  width: 40%;
  position: relative;
  margin: 0 10px 0 auto;
  z-index: 2;
  transform: translateY(-30px) rotate(-5deg);
}
.item06-img2 video{
  aspect-ratio: 1/1.4;
  object-fit: cover;
}
.item06-3area{
  max-width: 400px;
  width: 80%;
  margin: -80px auto 0 0 ;
  position: relative;
}
.img-btmrighttxt__txtarea{
  position: absolute;
  bottom: 5%;
  right: 15px;
  text-align: right;
  z-index: 4;
}
.item06-parts01{
  position: absolute;
  right: -60px;
  bottom: -20px;
  width: 100px;
  z-index: 1;
}
.img-btmrighttxt__txtarea .img-toptxt__en{
font-size: 25px;
}
.item07-1area,.item07-2area{
  position: relative;
}
.item07-1area{
  margin-bottom: 100px;
}
.vertical-ja07,.vertical-ja08{
  color: #fff;
}
.vertical-ja07{
  position: absolute;
  top: 60px;
  right: 25%;
}
.vertical-ja08{
  position: absolute;
  top: 120px;
  right: 30%;
}
.item07-parts02{
  position: absolute;
  width: 110px;
  bottom: -40px;
  left: 20px;
}
/* 画像上のリンク位置調整 */
.item07-link{
  display: block;
  position: absolute;
  height: 260px;
  width: 200px;
  transform: rotate(-5deg);
}
.item07-link01{
  left: 30px;
  top: 70px;
}
.item07-link02{
  right: 65px;
  top: 50px;
}
.item07-link03{
  left: 70px;
  bottom: 90px;
}
.item07-link04{
  position: absolute;
  right: 40px;
  bottom: 110px;
}
.bg-green::after{
  content: "";
  background: url(https://kimuratan.itembox.design/item/img/f/250/cc/item08-bg.png)top / cover no-repeat;
  width: 100%;
  height: 230px;
  position: absolute;
  bottom: 0;
  display: inline-block;
}
@media screen and (max-width: 1100px){
  .bg-green{
    padding: 60px 0 100px;
  }
  .bg-green::after{
    height: 160px;
  }
  .item07-link{
    height: 190px;
    width: 140px;
  }
  .item07-link01{
    top: 50px;
  }
  .item07-link02{
    right: 50px;
    top: 35px;
  }
  .item07-link03{
    left: 45px;
    bottom: 70px;
  }
  .item07-link04{
    right: 30px;
    bottom: 80px;
  }
}
@media screen and (max-width: 750px){
  .item07-link{
    height: 400px;
    width: 272px;
  }
  .img-btmrighttxt__txtarea{
    right: 5px;
  }
  .img-btmrighttxt__txtarea .img-toptxt__en{
    font-size: 17px;
  }
  .img-btmrighttxt__txtarea .img-toptxt__ja{
    font-size: 9px;
  }
}
/* ■■■■■■■■■■■■■■■ イエローセクション ■■■■■■■■■■■■■■■*/
.bg-yellow{
  position: relative;
  background-color: #f8f8ce;
  padding-bottom: 100px;
}
.item08-txt{
  font-size: 12px;
  font-weight: 500;
  text-align: right;
  margin-bottom: 60px;
}
.item08-list{
  font-size: 12px;
  line-height: 1.7;
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 40px;
}
.item08-btn {
  width: 50%;
  margin: 0 auto;
}
.item08-btn a{
  display: block;
  border-radius: 100px;
  color:#ff6699;
  text-align: center;
  font-size: 22px;
  line-height: 1.1;
  background-color: #ffd5e0;
  padding-bottom: 10px;
  margin-bottom: 5px;
}
.item08-btntxt{
  text-align: center;
  font-size: 12px;
  margin-bottom: 40px;
}
.sns-link{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10%;
  width: 40%;
  margin: 0 auto;
}
@media screen and (max-width: 767px){
  .bg-yellow .catcharea__txt{
    font-size: 11px;
    margin-bottom: 10px;
  }
  .item08-txt{
    font-size: 10px;
    margin-bottom: 30px;
  }
}

.arch-wrap {
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-columns: 1fr;
  padding: 3rem;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .arch-wrap{
    grid-template-columns: repeat(3, auto);
  }
  .arch-wrap > *{
    padding: 5rem 0;
  }
}

