@charset "UTF-8";
html {
    font-size: 62.5%;
}
body {
    width: 100%;
    height: 100%;
    font-size: 1.6em;
    line-height: 1.8;
}
main {
    overflow: hidden;
}
*,
*:before,
*:after {
    box-sizing:border-box;
}
/* ------------------------------------- /
/   共通
/* ------------------------------------- */
.taC {
    text-align: center;
}
.taR {
    text-align: right;
}
.fwM {
    font-weight: 500;
}
.fwSB {
    font-weight: 600;
}
.fwB {
    font-weight: bold;
}


/* ------------------------------------- /
/   pc-none、sp-none
/* ------------------------------------- */
.pc-none {
    display: none;
}
.pc-none768 {
    display: none;
}
.pc-none__inline {
    display: none;
}
.pc-none__inline768 {
    display: none;
}
.pc-none__inline1000 {
    display: none;
}
.pc-none__inline1200 {
    display: none;
}
@media screen and (max-width:1200px){
.pc-none__inline1200 {
    display: inline;
}
.sp-none1200 {
    display: none;
}
}
@media screen and (max-width:1000px){
.pc-none__inline1000 {
    display: inline;
}
.sp-none1000 {
    display: none;
}
}
@media screen and (max-width:768px){
.pc-none768 {
    display: block;
}
.pc-none__inline768 {
    display: inline;
}
.sp-none768 {
    display: none;
}
}
@media screen and (max-width:600px){
.pc-none {
    display: block;
}
.pc-none__inline {
    display: inline;
}
.sp-none {
    display: none !important;
}
}

/* ------------------------------------- /
/   サイトカラー、フォント
/* ------------------------------------- */
body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    color: var(--color-black);
    background-color :#ffffff;
}
a {
    color: var(--color-black);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
::selection {
    background: var(--color-black);
    color: #fff;
}
:root {
    --font-jp: "Noto Sans JP", sans-serif;
    --font-en: "Unbounded", sans-serif;
    --color-black: #000000;
}
.font-jp {
    font-family: var(--font-jp);
}
.font-en {
    font-family: var(--font-en);
    font-weight: bold;
    letter-spacing: 0.04em;
}
.bg-black {background-color: var(--color-black);}
.bg-white {background-color: #fff;}
.color-black {color: var(--color-black);a{color: var(--color-black);}}
.color-white {color: #fff;a{color: #fff;}}


/* ------------------------------------- /
/   header
/* ------------------------------------- */
header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    width: 100%;
}
.header_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 92.71%;
    min-height: 90px;
    margin: 0 auto;
    position: relative;
    transition-duration: 0.3s;
}
.header_logo {
    display: block;
    width: min(100%, 209px);
    position: relative;
    transition-duration: 0.3s;
}
.header_logo:hover {
    opacity: 0.5;
}
@media (max-width: 768px) {
.header_logo {
    width: min(100%, 140px);
}
.header_wrapper {
    min-height: 60px;
}
}

/* メニュー */
.header_menu {
    width: min(100%, 400px);
    height: 100vh;
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transition-duration: 0.6s;
    transition-delay: 0.3s;
    transform: translateX(100%);
}
.header_menu.active {
    transform: translateX(0);
    z-index: 100;
    transition-delay: 0s;
}
.header_menu_inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    padding: 90px 0 30px;
    opacity: 0;
    transition-duration: 0.3s;
}
    .header_menu.active .header_menu_inner {
        transition-delay: 0.6s;
        opacity: 1;
    }
.header_logo_sp {
    width: calc(100%, 209px);
    margin: 0 0 10px;
    transition-duration: 0.3s;
}
.header_logo_sp:hover {
    opacity: 0.5;
}
.header_menu_link {
    width: 100%;
}
    .header_menu_link a {
        display: block;
        padding: 5px 0;
        transition-duration: 0.3s;
        font-size: 1.8rem;
        color: #fff;
    }
    .header_menu_link a:hover {
        text-decoration: none;
        background-color: #fff;
        color: #000;
    }
@media (max-width: 768px) {
}

