@charset "utf-8";
html {
  scroll-behavior: smooth;

}
* {
  margin:0;
  padding:0;
}

:root {
  --color-pink-01:#df99a8;
  --color-pink-02:#F396A0;
  --color-gray-01:#FAF8F8;
  --color-gray-02:#F5F5F5;
  --color-red-01:#DE0816;
  --color-black-01:#000;
  --border-radius-01:0 48px 0 0;
  --border-radius-02:0 48px 0 48px;
  /* --color-blue-01:#00A7E8;
  --color-blue-02:#eefaff; */
  --f-maru:"Zen Maru Gothic";
  --f-jose:"Josefin Sans", sans-serif;
  --section-padding-TB:64px 0;

}

body {
  font-family:"Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, Verdana, Arial, "MS P Gothic", "MS Pゴシック", sans-serif;
  /* font-family:"ヒラギノ角ゴ ProN W6", "Hiragino Kaku Gothic ProN W6", HiraKakuProN-W6, "ヒラギノ角ゴ W3 JIS2004", "Hiragino Kaku Gothic W3 JIS2004"; */
  line-height:1.9;
  font-size:1.4rem;
  font-weight:400;
  position: relative;
  background:#fff;
  color:#686868;
}

.bg-block {
  width:100%;
  height:100vh;
  background:#000;
  background:no-repeat url(/wp-content/themes/larme-mignon/imgs/bg-pc-block.webp) 0 0 / cover;
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
}


.wrapper {
  width: 100%;
  position: relative;
}


div,section {
  position:relative;
}

a {
  color:#000;
  text-decoration:underline;
  /* cursor: none !important; */
}

a:link {
  color:#000;
  text-decoration:underline;
}

a:visited {
  color:#000;
  text-decoration:underline;
}

a:hover {
  color:#000;
  text-decoration:none;
}

a:active {
  text-decoration:underline;
}

img {
  max-width: 100%;
  height: auto !important;
  vertical-align:bottom;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}


/*
a.hover-img img {
  transition:.5s;
  opacity:1;
}

a.hover-img img:hover {
  opacity:0.6;
}


*/

        /* --- ローディング画面全体の親 --- */
        #loading-screen {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100svh;
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;

        }

        /* 背景：10枚のパネルコンテナ */
        .shutter-container {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100svh;
            display: flex;
        }

        .bg-shutter {
            flex: 1;
            height: 100%;
            background-color: #fff; /* 指定の背景色 */
            /* 0.4秒かけてフェードアウト */
            transition: opacity 0.4s ease-in-out;
            opacity: 1;
        }

        /* ロード完了時：パネルを順に透明にする */
        #loading-screen.loaded .bg-shutter {
            opacity: 0;
        }

        /* 2.5秒で完結させるための時間差設定 (0.03秒刻み) */
        .shutter:nth-child(1)  { transition-delay: 0.00s; }
        .shutter:nth-child(2)  { transition-delay: 0.03s; }
        .shutter:nth-child(3)  { transition-delay: 0.06s; }
        .shutter:nth-child(4)  { transition-delay: 0.09s; }
        .shutter:nth-child(5)  { transition-delay: 0.12s; }
        .shutter:nth-child(6)  { transition-delay: 0.15s; }
        .shutter:nth-child(7)  { transition-delay: 0.18s; }
        .shutter:nth-child(8)  { transition-delay: 0.21s; }
        .shutter:nth-child(9)  { transition-delay: 0.24s; }
        .shutter:nth-child(10) { transition-delay: 0.27s; }

        /* ロゴ部分のコンテナ */
        .logo-wrapper {
            position: relative;
            z-index: 10;
            text-align: center;
            transition: opacity 0.4s ease;
        }
        
        #loading-screen.loaded .logo-wrapper {
            opacity: 0;
        }

        .loading-logo {
            width: 200px;
            max-width: 80vw;
            height: auto;
            display: block;
            /* 登場を少し早めて2.5秒の枠に合わせる */
            animation: elegantIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        }

        .underline {
            width: 0;
            height: 1px;
            background-color: #D4A3A3;
            margin: 15px auto 0;
            /* 線が伸びる演出も早めに開始 */
            animation: expandLine 0.6s ease-out 0.8s forwards;
        }

        @keyframes elegantIn {
            0% { opacity: 0; transform: translateY(10px); filter: blur(5px); }
            100% { opacity: 1; transform: translateY(0); filter: blur(0); }
        }

        @keyframes expandLine {
            to { width: 100%; }
        }

        /* --- メインコンテンツ --- */
        #main-content {
            width: 100%;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }
.entryMessage-logo {
  max-width:300px;
  margin-bottom:16px;
}

.loading-39 {
    width:200px;
  margin-bottom:8px;
  animation:flashanime .8s infinite;
}

.loading-txt {
  text-align:center;
  font-size:1.3rem;
  padding-top:6px;
  letter-spacing:1px;
  font-family:var(--f-jose);
  font-weight:600;
  /* animation:flashanime .8s infinite; */

}


@keyframes flashanime {
  0% {
    opacity:.3;
  }
  50% {
    opacity:1;
  }
  100% {
    opacity:.3;
  }
}


