@charset "utf-8";

.fadeIn{
    animation-name: fadeInAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    animation-delay: .5s;
    opacity:0;
    }
    
    @keyframes fadeInAnime{
        from {
        opacity: 0;
        }
    
        to {
        opacity: 1;
        }
    }
    
    .fadeInTrigger,
    .fadeInTrigger-inner{
        opacity: 0;
    }

/* レイアウトのためのCSS */
body{
    font-family: 'Noto Sans JP', sans-serif;
    color: #313134;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%; 
	word-wrap: break-word;
    margin: 0;
    padding: 0;
}

body::before {
    background-image:url(./img/bg.jpg);
    background-image:no-repeat;
    background-image:center;
    background-size: cover;
    content: "";
    position:fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
}

*{box-sizing: border-box;}

ul{
	margin:0;
	padding: 0;
	list-style: none;
    
}

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

a:hover{
    opacity: .6;
    transition: .3s;
}

small{
    display: block;
    margin-bottom: 80px;
}

header{
    z-index: 100;
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background: #192F47;
    color: #fff;
    width: 100%;
    height: 80px;
    padding-left: 30px;
    padding-right: 10px;
}

header a{
    z-index: 9999;
}

.headerLogo{
    width: 17%;
}

header img{
    width: 95%;
    object-fit: contain;
}

#g-nav ul{
    display: flex;
    justify-content: end;
}

#g-nav ul li a{
    position: relative;
	color: #fff;
    padding: 30px;
    font-size: 14px;
    letter-spacing: 0.05em;
    font-weight: 400;
}

#g-nav ul li:nth-child(-n+6) a::before{
    content: "";
    position: absolute;
    width: 0.5px;
    height: 15px;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background-color: #fff;
    opacity: 0.5;
}

.header-btn,
.btn{
    background-color: #b01d36;
    font-weight: bold;
    border-radius: 30px;
    color: #fff;
    position: relative;
}

.header-btn{
    padding: 12px 50px 12px 30px !important;
}

.btn{
    padding: 15px 110px 15px 90px;
}

.header-btn::before,
.btn::before{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 18px;
    height: 18px;
    border-radius: 30px;
    background-color: #fff;
}

.header-btn::after,
.btn::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 27px;
    transform: translateY(-50%) rotate(45deg);
    width: 3px;
    height: 3px;
    border-top: 2px solid #b01d36;
    border-right: 2px solid #b01d36;
}

@media screen and (max-width:1400px) {
    .headerLogo{
        width: 17%;
    }

    #g-nav ul li a{
        padding: 30px 28px;
        font-size: 13px;
    }
}

@media screen and (max-width:1300px) {
    .headerLogo{
        width: 17%;
    }

    #g-nav ul li a{
        padding: 30px 24px;
        font-size: 13px;
    }
}

@media screen and (max-width:1230px) {
    #g-nav ul li a{
        padding: 30px 20px;
    }
}

@media screen and (max-width:1160px) {
    #g-nav ul li a{
        padding: 30px 12px;
    }
}


@media screen and (max-width:1024px) {
    header{
        height:70px;
        justify-content: space-between;
        padding-left: 20px;
    }

    .headerLogo{
        width: 25%;
    }

    header img{
        width: 100%;
    }
        
}

/*===========================================================*/
/*機能編  5-1-21 クリックしたら円形背景が拡大（右下から）*/
/*===========================================================*/
/*========= ナビゲーションのためのCSS ===============*/
@media screen and (max-width:1024px) {

/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width:100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
    z-index:3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #313134;
    /*丸のスタート位置と形状*/
    transform: scale(0);/*scaleをはじめは0に*/
    right:-50px;
    bottom:-50px;
    transition: all .6s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
    transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
    display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
    opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-45%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 5%;
    background-color: #313134;
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}


/*リストのレイアウト設定*/
#g-nav ul li{
    text-align: center; 
    list-style: none;
    border-top: 1px solid #fff;
}

