@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/*!
Theme Name: MEIWA SHIPPING THEME
*/


/* common-css */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

input::placeholder{
	color: #ccc;
}
input::-ms-input-placeholder{
	color: #ccc;
}
input:-ms-input-placeholder{
	color: #ccc;
}

:root{
    --base-color: #1C1D1E;
    --base-font: "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;

    --blue: #004B9E;
    --line-color: #E1E2E2;
    --body-color: #FBFCFC;
    --font-grotesk: "roc-grotesk-extrawide", "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    --font-outfit: "Outfit", "source-han-sans-japanese", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;

    --font-md: 18px;
    --padding: 200px;
    --transition: .2s;

    --wrap: 1400px;
    --space: calc((100vw - var(--wrap))/2);

    --header-height: 80px;
}

/* html{
    overflow-x: hidden;
} */
body{
    min-width: 1200px;
    /*overflow-x: hidden;*/
    overflow:auto;
    -webkit-text-size-adjust: 100%;
    line-height: 1.875;
    color: var(--base-color);
    letter-spacing: .075em;
    font-family: var(--base-font);
    padding-top: var(--header-height);
    background-color: var(--body-color);
}
body.home,
body.page-recruit{
    padding-top: 0;
}

body.home .wrap,
.wrap{
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
}

a{
    transition: .2s;
    text-decoration: none;
}
a:hover{
    opacity: .6;
    text-decoration: none;
}
img{
    max-width: 100%;
    vertical-align: bottom;
}
.flex{
    display: flex;
    flex-wrap: wrap;
}
.ps-re{
    position: relative;
    z-index: 0;
}
.ps-ab{
    position: absolute;
}
.padding-top{
    padding-top: var(--padding);
}
.padding-bottom{
    padding-bottom: var(--padding);
}
.padding-tb{
    padding: var(--padding) 0;
}


/* FADE */
.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    filter: blur(10px);
    transition : all 600ms;
}
.fadeinr {
    opacity : 0;
    transform : translate(50px, 0);
    filter: blur(10px);
    transition : all 600ms;
}
.fadeinb {
    opacity : 0;
    transform : translate(0, -50px);
    filter: blur(10px);
    transition : all 600ms;
    }

.fadeinl {
    opacity : 0;
    transform : translate(-50px, 0);
    filter: blur(10px);
    transition : all 600ms;
    }

.fadeino {
    opacity : 0;
    filter: blur(10px);
    transition : all 600ms;
}

.ts1 {
    transition-delay: 300ms;
}

.ts2 {
    transition-delay: 600ms;
}

.ts3 {
    transition-delay: 900ms;
}

.ts4 {
    transition-delay: 1200ms;
}

.fadein.scrollin, .fadeinr.scrollin, .fadeinb.scrollin, .fadeinl.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    filter: blur(0);
}

.fadeino.scrollin {
   opacity : 1;
}

.blur{
    opacity: 0;
    filter: blur(10px);
    transition: 1s;
}
.blur.scrollin{
    opacity: 1;
    filter: blur(0);
}
.img-animation img{
    clip-path: inset(0 100% 0 0);
    transition: 1s;
}
.img-animation.scrollin img{
    clip-path: inset(0 0 0 0);
}



/* COMMON */
.view-more a{
    display: block;
    width: 240px;
    height: 60px;
    line-height: 60px;
    border: 1px solid var(--line-color);
    padding-left: 25px;
    border-radius: 5px;
    position: relative;
    z-index: 0;
}
.view-more.no-border a{
    border: none;
}
.view-more.center a{
    margin:0 auto;
}
.view-more a::before{
    content: "";
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 37px;
    width: 15px;
    height: 10px;
    background: url(img/common/arrow.svg) no-repeat center center / contain;
    z-index: 1;
    pointer-events: none;
    transition: var(--transition);
    z-index: -1;
    -webkit-filter: brightness(0) grayscale(100%) invert(1);
    -moz-filter: brightness(0) grayscale(100%) invert(1);
    -o-filter: brightness(0) grayscale(100%) invert(1);
    -ms-filter: brightness(0) grayscale(100%) invert(1);
    filter: brightness(0) grayscale(100%) invert(1);
}
.view-more a::after{
    content: "";
    position: absolute;
    background-color: var(--blue);
    border-radius: 5px;
    transform: translateY(-50%);
    top: 50%;
    right: 15px;
    width: 60px;
    height: calc(100% - 20px);
    transition: var(--transition);
    z-index: -2;
}
.view-more.wh a{
    color: #fff;
}
.view-more.wh a::before{
    -webkit-filter: initial;
    -moz-filter: initial;
    -o-filter: initial;
    -ms-filter: initial;
    filter: initial;
}
.view-more.wh a::after{
    background-color: #fff;
}
.view-more.mt{
    margin-top: 50px;
}
@media screen and (min-width: 992px) {
    .view-more a:hover{
        opacity: 1;
        color: #fff;
    }
    .view-more a:hover::before{
        right: 15px;
    }
    .view-more a:hover::after{
        width: 100%;
        height: 100%;
        right: 0;
    }
    .view-more.wh a:hover{
        color: var(--blue);
    }
}
.title{
    margin-bottom: 50px;
}
.title-en{
    font-family: var(--font-grotesk);
    font-weight: 500;
    font-size: 66px;
    letter-spacing: 0;
    line-height: 1.03;
}
.title.sc .title-en span{
    filter: blur(10px);
    opacity: 0;
    display: inline-block;
    transition: .4s;
}
.title.scrollin .title-en span{
    filter: blur(0);
    opacity: 1;
}
.title-text{
    font-weight: bold;
    letter-spacing: 0;
}
.title-text span{
    display: inline-block;
    letter-spacing: 0;
}
.title-text span::before{
    content: "";
    background-color: var(--blue);
    width: 40px;
    height: 1px;
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;;
    position: relative;
    top: -2px;
}
.title.sc .title-text span{
    transform: translateX(-50px);
    opacity: 0;
    transition: .4s;
    transition-delay: .1s;
}
.title.scrollin .title-text span{
    transform: translateX(0);
    opacity: 1;
}
.title.wh{
    color: #fff;
}
.title.wh .title-text span::before{
    background-color: var(--line-color);
}