@keyframes rotation1{
  0%{ height:100vh;}
  100%{height:0vh;background: #000; }
}

.anim01 {
  animation:0.4s ease-in rotation1 forwards;
}



.hover-opa {
  transform:scale(1);
  opacity:1;
  transition:.4s;
}

.hover-opa:hover {
  transform:scale(0.9);
  opacity:.8;
}




@media only screen and (max-width: 896px) {
.hover-opa:hover {
  transform:scale(1);
  opacity:1;
}
}




main {
  /* width:480px; */
  width:470px;
  position:relative;
  background:#fff;
  margin:auto;
  overflow:hidden !important;
  box-shadow: 0px 3px 8px -5px #b0b0b0;
}




@media only screen and (max-width: 896px) {
main {
  width:100%;
}
}

.scroll__block {
  width:100%;
  height:50px;
  position:relative;
  margin-bottom:26px;
}


.scroll {
  position: absolute;
  right: 50%;
  top:0;
  writing-mode: vertical-rl;
}

.scroll::before {
  animation: scroll 2s infinite;
  background-color: #EEB7C3;
  bottom:0;
  content: "";
  top:0;
  height: 50px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.po-re {
  position:relative;
}

.innerBlock {
  padding:0 5%;
}

.sectionPadding-TB {
  padding:var(--section-padding-TB);
}

.section__title {
  text-align:center;
  margin-bottom:32px;
}








@keyframes shiny {
    0% {
        transform: scale(0) rotate(25deg);
        opacity: 0;
    }
    2% {
        transform: scale(1) rotate(25deg);
        opacity: 1;
    }
    20% {
        transform: scale(50) rotate(25deg);
        opacity: 0;
    }
    100% {
        transform: scale(50) rotate(25deg);
        opacity: 0;
    }
}

.shiny-btn {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
}

.shiny-btn::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 50px;
    height: 150px;
    background-image: linear-gradient(
        100deg,
        rgba(255, 255, 255, 0) 10%,
        rgba(255, 255, 255, 1) 100%,
        rgba(255, 255, 255, 0) 0%
    );
    animation: shiny 5s ease-in-out infinite;
}

.shiny-btn .hover-opa img {
  transform:scale(1);
  opacity:1;
  transition:.4s;
}

.shiny-btn .hover-opa:hover img {
  transform:scale(0.9);
  opacity:.6;
}

@media only screen and (max-width: 896px) {
.shiny-btn .hover-opa:hover img {
  transform:scale(1);
  opacity:1;
}
}

.scrollWrap {
  position:relative;
  width:100%;
  height:80px;
  z-index:2;

 
}

.scrolldown1{
  position:absolute;
  left:50%;
  bottom:0px;
  height:80px;
  z-index:10;
}

.scrolldown1::after{
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 40px;
  background: #fff;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity:0;
}

@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:50px;
    opacity: 1;
  }
  100%{
    height:0;
    top:80px;
    opacity: 0;
  }
}


@keyframes yure {
    0%{
        transform:rotate(0deg);
    }
    50%{
        transform:rotate(28deg);
    }
    100%{
        transform:rotate(0deg);
    }
}

.parts-yure-01 {
    animation:yure 5s infinite;
}


@keyframes zoom01 {
    0% {
        transform:scale(1.0);
    }
    50% {
        transform:scale(1.2);
    }
    100% {
        transform:scale(1.0);
    }
}

.fv {
  background:url(/wp-content/themes/larme-mignon/imgs/bg-heart.webp) 0 0 / 18%;
}

.img-fv-sub-catch {
  position:absolute;
  top:1.4%;
  right:0;
  width:74%;
}

.img-fv-flower {
  position:absolute;
  top:1.2%;
  left:-9%;
  width:36%;
}

.img-fv-girl {
  width:100%;
  padding:0 2.5% 0 4%;
  position:absolute;
  top:10.5%;
  z-index:2;
}

.img-fv-title-block {
  width:100%;
  padding:0 1%;
  position:absolute;
  top:51%;
  text-align:center;
  z-index:3;
}

.img-fv-txt-01 {
  width:74%;
}

.img-fv-ribon {
  width:17%;
  left:-2%;
  top:45%;
  position:absolute;
  z-index:2;
}

.img-fv-present {
  width:22%;
  right:-4%;
  top:42%;
  position:absolute;
  z-index:2;
}

.fv-btn-block {
  position:absolute;
  top:87%;
  padding:0 4%;
  width:100%;
  z-index:4;
}

.concept {
  background:url(/wp-content/themes/larme-mignon/imgs/bg-concept.webp) 0 0 / cover;
  padding:78px 0;
}

.img-ribon-blue {
  width:64%;
  position:absolute;
  top:4.5%;
  left:-7%;
  z-index:2;
}


.img-concept-pearl-01 {
  width:30%;
  position:absolute;
  top:50%;
  right:-14%;
  z-index:2;
}

.img-concept-pearl-02 {
  width:32%;
  position:absolute;
  bottom:1%;
  left:-10%;
  z-index:2;
}

.img-concept-flower {
  width:36%;
  position:absolute;
  bottom:1%;
  right:-14%;
  z-index:2;
}

.concept__inner {
  width:90%;
  background:#fff;
  border-radius:8px;
  margin:auto;
  padding:58px 0;
}

.img-ribon-wh-t {
  position:absolute;
  top:0;
  left:0;
}

.img-ribon-wh-b {
  position:absolute;
  bottom:0;
  left:0;
}

.img-concept-title {
  display:block;
  margin:16px auto 24px;
  width:52%;
}

@media only screen and (max-width: 480px) {
  .img-concept-title {
    width:60%;
  }
}