#g-nav ul li:nth-child(1){
    display: none;
}

#g-nav ul li a{
    color: #fff;
    text-decoration: none;
    padding: 6% 0;
    display: block;
    letter-spacing: 0.1em;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

#g-nav ul li:nth-child(-n+7) a::before{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 23px;
    height: 23px;
    border-radius: 30px;
    background-color: #fff;
    opacity: 1;
}

#g-nav ul li:nth-child(-n+7) a::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 29px;
    transform: translateY(-50%) rotate(45deg);
    width: 5px;
    height: 5px;
    border-top: 2px solid #313134;
    border-right: 2px solid #313134;
}

.header-btn{
    margin-top: 50px !important;
    padding: 25px 50px 25px 30px !important;
    border-radius: 50px;
}

.header-btn::before{
    right: 20px;
    width: 23px;
    height: 23px;
}

.header-btn::after{
    right: 29px;
    width: 5px;
    height: 5px;
}

.btn{
    padding: 20px 110px 20px 90px;
    border-radius: 50px;

}
    
}

@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}

/*===========================================================*/
/*機能編  5-2-1　3本線が×に*/
/*===========================================================*/

.openbtn{
    display: none;
}

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

.openbtn{
    display: block;
    position:fixed;
    top:0;
    right: 0;
    z-index: 9999;/*ボタンを最前面に*/
    cursor: pointer;
    width: 70px;
    height:70px;
    background:#b01d36;
}
    
/*×に変化*/	
.openbtn span{
    z-index: 999;
    display: inline-block;
    transition: all .4s;
    position: absolute;
    right: 16px;
    height: 1px;
    background-color: #fff;
    width: 50%;
    }

.openbtn span:nth-of-type(1) {
    top:23px;	
}

.openbtn span:nth-of-type(2) {
    top:36px;
}

.openbtn span:nth-of-type(3) {
    top:48px;
}

.openbtn.active span:nth-of-type(1) {
    top: 41px;
    right: 20px;
    transform: translateY(6px) rotate(-30deg);
    width: 50%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 52px;
    right: 20px;
    transform: translateY(-6px) rotate(30deg);
    width: 50%;
}
}

@media screen and (max-width:768px) {
.headerLogo{
    width: 45%;
}

.openbtn{
    width:70px;
    height: 70px;
}
/*×に変化*/	
.openbtn span{
    right: 17px;
}

.openbtn span:nth-of-type(1) {
    top:23px;	
}

.openbtn span:nth-of-type(2) {
    top:33px;
}

.openbtn span:nth-of-type(3) {
    top:43px;
}

.openbtn.active span:nth-of-type(1) {
    top: 28px;
    right: 17px;
}

.openbtn.active span:nth-of-type(3){
    top: 40px;
    right: 17px;
}
    
}

#vidual-area{
    height: 100vh;
}

.element {
    min-height: 100vh;
    height: auto;
    box-sizing: border-box;
    padding-bottom: calc(env(safe-area-inset-bottom) + 50px); /* 50pxは任意の値 */
  }

.vidual-img{
    z-index: -1;
    position: absolute;
    bottom: 50%;
    transform: translateY(57%);
    right: 0;
    width: 80%;
    height: 75%;
    object-fit: cover;
}

.vidual-text-area{
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 13%;
    padding-top: 200px;
    margin-left: 11%;
}

.vidual-text-area h1{
    font-family: "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", "MS Gothic", sans-serif;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 14px;
    font-weight: bolder;
    line-height: 2.5rem;
    letter-spacing: 7px;
    margin-top: 70px;
}

.vidual-text-area h1 span{
    background-color: #fff;
    padding: 5px;
}

.pc-h1{
    margin-top: 70px !important;
}

.sp-h1{
    display: none;
}

