@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");

:root {
    --main-color-01: #ffff00;
    --main-color-02: #132021;
    --main-color-03: #ffffff;
    --main-color-04: #ff0000;
    --main-color-05: #0071bc;
}

html:has(#gmb) {
    overflow-x: hidden;
    background-color: var(--main-color-02);
}

#gmb {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.07em;
    text-align: center;
    color: var(--main-color-03);
}

@media screen and (max-width: 480px) {
    #gmb {
        font-size: 14px;
    }
}

.gmb-heading {
    position: relative;
    font-size: clamp(20px, 6.25vw, 30px);
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 2em;
    padding-top: 0.5em;
}

.gmb-heading::before {
    content: "";
    position: absolute;
    width: 2em;
    height: 0.2em;
    border-radius: 999px;
    background-color: var(--main-color-01);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.gmb-contact-button {
    width: fit-content;
    padding: 1em 1.5em;
    font-size: 20px;
    color: var(--main-color-02);
    background-color: var(--main-color-01);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    transition: 0.3s;
}

.gmb-contact-button img {
    width: auto;
    height: 1em;
}

.gmb-contact-button.standard {
    font-size: clamp(14px, 4.38vw, 20px);
    margin: 0 auto;
    font-weight: bold;
    padding: 1rem 3rem;
}

.gmb-contact-button:hover {
    transform: scale(0.9);
    transition: 0.3s;
}

#gmb .gmb-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5em;
    position: fixed;
    z-index: 1;
}

#gmb .gmb-menu {
    width: 40%;
    height: 100vh;
    position: absolute;
    top: 0;
    right: -40%;
    display: flex;
    justify-content: center;
    gap: 1.8em;
    flex-direction: column;
    transition: 0.3s;
    background-color: var(--main-color-02);
    padding: 3em;
    text-align: left;
}

@media screen and (max-width: 480px) {
    #gmb .gmb-menu {
        width: 100%;
        right: -100%;
    }
}

#gmb .gmb-menu li {
    position: relative;
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
}

#gmb .gmb-menu li::before {
    content: "";
    width: 0.5em;
    height: 0.5em;
    background-color: var(--main-color-01);
    border-radius: 999px;
    margin-right: 1em;
}

#gmb .gmb-menu li::after {
    content: "";
    position: absolute;
    left: 1.5em;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--main-color-01);
    transition: width 0.3s ease;
}

#gmb .gmb-menu li:hover::after {
    width: calc(100% - 1.5em);
}

#gmb .gmb-menu-group:has(.gmb-hamburger-button.active) .gmb-menu {
    transform: translateX(-100%);
    transition: 0.3s;
}

#gmb .gmb-hamburger-button {
    display: block;
    padding: 0;
    width: 25px;
    height: 15px;
    position: relative;
    background: none;
    border: none;
    text-align: center;
    letter-spacing: 0.1em;
    cursor: pointer;
    outline: none;
}

#gmb .gmb-hamburger-button .gmb-hamburger-button_bar {
    display: block;
    width: 25px;
    height: 2px;
    transition: all 0.2s;
    transform-origin: 0% 0%;
    transform: translateY(-50%);
    position: absolute;
    left: 0;
}

#gmb .gmb-hamburger-button .gmb-hamburger-button_bar1 {
    top: 0;
}

#gmb .gmb-hamburger-button .gmb-hamburger-button_bar2 {
    top: 50%;
}

#gmb .gmb-hamburger-button .gmb-hamburger-button_bar3 {
    top: 100%;
}

#gmb .gmb-hamburger-button.active .gmb-hamburger-button_bar {
    width: 21.5px;
    left: 8px;
}

#gmb .gmb-hamburger-button.active .gmb-hamburger-button_bar1 {
    transform: rotate(0.7853981634rad) translateY(-50%);
    top: 0px;
}

#gmb .gmb-hamburger-button.active .gmb-hamburger-button_bar2 {
    opacity: 0;
}

