@charset "utf-8";


:root {
    --color-theme:       #000099;
    --color-light-theme: #f0ffff;
    --color-accent:      #000099;
    --fg-color:          #514239;
    --bg-color:          #f8f8f8;
    --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;
}

a {
    color: var(--fg-color);
    text-decoration: none;
    transition: opacity 0.5s ease-out;
}
button, input[type="submit"] {
    cursor: pointer;
    transition: opacity 0.5s ease-out;
}

@media ( hover: hover ) {
    a:hover, button:hover, input[type="submit"]: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 ( 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;
    display: none;
    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.0; }
    100% { opacity: 1.0; }
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 90;
}
header::after {
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient( to bottom, #0003, #0000 );
}


/**
 * スマホ用設定
 */
@media ( width < 768px ) {
    header .header-wrap {
        height: auto;
        aspect-ratio: 750 / 140;
    }
    header .header-pic {
        width: 100%;
        height: auto;
        aspect-ratio: 750 / 140;
    }
    header .header-pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    header .header-tel {
        position: absolute;
        display: block;
        top: 50%;
        right: 1%;
        width: auto;
        height: calc( 100% * 110 / 140 );
        aspect-ratio: 308 / 110;
        translate: 0 -50%;
    }
    header .header-tel figure {
        width: 100%;
        height: 100%;
    }
    header .header-tel figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    header .header-mail {
        display: none;
    }

    main {
        margin: calc( 140 * 100vw / 750 ) auto 0;
        padding: 0;
        width: 100%;
    }
    main figure {
        width: 100%;
        height: auto;
    }
    main figure img {
        width: 100%;
        height: auto;
    }

    #contact {
        margin: 0 auto;
        padding: 8.0vw 0;
        width: 100%;
        background: #efefef;
    }
    #contact .contact-box {
        margin: 0 auto;
        padding: 5.0vw;
        width: 90%;
        background: #fff;
        border-radius: 4.0vw;
    }
    #contact .contact-box h2 {
        margin: 0 auto;
        font-size: 6.0vw;
        font-weight: 700;
        text-align: center;
    }
    #contact .contact-box p {
        margin: 1.0em auto 4.0em;
        font-size: 3.6vw;
        text-align: left;
    }
    #contact .contact-box .label {
        display: block;
        margin: 1.5em auto 0.2em;
        font-size: 4.0vw;
    }
    #contact .contact-box label {
        font-size: 4.0vw;
        text-align: left;
        font-weight: 700;
    }
    #contact .contact-box .label label::after {
        content: "任意";
        display: inline-block;
        margin: 0 0 0 1.0em;
        color: #999;
        font-size: 3.2vw;
        text-align: left;
        font-weight: 700;
    }
    #contact .contact-box .label label.required::after {
        content: "必須";
        color: #f00;
    }
    #contact .contact-box :is(input[type="text"],input[type="tel"],input[type="email"],textarea) {
        display: inline-block;
        margin: 0.1em 0;
        padding: 0.5em;
        width: 100%;
        font-size: 18px;
        text-align: left;
        font-weight: 500;
        font-family: inherit;
        border: 1px solid #999;
        border-radius: 0.5em;
    }
    #contact .contact-box :is(input[type="text"],input[type="email"],textarea)::placeholder {
        color: #ccc;
    }
    #contact .contact-box :is(input[type="text"][name="your-zipcode"]) {
        width: 10.0em;
    }
    #contact .contact-box :is(textarea) {
        height: 8.0em;
    }
    #contact .contact-box .contact-privacy {
        margin: 6.0vw auto;
        padding: 4.0vw;
        width: 100%;
        height: 40.0vw;
        font-size: 3.6vw;
        background: #f8f8f8;
        border: 1px solid #ccc;
        overflow-y: auto;
    }
    #contact .contact-box .contact-privacy h3 {
        margin: 0 auto 1.0em;
        font-size: 4.0vw;
        font-weight: 600;
        text-align: center;
    }
    #contact .contact-box .contact-privacy h4 {
        margin: 1.0em auto 0;
        font-size: 3.6vw;
        font-weight: 500;
        text-align: left;
    }
    #contact .contact-box .contact-privacy p {
        margin: 0.5em auto 0;
        font-size: 3.6vw;
        font-weight: 400;
        text-align: left;
    }
    #contact .contact-box p.memo {
        margin: 2.0em auto 0;
        font-size: 2.8vw;
        font-weight: 400;
        text-align: center;
    }
    #contact .contact-box .ws-agree {
        margin: 8.0vw auto 0;
        text-align: center;
    }
    #contact .contact-box .ws-agree label {
        display: block;
        margin: 0 auto;
        width: max-content;
    }
    #contact .contact-box .ws-submit {
        position: relative;
        margin: 8.0vw auto 0;
        width: 90%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 300 / 65;
    }
    #contact .contact-box .ws-submit::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.4em );
        right: 1.5em;
        width: 0.8em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        rotate: -45deg;
    }
    #contact .contact-box .ws-submit input[type="submit"] {
        display: block;
        margin: 0 auto;
        width: 100%;
        height: 100%;
        color: #fff;
        font-size: 4.0vw;
        font-weight: 700;
        font-family: inherit;
        background: #4674af;
        border-radius: 4.0em;
    }
    #contact .contact-box .ws-submit .wpcf7-spinner {
        position: absolute;
        top: 100%;
        left: 50%;
        margin: 0;
        translate: -50% 0;
    }

    .sec-btn {
        position: absolute;
        display: block;
        width: 98%;
        height: auto;
        left: 50%;
        translate: -50% 0;
    }
    .sec-btn figure {
        width: 100%;
        height: auto;
    }
    .sec-btn figure img {
        width: 100%;
        height: auto;
    }

    #sec01 .sec-btn {
        top: 13%;
    }
    #sec01 .sec-btn.btn2 {
        top: 79.1%;
    }
    #sec02 .sec-btn {
        top: 47%;
    }
    #sec03 .sec-btn {
        top: 43.4%;
    }

    footer {
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }
    footer figure {
        width: 100%;
        height: auto;
    }
    footer figure img {
        width: 100%;
        height: auto;
    }

    .fixed-btn {
        position: fixed;
        display: block;
        left: 1%;
        bottom: 1%;
        width: 98%;
        height: auto;
    }
    .fixed-btn figure {
        width: 100%;
        height: auto;
    }
    .fixed-btn figure img {
        width: 100%;
        height: auto;
    }
}