@media screen and (max-width:1024px) {
    .vidual-img{
        position: absolute;
        bottom: 40%;
        transform: translateY(0);
        width: 100%;
        height: 40%;
        object-fit: cover;
    }
    
    .logo-img{
        position: absolute;
        top: 110px;
        left: 55px;
        width: 30%;
    }
    
    
    .vidual-text-area h1{
        position: absolute;
        bottom: 10%;
        left: 50%;
        transform: translate(-50%, 20%);
        font-size: 1.5em;
        line-height: 5rem;
        letter-spacing: 0.3rem;
    }
    
    .vidual-text-area h1 span{
        background-color: transparent;
    }

    .pc-h1{
        display: none !important;
    }
    
    .sp-h1{
        display: block;
        position: absolute;
        bottom: 10%;
        left: 50%;
        transform: translate(-50%, 20%);
        width: 40%;
        object-fit: contain;
    }
}

@media screen and (max-width:768px){
    .vidual-img{
        top: 20%;
        height: 40%;
    }

    .logo-img{
        top: 100px;
        left: 28px;
        width: 33%;
    }
    
    
    .vidual-text-area h1{
        font-size: 1em;
        line-height: 3.5rem;
    }

    .sp-h1{
        width: 53%;
        bottom: 10%;
    }

}

@media screen and (max-width:395px){
    .vidual-img{
        top: 22%;
        height: 39%;
    }

    .logo-img{
        top: 100px;
        left: 28px;
        width: 33%;
    }
    
    
    .vidual-text-area h1{
        font-size: 1em;
        line-height: 3.5rem;
    }

    .sp-h1{
        width: 51%;
        bottom: 10%;
    }

}

@media screen and (max-width:375px){
    .vidual-text-area h1{
        left: 50%;
        transform: translate(-50%, 0);
        bottom: 3%;
        font-size: 0.8rem;
        line-height: 3rem;
    }

    .vidual-img{
        top: 23.5%;
        height: 37%;
    }

    .logo-img{
        top: 100px;
        left: 28px;
        width: 33%;
    }

    .sp-h1{
        width: 50%;
        bottom: 10%;
    }

}

.inner{
    width: 100%;
    text-align: center;
}

.inner h2{
    z-index: 2;
    font-size: 35px;
    font-weight: 500;
    letter-spacing: 0.1rem;
    line-height: 2.5rem;
    margin-bottom: 70px;
    position: relative;
}

.inner h2::before{
    content: "";
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translate(50%, 30px);
    width: 70px;
    height: 2px;
    background: #313134;
}

#lead{
    margin-top: 28px;
    padding-bottom: 100px;
}

#lead img{
    width: 6%;
    object-fit: contain;
}

#lead span{
    font-size: 20px;
    letter-spacing: 0.08rem;
    font-weight: bold;
}

#lead p{
    font-size: 16px;
    letter-spacing: 0.05rem;
    line-height: 2.5rem;
    font-weight: 100;
}

.indention{
    display: none;
}

@media screen and (max-width:768px) {
    .inner h2{
        z-index: 2;
        font-size: 28px !important;
    }
    
    .inner h2::before{
        transform: translate(50%, 25px) !important;
    }

    #lead{
        padding-left: 3%;
        padding-right: 3%;
        padding-bottom: 40px;
    }

    #lead img{
        width: 20%;
    }
    
    #lead h2{
        font-size: 40px;
        letter-spacing: 0.05rem;
        margin-bottom: 70px;
        position: relative;
    }
    
    #lead h2::before{
        content: "";
        position: absolute;
        bottom: 0;
        right: 50%;
        transform: translate(50%, 30px);
        width: 70px;
        height: 2px;
        background: #313134;
    }
    
    #lead span{
        font-size: 18px;
    }
    
    #lead p{
        font-size: 14px;
        letter-spacing: 0.04rem;
        font-weight: 500;
        margin-top: 30px;
    }

    .indention{
        display: block;
    }

    .no-indention{
        display: none;
    }
}