#gmb .gmb-hamburger-button.active .gmb-hamburger-button_bar3 {
    transform: rotate(-0.7853981634rad) translateY(-50%);
    top: calc(100% - 0px);
}

#gmb .gmb-hamburger-button {
    color: var(--main-color-03);
}

#gmb .gmb-hamburger-button .gmb-hamburger-button_bar {
    background-color: var(--main-color-03);
    transition: 0.3s;
}

#gmb .gmb-hamburger-button:hover .gmb-hamburger-button_bar {
    background-color: var(--main-color-01);
    transition: 0.3s;
}

.gmb-100vh-contents {
    width: 100%;
    max-height: 100vh;
    aspect-ratio: 16/9;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    padding: 50px 5vw;
    margin: 0 auto;
}

@media screen and (max-width: 480px) {
    .gmb-100vh-contents {
        aspect-ratio: 9/16;
    }
}

.gmb-100vh-contents.no-bgimg {
    max-width: calc(1200px + 10vw);
    max-height: initial;
    aspect-ratio: initial;
    padding: 100px 5vw;
}

.gmb-header-logo {
    width: clamp(100px, 31.25vw, 150px);
}

a:has(.gmb-header-logo) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gmb-mv .gmb-contact-button {
    font-size: clamp(10px, 2.08vw, 20px);
    margin: 1.5em auto 0;
}

@media screen and (max-width: 480px) {
    .gmb-mv .gmb-contact-button {
        font-size: clamp(10px, 3.13vw, 14px);
    }
}

.gmb-mv-title {
    position: absolute;
    font-size: clamp(12px, 2.5vw, 40px);
    font-weight: bold;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 0.7em;
}

@media screen and (max-width: 480px) {
    .gmb-mv-title {
        font-size: clamp(14px, 4.38vw, 26px);
        width: 100%;
        top: initial;
        bottom: 5em;
        right: 50%;
        transform: translateX(50%);
    }
}

.gmb-mv-title01 {
    font-size: 170%;
}

.gmb-mv-title01 span {
    font-size: 160%;
    color: var(--main-color-01);
}

.gmb-mv-title03 {
    font-size: 60%;
}

.gmb-about .gmb-100vh-contents {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (max-width: 480px) {
    .gmb-about .gmb-text {
        text-align: left;
    }

    .gmb-about .gmb-text .sp-dn {
        display: none;
    }
}

.gmb-point-ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3em;
}