/**
 * PC用設定
 */
@media ( width >= 768px ) {
    header .header-wrap {
        position: relative;
        margin: 0 auto;
        width: 100%;
        max-width: 1920px;
        height: 100px;
        overflow: hidden;
    }
    header .header-pic {
        position: absolute;
        top: 0;
        left: 0;
        width: 1920px;
        height: 100px;
    }
    header .header-pic img {
        width: 1920px;
        height: 100px;
    }
    header .header-tel {
        position: absolute;
        display: block;
        top: 50%;
        right: 1%;
        width: auto;
        height: 75%;
        aspect-ratio: 303 / 75;
        translate: 0 -50%;
    }
    header .header-tel figure {
        width: 100%;
        height: 100%;
    }
    header .header-tel figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    header .header-mail {
        position: absolute;
        display: none;
        top: 50%;
        right: 1%;
        width: auto;
        height: 76%;
        aspect-ratio: 338 / 76;
        translate: 0 -50%;
    }
    header .header-mail figure {
        width: 100%;
        height: 100%;
    }
    header .header-mail figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    main {
        margin: 100px auto 0;
        padding: 0;
        width: 100%;
        max-width: 1920px;
    }
    main figure {
        width: 100%;
        height: auto;
    }
    main figure img {
        width: 100%;
        height: auto;
    }

    #contact {
        margin: 0 auto;
        padding: 80px 0;
        width: 100%;
        background: #efefef;
    }
    #contact .contact-box {
        margin: 0 auto;
        padding: 40px;
        width: 90%;
        max-width: 800px;
        background: #fff;
        border-radius: 20px;
    }
    #contact .contact-box h2 {
        margin: 0 auto;
        font-size: 36px;
        font-weight: 700;
        text-align: center;
    }
    #contact .contact-box p {
        margin: 1.0em auto 4.0em;
        font-size: 20px;
        text-align: left;
    }
    #contact .contact-box .label {
        display: block;
        margin: 1.5em auto 0.2em;
        font-size: 20px;
    }
    #contact .contact-box .label label {
        font-size: 20px;
        text-align: left;
        font-weight: 700;
    }
    #contact .contact-box .label label::after {
        content: "任意";
        display: inline-block;
        margin: 0 0 0 1.0em;
        color: #999;
        font-size: 14px;
        text-align: left;
        font-weight: 700;
    }
    #contact .contact-box .label label.required::after {
        content: "必須";
        color: #f00;
    }
    #contact .contact-box :is(input[type="text"],input[type="tel"],input[type="email"],textarea) {
        display: inline-block;
        margin: 0.1em 0;
        padding: 0.5em;
        width: 100%;
        font-size: 18px;
        text-align: left;
        font-weight: 500;
        font-family: inherit;
        border: 1px solid #999;
        border-radius: 0.5em;
    }
    #contact .contact-box :is(input[type="text"],input[type="email"],textarea)::placeholder {
        color: #ccc;
    }
    #contact .contact-box :is(input[type="text"][name="your-zipcode"]) {
        width: 10.0em;
    }
    #contact .contact-box :is(textarea) {
        height: 8.0em;
    }
    #contact .contact-box .contact-privacy {
        margin: 40px auto;
        padding: 20px;
        width: 100%;
        max-width: 600px;
        height: 400px;
        font-size: 18px;
        background: #f8f8f8;
        border: 1px solid #ccc;
        overflow-y: auto;
    }
    #contact .contact-box .contact-privacy h3 {
        margin: 0 auto 1.0em;
        font-size: 18px;
        font-weight: 600;
        text-align: center;
    }
    #contact .contact-box .contact-privacy h4 {
        margin: 1.0em auto 0;
        font-size: 18px;
        font-weight: 500;
        text-align: left;
    }
    #contact .contact-box .contact-privacy p {
        margin: 0.5em auto 0;
        font-size: 16px;
        font-weight: 400;
        text-align: left;
    }
    #contact .contact-box p.memo {
        margin: 2.0em auto 0;
        font-size: 12px;
        font-weight: 400;
        text-align: center;
    }
    #contact .contact-box .ws-agree {
        margin: 40px auto 0;
        text-align: center;
    }
    #contact .contact-box .ws-agree label {
        display: block;
        margin: 0 auto;
        width: max-content;
    }
    #contact .contact-box .ws-submit {
        position: relative;
        margin: 40px auto 0;
        width: 90%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 300 / 65;
    }
    #contact .contact-box .ws-submit::after {
        position: absolute;
        content: "";
        top: calc( 50% - 0.4em );
        right: 1.5em;
        width: 0.8em;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        rotate: -45deg;
    }
    #contact .contact-box .ws-submit input[type="submit"] {
        display: block;
        margin: 0 auto;
        width: 100%;
        height: 100%;
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        font-family: inherit;
        background: #4674af;
        border-radius: 4.0em;
    }
    #contact .contact-box .ws-submit .wpcf7-spinner {
        position: absolute;
        top: 100%;
        left: 50%;
        margin: 0;
        translate: -50% 0;
    }

    .sec-btn {
        position: absolute;
        display: block;
        width: calc( 100% * 660 / 1920 );
        height: auto;
        left: 50%;
        translate: -50% 0;
    }
    .sec-btn figure {
        width: 100%;
        height: auto;
    }
    .sec-btn figure img {
        width: 100%;
        height: auto;
    }

    #sec01 .sec-btn {
        top: 24%;
    }
    #sec01 .sec-btn.btn2 {
        top: 76.5%;
    }
    #sec02 .sec-btn {
        top: 55%;
    }
    #sec03 .sec-btn {
        top: 40%;
    }

    footer {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        max-width: 1920px;
    }
    footer figure {
        width: 100%;
        height: auto;
    }
    footer figure img {
        width: 100%;
        height: auto;
    }

    .fixed-btn {
        display: none;
    }
}


@media ( width >= 1000px ) {
    header .header-tel {
        right: calc( 1% + 338px + 4px );
    }
    header .header-mail {
        display: block;
    }
}