#benefit,
#guest-voice{
    padding-top: 100px;
    position: relative;
    background-color: #eeeeee;
}

.back-logo{
    z-index: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 80%;
    object-fit: contain;
}

#brand,
#flow{
    padding-top: 50px;
}

#enjoy,
#plan{
    padding-bottom: 100px;
}

@media screen and (max-width:1024px) {
    .back-logo{
        display: none;   
    }
}

@media screen and (max-width:768px){
    #benefit,
    #guest-voice{
        padding-top: 40px;
    }
    
    #brand,
    #flow{
        padding-top: 50px;
    }
    
    #enjoy,
    #plan{
        padding-bottom: 80px;
    }

    .back-logo{
        display: none;   
    }
}

.benefit-list,
.brand-list,
.enjoy-list,
.flow-step{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: stretch;
}

.benefit-list{
    padding:  0 20% 100px 20%;
}

.brand-list{
    padding: 0 20%;
}

.enjoy-list{
    padding:  0 20% 100px 20%;
}

.guest-voice-list{
    padding:  0 20% 100px 20%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

.flow-step{
    padding: 70px 15% 50px 15%;
}

.benefit-list li,
.brand-list li,
.enjoy-list li,
.flow-step li{
    width: 30%;
    margin: 0 10px 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.benefit-list li,
.guest-voice-list li{
    z-index: 2;
}

.benefit-list li,
.brand-list li{
    padding: 3.5%;
}
.brand-list li{
    justify-content: space-between;
}

.enjoy-list li{
    padding: 0;
}

.benefit-list li{
    background: #fff;
}

.guest-voice-list li{
    width: 100%;
    margin: 0 10px 30px 10px;
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    align-items: stretch;
    position: relative;
}

.guest-voice-list li:nth-child(2n-1){
    flex-direction: row;
}

.guest-voice-list li:nth-child(2n){
    flex-direction: row-reverse;
}

.flow-step li{
    width: 20%;
    background-color: #fff;
    border: 1px solid #cccccc;
    border-radius: 15px;
    padding: 3%;
    position: relative;
}

.flow-step li:nth-child(-n+3)::before,
.flow-step li:nth-child(n+1)::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}

.flow-step li:nth-child(-n+3)::before{
    right: -26%;
    width: 30%;
    height: 2px;
    background-color: #006cb8;
}

.flow-step li:nth-child(n+2)::after{
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #006cb8;
    left: 2px;
}

.benefit-list span,
.flow-step span{
    font-family: 'Roboto', sans-serif;
    position: absolute;
    color: #fff;
}

.benefit-list span{
    top: 0;
    left: 0;
    font-size: 30px;
    background-color: #b01d36;
    padding: 30px 22px 22px 20px;
}

.flow-step span{
    top: -40px;
    left: 50%;
    font-size: 25px;
    transform: translateX(-50%);
    background-color: #006cb8;
    padding: 32px 30px 12px 30px;
    border-radius: 60px;
}

.benefit-list span::before,
.flow-step span::before{
    font-family: 'Roboto', sans-serif;
    position: absolute;
    font-size: 12px;
    letter-spacing: 0.05rem;
    font-weight: bold;
}

.benefit-list span::before{
    font-family: 'Roboto', sans-serif;
    content: "POINT";
    top: 15px;
    left: 9px;
    letter-spacing: 0.1rem;
}

.benefit-list span::after{
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 31px solid transparent;
    border-right: 31px solid transparent;
    border-bottom: 13px solid #fff;
    position: absolute;
    bottom: 0;
    left: 0;
}

.flow-step span::before{
    font-family: 'Roboto', sans-serif;
    content: "STEP";
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 0.1rem;
}

.benefit-list li img{
    width: 60%;
    object-fit: contain;
}

.flow-step li dl{
    padding-top: 20px;
}

.benefit-list li dt,
.flow-step li dt{
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05rem;
    margin-bottom: 10%;
}

.benefit-list li dd,
.flow-step li dd{
    font-size: 12px;
    letter-spacing: 0.05rem;
    line-height: 1.3rem;
    text-align: left;
    margin: 0;
}

.brand-list li img{
    width: 105%;
    height: 100%;
    object-fit: contain;
    margin-bottom: 30px;
}

.enjoy-list li img{
    width: 100%;
    object-fit: cover;
}

.guest-voice-list li img{
    width: 15%;
    border-radius: 50%;
    object-fit: cover;
}

.brand-list li p,
.enjoy-list li p,
.guest-voice-list li p{
    font-size: 14px;
    letter-spacing: 0.09rem;
    position: relative;
}

.brand-list li p{
    font-weight: bold;
    font-family: serif;
}

.enjoy-list li p{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
}

.brand-list li p::before,
.brand-list li p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background-color: #313134;
}