/* ------------------------------------- /
/   menu_trigger
/* ------------------------------------- */
.menu_trigger {
    display: block;
    width: 50px;
    height: 30px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
    position:relative;
    z-index: 100;
}
.menu_trigger span {
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
    transition-duration: 0.3s;
}
.menu_trigger span:nth-of-type(1) {
    top: 0;
}
.menu_trigger.opend span:nth-of-type(1) {
    animation-name: menu-close_01;
    animation-duration: 0.3s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.menu_trigger.active span:nth-of-type(1) {
    animation-name: menu-open_01;
}
@keyframes menu-open_01 {
    0% {
        top: 0;
        transform: rotateZ(0deg);
    }
    50% {
        top: 50%;
        transform: translateY(-50%) rotateZ(0deg);
    }
    100% {
        top: 50%;
        transform: translateY(-50%) rotateZ(45deg);
    }
}
@keyframes menu-close_01 {
    0% {
        top: 50%;
        transform: translateY(-50%) rotateZ(45deg);
    }
    50% {
        top: 50%;
        transform: translateY(-50%) rotateZ(0deg);
    }
    100% {
        top: 0;
        transform: rotateZ(0deg);
    }
}
.menu_trigger span:nth-of-type(3) {
    top: calc(50% - 1px);
}
.menu_trigger.opend span:nth-of-type(3) {
    animation-name: menu-close_03;
    animation-duration: 0.3s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.menu_trigger.active span:nth-of-type(3) {
    animation-name: menu-open_03;
}
@keyframes menu-open_03 {
    0% {
        width: 100%;
        left: 0;
    }
    50% {
        width: 100%;
        left: 0;
    }
    100% {
        width: 0;
        left: 50%;
    }
}
@keyframes menu-close_03 {
    0% {
        width: 0;
        left: 50%;
    }
    50% {
        width: 0;
        left: 50%;
    }
    100% {
        width: 100%;
        left: 0;
    }
}
.menu_trigger span:nth-of-type(2) {
    bottom: 0;
}
.menu_trigger.opend span:nth-of-type(2) {
    animation-name: menu-close_02;
    animation-duration: 0.3s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.menu_trigger.active span:nth-of-type(2) {
    animation-name: menu-open_02;
}
@keyframes menu-open_02 {
    0% {
        bottom: 0;
        transform: rotateZ(0deg);
    }
    50% {
        bottom: 50%;
        transform: translateY(50%) rotateZ(0deg);
    }
    100% {
        bottom: 50%;
        transform: translateY(50%) rotateZ(-45deg);
    }
}
@keyframes menu-close_02 {
    0% {
        bottom: 50%;
        transform: translateY(50%) rotateZ(-45deg);
    }
    50% {
        bottom: 50%;
        transform: translateY(50%) rotateZ(0deg);
    }
    100% {
        bottom: 0;
        transform: rotateZ(0deg);
    }
}

@media (max-width: 768px) {
.menu_trigger {
    width: 30px;
    height: 20px;
}
.menu_trigger span {
    height: 1px;
}
}


/* ------------------------------------- /
/   footer
/* ------------------------------------- */
.footer_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: min(94%, 1400px);
    min-height: 100px;
    margin: 0 auto;
    position: relative;
    transition-duration: 0.3s;
}
.footer_left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: min(100%, 670px);
}
.footer_logo {
    display: block;
    width: min(100%, 209px);
    position: relative;
    transition-duration: 0.3s;
}
.footer_logo:hover {
    opacity: 0.5;
}
.footer_address {
    font-size: 1.5rem;
    padding-top: 5px;
}
    .footer_address span {
        display: inline-block;
    }

.footer_copyright {
    font-size: 1.8rem;
    padding-top: 5px;
}
    .footer_copyright a {
        transition-duration: 0.3s;
    }
    .footer_copyright a:hover {
        text-decoration: none;
    }

@media (max-width: 1000px) {
.footer_left {
    width: min(100%, 480px);
}
.footer_logo {
    width: min(100%, 140px);
}
.footer_address {
    font-size: 1.4rem;
}
    .footer_address span:first-child {
        display: none;
    }
.footer_copyright {
    font-size: 1.5rem;
}
}
@media (max-width: 768px) {
.footer_address {
    line-height: 1.3;
}
.footer_copyright {
    font-size: 1.4rem;
}
}
@media (max-width: 650px) {
.footer_left {
    width: min(100%, 340px);
}
.footer_address {
    padding-top: 0;
}
.footer_copyright {
    padding-top: 0;
}
}
@media (max-width: 500px) {
footer {
    padding: 10px 0;
}
.footer_left {
    flex-direction: column;
    justify-content: center;
    
}
.footer_wrapper {
    flex-direction: column;
    justify-content: center;
    row-gap: 10px;
    min-height: 120px;
}
.footer_address {
    margin-top: 5px;
    text-align: center;
}
}


/* ------------------------------------- /
/   main
/* ------------------------------------- */
main {
    padding: 90px 0 0;
}
@media (max-width: 768px) {
main {
    padding: 60px 0 0;
}
}

/* ------------------------------------- /
/   index_mv
/* ------------------------------------- */
.index_mv {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: max(calc(100vh - 190px), 500px);
    padding: 2.6vw 0 0;
    background-image: url('../img/mv_bg.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
}
.index_mv::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.8);
}
.index_mv_text {
    width: 100%;
    /*
    height: 158px;
    */
    height: 8.23vw;
    background-position: left center;
    background-size: auto 100%;
    background-repeat: repeat-x;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    position: relative;
}
.index_mv_text.text_01 {
    background-image: url('../img/mv_text_01.svg');
    animation-name: index_mv_text_01;
    animation-duration: 20s;
}
.index_mv_text.text_02 {
    /*
    margin: 35px 0 0;
    */
    margin: 1.82vw 0 0;
    background-image: url('../img/mv_text_02.svg');
    animation-name: index_mv_text_02;
    animation-duration: calc(20s * (1283 / 1842));
}
@keyframes index_mv_text_01 {
    0% {
        background-position: 0 center;
    }
    100% {
        /*
        background-position: -1842px center;
        */
        background-position: calc(-100vw * (1842 / 1920)) center;
    }
}
@keyframes index_mv_text_02 {
    0% {
        background-position: 0 center;
    }
    100% {
        /*
        background-position: 1283px center;
        */
        background-position: calc(100vw * (1283 / 1920)) center;
    }
}
.index_h1 {
    /*
    width: min(80%, 430px);
    */
    width: 22.4vw;
    aspect-ratio: 430/80;
    background-image: url('../img/index_h1.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    /*
    margin: 120px auto 0;
    */
    margin: 6.25vw auto 0;
    position: relative;
    color: red;
    overflow: hidden;
}
.index_h1::before {
    content: '';
    display: inline-block;
    width: 100%;
    aspect-ratio: 430/80;
}
@media (max-width: 1920px) {
.index_mv {
    padding: 0;
}
}
@media (max-width: 768px) {
.index_mv {
    height: max(calc(100vh - 160px), 500px);
}
/*
.index_mv_text {
    height: 100px;
}
.index_mv_text.text_02 {
    margin: 25px 0 0;
}
@keyframes index_mv_text_01 {
    0% {
        background-position: 0 center;
    }
    100% {
        background-position: calc(-1842px * (100 / 158)) center;
    }
}
@keyframes index_mv_text_02 {
    0% {
        background-position: 0 center;
    }
    100% {
        background-position: calc(1283px * (100 / 158)) center;
    }
}
.index_h1 {
    width: min(80%, 300px);
    margin: 70px auto 0;
}
*/
.index_mv_text {
    height: calc(8.23vw * 2);
}
.index_mv_text.text_02 {
    margin: calc(1.82vw * 2) 0 0;
}
@keyframes index_mv_text_01 {
    0% {
        background-position: 0 center;
    }
    100% {
        background-position: calc(-100vw * (1842 / 1920) * 2) center;
    }
}
@keyframes index_mv_text_02 {
    0% {
        background-position: 0 center;
    }
    100% {
        background-position: calc(100vw * (1283 / 1920) * 2) center;
    }
}
.index_h1 {
    width: calc(22.4vw * 2);
}
}
@media (max-width: 600px) {
/*
.index_mv_text {
    height: 60px;
}
.index_mv_text.text_02 {
    margin: 20px 0 0;
}
@keyframes index_mv_text_01 {
    0% {
        background-position: 0 center;
    }
    100% {
        background-position: calc(-1842px * (60 / 158)) center;
    }
}
@keyframes index_mv_text_02 {
    0% {
        background-position: 0 center;
    }
    100% {
        background-position: calc(1283px * (60 / 158)) center;
    }
}
.index_h1 {
    width: min(80%, 240px);
    margin: 50px auto 0;
}
*/
}
@media (max-width: 500px) {
.index_mv {
    height: max(calc(100vh - 200px), 400px);
}
}


/* ------------------------------------- /
/   page_h1
/* ------------------------------------- */
.page_h1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    width: 92.71%;
    margin: 0 auto;
}
.page_h1_en {
    width: calc(100% - 200px);
    min-height: max(16.67vw, 140px);
    font-size: clamp(5.0rem, 9.5vw, 16rem);
    line-height: 1.0;
    letter-spacing: 0;
}
.page_h1_jp {
    font-size: clamp(2.0rem, 2.0vw, 4.0rem);
}
@media screen and (max-width:600px){
.page_h1 {
    row-gap: 10px;
}
.page_h1_en {
    width: 100%;
    min-height: 0;
    font-size: clamp(3.3rem, 8.5vw, 5.2rem);
}
.page_h1_jp {
    width: 100%;
    text-align: right;
    font-size: 1.8rem;
}
}

