@charset "utf-8";

body{
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    color: #1a1a1a;
}

h1 a{
    z-index: 100;
    position: sticky;
}

h2 img{
    width: -webkit-fill-available;
}

h3{
    font-family: "Noto Serif JP", serif;
    font-size: 35px;
    background: linear-gradient(to right, rgba(0, 175, 221, 0.8) 0%, rgba(0, 175, 221, 0.5) 100%);
    border-radius: 50px;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    margin: 37px 0 0 0;
}

@media(max-width:1200px){
    h3{
        font-size: 27px;
        margin: 50px 0 30px 0;
    }
}

@media(max-width:900px){
    h3{
        font-size: 20px;
        margin: 35px 0 12px 0;
    }
}

h4{
    font-size: 27px;
    font-weight: bold;
}

@media(max-width:900px){
    h4{
        font-size: 16px;
    }
}

h5 img{
    max-width: 432px;
    margin: 0 0 13px 0;

}

@media(max-width:900px){
    h5 img{
        max-width: 278px;
    }
}

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

p{
    letter-spacing: 0.1px;
}

@media(max-width:900px){
    p{
        font-size: 13px;
        letter-spacing: -0.5px;
    }
    figcaption{
        font-size: 13px;
        padding: 8px 0 0 0;
    }
    li{
        font-size: 13px;
    }
}

img {
    max-width: 100%;
}

@media(max-width:900px){
    figure img{
        display: block;
        width: -webkit-fill-available;
    }
}

.title{
    font-size: 27px;
    text-align: center;
}

@media(max-width:1200px){
    .title{
        font-size: 20px;
    }
}

@media(max-width:900px){
    .title{
        font-size: 18px;
    }
}


.text-2{
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-size: 27px;
    letter-spacing: -1.2px;
}

@media(max-width:900px){
    .text-2{
        font-size: 18px
    }
}

.text-2 span{
    font-size: 13px;
}

@media(max-width:900px){
    .text-2 span{
        font-size: 12px;
    }
}

.bold{
    font-weight: bold;
}

.text-right{
    text-align: right;
    display: block;
}

.question-bar-pc img{
    width:-webkit-fill-available;
    margin: -24px 0 22px 0;
}

@media(min-width:1400px){
    .question-bar-pc img {
        margin: -50px 0 50px 0;
    }
}

.question-bar-sp{
    display: none;
}

@media(max-width:550px){
    .question-bar-sp{
        display: block;
    }
    .question-bar-pc{
        display: none;
    }
}






/*///////////////////////////////////////

color

///////////////////////////////////////*/
.bg-pink{
    background-color: #E9528E;
}

.bg-blue{
    background-color: #00AFDD;
}

.bg-blue-gradint{
    background: linear-gradient(to right, rgba(0, 175, 221, 0.8) 0%, rgba(0, 175, 221, 0.5) 100%);
}