/* TOPICS */
.topics-card a{
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    padding: 30px 0;
    border-top: 1px solid var(--line-color);
}
.topics-card a:last-child{
    border-bottom: 1px solid var(--line-color);
}
.topics-card__meta{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 210px;
}
.topics-card__meta-date{
    font-size: 12px;
    font-weight: 500;
}
.topics-card__meta-cat{
    width: 100%;
    max-width: 110px;
}
.topics-card__meta-cat span{
    display: block;
    text-align: center;
    background-color: var(--blue);
    border-radius: 15px;
    height: 25px;
    line-height: 25px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}
.topics-card__text{
    width: 100%;
    max-width: calc(100% - 210px);
    padding-left: 90px;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media screen and (min-width: 992px) {
    .topics-card a:hover{
        opacity: 1;
        padding-left: 30px;
        padding-right: 30px;
        background-color: rgb(0 91 172 / 0.8);
        border-color: var(--blue);
        color: #fff;
    }
}


/* HEADER */
#header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 70px 0 30px;
}
#header .header-menu ul.sin-ul{
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
}
#header .header-menu ul.sin-ul > li > a{
    font-weight: bold;
    letter-spacing: 0;
}
@media screen and (min-width: 992px) {
    #header .header-menu ul.sin-ul > li > a:hover{
        opacity: 1;
        color: var(--blue) !important;
    }
}
.nav-toggle{
    display: none;
}

/* HEADER WHITE */
#header.wh .header-menu ul.sin-ul > li > a{
    color: #fff;
}
#header.wh .header-logo img{
    -webkit-filter: brightness(0) grayscale(100%) invert(1);
    -moz-filter: brightness(0) grayscale(100%) invert(1);
    -o-filter: brightness(0) grayscale(100%) invert(1);
    -ms-filter: brightness(0) grayscale(100%) invert(1);
    filter: brightness(0) grayscale(100%) invert(1);
}


/* HEADER RECRUIT */
body.page-recruit #header .header-menu li a{
    color: #fff;
}


/* FOOTER */
#footer{
    margin-top: calc(150px + 8.3vw);
    position: relative;
    z-index: 0;
    background-color: var(--blue);
    color: #fff;
    padding: 50px 0 60px;
}
body.page-company #footer{
    margin-top: 5vw;
}
#footer .wrap{
    padding: 0;
}
#footer img.footer-wave{
    position: absolute;
    transform: translateY(-100%);
    top: 1px;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: -1;
}
#footer .footer-text{
    margin-bottom: 30px;
}
#footer .footer-tel a{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 98px;
    width: 100%;
    max-width: 522px;
    border: 1px solid #fff;
    border-radius: 5px;
    gap: 30px;
    padding-left: 50px;
    font-size: 54px;
    font-family: var(--font-outfit);
    letter-spacing: 0.05em;
}
#footer .footer-tel a span img{
    display: block;
}
#footer .footer-flex{
    margin-top: 60px;
    padding-top: 75px;
    position: relative;
    justify-content: space-between;
}
#footer .footer-flex::before{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #fff;
    opacity: .1;
}
#footer .footer-flex__box-logo img{
    -webkit-filter: brightness(0) grayscale(100%) invert(1);
    -moz-filter: brightness(0) grayscale(100%) invert(1);
    -o-filter: brightness(0) grayscale(100%) invert(1);
    -ms-filter: brightness(0) grayscale(100%) invert(1);
    filter: brightness(0) grayscale(100%) invert(1);
}
#footer .footer-flex__box-address{
    font-size: 12px;
    color: #99B7D8;
    margin-top: 10px;
}
#footer .footer-flex__menu ul{
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
}
#footer .footer-flex__menu-blank::after{
    content: "";
    display: inline-block;
    width: 19px;
    height: 15px;
    background: url(img/common/icon-blank-wh.svg) no-repeat center center / contain;
    margin-left: 10px;
}
#footer .footer-flex__menu-text{
    margin-top: 10px;
    text-align: right;
}
#footer .footer-flex__menu-text a{
    display: inline-block;
    font-size: 14px;
}
#footer .footer-copyright{
    text-align: right;
    font-size: 10px;
    font-weight: 200;
    font-family: var(--font-outfit);
    margin-top: 20px;
}
#footer .footer-flex__box-address br.s-up{
    display: none;
}