.video-container {
  width: 100%;
  line-height: 0;
  /* padding:0 4%; */
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.concept-txt {
  padding:24px 8% 0;
  text-align:center;

}

.p-txt-13 {
  font-size:1.3rem;
}

.img-concept-logo {
  width:62%;
  display:block;
  margin:16px auto 0;
}


@media only screen and (max-width: 896px) {
.concept {
  padding:14vw 0;
}

.p-txt-13 {
  font-size:1.6rem;
}

}

@media only screen and (max-width: 480px) {
.concept {
  padding:22vw 0;
}


.p-txt-13 {
  font-size:1.3rem;
}

}

.produce {
  background:url(/wp-content/themes/larme-mignon/imgs/bg-produce-pink.webp) 0 0 / cover;
  padding:84px 0 64px;
  position:relative;
}

.img-line-wp-t {
  position:absolute;
  top:0;
  left:0;
}

.img-line-wp-b {
  position:absolute;
  bottom:0;
  left:0;
}

.produce__inner {
  position:relative;
  z-index:2;
}

.img-produce-title {
  display:block;
  margin:16px auto 52px;
  width:50%;
}

@media only screen and (max-width: 480px) {
  .img-produce-title {
    margin:16px auto 40px;
    width:55%;
  }
}


.produce__single {
  margin-bottom:56px;
}

.img-produce-pink-midashi-01 {
  position:absolute;
  right:0;
  width:45%;
  transform:translateY(-50%);
  z-index:1;
}

.img-produce-pink-midashi-02 {
  position:absolute;
  left:0;
  width:45%;
  transform:translateY(-50%);
  z-index:1;
}

.produce__single-mv {

}

.produce__single-detail {
  width:90%;
  margin:auto;
  transform:translateY(-24px);
  z-index:2;
  background:url(/wp-content/themes/larme-mignon/imgs/bg-produce-daia.webp) 0 0 / cover;
  padding:4px;
}

.produce__single-detailInner {
  background:#fff;
  padding:32px 5% 18px;
}

.img-produce-ribon-small {
  width:20%;
  position:absolute;
  z-index:2;
  left:50%;
  top:0;
  transform:translate(-50%,-20%);
}

.produce__single-detail-h4-01 {
  width:61%;
  margin:0 auto 12px;
  text-align:center;
}

.produce__single-detail-h4-02 {
  width:57%;
  margin:0 auto 12px;
  text-align:center;
}

.produce__single-detail-h4-03 {
  width:78%;
  margin:0 auto 12px;
  text-align:center;
}

.produce-scroll__wrap {
  width:100%;
  height:70px;
  margin-bottom:28px;
}

.produce-scroll {

  position: absolute;
  height: 1px;
  left: 50%;
  top:0;
  z-index: 2;
}

.scroll__block {
  width:100%;
  height:70px;
  position: absolute;
  bottom:-4%;
  z-index:2;
}

.scroll {
  position: absolute;
  right: 50%;
  top:0;
  writing-mode: vertical-rl;
}

.scroll::before {
  animation: scroll 2s infinite;
  background-color: #686868;
  bottom:0;
  content: "";
  top:0;
  height: 70px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}


@media only screen and (max-width: 896px) {
.img-produce-ribon-small {
  width:15%;
  transform:translate(-50%,-47%);
}

.produce {
  padding:14vw 0;
}

}
@media only screen and (max-width: 480px) {
.produce {
  padding:22vw 0 14vw;
}

.img-produce-ribon-small {
  width:20%;
  transform:translate(-50%,-20%);
}

}

.produceLSP {
  margin-bottom:30px;
}

.produceLSP__inner {
  padding:0 5%;
}

.img-produce-sarani {
  width:68%;
  margin:0 auto 16px;
}

.produceLSP__inner h4 {
  text-align:center;
  font-size:2rem;
  line-height:1;
  margin:20px 0 16px;
  letter-spacing:1px;
}

.img-produce-support-title {
  width:78%;
  display:block;
  margin:10px auto 14px;
}

.produce__tokuten {

}

.img-magazine-tokuten {
  margin:0 auto 20px;
  display:block;
  width:68%;
}

.produce__tokutenInner {
  background:#fff;
  border-radius:8px;
  width:90%;
  margin:0 auto 32px;
  padding:72px 0 26px;
  border:1px solid #E4A6B3;
}

.produce__tokutenInner-img-ribon-pink {
  width:60%;
  position:absolute;
  z-index:1;
  top:-4px;
  left:-10%;
}

.produce__tokutenInner-img-produce-heart-glass-01 {
  width:18%;
  position:absolute;
  z-index:1;
  top:10px;
  right:-4%;
}


.img-magazine-title {
  width:46%;
  display:block;
  margin:20px auto 30px;
}

@media screen and (max-width: 480px) {
  .img-magazine-title {
    width:58%;
    margin:10px auto 25px;
  }
}

.produce__img-logo-larme-pink {
  margin:24px auto 10px;
  width:54%;
  display:block;
}

.img-magazine-chance {
  margin:0 auto 14px;
  width:80%;
  display:block;
}

.produce__magazine-txt {
  margin:0 auto 16px;
  width:80%;
}

.img-magazine-star {
  margin:0 auto 16px;
  width:80%;
  display:block;
}

.btn-block {
  padding:0 5%;
  width:100%;
}

.img-peal-line-t {
  position:absolute;
  top:6px;
  left:0;
  padding:0 4px;
  z-index:2;
}

.img-peal-line-b {
  position:absolute;
  bottom:6px;
  left:0;
  padding:0 4px;
  z-index:2;
}


@media only screen and (max-width: 480px) {

.img-magazine-chance {
  margin:0 auto 14px;
  width:88%;
  display:block;
}

.produce__magazine-txt {
  margin:0 auto 16px;
  width:88%;
}

.img-magazine-star {
  margin:0 auto 16px;
  width:88%;
  display:block;
}

}

.img-ribon-pink {
  position:absolute;
  top:0;
  left:-8%;
  width:60%;
  z-index:3;
}

@media screen and (max-width: 480px) {
.img-ribon-pink {
  width:56%;
}
}
.img-produce-pearl-01 {
  width:38%;
  position:absolute;
  top:28px;
  right:-20%;
}

.img-produce-pearl-02 {
  width:40%;
  position:absolute;
  top:17%;
  right:-20%;
}

.img-produce-pearl-03 {
  width:40%;
  position:absolute;
  top:45%;
  right:-20%;
}

.img-produce-pearl-04 {
  width:40%;
  position:absolute;
  top:68%;
  right:-20%;
}

.img-produce-pearl-05 {
  width:42%;
  position:absolute;
  bottom:0.5%;
  left:-15%;
}

.img-produce-heart-glass-01 {
  width:18%;
  position:absolute;
  top:130px;
  right:-2.5%;
}

.history {
  background:url(/wp-content/themes/larme-mignon/imgs/bg-flower-02.webp) 0 0;
  padding:100px 0 80px;
}

.img-ribon-blue-history {
  width:64%;
  position:absolute;
  top:10px;
  left:-7%;
  z-index:2;
}

.history__inner {
  width:88%;
  margin:auto;
}

.img-title-history {
  margin:24px auto 40px;
  width:52%;
}

@media screen and (max-width: 480px) {
  .img-title-history {
    width:62%;
  }
}

.history__figure {
  border-radius:8px;
  background:#fff;
  position:relative;
  margin-bottom:64px;
}

.img-history-midashi-01 {
  display:block;
  width:63%;
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  z-index:2;
  top:-20px;
}

.img-history-midashi-02 {
  display:block;
  width:92%;
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  z-index:2;
  top:-20px;
}

.img-history-midashi-03 {
  display:block;
  width:68%;
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  z-index:2;
  top:-20px;
}

.history__figure video {
  border-radius:8px 8px 0 0;
}

.history__figure-txtBlock {
  padding:18px 7% 24px;
}

.img-history-midashi-sub {
  display:block;
  margin:0 auto 8px;
  width:90%;
}

.slider-wrap {
    border-radius:8px 8px 0 0;
}

.slider-point {/*一旦スライドショーの横幅1100pxで設定してます*/
    max-width:100%;
    margin:0 auto;
    border-radius:8px 8px 0 0;

}
 
.slider-point img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
        border-radius:8px 8px 0 0;
}
 