.bg-gradient{
    background: linear-gradient(180deg, #FFFFFF 10%, #BBD4EF 50%, #F7C8CE 100%);
}

.bg-gradient2{
    background: linear-gradient(180deg, #FFFFFF 30%, #BBD4EF 50%, #F7C8CE 100%);
}

.bg-gradient-light{
    background: linear-gradient(
    90deg,
    rgba(187, 212, 239, 0.5) 0%,
    rgba(247, 200, 206, 0.5) 100%
    );
    border-radius: 0 !important;
}

.bg-gray{
    background-color: #eeecec;
    padding: 20px 10px;
    border-radius: 20px;
}

.bg-white{
    background: #fff;
}

.pink{
    color: #EB6D8E;
}

.white{
    color: #fff;
}





/*//////////////////////////////////////

layout

//////////////////////////////////////*/
.l-flex{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

@media(max-width:1200px){
    .l-flex{
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media(max-width:900px){
    .l-flex{
        gap: 16px;
    }
}

.l-flex-line{
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    gap: 10px;
}

@media(max-width:1200px){
    .l-flex-line{
        flex-wrap: wrap;
    }
}

@media(max-width:900px){
    .l-flex-reverse{
        flex-direction: column-reverse;
    }
}

.l-flex img{
    max-width: 430px;
}

@media(max-width:900px){
    .l-flex img {
        max-width: 312px;
    }
}

.l-wrapper{
    margin: 0 auto;
    padding: 0 10px;
    max-width: 920px;
}

@media(max-width:1200px){
    .l-wrapper{
        max-width: 730px;
        padding: 0 25px;
    }
}

@media(max-width:900px){
    .l-wrapper{
        max-width: 352px;
        padding: 0 25px;
    }
}

.l-2-colum{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media(max-width:900px){
    .l-2-colum{
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
    }
}

.l-3-colum{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media(max-width:900px){
    .l-3-colum{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}






/*//////////////////////////////////////

side-banner

//////////////////////////////////////*/

.side-banner {
    position: fixed;
    right: 0;
    top: 80px;
    z-index: 1000;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 35px;
}   

@media(max-width:900px){
    .side-banner{
        flex-direction: row;
        right: auto;
        bottom: 0 !important;
        height: 60px;
        top: auto;
        max-width: 375px;
        gap: 8px;
    }
    .side-banner a{
        font-size: 13px;
    }
}

.side-banner a:hover {
    opacity: 0.7;
}

@media(max-width:900px){
    .side-banner a:hover {
        opacity: 1;
    }
}

/* 追従ボタン */
.tracking{
    align-items: center;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    left: 50%;
    opacity: 0;
    transform: translateX(-50%);
    transition: opacity .5s ease-in-out;
    visibility: hidden;
    width: 100%;
    z-index: 100;
}

.tracking.is-active {
    opacity: 1;
    visibility: visible;
}

.side-button-pink{
    width: 182px;
    background-color: #E9528E;
    padding: 11px 0;
    border-radius: 13px 13px 0 0;
    display: block;
}

.side-button-blue{
    width: 182px;
    background-color: #00afdd;
    padding: 11px 0;
    border-radius: 13px 13px 0 0;
    display: block;
}








/*//////////////////////////////////////

main

//////////////////////////////////////*/
main{
    background-image: url(../img/MV.jpg);
    height: 600px;
    background-position: center;
    background-size: cover;
}

@media(max-width:900px){
    main{
        background-image: url(../img/mv-sp.webp);
        height: 450px;
    }
}

.main__wrapper{
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}

@media(max-width:1200px){
    .main__wrapper{
        max-width: 750px;
    }
}

@media(max-width:900px){
    .main__wrapper{
        max-width: 390px;
    }
}

.logo{
    position: absolute;
    top: 52px;
    left: 151px;
}

.logo:hover{
    opacity: 0.7;
}

@media(max-width:900px){
    .logo:hover{
        opacity: 1;
    }
}

.logo img{
    max-width: 340px;
}

@media(max-width:1200px){
    .logo{
        left: 70px;
    }
    .logo img{
        max-width: 200px;
    }
}

@media (max-width: 900px) {
    .logo {
        left: 21px;
        top: 0;
    }
    .logo img{
        max-width: 250px;
    }
}

.mv-text{
    max-width: 480px;
    position: absolute;
    top: 152px;
    left: 148px;
}

@media(max-width:1200px){
    .mv-text{
        max-width: 299px;
        left: 70px;
        top: 176px;
    }
}

@media (max-width: 900px) {
    .mv-text {
        max-width: 200px;
        left: 17px;
        top: 169px;
    }
}

.mv-parts{
    max-width: 442px;
    position: absolute;
    right: 148px;
}

@media(max-width:1200px){
    .mv-parts{
        right: 75px;
    }
}

@media(max-width:900px){
    .mv-parts{
        right: 0px;
        max-width: 100%;
    }
}

.mv{
    width: -webkit-fill-available;
}

.gimonn{
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 74px 10px 81px 10px;
}

@media(max-width:900px){
    .gimonn{
        padding: 37px 10px 67px 10px;
    }
}

.gimonn img{
    margin: 0 auto;
}

.gimonn img:first-of-type{
    width: 518px;
    margin: 0 auto 18px auto
}

.gimonn img:nth-of-type(2){
    width: 403px;
}

@media(max-width:900px){
    .gimonn img:nth-of-type(2){
        max-width: 200px;
    }
}

.gimon__wrapper{
    max-width: 760px;
    margin: 20px auto -21px auto;
    display: flex;
    gap: 16px;
}

@media(max-width:1200px){
    .gimon__wrapper{
        max-width: 700px;
        margin: 20px auto auto;
    }
}

@media(max-width:900px){
    .gimon__wrapper{
        flex-direction: column;
    }
}

.gimon-button img{
    width: 243px !important;
}

.gimon-button:hover{
    opacity: 0.7;
}


@media(max-width:900px){
    .gimon-button {
        margin: 3px 0 -29px 0;
    }
    .gimon-button:hover{
        opacity: 1;
    }
}





/*//////////////////////////////////

automotive-industry

/////////////////////////////////*/
.automotive-industry{
    padding: 0 0 50px 0;
}

@media(max-width:900px){
    .automotive-industry {
        padding: 0 0 38px 0;
    }
}

.automotive-industry-bg{
    background-image: url(../img/automotive-industry-bg.png);
    background-size: cover;
    margin: 0 auto;
    background-position: top;
    padding: 143px 0 36px 0;
    position: relative;
    max-width: 980px;
}

.automotive-industry-bg-bottom{
    background-image: url(../img/automotive-industry-bg.png);
    background-size: cover;
    margin:-52px auto 0;
    background-position: bottom;
    padding: 0px 0 46px 0;
    max-width: 980px;
}

@media(max-width:1200px){
    .automotive-industry-bg,.automotive-industry-bg-bottom{
        max-width: 730px;
    }
}

@media(max-width:900px){
    .automotive-industry-bg,.automotive-industry-bg-bottom{
        max-width: 390px;
        background-image: url(../img/automotive-industry-bg-sp.png);
    }
    .automotive-industry-bg{
        margin: 11px auto 0;
        padding: 92px 0 46px 0;
    }
    .automotive-industry-bg-bottom{
        padding: 0 0 24px 0;
    }
}

.a-img{
    position: absolute;
    width: 100px;
    right: -35px;
    top: 20px;
}

@media(max-width:1200px){
    .a-img{
        right: -20px;
    }
}

@media(max-width:900px){
    .a-img{
        width: 50px;
        right: 11px;
    }
}

.intoro{
    font-size: 20px;
    text-align: center;
    letter-spacing: 0.9px;
    margin: 0 0 85px 0;
}

@media(max-width:1200px){
    .intoro{
        font-size: 16px;
    }
}

@media(max-width:900px){
    .intoro{
        font-size: 13px;
        text-align: left;
        letter-spacing: -0.5px;
        margin: 0 0 105px 0;
    }
}

.automotive-industry-item1{
    width: 373px;
    margin: -100px 0 0 0;
}

.automotive-industry-item2{
    width: 394px;
}

.automotive-industry-item3{
    margin: 36px 0 0 0;
}

.automotive-industry-item4{
    width: -webkit-fill-available;
    margin: 18px 0 31px 0;
}

@media(max-width:900px){
    .automotive-industry-item4{
        margin: 22px 0 51px 0;
    }
}


.automotive-industry-item5{
    width: 232px;
    margin: 10px 0 0 0;
}

.automotive-industry-box{
    max-width: 432px;
}

.automotive-industry-box-text{
    padding: 20px 0 20px 0;
}

@media(max-width:900px){
    .automotive-industry-box-text {
        padding: 10px 0;
    }
}

.automotive-industry-box span{
    font-size: 13px;
}

@media(max-width:900px){
    .automotive-industry-box span{
        font-size: 11px;
    }
}

.automotive-industry-box2{
    max-width: 627px;
    padding: 19px 0 00;
    letter-spacing: -0.1px;
}

@media(max-width:900px){
    .automotive-industry-box2{
        padding: 24px 0 00;
    }
}

.introduction-box-first{
    margin: 51px 0 40px 0;
}

@media(max-width:900px){
    .introduction-box-first{
        margin: 51px 0 16px 0;
    }
}

.introduction-box{
    margin: 0 0 40px 0;
}

@media(max-width:900px){
    .introduction-box{
        margin: 0 0 20px 0;
    }
}

.introduction-text__wrapper{
    max-width: 548px;
}

.introduction-text{
    font-size: 14px;
    letter-spacing: -0.1px;
}

@media(max-width:900px){
    .introduction-text{
        font-size: 13px;
        letter-spacing: 0.5px;
        line-height: 1.45;
    }
}

.introduction-name{
    font-size: 13px;
    margin: 20px 0 0 0;
    letter-spacing: 0.6px;
}

@media(max-width:900px){
    .automotive-industry .l-flex{
        gap: 0;
    }
}





/*///////////////////////////////////

button

///////////////////////////////////*/

.button{
    max-width: 374px;
    display: inline-flex;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    padding: 16px 37px;
    width: 100%;
    align-items: center;
    border-radius: 7px;
    position: relative;
}

@media(max-width:900px){
    .button{
        font-size: 13px;
    }
}

.arrow-white{
    position: absolute;
    display: inline-block;
    right: 37px;
}

@media(max-width:900px){
    .arrow-white {
        right: 14px;
    }
}

.button__wrapper{
    padding: 80px 0 56px;
}

.button__wrapper .l-flex button {
    width: 374px;
}

@media(max-width:900px){
    .button__wrapper {
        padding: 40px 0 42px;
    }
}

.pink-button{
    background-color: #EB6D8E;
    box-shadow: 4px 4px 0 rgba(213, 88, 121, 1); /* #D55879 */

}

.blue-button{
    background-color: #00afdd;
    box-shadow: 4px 4px 0 #0094BA; /* #D55879 */
}

.pink-button:hover,.blue-button:hover  {
    opacity: 0.7;
}

@media(max-width:900px){
    .pink-button:hover,.blue-button:hover  {
        opacity: 1;
    }
}

.button__wrapper-last{
    padding: 82px 0 77px 0;
}

.button__wrapper-last button{
    width: 374px;
}

@media(max-width:900px){
    .button__wrapper-last {
        padding: 82px 0 43px 0;
    }
}

.button-bg {
    margin: -80px 0 0 0;
    display: block;
}

.button__wrapper-last p{
    font-family: "Noto Serif JP", serif;
    font-size: 27px;
    text-align: center;
    margin: -28px 0 20px;
}

@media(max-width:900px){
    .button__wrapper-last p{
        font-size: 18px;
        margin: -22px 0 18px;
    }
}







/*/////////////////////////////////////////

money

////////////////////////////////////////*/

.money {
    padding: 0 0 94px 0;
}

@media(max-width:900px){
    .money {
        padding: 0 0 16px 0;
    }
    .money .l-flex{
        gap: 13px 0;
    }
}

.money-bg{
    background-image: url(../img/money-bg.png);
    background-size: cover;
    margin: 50px auto 0 auto;
    background-position: top;
    padding: 140px 0 1px 0;
    position: relative;
    max-width: 980px;
}

.money-bg-bottom{
    background-image: url(../img/money-bg.png);
    background-size: cover;
    margin: 0 auto 0 auto;
    background-position: bottom;
    padding: 0 0 74px 0;
    max-width: 980px;
}

@media(max-width:1200px){
    .money-bg,.money-bg-bottom{
        background-size: 99%;
        max-width: 730px;
    }
}

@media(max-width:900px){
    .money-bg,.money-bg-bottom{
        max-width: 356px;
        background-image: url(../img/money-bg-sp.png);
    }
    .money-bg{
        margin: 18px auto 0;
        padding: 87px 0 1px 0;
    }
    .money-bg-bottom{
        padding: 0 0 27px 0;
    }
}

.money-title-box{
    color: #fff;
    padding: 20px 40px;
    border-radius: 17px 17px 0 0;
    justify-content: space-between;
}

@media(max-width:900px){
    .money-title-box{
        padding: 16px 20px;
    }
}

.money-title-text{
    max-width: 645px;
}

.money-box{
    border-radius: 0 0 17px 17px;
    padding: 17px 10px;
    margin: 0 0 21px 0;
    border-radius: 0;
}

@media(max-width:900px){
    .money-box{
        margin: 0 0 42px 0;
    }
    
}

.money-box-first{
    margin: 0 0 36px 0;
}

.money-content{
    padding: 20px 0;
    border-radius: 10px;
}

.money-content-title{
    max-width: 372px;
    margin: 0 auto 10px;
    text-align: center;
    padding: 19px 0;
    border-radius: 30px;
}

@media(max-width:900px){
    .money-content-title {
        max-width: 232px;
        padding: 11px 0;
        font-size: 16px;
    }
}

.money-content img{
    max-width: 281px;
    margin:  0 auto;
    display: block;
}

@media(max-width:900px){
    .money-content img{
        max-width: 232px;
    }
}

.money-content2{
    max-width: 412px;
    min-height: 168px;
    padding: 20px;
    border-radius: 15px;
}

.money-content3{
    padding: 20px;
}

.money-content3 span{
    font-size: 18px;
    padding: 0 18px 0 0;
}

.money-box:nth-child(8){
    margin: 0 0 40px 0;
}

.money-box:nth-child(10){
    margin: 0 0 40px 0;
}

.money-content2 p:first-of-type{
    padding: 0 0 10px 0;
    font-size: 18px;
}

@media(max-width:900px){
    .money-content2 p:first-of-type {
        font-size: 13px;
    }
    .money-content2 p:nth-of-type(2){
        letter-spacing: 0.7px;
    }
    .money-content3 span {
        font-size: 13px;
        padding: 0 18px 0 0;
        letter-spacing: 0.4px;
        line-height: 2;
    }
}

.gradient-border{
    padding: 3px; /* 枠の太さ */
    border-radius: 12px; /* 任意 */
    background: linear-gradient(to right, #00AFDD, #E9528E); /* グラデーション */
    width: 412px;
}

@media(max-width:900px){
    .gradient-border{
        margin: -6px 0 0 0;
    }
}

.money-button{
    background: #fff; /* 中身の背景 */
    border-radius: 8px; /* 親より小さく */
    padding: 8px 0;
    color: #1a1a1a;
}

@media(max-width:900px){
    .money-button{
        display: block;
        height: 73px;
        position: relative;
        padding: 8px 34px 8px 0;
    }
    .money-button img{
        display: block;
        right: 32px;
        top: 28px;
        position: absolute;
    }
}

.money-button span{
    font-size: 25px;
}

@media(max-width:900px){
    .money-button img{
        max-width: 272px;
    }
    .money-table-sp1{
        max-height: 1022px;
    }
    .money-table-sp2{
        max-height: 1699px;
    }
    .sp-text-center{
        text-align: center;
    }
}




/*//////////////////////////////////

company

/////////////////////////////////*/
.company{
    padding: 0 0 85px 0;
}

@media(max-width:900px){
    .company {
        padding: 0 0 76px 0;
    }
}

.company-bg{
    background-image: url(../img/company-bg.png);
    background-size: cover;
    margin: 50px auto 0 auto;
    background-position: top;
    padding: 197px 0 0 0;
    position: relative;
    max-width: 980px;
}

.company-bg-bottom{
    background-image: url(../img/company-bg.png);
    background-size: cover;
    background-position: bottom;
    max-width: 980px;
    margin: -35px auto;
    padding: 35px 0 100px 0;
}

@media(max-width:1200px){
    .company-bg,.company-bg-bottom{
        background-size: 99%;
        max-width: 730px;
    }
}

@media(max-width:900px){
    .company-bg,.company-bg-bottom{
        max-width: 356px;
        background-image: url(../img/company-bg-sp.png);
    }
    .company-bg {
        margin: 17px auto 0 auto;
        padding: 112px 0 0 0;
    }
    .company-bg-bottom{
        padding: 35px 0 41px 0;
    }
}


.company-text-first{
    padding: 0 0 21px 0;
}

.company-text{
    padding: 0 0 21px 0;
}

@media(max-width:900px){
    .company-text {
        padding: 0 0 10px 0;
    }
}

.company-photo__wrapper{
    margin: 0 0 33px 0;
}

@media(max-width:900px){
    .company-photo__wrapper{
        margin: 0 0 42px 0;
    }
}

.company-slider{
    overflow: hidden;
    width: 100%;
    margin: 32px 0 35px;
}

@media(max-width:900px){
    .company-slider {
        margin: 10px 0 34px;
    }
}

.company-track{
    display: flex;
    overflow: hidden;
}

.company-slider-list{
    display: flex;
    list-style: none;
    padding: 0;
    animation: infinity-scroll-left 80s infinite linear 0.5s both;
    gap: 20px;
}

.company-slider-item{
    width: 197px;
}

@media(max-width:900px){
    .company-slider-item{
        width: 100px;
    }
}

@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
    }

.company-acordion {
    margin-bottom: 10px;
    border-radius: 5px;
    background-color: #fff;
}

.company-acordion-bg{
    padding: 24px 0;
}

.company-acordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 20px 40px;
    cursor: pointer;
    background-color: #E9528E;
    font-size: 27px;
}

@media(max-width:900px){
    .company-acordion summary {
        font-size: 16px;
        padding: 11px 14px;
    }
}

.company-acordion summary::-webkit-details-marker {
    display: none;
}

.company-acordion summary::before,
.company-acordion summary::after {
    width: 3px;
    height: .9em;
    border-radius: 5px;
    background-color: #fff;
    content: '';
}

.company-acordion summary::before {
    position: absolute;
    right: 40px;
    rotate: 90deg;
}

@media(max-width:900px){
    .company-acordion summary::before {
        right: 14px;
    }
}

.company-acordion summary::after {
    transition: rotate .3s;
}

.company-acordion[open] summary::after {
    rotate: 90deg;
}

.company-acordion p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    transition: transform .5s, opacity .5s;
}

.company-acordion[open] p {
    transform: none;
    opacity: 1;
}

.company-acordion-text__wrapper{
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 16px 40px 0px;
}

@media(max-width:1200px){
    .company-acordion-text__wrapper {
        max-width: 600px;
        padding: 16px 20px 0px;
    }
}

@media (max-width: 900px) {
    .company-acordion-text__wrapper {
        max-width: 220px;
        flex-direction: column;
    }
}

.company-acordion-title{
    padding: 0 0 12px 0;
}

@media (max-width: 900px) {
    .company-acordion-title {
        padding: 0 0 8px 0;
    
    }
}

.company-acordion-text{
    font-size: 13px;
    line-height: 1.45;
    padding: 0 0 22px 0;
}

@media (max-width: 900px) {
    .company-acordion-text{
        font-size: 12px;
        line-height: 1.4;
        padding: 0 0 7px 0;
    }
}

.close-button {
    border: none;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    max-width: 232px;
    padding: 10px 0;
    margin: 14px 0 20px 0;
}

.company-colabo{
    text-align: center;
    font-size: 27px;
    padding: 26px 0 20px 0;
}

@media (max-width: 900px) {
    .company-colabo{
        font-size: 20px;
        padding: 26px 0 9px 0;
    }
}

.company-colabo-item{
    margin: 13px 0 16px 0;
}

@media(max-width:900px){
    .company-colabo-item {
        margin: 31px 0 20px 0;
    }
}

figcaption{
    text-align: center;
}

.company-colabo-img__wrapper{
    gap: 40px;
}

@media(max-width:900px){
    .company-colabo-img__wrapper {
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .company h3{
        margin: 58px 0 0px 0;
    }
}




/*////////////////////////////////////

lisence

///////////////////////////////////*/

.lisence{
    padding: 0 0 79px 0;
}

@media(max-width:900px){
    .lisence {
        padding: 0 0 69px 0;
    }
}

.lisence-bg{
    background-image: url(../img/lisence-bg.png);
    background-size: cover;
    margin: 70px auto 0 auto;
    background-position: top;
    padding: 142px 0 0 0;
    position: relative;
    max-width: 980px;
}

.lisence-bg-bottom{
    background-image: url(../img/lisence-bg.png);
    background-size: cover;
    margin: -50px auto 0;
    background-position: bottom;
    max-width: 980px;
    padding: 57px 0 63px 0;
}

@media(max-width:1200px){
    .lisence-bg,.lisence-bg-bottom{
        background-size: 99%;
        max-width: 730px;
    }
}

@media (max-width: 900px) {
    .lisence-bg, .lisence-bg-bottom {
        max-width: 356px;
        background-image: url(../img/lisence-bg-sp.png);
    }
    .lisence-bg{
        margin: 32px auto 0 auto;
        padding: 80px 0 0 0;
    }
    .lisence-bg-bottom{
        padding: 57px 0 40px 0;
    }
    .lisence-bg .l-flex{
        gap: 14px;
    }
}

.lisence-title1{
    margin: 48px auto 36px;
    max-width: 420px;
    display: block;
}

.lisence-title1 .sp{
    display: none;
}

@media(max-width:900px){
    .lisence-title1 {
        margin: 22px auto 17px;
        max-width: 169px;
    }
}

.lisence-title2{
    max-width: 499px;
    margin: 45px auto 30px;
    display: block;
}

@media (max-width: 900px) {
    .lisence-title2{
        max-width: 212px;
        margin: 22px auto 17px;
    }
}


.lisence-tab {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;;
}

@media(max-width:900px){
    .lisence-tab {
        display: flex;
        gap: 0 3px;;
    }
}

.lisence-tab label {
    flex: 1 1;
    order: -1;
    min-width: 70px;
    padding: 16px 10px;
    border-radius: 13px 13px 0 0;
    background-color: #eeecec;
    text-align: center;
    cursor: pointer;
    color: #1a1a1a;
}

@media(max-width:900px){
    .lisence-tab label {
        font-size: 13px;
        width: 78px;
        padding: 16px 0 8px 0;
        line-height: 1.2;
    }
}

.lisence-tab input {
    display: none;
}

.lisence-tab div {
    display: none;
    width: 100%;
    padding: 39px 58px;
    border: 2px solid #eb6d8e;
    border-radius: 0 0 13px 13px;
}

@media(max-width:900px){
    .lisence-tab div {
        padding: 20px 25px;
    }
}

.lisence-tab label:has(:checked) {
    background-color: #eb6d8e;
    color: #fff;
}

.lisence-tab label:has(:checked) + div {
    display: block;
}

.lisence-box{
    padding: 20px;
    border-radius: 10px;
}

.lisence-box p{
    max-width: 565px;
    font-size: 14px;
}

@media(max-width:900px){
    .lisence-box p{
        font-size: 13px;
    }
}

.lisence-box p span{
    font-size: 20px;
    padding: 0 0 9px 0;
    display: inline-block;
}

@media(max-width:900px){
    .lisence-box p span {
        font-size: 16px;
        padding: 15px 0 6px 0;
    }
}

.bg-pink1{
    background-color: #fdedf3;
}

.bg-pink2{
    background-color: #fbdce8;
}

.bg-pink3{
    background-color: #f8cbdd;
    border: #E9528E 5px solid;
}

.lisence-item{
    margin: 23px auto 20px;
    display: block;
}

@media(max-width:900px){
    .lisence-item {
        margin: 19px auto 9px;
    }
}




/*////////////////////////////////////

follow

///////////////////////////////////*/
.follow{
    padding: 0 0 80px 0;
}

@media(max-width:900px){
    .follow {
        padding: 0 0 57px 0;
    }
    .follow .l-flex-line{
        flex-direction: column-reverse;
    }
    .follow .l-flex-line img{
        display: block;
        width: -webkit-fill-available;
    }
}

.follow h2 img{
    margin: -13px 0 0 0;
}

@media(min-width:1400px){
    .follow h2 img {
        margin: -25px 0 25px 0;
    }
}

.follow-bg{
    background-image: url(../img/follow-bg.png);
    background-size: cover;
    margin: 58px auto 0 auto;
    background-position: top;
    padding: 142px 0 0 0;
    position: relative;
    max-width: 980px;
}

.follow-bg-bottom{
    background-image: url(../img/follow-bg.png);
    background-size: cover;
    margin: 0px auto 0 auto;
    background-position: bottom;
    padding: 45px 0 80px 0;
    max-width: 980px;
}

@media(max-width:1200px){
    .follow-bg,.follow-bg-bottom{
        background-size: 99%;
        max-width: 730px;
    }
    .follow-bg{
        margin: 19px auto 0 auto;
        padding: 85px 0 0 0;
    }
    .follow-bg-bottom{
        padding: 50px 0 80px 0;
    }
}

@media (max-width: 900px) {
    .follow-bg, .follow-bg-bottom {
        max-width: 356px;
        background-image: url(../img/follow-bg-sp.png);
    }
    .follow-bg-bottom {
        padding: 50px 0 49px 0;
    }
}

.follow-text{
    text-align: left;
    font-size: 14px;
    letter-spacing: 0.7px;
}

@media (max-width: 900px) {
    .follow-text{
        font-size: 13px;
        letter-spacing: -0.5px;
    }
    
}

.follow-right{
    max-width: 588px;
}

@media (max-width: 900px) {
    .follow-right{
        max-width: 312px;
    }
}

.follow-right h5 img{
    max-width: 588px;
}

@media (max-width: 900px) {
    .follow-right h5 img{
        max-width: 312px;
    }
}

.follow-right button{
    display: block;
    max-width: 229px;
    margin: 23px auto 0;
}

.follow-right button :hover{
    opacity: 0.7;
}

@media(max-width:900px){
    .follow-right .button{
        margin: 23px auto 23px;
    }
    .follow-right button:hover{
        opacity: 1;
    }
}

.follow-item{
    margin: 0 0 15px;
}



/*//////////////////////////////////

footer

////////////////////////////////*/

footer{
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 40px 0px
}

@media(max-width:900px){
    footer{
        padding: 40px 28px 80px;
    }
}

footer p:first-of-type{
    padding: 0 0 41px 0;
}




/*/////////////////////////////

レスポンシブ

/////////////////////////////*/

.sp{
    display: none !important;
}

@media(max-width:900px){
    .sp{
        display: block !important;
    }
    .pc{
        display: none !important;
    }
}
