@charset "utf-8";


:root {
    --color-theme:       #000099;
    --color-light-theme: #f0ffff;
    --color-accent:      #000099;
    --fg-color:          #333;
    --bg-color:          #fff;
    --color-white:       #fff;
    --color-lightgray:   #f0f0f0;
    --font-alphabet: 'Impact', 'Noto Sans JP', 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
    --font-gothic: 'Noto Sans JP', 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
    --font-mincho: 'Noto Serif JP', 'Times New Roman', 'YuMincho', 'Hiragino Mincho ProN', 'Yu Mincho', 'MS PMincho', serif;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    display: block;
    margin: 0;
    vertical-align: middle;
    width: 100%;
    max-width: 100%;
    height: auto;
    font-style: italic;
    background-repeat: no-repeat;
    background-size: cover;
    shape-margin: 0.75rem;
}

body a {
    color: var(--fg-color);
    text-decoration: none;
    transition: filter 0.5s ease-out;
}
body button {
    cursor: pointer;
    transition: filter 0.5s ease-out;
}

@media ( hover: hover ) {
    body a:hover, body button:hover {
        color: var(--fg-color);
        filter: brightness( 50% );
    }
}

ul, p {
    line-height: 1.8;
}

section {
    position: relative;
}

em {
    color: var(--color-accent);
    font-style: normal;
}

u {
    font-weight: 700;
    text-decoration-color: #ffec5d;
    text-decoration-thickness: 4px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-underline-offset: 0.3em;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}


@media ( width < 768px ) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}

@media ( width >= 768px ) {
    .pc {
        display: block;
    }
    .sp {
        display: none;
    }
}


