@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;
}

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 {
        color: inherit;
        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 < 1000px ) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}

@media ( width >= 1000px ) {
    .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-scroll-wipeIn-l {
    position: relative;
}
.ws-scroll-wipeIn-l::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform-origin: right center;
    transform: scaleX( 1.0 );
    transition: all 1.0s ease-out;
}
.ws-scroll-wipeIn-r {
    position: relative;
}
.ws-scroll-wipeIn-r::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform-origin: left center;
    transform: scaleX( 1.0 );
    transition: all 1.0s ease-out;
}
.ws-scroll-wipeIn-l.ws-scroll-show::before,
.ws-scroll-wipeIn-r.ws-scroll-show::before {
    transform: scaleX( 0.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: 16px;
    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: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    background: #fffe;
    box-shadow: 0 4px 4px #0003;
}


/**
 * スマホ用設定
 */
@media ( width < 1000px ) {

    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: 10px 0 10px 20px;
        height: 100%;
    }
    header .header-logo a {
        display: block;
        width: auto;
        height: 100%;
        aspect-ratio: 1654 / 279
    }
    header .header-logo figure {
        display: block;
        width: auto;
        height: 100%;
        aspect-ratio: 1654 / 279
    }
    header .header-logo img {
        display: block;
        width: 100%;
        height: 100%;
    }
    header .header-menu {
        display: none;
    }
    header .header-btns {
        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: 15%;
        left: 15%;
        width: 70%;
        height: 70%;
    }
    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: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc( 100vh - 60px );
        height: calc( 100dvh - 60px );
        overflow-y: auto;
        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 );
    }

    #hello-slider {
        position: relative;
        margin: 0 auto;
        padding: 0 0 80px;
        width: 100%;
        background: #fff;
        overflow: hidden;
    }
    #hello-slider > .swiper-wrapper {
        margin: 0;
    }
    #hello-slider > .swiper-wrapper > .swiper-slide {
        height: auto;
        aspect-ratio: 2 / 1;
    }
    #hello-slider > .swiper-wrapper > .swiper-slide figure {
        width: 100%;
        height: 100%;
    }
    #hello-slider > .swiper-wrapper > .swiper-slide figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #hello-slider .swiper-button-prev svg,
    #hello-slider .swiper-button-next svg {
        display: none;
    }
    #hello-slider .swiper-button-prev {
        top: calc( 50% - 40px );
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 100%;
        transition: background 0.5s ease-out;
    }
    #hello-slider .swiper-button-prev::before {
        position: absolute;
        content: "";
        top: calc( 30% - 2px );
        left: 35%;
        width: 40%;
        height: 40%;
        border-left: 4px solid #009;
        border-bottom: 4px solid #009;
        rotate: 45deg;
        transition: border 0.5s ease-out;
    }
    #hello-slider .swiper-button-prev::after {
        content: none;
    }
    #hello-slider .swiper-button-next {
        top: calc( 50% - 40px );
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 100%;
        transition: background 0.5s ease-out;
    }
    #hello-slider .swiper-button-next::before {
        position: absolute;
        content: "";
        top: calc( 30% - 2px );
        right: 35%;
        width: 40%;
        height: 40%;
        border-right: 4px solid #009;
        border-bottom: 4px solid #009;
        rotate: -45deg;
        transition: border 0.5s ease-out;
    }
    #hello-slider .swiper-button-next::after {
        content: none;
    }
    @media ( hover: hover ) {
        #hello-slider .swiper-button-prev:hover {
            background: #009;
        }
        #hello-slider .swiper-button-prev:hover::before {
            border-left: 4px solid #fff;
            border-bottom: 4px solid #fff;
        }
        #hello-slider .swiper-button-next:hover {
            background: #009;
        }
        #hello-slider .swiper-button-next:hover::before {
            border-right: 4px solid #fff;
            border-bottom: 4px solid #fff;
        }
    }

    #mv-slider-1 {
        position: relative;
        margin: 0 auto;
        padding: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
    }
    #mv-slider-1 figure {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        height: 100%;
    }
    #mv-slider-1 figure img {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #mv-slider-1 .mv-box {
        position: absolute;
        top: 15%;
        left: 15%;
        margin: 0;
        padding: 0;
        width: 70%;
        height: 70%;
        color: #fff;
        font-size: 6.0vw;
        background: rgba( 255, 255, 255, 0.1 );
        box-shadow: 0 0 1.0em rgba( 0, 0, 0, 0.2 );
        -webkit-backdrop-filter: blur(0.2em);
        backdrop-filter: blur(0.2em);
        display: grid;
        place-items: center;
        z-index: 1;
    }

    #mv-slider-2 {
        position: relative;
        margin: 0 auto;
        padding: 0 0 80px;
        width: 100%;
        background: #fff;
        overflow: hidden;
    }
    #mv-slider-2 > .swiper-wrapper {
        margin: 0;
    }
    #mv-slider-2 > .swiper-wrapper > .swiper-slide {
        height: auto;
        aspect-ratio: 2 / 1;
    }
    #mv-slider-2 > .swiper-wrapper > .swiper-slide figure {
        width: 100%;
        height: 100%;
    }
    #mv-slider-2 > .swiper-wrapper > .swiper-slide figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #mv-slider-2 .swiper-button-prev svg,
    #mv-slider-2 .swiper-button-next svg {
        display: none;
    }
    #mv-slider-2 .swiper-button-prev {
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 100%;
        transition: background 0.5s ease-out;
    }
    #mv-slider-2 .swiper-button-prev::before {
        position: absolute;
        content: "";
        top: calc( 30% - 2px );
        left: 35%;
        width: 40%;
        height: 40%;
        border-left: 4px solid #009;
        border-bottom: 4px solid #009;
        rotate: 45deg;
        transition: border 0.5s ease-out;
    }
    #mv-slider-2 .swiper-button-prev::after {
        content: none;
    }
    #mv-slider-2 .swiper-button-next {
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 100%;
        transition: background 0.5s ease-out;
    }
    #mv-slider-2 .swiper-button-next::before {
        position: absolute;
        content: "";
        top: calc( 30% - 2px );
        right: 35%;
        width: 40%;
        height: 40%;
        border-right: 4px solid #009;
        border-bottom: 4px solid #009;
        rotate: -45deg;
        transition: border 0.5s ease-out;
    }
    #mv-slider-2 .swiper-button-next::after {
        content: none;
    }
    @media ( hover: hover ) {
        #mv-slider-2 .swiper-button-prev:hover {
            background: #009;
        }
        #mv-slider-2 .swiper-button-prev:hover::before {
            border-left: 4px solid #fff;
            border-bottom: 4px solid #fff;
        }
        #mv-slider-2 .swiper-button-next:hover {
            background: #009;
        }
        #mv-slider-2 .swiper-button-next:hover::before {
            border-right: 4px solid #fff;
            border-bottom: 4px solid #fff;
        }
    }

    #mv-slider-3-main {
        position: relative;
        margin: 40px auto 0;
        padding: 0;
        width: 50%;
        background: #fff;
        overflow: hidden;
    }
    #mv-slider-3-main > .swiper-wrapper {
        margin: 0;
    }
    #mv-slider-3-main > .swiper-wrapper > .swiper-slide {
        height: auto;
        aspect-ratio: 2 / 1;
    }
    #mv-slider-3-main > .swiper-wrapper > .swiper-slide figure {
        width: 100%;
        height: 100%;
    }
    #mv-slider-3-main > .swiper-wrapper > .swiper-slide figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #mv-slider-3-main .swiper-button-prev svg,
    #mv-slider-3-main .swiper-button-next svg {
        display: none;
    }
    #mv-slider-3-main .swiper-button-prev {
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 100%;
        transition: background 0.5s ease-out;
    }
    #mv-slider-3-main .swiper-button-prev::before {
        position: absolute;
        content: "";
        top: calc( 30% - 2px );
        left: 35%;
        width: 40%;
        height: 40%;
        border-left: 4px solid #009;
        border-bottom: 4px solid #009;
        rotate: 45deg;
        transition: border 0.5s ease-out;
    }
    #mv-slider-3-main .swiper-button-prev::after {
        content: none;
    }
    #mv-slider-3-main .swiper-button-next {
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 100%;
        transition: background 0.5s ease-out;
    }
    #mv-slider-3-main .swiper-button-next::before {
        position: absolute;
        content: "";
        top: calc( 30% - 2px );
        right: 35%;
        width: 40%;
        height: 40%;
        border-right: 4px solid #009;
        border-bottom: 4px solid #009;
        rotate: -45deg;
        transition: border 0.5s ease-out;
    }
    #mv-slider-3-main .swiper-button-next::after {
        content: none;
    }
    @media ( hover: hover ) {
        #mv-slider-3-main .swiper-button-prev:hover {
            background: #009;
        }
        #mv-slider-3-main .swiper-button-prev:hover::before {
            border-left: 4px solid #fff;
            border-bottom: 4px solid #fff;
        }
        #mv-slider-3-main .swiper-button-next:hover {
            background: #009;
        }
        #mv-slider-3-main .swiper-button-next:hover::before {
            border-right: 4px solid #fff;
            border-bottom: 4px solid #fff;
        }
    }

    #mv-slider-3-thumb {
        position: relative;
        margin: 10px auto 0;
        padding: 0;
        width: 50%;
        background: #fff;
        overflow: hidden;
    }
    #mv-slider-3-thumb > .swiper-wrapper {
        margin: 0;
    }
    #mv-slider-3-thumb > .swiper-wrapper > .swiper-slide {
        height: auto;
        aspect-ratio: 2 / 1;
        opacity: 0.5;
        filter: blur(2px);
        transition: opacity 0.5s ease-out, filter 0.5s ease-out;
    }
    #mv-slider-3-thumb > .swiper-wrapper > .swiper-slide.swiper-slide-thumb-active {
        filter: blur(0);
        border: 3px solid #f00;
        opacity: 1.0;
    }
    #mv-slider-3-thumb > .swiper-wrapper > .swiper-slide figure {
        width: 100%;
        height: 100%;
    }
    #mv-slider-3-thumb > .swiper-wrapper > .swiper-slide figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #mv-slider-3-thumb .swiper-button-prev svg,
    #mv-slider-3-thumb .swiper-button-next svg {
        display: none;
    }
    #mv-slider-3-thumb .swiper-button-prev {
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 100%;
        transition: background 0.5s ease-out;
    }
    #mv-slider-3-thumb .swiper-button-prev::before {
        position: absolute;
        content: "";
        top: calc( 30% - 2px );
        left: 35%;
        width: 40%;
        height: 40%;
        border-left: 4px solid #009;
        border-bottom: 4px solid #009;
        rotate: 45deg;
        transition: border 0.5s ease-out;
    }
    #mv-slider-3-thumb .swiper-button-prev::after {
        content: none;
    }
    #mv-slider-3-thumb .swiper-button-next {
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 100%;
        transition: background 0.5s ease-out;
    }
    #mv-slider-3-thumb .swiper-button-next::before {
        position: absolute;
        content: "";
        top: calc( 30% - 2px );
        right: 35%;
        width: 40%;
        height: 40%;
        border-right: 4px solid #009;
        border-bottom: 4px solid #009;
        rotate: -45deg;
        transition: border 0.5s ease-out;
    }
    #mv-slider-3-thumb .swiper-button-next::after {
        content: none;
    }
    @media ( hover: hover ) {
        #mv-slider-3-thumb .swiper-button-prev:hover {
            background: #009;
        }
        #mv-slider-3-thumb .swiper-button-prev:hover::before {
            border-left: 4px solid #fff;
            border-bottom: 4px solid #fff;
        }
        #mv-slider-3-thumb .swiper-button-next:hover {
            background: #009;
        }
        #mv-slider-3-thumb .swiper-button-next:hover::before {
            border-right: 4px solid #fff;
            border-bottom: 4px solid #fff;
        }
    }

    main {
        margin: 0 auto;
        width: 100%;
    }

    .common-wrap {
        margin: 12.0vw auto;
        width: 90%;
    }
    .common-wrap.w1100 {
        max-width: 1100px;
    }
    .common-wrap.w1000 {
        max-width: 1000px;
    }
    .common-wrap.w960 {
        max-width: 960px;
    }
    .common-wrap.w800 {
        max-width: 800px;
    }

    .common-flex {
        margin: 12.0vw auto;
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4.0vw 0;
    }
    .common-flex.rev {
        flex-direction: column-reverse;
    }
    .common-flex .common-col30,
    .common-flex .common-col40,
    .common-flex .common-col50,
    .common-flex .common-col60,
    .common-flex .common-col70 {
        width: 100%;
    }

    .common-grid {
        margin: 12.0vw auto;
        width: 90%;
        display: grid;
        grid-template-columns: repeat( 2, 1fr );
        gap: 4.0vw 4.0vw;
    }
    .common-grid .common-item {
        margin: 0;
        width: 100%;
        grid-template-rows: subgrid;
        grid-row: span 3;
    }
    .common-grid .common-item h3 {
        margin: 0.5em 0 0.2em;
    }

    section h2 {
        margin: 3.0em auto 1.0em;
        font-size: 5.2vw;
        font-weight: 700;
        text-align: center;
    }
    section h3 {
        margin: 2.0em auto 1.0em;
        font-size: 4.8vw;
        font-weight: 700;
        text-align: left;
    }
    section h4 {
        margin: 2.0em auto 1.0em;
        font-size: 4.4vw;
        font-weight: 700;
        text-align: left;
    }
    section h5 {
        margin: 2.0em auto 1.0em;
        font-size: 4.0vw;
        font-weight: 500;
        text-align: left;
    }
    section :is(h2,h3,h4,h5):first-of-type {
        margin-top: 0;
    }
    section p {
        margin: 1.0em auto;
        font-size: 3.6vw;
        font-weight: 500;
        text-align: left;
    }

    .feature-table-wrap {
        margin: 8.0vw 0 0;
        padding: 0;
        overflow-x: auto;
    }
    .feature-table-wrap .feature-table {
        border-top: 1px solid #ccc;
        display: grid;
        grid-template-columns: 20.0vw repeat( 4, 32.0vw );
        align-items: stretch;
    }
    .feature-table-wrap .feature-table div {
        padding: 1.0em 0 1.0em;
        width: 100%;
        font-size: 4.0vw;
        font-weight: 500;
        text-align: center;
        display: grid;
        place-items: center;
        border-bottom: 1px solid #ccc;
    }

    .anim-scroll {
        margin: 1.0em 0 1.0em auto;
        width: max-content;
        font-size: 3.6vw;
        text-align: right;
        animation: anim-scroll-right 2.0s infinite 0s ease-in-out;
    }

    #about {
        padding: 12.0vw 0;
    }
    #grid {
        padding: 12.0vw 0;
    }
    #feature {
        padding: 12.0vw 0;
    }

    footer {
        width: 100%;
        background: var(--fg-color);
    }
    footer .copyright {
        margin: 0 auto;
        padding: 1.0em 0;
        width: 100%;
        color: #fff;;
        font-size: 3.0vw;
        text-align: center;
    }
}