/* ------------------------------------- /
/   company_header
/* ------------------------------------- */
.company_header {
    width: 100%;
    background-image: url('../img/company_header_bg.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
}
.company_header::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.2);
}
    .company_header img {
        display: block;
        width: min(80%, 830px);
        margin: 0 auto;
        position: relative;
    }

/* ------------------------------------- /
/   company_information
/* ------------------------------------- */
.company_information {
    width: min(92.71%, 1400px);
    margin: 0 auto;
}
.company_information_h2 {
    width: min(100%, 500px);
    font-size: clamp(3.0rem, 6.0vw, 4.0rem);
    line-height: 1.25;
}
.company_information_column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px #C3C3C3 solid;
    font-size: clamp(1.6rem, 2.0vw, 2.4rem);
}
.company_information_column:last-child {
    border-bottom: 1px #C3C3C3 solid;
}
.company_information_title {
    color: #8E8E8E;
    width: max(34.43%, 250px);
}
.company_information_detail {
    width: calc(100% - max(34.43%, 250px));
}
    .company_information_detail span {
        display: inline-block;
    }
    .company_information_detail a {
        text-decoration: underline;
    }
    .company_information_detail a:hover {
        text-decoration: none;
    }
@media screen and (max-width:600px){
.company_information_title {
    width: 100%;
}
.company_information_detail {
    width: 100%;
    padding: 5px 0 0;
}
}