/* スクロールアニメーション */
.ws-scroll-fadeIn {
    opacity: 0.0;
    /*transform: scale( 0.5, 0.5 ); */
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn.ws-scroll-show {
    opacity: 1.0;
    /* transform: scale( 1.0, 1.0 ); */
}

.ws-scroll-fadeIn-l {
    opacity: 0.0;
    transform: translateX( -200px );
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn-r {
    opacity: 0.0;
    transform: translateX( 200px );
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn-l.ws-scroll-show,
.ws-scroll-fadeIn-r.ws-scroll-show {
    opacity: 1.0;
    transform: translateX( 0 );
}

.ws-scroll-fadeIn-u {
    opacity: 0.0;
    transform: translateY( -200px ) scale( 0.8, 0.8 );
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn-d {
    opacity: 0.0;
    transform: translateY( 200px ) scale( 0.8, 0.8 );
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn-u.ws-scroll-show,
.ws-scroll-fadeIn-d.ws-scroll-show {
    opacity: 1.0;
    transform: translateY( 0 )  scale( 1.0, 1.0 );
}

.ws-goto-top {
    position: fixed;
    z-index: 20;
    margin: 0;
    padding: 0 0 2px;
    top: auto;
    bottom: 10px;
    left: auto;
    right: 10px;
    width: clamp( 30px, 5.0vw, 60px );
    height: clamp( 30px, 5.0vw, 60px );
    background: var(--color-theme);
    border: 2px solid #fff;
    border-radius: clamp( 15px, 2.5vw, 30px );
    opacity: 0.0;
    transform-origin: right bottom;
    transform: scale( 0.01, 0.01 );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 1.0s;
}
.ws-goto-top::before {
    position: absolute;
    content: "";
    left: 40%;
    top: 42%;
    width: 20%;
    height: 20%;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    rotate: -45deg;
}
.ws-goto-top.ws-scroll-show {
    transform: scale( 1.0, 1.0 );
    opacity: 0.9;
}
@media ( hover: hover ) {
    .ws-goto-top:hover {
        opacity: 0.5;
    }
}

.ws-scroll-top-menu {
    opacity: 0.0;
    transform: translateY( -150px );
    transition: 0.5s;
}
.ws-scroll-top-menu.ws-scroll-show {
    opacity: 1.0;
    transform: translateY( 0 );
}



/* 以下サイトごと */

html {
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: min( 18px, 3.0vw );
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    color: var(--fg-color);
    font-family: var(--font-gothic);
    font-weight: 500;
    line-height: 1.5;
    background: var(--bg-color);
    opacity: 0.0;
    animation: anim-fadein 1.0s ease-out 0s forwards;
}

@keyframes anim-fadein {
    0%   { opacity: 0.01; }
    100% { opacity: 1.00; }
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    background: #fff;
    box-shadow: 0 4px 4px #0003;
}


/**
 * スマホ用設定
 */
@media ( width < 768px ) {

    header {
        height: 80px;
    }
    header .header-wrap {
        margin: 0 auto;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header .header-logo {
        padding: 0;
        width: auto;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0 2.0vw;
    }
    header .header-logo > :nth-child(1) {
        display: block;
        width: 133px;
        width: 100px;
        height: auto;
        aspect-ratio: 1979 / 1404;
    }
    header .header-logo > :nth-child(2) {
        display: block;
        width: 151px;
        height: auto;
        aspect-ratio: 581 / 110;
    }
    header .header-menu {
        display: none;
    }
    header .header-sp-menu {
        position: relative;
        height: 100%;
        aspect-ratio: 1 / 1;
    }
    header .header-sp-menu #sp-menu-check {
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 1px;
        opacity: 0;
    }
    header .header-sp-menu #sp-menu-check ~ .header-sp-menu-back {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area {
        display: block;
        position: absolute;
        top: 20%;
        left: 20%;
        width: 60%;
        height: 60%;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area > .sp-menu-icon {
        position: absolute;
        top: 50%;
        left: 15%;
        width: 70%;
        height: 3px;
        background: var(--fg-color);
        border-radius: 2px;
        transition: background 0.5s ease-out;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area > .sp-menu-icon::before {
        position: absolute;
        content: "";
        top: -300%;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--fg-color);
        border-radius: 2px;
        transition: transform 0.5s ease-out;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area > .sp-menu-icon::after {
        position: absolute;
        content: "";
        top: 300%;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--fg-color);
        border-radius: 2px;
        transition: transform 0.5s ease-out;
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu-area > .sp-menu-icon {
        background: transparent;
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu-area > .sp-menu-icon::before {
        transform: translateY( 300% ) rotate( 45deg );
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu-area > .sp-menu-icon::after {
        transform: translateY( -300% ) rotate( -45deg );
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu {
        position: absolute;
        top: 80px;
        right: 0;
        width: max-content;
        padding: 2.0em 4.0em;
        background: #fffe;
        list-style: none;
        transform-origin: top center;
        transform: scaleY( 0.0 );
        transition: transform 0.5s ease-out;
        z-index: 99;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li {
        margin: 2.0vw 0;
        list-style: none;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > a {
        display: block;
        margin: 0;
        padding: 0.2em 0;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > a img {
        display: block;
        margin: 0;
        width: auto;
        height: 6.0vw;
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu {
        transform: scaleY( 1.0 );
    }

    a + .banner-tiktok {
        margin-top: 8.0vw;
    }

    .banner-tiktok {
        display: block;
        margin: 0 auto;
        padding: 0;
        width: 90%;
    }
    .banner-tiktok figure {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }
    .banner-tiktok figure img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }
    .banner-instagram {
        display: block;
        margin: 4.0vw auto 0;
        padding: 0;
        width: 90%;
    }
    .banner-instagram figure {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }
    .banner-instagram figure img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }

    .btn-fixed {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 750 / 200;
        z-index: 90;
    }
    .btn-fixed figure {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
    }
    .btn-fixed figure img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    footer {
        margin: 0;
        padding: 0 0 calc( 100vw * 200 / 750 );
        width: 100%;
        background: #fff;
    }
    footer .footer-wrap {
        margin: 0 auto;
        padding: 4.0vw 0 4.0vw;
        width: 90%;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: center;
        gap: 8.0vw 6.0vw;
    }
    footer .footer-logo {
        display: block;
        margin: 0 auto;
        padding: 0;
        width: 80%;
        height: auto;
    }
    footer .footer-logo figure {
        margin: 0 auto;
        padding: 0;
        width: 80%;
        height: auto;
    }
    footer .footer-logo figure img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }
    footer .footer-menu {
        margin: 0;
        padding: 0;
        width: 100%;
        list-style: none;
    }
    footer .footer-menu > li {
        margin: 0;
        padding: 0;
        font-size: 3.2vw;
        font-weight: 400;
        list-style: none;
    }
    footer .footer-menu > li.head {
        font-size: 3.6vw;
        font-weight: 600;
        border-bottom: 1px solid #c47900;
    }
    footer .footer-menu > li a {
    }
    footer .footer-snses {
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 4.0vw;
    }
    footer .footer-snses a {
        display: block;
        margin: 0;
        padding: 0;
        width: 10.0vw;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    footer .footer-snses a img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 1.0em 0;
        width: 100%;
        font-size: 2.8vw;
        text-align: center;
    }

}


/**
 * PC用設定
 */
@media ( width >= 768px ) {

    header {
        height: 100px;
    }
    header .header-wrap {
        margin: 0 auto;
        padding: 0 20px;
        width: 100%;
        max-width: 1920px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header .header-logo {
        padding: 0;
        width: auto;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0 20px;
    }
    header .header-logo > :nth-child(1) {
        display: block;
        width: 133px;
        height: auto;
        aspect-ratio: 1979 / 1404;
    }
    header .header-logo > :nth-child(2) {
        display: block;
        width: 159px;
        height: auto;
        aspect-ratio: 625 / 58;
    }
    header .header-logo figure {
        display: block;
        width: 100%;
        height: 100%;
    }
    header .header-logo figure img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    header .header-menu {
        width: auto;
        height: 100%;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        list-style: none;
    }
    header .header-menu > li {
        width: auto;
        height: 100%;
        list-style: none;
    }
    header .header-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 0 1.0em;
    }
    header .header-menu > li > a img {
        margin: 0;
        padding: 0;
        width: auto;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    header .header-sp-menu {
        display: none;
    }

    a + .banner-tiktok {
        margin-top: 60px;
    }

    .banner-tiktok {
        display: block;
        margin: 0 auto;
        padding: 0;
        width: calc( 100% * 659 / 1461 );
    }
    .banner-tiktok figure {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }
    .banner-tiktok figure img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }
    .banner-instagram {
        display: block;
        margin: 20px auto 0;
        padding: 0;
        width: calc( 100% * 452 / 1461 );
    }
    .banner-instagram figure {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }
    .banner-instagram figure img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }

    .btn-fixed {
        display: block;
        position: fixed;
        bottom: 1.0vw;
        right: 1.0vw;
        margin: 0;
        padding: 0;
        width: 151px;
        height: auto;
        aspect-ratio: 302 / 646;
        z-index: 90;
        transition: transform 0.2s ease-out;
    }
    .btn-fixed figure {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
    }
    .btn-fixed figure img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    @media ( hover: hover ) {
        .btn-fixed:hover {
            transform: translateY( -20px );
            filter: brightness( 100% );
        }
    }

    footer {
        margin: 0;
        padding: 0;
        width: 100%;
        background: #fff;
    }
    footer .footer-wrap {
        margin: 0 auto;
        padding: 20px 0 0;
        width: 90%;
        max-width: 1200px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    footer .footer-logo {
        display: block;
        margin: 0;
        padding: 0;
        width: 295px;
        height: auto;
    }
    footer .footer-logo figure {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }
    footer .footer-logo figure img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
    }
    footer .footer-menu {
        margin: 0;
        padding: 40px 0 0;
        list-style: none;
    }
    footer .footer-menu > li {
        margin: 0;
        padding: 0;
        font-size: 14px;
        font-weight: 400;
        list-style: none;
    }
    footer .footer-menu > li.head {
        font-size: 18px;
        font-weight: 600;
    }
    footer .footer-menu > li a {
    }
    footer .footer-snses {
        margin: 0;
        padding: 40px 0 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 0 7px;
    }
    footer .footer-snses a {
        display: block;
        margin: 0;
        padding: 0;
        width: 40px;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    footer .footer-snses a img {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 1.0em 0;
        width: 100%;
        font-size: 14px;
        text-align: center;
    }

}


@keyframes anim-scroll-right {
    0%   { opacity: 1.0; transform: translateX( 0 ); }
    50%  { opacity: 0.2; transform: translateX( -20% ); }
    100% { opacity: 1.0; transform: translateX( 0 ); }
}

