@charset "UTF-8";

body {
    height: 100%;
    font-family: "M PLUS 1 Code", sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #57a3bb;
    color: #333;
    background-image: url(https://www.komasa.co.jp/wp-content/themes/komasa/img/tt/beach.jpg);
    background-position-y: 284px;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}
#opening {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 100;
}
#opening img {
    width: 300px;
    height: 125px;
    /* 左から右に表示されるようマスク */
    clip-path: inset(0 100% 0 0);
    animation: reveal 2s forwards linear;
}
@keyframes reveal {
    0%   { clip-path: inset(0 100% 0 0); } /* 完全に隠す */
    100% { clip-path: inset(0 0 0 0); }   /* 完全に表示 */
}
.hero {
    position: relative;
    z-index: 0;
}
.hero img {
    max-width: 100%;
    object-fit: cover;
}
.button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
}
.catch-copy {
    font-family: "M PLUS Rounded 1c", system-ui;
}
.section {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}
.section h2 {
    font-family: "M PLUS Rounded 1c", system-ui;
    border: 8px solid #EC9F44;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.8em;
    /* padding-left: 110px; */
    text-align: center;
    position: relative;
    margin: 20px auto;
    background-color: white;
    letter-spacing: 5px;
}
.section h2::before {
    content: '';
    display: inline-block;
    width: 106px;
    height: 80px;
    background-image: url(https://www.komasa.co.jp/wp-content/themes/komasa/img/tiger-h.png);
    background-position: center;
    background-size: contain;
    position: absolute;
    left: -5px;
    bottom: -7px;
}
.prd-top {
    width: 80%;
    margin: 24px auto;
}
.prd-top h1 {
    text-align: center;
    font-weight: bold;
    font-size: 2em;
}
.prd-top img {
    display: block;
    margin: 0 auto;
}
.text-block {
    margin-bottom: 24px;
}
.text-block-title {
    font-weight: bold;
    font-size: 1.2em;
    line-height: 60px;
    letter-spacing: 3px;
}
.pairing {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.faq {
    margin-top: 30px;
    font-family: "M PLUS 1 Code", monospace;
}
.faq details {
    transition: all 200ms 0s ease;
}
details {
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 8px 12px;
    background: #f9f9f9;
}
details summary {
    cursor: pointer;
    font-weight: bold;
}
.purchase {
    text-align: center;
    margin: 40px 0;
}
a.btn--orange {
    color: #fff;
    background-color: #e74c3c;
}
a.btn--orange:hover {
    color: #fff;
    background: #ed6050ff;
}
a.btn--shadow {
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}
a.btn--circle {
    border-radius: 50%;
    line-height: 120px;
    width: 120px;
    height: 120px;
    padding: 0;
    display: block;
    text-align: center;
    text-decoration: none;
    transition: all 200ms 0s ease;
}
.top-jump-btn {
    position: absolute;
    font-weight: bold;
    bottom: 70px;
    right: 70px;
    z-index: 1;
}
.row {
    display: flex;
    flex-wrap: wrap;
}
.col {
    clear: both;
    padding: 10px;
    box-sizing: border-box;
}
.col-50-100 {
    width: 50%;
}
.col-33 {
    width: 33%;
}
.img-sample {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: #ccc;
}
.img-sample-sm {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: #ccc;
}
.mt-space {
    margin-top: 3em;
}
.d-flex {
    display: flex;
}
.f-align-start {
    align-items: flex-start;
}
.f-align-end {
    align-items: flex-end;
}
.spac-contents {
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}
.text-center {
    text-align: center;
}
footer {
    background-color: #f9c184;
}
.footer-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
}
footer .corp-logo {
    width: 80px;
}
footer .footer-sns ul {
    display: flex;
    list-style: none;
    text-decoration: none;
}
footer .footer-sns ul li {
    margin: 0 10px;
}
.footer-sns {
    margin-bottom: 30px;
}
.sns-link {
    color: #333;
}
.footer-note {
    font-size: .8em;
}
img {
    max-width: 100%;
}
.faq-details {
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 2%), 0 2px 3px -2px rgba(0 0 0 / 5%);
    background-color: #fff;
}
.faq-details summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}
.faq-details summary::before,
.faq-details p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}
.faq-details summary::before {
    color: #FFF100;
    content: "Q";
}
.faq-details summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}
.faq-details[open] summary::after {
    transform: rotate(225deg);
}
.faq-details p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}
.faq-details[open] p {
    transform: none;
    opacity: 1;
}
.faq-details p::before {
    color: #E4007F;
    line-height: 1.2;
    content: "A";
}
.fade-in {
    opacity: 0;
    transform: translateY(20px); /* 下からふわっと */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.sp-only {
    display: none;
}
.text-zone {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    margin: 10px auto;
}
.product-info-area {
    margin-top: 20px;
    padding-top: 0;
}
.hero .wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: auto;
}
#dummy-area {
    height: 300vh;
}
.movie-wrap {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}
#top-movie {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}
.top-img {
    display: block;
}
.top-img-sp {
    display: none;
}
.pairing-title {
    display: block;
    text-align: center;
    letter-spacing: 1px;
}
.soldout-notice {
    border: 6px solid #ec9f44;
    border-radius: 11px;
    background-color: #ffffff;
    padding: 40px;
    font-weight: bold;
    margin-bottom: 50px;
    letter-spacing: 1px;
    line-height: 30px;
}
.d-none {
    display: none;
}
.mail-magazine-link {
    color: #b83759;
    text-decoration: underline;
}
.mail-magazine-link:hover {
    color: #c0506eff;
}
@media (max-width: 550px) {
    .col-50-100 {
        width: 100%;
    }
    .pairing-item {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .pairing-item .col-33 {
        width: auto;
        min-width: 350px;
    }
    .top-jump-btn {
        display: none;
    }
    .sp-long-text {
        padding-left: 60px;
    }
    .section h2::before {
        width: 53px;
        height: 40px;
        left: -5px;
        bottom: -7px;
    }
    .sp-only {
        display: block;
    }
    .prd-top {
        width: auto;
    }
    .top-img {
        display: none;
    }
    .top-img-sp {
        display: block;
    }
    .movie-wrap {
        height: 50vh;
    }
    #top-movie {
        position: absolute;
        top: 50%;
        left: 50%;
        width: auto;
        height: 100%;
        transform: translate(-50%, -50%); /* 中央に配置 */
    }
    .soldout-notice {
        padding: 30px;
    }
}