/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider-point .slick-slide {
    margin:0;
}
 
/*矢印の設定*/
 
/*戻る、次へ矢印の位置*/
.slider-point .slick-prev, 
.slider-point .slick-next {
    position: absolute;/*絶対配置にする*/
    top:44%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
}

.slider-point .slick-prev {/*戻る矢印の位置と形状*/
    left: -2.5%;
    z-index: 2;
    width:22px;
}
 
.slider-point .slick-next {/*次へ矢印の位置と形状*/
    right: -2.5%;
    z-index: 2;
    width:22px;
}

/*ドットナビゲーションの設定*/

.slider-point .slick-dots {
    text-align:center;
    margin:12px 0 0 0;
}
 
.slider-point .slick-dots li {
    display:inline-block;
    margin:0 5px;
}
 
.slider-point .slick-dots button {
    color: transparent;
    outline: none;
    width:10px;/*ドットボタンのサイズ*/
    height:10px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}
 
.slider-point .slick-dots .slick-active button{
    background:#000;/*ドットボタンの現在地表示の色*/
}

@media only screen and (max-width: 896px) {
.history {
  padding:20vw 0;
}

.img-ribon-blue-history {
  width:58%;
  top:10px;
  left:-7%;
}

.slider-point .slick-prev,
.slider-point .slick-next {
    width:5%;
    top:45%;
}
}

@media screen and (max-width: 480px) {
.history {
  padding:22vw 0;
}

.slider-point .slick-prev,
.slider-point .slick-next {
    width:7%;
}
}


/* コンテナ：4つの三角形を縦に並べる */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:11px; /* 三角形同士の間隔 */
  margin-bottom:10px;
}

/* 三角形の基本スタイル */
.dot {
  width:16px;
  height: 7px;
  background-color: var(--color-pink-01);
  /* 下向き三角形の形に切り抜き */
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  
  opacity: 0.2;
  transform: scale(1);
  animation: scrollFlow 2s ease-in-out infinite;
}

/* アニメーションの定義 */
@keyframes scrollFlow {
  0% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
}

/* 4つそれぞれの動きを少しずつ遅らせる */
.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.15s; }
.dot:nth-child(3) { animation-delay: 0.3s; }
.dot:nth-child(4) { animation-delay: 0.45s; }

.flow-01 {
  background:url(/wp-content/themes/larme-mignon/imgs/bg-heart.webp) 0 0 / 18%;
  padding:120px 0 80px;
}

.img-ribon-pink-flow {
  width:60%;
  top:20px;
  left:-5%;
  position:absolute;
}

.img-flow-parts-01 {
  width:50%;
  position:absolute;
  top:0;
  right:0;
}

.img-flow-title {
  width:36%;
  display:block;
  margin:0 auto 18px;
}


@media screen and (max-width: 480px) {
  .img-flow-title {
    width:40%;
    margin:0 auto 8px;
  }
}

.flow-01__inner {
  z-index:2;
}

.flow-01__inner-01 {
  margin-bottom:18px;
}