/* TOP */
.mv{
    position: relative;
    z-index: 0;
    height: 100vh;
    margin-bottom: 200vh;
    overflow: hidden;
}
.mv-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url(img/frontpage/mv-bg03.webp) no-repeat center center / cover;
    z-index: -1;
}
@keyframes opacity-out{
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
.mv-bg::before,
.mv-bg::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: var(--transition);
}
.mv-bg::before{
    z-index: -3;
    background-color: #000;
    opacity: 0.4;
    mix-blend-mode: overlay;
    transition: 1s;
}
.mv-bg.in::before{
    opacity: 0;
}
.mv-bg::after{
    z-index: -2;
    background-color: #004A8B;
    opacity: 0.5;
    mix-blend-mode: multiply;
}
.mv-bg img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mv-bg .n1{
    z-index: 2;
    animation: opacity-out .6s 1s forwards;
}
.mv-bg .n2{
    z-index: 1;
    animation: opacity-out .6s 1.6s forwards;
}
.mv-text{
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50vh;
    left: 50%;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.mv-text__vertical{
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
}
.mv-text__vertical img{
    /* height: 1082px; */
    height: 100vh;
}
.mv-text__horizen{
    position: absolute;
    transform: translate(-50%,-50%);
    top: calc(50% + 60px);
    left: 50%;
    /* width: 1920px; */
    width: 102%;
    clip-path: inset(0 100% 0 0);
    animation: clip-in 1s 1.6s forwards;
}
@keyframes clip-in{
    0%{
        clip-path: inset(0 100% 0 0);
    }
    100%{
        clip-path: inset(0 0 0 0);
    }
}
.mv-text__horizen img{
    width: 100%;
}
.mv-box{
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50svh;
    left: 50%;
    width: 100%;
    max-width: var(--wrap);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}
.mv-box__lead{
    font-size: 56px;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1.42;
    transform: translateY(50px);
    opacity: 0;
}
.mv-box__text{
    font-size: var(--font-md);
    font-weight: bold;
    line-height: 2.33;
    transform: translateY(50px);
    opacity: 0;
}
.mv-company-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url(img/frontpage/company-bg.webp) no-repeat center top / cover;
    z-index: 10;
    clip-path: inset(0 100% 0 0);
    transition: .6s;
}
.mv-company-bg.in{
    clip-path: inset(0 0 0 0);
}
.top-company{
    padding-top: 260px;
    height: 1264px;
    color: #fff;
    position: relative;
    z-index: 1;
    margin-bottom: 100vh;
}
.top-company__lead,
.top-business__flex-box__lead{
    font-size: 26px;
    font-weight: bold;
    line-height: 1.15;
    margin-bottom: 30px;
}
.top-company__text{
    width: 100%;
    max-width: 600px;
}
.top-company__inner{
    opacity: 0;
    transition: 1s;
}
.top-company .top-company__inner.in{
    opacity: 1;
}
.top-business__flex{
    margin-bottom: 50px;
}
.top-business__flex-title,
.top-business__flex-box{
    width: 50%;
}
.top-business__flex-box{
    color: #fff;
}
.top-business{
    background: url(img/frontpage/business-bg.webp) no-repeat center 250px / cover;
    padding: 600px 0 210px;
    margin-top: -390px;
    position: relative;
    z-index: 1;
}
.top-business__wave{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 460px;
    background: url(img/frontpage/business-wave.webp) no-repeat center center / cover;
}
.top-business__flex-box__text{
    letter-spacing: 0;
}
.top-business__grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
}
.top-business__grid-item a{
    color: #fff;
    display: block;
    height: 100%;
}
.top-business__grid-item__img-inner{
    padding-top: 48.3%;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}