/**
 * PC用設定
 */
@media ( width >= 1000px ) {

    header {
        height: 60px;
    }
    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: 10px 0;
        width: auto;
        height: 100%;
    }
    header .header-logo a {
        display: block;
        width: auto;
        height: 100%;
        aspect-ratio: 1654 / 279
    }
    header .header-logo figure {
        display: block;
        width: auto;
        height: 100%;
        aspect-ratio: 1654 / 279
    }
    header .header-logo img {
        display: block;
        width: 100%;
        height: 100%;
    }
    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;
        color: var(--fg-color);
        font-size: 15px;
        font-weight: 600;
        transition: color 0.5s ease-out, opacity 0.5s ease-out;
    }
    header .header-menu > li.has-submenu {
        position: relative;
    }
    header .header-menu > li.has-submenu > .header-submenu {
        position: absolute;
        top: 100%;
        right: 50%;
        width: max-content;
        margin: 0;
        padding: 0;
        background: #fff;
        box-shadow: 0 4px 4px #0003;
        list-style: none;
        opacity: 0.0;
        transform-origin: top center;
        transform: translateX( 50% ) scale( 1.0, 0.0 );
        transition: opacity 0.3s ease-out, transform 0.5s ease-out;
    }
    header .header-menu > li.has-submenu > .header-submenu > li {
        width: 100%;
        list-style: none;
    }
    header .header-menu > li.has-submenu > .header-submenu > li > a {
        margin: 0;
        padding: 1.0em 2.0em;
        width: 100%;
        color: var(--fg-color);
        font-size: 16px;
        font-weight: 500;
        text-align: left;
        transition: color 0.5s ease-out, background 0.5s ease-out;
    }
    @media ( hover: hover ) {
        header .header-menu > li.has-submenu:hover > .header-submenu {
            opacity: 1.0;
            transform: translateX( 50% ) scale( 1.0, 1.0 );
            transition: opacity 0.3s ease-out, transform 0.5s ease-out;
        }
        header .header-menu > li.has-submenu > .header-submenu > li > a:hover {
            opacity: 1.0;
            color: #fff;
            background: var(--fg-color);
        }
    }
    header .header-menu > li.has-megamenu {
        position: relative;
    }
    header .header-menu > li.has-megamenu > a {
        position: relative;
    }
    header .header-menu > li.has-megamenu > a::after {
        content: " ▼";
        scale: 0.75 0.75;
    }
    header .header-menu > li.has-megamenu > .header-megamenu {
        position: fixed;
        top: 62px;
        left: 20px;
        width: calc( 100% - 40px );
        margin: 0;
        padding: 1.0em 0;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        box-shadow: 0 4px 4px #0003;
        list-style: none;
        opacity: 0.0;
        transform-origin: top center;
        transform: scale( 1.0, 0.0 );
        transition: opacity 0.3s ease-out, transform 0.5s ease-out;
    }
    header .header-menu > li.has-megamenu > .header-megamenu > li {
        width: 200px;
        list-style: none;
    }
    header .header-menu > li.has-megamenu > .header-megamenu > li > a {
        display: flex;
        align-items: center;
        margin: 0;
        padding: 1.0em 2.0em;
        width: 100%;
        color: var(--fg-color);
        font-size: 16px;
        font-weight: 500;
        text-align: center;
        transition: color 0.5s ease-out, background 0.5s ease-out;
    }
    @media ( hover: hover ) {
        header .header-menu > li.has-megamenu:hover > .header-megamenu {
            opacity: 1.0;
            transform: scale( 1.0, 1.0 );
            transition: opacity 0.3s ease-out, transform 0.5s ease-out;
        }
        header .header-menu > li.has-megamenu > .header-megamenu > li > a:hover {
            opacity: 1.0;
            color: #fff;
            background: var(--fg-color);
        }
    }
    header .header-btns {
        width: auto;
        height: 100%;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        list-style: none;
        gap: 0 10px;
    }
    header .header-btns > li {
        margin: 0;
        padding: 16px 0;
        width: auto;
        height: 100%;
        list-style: none;
    }
    header .header-btns > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 0 1.2em;
        color: #fff;
        font-size: 15px;
        font-weight: 600;
        border-radius: 4.0em;
        transition: color 0.5s ease-out, opacity 0.5s ease-out;
    }
    header .header-btns > li.header-btn-contact > a {
        background: var(--color-theme);
    }
    header .header-btns > li.header-btn-regist > a {
        background: var(--color-theme);
    }
    header .header-sp-menu {
        display: none;
    }

    #hello-slider {
        position: relative;
        margin: 0 auto 40px;
        padding: 0 0 80px;
        width: 100%;
        background: #fff;
        overflow: hidden;
    }
    #hello-slider > .swiper-wrapper {
        margin: 0;
    }
    #hello-slider > .swiper-wrapper > .swiper-slide {
        height: auto;
        aspect-ratio: 2 / 1;
    }
    #hello-slider > .swiper-wrapper > .swiper-slide figure {
        width: 100%;
        height: 100%;
    }
    #hello-slider > .swiper-wrapper > .swiper-slide figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #hello-slider .swiper-button-prev svg,
    #hello-slider .swiper-button-next svg {
        display: none;
    }
    #hello-slider .swiper-button-prev {
        top: calc( 50% - 40px );
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 100%;
        transition: background 0.5s ease-out;
    }
    #hello-slider .swiper-button-prev::before {
        position: absolute;
        content: "";
        top: calc( 30% - 2px );
        left: 35%;
        width: 40%;
        height: 40%;
        border-left: 4px solid #009;
        border-bottom: 4px solid #009;
        rotate: 45deg;
        transition: border 0.5s ease-out;
    }
    #hello-slider .swiper-button-prev::after {
        content: none;
    }
    #hello-slider .swiper-button-next {
        top: calc( 50% - 40px );
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 100%;
        transition: background 0.5s ease-out;
    }
    #hello-slider .swiper-button-next::before {
        position: absolute;
        content: "";
        top: calc( 30% - 2px );
        right: 35%;
        width: 40%;
        height: 40%;
        border-right: 4px solid #009;
        border-bottom: 4px solid #009;
        rotate: -45deg;
        transition: border 0.5s ease-out;
    }
    #hello-slider .swiper-button-next::after {
        content: none;
    }
    @media ( hover: hover ) {
        #hello-slider .swiper-button-prev:hover {
            background: #009;
        }
        #hello-slider .swiper-button-prev:hover::before {
            border-left: 4px solid #fff;
            border-bottom: 4px solid #fff;
        }
        #hello-slider .swiper-button-next:hover {
            background: #009;
        }
        #hello-slider .swiper-button-next:hover::before {
            border-right: 4px solid #fff;
            border-bottom: 4px solid #fff;
        }
    }

    #mv-slider-1 {
        position: relative;
        margin: 0 auto;
        padding: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
    }
    #mv-slider-1 figure {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        height: 100%;
    }
    #mv-slider-1 figure img {
        margin: 0 auto;
        padding: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #mv-slider-1 .mv-box {
        position: absolute;
        top: 20%;
        left: 20%;
        margin: 0;
        padding: 0;
        width: 60%;
        height: 60%;
        color: #fff;
        font-size: clamp(20px, 4.0vw, 40px);
        background: rgba( 255, 255, 255, 0.1 );
        box-shadow: 0 0 1.0em rgba( 0, 0, 0, 0.2 );
        -webkit-backdrop-filter: blur(0.2em);
        backdrop-filter: blur(0.2em);
        display: grid;
        place-items: center;
        z-index: 1;
    }

    #mv-slider-2 {
        position: relative;
        margin: 0 auto;
        padding: 0 0 80px;
        width: 100%;
        background: #fff;
        overflow: hidden;
    }
    #mv-slider-2 > .swiper-wrapper {
        margin: 0;
    }
    #mv-slider-2 > .swiper-wrapper > .swiper-slide {
        height: auto;
        aspect-ratio: 2 / 1;
    }
    #mv-slider-2 > .swiper-wrapper > .swiper-slide figure {
        width: 100%;
        height: 100%;
    }
    #mv-slider-2 > .swiper-wrapper > .swiper-slide figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #mv-slider-2 .swiper-button-prev svg,
    #mv-slider-2 .swiper-button-next svg {
        display: none;
    }
    #mv-slider-2 .swiper-button-prev {
        top: calc( 50% - 40px );
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 100%;
        transition: background 0.5s ease-out;
    }
    #mv-slider-2 .swiper-button-prev::before {
        position: absolute;
        content: "";
        top: calc( 30% - 2px );
        left: 35%;
        width: 40%;
        height: 40%;
        border-left: 4px solid #009;
        border-bottom: 4px solid #009;
        rotate: 45deg;
        transition: border 0.5s ease-out;
    }
    #mv-slider-2 .swiper-button-prev::after {
        content: none;
    }
    #mv-slider-2 .swiper-button-next {
        top: calc( 50% - 40px );
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 100%;
        transition: background 0.5s ease-out;
    }
    #mv-slider-2 .swiper-button-next::before {
        position: absolute;
        content: "";
        top: calc( 30% - 2px );
        right: 35%;
        width: 40%;
        height: 40%;
        border-right: 4px solid #009;
        border-bottom: 4px solid #009;
        rotate: -45deg;
        transition: border 0.5s ease-out;
    }
    #mv-slider-2 .swiper-button-next::after {
        content: none;
    }
    @media ( hover: hover ) {
        #mv-slider-2 .swiper-button-prev:hover {
            background: #009;
        }
        #mv-slider-2 .swiper-button-prev:hover::before {
            border-left: 4px solid #fff;
            border-bottom: 4px solid #fff;
        }
        #mv-slider-2 .swiper-button-next:hover {
            background: #009;
        }
        #mv-slider-2 .swiper-button-next:hover::before {
            border-right: 4px solid #fff;
            border-bottom: 4px solid #fff;
        }
    }

    #mv-slider-3-main {
        position: relative;
        margin: 40px auto 0;
        padding: 0;
        width: 50%;
        background: #fff;
        overflow: hidden;
    }
    #mv-slider-3-main > .swiper-wrapper {
        margin: 0;
    }
    #mv-slider-3-main > .swiper-wrapper > .swiper-slide {
        height: auto;
        aspect-ratio: 2 / 1;
    }
    #mv-slider-3-main > .swiper-wrapper > .swiper-slide figure {
        width: 100%;
        height: 100%;
    }
    #mv-slider-3-main > .swiper-wrapper > .swiper-slide figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #mv-slider-3-main .swiper-button-prev svg,
    #mv-slider-3-main .swiper-button-next svg {
        display: none;
    }
    #mv-slider-3-main .swiper-button-prev {
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 100%;
        transition: background 0.5s ease-out;
    }
    #mv-slider-3-main .swiper-button-prev::before {
        position: absolute;
        content: "";
        top: calc( 30% - 2px );
        left: 35%;
        width: 40%;
        height: 40%;
        border-left: 4px solid #009;
        border-bottom: 4px solid #009;
        rotate: 45deg;
        transition: border 0.5s ease-out;
    }
    #mv-slider-3-main .swiper-button-prev::after {
        content: none;
    }
    #mv-slider-3-main .swiper-button-next {
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 100%;
        transition: background 0.5s ease-out;
    }
    #mv-slider-3-main .swiper-button-next::before {
        position: absolute;
        content: "";
        top: calc( 30% - 2px );
        right: 35%;
        width: 40%;
        height: 40%;
        border-right: 4px solid #009;
        border-bottom: 4px solid #009;
        rotate: -45deg;
        transition: border 0.5s ease-out;
    }
    #mv-slider-3-main .swiper-button-next::after {
        content: none;
    }
    @media ( hover: hover ) {
        #mv-slider-3-main .swiper-button-prev:hover {
            background: #009;
        }
        #mv-slider-3-main .swiper-button-prev:hover::before {
            border-left: 4px solid #fff;
            border-bottom: 4px solid #fff;
        }
        #mv-slider-3-main .swiper-button-next:hover {
            background: #009;
        }
        #mv-slider-3-main .swiper-button-next:hover::before {
            border-right: 4px solid #fff;
            border-bottom: 4px solid #fff;
        }
    }

    #mv-slider-3-thumb {
        position: relative;
        margin: 10px auto 0;
        padding: 0;
        width: 50%;
        background: #fff;
        overflow: hidden;
    }
    #mv-slider-3-thumb > .swiper-wrapper {
        margin: 0;
    }
    #mv-slider-3-thumb > .swiper-wrapper > .swiper-slide {
        height: auto;
        aspect-ratio: 2 / 1;
        opacity: 0.5;
        filter: blur(2px);
        transition: opacity 0.5s ease-out, filter 0.5s ease-out;
    }
    #mv-slider-3-thumb > .swiper-wrapper > .swiper-slide.swiper-slide-thumb-active {
        filter: blur(0);
        border: 3px solid #f00;
        opacity: 1.0;
    }
    #mv-slider-3-thumb > .swiper-wrapper > .swiper-slide figure {
        width: 100%;
        height: 100%;
    }
    #mv-slider-3-thumb > .swiper-wrapper > .swiper-slide figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #mv-slider-3-thumb .swiper-button-prev svg,
    #mv-slider-3-thumb .swiper-button-next svg {
        display: none;
    }
    #mv-slider-3-thumb .swiper-button-prev {
        top: calc( 50% - 40px );
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 100%;
        transition: background 0.5s ease-out;
    }
    #mv-slider-3-thumb .swiper-button-prev::before {
        position: absolute;
        content: "";
        top: calc( 30% - 2px );
        left: 35%;
        width: 40%;
        height: 40%;
        border-left: 4px solid #009;
        border-bottom: 4px solid #009;
        rotate: 45deg;
        transition: border 0.5s ease-out;
    }
    #mv-slider-3-thumb .swiper-button-prev::after {
        content: none;
    }
    #mv-slider-3-thumb .swiper-button-next {
        top: calc( 50% - 40px );
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 100%;
        transition: background 0.5s ease-out;
    }
    #mv-slider-3-thumb .swiper-button-next::before {
        position: absolute;
        content: "";
        top: calc( 30% - 2px );
        right: 35%;
        width: 40%;
        height: 40%;
        border-right: 4px solid #009;
        border-bottom: 4px solid #009;
        rotate: -45deg;
        transition: border 0.5s ease-out;
    }
    #mv-slider-3-thumb .swiper-button-next::after {
        content: none;
    }
    @media ( hover: hover ) {
        #mv-slider-3-thumb .swiper-button-prev:hover {
            background: #009;
        }
        #mv-slider-3-thumb .swiper-button-prev:hover::before {
            border-left: 4px solid #fff;
            border-bottom: 4px solid #fff;
        }
        #mv-slider-3-thumb .swiper-button-next:hover {
            background: #009;
        }
        #mv-slider-3-thumb .swiper-button-next:hover::before {
            border-right: 4px solid #fff;
            border-bottom: 4px solid #fff;
        }
    }

    main {
        margin: 0 auto;
        width: 100%;
    }

    .common-flex {
        margin: calc( 60 * min( 100vw, 1200px ) / 1200 ) auto;
        width: 90%;
        max-width: 1200px;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
    }
    .common-flex .common-col30 {
        width: 28%;
    }
    .common-flex .common-col40 {
        width: 38%;
    }
    .common-flex .common-col50 {
        width: 48%;
    }
    .common-flex .common-col60 {
        width: 58%;
    }
    .common-flex .common-col70 {
        width: 68%;
    }

    .common-grid {
        margin: calc( 60 * min( 100vw, 1200px ) / 1200 ) auto;
        width: 90%;
        max-width: 1200px;
        display: grid;
        grid-template-columns: repeat( 3, 1fr );
        gap: 20px 20px;
    }
    .common-grid .common-item {
        margin: 0;
        width: 100%;
        grid-template-rows: subgrid;
        grid-row: span 3;
    }
    .common-grid .common-item h3 {
        margin: 0.5em 0 0.2em;
    }

    section h2 {
        margin: 3.0em auto 1.0em;
        font-size: calc( 32 * min( 100vw, 1200px ) / 1200 );
        font-weight: 700;
        text-align: center;
    }
    section h3 {
        margin: 2.0em auto 1.0em;
        font-size: calc( 28 * min( 100vw, 1200px ) / 1200 );
        font-weight: 700;
        text-align: left;
    }
    section h4 {
        margin: 2.0em auto 1.0em;
        font-size: calc( 22 * min( 100vw, 1200px ) / 1200 );
        font-weight: 700;
        text-align: left;
    }
    section h5 {
        margin: 2.0em auto 1.0em;
        font-size: calc( 20 * min( 100vw, 1200px ) / 1200 );
        font-weight: 500;
        text-align: left;
    }
    section :is(h2,h3,h4,h5):first-child {
        margin-top: 0;
    }
    section p {
        margin: 1.0em auto;
        font-size: calc( 16 * min( 100vw, 1200px ) / 1200 );
        font-weight: 500;
        text-align: left;
    }

    .feature-table-wrap {
        margin: calc( 40 * min( 100vw, 1200px ) / 1200 ) auto;
        padding: 0;
        width: max-content;
        overflow-x: auto;
    }
    .feature-table-wrap .feature-table {
        display: grid;
        grid-template-columns: 160px repeat( 4, 200px );
        align-items: stretch;
    }
    .feature-table-wrap .feature-table div {
        padding: 1.0em 0 1.0em;
        width: 100%;
        font-size: calc( 20 * min( 100vw, 1200px ) / 1200 );
        font-weight: 500;
        text-align: center;
        display: grid;
        place-items: center;
        border-bottom: 1px solid #ccc;
    }
    .feature-table-wrap .feature-table div:nth-child(1),
    .feature-table-wrap .feature-table div:nth-child(2),
    .feature-table-wrap .feature-table div:nth-child(3),
    .feature-table-wrap .feature-table div:nth-child(4),
    .feature-table-wrap .feature-table div:nth-child(1) {
        border-top: 1px solid #ccc;
    }

    .anim-scroll {
        display: none;
    }

    #about {
        padding: calc( 60 * min( 100vw, 1200px ) / 1200 ) 0;
    }
    #grid {
        padding: calc( 60 * min( 100vw, 1200px ) / 1200 ) 0;
    }
    #feature {
        padding: calc( 60 * min( 100vw, 1200px ) / 1200 ) 0;
    }

    footer {
        width: 100%;
        background: var(--fg-color);
    }
    footer .copyright {
        margin: 0 auto;
        padding: 1.0em 0;
        width: 100%;
        max-width: 1200px;
        color: #fff;
        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 ); }
}

