@charset "utf-8";


:root {
    --color-theme:       #ccffff;
    --color-light-theme: #f0ffff;
    --color-accent:      #af011c;
    --fg-color:          #000;
    --color-white:       #fff;
    --color-lightgray:   #f0f0f0;
    --font-alphabet: 'Inter', '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;
	--wpforms-button-background-color: #000;
	 --wpforms-button-border-radius: 30px;
}


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

img {
    display: block;
    margin: 0;
    vertical-align: middle;
    width: 100%;
    max-width: 100%;
    height: auto;
    font-style: italic;
    background-repeat: no-repeat;
    background-size: cover;
    shape-margin: 0.75rem;
}

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

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

ul, p {
    line-height: 1.8;
}

section {
    position: relative;
}

em {
    color: var(--color-accent);
    font-style: normal;
}

u {
    font-weight: 700;
    text-decoration-color: #ffec5d;
    text-decoration-thickness: 4px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-underline-offset: 0.3em;
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}


@media ( max-width: 768px ) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}

@media ( min-width: 768.01px ) {
    .pc {
        display: block;
    }
    .sp {
        display: none;
    }
}


/* スクロールアニメーション */
.ws-scroll-fadeIn {
    opacity: 0.0;
    /*transform: scale( 0.5, 0.5 ); */
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn.ws-scroll-show {
    opacity: 1.0;
    /* transform: scale( 1.0, 1.0 ); */
}

.ws-scroll-fadeIn-l {
    opacity: 0.0;
    transform: translateX( -200px );
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn-r {
    opacity: 0.0;
    transform: translateX( 200px );
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn-l.ws-scroll-show,
.ws-scroll-fadeIn-r.ws-scroll-show {
    opacity: 1.0;
    transform: translateX( 0 );
}

.ws-scroll-fadeIn-u {
    opacity: 0.0;
    transform: translateY( -200px ) scale( 0.8, 0.8 );
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn-d {
    opacity: 0.0;
    transform: translateY( 200px ) scale( 0.8, 0.8 );
    transition: all 1.0s ease-out;
}
.ws-scroll-fadeIn-u.ws-scroll-show,
.ws-scroll-fadeIn-d.ws-scroll-show {
    opacity: 1.0;
    transform: translateY( 0 )  scale( 1.0, 1.0 );
}

.ws-goto-top {
    position: fixed;
    z-index: 20;
    margin: 0;
    padding: 0 0 2px;
    top: auto;
    bottom: 10px;
    left: auto;
    right: 10px;
    width: clamp( 30px, 5.0vw, 60px );
    height: clamp( 30px, 5.0vw, 60px );
    background: var(--color-theme);
    border: 2px solid #fff;
    border-radius: clamp( 15px, 2.5vw, 30px );
    opacity: 0.0;
    transform-origin: right bottom;
    transform: scale( 0.01, 0.01 );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 1.0s;
}
.ws-goto-top::before {
    position: absolute;
    content: "";
    left: 40%;
    top: 42%;
    width: 20%;
    height: 20%;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    rotate: -45deg;
}
.ws-goto-top.ws-scroll-show {
    transform: scale( 1.0, 1.0 );
    opacity: 0.9;
}
@media ( hover: hover ) {
    .ws-goto-top:hover {
        opacity: 0.5;
    }
}

.ws-scroll-top-menu {
    opacity: 0.0;
    transform: translateY( -150px );
    transition: 0.5s;
}
.ws-scroll-top-menu.ws-scroll-show {
    opacity: 1.0;
    transform: translateY( 0 );
}



/* 以下サイトごと */

html {
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: min( 18px, 3.0vw );
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    color: var(--fg-color);
    font-family: var(--font-gothic);
    font-weight: 500;
    line-height: 1.5;
    opacity: 0.0;
    animation: anim-fadein 1.0s ease-out 0s forwards;
}

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


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    transition: background 0.5s ease-out;
}
header.scroll {
    background: #fffe;
    box-shadow: 0 4px 4px #0003;
}


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

    header {
        height: 60px;
    }
    header .header-wrap {
        margin: 0 auto;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header .header-logo {
        padding: 8px 0 8px 20px;
        height: 100%;
    }
    header .header-logo img {
        width: 130px;
        height: 41px;
        object-fit: contain;
    }
    header .header-menu {
        display: none;
    }
    header .header-sp-menu {
        position: relative;
        height: 100%;
        aspect-ratio: 1 / 1;
    }
    header .header-sp-menu #sp-menu-check {
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 1px;
        opacity: 0;
    }
    header .header-sp-menu #sp-menu-check ~ .header-sp-menu-back {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area {
        display: block;
        position: absolute;
        top: 10px;
        left: 10px;
        width: 40px;
        height: 40px;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area > .sp-menu-icon {
        position: absolute;
        top: 50%;
        left: 15%;
        width: 70%;
        height: 3px;
        background: var(--fg-color);
        border-radius: 2px;
        transition: background 0.5s ease-out;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area > .sp-menu-icon::before {
        position: absolute;
        content: "";
        top: -8px;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--fg-color);
        border-radius: 2px;
        transition: transform 0.5s ease-out;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu-area > .sp-menu-icon::after {
        position: absolute;
        content: "";
        top: 8px;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--fg-color);
        border-radius: 2px;
        transition: transform 0.5s ease-out;
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu-area > .sp-menu-icon {
        background: transparent;
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu-area > .sp-menu-icon::before {
        transform: translateY( 8px ) rotate( 45deg );
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu-area > .sp-menu-icon::after {
        transform: translateY( -8px ) rotate( -45deg );
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu {
        position: absolute;
        top: 60px;
        right: 0;
        width: max-content;
        padding: 2.0em 4.0em;
        background: #fffe;
        list-style: none;
        transform-origin: top center;
        transform: scaleY( 0.0 );
        transition: transform 0.5s ease-out;
        z-index: 99;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li {
        list-style: none;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > a {
        display: block;
        margin: 0;
        padding: 0.2em 0;
        font-size: min( 16px, 3.6vw );
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > ul.header-submenu,
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > ul.header-megamenu {
        padding: 0 0 0 1.0em;
        list-style: none;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > ul.header-submenu > li,
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > ul.header-megabmenu > li {
        margin: 0;
        padding: 0;
        width: 100%;
        list-style: none;
    }
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > ul.header-submenu > li > a,
    header .header-sp-menu #sp-menu-check ~ .sp-menu > li > ul.header-megamenu > li > a {
        display: block;
        margin: 0;
        padding: 0.2em 0;
        font-size: min( 16px, 3.6vw );
    }
    header .header-sp-menu #sp-menu-check:checked ~ .sp-menu {
        transform: scaleY( 1.0 );
    }

    .mv {
        margin: 0 auto;
        width: 100%;
        height: auto;
        aspect-ratio: 2 / 5;
        overflow: hidden;
    }
    .mv .mv-bg1 {
        position: absolute;
        top: -10vw;
        left: -140vw;
        width: 360vw;
        height: auto;
        aspect-ratio: 1600 / 983;
        z-index: 2;
    }
    .mv .mv-bg1 img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .mv .mv-bg2 {
        position: absolute;
        top: -35vw;
        left: -125vw;
        width: 300vw;
        height: auto;
        aspect-ratio: 1426 / 1000;
        z-index: 1;
    }
    .mv .mv-bg2 img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .mv .mv-txt1 {
        position: absolute;
        top: 155vw;
        left: 5%;
        width: 90%;
        z-index: 3;
        color: var(--fg-color);
        font-size: 8.0vw;
        font-weight: 900;
        line-height: calc( 75 / 52 );
    }
    .mv .mv-txt2 {
        position: absolute;
        top: 184vw;
        left: 5%;
        width: 90%;
        z-index: 4;
        color: var(--fg-color);
        font-size: 4.0vw;
        font-weight: 700;
        line-height: calc( 24 / 16 );
    }
    .mv .mv-txt3 {
        position: absolute;
        top: 210vw;
        left: 5%;
        width: 90%;
        z-index: 5;
        color: var(--fg-color);
        font-size: 3.6vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 40 / 20 );
    }
    .mv .mv-bg3 {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 40.0vw;
        height: auto;
        aspect-ratio: 1 / 1;
        z-index: 1;
    }
    .mv .mv-bg3 img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .mv .mv-scroll {
        position: absolute;
        top: 184vw;
        right: 10.0vw;
        width: 4.0vw;
        height: auto;
        aspect-ratio: 1 / 1;
        background: var(--fg-color);
        border-radius: 100%;
        z-index: 1;
    }
    .mv .mv-scroll::before {
        position: absolute;
        content: "";
        top: 25%;
        left: 35%;
        width: 30%;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        rotate: 45deg;
    }
    .mv .mv-scroll::after {
        position: absolute;
        content: "SCROLL VIEW";
        top: 110%;
        left: 50%;
        width: max-content;
        font-size: 2.8vw;
        font-family: var(--font-alphabet);
        font-weight: 600;
        translate: -50% 0;
    }

    main {
        margin: 0 auto;
        width: 100%;
    }

    #mission {
        margin: 8.0vw auto 0;
        padding: 0 0 16.0vw;
        overflow: hidden;
    }
    #mission .bg-pic {
        position: absolute;
        top: 8.0vw;
        left: -15.0vw;
        width: 130.0vw;
        z-index: -1;
    }
    #mission .bg-title {
        margin: 0;
        color: var(--color-accent);
        font-size: 10.0vw;
        font-family: var(--font-alphabet);
        font-weight: 600;
        text-align: center;
        line-height: 1.0;
        opacity: 0.06;
    }
    #mission h2 {
        margin: 0;
        color: var(--fg-color);
        font-size: 6.8vw;
        font-family: var(--font-alphabet);
        font-weight: 600;
        text-align: center;
        line-height: 1.0;
    }
    #mission .subtitle {
        margin: 1.0em 0 0;
        color: var(--color-accent);
        font-size: 2.8vw;
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
    }
    #mission .txt1 {
        margin: 1.5em 0 0;
        color: var(--color-accent);
        font-size: 6.0vw;
        font-family: var(--font-alphabet);
        font-weight: 600;
        text-align: center;
        line-height: 1.0;
    }
    #mission .txt2 {
        margin: 1.0em 0 0;
        color: var(--fg-color);
        font-size: 4.8vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 40 / 24 );
    }
    #mission .txt3 {
        margin: 1.0em auto 0;
        width: 90%;
        color: var(--fg-color);
        font-size: 3.6vw;
        font-weight: 400;
        text-align: center;
        line-height: calc( 30 / 16 );
    }
    
    #overview {
        margin: 16.0vw auto;
        padding: 0;
    }
    #overview h2 {
        margin: 0;
        color: var(--fg-color);
        font-size: 8.0vw;
        font-family: var(--font-alphabet);
        font-weight: 600;
        text-align: center;
        line-height: 1.0;
    }
    #overview .subtitle {
        margin: 1.0em 0 0;
        color: var(--color-accent);
        font-size: 2.8vw;
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
    }
    #overview .overview-flex {
        margin: 8.0vw 0 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #overview .overview-flex .overview-pic {
        width: 100%;
        height: auto;
        aspect-ratio: 683 / 400;
        order: 1;
    }
    #overview .overview-flex .overview-pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #overview .overview-flex .overview-info {
        padding: 4.0vw 5%;
        width: 100%;
        order: 2;
    }
    #overview .overview-flex .overview-info h3 {
        margin: 0;
        color: var(--fg-color);
        font-size: 6.0vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 44 / 30 );
    }
    #overview .overview-flex .overview-info p {
        margin: 1.0em 0 0;
        color: var(--fg-color);
        font-size: 3.6vw;
        font-weight: 400;
        text-align: left;
        line-height: calc( 30 / 16 );
    }

    #about {
        margin: 16.0vw auto;
        padding: 0;
        overflow: hidden;
    }
    #about h2 {
        margin: 0;
        color: var(--fg-color);
        font-size: 8.0vw;
        font-family: var(--font-alphabet);
        font-weight: 600;
        text-align: center;
        line-height: 1.0;
    }
    #about .subtitle {
        margin: 1.0em 0 0;
        color: var(--color-accent);
        font-size: 2.8vw;
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
    }
    #about .about-box {
        margin: 8.0vw auto 0;
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #about .about-box .about-icon {
        position: relative;
        width: 50%;
        height: auto;
        aspect-ratio: 2 / 1;
    }
    #about .about-box .about-icon img {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 40%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: contain;
        translate: -50% -50%;
    }
    #about .about-box .about-icon::before {
        position: absolute;
        content: attr(data-no);
        top: 50%;
        left: 50%;
        width: max-content;
        color: #af011c08;
        font-size: 40.0vw;
        text-align: center;
        line-height: 1.0;
        translate: -50% -50%;
        z-index: -1;
    }
    #about .about-box .about-info {
        width: 100%;
    }
    #about .about-box .about-info h3 {
        margin: 0;
        color: var(--fg-color);
        font-size: 6.0vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 44 / 30 );
    }
    #about .about-box .about-info p {
        margin: 1.0em 0 0;
        color: var(--fg-color);
        font-size: 3.6vw;
        font-weight: 400;
        text-align: left;
        line-height: calc( 30 / 16 );
    }
    #about .about-message {
        margin: 16.0vw 0 0;
        position: relative;
        padding: 0 0 6.0vw;
        z-index: 1;
    }
    #about .about-message .about-bg {
        position: absolute;
        bottom: 0;
        left: -50vw;
        width: 200vw;
        height: auto;
        aspect-ratio: 2030 / 337;
    }
    #about .about-message .about-bg img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    #about .about-message p {
        font-size: 4.0vw;
        font-weight: 700;
        text-align: center;
        line-height: calc( 50 / 25 );
    }

    #investor {
        margin: 16.0vw auto;
        padding: 0;
        overflow: hidden;
    }
    #investor h2 {
        margin: 0;
        color: var(--fg-color);
        font-size: 8.0vw;
        font-family: var(--font-alphabet);
        font-weight: 600;
        text-align: center;
        line-height: 1.0;
    }
    #investor .subtitle {
        margin: 1.0em 0 0;
        color: var(--color-accent);
        font-size: 2.8vw;
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
    }
    #investor .investor-grid {
        margin: 8.0vw auto 0;
        width: 90%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 4.0vw 0;
    }
    #investor .investor-grid .investor-item {
        margin: 0;
        padding: 4.0vw 2.0vw;
        width: 100%;
        border: 1px solid #af011c33;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #investor .investor-grid .investor-item h3 {
        color: var(--fg-color);
        font-size: 4.8vw;
        font-weight: 500;
        text-align: center;
    }
    #investor .investor-grid .investor-item p {
        color: #767676;
        font-size: 3.2vw;
        font-weight: 400;
        text-align: center;
    }

    #company {
        margin: 16.0vw auto 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #company .company-pic {
        width: 100%;
        height: auto;
        aspect-ratio: 2 / 1;
    }
    #company .company-pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #company .company-info {
        margin: 8.0vw auto 0;
        padding: 0 5%;
        width: 100%;
    }
    #company h2 {
        margin: 0;
        color: var(--fg-color);
        font-size: 8.0vw;
        font-family: var(--font-alphabet);
        font-weight: 600;
        text-align: left;
        line-height: 1.0;
    }
    #company .subtitle {
        margin: 1.0em 0 0;
        color: var(--color-accent);
        font-size: 2.8vw;
        font-weight: 700;
        text-align: left;
        line-height: 1.0;
    }
    #company .company-table {
        margin: 8.0vw 0 0;
        display: grid;
        grid-template-columns: 28.0vw 1fr;
        gap: 4.0vw 0;
    }
    #company .company-table dt {
        color: var(--fg-color);
        font-size: 3.6vw;
        font-weight: 700;
    }
    #company .company-table dd > div {
        color: var(--fg-color);
        font-size: 3.6vw;
        font-weight: 400;
    }
    #company .company-table dd > div:nth-child(n+2) {
        margin: 1.0em 0 0;
        color: #666;
        font-size: 3.2vw;
        line-height: 1.2;
    }

    #contact {
        margin: 16.0vw auto;
        padding: 0;
        overflow: hidden;
    }
    #contact .contact-pic {
        position: absolute;
        top: 50%;
        left: 50%;
        width: calc( 100vw * 1871 / 1366 );
        height: auto;
        aspect-ratio: 1871 / 1627;
        z-index: 0;
        translate: -50% -50%;
    }
    #contact .contact-pic img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    #contact .contact-box {
    /*    position: absolute;
        top: 50%;
        left: 5%;
        width: 90%;*/
        height: auto;
        z-index: 1;
        /* translate: 0 -50%;*/
    }
    #contact h2 {
        margin: 0;
        color: var(--fg-color);
        font-size: 8.0vw;
        font-family: var(--font-alphabet);
        font-weight: 600;
        text-align: center;
        line-height: 1.0;
    }
    #contact .subtitle {
        margin: 1.0em 0 0;
        color: var(--color-accent);
        font-size: 2.8vw;
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
    }

    #contact .btn-contact,
	.wpforms-container-full button[type=submit] {
        margin: 60px auto 0;
        width: 90%;
        max-width: 600px;
        height: 100px;
        color: #fff !important;
		background-color: #555 !important;
		aspect-ratio: 5/1;
        font-size: 30px;
        font-family: var(--font-alphabet) !important;
        font-weight: 600;
        text-align: center;
        line-height: 1.0;
        background: var(--fg-color);
        border-radius: 4.0em !important;
        display: grid;
        place-items: center;
    }


    footer {
        margin: 8.0vw auto 0;
        width: 100%;
    }
    footer .copyright {
        margin: 0 auto;
        width: 90%;
        max-width: 1120px;
        color: var(--fg-color);
        font-size: 12px;
        font-family: var(--font-alphabet);
        text-align: center;
    }

}


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

    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: 9px 0;
        height: 100%;
    }
    header .header-logo img {
        width: 110px;
        height: 41px;
        object-fit: contain;
    }
    header .header-menu {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        list-style: none;
    }
    header .header-menu > li {
        height: 100%;
        list-style: none;
    }
    header .header-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 0 1.0em;
        color: var(--fg-color);
        font-family: var(--font-alphabet);
        font-size: calc( 14 * min( 100vw, 900px ) / 900 );
        font-weight: 600;
        transition: color 0.5s ease-out, opacity 0.5s ease-out;
    }
    header .header-menu > li.header-contact {
        padding: 10px 0;
    }
    header .header-menu > li.header-contact a {
        padding: 0 1.5em;
        color: #fff;
        background: var(--fg-color);
        border-radius: 4.0em;
    }
    header .header-sp-menu {
        display: none;
    }

    .mv {
        margin: 0 auto;
        width: 100%;
        height: auto;
        aspect-ratio: 1366 / 1429;
        overflow: hidden;
    }
    .mv .mv-bg1 {
        position: absolute;
        top: calc( 100vw * -48 / 1366 );
        left: calc( 100vw * -156 / 1366 );
        width: calc( 100% * 1600 / 1366 );
        height: auto;
        aspect-ratio: 1600 / 983;
        z-index: 2;
    }
    .mv .mv-bg1 img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .mv .mv-bg2 {
        position: absolute;
        top: calc( 100vw * -291 / 1366 );
        left: calc( 100vw * -540 / 1366 );
        width: calc( 100% * 1246 / 1366 );
        height: auto;
        aspect-ratio: 1426 / 1000;
        z-index: 1;
    }
    .mv .mv-bg2 img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .mv .mv-txt1 {
        position: absolute;
        top: calc( 100vw * 306 / 1366 );
        left: 50%; /* calc( 100vw * 122 / 1366 ); */
        width: min( 1120px, calc( 100vw * 1120 / 1366 ) );
        z-index: 3;
        color: var(--fg-color);
        font-size: min( 52px, calc( 100vw * 52 / 1366 ) );
        font-weight: 900;
        line-height: calc( 75 / 52 );
        translate: -50% 0;
    }
    .mv .mv-txt2 {
        position: absolute;
        top: calc( 100vw * 466 / 1366 );
        left: 50%; /* calc( 100vw * 122 / 1366 ); */
        width: min( 1120px, calc( 100vw * 1120 / 1366 ) );
        z-index: 4;
        color: var(--fg-color);
        font-size: min( 16px, calc( 100vw * 16 / 1366 ) );
        font-weight: 700;
        line-height: calc( 24 / 16 );
        translate: -50% 0;
    }
    .mv .mv-txt3 {
        position: absolute;
        top: calc( 100vw * 1170 / 1366 );
        left: 50%; /* calc( 100vw * 122 / 1366 ); */
        width: min( 1120px, calc( 100vw * 1120 / 1366 ) );
        z-index: 5;
        color: var(--fg-color);
        font-size: min( 20px, calc( 100vw * 20 / 1366 ) );
        font-weight: 700;
        text-align: center;
        line-height: calc( 40 / 20 );
        translate: -50% 0;
    }
    .mv .mv-bg3 {
        position: absolute;
        bottom: 0;
        right: 0;
        width: calc( 100% * 380 / 1366 );
        height: auto;
        aspect-ratio: 1 / 1;
        z-index: 1;
    }
    .mv .mv-bg3 img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .mv .mv-scroll {
        position: absolute;
        top: calc( 100vw * 705 / 1366 );
        right: 40px;;
        width: 26px;
        height: auto;
        aspect-ratio: 1 / 1;
        background: var(--fg-color);
        border-radius: 100%;
        z-index: 1;
    }
    .mv .mv-scroll::before {
        position: absolute;
        content: "";
        top: 25%;
        left: 35%;
        width: 30%;
        height: auto;
        aspect-ratio: 1 / 1;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        rotate: 45deg;
    }
    .mv .mv-scroll::after {
        position: absolute;
        content: "SCROLL VIEW";
        top: 110%;
        left: 50%;
        width: max-content;
        font-size: 10px;
        font-family: var(--font-alphabet);
        font-weight: 600;
        translate: -50% 0;
    }

    main {
        margin: 0 auto;
        width: 100%;
    }

    #mission {
        margin: 0 auto;
        padding: 0 0 calc( 100vw * 240 / 1366 );
        overflow: hidden;
    }
    #mission .bg-pic {
        position: absolute;
        top: calc( 100vw * 80 / 1366 );
        left: calc( 100vw * -194 / 1366 );
        width: calc( 100vw * 1637 / 1366 );
        z-index: -1;
    }
    #mission .bg-title {
        margin: 0;
        color: var(--color-accent);
        font-size: calc( 100vw * 140 / 1366 );
        font-family: var(--font-alphabet);
        font-weight: 600;
        text-align: center;
        line-height: 1.0;
        opacity: 0.06;
    }
    #mission h2 {
        margin: -1.0em 0 0;
        color: var(--fg-color);
        font-size: 40px;
        font-family: var(--font-alphabet);
        font-weight: 600;
        text-align: center;
        line-height: 1.0;
    }
    #mission .subtitle {
        margin: 1.0em 0 0;
        color: var(--color-accent);
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
    }
    #mission .txt1 {
        margin: 0.5em 0 0;
        color: var(--color-accent);
        font-size: 60px;
        font-family: var(--font-alphabet);
        font-weight: 600;
        text-align: center;
        line-height: 1.0;
    }
    #mission .txt2 {
        margin: 1.0em 0 0;
        color: var(--fg-color);
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        line-height: calc( 40 / 24 );
    }
    #mission .txt3 {
        margin: 1.0em 0 0;
        color: var(--fg-color);
        font-size: 16px;
        font-weight: 400;
        text-align: center;
        line-height: calc( 30 / 16 );
    }
    
    #overview {
        margin: 180px auto;
        padding: 0;
    }
    #overview h2 {
        margin: 0;
        color: var(--fg-color);
        font-size: 40px;
        font-family: var(--font-alphabet);
        font-weight: 600;
        text-align: center;
        line-height: 1.0;
    }
    #overview .subtitle {
        margin: 1.0em 0 0;
        color: var(--color-accent);
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
    }
    #overview .overview-flex {
        margin: 60px 0 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    #overview .overview-flex .overview-pic {
        width: 50%;
        height: auto;
        aspect-ratio: 683 / 400;
    }
    #overview .overview-flex .overview-pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #overview .overview-flex .overview-info {
        width: 50%;
    }
    #overview .overview-flex .overview-info h3 {
        margin: 0;
        color: var(--fg-color);
        font-size: 30px;
        font-weight: 700;
        text-align: left;
        line-height: calc( 44 / 30 );
    }
    #overview .overview-flex .overview-info p {
        margin: 1.0em 0 0;
        color: var(--fg-color);
        font-size: 16px;
        font-weight: 400;
        text-align: left;
        line-height: calc( 30 / 16 );
    }
    #overview .overview-flex .overview-info:nth-child(1) {
        padding: 0 60px 0 max( 40px, calc( 50vw - 683px ) );
    }
    #overview .overview-flex .overview-info:nth-child(2) {
        padding: 0 max( 40px, calc( 50vw - 683px ) ) 0 60px;
    }

    #about {
        margin: 180px auto;
        padding: 0;
        overflow: hidden;
    }
    #about h2 {
        margin: 0;
        color: var(--fg-color);
        font-size: 40px;
        font-family: var(--font-alphabet);
        font-weight: 600;
        text-align: center;
        line-height: 1.0;
    }
    #about .subtitle {
        margin: 1.0em 0 0;
        color: var(--color-accent);
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
    }
    #about .about-box {
        margin: calc( 120 * min( 90vw, 1120px ) / 1366 ) auto;
        width: 90%;
        max-width: 1120px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    #about .about-box .about-icon {
        position: relative;
        width: 30%;
    }
    #about .about-box .about-icon img {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 40%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: contain;
        translate: -50% -50%;
    }
    #about .about-box .about-icon::before {
        position: absolute;
        content: attr(data-no);
        top: 50%;
        left: 50%;
        width: max-content;
        color: #af011c08;
        font-size: calc( 262 * min( 90vw, 1120px ) / 1366 );
        text-align: center;
        line-height: 1.0;
        translate: -50% -50%;
        z-index: -1;
    }
    #about .about-box .about-info {
        width: 70%;
    }
    #about .about-box .about-info h3 {
        margin: 0;
        color: var(--fg-color);
        font-size: 30px;
        font-weight: 700;
        text-align: left;
        line-height: calc( 44 / 30 );
    }
    #about .about-box .about-info p {
        margin: 1.0em 0 0;
        color: var(--fg-color);
        font-size: 16px;
        font-weight: 400;
        text-align: left;
        line-height: calc( 30 / 16 );
    }
    #about .about-message {
        margin: 8.0vw 0 0;
        position: relative;
        padding: 0 0 6.0vw;
        z-index: 1;
    }
    #about .about-message .about-bg {
        position: absolute;
        bottom: 0;
        left: calc( 100vw * -442 / 1366 );
        width: calc( 100vw * 2030 / 1366 );
        height: auto;
        aspect-ratio: 2030 / 337;
    }
    #about .about-message .about-bg img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    #about .about-message p {
        font-size: 25px;
        font-weight: 700;
        text-align: center;
        line-height: calc( 50 / 25 );
    }

    #investor {
        margin: 180px auto;
        padding: 0;
        overflow: hidden;
    }
    #investor h2 {
        margin: 0;
        color: var(--fg-color);
        font-size: 40px;
        font-family: var(--font-alphabet);
        font-weight: 600;
        text-align: center;
        line-height: 1.0;
    }
    #investor .subtitle {
        margin: 1.0em 0 0;
        color: var(--color-accent);
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
    }
    #investor .investor-grid {
        margin: 60px auto 0;
        width: 90%;
        max-width: 1120px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    #investor .investor-grid .investor-item {
        margin: 0;
        padding: 60px 20px;
        width: 100%;
        border: 1px solid #af011c33;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #investor .investor-grid .investor-item h3 {
        color: var(--fg-color);
        font-size: 26px;
        font-weight: 500;
        text-align: center;
    }
    #investor .investor-grid .investor-item p {
        color: #767676;
        font-size: 14px;
        font-weight: 400;
        text-align: center;
    }

    #company {
        margin: 180px auto 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    #company .company-pic {
        width: 40%;
        height: auto;
    }
    #company .company-info {
        padding: 0 max( 40px, calc( 50vw - 683px ) ) 0 60px;
        width: 60%;
    }
    #company h2 {
        margin: 0;
        color: var(--fg-color);
        font-size: 40px;
        font-family: var(--font-alphabet);
        font-weight: 600;
        text-align: left;
        line-height: 1.0;
    }
    #company .subtitle {
        margin: 1.0em 0 0;
        color: var(--color-accent);
        font-size: 16px;
        font-weight: 700;
        text-align: left;
        line-height: 1.0;
    }
    #company .company-table {
        margin: 80px 0 0;
        display: grid;
        grid-template-columns: 160px 1fr;
        gap: 40px 0;
    }
    #company .company-table dt {
        color: var(--fg-color);
        font-size: 16px;
        font-weight: 700;
    }
    #company .company-table dd > div {
        color: var(--fg-color);
        font-size: 16px;
        font-weight: 400;
    }
    #company .company-table dd > div:nth-child(n+2) {
        margin: 1.0em 0 0;
        color: #666;
        font-size: 14px;
        line-height: 1.2;
    }

  /* edited by FS 20250625 
   * #contact {
        margin: 0;
        padding: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 1366 / 760;
        overflow: hidden;
    }
	*/
	    #contact {
        margin: 180px auto;
        padding: 0;
        overflow: hidden;
    }
    #contact .contact-pic {
        position: absolute;
        top: 50%;
        left: 50%;
        width: calc( 100vw * 1871 / 1366 );
        height: auto;
        aspect-ratio: 1871 / 1627;
        z-index: 0;
        translate: -50% -50%;
    }
    #contact .contact-pic img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    #contact .contact-box {
    /*    position: absolute;
        top: 50%;
        left: 5%;
        width: 90%;*/
        height: auto;
        z-index: 1;
        /* translate: 0 -50%; */
    }
    #contact h2 {
        margin: 0;
        color: var(--fg-color);
        font-size: 40px;
        font-family: var(--font-alphabet);
        font-weight: 600;
        text-align: center;
        line-height: 1.0;
    }
    #contact .subtitle {
        margin: 1.0em 0 0;
        color: var(--color-accent);
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        line-height: 1.0;
    }
    #contact .btn-contact,
	.wpforms-container-full button[type=submit] {
        margin: 60px auto 0;
        width: 90%;
        max-width: 600px;
        height: 100px;
        color: #fff !important;
		background-color: #555 !important;
        font-size: 30px;
        font-family: var(--font-alphabet) !important;
        font-weight: 600;
        text-align: center;
        line-height: 1.0;
        background: var(--fg-color);
        border-radius: 4.0em !important;
        display: grid;
        place-items: center;
    }

    footer {
        width: 100%;
    }
    footer .copyright {
        margin: 0 auto;
        width: 90%;
        max-width: 1120px;
        color: var(--fg-color);
        font-size: 12px;
        font-family: var(--font-alphabet);
        text-align: left;
    }

}


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