.top-business__grid-item__img-inner img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}
.top-business__grid-item__text{
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 0.12em;
    line-height: 40px;
    height: 40px;
    position: relative;
    margin-top: 20px;
}
.top-business__grid-item__text::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background-color: #fff;
    border-radius: 5px;
    transition: var(--transition);
}
.top-business__grid-item__text::after{
    content: "";
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 22px;
    width: 15px;
    height: 10px;
    background: url(img/common/arrow-bk.svg) no-repeat center center / contain;
    z-index: 1;
    pointer-events: none;
    transition: var(--transition);
}
@media screen and (min-width: 992px) {
    .top-business__grid-item a:hover{
        opacity: 1;
    }
    .top-business__grid-item a:hover .top-business__grid-item__img-inner img{
        transform: scale(1.1);
    }
    .top-business__grid-item a:hover .top-business__grid-item__text::before{
        width: 100px;
    }
    .top-business__grid-item a:hover .top-business__grid-item__text::after{
        right: 42px;
    }
}
.top-sdgs{
    position: relative;
    z-index: 1;
    height: 100svh;
    background: url(img/frontpage/sdgs-bg.webp) no-repeat center center / cover;
}
.top-sdgs .wrap,
.top-sdgs__flex{
    height: 100%;
}
.top-sdgs__flex{
    align-items: center;
    justify-content: space-between;
}
.top-sdgs__flex-title{
    margin-left: calc(-1 * var(--space));
    padding-left: 60px;
}
.top-sdgs__flex-box{
    position: relative;
    z-index: 0;
}
.top-sdgs__flex-box__text{
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.025em;
}
.top-sdgs__flex-box__img{
    position: absolute;
    top: -20px;
    right: -172px;
    z-index: -1;
    width: max-content;
}
.top-topics{
    padding: 170px 0;
}
.top-topics__flex{
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
}
.top-topics__flex-title{
    margin-bottom: 0;
}
.top-recruit{
    position: relative;
    z-index: 0;
    height: 700px;
    color: #fff;
    text-align: center;
    padding-top: 190px;
}
.top-recruit__view-more a{
    margin: 0 auto;
    text-align: left;
}
.top-recruit__label{
    font-family: serif;
    font-family: var(--font-outfit);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 60px;
}
.top-recruit__en{
    font-size: 66px;
    letter-spacing: 0;
    line-height: 1.03;
    font-weight: 500;
    font-family: var(--font-grotesk);
    margin-bottom: 10px;
}
.top-recruit__text{
    font-size: 32px;
    letter-spacing: 0.1em;
    font-weight: bold;
    margin-bottom: 90px;
}
.top-recruit__bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    padding: 0 30px;
    transition: var(--transition);
}
.top-recruit__bg-inner{
    border-radius: 5px;
    background: url(img/frontpage/recruit-bg.webp) no-repeat center center / cover;
    height: 100%;
}


/* COMMON MV */
.common-page__mv{
    position:relative;
    z-index:2;
    overflow:hidden;
    height:410px;

    padding-top:50px;
}
.common-page__mv::before{
    content:'';
    position:absolute;
    top:20px;
    left:0;
    width:1920px;
    height:390px;
    z-index:-1;
    background:no-repeat center/contain url('img/common/bg-mvb.webp');
}

.common-page__mv.mini-pagemv{
    height:200px;
}
.common-page__mv.mini-pagemv::before{
    content:none;
}

.common-page__mv__titleimg{
    margin-bottom:40px;
}
.common-page__mv__titleimg img{
    height:68px;
}

.common-page__mv__title{
    font-size:30px;
    font-weight:bold;
    color:var(--blue);
    display:flex;
    gap:15px;
    align-items:center;
}
.common-page__mv__title::before{
    content:'';
    width:40px;
    height:3px;
    background:#E1E2E2;
    display:block;
}

.common-mv{
    margin-top: -230px;
}

.breadcrumb{
    display:flex;
    flex-wrap:wrap;
    gap:9px;
    margin-bottom:36px;
}
.breadcrumb li{
    font-size:12px;
    display:flex;
    gap:9px;
}
.breadcrumb li:not(:last-of-type)::after{
    content:'-';
}
.breadcrumb li a{
    color:var(--blue);
}


.has-commonbg{
    position:relative;
    z-index:0;
    color:#FFF;
    padding-top:300px;
}
.commonbg-top{
    position:absolute;
    z-index:-1;
    top:0;
    left:0;
    width:100%;
    height:764px;
    background:no-repeat top center/1920px url('img/common/bg-common-wave-top.webp');
}
.commonbg-inner{
    position:absolute;
    z-index:-1;
    top:763px;
    left:0;
    width:100%;
    height:calc(100% - 764px);
    background:#2048B9;
}


.common-sectitle--en{
    font-size:66px;
    font-weight:900;
    font-family:var(--font-grotesk);
    line-height:1;
}
.common-sectitle--jp{
    display:flex;
    align-items:center;
    gap:16px;
    font-size:16px;
    font-weight:bold;
    opacity:0;
    transform:translateX(-50px);
    transition: var(--transition);
}
.common-sectitle--jp::before{
    content:'';
    width:40px;
    height:1px;
    background:var(--blue);
}
.title.scrollin .common-sectitle--jp{
    opacity:1;
    transform:none;
}

.common-sectitle.white .common-sectitle--jp::before{
    background:#FFF;
}


