@charset "UTF-8";
section {
    background-color: #F3F3F3;
    width: 100%;
    max-width: 600px;
    margin-left: auto !important;
    margin-right: auto !important;
}

img {
    vertical-align: middle;
    width: 100%;
    height: auto;
}

.comparison_wrap {
    position: relative;
}

.comparison_slider {
    top: 11%;
    left: 10%;
    position: absolute;
    overflow: scroll;
    width: 80%;
    height: auto;
}

.comparison_slider img {
    width: 115%;
    height: auto;
}

ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px auto;
    width: 100%;
    max-width: 600px;
}

li {
    padding: 0.5em 0;
    width: 33%;
    height: auto;
    text-align: center;
    font-size: 10px;
}

.copyright {
    text-align: center;
    margin-bottom: 40px;
    font-size: 10px;
}

area {
    cursor: pointer;
}

@media screen and (min-width:768px) {
    .pc {
        display: block;
    }
    .sp {
        display: none;
    }
}


/* 
@media screen and (min-width:1600px) and ( max-width:1800px) {
    .pc {
        display: none;
    }
    .pc1600 {
        display: block;
    }
    
}
@media screen and (min-width:1800px) {
    .pc {
        display: none;
    }
    .pc1600 {
        display: none;
    }
    .pc1800 {
        display: block;
    }
    
} */

html {
    font-size: 1.5px;
}

@media (max-width: 600px) {
    html {
        font-size: calc((100 / 350) * 1vw);
    }
}

@font-face {
    font-family: "A P-OTF Gothic BBB Pr6N";
    src: url("../fonts/A-OTF\ Gothic\ BBB\ Pro\ Medium.otf");
}

.faq__items {
    display: flex;
    flex-direction: column;
    gap: 28rem;
    padding: 16rem 20rem;
    margin: 0;
}

.faq__item {
    width: 100%;
}

.faq__item__question {
    display: flex;
    width: 100%;
    padding: 16rem 24rem;
    align-items: center;
    position: relative;
    background: #354F4D;
}

.faq__item__question span {
    color: #FFF;
    font-family: "A P-OTF Gothic BBB Pr6N";
    font-size: 14rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
    padding-right: 30rem;
}

.faq__item__question svg {
    position: absolute;
    right: 24rem;
    top: 50%;
    transform: translateY(-50%);
    width: 10rem;
    height: 10rem;
}

.faq__item__question svg path {
    stroke: #FFF;
}

.faq__item__answer {
    display: flex;
    padding: 16rem 24rem;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8rem;
    align-self: stretch;
    border: 2px solid #354F4D;
    background: #FFF;
    transition: max-height 0.4s ease-out;
    margin-top: -1px;
}

.faq__item__answer.open {
    max-height: 1000rem;
    opacity: 1;
}

.faq__item__answer p {
    color: #000;
    font-family: "A P-OTF Gothic BBB Pr6N";
    font-size: 14rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
}

.faq__item__answer p span {
    font-size: 11rem;
}

.faq__item__answer p span.large {
    font-size: 12rem;
}


/* accordion */

.faq__item__answer {
    display: none;
    /* Initially hide all answers */
}

.faq__item__question.active {
    /* Style for active question button */
    font-weight: bold;
    /* Example: make the text bold */
}

.faq__item__question svg {
    transition: transform 0.3s ease;
}

.faq__item__question.active svg {
    transform: rotate(180deg) translateY(50%);
    /* Rotate the arrow when active */
}