.gmb-point-ul li {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

.gmb-point-ul li h3 {
    margin-bottom: 0.5em;
}

.gmb-recommendation .gmb-100vh-contents {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gmb-recommendation-item {
    width: fit-content;
}

@media screen and (max-width: 480px) {
    .gmb-recommendation-item {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

.gmb-recommendation-item ul li {
    display: flex;
    gap: 0.5em;
    text-align: left;
    margin-bottom: 3em;
}

@media screen and (max-width: 480px) {
    .gmb-recommendation-item ul li {
        margin-bottom: 2em;
    }
}

.gmb-recommendation-item ul li:last-child {
    margin-bottom: 0;
}

.gmb-recommendation-item ul li::before {
    content: "";
    flex: 0 0 1em;
    height: 1em;
    background: url("../images/check-icon.png") no-repeat center / contain;
    margin-top: 0.3em;
}

.gmb-flow-ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.2em;
    color: var(--main-color-02);
}

.gmb-flow-ul li {
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding: 2.5em;
    background-color: var(--main-color-03);
}

.gf-number {
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
}

.gf-line {
    width: 30%;
    height: 2px;
    background-color: var(--main-color-02);
    margin: 0 auto;
}

.gf-icon {
    height: 100px;
    object-fit: contain;
}

.gf-text {
    text-align: left;
}

.gmb-flow-text {
    margin: 5em 0;
}

@media screen and (max-width: 480px) {
    .gmb-flow-text {
        margin: 3em 0;
    }
}

.gmb-introduction:has(.gmb-100vh-contents) .gmb-100vh-contents {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (max-width: 480px) {
    .gmb-introduction:has(.gmb-100vh-contents) .gmb-100vh-contents {
        justify-content: initial;
    }
}

.gmb-introduction-item {
    width: fit-content;
    margin: 0 0 0 auto;
    font-size: clamp(16px, 1.88vw, 24px);
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 1);
}

.gmb-introduction-h {
    text-align: left;
    margin-bottom: 1em;
}

.gmb-introduction-ul {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.gmb-introduction-ul h4 {
    font-size: 90%;
    margin-bottom: 0.5em;
}

.gmb-introduction-ul p {
    font-size: 65%;
}

.gmb-feature-text {
    max-width: 500px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1em;
    font-size: clamp(14px, 2.91vw, 24px);
}

@media screen and (max-width: 480px) {
    .gmb-feature-text {
        font-size: clamp(16px, 5vw, 20px);
    }
}

.gmb-feature-text-h {
    font-size: 100%;
}

.gmb-feature-text-p {
    font-size: 65%;
}

.gmb-feature_pkg-ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2em;
    margin-top: 4em;
}

@media screen and (max-width: 480px) {
    .gmb-feature_pkg-ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 1em;
        margin-top: 3em;
    }

    .gmb-feature_pse {
        display: flex;
        align-items: flex-end;
    }
}

.gmb-100vh-contents:has(.guarantee) {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gmb-feature-text.guarantee {
    margin: 0 0 0 auto;
}

.gmb-specification-ul {
    max-width: 800px;
    margin: 0 auto;
}

.gmb-specification-ul li {
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 3fr;
    padding: 3em 0;
}

@media screen and (max-width: 480px) {
    .gmb-specification-ul li {
        grid-template-columns: initial;
        gap: 1em;
    }
}

.gmb-specification-ul > li + li {
    border-top: 2px solid var(--main-color-03);
}

.gmb-specification-ul li:first-child {
    padding-top: 0;
}

.gmb-specification-ul li:last-child {
    padding-bottom: 0;
}

.gmb-specification-range {
    display: flex;
    gap: 1em;
}

.range-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    text-align: center;
}

.luminescence-color {
    width: fit-content;
    margin: 0 auto;
    padding-top: 2em;
}

.luminescence-color-box {
    display: flex;
    gap: 0.5em;
    margin-top: 0.5em;
}

.luminescence-color-item {
    width: 20px;
    height: 20px;
    border-radius: 999px;
}

.gmb-specification {
    background-image: url(../images/gmb_specification-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.gmb-contact-btn-follow {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    background: var(--main-color-01);
    color: var(--main-color-02);
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.gmb-contact-btn-follow.show {
    opacity: 1;
    pointer-events: auto;
}

.gmb-contact-btn-follow.hide {
    opacity: 0;
    pointer-events: none;
}

.gmb-contact-btn-follow:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .gmb-contact-btn-follow {
        right: 0;
        bottom: 0;
        width: 100%;
        border-radius: 0;
        text-align: center;
        padding: 16px;
        font-size: 16px;
    }
}

.gmb-contact .gmb-100vh-contents.no-bgimg {
    max-width: calc(900px + 10vw);
}

.gmb-contact #wpforms-38160 {
    text-align: left;
}

.gmb-contact input,
.gmb-contact textarea {
    max-width: 100% !important;
    border-radius: 5px;
    margin-top: 0.5em !important;
    padding: 1em 1.5em;
}

.gmb-contact .wpforms-required-label {
    color: red !important;
}

.gmb-contact #wpforms-submit-38160 {
    display: block;
    width: fit-content;
    background-color: var(--main-color-01);
    color: var(--main-color-02);
    padding: 1em 5em;
    margin: 2em auto 0 auto;
    border-radius: 999px;
    font-weight: bold;
    transition: 0.3s;
}

.gmb-contact #wpforms-submit-38160:hover {
    transform: scale(0.95);
    transition: 0.3s;
}