/* ------------------------------------- /
/   company_map
/* ------------------------------------- */
    .company_map iframe {
        display: block;
        width: 100%;
        height: max(min(35vw, 500px), 400px);
        border: none;
    }

/* ------------------------------------- /
/   specification_h2
/* ------------------------------------- */
.specification_h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 1920/640;
    min-height: 300px;
    background-image: url('../img/specification_h2.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    font-size: clamp(2.2rem, 3.4vw, 6.5rem);
    line-height: 1.3;
}
    .specification_h2 span {
        display: inline-block;
    }

.specification_list {
    display: grid;
    gap: 0;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: calc(100vw/ 12) calc(100vw/ 12) calc(100vw/ 12) calc(100vw/ 12) calc(100vw/ 12) calc(100vw/ 12) calc(100vw/ 12) calc(100vw/ 12) calc(100vw/ 12) calc(100vw/ 12) calc(100vw/ 12) calc(100vw/ 12) calc(100vw/ 12) calc(100vw/ 12) calc(100vw/ 12) calc(100vw/ 12) calc(100vw/ 12) calc(100vw/ 12) calc(100vw/ 12);
}
.specification_list_cell {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}
.specification_list_cell.cell_01 {
    grid-column: 1 / span 4;
    grid-row: 1 / span 5;
}
.specification_list_cell.cell_02 {
    grid-column: 5 / span 8;
    grid-row: 1 / span 4;
}
.specification_list_cell.cell_03 {
    grid-column: 1 / span 4;
    grid-row: 6 / span 3;
}
.specification_list_cell.cell_04 {
    grid-column: 5 / span 4;
    grid-row: 5 / span 2;
}
.specification_list_cell.cell_05 {
    grid-column: 9 / span 4;
    grid-row: 5 / span 4;
}
.specification_list_cell.cell_06 {
    grid-column: 5 / span 4;
    grid-row: 7 / span 2;
}
.specification_list_cell.cell_07 {
    grid-column: 1 / span 6;
    grid-row: 9 / span 2;
}
.specification_list_cell.cell_09 {
    grid-column: 7 / span 6;
    grid-row: 9 / span 4;
}
.specification_list_cell.cell_10 {
    grid-column: 1 / span 6;
    grid-row: 11 / span 4;
}
.specification_list_cell.cell_11 {
    grid-column: 7 / span 6;
    grid-row: 13 / span 2;
}
.specification_list_cell.cell_12 {
    grid-column: 1 / span 4;
    grid-row: 15 / span 3;
}
.specification_list_cell.cell_13 {
    grid-column: 5 / span 4;
    grid-row: 15 / span 3;
}
.specification_list_cell.cell_14 {
    grid-column: 9 / span 4;
    grid-row: 15 / span 5;
}
.specification_list_cell.cell_15 {
    grid-column: 1 / span 4;
    grid-row: 18 / span 2;
}
.specification_list_cell.cell_16 {
    grid-column: 5 / span 4;
    grid-row: 18 / span 2;
}
    .specification_list_cell img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        left: 0;
        top: 0;
    }
    .specification_list_cell:has(img:nth-child(2)) img {
        width: 50%;
    }
    .specification_list_cell:has(img:nth-child(2)) img:nth-child(2) {
        left: 50%;
    }
    
    .specification_list_cell p {
        position: relative;
        font-size: clamp(1.7rem, 2.2vw, 4.0rem);
        font-size: clamp(1.3rem, 2.5vw, 4.0rem);
        line-height: 1.25;
        padding: 20px;
    }
    .specification_list_cell p.bottom {
        margin-top: auto;
    }
    .specification_list_cell p.right {
        margin-left: auto;
    }
    .specification_list_cell p.center {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .specification_list_cell p.gpl40 {
        padding-left: min(calc((40/1920)*100vw), 40px);
    }
    .specification_list_cell p.gpl70 {
        padding-left: min(calc((70/1920)*100vw), 70px);
    }
    .specification_list_cell p.gpr60 {
        padding-right: min(calc((60/1920)*100vw), 60px);
    }
    .specification_list_cell p.gpr70 {
        padding-right: min(calc((70/1920)*100vw), 70px);
    }
    .specification_list_cell p.gpr60 {
        padding-right: min(calc((60/1920)*100vw), 60px);
    }
    .specification_list_cell p.gpr40 {
        padding-right: min(calc((40/1920)*100vw), 40px);
    }
    .specification_list_cell p.gpt50 {
        padding-top: min(calc((50/1920)*100vw), 50px);
    }
    .specification_list_cell p.gpb40 {
        padding-bottom: min(calc((40/1920)*100vw), 40px);
    }
    .specification_list_cell p.gpb60 {
        padding-bottom: min(calc((60/1920)*100vw), 60px);
    }
    .specification_list_cell p.gpb80 {
        padding-bottom: min(calc((80/1920)*100vw), 80px);
    }