.flow-01 figure p {
  padding:10px 6% 0;
}

@media only screen and (max-width: 896px) {
  .flow-01 {
    padding:20vw 0;
  }
}

@media screen and (max-width: 480px) {
  .img-ribon-pink-flow {
    top:10px;
  }

  .flow-01 {
    padding:22vw 0 16vw;
}
}


.flow-04 {
  background:url(/wp-content/themes/larme-mignon/imgs/bg-concept.webp) 0 0 / cover;
  padding:84px 0;
}

.img-flow-tsuini {
  width:70%;
  display:block;
  margin:0 auto 24px;
}

.flow-04-figure {
  border-radius:8px;
  background:#fff;
  width:90%;
  margin:0 auto 32px;
  position:relative;
  box-shadow: 0px 0px 10px -5px #c7c7c7;
}

.flow-04-figure-mv {
  border-radius:8px 8px 0 0;
  margin-bottom:24px;
  overflow:hidden;
}

.flow-04-figure-txt {
  padding:0 5% 28px;
}

.flow-04-figure-txt h4 {
  width:91%;
  display:block;
  margin:0 auto 16px;
}

.flow-04-figure-txt p {
  padding:0 3% 0;
}

.img-flow-heart-01 {
  position:absolute;
  top:-30px;
  left:-6%;
  z-index:2;
  width:26%;
}

.img-flow-diamond {
  position:absolute;
  bottom:-30px;
  right:-10%;
  z-index:2;
  width:29%;
}

.flow04-scroll__wrap {
  z-index:2;
  transform:translateY(-140px);
  background:#ff0;
}

.flow04scroll__block {
  width:100%;
  height:120px;
  position: absolute;
  bottom:-4%;
  z-index:2;
}

.flow04scroll {
  position: absolute;
  right: 50%;
  top:0;
  writing-mode: vertical-rl;
}

