@charset "utf-8";


:root {
    --color-theme:       #ccffff;
    --color-light-theme: #f0ffff;
    --color-accent:      #000099;
    --fg-color:          #000;
    --fg-color2:         #222;
    --color-white:       #fff;
    --color-lightgray:   #f0f0f0;
    --font-alphabet: 'Manrope', 'Noto Sans JP', 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
    --font-gothic: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", '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;
    --max-width: 1200px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    display: block;
    margin: 0 auto;
    vertical-align: middle;
    width: 100%;
    max-width: 100%;
    height: auto;
}

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

@media ( hover: hover ) {
    a: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: 1.0s;
}
.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: 1.0s;
}
.ws-scroll-fadeIn-r {
    opacity: 0.0;
    transform: translateX( 200px );
    transition: 1.0s;
}
.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: 1.0s;
}
.ws-scroll-fadeIn-d {
    opacity: 0.0;
    transform: translateY( 200px ) scale( 0.8, 0.8 );
    transition: 1.0s;
}
.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);
    font-size: clamp( 15px, 2.5vw, 30px );
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    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.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;
}

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: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 90;
    background: #fffe;
}


/**
 * スマホ用設定
 */
@media ( width < 768px ) {
    html {
        scroll-padding-top: 60px;
    }
    body { 
      padding-top: 60px;
    }
    header {
        position: fixed;
        height: 60px;
    }
    header .header-wrap {
        margin: 0 auto;
        width: 100%;
        height: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header .header-logo {
        padding: 0 20px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    header .header-logo img {
        margin: 0;
        width: 73.7vw;
        max-width: 357px;
        height: auto;
    }
    header .header-logo .txt1 {
        position: relative;
        margin: 0;
        padding: 0 0.5rem 0 1.0rem;
        color: var(--fg-color);
        font-size: min( 14px, 3.0vw );
        font-weight: 500;
        line-height: 1.0;
        translate: 0 -50%;
        display: none;
    }
    header .header-logo .txt1::before {
        position: absolute;
        content: attr(data-subtitle);
        bottom: 110%;
        left: 0;
        margin: 0;
        padding: 0 1.0rem;
        color: var(--fg-color);
        font-size: min( 8px, 2.4vw );
        font-weight: 400;
        line-height: 1.0;
    }
    header .header-logo .txt2 {
        margin: 0;
        padding: 0 0 0 0.5rem;
        color: var(--fg-color);
        font-size: min( 16px, 3.0vw );
        font-family: var(--font-alphabet);
        font-weight: 500;
        border-left: 1px solid #0005;
        line-height: 1.0;
        translate: 0 -30%;
        display: none;
    }
    header .header-menu {
        display: none;
    }
    header .header-sp-menu {
        position: relative;
        height: 100%;
        aspect-ratio: 1 / 1;
        justify-self: end;
    }
    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%;
    }
    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: 20em;
        padding: 1.0em 2.0em;
        background: #fffe;
        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 a {
        display: block;
        padding: 1em;
        display: block;
        font-size: min( 16px, 5vw );
        border-bottom: 1px solid #CCC; 
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu a:last-child {
      border: none;
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu {
        transform: scaleY( 1.0 );
    }

    footer {
        margin: 0 auto;
        padding: 12.0vw 0;
        width: 100%;
        border-top: 1px solid #ccc;
    }
    footer .footer-logo {
        margin: 0 auto;
        width: 96%;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }
    footer .footer-logo img {
        width: auto;
        height: auto;
    }
    footer .footer-logo .txt1 {
        margin: 0;
        padding: 0 1.0rem;
        color: var(--fg-color);
        font-size: 14px;
        font-weight: 500;
        line-height: 1.0;
        translate: 0 -50%;
    }
    footer .footer-logo .txt2 {
        margin: 0;
        padding: 0 1.0rem;
        color: var(--fg-color);
        font-size: 16px;
        font-family: var(--font-alphabet);
        font-weight: 500;
        border-left: 1px solid #0005;
        line-height: 1.0;
        translate: 0 -50%;
    }
    footer .footer-menus {
        margin: 12.0vw auto;
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12.0vw 0;
    }
    footer .footer-menus .footer-menu {
        margin: 0;
        width: 100%;
    }
    footer .footer-menus .footer-menu .head {
        margin: 0 auto;
        color: #00aaa4;
        font-size: 4.0vw;
        font-family: var(--font-alphabet);
        font-weight: 500;
        text-align: left;
        line-height: 1.0;
        letter-spacing: 0.15em;
    }
    footer .footer-menus .footer-menu .head:not(:first-child) {
        margin-top: 12.0vw;
    }
    footer .footer-menus .footer-menu .link-item {
        display: block;
        margin: 0;
        padding: 1.0em 0;
        color: var(--fg-color);
        font-size: 3.0vw;
        font-weight: 500;
        text-align: left;
        line-height: 1.0;
        letter-spacing: 0.05em;
        border-bottom: 1px solid #00000024;
    }
    footer .footer-menus .footer-menu .link-subitem {
        display: block;
        margin: 0.5em 0;
        padding: 0 0 0 1.0em;
        color: var(--fg-color);
        font-size: 3.0vw;
        font-weight: 500;
        text-align: left;
        line-height: calc( 32 / 14 );
        letter-spacing: 0.05em;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 1.0em 0;
        width: 100%;
        max-width: 1100px;
        color: var(--fg-color);
        font-size: 3.0vw;
        font-weight: 500;
        text-align: center;
    }

}


/**
 * PC用設定
 */
@media ( width >= 768px ) {

    html {
        scroll-padding-top: calc(68 / 1366 * 100vw);
    }
    header {
        height: calc(68 / 1366 * 100vw);
    }
    header .header-wrap {
        margin: 0 auto;
        padding: 0 calc(20 / 1366 * 100vw);
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header .header-logo {
        padding: 0;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    header .header-logo img {
        width: calc(357 / 1366 * 100vw);
        height: auto;
    }
    header .header-logo .txt1 {
        position: relative;
        margin: 0;
        padding: 0 1.0rem;
        color: var(--fg-color);
        font-size: calc(14 / 1366 * 100vw);
        font-weight: 500;
        line-height: 1.0;
        translate: 0 calc(-1 * (9 / 1366 * 100vw));
        display: none;
    }
    header .header-logo .txt1::before {
        position: absolute;
        content: attr(data-subtitle);
        bottom: 110%;
        left: 0;
        margin: 0;
        padding: 0 1.0rem;
        color: var(--fg-color);
        font-size: calc(8 / 1366 * 100vw);
        font-weight: 400;
        line-height: 1.0;
    }
    header .header-logo .txt2 {
        margin: 0;
        padding: 0 1.0rem;
        color: var(--fg-color);
        font-size: calc(16 / 1366 * 100vw);
        font-family: var(--font-alphabet);
        font-weight: 500;
        line-height: 1.0;
        translate: 0 calc(-1 * (8 / 1366 * 100vw));
        display: none;
    }
    header .header-logo .txt1 + .txt2 {
        border-left: calc(1 / 1366 * 100vw) solid #0005;
    }
    header .header-menu {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        list-style: none;
    }
    header .header-menu li {
        margin: 0;
        height: 100%;
        list-style: none;
    }
    header .header-menu li a {
        display: block;
        margin: 0;
        padding: 0 1.2em;
        height: 100%;
        color: var(--fg-color2);
        font-size: calc(14 / 1366 * 100vw);
        font-weight: 600;
        line-height: 1.0;
      letter-spacing: .075em; 
    }
    header .header-menu li.header-contact {
        margin: 0 0 0 1.0em;
    }
    header .header-menu li.header-contact a {
        margin: 0;
        padding: 1.13em 2.0em;
        color: #fff;
        background: #00aaa4;
        border-radius: 4.0em;
    }
    header .header-sp-menu {
        display: none;
    }

    footer {
        margin: 0 auto;
        padding: calc(80 / 1366 * 100vw) 0;
        width: 100%;
        border-top: 1px solid #ccc;
    }
    footer .footer-logo {
        margin: 0 auto;
        width: 96%;
        max-width: calc(1100 / 1366 * 100vw);
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
    }
    footer .footer-logo img {
        width: calc(483 / 1366 * 100vw);
        height: auto;
    }
    footer .footer-logo .txt1 {
        margin: 0;
        padding: 0 1.0rem;
        color: var(--fg-color);
        font-size: calc(14 / 1366 * 100vw);
        font-weight: 500;
        line-height: 1.0;
        translate: 0 -50%;
    }
    footer .footer-logo .txt2 {
        margin: 0;
        padding: 0 1.0rem;
        color: var(--fg-color);
        font-size: calc(16 / 1366 * 100vw);
        font-family: var(--font-alphabet);
        font-weight: 500;
        border-left: 1px solid #0005;
        line-height: 1.0;
        translate: 0 -50%;
    }
    footer .footer-menus {
        margin: 0 auto  calc(60 / 1366 * 100vw);
        width: 96%;
        max-width:  calc(1100 / 1366 * 100vw);
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    footer .footer-menus .footer-menu {
        margin: 0;
        width: 30%;
    }
    footer .footer-menus .footer-menu .head {
        margin: 0 auto;
        color: #00aaa4;
        font-size:  calc(16 / 1366 * 100vw);
        font-family: var(--font-alphabet);
        font-weight: 500;
        text-align: left;
        line-height: 1.0;
        letter-spacing: 0.15em;
    }
    footer .footer-menus .footer-menu .head:not(:first-child) {
        margin-top:  calc(60 / 1366 * 100vw);
    }
    footer .footer-menus .footer-menu .link-item {
        display: block;
        margin: 0;
        padding: 1.0em 0;
        color: var(--fg-color);
        font-size: calc(14 / 1366 * 100vw);
        font-weight: 400;
        text-align: left;
        line-height: 1.0;
        letter-spacing: 0.05em;
        border-bottom: 1px solid #00000024;
    }
    footer .footer-menus .footer-menu .link-subitem {
        display: block;
        margin: 0.5em 0;
        padding: 0 0 0 1.0em;
        color: var(--fg-color);
        font-size: calc(14 / 1366 * 100vw);
        font-weight: 500;
        text-align: left;
        line-height: calc( 32 / 14 );
        letter-spacing: 0.05em;
    }
    footer .copyright {
        margin: 0 auto;
        padding: 1.0em 0;
        width: calc( 1100 / 1366 * 100vw);
        color: var(--fg-color);
        font-size:  calc(11 / 1366 * 100vw);
        font-weight: 400;
        text-align: right;
    }

}

@media ( width < 1080px ) and ( width >= 768px ){
    header .header-logo img {
        width: 33.0vw;
        height: auto;
    }
    header .header-menu li a {
        font-size: 1.3vw;
    }
}



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