.common-menus{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}
.common-menus li a{
    position:relative;
    display:flex;
    align-items:center;
    padding:14px;
    padding-left:25px;
    padding-right:124px;
    gap:70px;
    border-radius:5px;
    border:1px solid #E1E2E2;
    font-size:22px;
    font-weight:500;
}
.common-menus li a::before{
    content:'';
    position:absolute;
    top:50%;
    right:44px;
    transform:translate(50%,-50%);
    width:15px;
    height:10px;
    z-index:2;
    background:no-repeat center/contain url('img/common/icon-arrowdown.svg');
}
.common-menus li a::after{
    content:'';
    position:absolute;
    right:14px;
    top:14px;
    z-index:-1;
    display:block;
    background:var(--blue);
    width:60px;
    height:40px;
    border-radius:5px;
    transition:.2s;
}
.common-menus li a:hover{
    opacity: 1;
}
@media screen and (min-width: 992px) {
    .common-menus li a:hover{
        color:#FFF;
        opacity:1;
    }
    .common-menus li a:hover::after{
        width:100%;
        height:100%;
        top:0;
        right:0;
    }
}



/* COMPANY */
.company-vision{
    position:relative;
    margin-top:-230px;
    z-index:1;
}
.company-vision__top{
    position:sticky;
    top:0;
    left:0;
    height:460px;
    overflow:hidden;
}
.company-vision__top img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}
.company-vision__topimg{
    position:sticky;
    top:0;
    left:0;
}
.company-vision__box{
    position:relative;
    margin-top:-291px;
}
.company-vision__box__top{
    position:relative;
    z-index:3;
}
.company-vision__box__inner{
    position:relative;
    margin-top:-230px;
    color:#FFF;
    background:#2048B9;
    padding-top:380px;
    padding-bottom:250px;
}
.company-vision__box__inner::before{
    content:'';
    display:block;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:1000px;
    z-index:1;
    background:linear-gradient(to bottom, #63B9E6 10%, #2047B9 40%);
}
.company-vision__box__inner .wrap{
    position:relative;
    z-index:2;
}
.company-vision__title{
    margin-bottom:50px;
}
.company-vision__title--text{
    text-align:center;
    font-size:40px;
    font-weight:900;
    line-height:1;
    margin-top:-25px;
}
.company-vision--maintext{
    text-align:center;
    font-size:22px;
    font-weight:bold;
    margin-bottom:200px;
}
.company-vision__entitle{
    font-size:34px;
    font-family:var(--font-grotesk);
    text-align:center;
    position:relative;
    padding-bottom:44px;
    margin-bottom:66px;
}
.company-vision__entitle::after{
    content:'';
    width:80px;
    height:7px;
    background:no-repeat center/contain url('img/common/icon-titlebottom.png');
    position:absolute;
    bottom:0;
    left:calc(50% - 40px);
}
.company-vision__entitle.mini{
    font-size:26px;
    padding-bottom:39px;
    margin-bottom:60px;
}
.company-vision__middlebox__title{
    font-size:60px;
    font-weight:900;
    text-align:center;
    line-height:1.4;
    margin-bottom:30px;
}
.company-vision__middlebox__text{
    font-size:18px;
    line-height:2.2;
    text-align:center;
}
.company-vision__flexcontents{
    display:flex;
    justify-content:space-between;
    margin-top:160px;
}
.company-vision__flexcontent{
    width:44%;
}
.company-vision__flexcontent__title{
    font-size:30px;
    font-weight:900;
    text-align:center;
    margin-bottom:1em;
}
.company-vision__contenttext{
    font-size:16px;
}
.company-vision__values li{
    padding-left:66px;
    position:relative;
    font-size:22px;
    font-weight:bold;
}
.company-vision__values li:not(:last-of-type){
    margin-bottom:34px;
}
.company-vision__values li span{
    position:absolute;
    top:-6px;
    left:0;
    font-size:26px;
    font-weight:bold;
    font-family:var(--font-outfit);
}
.company-vision__values li span::after{
    content:')';
}
.company-vision__values li small{
    display:block;
    font-size:16px;
    font-weight:normal;
}

.company-message{
    padding:200px 0;
}
.company-message__flex{
    display:flex;
    justify-content:space-between;
}
.company-message__flex__title{
    width:43%;
}
.company-message__flex__content{
    width:50%;
}
.company-message__img{
    text-align:center;
    margin-top:60px;
}
.company-message__img img{
    width:330px;
}

.company-message__content__text{
    margin-bottom:46px;
}
.company-message__signature{
    display:flex;
    justify-content:flex-end;
    align-items:flex-end;
    gap:22px;
}

.company-overview{
    margin-bottom:-150px;
    position:relative;
}
.company-overview__flex{
    display:flex;
    flex-direction:row-reverse;
}
.company-overview__flex__img{
    width:30%;
}
.company-overview__flex__img img{
    width:100%;
    height:100dvh;
    object-fit:cover;
    object-position:center;
    position:sticky;
    top:0;
    left:0;
}
.company-overview__flex__content{
    width:70%;
    background:#EBF0F0;
    padding:200px 0 270px;
}
.company-overview__content__inner{
    padding-left:calc((100vw - 1420px) / 2);
    padding-right:130px;
}

.company-infos{
    margin-top:60px;
}
.company-infos>dl{
    display:flex;
    border-top:1px solid #CFD4D4;
    padding:24px 30px;
}
.company-infos>dl:last-of-type{
    border-bottom:1px solid #CFD4D4;
}
.company-infos>dl>dt{
    width:220px;
}
.company-infos>dl>dd{
    width:calc(100% - 250px);
}
.company-infos__innerdl{
    display:flex;
}
.company-infos__innerdl>dt{
    width:150px;
    font-weight:normal;
}
.company-infos__innerdl>dd{
    width:calc(100% - 150px);
}
.company-overview__map{
    margin-top:120px;
}
.company-overview__map iframe{
    width:100%;
}

.company-history{
    padding-bottom:382px;
}
.company-history::after{
    content:'';
    position:absolute;
    z-index:-1;
    bottom:0;
    left:0;
    width:100%;
    height:600px;
    background:linear-gradient(to bottom, #2048B9, #FFF);
}

.company-history__title{
    font-size:140px;
    line-height:0.9;
    font-family:var(--font-grotesk);
    font-weight:200;
    margin-left:-150px;
    margin-bottom:200px;
}
@media only screen and (max-width:1700px){ 
    .company-history__title{
        margin-left:0;
    }
}
.company-history__ul{
    position:relative;
    z-index:2;
    padding-left:140px;
}
.company-history__ul::before{
    content:'';
    position:absolute;
    top:20px;
    left:20px;
    width:2px;
    height:100%;
    background:rgba(255,255,255,0.3);
}
.company-history__li__big{
    position:relative;
    margin-bottom:60px;
}
.company-history__li__big:not(:first-child){
    margin-top:90px;
}
.company-history__li__big::before{
    content:'';
    width:20px;
    height:20px;
    background:#FFF;
    border-radius:50%;
    position:absolute;
    top:20px;
    left:-130px;
    outline:2px solid #FFF;
    outline-offset:10px;
}
.company-history__li__big__text{
    font-size:30px;
    font-weight:900;
}
.company-history__li__big__date{
    position:absolute;
    right:0;
    top:-40px;
    font-size:50px;
    line-height:100px;
    font-family: var(--font-grotesk);
    color:#FBFCFC;
    opacity:0.3;
}
.company-history__li__big__date em{
    font-size:100px;
    font-style:normal;
}
.company-history__li{
    position:relative;
    margin-bottom:30px;

    display:flex;
    flex-wrap:wrap;
}
.company-history__li::before{
    content:'';
    width:15px;
    height:15px;
    background:#FFF;
    border-radius:50%;
    position:absolute;
    top:14px;
    left:-127px;
}
.company-history__li__year{
    display:block;
    font-family:var(--font-grotesk);
    font-size:30px;
    width:180px;
    line-height:40px;
}
.company-history__li__month{
    display:block;
    width:60px;
    text-align:right;
    font-size:20px;
}
.company-history__li__text{
    padding-left:40px;
    font-size:20px;
}

.company-history__bottomtext{
    font-size:70px;
    font-weight:900;
    text-align:center;
    margin-top:150px;
}


/* BUSINESS */
.business-menu{
    padding:100px 0;
}

.business-mainsec{
    background:#EBF0F0;
    padding-bottom:180px;
}
.business-article{
    padding-top:120px;
}
.business-article__flex{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
}
.business-article__flex__content{
    width:52%;
}
.business-article__flex__img{
    width:42%;
}

.business-article__title{
    position:relative;
    color:var(--blue);
    font-size:40px;
    font-weight:900;
    padding-bottom:25px;
    margin-bottom:50px;
}
.business-article__title::after{
    content: '';
    position:absolute;
    bottom:0;
    left:0;
    width:60px;
    height:10px;
    background:no-repeat center/contain url('img/common/icon-titledown-blue.svg');
}
.businews-article__subtitle{
    font-size:28px;
    font-weight: bold;
    margin-bottom:10px;
}
.business-article__text{
    font-size:18px;
    line-height:2.22;
}
.business-cargos{
    margin-top:120px;
}
.business-cargos__box{
    position:relative;
    border:3px solid var(--blue);
    border-radius:20px;
    padding:50px 20px;
}
.business-cargos__title{
    font-size:24px;
    font-weight: 900;
    color:var(--blue);
    background:#EBF0F0;
    position:absolute;
    top:0;
    left:50%;
    transform:translate(-50%,-50%);
    padding:0 24px;
}
.business-cargos__text{
    text-align:center;
}

.business-ships{
    padding-top:180px;
}
.business-ships__table{
    margin-top:60px;
}
.business-ships__table__title{
    font-size:24px;
    font-weight:bold;
    color:var(--blue);
    margin-bottom:20px;
}
.business-ships__table__tablewrap table{
    width:100%;
}
.business-ships__table__tablewrap table th,
.business-ships__table__tablewrap table td{
    border:1px solid #E1E2E2;
}
.business-ships__table__tablewrap table thead tr th:not(:first-child),
.business-ships__table__tablewrap table tbody tr td:not(:first-child){
    border-left:1px dashed #E1E2E2;
}
.business-ships__table__tablewrap table thead tr th:not(:last-child),
.business-ships__table__tablewrap table tbody tr td:not(:last-child){
    border-right:0;
}
.business-ships__table__tablewrap table thead th{
    color:#FFF;
    background:var(--blue);
    text-align:center;
    font-size:18px;
    padding:16px;
}
.business-ships__table__tablewrap table tbody td{
    text-align:center;
    padding:16px;
    font-size:18px;
}
.business-ships__table__tablewrap table tbody td.name{
    font-weight:bold;
    background:#F6F8F8;
}


/* RECRUIT */
.recruit-mv{
    position:relative;
    aspect-ratio:1920/1080;
    width:100%;
    height:auto;
    min-height:100dvh;
    overflow:hidden;
}
.recruit-mv__bg{
    position:absolute;
    z-index:1;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
.recruit-mv__bg img{
    opacity:0;
    transition:0.2s;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}
.recruit-mv.scrollin .recruit-mv__bg img{
    opacity:1;
}
.recruit-mv__cover{
    position:absolute;
    z-index:2;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
.recruit-mv__cover img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transition:0.4s;
    transition-delay:0.2s;
    clip-path:inset(0 100% 0 0);
}
.recruit-mv.scrollin .recruit-mv__cover img{
    clip-path:inset(0);
}
.recruit-mv__hvs{
    position:absolute;
    z-index:3;
    top:50%;
    left:50%;
    width:94%;
    transform:translate(-50%,-50%);
}
.recruit-mv__hvs img{
    transition:1s ease;
    transition-delay:0.6s;
    clip-path:inset(0 100% 0 0);
}
.recruit-mv.scrollin .recruit-mv__hvs img{
    clip-path:inset(0);
}
.recruit-mv__line{
    position:absolute;
    z-index:4;
    top:50%;
    left:50%;
    width:70%;
    transform:translate(-50%,-50%);
}

.recruit-concept{
    position:relative;
    min-height:100dvh;
    padding:210px 0;
}
.recruit-concept__bg{
    position:absolute;
    z-index:-1;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
.recruit-concept__bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}
.recruit-concept__text{
    color:#FFF;
    text-align:center;
    font-size:28px;
    font-weight:900;
    line-height:2;
}

.recruit-culture{
    position:relative;
}
.recruit-culture__flex{
    display:flex;
}
.recruit-culture__flex__slider{
    width:42%;
}
.recruit-culture__flex__content{
    width:58%;
    padding-bottom:280px;
}
.recruit-culture__slider{
    position:sticky !important;
    top:0;
    left:0;
    width:100%;
    min-height:100dvh;
}
.recruit-culture__slide{
    line-height:1;
    padding: 0;
    margin: 0;
    border: 0 !important;
}
.recruit-culture__slide img{
    vertical-align:top;
}
.recruit-culture__flex__content__inner{
    padding:0 7.8vw;
}
.recruit-culture__section{
    padding-top:250px;
}
.recruit-culture__maintitle{
    position:relative;
    color:var(--blue);
    font-size:46px;
    font-weight:900;
    padding-bottom:50px;
    line-height:1.43;
    margin-bottom:40px;
}
.recruit-culture__maintitle::after{
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:40px;
    height:10px;
    background:no-repeat center/contain url('img/common/icon-titledown-blue.svg');
}
.recruit-culture__maintext{
    font-size:24px;
    font-weight: 900;
    line-height:1.9;
}
.recruit-culture__article:not(:last-of-type){
    margin-bottom:30px;
}
.recruit-culture__article{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.recruit-culture__article.n2{
    flex-direction:row-reverse;
}
.recruit-culture__article__content{
    width:calc(100% / 3 * 2);
}
.recruit-culture__article__img{
    width:25%;
}
.recruit-culture__article__img img{
    border-radius:5px;
}
.recruit-culture__article__title{
    margin-bottom:20px;
    color:var(--blue);
}
.recruit-culture__article__title span{
    display:block;
    font-size:10px;
    line-height:1.2;
    font-family:var(--font-grotesk);
}
.recruit-culture__article__title--text{
    font-size:26px;
    font-weight:900;
    line-height:1.5;
}

.recruit-infographics{
    margin-top:-150px;
    padding-bottom:250px;

    overflow:clip;
}
.recruit-infographics__img{
    margin-top:50px;
}
.recruit-infographics__img img{
    max-width:unset;
    width:104.2%;
}

.recruit-entry{
    position:relative;
    margin-top:-120px;
    z-index:1;
}
.recruit-entry__box{
    margin:0 30px;
    position:relative;
}
.recruit-entry__box__bg{
    position:absolute;
    width:100%;
    height:100%;
    z-index:-1;
}
.recruit-entry__box__bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}
.recruit-entry__box__inner{
    padding:160px 0 200px;
    margin:0 auto;
    max-width:var(--wrap);
}
.recruit-entry__title{
    text-align:center;
    color:#FFF;
    font-size:120px;
    font-family:var(--font-grotesk);
    line-height:1;
    margin-bottom:60px;
}
.recruit-entry__links{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px 40px;
}
.recruit-entry__links li a{
    position:relative;
    display:flex;
    width:490px;
    font-family: var(--font-outfit);
    font-size:50px;
    line-height:1;
    font-weight:normal;
    color:#FFF;
    background:rgba(0,91,172,0.3);
    border:2px solid #E1E2E2;
    border-radius:5px;
    padding:14px 32px;
    align-items:center;
    justify-content:center;
}
.recruit-entry-link__text{
    position:relative;
    z-index:3;
    display:flex;
    gap:20px;
    align-items:center;
    justify-content:center;
}
.recruit-entry__links li a:hover{
    opacity:1;
}
.recruit-entry__subtitle{
    text-align:center;
    margin-bottom:30px;
    font-size:24px;
    font-weight:bold;
    color:#FFF;
}


/* PAGE */
.page-content{
    padding-top:80px;
}

.page-content__editor{
    max-width:1200px;
    margin:0 auto;
}
.page-content__editor>*{
    margin-bottom:30px;
}
.page-content__editor>h2{
    font-size:32px;
    font-weight:bold;
}
.page-content__editor>h3{
    font-size:28px;
    font-weight:bold;
}
.page-content__editor>h4{
    font-size:22px;
    font-weight:bold;
}
.page-content__editor>h5,
.page-content__editor>h6{
    font-weight:bold;
}
.page-content__editor>p{
    font-size:18px;
    line-height:2;
}
.page-content__editor>ul{
    list-style:disc;
}
.page-content__editor>ol{
    list-style:decimal;
}
.page-content__editor li{
    margin-left:1.5em;
    font-size:18px;
}


/* TOPICS ARCHIVE */
.pagenation{
    margin-top:80px;
}
.wp-pagenavi{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
}
.wp-pagenavi a,
.wp-pagenavi span{
    border:1px solid var(--blue);
    display:flex;
    width:34px;
    height:34px;
    align-items:center;
    justify-content:center;
    font-weight: 900;
    font-size:18px;
    line-height:1;
    color:var(--blue);
    border-radius:50%;
}
.wp-pagenavi a:hover,
.wp-pagenavi span{
    background:var(--blue);
    color:#FFF;
    opacity:1;
}


/* TOPICS SINGLE */
.topics-single__head{
    max-width:1200px;
    margin:0 auto 100px;
}
.topics-single__title{
    font-size:42px;
    font-weight:900;
}
.topics-single__head__metas{
    display:flex;
    margin-top:14px;
    padding-top:20px;
    border-top:1px solid #E1E2E2;
    justify-content:space-between;
}
.topics-single__date{
    font-size:20px;
    font-weight:bold;
}
.topics-single__category{
    color:#FFF;
    background:var(--blue);
    font-size:15px;
    font-weight:900;
    padding:6px 20px;
    border-radius:5px;
}

.topics-single__back{
    margin-top:100px;
}



/* CONTQACT */
.form-box{
    margin-top:100px;
}
.form-box>h2{
    font-size:26px;
    font-weight:bold;
    color:var(--blue);
    margin-bottom:1em;
}
.form-dls>dl{
    display:flex;
    align-items:center;
    padding:20px 0;
    border-top:1px solid #E1E2E2;
}
.form-dls>dl:last-child{
    border-bottom:1px solid #E1E2E2;
}
.form-dls>dl>dt{
    position:relative;
    width:300px;
}
.form-dls>dl>dd{
    width:calc(100% - 300px);
    padding-left:50px;
}
.form-dls>dl>dt>span{
    position:absolute;
    right:0;
    top:0;
    display:flex;
    align-items:center;
    justify-content:center;
    width:70px;
    height:30px;
    color:#FFF;
    background:var(--blue);
    border-radius:5px;
}
.form-dls input:not([type="radio"]):not([type="checkbox"]),
.form-dls textarea{
    border:1px solid #E1E2E2;
    border-radius:5px;
    width:100%;
    padding:10px;
}
.form-dls input[type="radio"],
.form-dls input[type="checkbox"]{
    -webkit-appearance:auto;
    appearance:auto;
}
.law{
    background-color: #f7f8f8;
    margin-top: 20px;
    padding: 25px 30px;
    border: 1px solid #231815;
}
.law .text{
    font-size: 14px;
    text-align: justify;
    line-height: 2;
    margin-bottom: 10px;
}
.law .text span{
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}
.law .text:last-child{
    margin-bottom: 0;
}
.submit-area{
    margin-top:50px;
}
.submit-area input{
    margin:0 auto;
    width:200px;
    height:80px;
    display:flex;
    justify-content:center;
    align-items:center;
    border:3px solid var(--blue);
    background:var(--blue);
    color:#FFF;
    text-align:center;
    border-radius:5px;
    font-size:20px;
    font-weight: bold;
}
.submit-area input:disabled{
    opacity:0.3;
}