.flow04scroll::before {
  animation: scroll 2s infinite;
  background-color: #686868;
  bottom:0;
  content: "";
  top:0;
  height: 120px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

@media only screen and (max-width: 896px) {
  .flow-04 {
    padding:14vw 0;
  }

  .img-flow-diamond {
    width:20%;
  }
}

@media screen and (max-width: 480px) {
  .flow-04 {
    padding:22vw 0;
  }

  .img-flow-diamond {
    width:24%;
    bottom:-20px;
  }
}

.entry {
  background:url(/wp-content/themes/larme-mignon/imgs/bg-flower-01.webp) 0 0 / 120%;
  padding:100px 0 60px;
}

.img-ribon-blue-entry {
  width:64%;
  position:absolute;
  top:10px;
  left:-7%;
  z-index:2;
}

.entry__inner {
  width:90%;
  margin:0 auto 24px;
}

.img-title-entry {
  width:33%;
  display:block;
  margin:0 auto 24px;
}


@media screen and (max-width: 480px) {
  .img-title-entry {
    width:40%;
    margin:0 auto 28px;
  }
}

.entry__inner ul {
  display:flex;
  flex-direction:column;
  gap:20px;
}

.notice {
  padding:100px 0% 44px;
  background:url(/wp-content/themes/larme-mignon/imgs/bg-koushi.jpg) 0 0 / 18%;
}

.img-policy-title {
  width:36%;
  display:block;
  margin:0 auto 24px;
}

@media screen and (max-width: 480px) {
  .img-policy-title {
    width:42%;
  }
}


.img-form-title {
  width:58%;
  display:block;
  margin:0 auto 24px;
}

@media screen and (max-width: 480px) {
  .img-form-title {
    width:58%;
  }
}


.notice__inner {
  padding:0 7%;
  z-index:3;
}

.notice-line {
  height:1px;
  background:#eee;
  margin:48px auto;
  width:90%;
}

.notice__list li {
  margin-bottom:8px;
}

.notice__list li:before {
  content:'✓';
  margin-right:4px;
  display:inline-block;
}

.notice-pearl-01 {
  position:absolute;
  left:-15%;
  top:0;
  width:40%;
}

.notice-pearl-02 {
  position:absolute;
  right:-18%;
  bottom:-10px;
  width:40%;
  z-index:2;
}


























.faq {
  padding-bottom:32px;
}

.faq__inner {
  padding:0 5%;
}

.faq__tittle {
  margin-bottom:10px;
  position:relative;
}

.img-faq-00 {
  position:absolute;
  z-index:2;
  bottom:0;
  left:0;
}

dl.faq-Q {
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:var(--color-black-01);
  padding:14px 6px 10px;
  margin-bottom:5px;
}

dl.faq-Q dt {
  width:12%;
  text-align:center;
}

dl.faq-Q dt img {
  transform:translateY(-2px);
}

dl.faq-Q dd {
  width:86%;
  color:#fff;
  font-size:1.6rem;
  font-weight:700;
  line-height:1.3;
}

dl.faq-A {
  display:flex;
  justify-content:space-between;
  padding:10px 6px;
  margin-bottom:20px;
}

dl.faq-A dt {
  width:9%;
  text-align:center;
  padding-left:7px;
}

dl.faq-A dd {
  width:86%;
  line-height:1.7;
  font-size:1.4rem;
}





.form-block {
  padding-top:64px;
}



/* --- PC・スマホ共通：初期状態 --- */
.fix-btn-entry {
    display: none; /* 基本は非表示 */
}

@media only screen and (max-width: 896px) {
    .fix-btn-entry {
        display: block; /* 構造として表示 */
        position: fixed;
        bottom: 2px;
        left: 0;
        padding: 0 14%;
        z-index:4;
        
        /* フェードアニメーションのための設定 */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    /* 300pxスクロール後に付与する表示用クラス */
    .fix-btn-entry.is-show {
        opacity: 1;
        visibility: visible;
    }

    .ft {
      padding-bottom:120px;
    }

}

@media screen and (max-width: 480px) {
    .fix-btn-entry {
        padding: 0 5%;
    }

    .ft {
      padding-bottom:100px;
    }

}

.ft {
  padding:48px 6% 24px;
  font-size:1.1rem;
  background:var(--color-pink-01);
  color:#fff;
}

.ft a {
  text-decoration:none;
  transition:.4s;
  color:#fff;
}

.ft a:hover {
  color:#ff0;
}

.ft__company {
  text-align:center;
  font-size:1.2rem;
  letter-spacing:0px;
  color:#fff;
   background:var(--color-pink-01);
  font-weight:400;
  margin-bottom:8px;
  width:32%;
  margin:0 auto 16px;
  padding:2px 0;
}


.ftLogo {
  width:70%;
  text-align:center;
  padding:0 0 18px;
  margin:0 auto 0;
}

.ftLogo img {
  width:160px;
}


.ft__list {
  display:flex;
  justify-content:center;
  gap:16px;
  padding:16px 0;
  border-top:1px solid #fff;
}

.ft__copy {
  text-align:center;
  font-size:1rem;
  padding-top:24px;
  letter-spacing:2px;
}


.gheader,
.gheaderLower {
  height:0;
  overflow:hidden;
}

@media only screen and (max-width: 896px) {

  
.gheader {
    width: 100%;
    height:auto;
    background:#fff;
    display:block;

    position:relative;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    z-index:5;
    box-shadow: 0px 0px 6px 0px #eee;
}

.gheaderLower {
    width: 100%;
    height:auto;
    background:#fff;
    position: fixed;
    top:-1px;
    left: 0;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    z-index:5;
    box-shadow: 0px 3px 8px -5px #b0b0b0;
}

.gheader__inner {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:6px 8px 8px 12px;
}

.gheader__inner h1 {
  padding:4px 0;
  width:30%;
}

.gheader__inner a.gheader__btn {
  display:block;
  width:40%;
  padding-top:2px;
}

}



@media only screen and (max-width: 480px) {
.gheader__inner {
  padding:5px 8px 8px 8px;
}
  
.gheader__inner h1 {
  width:40%;
  padding:2px 0 0 0;

}

.gheader__inner a.gheader__btn {
  width:50%;
}
}


/*
sideNav ********/
.sideNav {
  width:25vw;
  position:fixed;
  top:64px;
  left:16px;
}

.sideNav h1 {
  max-width:280px;
  width:100%;
  margin:0 auto 24px;
}
.sideNav__logo {

  margin-bottom:32px;
}

.sideNav__qr {
  width:114px;
}

.sideNav__list {
  margin-bottom:32px;
}

.sideNav__list li {
  margin-bottom:1.8vh;
  text-align:center;
}



.sideNav a {
  transition:.3s;
  display:block;
  padding:2px 10px;
  font-weight:500;
  letter-spacing:2px;
  font-size:1.2vw;
  line-height:1.5;
  text-decoration:none;
  color:var(--color-pink-01);
  transition:1s;
font-family: "montserrat", sans-serif;
font-weight: 700;
font-style: normal;
}

.sideNav a:hover {
  color:#f5cfd7;
}




@media only screen and (max-width: 896px) {
.sideNav {
  display:none !important;
}

}



@media only screen and (max-width: 480px) {
.sideNav {
  display:none;
}
}


.lower__titleLogo {
  width:160px;
  display:block;
  margin:0 auto 16px;
}

/*
特定商取引法に基づく表記 *************/

.lower__title {
  text-align:center;
  font-size:1.8rem;
  padding:110px 0 48px;
  font-weight:700;
  margin-bottom:32px;
  letter-spacing:2px;
  background:url(/wp-content/themes/larme-mignon/imgs/bg-concept.webp) 0 0 / cover;
  color:#fff;
}

@media only screen and (max-width: 480px) {
.lower__title {
  padding:100px 0 48px;
}
}



.lower__title:after {
  content: attr(data-en);
  font-size:1.1rem;
  display:block;
  letter-spacing:2px;
}

.summary__item {
  margin-bottom:24px;
}

.summary__item dt {
  font-size:1.5rem;
  font-weight:bold;
  border-bottom:1px solid #ccc;
  margin-bottom:6px;
  padding-bottom:6px;
}

.summary__item dd {
  font-size:1.3rem;
}

.lower__body {
  padding:0 6%;
  font-size:1.3rem;
}

.red-midashi {
  color:var(--color-blue-01);
  font-weight:600;
  font-size:1.4rem;
}


.normal__list {
  margin:0;
}

.normal__list li {
  position: relative;
  padding-left: 1.4rem;
  line-height:1.4;
  margin-bottom:8px;
}

.normal__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  font-size: 1.4rem;
}


.normal__list-02 {
  margin:0;
}

.normal__list-02 li {
  position: relative;

}

.normal__list-02 li::before {
  content: "";
  position: absolute;
  left: 0;
  font-size: 1.4rem;
}

.ppheading {
  background:url(/wp-content/themes/larme-mignon/imgs/bg-concept.webp) 0 0;
  color:#fff;
  padding:12px 10px;
  letter-spacing:1px;
  font-size:1.5rem;
  line-height:1;
  margin-bottom:16px;
}


/*
エントリー受付中 *************/
.entryMessage {
  width:100%;
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  display: none;

  font-weight:700;
}

.entryMessage-logo {
  width:240px;
  text-align:center;
  margin:0 auto 10px;
  animation:flash 1.5s infinite;
}
/*
@media only screen and (max-width: 896px) {
.entryMessage-logo {
  width:40%;
}
}

@media only screen and (max-width: 480px) {
.entryMessage-logo {
  width:66%;
}
}
*/
.entryMessage h2 {
  /* font-size:1.6rem;
  letter-spacing:2px;
  font-weight:600; */
}

@keyframes flash {
  0%{
    opacity:1;
  }
  50%{
    opacity:0.5;
  }
  0%{
    opacity:1;
  }
}









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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
    transition: opacity 1.5s ease, transform 1.5s ease, filter 1.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.fade-in-down {
    opacity: 0;
    transform: translateY(-30px);
    filter: blur(10px);
    transition: opacity 1s ease, transform 1s ease, filter 1.5s ease
}

.fade-in-down.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}


