@charset "UTF-8";
html {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: .705vw;
    -webkit-text-size-adjust: 100%;
}

body {
    color: #333;
    background-color: #fff;
    background-image: url(../img/bibibi_bg2.png);
    background-repeat: repeat;
    font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
}

a {
    text-decoration: none;
    color: #333;
}

li {
    list-style: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
    -webkit-backface-visibility: hidden;
}

p {
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.contents {
    /* background: url(../img/mokume.png) repeat;
    background-size: 30%;
    background-attachment: fixed; */
    margin: 0 auto;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-align: center; 
    
}

.el_sp {
    display: none;
}

.el_btn {
    display: inline-block;
    padding: 18px 58px 18px 88px;
    font-size: 20px;
    color: #fff;
    user-select: none;
    border-radius: 100vh;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-align: center;
    background: #ee2b03;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    border: 3px solid #fff;
  }
  
.el_btn::after {
    font-family: "Font Awesome 5 Free";
    content: '\f105';
    font-weight: 900;
    color: #fff;
    padding-left: 30px;
}

.el_btn:hover {
    background: #fff;
    border: 3px solid rgb(131, 131, 131);
}

.el_btn:hover,
.el_btn:hover::after {
    color: #ee2b03;
}

.el_dlBtn {
    display: inline-block;
    padding: 10px 40px 10px 80px;
    font-size: 28px;
    color: #00003E;
    user-select: none;
    border-radius: 100vh;
    font-weight: bold;
    background: linear-gradient(
        -45deg,
        #fff 25%, #FFF100 25%,
        #FFF100 50%, #fff 50%,
        #fff 75%, #FFF100 75%,
        #FFF100
      );    

      /* background: linear-gradient(
        -45deg,
        #fff 25%, #ffbde3 25%,
        #ffbde3 50%, #fff 50%,
        #fff 75%, #ffbde3 75%,
        #ffbde3
      ); */
    background-size: 12px 12px;
    box-shadow: 0px 5px 0px #515151;
    border: 1px solid #3f3f3f;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.el_dlBtn::after {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0 0 4px 50px;
    content: '';
    border-right: 3px solid #00003E;
    border-bottom: 3px solid #00003E;
    transform: rotate(-45deg);
  }
  
.el_dlBtn:hover {
    box-shadow: 0px 0px 0px #515151;
    transform: translateY(5px);
}


.el_btn.el_dlBtn_m {
    font-size: 22px;
    margin-bottom: 15px;
}

.el_btn.el_dlBtn_l {
    font-size: 27px;
}

.el_btn.el_dlBtn:hover {
    color: #fff;
    background-position: 100% 0;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.el_btn.el_dlBtn:hover::after {
    color: #fff;
}

.el_right {
    text-align: right;
}

.el_paragraph {
    display: none;
}

.el_slide-in {
	overflow: hidden;
    display: inline-block;
}

.el_slide-in_inner {
	display: inline-block;
}

/* 上下のアニメーション*/
.el_downAnime{
    opacity: 0;/* 事前に透過0 にして消しておく*/
}

.el_slideAnimeDownUp {
    animation-name:slideTextY100;
    animation-duration:0.8s;
    animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextY100 {
    from {
        transform: translateY(100%);/* 要素を上の枠外に移動*/
        opacity: 0;
    }
    to {
        transform: translateY(0);/* 要素を元の位置に移動*/
        opacity: 1;
    }
}

.el_slideAnimeUpDown {
    animation-name:slideTextY-100;
    animation-duration:0.8s;
    animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextY-100 {
    from {
        transform: translateY(-100%);/* 要素を下の枠外に移動*/
        opacity: 0;
    }
    to {
        transform: translateY(0);/* 要素を元の位置に移動*/
        opacity: 1;
    }
}

.el_red {
    color: #d10000;
}

.el_head {
    max-width: 420px;
}

.el_scrolldownWrapper {
    display: flex;
    justify-content: center;
}

.el_scrolldown {
    position: absolute;
    bottom: 25px;
    left: 5%;
}

.el_scrolldown span{
    color: #444;
	font-size: 15px;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    padding-left: 10px;
}

/* 丸の描写 */
.el_scrolldown:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom:0;
    left:-4px;
    /*丸の形状*/
	width:10px;
	height:10px;
	border-radius: 50%;
	background:#fe0f84;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom:70px;}
     100%{bottom:-30px;}
 }

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
	100%{opacity:0;}
 }

/* 線の描写 */
.el_scrolldown:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom: -25px;
	left:0;
    /*線の形状*/
	width:2px;
	height: 100px;
	background:#222;
}

.js_marker {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 5px;
    left: 0;
    /*線の形状*/
    width: 100%;
    height: 20px;
    /*アニメーションの指定*/
    transition: 1s ease-in-out;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    transform: scale(0, 1);
    transform-origin: left top;/*左上基点*/
    z-index: -1;
}

.js_marker.is-active{
    transform: scale(1, 1);
}

.el_bg__y {
    background: linear-gradient(transparent 60%, #ffff65 60%);
}

.el_sp {
    display: none;
}

.bl_top {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url(../img/mv_bg3.png) center / cover;
    margin-bottom: 50px;
}

.bl_top_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
}

.bl_top_cast {
    max-width: 770px;
    width: 117rem;
    margin: 0 auto;
}

.el_qrWrapper {
    max-width: 90px;
    width: 100%;
}


.bl_top_linkBtn {
    border-radius: 50%;
}

.bl_top_txtBox {
    background: #fff;
    display: inline-block;
    padding: 20px 25px;
    box-shadow: 6px 6px #535353;
}

.bl_top_txt {
    font-size: 25px;
}

.shake_topBtn {
    -webkit-animation: scale-up-center 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-center 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

 @-webkit-keyframes scale-up-center {
    0% {
      -webkit-transform: scale(0.7);
              transform: scale(0.7);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  @keyframes scale-up-center {
    0% {
      -webkit-transform: scale(0.7);
              transform: scale(0.7);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  
.linkBtn {
    position: absolute;
    right: -130px;
	bottom: 120px;
	z-index: 5;
}

.bl_top_head {
    max-width: 770px;
    width: 122rem;
    margin: 15px auto 0;
}

.linkBtn_btm {
    margin-bottom: 50px;
}

.el_box {
    margin-bottom: 100px;
    background: #fff;
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
    padding: 4.5rem 4.5rem 25px;
    box-shadow: 6px 6px 6px rgba(150, 131, 113, .75);
    border-left: 1px solid rgba(150 131 113 / 20%);
    border-top: 1px solid rgba(150 131 113 / 20%);
    position: relative;
}

.el_box::before {
    content: "";
    width: 50px;
    height: 50px;
    background-image: url(../img/pin.png);
    display: inline-block;/*忘れずに！*/
    background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
    position: absolute;
    top: -4%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.bl_member {
    padding: 50px 0 120px;
    max-width: 1500px;
    margin: 0 auto -300px;
    position: relative;
}

.bl_member_head {
    margin: 0 auto;
}

.bl_member_plant {
    position: absolute;
    transform: translateY(-40%);
    -webkit-transform: translateY(-40%);
    -ms-transform: translateY(-40%);
    width: 15rem;
    max-width: 130px;
}

.bl_member_wrapper {
    position: relative;
    z-index: 10;
    margin-top: 380px;
}

.bl_member_list {
    min-height: 35rem;
}

.bl_member_airi {
    position: absolute;
    transform: translate(-50%,-50%);
    left: 20%;
    top: -25%;
    width: 38rem;
    max-width: 400px;
    z-index: 0;
}

.bl_member_fearin {
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 0%;
    z-index: 0;
    max-width: 400px;
    width: 38rem;
}

.bl_member_ikumi {
    position: absolute;
    transform: translate(-50%,-50%);
    left: 80%;
    top: -25%;
    z-index: 0;
    max-width: 400px;
    width: 38rem;
}

.js_rellax {
    transition: transform 0.1s ease 0s;
}

.slide-right {
	-webkit-animation: slide-right 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s both infinite;
	        animation: slide-right 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s infinite alternate backwards;
            -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
}

 @-webkit-keyframes slide-right {
    0% {
      -webkit-transform: translateX(-20px);
              transform: translateX(-20px);
    }
    50% {
      -webkit-transform: translateX(0px);
              transform: translateX(0px);
    }

    100% {
        -webkit-transform: translateX(0px);
              transform: translateX(0px);
    }
  }
  @keyframes slide-right {
    0% {
        -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
    }
    50% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    }
    100% {
        -webkit-transform: translateX(0px);
              transform: translateX(0px);
    }
  }

.bl_about {
    padding: 80px 0 150px;
    background: rgba(175, 175, 175, .15);
}

.bl_about_head {
    margin: 0 auto 100px;
}


.bl_about_inner {
    padding: 0 5%;
}

.bl_about_box {
    margin-bottom: 100px;
    background: #fff;
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 20px;
    /* box-shadow: 6px 6px 6px rgba(150, 131, 113, .75);
    border-left: 1px solid rgba(150 131 113 / 20%);
    border-top: 1px solid rgba(150 131 113 / 20%); */
    position: relative;
    z-index: 0;
}

.bl_about_box::before {
    content: "";
    position: absolute;
    top: -40px;
    bottom: -40px;
    left: -40px;
    right: -40px;
    border: solid 6px #fff; /* 外枠のスタイル */
    z-index: -1;
    background-color: rgba(255, 255, 255, .4);
}

.bl_about_subHead {
    max-width: 650px;
    width: 80rem;
    margin: 0 auto 30px;
}

.bl_about_decoItem {
    position: absolute;
    z-index: -1;
    width: 110%;
    left: 50%;
    transform: translateX(-50%);
}

.bl_about_decoTop {
    top: -3%;
}

.bl_about_decoBtm {
    bottom: -10%;
}

/* ..bl_about_ball3 {
    top: 27%;
    left: -5%;
}

.bl_about_ball4 {
    top: 3%;
    right: -4%;
}

.bl_about_ball5 {
    top: 15%;
    right: -12%;
}

.bl_about_ball6 {
    top: 27%;
    right: -5%;
} */





.bl_about_txt {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.bl_about_ruleBox {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.bl_about_rule {
    font-size: 24.5px;
    text-align: left;
    line-height: 1.8em;
}

.bl_about_subRule {
    font-size: 24.5px;
    margin-bottom: 50px;
}



 @-webkit-keyframes shake-bottom {
    0%,
    100% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
      -webkit-transform-origin: 50% 100%;
              transform-origin: 50% 100%;
    }
    10% {
      -webkit-transform: rotate(1deg);
              transform: rotate(1deg);
    }
    20%,
    40%,
    60% {
      -webkit-transform: rotate(-2deg);
              transform: rotate(-2deg);
    }
    30%,
    50%,
    70% {
      -webkit-transform: rotate(2deg);
              transform: rotate(2deg);
    }
    80% {
      -webkit-transform: rotate(-1deg);
              transform: rotate(-1deg);
    }
    90% {
      -webkit-transform: rotate(1deg);
              transform: rotate(1deg);
    }
  }
  @keyframes shake-bottom {
    0%,
    100% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
      -webkit-transform-origin: 50% 100%;
              transform-origin: 50% 100%;
    }
    10% {
      -webkit-transform: rotate(1deg);
              transform: rotate(1deg);
    }
    20%,
    40%,
    60% {
      -webkit-transform: rotate(-2deg);
              transform: rotate(-2deg);
    }
    30%,
    50%,
    70% {
      -webkit-transform: rotate(2deg);
              transform: rotate(2deg);
    }
    80% {
      -webkit-transform: rotate(-1deg);
              transform: rotate(-1deg);
    }
    90% {
      -webkit-transform: rotate(1deg);
              transform: rotate(1deg);
    }
  }
  
.bl_about_present_head {
    margin-bottom: 40px;
}

.bl_about_stickerImg {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.bl_about_caution {
    font-size: 14px;
    margin: 20px auto 30px;
}

.bl_about_decoImg {
    margin-bottom: 30px;
}

.bl_about_talkTxt {
    font-size: 24px;
    margin-bottom: 40px;
}

/* よくあるご質問 */
.bl_question {
    padding: 70px 0;
    color: #545454;
    background: rgba(255, 255, 255, .7);
    
}

.bl_question_head {
    margin: 0 auto 50px;
}

/*アコーディオン全体*/
.el_accordionArea{
    width: 100%;
    max-width: 700px;
    margin:0 auto 50px;
}

.el_accordionArea li{
    margin: 15px 0;
}

.el_accordionArea section {
	box-shadow: 3px 3px 6px rgba(175, 175, 175, .75);
    border-left: 1px solid rgba(143, 143, 143, 0.2);
    border-top: 1px solid rgba(143, 143, 143, 0.2);
    background: #fff;
    border-radius: 3px;
}

/*アコーディオンタイトル*/
.el_accordionArea_ttl {
    font-size: 20px;
    padding: 2% 3%;
    color: #545454;
    font-weight: normal;
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    transition: all .5s ease;
    text-align: left;
}

/*アコーディオンで現れるエリア*/
.el_accordionArea_box {
    background: #f5f5f5;
    border-bottom: 20px #fff solid;
	margin:0 3% 3% 3%;
    padding: 3%;
    display: none;/*はじめは非表示*/
}

.el_accordionArea_detail {
    color: #545454;
    text-align: left;
    font-size: 18px;
}

.el_accordionArea_detail_list {
    margin-left: 1.4em;
	text-indent: -1.4em;
}

/*アイコンの＋と×*/
.el_accordionArea_ttl::before,
.el_accordionArea_ttl::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #545454;
    
}
.el_accordionArea_ttl::before{
    top:48%;
    right: 15px;
    transform: rotate(0deg)
    ;transition: all .5s ease;
    
}
.el_accordionArea_ttl::after{    
    top:48%;
    right: 15px;
    transform: rotate(90deg);
    transition: all .5s ease;

}
/*　closeというクラスがついたら形状変化　*/
.el_accordionArea_ttl.close::before{
    transform: rotate(-45deg);
}

.el_accordionArea_ttl.close::after{
    transform: rotate(45deg);
}

.el_accordionArea_table li{
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background-color: #fff;
    color: #222;
    padding: 10px;
    margin: 0!important;
}

.el_accordionArea_table li:first-child {
    background-color: #f5f5f5;
}

.bl_question_footer {
    font-size: 18px;
}
  

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

    .el_head {
        width: 85rem;
    }

    .contents::before {
        -webkit-background-size: 60%;
        background-size: 60%;
    }

    .el_mgb-m {
        margin-bottom: 30px!important;
    }

    .el_paragraph {
        display: block;
    }

    .el_img-wrapper {
        padding: 0;
    }

    .el_pc {
        display: none;
    }
    
    .el_sp {
        display: inline-block;
    }

    .el_btn.el_dlBtn {
        padding: 3vw 4.6vw 3vw 9vw;
    }

    .el_dlBtn {
        font-size:min(7rem,30px);
        /* font-size: 7rem; */
        padding: 7px 20px 7px 40px;
        margin-bottom: 10rem;
    }

    .el_dlBtn::after {
        width: 10px;
        height: 10px;
        margin: 0 0 0.5vw 20px;
        border-right: 2px solid #00003E;
        border-bottom: 2px solid #00003E;
    }

    .el_btn {
        display: inline-block;
        /* 8px 15px 8px 30px */
        padding: 2.3vw 4.6vw 2.3vw 9vw;
        /* font-size: calc(0.8125rem + ((1vw - 3.2px) * 1.5625)); */
        border: 2px solid #636363;
    }

    .el_btn::after {
        padding-left: 15px;
    }

    .el_scrolldown {
        bottom: -45px;
        left: 50%;
    }

    .el_scrolldown span {
        font-size: 10px;
    }

    .el_scrolldown:before {
        width: 8px;
        height: 8px;
        left: -3px;
    }

    .el_scrolldown:after {
        height: 40px;
        bottom: -5px;
    }

    @keyframes circlemove{
        0%{bottom:30px;}
       100%{bottom:-10px;}
   }

    @keyframes circlemove{
        0%{bottom:30px;}
       100%{bottom:-10px;}
   }


    .linkBtn {
        display: none;
    }

    .linkBtn_sp_wrapper {
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        z-index: 15;
        position: fixed;
        width: 100%;
        background: rgb(0 0 0 / 75%);
        padding: 5rem;
    }

    .linkBtn_sp{
        max-width: 100%;
        width: 65%;
        margin: 0 auto;
        -webkit-animation: jello-horizontal 6s infinite both;
	    animation: jello-horizontal 6s infinite both;
    }
    
    @-webkit-keyframes jello-horizontal {
        0% {
        -webkit-transform: scale3d(1, 1, 1);
                transform: scale3d(1, 1, 1);
        }
        5% {
        -webkit-transform: scale3d(1.01, 0.99, 1);
                transform: scale3d(1.01, 0.99, 1);
        }
        10% {
        -webkit-transform: scale3d(0.99, 1.02, 1);
                transform: scale3d(0.99, 1.02, 1);
        }
        15% {
        -webkit-transform: scale3d(1.01, 0.99, 1);
                transform: scale3d(1.01, 0.99, 1);
        }
        25% {
        -webkit-transform: scale3d(0.99, 1, 1);
                transform: scale3d(0.99, 1, 1);
        }
        30% {
        -webkit-transform: scale3d(1, 1, 1);
                transform: scale3d(1, 1, 1);
        }
        80%, 100% {
        -webkit-transform: scale3d(1, 1, 1);
                transform: scale3d(1, 1, 1);
        }
    }
    @keyframes jello-horizontal {
        0% {
            -webkit-transform: scale3d(1, 1, 1);
                    transform: scale3d(1, 1, 1);
        }
        5% {
            -webkit-transform: scale3d(1.01, 0.99, 1);
                    transform: scale3d(1.01, 0.99, 1);
        }
        10% {
            -webkit-transform: scale3d(0.99, 1.02, 1);
                    transform: scale3d(0.99, 1.02, 1);
        }
        15% {
            -webkit-transform: scale3d(1.01, 0.99, 1);
                    transform: scale3d(1.01, 0.99, 1);
        }
        25% {
            -webkit-transform: scale3d(0.99, 1, 1);
                    transform: scale3d(0.99, 1, 1);
        }
        30% {
            -webkit-transform: scale3d(1, 1, 1);
                    transform: scale3d(1, 1, 1);
        }
        80%, 100% {
            -webkit-transform: scale3d(1, 1, 1);
                    transform: scale3d(1, 1, 1);
        }
    }
  

    .bl_top {
        padding: 12rem 0 3rem;
        min-height: 80vh;
        margin-bottom: 10rem;
    }

    .bl_top_cast {
        width: 130rem;
        margin-top: 10rem;
        max-width: 650px;
    }

    .bl_top_head {
        width: 130rem;
        margin: 0 auto min(10rem,30px);
        max-width: 650px;
    }

    .bl_member {
        padding: 15rem 0 8rem;
        margin: 0 auto 10rem;
    }

    .bl_member_wrapper {
        margin-top: 10rem;
    }

    .bl_member_list {
        min-height: 212rem;
    }

    .bl_member_airi {
        left: 33%;
        top: 45rem;
        width: 65rem;
    }

    .bl_member_fearin {
        left: 69%;
        top: 110rem;
        width: 65rem;
    }

    .bl_member_ikumi {
        left: 33%;
        top: 180rem;
        width: 65rem;
    }

    .bl_about {
        padding: 15rem 0 25rem;
        z-index: 10;
    }

    .bl_about_inner {
        padding: 0 2%;
    }

    .bl_about_head {
        margin: 3rem auto 17rem;
    }

    .bl_about_box {
        padding: 10rem 3rem;
    }

    .bl_about_box::before {
        display: none;
    }

    .bl_about_decoItem {
        width: 120rem;
    }

    .bl_about_decoTop {
        top: 1%;
    }
    
    .bl_about_decoBtm {
        bottom: -5%;
    }

    .bl_about_subHead {
        width: 120rem;
        margin: 12rem auto 7rem;
    }

    .bl_about_txt {
        font-size: 7rem;
        margin-bottom: 5rem;
    }

    .bl_about_ruleBox {
        margin-bottom: 1rem;
    }

    .bl_about_rule {
        font-size: 6rem;
        margin-bottom: 2rem;
    }

    .bl_about_rule > span {
        border-bottom: 1px #ccc solid;
        padding-bottom: 2rem;
    }

    .bl_about_subRule {
        font-size: 6rem;
        margin-bottom: 15rem;
    }

    .bl_about_present_head {
        margin: 0 auto 10rem;
        width: 100rem;
    }

    .bl_about_caution {
        font-size: 5rem;
        margin: 7rem auto;
    }

    .bl_about_decoImg {
        width: 40rem;
        margin: 0 auto 10rem;
    }

    .bl_about_talkTxt {
        font-size: 6rem;
        margin-bottom: 10rem;
    }


    /* question */
    .bl_question {
        padding: 9rem 2%;
    }

    /* アコーディオン */
    .el_accordionArea {
        width: 100%;
        max-width: 600px;
        margin: 0 auto 12rem;
    }

    .bl_question_head {
        margin: 5rem auto 6rem;
    }

    .el_accordionArea section {
        box-shadow: 2px 2px 4px rgb(150 131 113 / 75%);
    }

    .el_accordionArea li{
        margin: 4rem 0;
    }

    .el_accordionArea_ttl {
        /* 20px-16px */
        font-size: 4.9rem;
        padding: 3% 35px 3% 2%;
    }

    /*アイコンの＋と×*/
    .el_accordionArea_ttl::before,
    .el_accordionArea_ttl::after{
        width: 11px;
        height: 2px;
        background-color: #737373;
        
    }
    .el_accordionArea_ttl::before{
        top:48%;
        right: 10px;
    }
    .el_accordionArea_ttl::after{    
        top:48%;
        right: 10px;
    }

    .el_accordionArea_detail {
        /* 18px-14px */
        font-size: 5.5rem
    }

    .bl_question_footer {
        font-size: 15px;
    }


}