@charset "utf-8";


:root {
    --color-theme:       #9b512e;
    --color-light-theme: #f0ffff;
    --color-accent:      #000099;
    --fg-color:          #333;
    --bg-color:          #fff;
    --color-white:       #fff;
    --color-lightgray:   #f0f0f0;
    --font-alphabet: 'Gilda Display', 'Noto Serif 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, input[type="submit"], input[type="reset"] {
    cursor: pointer;
    transition: opacity 0.5s ease-out;
}

@media ( hover: hover ) {
    a:hover, button:hover, input[type="submit"]:hover, input[type="reset"]:hover {
        opacity: 0.5;
    }
}

h1, h2, h3, h4, h5 {
    font-weight: 400;
}

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;
}


input[type="checkbox"], input[type="radio"] {
    transform-origin: right center;
    transform: scale(1.5, 1.5);
}


@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: 160px;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    color: var(--fg-color);
    font-family: var(--font-mincho);
    font-weight: 400;
    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.0; }
    100% { opacity: 1.0; }
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    transition: background 0.5s ease-out;
}


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

    footer {
        margin: 0 auto;
        width: 100%;
    }
    footer .footer-wrap {
        margin: 0 auto;
        padding: 8.0vw 0;
        width: 90%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    footer .footer-wrap > div:nth-child(1) {
        margin: 0 auto;
        width: 100%;
    }
    footer .footer-wrap > div:nth-child(1) .txt {
        margin: 0;
        color: var(--fg-color);
        font-size: 3.6vw;
        font-weight: 400;
        text-align: center;
    }
    footer .footer-wrap > div:nth-child(1) .logo {
        display: block;
        margin: 0.5em 0 0;
        color: var(--fg-color);
        font-size: 12.0vw;
        font-family: var(--font-alphabet);
        font-weight: 400;
        text-align: center;
        line-height: 1.0;
    }
    footer .footer-wrap > div:nth-child(1) .logo span {
        font-size: 2.8vw;
        font-weight: 400;
    }
    footer .footer-wrap > div:nth-child(2) {
        margin: 8.0vw auto 0;
        width: 60%;
        color: var(--fg-color);
        font-size: 3.6vw;
        font-family: var(--font-gothic);
        font-weight: 400;
        line-height: 2.5;
    }
    footer .footer-wrap > div:nth-child(2) a {
        display: block;
        text-align: center;
    }
    footer .footer-wrap > div:nth-child(3) {
        margin: 8.0vw auto 0;
    }
    footer .footer-wrap > div:nth-child(3) .footer-btn {
        margin: 0 0 1.5em;
        padding: 0.6em 1.6em;
        width: 100%;
        font-size: 3.6vw;
        font-family: var(--font-gothic);
        font-weight: 400;
        border: 1px solid var(--fg-color);
        border-radius: 4.0em;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0 1.0em;
        transition: all 0.5s ease-out;
    }
    footer .footer-wrap > div:nth-child(3) .footer-btn::after {
        content: "→";
    }
    footer .footer-wrap > div:nth-child(3) .footer-btn.contact {
        color: #fff;
        background: var(--fg-color);
    }
    footer .footer-wrap > div:nth-child(3) .footer-btn.company {
        color: var(--fg-color);
        background: #fff;
    }
    @media ( hover: hover ) {
        footer .footer-wrap > div:nth-child(3) .footer-btn.contact:hover {
            opacity: 0.5;
        }
        footer .footer-wrap > div:nth-child(3) .footer-btn.company:hover {
            color: #fff;
            background: var(--fg-color);
            opacity: 0.5;
        }
    }
    footer .copyright {
        margin: 0 auto;
        padding: 2.0em 0;
        width: 100%;
        color: rgba( 51, 51, 51, 0.4 );
        font-size: 2.8vw;
        text-align: center;
        border-top: 1px solid rgba( 51, 51, 51, 0.1 );
    }

}


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

    footer {
        margin: 0 auto;
        width: 100%;
    }
    footer .footer-wrap {
        margin: 0 auto;
        padding: 60px 0 60px;
        width: 90%;
        max-width: 1200px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    footer .footer-wrap > div:nth-child(1) {
        flex: 1 0 auto;
    }
    footer .footer-wrap > div:nth-child(1) .txt {
        margin: 0;
        color: var(--fg-color);
        font-size: 16px;
        font-weight: 400;
    }
    footer .footer-wrap > div:nth-child(1) .logo {
        display: block;
        margin: 0.5em 0 0;
        color: var(--fg-color);
        font-size: 40px;
        font-family: var(--font-alphabet);
        font-weight: 400;
        text-align: left;
        line-height: 1.0;
    }
    footer .footer-wrap > div:nth-child(1) .logo span {
        font-size: 16px;
        font-weight: 400;
    }
    footer .footer-wrap > div:nth-child(2) {
        margin: 0 4.0em 0 0;
        width: max-content;
        flex: 0 0 auto;
        color: var(--fg-color);
        font-size: 16px;
        font-family: var(--font-gothic);
        font-weight: 400;
        line-height: 2.5;
    }
    footer .footer-wrap > div:nth-child(2) a {
        display: block;
    }
    footer .footer-wrap > div:nth-child(3) {
        width: max-content;
        flex: 0 0 auto;
    }
    footer .footer-wrap > div:nth-child(3) .footer-btn {
        margin: 0 0 1.5em;
        padding: 0.8em 1.6em;
        width: 14.0em;
        font-size: 16px;
        font-family: var(--font-gothic);
        font-weight: 400;
        border: 1px solid var(--fg-color);
        border-radius: 4.0em;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.5s ease-out;
    }
    footer .footer-wrap > div:nth-child(3) .footer-btn::after {
        content: "→";
    }
    footer .footer-wrap > div:nth-child(3) .footer-btn.contact {
        color: #fff;
        background: var(--fg-color);
    }
    footer .footer-wrap > div:nth-child(3) .footer-btn.company {
        color: var(--fg-color);
        background: #fff;
    }
    @media ( hover: hover ) {
        footer .footer-wrap > div:nth-child(3) .footer-btn.contact:hover {
            opacity: 0.5;
        }
        footer .footer-wrap > div:nth-child(3) .footer-btn.company:hover {
            color: #fff;
            background: var(--fg-color);
            opacity: 0.5;
        }
    }
    footer .copyright {
        margin: 0 auto;
        padding: 2.0em 0;
        width: 100%;
        color: rgba( 51, 51, 51, 0.4 );
        font-size: 12px;
        text-align: center;
        border-top: 1px solid rgba( 51, 51, 51, 0.1 );
    }

}


@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 ); }
}
