
:root{
    --bg:#0b0b0b;
    --w:#ffffff;
    --accent:#ff9500; /* オレンジ */
    --muted:#cfcfcf;
  }

body{
    color: #000;
    letter-spacing: .1em;
    font-family: "Noto Sans JP", sans-serif;
    background: var(--bg);
}
@media screen and (min-width:768px) {
    .sp{
        display: none !important;
    }
}
@media screen and (max-width:767px) {
    .pc{
        display: none !important;
    }
}
sup{
    font-size: 70%;
    vertical-align: super;
}
li{
    list-style-type: none;
}
a,button{
    transition: all .2s;
}
a:hover,button:hover{
    opacity: 0.6;
}

.reveal{
  opacity: 0;
  transform: translateY(16px);
}
.reveal.is-show{
  opacity: 1;
  transform: none;
  transition: opacity .7s ease, transform .7s ease;
}

/* common */
.sec{
    padding: 80px;
}
@media screen and (max-width:1200px) {
    .sec{
        padding: 60px 40px;
    }
}
@media screen and (max-width:767px) {
    .sec{
        padding: calc(60vw / 375 * 100) calc(20vw / 375*100);
    }
}
.sec_inner{
    max-width: 980px;
    margin: 0 auto;
}
@media screen and (max-width:767px) {
    .sec_inner{
        width: calc(335vw / 375*100);
    }
}
.sec_ttl{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto 40px;
}
@media screen and (max-width:767px) {
    .sec_ttl{
        gap: calc(16vw / 375 * 100);
        margin: 0 auto calc(30vw / 375 * 100);
    }
}
.sec_ttl > h2{
    color: #FFF;
    text-align: center;
    font-style: italic !important;
    font-size: 42px;
    font-weight: 900;
    line-height: normal;
}
@media screen and (max-width:1200px) {
    .sec_ttl > h2{
        font-size: 32px;
    }
}
@media screen and (max-width:767px) {
    .sec_ttl > h2{
        font-size: calc(22vw / 375 * 100);
    }
}
.sec_ttl > span{
    display: flex;
    width: 82px;
}
@media screen and (max-width:1200px) {
    .sec_ttl > span{
        width: 60px;
    }
}
@media screen and (max-width:767px) {
    .sec_ttl > span{
        width: calc(40vw / 375 * 100);
    }
}
.body_cta{
    display: flex;
    background: url(../img/cta_bg_pc.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 624px;
    height: 70px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding-left: 30px;
    margin: 40px auto 0;
    filter: drop-shadow(0 4.667px 23.333px rgba(0, 0, 0, 0.50));
    background-size: contain;
    background-repeat: no-repeat;
}
@media screen and (max-width:767px) {
    .body_cta{
        width: calc(335vw / 375*100);
        background: url(../img/cta_bg_sp.svg);
        padding-left: calc(10vw / 375*100);
        margin: calc(30vw / 375*100) auto 0;
        height: calc(70vw / 375 * 100);
        background-size: contain;
        background-repeat: no-repeat;
    }
}
.body_cta > p{
    color: #FFF;
    font-size: 24px;
    font-weight: 900;
    line-height: normal;
    font-style: italic !important;
}
@media screen and (max-width:767px) {
    .body_cta > p{
        font-size: calc(15vw / 375*100);
    }
}
.body_cta_arrow{
    display: flex;
    width: 30px;
}
@media screen and (max-width:767px) {
    .body_cta_arrow{
        display: flex;
        width: calc(20vw / 375*100);
    }
}

header{
    background-color: #000;
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 1;
}
.header_inner{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
}
.header_logo{
    position: absolute;
    left: 0px;
    top: 0px;
    display: flex;
}
.header_logo a{
    display: flex;
    width: 280px;
}
@media screen and (max-width:1200px) {
    .header_logo a{
        display: flex;
        width: 200px;
    }
}
@media screen and (max-width:767px) {
    .header_logo a{
        width: auto;
        height: calc(50vw / 375*100);
    }
    .header_logo a img{
        width: auto;
        height: calc(50vw / 375*100);
    }
}
.header_cta > a{
    display: flex;
    background: url(../img/header_button_bg_pc.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    width: 500px;
    height: 60px;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding-left: 60px;
}
@media screen and (max-width:1200px) {
    .header_cta > a{
        width: 460px;
        height: 50px;
        padding-left: 40px;
    }
}
@media screen and (max-width:767px) {
    .header_cta > a{
        width: calc(250vw / 375*100);
        background: url(../img/header_button_bg_sp.svg);
        padding-left: calc(30vw / 375*100);
        height: calc(50vw / 375*100);
        background-size: cover;
        background-repeat: no-repeat;
    }
}
.header_cta > a > p{
    color: #FFF;
    font-size: 22px;
    font-weight: 900;
    line-height: normal;
    font-style: italic !important;
}
@media screen and (max-width:1200px) {
    .header_cta > a > p{
        font-size: 18px;
    }
}
@media screen and (max-width:767px) {
    .header_cta > a > p{
        font-size: calc(13vw / 375*100);
    }
}
.header_cta_arrow{
    display: flex;
    width: 30px;
}
@media screen and (max-width:767px) {
    .header_cta_arrow{
        display: flex;
        width: calc(20vw / 375*100);
    }
}
/* footer */
footer{
    background-color: var(--bg);
    padding: 100px 0;
}
@media screen and (max-width:767px) {
    footer{
        padding: calc(60vw / 375 * 100) 0;
    }
}
.footer__inner{
    max-width:720px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:40px;
    align-items:center;
    text-align:center;
}
@media screen and (max-width:767px) {
    .footer__inner{
        width: 80%;
    }
}
.footer_link{
    display:flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width:100%;
}
@media screen and (max-width:767px) {
    .footer_link{
        flex-direction:column;
    }
}
.footer_link__btn{
    display:block;
    border:2px solid var(--accent);
    color:var(--accent);
    text-decoration:none;
    padding:12px 16px;
    font-weight:600;
    font-size: 16px;
    text-align:center;
    width: 50%;
    box-sizing: border-box;
    letter-spacing: 0;
}
@media screen and (max-width:767px) {
    .footer_link__btn{
        width: 100%;
        font-size: calc(14vw / 375 * 100);
        padding:calc(12vw / 375 * 100) calc(16vw / 375 * 100);
    }
}
.brand{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
}
.brand__logo{
    width:100px;
    height:auto;
    display:block;
}
.brand__name{
    line-height:165%;
    color: #ffffff;
    font-size: 16px;
}
@media screen and (max-width:767px) {
    .brand__name{
        font-size: calc(14vw / 375 * 100);
    }
}
.copyright{
    color:#9a9a9a;
    font-size:12px;
    text-align: center;
}
/* main */
main{
    background-image: url(../img/main_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 120px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
@media screen and (max-width:1200px) {
    main{
        padding: 100px 40px 60px;
    }
}
@media screen and (max-width:767px) {
    main{
        padding: calc(70vw / 375 * 100) calc(20vw / 375 * 100) calc(30vw / 375 * 100);
    }
}
.main_inner{
    max-width: 1380px;
    display: flex;
    flex-direction: column;
    width: fit-content;
    gap: 10px;
    align-items: center;
}
@media screen and (max-width:767px) {
    .main_inner{
        width: 100%;
    }
}
.main_inner > h2{
    display: flex;
    max-width: 840px;
    width: 80%;
}
@media screen and (max-width:767px) {
    .main_inner > h2{
        width: 95%;
    }
}
.main_parts{
    display: flex;
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 290px;
}
@media screen and (max-width:767px) {
    .main_parts{
        display: none;
    }
}
.about{
    background-image: url(../img/what_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.about_bgtxt{
    position: absolute;
    display: flex;
    width: 40%;
    top: 0px;
    left: 0px;
}
@media screen and (max-width:767px) {
    .about_bgtxt{
        width: 60%;
    }
}
.about__p{
    color: var(--w);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 185%;
    margin: 0 auto 60px;
}
@media screen and (max-width:1200px) {
    .about__p{
        font-size: calc(15vw / 375 * 100);
    }
}
@media screen and (max-width:767px) {
    .about__p{
        font-size: calc(14vw / 375 * 100);
    }
}
.about_osusume{
    border-top: 2px solid #FF8B00;
    border-bottom: 2px solid #FF8B00;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.50) 0%, rgba(51, 51, 51, 0.50) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 50px 60px;
    gap: 20px;
}
@media screen and (max-width:1200px) {
    .about_osusume{
        padding: 40px;
    }
}
@media screen and (max-width:767px) {
    .about_osusume{
        padding: calc(30vw / 375 * 100) calc(20vw / 375 * 100);
    }
}
.about_osusume > h3{
    color: var(--accent);
    text-align: center;
    font-size: 26px;
    font-style: italic !important;
    font-weight: 900;
    line-height: normal;
}
@media screen and (max-width:1200px) {
    .about_osusume > h3{
        font-size: 22px;
    }
}
@media screen and (max-width:767px) {
    .about_osusume > h3{
        font-size: calc(16vw / 375 * 100);
    }
}
.about_osusume__div{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 0;
}
@media screen and (max-width:767px) {
    .about_osusume__div{
        flex-direction: column;
        gap: calc(10vw / 375 * 100);
    }
}
.about_osusume__div > ul{
    width: calc(50% - 10px);
    gap: 10px;
    display: flex;
    flex-direction: column;
}
@media screen and (max-width:767px) {
    .about_osusume__div > ul{
        width: 100%;
    }
}
.about_osusume__div > ul li{
    color: var(--w);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 145%;
    position: relative;
    padding-left: 20px;
}
@media screen and (max-width:1200px) {
    .about_osusume__div > ul li{
        font-size: 15px;
    }
}
@media screen and (max-width:767px) {
    .about_osusume__div > ul li{
        font-size: calc(14vw / 375 * 100);
        padding-left: calc(16vw / 375 * 100);
    }
}
.about_osusume__div > ul li::before{
    content: "";
    display: flex;
    background: var(--accent);
    width: 9px;
    height: 9px;
    position: absolute;
    top: 10px;
    left: 0px;
}
@media screen and (max-width:767px) {
    .about_osusume__div > ul li::before{
        width: calc(6vw / 375 * 100);
        height: calc(6vw / 375 * 100);
        top: calc(8vw / 375 * 100);
    }
}

/* message */
.message{
    background-image: url(../img/message_bg.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #000;
}
.message_bgtxt{
    position: absolute;
    display: flex;
    width: 40%;
    top: 0px;
    right: 0px;
}
@media screen and (max-width:767px) {
    .message_bgtxt{
        width: 60%;
    }
}
.message_subttl{
    color: var(--accent);
    text-align: center;
    font-size: 22px;
    font-style: italic !important;
    font-weight: 900;
    line-height: normal;
    margin-bottom: 40px;
}
@media screen and (max-width:1200px) {
    .message_subttl{
        font-size: 18px;
        margin-bottom: 30px;
    }
}
@media screen and (max-width:767px) {
    .message_subttl{
        font-size: calc(16vw / 375 * 100);
        margin-bottom: calc(20vw / 375 * 100);
    }
}
.message_txt{
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0 auto 40px;
}
@media screen and (max-width:1200px) {
    .message_txt{
        gap: 30px;
        margin: 0 auto 30px;
    }
}
@media screen and (max-width:767px) {
    .message_txt{
        gap: calc(15vw / 375 * 100);
        margin: 0 auto calc(20vw / 375 * 100);
    }
}
.message_txt p{
    color: var(--w);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 185%;
}
@media screen and (max-width:1200px) {
    .message_txt p{
        font-size: 16px;
    }
}
@media screen and (max-width:767px) {
    .message_txt p{
        font-size: calc(13vw / 375 * 100);
    }
}
.message_p_img{
    display: flex;
    max-width: 786px;
    margin: 0 auto 40px;
    width: 80%;
}
@media screen and (max-width:767px) {
    .message_p_img{
        width: 90%;
    }
}
.message_box{
    display: flex;
    flex-direction: column;
}
.message_box > h4{
    background: linear-gradient(90deg, rgba(253, 208, 0, 0.00) 1.05%, rgba(253, 208, 0, 0.10) 49.53%, rgba(253, 208, 0, 0.00) 98.95%);
    width: 100%;
    display: flex;
    padding: 15px 0;
    align-items: center;
    justify-content: center;
    color: #FFF;
    text-align: center;
    font-size: 26px;
    font-weight: 900;
    line-height: normal;
    font-style: italic !important;
    margin: 0 auto 20px;
}
@media screen and (max-width:1200px) {
    .message_box > h4{
        font-size: 20px;
    }
}
@media screen and (max-width:767px) {
    .message_box > h4{
        font-size: calc(15vw / 375 * 100);
    }
}
.message_box_inner{
    display: flex;
    justify-content: space-between;
    gap: -20px;
}
@media screen and (max-width:767px) {
    .message_box_inner{
        flex-direction: column;
        gap: calc(20vw / 375 * 100);
        max-width: 500px;
        margin: 0 auto;
    }
}
.message_box_inner span{
    display: flex;
    width: 40%;
    margin-left: -30px;
}
@media screen and (max-width:767px) {
    .message_box_inner span{
        width: 100%;
        margin-left: 0px;
    }
}
/* info */
.info{
    background-image: url(../img/info_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #000;
}
.info_inner{
    display: flex;
    max-width: 975px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}
@media screen and (max-width:1200px) {
    .info_inner{
        width: 90%;
    }
}
@media screen and (max-width:767px) {
    .info_inner{
        width: 100%;
        gap: calc(10vw / 375 * 100);
    }
}
.info_box{
    display: flex;
    padding: 50px;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    background: rgba(0, 0, 0, 0.70);
    box-sizing: border-box;
}
@media screen and (max-width:1200px) {
    .info_box{
        padding: 30px;
        gap: 20px;
    }
}
@media screen and (max-width:767px) {
    .info_box{
        flex-direction: column;
        gap: calc(5vw / 375 * 100);
        padding: calc(20vw / 375 * 100);
    }
}
.info_box p.ttl{
    color: var(--accent);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 185%;
    width: 25%;
}
.program .info_box p.ttl{
    width: 45%;
}
@media screen and (max-width:1200px) {
    .info_box p.ttl{
        font-size: 16px;
    }
}
@media screen and (max-width:767px) {
    .info_box p.ttl,.program .info_box p.ttl{
        font-size: calc(15vw / 375 * 100);
        width: 100%;
    }
}
.info_box p.cont{
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 185%;
    width: 75%;
}
.program .info_box p.cont{
    width: 55%;
}
@media screen and (max-width:1200px) {
    .info_box p.cont{
        font-size: 15px;
    }
}
@media screen and (max-width:767px) {
    .info_box p.cont,.program .info_box p.cont{
        font-size: calc(13vw / 375 * 100);
        width: 100%;
    }
}
.info_box p.cont .small{
    font-size: 13px;
}
@media screen and (max-width:1200px) {
    .info_box p.cont .small{
        font-size: 12px;
    }
}
@media screen and (max-width:767px) {
    .info_box p.cont .small{
        font-size: calc(11vw / 375 * 100);
    }
}
/* number */
.number{
    background-image: url(../img/number_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #000;
}
.number_inner{
    display: flex;
    max-width: 975px;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px 0;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}
@media screen and (max-width:1200px) {
    .number_inner{
        width: 90%;
    }
}
@media screen and (max-width:767px) {
    .number_inner{
        width: 100%;
        gap: calc(20vw / 375 * 100);
        flex-direction: column; 
        max-width: 500px;
    }
}
.number_box{
    width: calc(50% - 20px);
    height: auto;
    flex-shrink: 0;
    border-radius: 30px;
    border: 1px solid #FFF;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.70) 0%, rgba(20, 20, 20, 0.70) 100%);
    box-shadow: 0 0 50px 0 rgba(255, 255, 255, 0.05) inset;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    display: flex;
}
@media screen and (max-width:767px) {
    .number_box{
        width: 100%;
        gap: calc(30vw / 375 * 100);
    }
}
.number_box::before,.number_box::after{
    content: "";
    width: 80px;
    height: 10px;
    display: flex;
    background-size: contain;
    background-repeat: no-repeat;
}
@media screen and (max-width:1200px) {
    .number_box::before,.number_box::after{
        width: 60px;
        height: 6px;
    }
}
.number_box::before{
    background-image: url(../img/bg_cont_before.svg);
    left: calc(50% - 40px);
    top: 0px;
}
.number_box::after{
    background-image: url(../img/bg_cont_after.svg);
    left: calc(50% - 40px);
    bottom: 0px;
}
.number_box_ttl{
    display: flex;
    flex-direction: column;
    height: 80px;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.number_box_ttl .mi_br{
    display: none;
}
@media screen and (max-width:1200px) {
    .number_box_ttl{
        height: 70px;
        gap: 5px;
        width: 80%;
    }
    .number_box_ttl .mi_br{
        display: inline;
    }
}
@media screen and (max-width:767px) {
    .number_box_ttl{
        height: auto;
    }
    .number_box_ttl .mi_br{
        display: none;
    }
}
.number_box_ttl > h3{
    color: var(--w);
    text-align: center;
    font-size: 26px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}
@media screen and (max-width:1200px) {
    .number_box_ttl > h3{
        font-size: 22px;
    }
}
@media screen and (max-width:767px) {
    .number_box_ttl > h3{
        font-size: calc(18vw / 375 * 100);
    }
    .number_box_ttl > h3 .mi_br{
        display: inline !important;
    }
}
.number_box_ttl > p{
    color: var(--w);
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 185%;
    letter-spacing: 0;
}
@media screen and (max-width:1200px) {
    .number_box_ttl > p{
        font-size: 13px;
    }
}
@media screen and (max-width:767px) {
    .number_box_ttl > p{
        font-size: calc(12vw / 375 * 100);
    }
}
.number_box_chart{
    display: flex;
    width: 80%;
    height: auto;
}
@media screen and (max-width:767px) {
    .number_box_chart{
        width: 70%;
    }
}
.number_subtxt{
    position: absolute;
    bottom: 15px;
    right: 20px;
    color: var(--w);
    text-align: right;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 185%; /* 25.9px */
}
/* voice */
.voice{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #000;
    padding: 80px 0;
}
@media screen and (max-width:1200px) {
    .voice{
        padding: 60px 0;
    }
}
@media screen and (max-width:767px) {
    .voice{
        padding: calc(40vw / 375 * 100) 0;
    }
}
.voice_inner{
    max-width: none;
    width: 100%;
}
.voice_cont li{
    box-sizing: border-box;
    background-image: url(../img/voice_cont_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 40px;
    padding: 50px 80px;
    box-sizing: border-box;
    border-top: 2px solid #FF8B00;
    border-bottom: 2px solid #FF8B00;
}
@media screen and (max-width:1200px) {
    .voice_cont li{
        padding: 30px 50px;
        margin: 0 30px;
    }
}
@media screen and (max-width:767px) {
    .voice_cont li{
        padding: calc(20vw / 375 * 100);
        margin: 0 calc(20vw / 375 * 100);
    }
}
.voice_cont li p{
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 185%;
}
@media screen and (max-width:1200px) {
    .voice_cont li p{
        font-size: 15px;
    }
}
@media screen and (max-width:767px) {
    .voice_cont li p{
        font-size: calc(13vw / 375 * 100);
    }
}
.voice_cont li p:nth-child(1){
    margin-bottom: 20px;
}
@media screen and (max-width:767px) {
    .voice_cont li p:nth-child(1){
        margin-bottom: calc(10vw / 375 * 100);
    }
}

.voice_wrapper .slick-track {
  display: flex;
}
.voice_wrapper .slick-slide {
  height: auto !important;
}
.voice_wrapper .slick-prev,.voice_wrapper .slick-next{
    display: flex;
    width: 20px;
    height: 40px;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: contain;
    text-indent: -9999px;
}
@media screen and (max-width:767px) {
    .voice_wrapper .slick-prev,.voice_wrapper .slick-next{
        width: calc(15vw / 375 * 100);
        height: calc(30vw / 375 * 100);
    }
}
.voice_wrapper .slick-prev {
    left: calc(20% - 10px);
    background-image: url(../img/voice_arrow_prev.png);
}
.voice_wrapper .slick-next {
    right: calc(20% - 10px);
    background-image: url(../img/voice_arrow_next.png);
}
@media screen and (max-width:767px) {
    .voice_wrapper .slick-prev {
        left: calc(10% - calc(7.5vw / 375 * 100));
        background-image: url(../img/voice_arrow_prev.png);
    }
    .voice_wrapper .slick-next {
        right: calc(10% - calc(7.5vw / 375 * 100));
        background-image: url(../img/voice_arrow_next.png);
    }
}


.qa_inner{
    margin: 0 auto 120px;
}
@media screen and (max-width:1200px) {
    .qa_inner{
        margin: 0 auto 100px;
        width: 90%;
    }
}
@media screen and (max-width:767px) {
    .qa_inner{
        margin: 0 auto calc(60vw / 375 * 100);
        width: 100%;
    }
}


/* 各アイテム */
.accordion__item{
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.80) 100%);
  margin: 0 0 16px;
  overflow: hidden;
}
@media screen and (max-width:767px) {
    .accordion__item{
        margin: 0 0 calc(12vw / 375 * 100);
    }
}

.accordion__trigger{
  all: unset;
  display: flex;                 /* ← grid ではなく flex */
  justify-content: space-between;/* テキストとアイコンを左右に配置 */
  align-items: center;
  width: 100%;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  color: var(--accent);
  box-sizing: border-box;
  font-size: 18px;
}
@media screen and (max-width:1200px) {
    .accordion__trigger{
        padding: 16px 20px;
        font-size: 16px;
    }
}
@media screen and (max-width:767px) {
    .accordion__trigger{
        padding: calc(16vw / 375 * 100) calc(50vw / 375 * 100) calc(16vw / 375 * 100) calc(15vw / 375 * 100);
        font-size: calc(15vw / 375 * 100);
    }
}

/* アイコン用コンテナを右端に作る */
.accordion__trigger::after,
.accordion__trigger::before{
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  transition: transform .25s ease;
  margin-left: 12px; /* テキストとの間隔 */
  background-color: var(--accent);
}
@media screen and (max-width:767px) {
    .accordion__trigger::after,
    .accordion__trigger::before{
        width: calc(14vw / 375 * 100);
    }
}

/* 縦棒 */
.accordion__trigger::before{
  position: absolute;
  right: 24px;                   /* ← paddingに合わせて調整 */
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}
@media screen and (max-width:767px) {
    .accordion__trigger::before{
        right: calc(16vw / 375 * 100); 
    }
}

/* 横棒 */
.accordion__trigger::after{
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
}
@media screen and (max-width:767px) {
    .accordion__trigger::after{
        right: calc(16vw / 375 * 100);
    }
}

/* 開いたときは縦棒を消す（＝マイナスになる） */
.accordion__trigger[aria-expanded="true"]::before{
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}

/* パネル（高さアニメ） */
.accordion__panel{
  overflow: hidden;
  transition: height .28s ease;
  height: auto;
}
.accordion__panel[hidden]{
    display: block;
    height: 0; 
}
.accordion__content{
    padding: 0px 24px 22px 50px;
    color: #e6e6e6;
    line-height: 1.9;
    font-size: 16px;
    box-sizing: border-box;
}
@media screen and (max-width:1200px) {
    .accordion__content{
        padding: 0px 18px 20px 45px;
        font-size: 15px;
        line-height: 1.6;
    }
}
@media screen and (max-width:767px) {
    .accordion__content{
        padding: 0px calc(16vw / 375 * 100) calc(16vw / 375 * 100) calc(16vw / 375 * 100);
        font-size: calc(14vw / 375 * 100);
    }
}