.brand-list li p::before {
  left: -60px;
}

.brand-list li p::after {
  right: -60px;
}

.guest-voice-list li p{
    width: 80%;
    text-align: left;
    padding: 3%;
    background-color: #fff;
    line-height: 1.3rem;
    border-radius: 20px;
    position: relative;
    margin: 0;
}

.guest-voice-list li p::before{
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #fff;
    position: absolute;
    top: 30px;
}

.guest-voice-list li:nth-child(2n-1) p::before{
    left: -15px;
    transform: rotate(45deg);
}

.guest-voice-list li:nth-child(2n) p::before{
    right: -15px;
    transform: rotate(-45deg);
}

.guest-voice-list li span{
    position: absolute;
    right: 4%;
    bottom: 10%;
    font-size: 14px;
    letter-spacing: 0.09rem;
}

.guest-voice-list li:nth-child(2n) span{
    right: 21%;
}


@media screen and (max-width:1024px){
    .benefit-list,
    .brand-list,
    .enjoy-list,
    .flow-step{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
        align-items: stretch;
    }
    
    .benefit-list,
    .enjoy-list{
        padding:  0 5% 40px 5%;
    }
    
    .brand-list{
        padding: 0 5%;
    }
    
    .guest-voice-list{
        padding: 0 5% 40px 5%;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
    }
    
    .flow-step{
        padding: 30px 5% 20px 5%;
        flex-direction: column;
    }
    
    .benefit-list li,
    .enjoy-list li{
        width: 40%;
        margin: 0 0 30px 0;
        padding-right: 8%;
        padding-left: 8%;
    }

    .flow-step li{
        width: 100%;
        margin: 0 0 20px 0;
    }

    .brand-list li{
        width: 40%;
        height: 300px;
        margin: 0 5px 20px 5px;
        padding: 5%;
    }
    
    .enjoy-list li{
        padding: 0;
    }
    
    .benefit-list li{
        background: #fff;
    }


    .guest-voice-list li{
        width: 100%;
        margin: 0 0 30px 0;
        align-items: start;
    }
   
    .flow-step li{
        padding: 5%;
    }
    
    .flow-step li:nth-child(-n+3)::before,
    .flow-step li:nth-child(n+2)::after{
        content: "";
        position: absolute;
        transform: translateY(-0);
        z-index: 2;
    }
    
    .flow-step li:nth-child(-n+3)::before{
        width: 1px;
        height: 62%;
        left: 10%;
        top: 52%;
    }
    
    .flow-step li:nth-child(n+2)::after{
        display: inline-block;
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 8px solid #006cb8;
        left: 9.2%;
        top: 0;
    }
    
    .benefit-list span,
    .flow-step span{
        font-family: 'Roboto', sans-serif;
        position: absolute;
        color: #fff;
    }
    
    .benefit-list span{
        padding: 30px 26px 22px 26px;
    }
    
    .flow-step span{
        top: 12%;
        left: 5%;
        transform: translateX(0);
    }
    
    .benefit-list span::before,
    .flow-step span::before{
        font-size: 12px;
    }
    
    .benefit-list span::before{
        top: 15px;
        left: 15px;
    }
    
    .benefit-list span::after{
        border-left: 35px solid transparent;
        border-right: 35px solid transparent;
        border-bottom: 13px solid #fff;
    }
    
    .flow-step span::before{
        font-family: 'Roboto', sans-serif;
        content: "STEP";
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .benefit-list li img{
        width: 50%;
    }
    
    .flow-step li dl{
        padding-top: 0;
        text-align: left;
        margin: 0 0 4% 10%;
        width: 70%;
    }
    
    .benefit-list li dt,
    .flow-step li dt{
        font-size: 18px;
        margin-bottom: 3%;
    }
    
    .benefit-list li dd,
    .flow-step li dd{
        font-size: 14px;
        line-height: 1.5rem;
        margin: 0;
    }
    
    .brand-list li img{
        max-width: 90%;
        height: auto;
        object-fit: contain;
        margin-bottom: 30px;
    }
    
    .enjoy-list li img{
        width: 100%;
    }
    
    .guest-voice-list li img{
        width: 22%;
        object-fit: contain;
    }
    
    .brand-list li p,
    .guest-voice-list li p{
        font-size: 13px;
    }

    .brand-list li p span{
        font-weight: 300; 
        font-size: 0.8em
    }
    
    .brand-list li p::before,
    .brand-list li p::after {
      width: 22px;
      height: 0.5px;
    }
    
    .brand-list li p::before {
      left: -30px;
    }
    
    .brand-list li p::after {
      right: -30px;
    }
    
    .guest-voice-list li p{
        width: 65%;
        padding: 5% 5% 15% 5%;
        line-height: 1.5rem;
    }
    
    .guest-voice-list li span{
        bottom: 5%;
        right: 7%;
    }
    
    .guest-voice-list li:nth-child(2n) span{
        right: 36%;
    }
}

@media screen and (max-width:768px){
    .benefit-list li,
    .enjoy-list li,
    .flow-step li{
        width: 100%;
        margin: 0 0 20px 0;
    }

    .brand-list li img{
        max-width: 160%;
        height: 100%;
        object-fit: contain;
        margin-bottom: 30px;
    }
    
    .flow-step li:nth-child(-n+3)::before,
    .flow-step li:nth-child(n+2)::after{
        content: "";
        position: absolute;
        transform: translateY(-0);
        z-index: 2;
    }
    
    .flow-step li:nth-child(-n+3)::before{
        width: 1px;
        height: 67%;
        left: 71px;
        top: 48%;
    }
    
    .flow-step li:nth-child(n+2)::after{
        display: inline-block;
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 8px solid #006cb8;
        left: 65.5px;
        top: 0;
    }
    
    .flow-step li dl{
        padding-top: 0;
        text-align: left;
        margin: 0 0 7% 30%;
    }
}
@media screen and (max-width:430px){
    .flow-step li:nth-child(-n+3)::before{
        height: 66%;
        left: 56px;
        top: 52%;
    }
    
    .flow-step li:nth-child(n+2)::after{
        left: 50.5px;
    }
}

@media screen and (max-width:365px){
    .flow-step li:nth-child(-n+3)::before{
        height: 66%;
        left: 53px;
        top: 51%;
    }
    
    .flow-step li:nth-child(n+2)::after{
        left: 47.5px;
    }
}

#plan h3{
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.05rem;
    padding: 1% 3%;
    background-color: #fff;
    border:  1px solid #cccccc;
    border-radius: 30px;
    position: relative;
}