.fade-in-zoom {
    opacity: 0;
    transform: scale(0);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-zoom.visible {
    opacity: 1;
    transform: scale(1);
}


.fade-in-R {
    opacity: 0;
    transform: translateX(30px);
    filter: blur(10px);
    transition: opacity 1s ease, transform 1s ease, filter 1.5s ease
}

.fade-in-R.visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}


.fade-in-L {
    opacity: 0;
    transform: translateX(-30px);
    filter: blur(10px);
    transition: opacity 1s ease, transform 1s ease, filter 1.5s ease;
}

.fade-in-L.visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

.fade-in-blur {
    opacity: 0;
    filter: blur(10px);
    transition: opacity 1.5s ease, filter 1.5s ease;
}

.fade-in-blur.visible {
    opacity: 1;
    filter: blur(0);
}


/*右から左*/

@keyframes infinity-scroll-left {
from {
  transform: translateX(0);
}
  to {
  transform: translateX(-100%);
}
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
  position:relative;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 50s infinite linear both;
}

.dream .scroll-infinity__list--left {
  animation: infinity-scroll-left 50s infinite linear both;
}


.scroll-infinity__item {
  width: 380px;

}

.dream .scroll-infinity__item {
  width: 220px;

}


.scroll-infinity__item>img {
  width: 100%;
}

/*左から右*/
@keyframes infinity-scroll-right {
from {
  transform: translateX(-100%);
}
  to {
  transform: translateX(0%);
}
}
.scroll-infinity__list--right{
  animation :infinity-scroll-right 50s infinite linear both;
}


.dream  .scroll-infinity__list--right {
  animation :infinity-scroll-right 50s infinite linear both;
}

.loop-txt-parts {
  background:var(--color-red-01);
  padding:8px 0;
}

.loop-txt-parts .scroll-infinity__item {
  width: 200px;
  margin-right:24px;
}


.produce-loop .scroll-infinity__item {
  width:160px;
  margin-right:12px;
}

.media-book-loop .scroll-infinity__item {
  width:200px;
}

.talent-loop .scroll-infinity__item {
  width:150px;
}

/*
form parts **********/
#footerfv {
  margin-bottom:48px;
  /* padding-top:48px; */
}


.formBlock {
  padding:0 5%;
}

table.base-01 {
  width: 100%;
}

table.base-01 th {
  width: 100%;
  padding:10px 0 8px;
  display: block;
  text-align: left;
  border-top:none;
  border-bottom: none;
  font-weight: 500;
}

table.base-01 td {
  width: 100%;
  padding:14px 0 0 0;
  border-top:1px solid #ccc;
  border-bottom:none;
  display: block;
  margin-bottom:7px;
}

/*form parts*/
.send-btn {
  width: 50%;
  display: block;
  margin:0 auto;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  /* -webkit-appearance: button; */
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-appearance: none;
}

input[type=radio] {
  display:inline-block;
}

.wpcf7-list-item {
  width:auto !important;
  padding-bottom:10px !important;
}

.wpcf7-list-item { display: block; float: left; width: 80%; }
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  font-size:1.6rem;
  padding: 18px 5px;
  width:100%;
 background:#fff;
 border:1px solid #FFDEEB;
 border-radius:6px !important;
 box-shadow: 0px 0px 11px -5px #bababa;
}

input[type="text"].nenrei-txt {
  width:200px;
  margin-right:5px;
}

input[type="text"].tel-numtxt,
input[type="email"].tel-numtxt {
  width:100%;
 border:1px solid #FFDEEB;
 border-radius:6px !important;
 box-shadow: 0px 0px 11px -5px #bababa;
}


input[type="submit"].wpcf7-confirm,
input[type="submit"].wpcf7-submit,
.wpcf7-back { 
  background:#05C756;
  border: none;
  color: #fff;
  cursor: pointer;
  display: block;
  margin: 16px auto 0 auto;
  /* padding: 18px 0; */
  background:url(/wp-content/themes/larme-mignon/imgs/bg-sendbtn.webp) no-repeat 0 0 / contain;
  text-align: center;
  width:330px;
  height:90px;
  /* font-size:1.5rem; */
  transition:.6s;
  font-size:0;
  /* border-radius:4px;
  border-right:3px solid #02A245;
  border-bottom:3px solid #02A245; */
}

input[type="submit"].wpcf7-confirm:hover,
input[type="submit"].wpcf7-submit:hover {
  /* opacity:.5; */
}


