@charset "Shift_JIS";
@media screen and (max-width: 374px) {
  .sps-none {
    display: none;
  }
  .sps-block {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .sp-none {
    display: none;
  }
}

@media screen and (min-width: 481px) {
  .pc-none {
    display: none;
  }
}

/*
====================================================================
Landing page
====================================================================
*/

/* ===========================================
  base
=========================================== */

* {
  box-sizing: border-box;
}

@font-face {
  font-family: "icomoon";
  src: url("fonts/icomoon.eot?1u951l");
  src: url("fonts/icomoon.eot?1u951l#iefix") format("embedded-opentype"),
    url("fonts/icomoon.ttf?1u951l") format("truetype"),
    url("fonts/icomoon.woff?1u951l") format("woff"),
    url("fonts/icomoon.svg?1u951l#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="icon-wf-"],
[class*=" icon-wf-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-wf-arrow_right_1:before {
  /* content: "\e900"; */
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", Meiryo, arial,
    sans-serif;
  color: #333333;
}
@media screen and (min-width: 481px) {
  main {
    max-width: 500px;
    margin: 0 auto 0;
    text-align: center;
    /* overflow: hidden;  .bou_251114-blockのposition:sticky;を打ち消してしまっていたのでコメントアウトにしました（古川） */ 
  }  
}

@media screen and (max-width: 480px) {
  main {
    max-width: 100%;
    margin: 0 auto 0;
    text-align: center;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}


p {
  line-height: 1.7;
}

.ifPc {
  display: inherit;
}

.ifSp {
  display: none;
}

@media (max-width: 480px) {
  .ifPc {
    display: none;
  }
  .ifSp {
    display: inline-block;
  }
}


/* ===========================================
     メインコンテンツ
=========================================== */

    .bou_251114-contents_main{
      width: 100%;
      text-align: center;
      margin: 0 auto 0;
      border: 0 ;
      padding: 0 ;
    
    }

    .bou_251114-single {
      position: relative;
      width: 100%;
      text-align: center;
      margin: 0 ;
      border: 0 ;
      padding: 0 ;
    }

    .bou_251114-single_bottom {
      width: 100%;
      text-align: center;
      margin: 0 auto 8%;
      border: 0 ;
      padding: 0 ;
    }

    /*二つ並びはフレックスボックスを使用*/
    .bou_251114-double {
    	display: flex;
    	justify-content: space-around;
    	width: 100%;
    	height: auto;
    	margin: 0 auto;
    }
    
    .bou_251114-double_left {
    	width: 54.6%;
    	height: auto;
    	text-align: center;
    }
    .bou_251114-double_right {
    	width: 45.4%;
    	height: auto;
    	text-align: center;
    }

    .bou_251114-bg {
        background-color: #f5f4f0;
    }
    .bou_251114-bg_1 {
        background-color: #efefe5;
    }


    /*インデックス ↓↓↓↓↓*/
    .bou_251114-wrap {
      opacity: 1;
      background-color: #ffff;
      display:-webkit-box;
      display:-ms-flexbox;
      display:flex;
      height:280px;
      margin:0 0 -5%;
    }
    .bou_251114-between {
      -webkit-box-pack:justify;
      -ms-flex-pack:justify;
      justify-content:space-between;
    }
    /*インデックス ↑↑↑↑↑*/


    /*1文字ずつ表示させるアニメーション ↓↓↓↓↓*/
    /* 共通のスタイル */
    .bou_251114-fade_txt {
        display: flex;
        overflow: hidden;
        z-index:10;
        position:absolute;
        /* width:100%; */
        object-fit: cover;
        left: 50%;
        top: 55%;
        transform: translate(-50%, -50%);
    }

    .bou_251114-fade_txt p {
        font-family: Calisto MT;
        color: #04244d;
        font-size: 3em;
        font-weight: bold;
        margin: 0;
        object-fit: cover;
    }

    .bou_251114-fade_txt_1 {
        display: flex;
        overflow: hidden;
        z-index:10;
        position:absolute;
        /* width:100%; */
        object-fit: cover;
        left: 50%;
        top: 63%;
        transform: translate(-50%, -50%);
    }

    .bou_251114-fade_txt_1 p {
        font-family: Calisto MT;
        color: #cf081b;
        font-size: 3.5em;
        font-weight: bold;
        margin: 0;
        object-fit: cover;
    }

    /* フェードインする文字の動的スタイル */
    .bou_251114-animate p{
        /* ここからアニメーション関係 */
        opacity: 0; /* 文字を透明化 */
        animation: textanimation 1s forwards;
    }
    /* 1文字目 */
    .bou_251114- p:nth-child(1) {
        animation-delay: 0.2s
    }
    /* 2文字目 */
    .bou_251114-animate p:nth-child(2) {
        animation-delay: 0.4s
    }
    /* 3文字目 */
    .bou_251114-animate p:nth-child(3) {
        animation-delay: 0.6s
    }
    /* 4文字目 */
    .bou_251114-animate p:nth-child(4) {
        animation-delay: 0.8s
    }
    /* 5文字目 */
    .bou_251114-animate p:nth-child(5) {
        animation-delay: 1s
    }
    /* 6文字目 */
    .bou_251114-animate p:nth-child(6) {
        animation-delay: 1.2s
    }
    /* 7文字目 */
    .bou_251114-animate p:nth-child(7) {
        animation-delay: 1.4s
    }
    /* 8文字目 */
    .bou_251114-animate p:nth-child(8) {
        animation-delay: 1.6s
    }
    /* 9文字目 */
    .bou_251114-animate p:nth-child(9) {
        animation-delay: 1.8s
    }
    /* 10文字目 */
    .bou_251114-animate p:nth-child(10) {
        animation-delay: 2s
    }
    /* 11文字目 */
    .bou_251114-animate p:nth-child(11) {
        animation-delay: 2.2s
    }
    /* 12文字目 */
    .bou_251114-animate p:nth-child(12) {
        animation-delay: 2.4s
    }
    /* 13文字目 */
    .bou_251114-animate p:nth-child(13) {
        animation-delay: 2.6s
    }
    /* 14文字目 */
    .bou_251114-animate p:nth-child(14) {
        animation-delay: 2.8s
    }
    /* 15文字目 */
    .bou_251114-animate p:nth-child(15) {
        animation-delay: 3s
    }


    @keyframes textanimation {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }
    /*1文字ずつ表示させるアニメーション ↑↑↑↑↑*/


    /*フェードアップ ↓↓↓↓↓*/
    .bou_251114-fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity:0;
    }

    @keyframes fadeUpAnime{
      from {
        opacity: 0;
      transform: translateY(100px);
      }

      to {
        opacity: 1;
      transform: translateY(0);
      }
    }
    /*フェードアップ ↑↑↑↑↑*/


    /*スライド設定 ↓↓↓↓↓*/
    .bou_251114-style-slick {
        width: 100%;
        max-width: 500px;
        margin: 0;
        @include breakpoint(500px) {
            margin: 5% auto;
        }
    }


    .slick-dotted.slick-slider {
    margin-bottom: 0;
    }
    
    .bou_251114-style-slick__item {
        margin-right: 0;
        margin-left: 0;
    }

    .bou_251114-style-slick__item img {
        height: auto;
        width: 100%;
    }

    .bou_251114-dots-class button {
        display: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        outline: none;
        padding: 0;
        border: none;
        background-color: transparent;
    }

    .bou_251114-dots-class {
        display: flex;
        justify-content: center;
        margin-top: 15px;
    }
    .bou_251114-dots-class li {
        width: 10px;
        height: 10px;
        background-color: #fff;
        border: 1px solid #51c6b8;
        border-radius: 50%;
        margin-right: 10px;
        cursor: pointer;
        transition: background-color .5s ease;
    }
    .bou_251114-dots-class li.slick-active {
        background-color: #51c6b8;
    }
    .bou_251114-dots-class li:hover {
        background-color: #51c6b8;
    }
    .bou_251114-dots-class li:last-child {
        margin-right: 0;
    }
    /*スライド設定 ↑↑↑↑↑*/


    /* パララックス（重なるように画像表示） (古川編集) ↓↓↓↓↓*/
    .bou_251114-block {
        position: sticky;
        top: 0;
    }

    .bou_251114-block a:hover {
      opacity: 1 !important;
    }
    .bou_251114-block a:hover img{
      opacity: 1 !important;
    }


    /* リード文の上のスライダーに適用*/
    .bou_251114-block_1 {
        z-index: 2;
    }

    /* リード文？「ラフに楽しむ〜」のテキストブロックに適用　*/
    .bou_251114-block_2 {
        z-index: 4;
    }

    /* リード文より下にあるものをdivでくくり、リード文の上に重ねる　*/
    .bou_251114-block_3 {
        z-index: 6;
    }

    /* リード文より下にあるものをdivでくくり、リード文の上に重ねる　*/
    .bou_251114-block_4 {
        z-index: 8;
    }
    .bou_251114-block_5 {
        z-index: 10;
    }
    .bou_251114-block_6 {
        z-index: 12;
    }
    .bou_251114-block_7 {
        z-index: 14;
    }
    .bou_251114-block_8 {
        z-index: 16;
    }
    .bou_251114-block_9 {
        z-index: 18;
    }
    /* パララックス（重なるように画像表示） (古川編集) ↑↑↑↑↑*/


    /* ゆらゆら矢印 ↓↓↓↓↓*/
    .bou_251114-arrow-down {
      font-size: 50px;
      color: #042359;
      animation: moveDown 1.5s ease-in-out infinite;
      display: inline-block;
      margin-bottom: 10px;
    }

    @keyframes moveDown {
      0% {
        transform: translateY(0px);
        opacity: 1;
      }
      50% {
        transform: translateY(10px);
        opacity: 0.7;
      }
      100% {
        transform: translateY(0px);
        opacity: 1;
      }
    }
    /* ゆらゆら矢印 ↑↑↑↑↑*/

/* 時差フェードアップ↓↓↓↓↓↓ */
/* デフォルト（待機状態） */
.bou_251114-fadeIn1s,
.bou_251114-fadeIn1500ms {
    transform: translateY(50px);
    opacity: 0;
}

/* スクロールで.activeがついたら動く */
.bou_251114-fadeIn1s.bou_251114-active { 
    animation-name: fadeIn1s;
    animation-delay: 0.5s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}
@keyframes fadeIn1s {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.bou_251114-fadeIn1500ms.bou_251114-active {
    animation-name: fadeIn1500ms;
    animation-delay: 1s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}
@keyframes fadeIn1500ms {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* 時差フェードアップ↑↑↑↑↑↑ */

/*　画像とロゴのスクロールアニメーション↓↓↓↓↓*/
/* 全体のスクロール効果 */
.mv-container {
    height: 80vh;
    background-color: #f4f2f1;    
}

/* 固定されるメインビジュアルセクション */
.lp-mv {
    position: sticky;
    top: 0;
    height: 120vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

/* 画像のスタイルとスクロール縮小効果 */
.lp-mv .mv-img{
    position: relative;
    /* 拡大したときに頭が切れるようにする　1107編集 */
    height: 100vh;
    width: 180%;   
    object-fit: cover;
}

@media screen and (max-width: 481px) {
    .lp-mv .mv-img {
        width: 220%;　 /* 1107編集 */
    }
}

/* テキストのスライドイン */
.lp-mv .mv-logo{
    position: absolute;
    /* PCのロゴ位置 */
    top: 27%;
    left: 50%;
    opacity: 0;
    z-index: 100;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 481px) {
    .lp-mv .mv-logo {
        /* スマホのロゴ位置 */
        top: 21%; /* 常時ベスト位置には設定できず、許容範囲内で収まるようにしました。ごめんなさい 1107編集 */
    }
}

/* スクロール時のアニメーション */
.lp-mv.shrink .mv-img{
   width: 100%;
   height: auto;
   transition-duration: 1.5s;
   scale: 0.6;　　/* 縮小 */
}

/* スライドイン後のテキスト表示 */
.lp-mv.show-text .mv-logo {
    opacity: 1;
    transition: opacity 2s ease-out;
}
/*　画像とロゴのスクロールアニメーション↑↑↑↑↑↑ */

 /*シャッの設定ここから*/

.bou_251114-bgextend{
  animation-name:bgextendAnimeBase;
  animation-duration:1s;
  animation-fill-mode:forwards;
  position: relative;
  overflow: hidden;/*　はみ出た色要素を隠す　*/
  opacity:0;
}
@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*中の要素*/
.bou_251114-bgappear{
  animation-name:bgextendAnimeSecond;
  animation-duration:2s;
  animation-delay: 0.6s;
  animation-fill-mode:forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond{
  0% {
  opacity: 0;
  transform: translateX(100%);
  }

  50% {
  opacity: 0.5;
  transform: translateX(0);
  }

  100% {
  opacity: 1;
  transform: translateX(0);
}
}

/*--------- 左から --------*/
.bgLRextend::before{
  animation-name:bgLRextendAnime;
  animation-duration:1.5s;
  animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 64%;
    height: 100%;
    background-color: #fff !important;  /*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime{
  0% {
    transform-origin:left;
    transform:scaleX(0);
  }
  50% {
    transform-origin:left;
    transform:scaleX(1);
  }
  50.001% {
    transform-origin:right;
  }
  100% {
    transform-origin:right;
    transform:scaleX(0);
  }
}

/*--------- 右から --------
.bou_251114-bgRLextend::before{
  animation-name:bgRLextendAnime;
  animation-duration:1.5s;
  animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 30%;
    height: 100%;
    background-color: #fff !important;/*伸びる背景色の設定*/
}
@keyframes bgRLextendAnime{
  0% {
    transform-origin:right;
    transform:scaleX(0);
  }
  50% {
    transform-origin:right;
    transform:scaleX(1);
  }
  50.001% {
    transform-origin:left;
  }
  100% {
    transform-origin:left;
    transform:scaleX(0);
  }
}
*/

/*--------- 下から --------*/
.bgDUextend::before{
  animation-name:bgDUextendAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #666;/*伸びる背景色の設定*/
}
@keyframes bgDUextendAnime{
  0% {
    transform-origin:bottom;
    transform:scaleY(0);
  }
  50% {
    transform-origin:bottom;
    transform:scaleY(1);
  }
  50.001% {
    transform-origin:top;
  }
  100% {
    transform-origin:top;
    transform:scaleY(0);
  }
}

/*--------- 上から --------*/
.bgUDextend::before{
  animation-name:bgUDextendAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #666;/*伸びる背景色の設定*/
}

@keyframes bgUDextendAnime{
  0% {
    transform-origin:top;
    transform:scaleY(0);
  }
  50% {
    transform-origin:top;
    transform:scaleY(1);
  }
  50.001% {
    transform-origin:bottom;
  }
  100% {
    transform-origin:bottom;
    transform:scaleY(0);
  }
}

 /*シャの設定ここまで*/


.bou_251114-item {
    width: 30%;
    position: absolute;
    z-index: 8;
    top: 50%;
    right: -15%;
    transform: translate(-50%, -50%);
}