#plan h3::before{
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-right: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
}

#plan p{
    font-family: 'Oswald', 'Noto Sans JP', sans-serif;
    font-size: 25px;
    letter-spacing: 0,9rem;
    color: #b01d36;
    font-weight: 900;
    letter-spacing: 0.2rem;
    margin-top: 10px;
    margin-bottom: 60px;
}

.price {
    font-size: 1.8em; /* 1.5倍の大きさにする */
    letter-spacing: 0.5rem;
}
  
.tax {
    font-size: 0.7em; /* 0.8倍の大きさにする */
}

@media screen and (max-width:768px){
    #plan h3{
        padding: 4% 10%;
    }
}

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    padding:  0 20% 100px 20%;
}

.accordion-area li{
    margin: 0;
    text-align: left;
}

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size: 16px;
    line-height: 1.5rem;
    font-weight: bold;
    padding: 3% 7%;
    transition: all .5s ease;
    color: #313134;
    background-color: #eeeeee;
}

.question,
.answer{
    font-size: 1.2em;
    margin-right: 20px;
    font-weight: bold;
    position: absolute;
    left: 3%;
}

.question{
    color: #006cb8;
}

.answer{
    color: #b01d36;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    background-color: #313134;
    transition: 0.3S;
}
.title::before{
    width: 20px;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}