input[type="button"].wpcf7-confirm,
input[type="button"].wpcf7-submit,
input[type="button"].wpcf7-form-control { 
  background:#555;
  border: none;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size:1.6rem;
  margin: 200px auto 0;
  padding: 20px 0;
  text-align: center;
  width: 80%;
}

input[type=checkbox], input[type=radio] {
    transform: scale(1.4);
    margin: 0 5px 0 0;
}

select {
  width:100%;
  /* width: 200px; */
  padding:18px 3px 18px 5px;
  /* border-radius: 0px; */
  -webkit-appearance: none;
  appearance: none;
  position:relative;
    border: 1px solid #FFDEEB;
    position:relative;
  background-color:#fff;
  background-image: url(/wp-content/themes/larme-mignon/imgs/bg-contact-arrow-bottom.png);
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 13px 13px;
  font-size:1.5rem;
  color:#000;
  border-radius:6px;
  box-shadow: 0px 0px 11px -5px #bababa;
  }

::placeholder {
  font-size: 1.2rem;
  line-height:1.5;
  color:#bbb;
}

.cf7-hissu {
  color:#fff;
  background:var(--color-pink-01);
  /* background:#f1911a; */
  display:inline-block;
  padding:5px 6px;
  font-size:1rem;
  line-height:1;
  border-radius:2px;
  transform:translateY(-2px);
  margin-left:4px;
}

.cf7-nini {
  color:#fff;
  background:#aaa;
  display:inline-block;
  padding:5px 6px;
  font-size:1rem;
  line-height:1;
  border-radius:2px;
  transform:translateY(-2px);
  margin-left:4px;
}


.cf7-size {
  margin-bottom:8px;
}

.cf7-size label {
  font-weight:600;
  font-size:1.6rem;
}

.cf7-form {
  margin-bottom:32px;
  padding-bottom:16px;
  border-bottom:1px dotted #ccc;
}


  .wpcf7-checkbox {
    position:relative;
    display: block;
}

.wpcf7-not-valid-tip {
  display: block;
  font-size: 1.2rem !important;
}


.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    line-height: 1.4;
}

.f-furigana {
  font-size:1.1rem;
  letter-spacing:-1px;
  margin-left:-3px;
}

.nenrei-01 {
  width:100px;
  margin-right:8px;
}

.nenrei-02 {
  width:80px;
  margin-right:8px;
}

.kibou-school {
  width:140px;
  margin-right:8px;
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0 1em 0 0 !important;
}

.wpcf7 form .wpcf7-response-output {
  margin-top:0 !important;
}

/*
送信完了ページ **********/
.thanks__hdLogo {
  display:block;
  width:66%;
  margin:0 auto 4px;
  transform:translateY(-20px);
}


.thanks__title {
  background:var(--color-blue-01) !important;
  color:#fff;
  margin-bottom:32px;
  padding:56px 0 56px !important;
} 

.thanks__title:before {
  color:#fff !important;
}

.thanks-line__txt--big {
  background:#000;
  color:#fff;

  font-size:1.7rem;
  font-weight:600;
  line-height:1;
  padding:12px 0 14px;
  margin:8px auto 24px;
  display:block;
  text-align:center;
  letter-spacing:0.5px;
}

.thanks__body {
  padding:0 4%;
}

.send-after__txt {
  font-size:1rem;
  font-weight:400;
  text-align:center;
}


@keyframes imganime {
  0%{
    transform:scale(1);
  }
  50%{
    transform:scale(1.05);
  }
  100%{
    transform:scale(1);
  }
}

.line-imganime {
  animation:imganime 3s infinite linear;

}

.f-red {
  color:#C8102E;
}

.f-pink-02 {
  color:var(--color-pink-02);
}


.thanks-line__txt--warning {
  text-align:center;
  margin-top:16px;
}

.thanks__contact-address {
  text-align:center;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.thanks__contact-address img {
  width:24%;
  display:block;
  margin:0 auto 8px;
}

.thanks__contact-address .txt {
  font-size:1.7rem;
  font-weight:600;
}

.thanks__LINEoffer {
    position:relative;
}

.img-thanks-finger {
    position:absolute;
    width:18%;
    top:33%;
    right:20%;
    animation:fingerani 1.5s infinite;
}

@keyframes fingerani {
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.13);
    }
    100%{
        transform:scale(1);
    }
}






/*
padding parts **********/
.pb32 {
  padding-bottom:32px;
}



/*
margin parts **********/

.mtb8 {
  margin:8px 0;
}

.mtb4 {
  margin:4px 0;
}

.mb0 {
  margin-bottom:0 !important;
}

.mb4 {
  margin-bottom:4px;
}

.mb8 {
  margin-bottom:8px;
}

.mb16 {
  margin-bottom:16px;
}

.mb24 {
  margin-bottom:24px;
}

.mb32 {
  margin-bottom:32px;
}

.mt8 {
  margin-top:8px;
}

.mt16 {
  margin-top:16px;
}

.mt24 {
  margin-top:24px;
}

.mt32 {
  margin-top:32px;
}

.mt40 {
  margin-top:40px;
}


/*
other parts **********/
.img-block {
  display:block;
  vertical-align:bottom;
}

.bg-gary {
  background:var(--color-gray-01);
}

.txt-c {
  text-align:center;
}


.grecaptcha-badge { visibility: hidden; }


/*
PC block --------------------------------------------*/
.i_p_b {display: block !important;}
.i_t_b {display: none !important;}
.i_s_b {display: none !important;}
.i_pt_b {display: block !important;}
.i_ts_b {display: none !important;}
.dis-none {display:none !important;}

