@charset "utf-8";


:root {
    --color-theme:       #ccffff;
    --color-light-theme: #f0ffff;
    --color-accent:      #004580; /* #005aa7; */
    --fg-color:          #222;
    --color-white:       #fff;
    --color-lightgray:   #f0f0f0;
    --font-alphabet: 'Figtree', '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;
}

a {
    color: var(--fg-color);
    text-decoration: none;
    transition: opacity 0.5s ease-out;
}
button {
    cursor: pointer;
    transition: opacity 0.5s ease-out;
}

@media ( hover: hover ) {
    a:hover, button:hover {
        opacity: 0.5;
    }
}

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 ( max-width: 768px ) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}

@media ( min-width: 768.01px ) {
    .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;
    opacity: 0.0;
    animation: anim-fadein 1.0s ease-out 0s forwards;
}

@keyframes anim-fadein {
    0%   { opacity: 0.0; }
    100% { opacity: 1.0; }
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba( 255, 255, 255, 0.8);
    z-index: 90;
    transition: background 0.5s ease-out;
}


/**
 * スマホ用設定
 */
@media ( max-width: 768px ) {

    header {
        height: 60px;
    }
    header .header-wrap {
        margin: 0 auto;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header .header-logo {
        padding: 0 0 0 20px;
        width: 214px;
        height: 41px;
    }
    header .header-logo img {
        width: 194px;
        height: 41px;
        object-fit: contain;
    }
    header .header-menu {
        display: none;
    }
    header .header-contact {
        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: 10px;
        left: 10px;
        width: 40px;
        height: 40px;
    }
    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: -8px;
        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: 8px;
        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( 8px ) rotate( 45deg );
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu-area > .sp-menu-icon::after {
        transform: translateY( -8px ) rotate( -45deg );
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu {
        position: absolute;
        top: 60px;
        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 {
        list-style: none;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > a {
        display: block;
        margin: 0;
        padding: 0.2em 0;
        font-size: min( 16px, 3.6vw );
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > ul.header-submenu,
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > ul.header-megamenu {
        padding: 0 0 0 1.0em;
        list-style: none;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > ul.header-submenu > li,
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > ul.header-megabmenu > li {
        margin: 0;
        padding: 0;
        width: 100%;
        list-style: none;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > ul.header-submenu > li > a,
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > ul.header-megamenu > li > a {
        display: block;
        margin: 0;
        padding: 0.2em 0;
        font-size: min( 16px, 3.6vw );
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu {
        transform: scaleY( 1.0 );
    }

    footer {
        margin: 0 auto;
        width: 100%;
    }
    footer .footer-cta {
        margin: 0 auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    footer .footer-cta > .footer-tel {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 1;
        background: var(--fg-color);
    }
    footer .footer-cta > .footer-mail {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 1;
        background: var(--color-accent);
    }
    footer .footer-cta > a .title {
        color: #fff;
        font-size: 3.6vw;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
    }
    footer .footer-cta > a figure {
        margin: 0 auto;
    }
    footer .footer-cta > a .telno {
        margin: 2.0vw 0 0;
        color: #fff;
        font-size: 10.0vw;
        font-weight: 700;
        font-family: var(--font-alphabet);
        text-align: center;
        line-height: 1.0;
    }
    footer .footer-cta > a .open {
        color: #fff;
        font-size: 3,2vw;
        font-weight: 500;
        text-align: center;
    }
    footer .footer-wrap {
        margin: 0 auto;
        padding: 0 18px;
        width: 100%;
        max-width: 1920px;
        height: 76px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0 32px;
    }
    footer .footer-logo {
        width: 194px;
        height: 41px;
    }
    footer .footer-logo img {
        width: 194px;
        height: 41px;
        object-fit: contain;
    }
    footer .footer-menu {
        display: none;
    }
    footer .footer-contact {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 1 0 auto;
        height: 100%;
    }
    footer .footer-contact a {
        padding: 0.6em 1.0em;
        display: grid;
        place-items: center;
        color: #fff;
        font-size: 14px;
        background: #005aa7;
        border-radius: 4.0em;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 1.0em 20px;
        width: 100%;
        max-width: 1920px;
        color: var(--fg-color);
        font-size: 12px;
        text-align: right;
    }

}


/**
 * PC用設定
 */
@media ( min-width: 768.01px ) {

    header {
        height: 76px;
    }
    header .header-wrap {
        margin: 0 auto;
        padding: 0 18px;
        width: 100%;
        max-width: 1920px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0 32px;
    }
    header .header-logo {
        width: 194px;
        height: 41px;
    }
    header .header-logo img {
        width: 194px;
        height: 41px;
        object-fit: contain;
    }
    header .header-menu {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        list-style: none;
    }
    header .header-menu > li {
        height: 100%;
        list-style: none;
    }
    header .header-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 0 1.0em;
        color: var(--fg-color);
        font-size: 14px;
        font-weight: 600;
        transition: color 0.5s ease-out, opacity 0.5s ease-out;
    }
    header .header-contact {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 1 0 auto;
        height: 100%;
    }
    header .header-contact a {
        padding: 0.6em 1.0em;
        display: grid;
        place-items: center;
        color: #fff;
        font-size: 14px;
        background: #005aa7;
        border-radius: 4.0em;
    }
    header .header-sp-menu {
        display: none;
    }

    footer {
        margin: 0 auto;
        width: 100%;
    }
    footer .footer-cta {
        margin: 0 auto;
        width: 100%;
        display: flex;
        align-items: stretch;
        justify-content: space-between;
    }
    footer .footer-cta > .footer-tel {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0;
        width: 50%;
        height: auto;
        aspect-ratio: 683 / 360;
        background: var(--fg-color);
    }
    footer .footer-cta > .footer-mail {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0;
        width: 50%;
        height: auto;
        aspect-ratio: 683 / 360;
        background: var(--color-accent);
    }
    footer .footer-cta > a .title {
        color: #fff;
        font-size: 20px;
        font-weight: 500;
        font-family: var(--font-alphabet);
        text-align: center;
    }
    footer .footer-cta > a figure {
        margin: 20px auto 0;
    }
    footer .footer-cta > a .telno {
        color: #fff;
        font-size: 55px;
        font-weight: 700;
        font-family: var(--font-alphabet);
        text-align: center;
    }
    footer .footer-cta > a .open {
        color: #fff;
        font-size: 15px;
        font-weight: 500;
        text-align: center;
    }
    footer .footer-wrap {
        margin: 0 auto;
        padding: 0 18px;
        width: 100%;
        max-width: 1920px;
        height: 76px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0 32px;
    }
    footer .footer-logo {
        width: 194px;
        height: 41px;
    }
    footer .footer-logo img {
        width: 194px;
        height: 41px;
        object-fit: contain;
    }
    footer .footer-menu {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        list-style: none;
    }
    footer .footer-menu > li {
        height: 100%;
        list-style: none;
    }
    footer .footer-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 0 1.0em;
        color: var(--fg-color);
        font-size: 14px;
        font-weight: 600;
        transition: color 0.5s ease-out, opacity 0.5s ease-out;
    }
    footer .footer-contact {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 1 0 auto;
        height: 100%;
    }
    footer .footer-contact a {
        padding: 0.6em 1.0em;
        display: grid;
        place-items: center;
        color: #fff;
        font-size: 14px;
        background: #005aa7;
        border-radius: 4.0em;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 1.0em 20px;
        width: 100%;
        max-width: 1920px;
        color: var(--fg-color);
        font-size: 12px;
        text-align: right;
    }

}


@media ( max-width: 1200px ) {
    footer .footer-menu li:nth-child(7) {
        display: none;
    }
}

@media ( max-width: 1080px ) {
    header .header-menu li:nth-child(6),
    footer .footer-menu li:nth-child(6) {
        display: none;
    }
}

@media ( max-width: 1000px ) {
    header .header-menu li:nth-child(5),
    footer .footer-menu li:nth-child(5) {
        display: none;
    }
}

@media ( max-width: 920px ) {
    header .header-menu li:nth-child(4),
    footer .footer-menu li:nth-child(4) {
        display: none;
    }
}