.title::after{
    width: 2px;
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
    right: 29px;
}

/*　closeというクラスがついたら形状変化　*/

.title.close::after{
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    padding: 1% 3%;
    position: relative;
}

.box p{
    color: #707070 !important;
    line-height: 1.5rem;
    padding: 0 0 0 4.5%;
}
  
@media screen and (max-width:1024px){
    .accordion-area li{
        margin: 3px 0;
        text-align: left;
    }

    .accordion-area{
        list-style: none;
        padding:  0 5% 40px 5%;
    }

    .title{
        padding: 5% 15%;
    }

    .box{
        margin-top: 10px;
    }

    .box p{
        padding: 0 0 0 15%;
    }
    
    .question,
    .answer{
        position: absolute;
        left: 5%;
        font-size: 20px;
    }

    .question{
        top: 50%;
        transform: translateY(-50%);
    }
}

footer{
    width: 100%;
    background-color: #313134;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20%;
}

.attention{
    width: 30%;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 12px;
}

.attention img{
    width: 5%;
    margin-right: 10px;
}

.footer-nav{
    width: 70%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: end;
    align-items: center;
}

.footer-nav li a{
    color: #fff;
    font-size: 14px;
}

.footer-nav li:nth-child(-n+3) a{
    margin-right: 60px;
    position: relative;
}

.footer-nav li:nth-child(-n+3) a::before{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -30px;
    width: 0.5px;
    height: 15px;
    background-color: #fff;
    opacity: 0.5;
}

@media screen and (max-width:1024px){
    footer{
        flex-direction: column;
        justify-content: space-between;
        padding: 15px 5%;
    }
    
    .attention{
        width: 100%;
        justify-content: center;
        font-size: 16px;
        border-bottom: 0.5px solid #fff;
        padding: 5% 0;
    }
    
    .attention img{
        width: 6%;
    }
    
    .footer-nav{
        width: 100%;
        flex-direction: column;
        justify-content: center;
        margin: 30px 0;
    }
    
    .footer-nav li a{
        font-size: 16px;
        font-weight: bold;
    }

    .footer-nav li {
        margin: 15px auto;
    }
    
    .footer-nav li:nth-child(-n+3) a{
        margin-right: 0;
    }
    
    .footer-nav li:nth-child(-n+3) a::before{
        display: none;
    }
}

/* footer-page */

#footer-page{
    width: 50%;
    margin: 0 auto;
    padding-top: 10%;
    padding-bottom: 3%;
}

#footer-page h2{
    margin: 0;
    text-align: center;
}

#footer-page dt{
    margin-bottom: 10px;
    font-size: 1.2em;
    font-weight: bold;
}

#footer-page dd{
    font-size: 1.1em;
    line-height: 1.5em;   
}

#footer-page p{
    line-height: 1.5em;   
}

#footer-page span{
    font-weight: bold;
}

@media screen and (max-width:1024px){
    #footer-page{
        padding-top: 25%;
        width: 90%;
    }
}