@charset "UTF-8";
/*-------------
vars
-------------*/
:root{
    --font-serif: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    --main-black: #231815;
    --main-blue: #004da0;
    --main-darkblue: #00154b;
    --main-blue_grad: linear-gradient(35deg,#00154b,#004da0 77%);
    --main-lightblue_grad: linear-gradient(35deg,#d9dee5,#d9e7f2 77%);
    --main-gray: #eeeeef;
    --main-gray_border: #9e9e9f;
    --bg-logomark: url(../images/logomark.svg) no-repeat center / contain;
    --inner-width--sp: 80%;
    --inner-width--sp_vw: 80vw;
    --inner-sidespace--sp: 10%;
    --inner-sidespace--sp_vw: 10vw;
    --str-arrow_link_blue: url(../images/link-arrow_blue.svg) no-repeat right bottom / auto;
    --str-arrow_link_white: url(../images/link-arrow_white.svg) no-repeat right bottom / auto;
}

/*-------------
base
-------------*/
html{
    font-size: 62.5%;
}
body{
    width: 100%;
    min-width: 1200px;
    background: #fff;
    color: var(--main-black);
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-feature-settings: "palt" 1;
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: normal;
    text-align: left;
    word-wrap: break-word;
}
.sp{
    display: none;
}
.sp-inline{
    display: none;
}
.clearfix::after,
.cf::after{
    content: "";
    display: block;
    clear: both;
}
@media screen and (min-width:768px){
    body > header,
    body > footer,
    body > section,
    body > article,
    body > div{
        font-size: 1.6rem;
    }
}
.preload *{
    transition: none!important;
}
a:hover{
    text-decoration: none;
}
a[href^="tel:"]{
    pointer-events: none;
}
.txt_ind {
    text-indent: -1em;
    padding-left: 1em;
}
.txtRed {
    color: #F40000 !important;
}
/* sp */
@media screen and (max-width:767px){
    html{
        font-size: 62.5%;
    }
    body{
        min-width: 320px;
        font-size: 1.3rem;
    }
    .sp{
        display: block;
    }
    .pc{
        display: none;
    }
    .sp-inline{
        display: inline;
    }
    .pc-inline{
        display: none;
    }
    a[href^="tel:"]{
        pointer-events: auto;
    }
    img{
        width: 100%;
        height: auto;
    }
}

/*-------------
data-effect
-------------*/
*[data-effect^="fade"]{
    opacity: 0;
    transition: transform .8s ease,opacity .8s ease;
}
*[data-effect="fade-left"]{
    transform: translateX(-50px);
}
*[data-effect="fade-right"]{
    transform: translateX(50px);
}
*[data-effect="fade-up"]{
    transform: translateY(50px);
}
*[data-effect^="fade"].effected{
    opacity: 1;
    transform: none;
}
/* sp */
@media screen and (max-width:767px){
    *[data-effect="fade-left"]{
        transform: translateX(-25px);
    }
    *[data-effect="fade-right"]{
        transform: translateX(25px);
    }
    *[data-effect="fade-up"]{
        transform: translateY(25px);
    }
}

/*-------------
header
-------------*/
.header{
    display: flex;
    align-items: flex-end;
    position: relative;
    z-index: 1000;
    min-height: 135px;
    background: #fff;
}
@media screen and (min-width:768px){
    .header.is--on_recruit{
        margin-bottom: 55px;
    }
}
.header-logo{
    position: absolute;
    top: 33px;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
    line-height: 0;
}
.header-menu-btn{
    display: none;
}
.header-menu{
    width: 100%;
}
.header-nav{
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}
.header-nav-list{
    display: flex;
}
@media screen and (min-width:768px){
  .header-nav-list-item:nth-of-type(1) .header-nav-list-item__link,
  .header-nav-list-item:nth-of-type(2) .header-nav-list-item__link{
    padding: 15px 40px 23px;
  }
  .header-nav-list-item:nth-of-type(4) .header-nav-list-item__link,
  .header-nav-list-item:nth-of-type(5) .header-nav-list-item__link,
  .header-nav-list-item:nth-of-type(6) .header-nav-list-item__link{
    padding: 15px 15px 23px;
  }
    .header-nav-list-item:nth-of-type(3){
        margin-right: auto;
    }
}
.header-nav-list-item__link{
    display: block;
    position: relative;
    padding: 15px 20px 23px;
    font-size: 1.5rem;
    line-height: calc(1em + 5px);
}
@media screen and (min-width:768px){
    .header-nav-list-item__link::before{
        opacity: 0;
        position: absolute;
        top: 0;
        left: calc(50% - 2.5px);
        width: 5px;
        height: 10px;
        border-radius: 3px;
        background: var(--main-blue_grad);
        content: "";
        transition: opacity .3s ease;
        pointer-events: none;
    }
    .header-nav-list-item__link:hover::before,
    .header-nav-list-item__link.current::before{
        opacity: 1;
    }
}
/* header-nav--recruit */
@media screen and (min-width:768px){
    .header-nav--recruit{
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
        transform: translateY(100%);
        width: 100%;
        background: #dff0f4;
        transition: opacity .3s ease;
    }
    .header-nav--recruit:not(.is--active){
        display: none;
    }
    .header.is--on_recruit .header-nav--recruit{
        display: block;
    }
    .header-nav--recruit:not(.is--show){
        opacity: 0;
    }
    .header.is--on_recruit .header-nav--recruit{
        opacity: 1;
    }
    .header-nav--recruit-list{
        display: flex;
        justify-content: flex-end;
        width: 100%;
        height: 55px;
        max-width: 1280px;
        margin: 0 auto;
    }
    .header-nav--recruit-list-item{
        height: 100%;
    }
    .header-nav--recruit-list-item__link{
        display: flex;
        align-items: center;
        height: 100%;
        padding: 0 20px;
        font-size: 1.6rem;
        line-height: calc(1em + 5px);
    }
}
/* header-menu__other */
.header-menu__other{
    display: flex;
    align-items: flex-end;
    position: absolute;
    top: 0;
    right: 0;
}
.header-lang-switch{
    display: flex;
    align-items: center;
    margin-right: 28px;
}
.header-lang-switch::before{
    display: block;
    margin: 0 .2em;
    content: "/";
}
.header-lang-switch-item:first-child{
    order: -1;
}
/* header-contact */
@media screen and (min-width:768px){
    .header-contact{
        display: flex;
    }
    .header-contact--tel{
        overflow: hidden;
        border-radius: 0 0 0 10px;
    }
    .header-contact--tel__link{
        display: flex;
        justify-content: center;
        align-items: center;
        min-width: 207px;
        min-height: 45px;
        padding: 5px 15px 6px 20px;
        background: var(--main-blue);
        color: #fff;
        font-size: 1.7rem;
        font-weight: bold;
        line-height: calc(1em + 4px);
    }
    .header-contact--tel__link-head{
        font-size: 1.4rem;
    }
    .header-contact--mail{
        flex: 0 0 52px;
    }
    .header-contact--mail__link{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        padding: 0 17px;
        background: var(--main-darkblue);
        overflow: hidden;
        text-indent: 100%;
        white-space: nowrap;
        position: relative;
    }
    .header-contact--mail__link:before{
      content: "";
      background: url(../images/icon_mail_white.svg) no-repeat;
      background-size: cover;
      width: 22px;
      height: 13px;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      margin: auto;
    }
}
/* sp */
@media screen and (max-width:767px){
    .header{
        min-height: 0;
        background: none;
    }
    .header-inner{
        position: relative;
        width: 100%;
        height: 80px;
        background: #fff;
    }
    .header-logo{
        position: absolute;
        top: 12px;
        width: 170px;
    }
    .header-menu-btn{
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        padding: 13px 13px 26px 26px;
        cursor: pointer;
    }
    .header-menu{
        position: absolute;
        top: 80px;
        left: 0;
        z-index: -1;
        height: calc(100vh - 80px);
        padding: 35px 35px calc(20px + env(safe-area-inset-bottom));
        overflow-x: hidden;
        overflow-y: auto;
        background: rgba(255,255,255,.9);
        transition: opacity .3s ease;
    }
    .header-menu:not(.is--active){
        display: none;
    }
    .header-menu:not(.is--show){
        opacity: 0;
    }
    .header-nav{
        max-width: 100%;
    }
    .header-nav-list{
        display: block;
    }
    .header-nav-list-item__link{
        display: inline-block;
        padding: 6px 0 7px;
        font-size: 1.4rem;
    }
    /* header-nav--recruit */
    .header-nav--recruit{
        padding-left: 1em;
    }
    .header-nav--recruit-list-item__link{
        display: inline-block;
        position: relative;
        padding: 6px 0 7px;
        font-size: 1.4rem;
        line-height: calc(1em + 5px);
    }
    .header-nav--recruit-list-item__link::before{
        display: inline-block;
        margin-right: .2em;
        content: "・";
    }
    /* header-menu__other */
    .header-menu__other{
        display: block;
        position: static;
    }
    .header-lang-switch{
        position: absolute;
        top: 36px;
        right: 35px;
        margin-right: 0;
        line-height: 1;
    }
    /* header-contact */
    .header-contact{
        display: flex;
        flex-direction: column-reverse;
        margin-top: 20px;
    }
    .header-contact--tel__link{
        display: block;
        padding: 10px 20px 10px 0;
        font-size: 1.7rem;
        font-weight: bold;
        line-height: 1;
    }
    .header-contact--mail__link{
        display: block;
        width: auto;
        padding: 10px 20px 0 0;
        overflow: hidden;
        text-indent: 100%;
        white-space: nowrap;
        position: relative;
        background: url(../images/icon_mail_black.svg) no-repeat;
        background-size: 22px 13px;
        width: 22px;
        height: 13px;
        margin-bottom: 10px;
    }
    .header-contact--mail__link:before{
      display: none;
    }
}

/*-------------
footer
-------------*/
.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 330px;
    padding: 50px 0;
    background: var(--main-gray);
}
.footer-logo{
    flex: 0 0 260px;
    margin-right: 125px;
}
.footer-inner{
    flex: 0 0 560px;
}
.footer-nav-list{
    margin-bottom: 17px;
    padding-bottom: 5px;
    border-bottom: solid 1px var(--main-black);
}
.footer-nav-list-item{
    float: left;
    margin-right: 2em;
    padding-bottom: 15px;
    line-height: calc(1em + 5px);
}
.footer-nav-list-item:nth-child(5){
    clear: both;
}
.footer-address{
    display: block;
    margin-bottom: 17px;
    font-size: 1.4rem;
    line-height: calc(1em + 5px);
}
.footer-bottom{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.footer-contact--tel{
    flex: 0 0 auto;
    font-size: 2rem;
    font-weight: bold;
    line-height: calc(1em + 5px);
}
.footer-contact--tel__link{
    display: block;
}
.footer-tel__link-head{
    font-size: 1.6rem;
}
.footer-contact--mail{
    flex: 0 0 22px;
    margin: 0 auto 2px 2em;
}
.footer-contact--mail__link{
    display: block;
    line-height: 0;
}
.footer-copy{
    font-size: 1.1rem;
    line-height: calc(1em + 5px);
}
/* sp */
@media screen and (max-width:767px){
    .footer{
        display: block;
        min-height: 0;
        padding: 45px 0 calc(20px + env(safe-area-inset-bottom));
    }
    .footer-logo{
        width: 205px;
        margin: 0 auto 35px;
    }
    .footer-inner{
        width: 280px;
        margin: 0 auto;
    }
    .footer-nav-list{
        display: flex;
        flex-wrap: wrap;
        padding: 0 6px 23px;
    }
    .footer-nav-list-item{
        float: none;
        flex: 0 0 calc(50% - 7.5px);
        margin-right: 0;
        padding-bottom: 0;
    }
    .footer-nav-list-item:not(:nth-child(2n)){
        margin-right: 15px;
    }
    .footer-nav-list-item:not(:nth-child(-n+2)){
        margin-top: 9px;
    }
    .footer-address{
        margin-bottom: 10px;
        font-size: 1rem;
        text-align: center;
    }
    .footer-bottom{
        display: block;
    }
    .footer-contact--tel{
        font-size: 1.4rem;
        text-align: center;
    }
    .footer-contact--tel__link{
        display: inline-block;
    }
    .footer-tel__link-head{
        font-size: 1.6rem;
    }
    .footer-contact--mail{
        width: 42px;
        margin: 0 auto 25px;
    }
    .footer-contact--mail__link{
        padding: 10px;
    }
    .footer-copy{
        display: block;
        font-size: 1.2rem;
        text-align: center;
    }
}

/*-------------
top
-------------*/
.loading{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    width: 100%;
    height: 100vh;
    padding-bottom: 100px;
    background: #fff;
    transition: opacity .8s ease;
}
.loading.is--remove{
    opacity: 0;
    transition: opacity .8s ease;
    pointer-events: none;
}
/* top-mainvisual */
.top-mainvisual{
    position: relative;
    height: calc(100vh - 135px);
    overflow: hidden;
}
.top-mainvisual-slider{
    height: 100%;
    position: relative;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}
.top-mainvisual-slider-item{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.top-mainvisual-slider-item img{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top-mainvisual-catch{
    position: absolute;
    bottom: 30px;
    left: 44px;
    color: #fff;
    font-weight: bold;
}
.top-mainvisual-catch__line:not(.is--show){
    opacity: 0;
}
.top-mainvisual-catch__line--jp{
    display: block;
    margin-bottom: 7px;
    font-size: 46px;
    line-height: 60px;
}
.top-mainvisual-catch__line--en{
    display: block;
    font-size: 111px;
    line-height: 115px;
}
.top-mainvisual-catch__text{
    opacity: 0;
    position: relative;
    left: 50px;
    transition-property: opacity,left;
    transition-duration: .8s;
    transition-timing-function: ease;
}
.is--show .top-mainvisual-catch__text{
    opacity: 1;
    left: 0;
}
/* top-mission */
.top-mission{
    position: relative;
    padding: 140px 0 120px;
    background: var(--main-blue_grad);
}
.top-mission::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-darkblue);
    content: "";
    transition: opacity .8s ease;
    pointer-events: none;
}
.top-mission.effected::before{
    opacity: 0;
}
.top-mission-inner{
    display: flex;
    justify-content: center;
}
.top-mission-head{
    margin-right: 80px;
    color: #fff;
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: bold;
    line-height: calc(1em + 25px);
    letter-spacing: .2em;
}
.top-mission-head::before{
    display: block;
    margin-bottom: 24px;
    font-size: 2rem;
    line-height: 1;
    content: "Mission";
}
@media screen and (min-width:768px){
  .top-mission-body{
    width: 480px;
  }
}
.top-mission-text{
    margin-bottom: 35px;
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1.7rem;
    line-height: calc(1em + 18px);
    letter-spacing: .1em;
}
.top-mission-btn{
    width: 204px;
    margin-top: 51px;
}
.top-mission-btn__link{
    display: block;
    padding-bottom: 10px;
    background: var(--str-arrow_link_white);
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1.7rem;
    line-height: 1;
}
/* top-pagevisual */
.top-pagevisual{
    display: flex;
    margin-bottom: 130px;
}
.top-pagevisual-item{
    flex: 0 0 50%;
    height: 350px;
}
.top-pagevisual-item__link{
    display: block;
    position: relative;
    height: 100%;
}
.top-pagevisual-item__link--prod{
    background: url(../images/top-pagevisual_prod.jpg) no-repeat top left / cover;
}
.top-pagevisual-item__link--str{
    background: url(../images/top-pagevisual_str.jpg) no-repeat bottom right / cover;
}
.top-pagevisual-item__title{
    display: inline-block;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translate(-30px,-50%);
    min-width: 270px;
    margin-top: -7px;
    padding: 0 40px 8px 0;
    background: var(--str-arrow_link_white);
    color: #fff;
    font-family: var(--font-serif);
    font-weight: bold;
    line-height: calc(1em + 4px);
    letter-spacing: .2em;
    transition: transform .8s ease,opacity .8s ease;
}
.effected .top-pagevisual-item__title{
    opacity: 1;
    transform: translateY(-50%);
}
@media screen and (min-width:769px){
    .top-pagevisual-item:nth-child(odd) .top-pagevisual-item__title{
        right: 60px;
        left: auto;
    }
}
.top-pagevisual-item__title--en{
    display: inline-block;
    margin-right: .25em;
    font-size: 2.2rem;
}
.top-pagevisual-item__title--jp{
    font-size: 1.9rem;
}
/* top-pagelist */
.top-pagelist{
    display: flex;
    flex-wrap: wrap;
    width: 1100px;
    margin: 0 auto 140px;
}
.top-pagelist-item{
    flex: 0 0 500px;
}
@media screen and (min-width:769px){
    .top-pagelist-item:not(:nth-child(2n)){
        margin-right: 100px;
    }
    .top-pagelist-item:not(:nth-child(-n+2)){
        margin-top: 115px;
    }
}
.top-pagelist-item__link{
    display: block;
}
.top-pagelist-item__pic{
    margin-bottom: 28px;
}
.top-pagelist-item__title{
    padding: 0 40px 8px 0;
    background: var(--str-arrow_link_blue);
    color: var(--main-darkblue);
    font-family: var(--font-serif);
    font-weight: bold;
    line-height: calc(1em + 4px);
    letter-spacing: .2em;
}
.top-pagelist-item__title--en{
    display: inline-block;
    margin-right: .25em;
    font-size: 2.2rem;
}
.top-pagelist-item__title--jp{
    font-size: 1.9rem;
}
/* top-news */
.top-news{
    position: relative;
    width: 1100px;
    margin: 260px auto 115px;
    padding: 55px 53px 45px;
    background: #e9ebf6;
}
.top-news::before{
    position: absolute;
    top: -125px;
    left: calc(50% - 25px);
    width: 50px;
    height: 62px;
    background: var(--bg-logomark);
    content: "";
}
.top-news-title{
    margin-bottom: 45px;
    color: var(--main-darkblue);
    font-family: var(--font-serif);
    font-size: 1.9rem;
    font-weight: bold;
    letter-spacing: .2em;
    line-height: calc(1em + 4px);
    text-align: center;
}
/* .top-news-title::before{
    display: inline-block;
    margin-right: .5em;
    font-size: 2.2rem;
    content: "News";
} */
.top-news-list{
    border-bottom: solid 1px var(--main-darkblue);
}
.top-news-list-item{
    display: flex;
    padding: 19px 20px 18px;
    border-top: solid 1px var(--main-darkblue);
    font-size: 1.6rem;
    line-height: calc(1em + 14px);
}
.top-news-list-item__date{
    flex: 0 0 122px;
    font-weight: bold;
}
.top-news-list-item__link:not(:hover){
    text-decoration: underline;
}
.top-news-list-item__title{
    font-weight: bold;
}
/* sp */
@media screen and (max-width:767px){
    .loading{
        padding-bottom: calc(100px + env(safe-area-inset-bottom));
    }
    .loading__logo{
        width: 70%;
    }
    /* top-mainvisual */
    .top-mainvisual{
        height: calc(100vh - 80px);
    }
    .top-mainvisual-slider-item{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
    }
    .top-mainvisual-catch{
        bottom: 12px;
        left: 20px;
    }
    .top-mainvisual-catch__line--jp{
        margin-bottom: 3px;
        font-size: 1.8rem;
        line-height: calc(1em + 6px);
    }
    .top-mainvisual-catch__line--en{
        font-size: 44px;
        line-height: calc(1em + 4px);
    }
    @media screen and (max-width:390px){
        .top-mainvisual-catch__line--en{
            font-size: 7.5vw;
        }
    }
    @media screen and (max-width:374px){
        .top-mainvisual-catch__line--en{
            font-size: 7.5vw;
            line-height: 39px;
        }
    }
    .top-mainvisual-catch__text{
        left: 25px;
    }
    /* top-mission */
    .top-mission{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 55px 0 60px;
    }
    .top-mission-inner{
        display: block;
        padding: 0 10%;
        box-sizing: border-box;
    }
    .top-mission-head{
        margin: 0 0 29px;
        font-size: 2.1rem;
        line-height: calc(1em + 16px);
    }
    .top-mission-head::before{
        margin-bottom: 17px;
        font-size: 1.5rem;
    }
    .top-mission-text{
        margin-bottom: 24px;
        font-size: 1.2rem;
        line-height: calc(1em + 12px);
    }
    @media screen and (max-width:374px){
        .top-mission-text{
            font-size: 1.1rem;
        }
    }
    .top-mission-btn{
        width: 157px;
        margin-top: 34px;
    }
    .top-mission-btn__link{
        padding-bottom: 7px;
        font-size: 1.4rem;
    }
    /* top-pagevisual */
    .top-pagevisual{
        display: block;
        margin-bottom: 60px;
    }
    .top-pagevisual-item{
        height: 175px;
    }
    .top-pagevisual-item__link--prod{
        background: url(../images/top-pagevisual_prod.jpg) no-repeat top left / cover;
    }
    .top-pagevisual-item__link--str{
        background: url(../images/top-pagevisual_str.jpg) no-repeat bottom right / cover;
    }
    .top-pagevisual-item__title{
        left: var(--inner-sidespace--sp);
        transform: translate(-20px,-50%);
        min-width: 182px;
        margin-top: -7px;
        padding-right: 30px;
        line-height: 1;
    }
    .top-pagevisual-item__title--en{
        font-size: 1.5rem;
    }
    .top-pagevisual-item__title--jp{
        font-size: 1.4rem;
    }
    /* top-pagelist */
    .top-pagelist{
        display: block;
        width: var(--inner-width--sp);
        margin-bottom: 60px;
    }
    .top-pagelist-item{
        padding: 0 10px;
    }
    .top-pagelist-item:not(:last-child){
        margin-bottom: 60px;
    }
    .top-pagelist-item__link{
        display: block;
    }
    .top-pagelist-item__pic{
        margin-bottom: 20px;
    }
    .top-pagelist-item__title{
        line-height: 1;
    }
    .top-pagelist-item__title--en{
        font-size: 1.5rem;
    }
    .top-pagelist-item__title--jp{
        font-size: 1.4rem;
    }
    /* top-news */
    .top-news{
        width: 100%;
        margin: 160px 0 0;
        padding: 45px 25px;
    }
    .top-news::before{
        top: -100px;
        left: calc(50% - 18px);
        width: 36px;
        height: 45px;
    }
    .top-news-title{
        margin-bottom: 30px;
        font-size: 1.4rem;
    }
    .top-news-title::before{
        font-size: 1.5rem;
    }
    .top-news-list-item{
        display: flex;
        padding: 12px 10px 13px;
        font-size: 1.2rem;
        line-height: calc(1em + 6px);
    }
    .top-news-list-item__date{
        flex: 0 0 76px;
    }
}

/*-------------
page-header
-------------*/
.page-header{
    position: relative;
    width: 100%;
    max-width: 1280px;
    height: 400px;
    margin: 0 auto 90px;
}
.page-header__title{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    min-width: 400px;
    min-height: 160px;
    padding: 20px 20px 22px;
    background: var(--main-blue_grad);
    color: #fff;
    font-family: var(--font-serif);
    font-size: 2.1rem;
    font-weight: bold;
    line-height: calc(1em + 5px);
    letter-spacing: .2em;
    transition: transform .8s ease;
}
.page-header:not(.effected) .page-header__title{
    transform: translate(-10%,-50%);
}
.page-header__title-inner::before{
    display: block;
    margin-bottom: 6px;
    font-size: 3rem;
    line-height: 1;
    content: attr(data-pagetitle-en);
}
.page-header__title-inner[data-pagetitle-en2]{
    display: flex;
    flex-direction: column;
}
.page-header__title-inner[data-pagetitle-en2]::before{
    order: -1;
    margin-bottom: 3px;
}
.page-header__title-inner[data-pagetitle-en2]::after{
    display: block;
    order: -1;
    margin-bottom: 6px;
    font-size: 3rem;
    line-height: 1;
    content: attr(data-pagetitle-en2);
}
/* sp */
@media screen and (max-width:767px){
    .page-header{
        height: 200px;
        margin-bottom: 50px;
    }
    .page-header__title{
        justify-content: flex-start;
        left: 0;
        min-width: 155px;
        min-height: 90px;
        font-size: 1.2rem;
    }
    .page-header__title-inner::before{
        margin-bottom: 2px;
        font-size: 1.8rem;
    }
    .page-header__title-inner[data-pagetitle-en2]::after{
        margin-bottom: 4px;
        font-size: 1.8rem;
    }
}

/*-------------
contact-link
-------------*/
.contact-link{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 120px auto 100px;
    padding-top: 80px;
    border-top: solid 1px var(--main-blue);
}
.contact-link-title{
    flex: 0 0 400px;
    margin: -5px 65px 0 0;
    padding: 0 0 14px 8px;
    background: url(../images/link-arrow_blue.svg) no-repeat right bottom / auto;
    font-size: 2rem;
    line-height: calc(1em + 12px);
}
.contact-link-list{
    flex: 0 0 260px;
}
.contact-link-list-item:not(:last-child){
    margin-bottom: 20px;
}
.contact-link-list-item__link{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}
.contact-link-list-item__link--tel{
    padding-top: 1px;
    background: var(--main-blue);
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: calc(1em + 5px);
    letter-spacing: .04em;
}
.contact-link-list-item__link--tel-head{
    font-size: 1.8rem;
}
.contact-link-list-item__link--mail{
    padding-bottom: 1px;
    background: var(--main-darkblue);
}
/* sp */
@media screen and (max-width:767px){
    .contact-link{
        display: block;
        width: var(--inner-width--sp);
        margin: 50px auto;
        padding-top: 48px;
    }
    .contact-link-title{
        margin:  0 auto 17px;
        padding: 0;
        background: none;
        font-feature-settings: normal;
        font-size: 1.3rem;
        line-height: calc(1em + 6px);
        text-align: center;
        letter-spacing: -.03em;
    }
    .contact-link-list{
        width: 200px;
        margin: 0 auto;
    }
    .contact-link-list-item:not(:last-child){
        margin-bottom: 15px;
    }
    .contact-link-list-item__link{
        height: 38px;
    }
    .contact-link-list-item__link--tel{
        font-size: 1.1rem;
    }
    .contact-link-list-item__link--tel-head{
        font-size: 1.2rem;
    }
    .contact-link-list-item__link--mail{
        padding-bottom: 1px;
        background: var(--main-darkblue);
    }
    .contact-link-list-item__link--mail img{
        width: 17px;
    }
}

/*-------------
プロダクト
-------------*/
.product + .contact-link{
    border-top: none;
}
.page-header--prod{
    background: url(../images/product/page-header_bg_product.jpg) no-repeat center / cover;
}
.prod-read{
    font-family: var(--font-serif);
    font-size: 1.9rem;
    line-height: calc(1em + 24px);
    letter-spacing: .1rem;
    text-align: left;
    display: table;
    margin: 0 auto 78px;
}
/* prod-feature */
.prod-feature{
    display: flex;
    width: 1100px;
    margin: 0 auto 183px;
}
.prod-feature-item{
    flex: 0 0 500px;
}
.prod-feature-item:not(:last-child){
    margin-right: 100px;
}
.prod-feature-item__pic{
    margin-bottom: 30px;
}
.prod-feature-item__title{
    margin-bottom: 8px;
    font-size: 2.2rem;
    line-height: calc(1em + 6px);
}
.prod-feature-item__text{
    font-size: 1.6rem;
    line-height: calc(1em + 14px);
}
/* prod-fabric */
.prod-fabric{
    width: 1100px;
    margin: 0 auto;
}
.prod-fabric-head{
    position: relative;
    z-index: 0;
    min-height: 572px;
    margin-bottom: 100px;
    padding-top: 66px;
}
.prod-fabric-head__visual{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.prod-fabric-head-main{
    width: 440px;
    margin-left: auto;
    padding: 60px 62px 69px;
    background: var(--main-gray);
}
.prod-fabric-head__title{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: .1em;
}
.prod-fabric-head__title::before{
    display: block;
    width: 30px;
    height: 37px;
    margin-right: 16px;
    background: var(--bg-logomark);
    content: "";
}
.prod-fabric-head__catch{
    margin-bottom: 29px;
    font-family: var(--font-serif);
    font-size: 2.7rem;
    line-height: calc(1em + 20px);
    letter-spacing: .1rem;
}
.prod-fabric-head__sec__title{
    margin-bottom: 11px;
    color: var(--main-blue);
    font-size: 2rem;
    line-height: calc(1em + 12px);
    letter-spacing: .05em;
}
.prod-fabric-head__sec__text{
    font-size: 1.6rem;
    line-height: calc(1em + 12px);
}
/* prod-fabric-detail */
.prod-fabric-detail{
    display: flex;
}
.prod-fabric-detail__pic{
    flex: 0 0 400px;
    margin-right: 60px;
}
.prod-fabric-detail-main{
    flex: 0 0 640px;
}
.prod-fabric-detail__title{
    margin-bottom: 13px;
    color: var(--main-blue);
    font-size: 2rem;
    line-height: calc(1em + 9px);
}
.prod-fabric-detail__text{
    margin-bottom: 33px;
    font-size: 1.6rem;
    line-height: calc(1em + 12px);
}
.prod-fabric-detail__table{
    width: 100%;
    border-bottom: solid 1px var(--main-gray_border);
}
.prod-fabric-detail__table tr{
    border-top: solid 1px var(--main-gray_border);
}
.prod-fabric-detail__table th,
.prod-fabric-detail__table td{
    padding: 15px 10px;
    font-size: 1.6rem;
    line-height: calc(1em + 14px);
}
.prod-fabric-detail__table th{
    width: 120px;
}
/* sp */
@media screen and (max-width:767px){
    .page-header--prod{
        background: url(../images/product/page-header_bg_product@sp.jpg) no-repeat center / cover;
    }
    .prod-read{
        padding: 0 10%;
        margin-bottom: 38px;
        font-size: 1.3rem;
        line-height: calc(1em + 15px);
    }
    /* prod-feature */
    .prod-feature{
        display: block;
        width: var(--inner-width--sp);
        margin-bottom: 50px;
        padding: 0 10px;
    }
    .prod-feature-item:not(:last-child){
        margin: 0 0 50px;
    }
    .prod-feature-item__pic{
        margin-bottom: 17px;
    }
    .prod-feature-item__title{
        margin-bottom: 8px;
        font-size: 1.4rem;
    }
    .prod-feature-item__text{
        font-size: 1.2rem;
        line-height: calc(1em + 10px);
    }
    /* prod-fabric */
    .prod-fabric{
        width: 100%;
    }
    .prod-fabric-head{
        min-height: 0;
        margin-bottom: 52px;
        padding-top: 0;
    }
    .prod-fabric-head__visual{
        position: static;
    }
    .prod-fabric-head-main{
        width: var(--inner-width--sp);
        transform: translateY(-18px);
        margin: 0 auto;
        padding: 45px 12vw 35px;
    }
    .prod-fabric-head__title{
        margin-bottom: 18px;
        font-size: 1.5rem;
    }
    .prod-fabric-head__title::before{
        display: block;
        width: 21px;
        height: 25px;
        margin-right: 12px;
    }
    .prod-fabric-head__catch{
        margin-bottom: 14px;
        font-family: var(--font-serif);
        font-size: 1.8rem;
        line-height: calc(1em + 14px);
    }
    .prod-fabric-head__sec__title{
        margin-bottom: 12px;
        font-size: 1.5rem;
        line-height: calc(1em + 9px);
    }
    .prod-fabric-head__sec__text{
        font-size: 1.2rem;
        line-height: calc(1em + 10px);
    }
    /* prod-fabric-detail */
    .prod-fabric-detail{
        display: block;
        width: var(--inner-width--sp);
        margin: 0 auto;
        padding: 0 10px;
    }
    .prod-fabric-detail__pic{
        margin: 0 0 10px;
    }
    .prod-fabric-detail__title{
        margin-bottom: 5px;
        font-size: 1.4rem;
    }
    .prod-fabric-detail__text{
        font-size: 1.2rem;
        line-height: calc(1em + 9px);
    }
    .prod-fabric-detail__table th,
    .prod-fabric-detail__table td{
        padding: 12px 5px;
        font-size: 1.1rem;
        line-height: calc(1em + 6px);
    }
    .prod-fabric-detail__table th{
        width: 80px;
    }
}

/*-------------
強み
-------------*/
.page-header--str{
    background: url(../images/strengths/page-header_bg_str.jpg) no-repeat center / cover;
}
.str-read{
    font-family: var(--font-serif);
    font-size: 1.9rem;
    line-height: calc(1em + 24px);
    letter-spacing: .1rem;
    text-align: left;
    display: table;
    margin: 0 auto 148px;
}
/* str-five */
.str-five{
    width: 1100px;
    margin: 0 auto;
    counter-reset: sec-number;
}
.str-five-title{
    margin-bottom: 40px;
    font-family: var(--font-serif);
    font-size: 35px;
    line-height: calc(1em + 19px);
    letter-spacing: .1rem;
    text-align: center;
}
.str-five-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 120px;
    counter-reset: item-number;
}
.str-five-list-item{
    display: flex;
    flex: 0 0 170px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 170px;
    margin: 0 10px;
    padding-bottom: 7px;
    border-radius: 50%;
    background: var(--main-lightblue_grad);
    font-family: var(--font-serif);
    font-size: 1.8rem;
    line-height: 1.6;
    letter-spacing: .1em;
    text-align: center;
    padding-top: 23px;
    position: relative;
}
.str-five-list-item::before{
    display: block;
    margin-bottom: 11px;
    content: counter(item-number);
    counter-increment: item-number;
}
.str-five-list-item:nth-of-type(2)::before,
.str-five-list-item:nth-of-type(5)::before{
  margin-bottom: 0;
}
.str-five-list-item a{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
/* .str-five-list-item::after{
    display: block;
    margin-top: 11px;
    font-size: 1.3rem;
    content: attr(data-title-en);
} */
/* str-five-sec */
.str-five-sec:not(:last-of-type){
    margin-bottom: 185px;
}
.str-five-sec-head{
    position: relative;
    z-index: 0;
    min-height: 622px;
}
.str-five-sec-head__visual{
    position: absolute;
    top: 50px;
    left: 0;
    z-index: -1;
}
.str-five-sec-head-main{
    position: relative;
    width: 440px;
    margin-left: auto;
    padding: 53px 66px 49px;
    background: var(--main-gray);
}
.str-five-sec-head-main::before{
    position: absolute;
    top: 50px;
    left: 338px;
    color: var(--main-blue);
    font-family: var(--font-serif);
    font-size: 80px;
    line-height: 1;
    content: counter(sec-number);
    counter-increment: sec-number;
}
.str-five-sec-head__title{
    position: relative;
    margin-bottom: 30px;
    padding: 0 47px;
    font-family: var(--font-serif);
    font-size: 2.7rem;
    line-height: calc(1em + 8px);
    letter-spacing: .1em;
}
.str-five-sec-head__title::before{
    position: absolute;
    top: calc(.5em - 17px);
    left: 0;
    width: 30px;
    height: 37px;
    background: var(--bg-logomark);
    content: "";
}
/* .str-five-sec-head__title::after{
    display: block;
    margin-top: 15px;
    font-size: 1.5rem;
    line-height: calc(1em + 5px);
    content: attr(data-title-en);
} */
.str-five-sec-head__catch{
    margin-bottom: 15px;
    font-family: var(--font-serif);
    font-size: 2.1rem;
    line-height: calc(1em + 10px);
}
.str-five-sec-head__text{
    font-size: 1.6rem;
    line-height: calc(1em + 12px);
}
.str-five-sec-body{
    margin-top: 90px;
    padding-left: 45px;
}
.str-five-sec-body__sec:not(:last-of-type){
    margin-bottom: 50px;
}
.str-five-sec-body__content--align{
    display: flex;
    flex-wrap: wrap;
}
.str-five-sec-body__column--pic,
.str-five-sec-body__column--pic_sp-wide{
    flex: 0 0 210px;
    margin: 0 45px 0 auto;
}
.str-five-sec-body__column{
    flex: 0 0 auto;
    max-width: 970px;
    margin-left: auto;
}
@media screen and (min-width:768px){
    .str-five-sec-body__column--pic + .str-five-sec-body__column,
    .str-five-sec-body__column--pic_sp-wide + .str-five-sec-body__column{
        flex-basis: 800px;
    }
}
.str-five-sec-body__title{
    margin-bottom: 12px;
    color: var(--main-blue);
    font-size: 2rem;
    line-height: calc(1em + 9px);
}
.str-five-sec-body__text{
    font-size: 1.6rem;
    line-height: calc(1em + 12px);
}
/* str-five-sec__order-flow */
.str-five-sec__order-flow{
    display: flex;
    align-items: center;
    margin-top: 35px;
}
.str-five-sec__order-flow-item{
    position: relative;
}
.str-five-sec__order-flow-item:not(:last-child){
    margin-right: 70px;
}
.str-five-sec__order-flow-item:not(:last-child)::before{
    position: absolute;
    top: calc(50% - 9px);
    right: -51px;
    width: 32px;
    height: 18px;
    background: url(../images/strengths/str-arrow_flow.svg) no-repeat center / contain;
    content: "";
}
.str-five-sec__order-flow-item--side{
    min-width: 130px;
    padding: 21px 10px;
    background: var(--main-gray);
    font-size: 1.7rem;
    line-height: calc(1em + 7px);
    text-align: center;
}
.str-five-sec__order-flow-item--middle{
    display: flex;
    align-items: center;
    min-width: 450px;
    min-height: 130px;
    padding: 10px 40px 10px 146px;
    border: solid 3px var(--main-blue);
    border-radius: 65px;
}
.str-five-sec__order-flow-item--middle-head{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -3px;
    left: -3px;
    width: 130px;
    height: calc(100% + 6px);
    border-radius: 68px;
    background: var(--main-blue);
    color: #fff;
    font-size: 2.3rem;
    font-weight: bold;
    line-height: calc(1em + 7px);
    text-align: center;
}
.str-five-sec__order-flow-item--middle-body{
    font-size: 1.6rem;
    font-weight: bold;
    line-height: calc(1em + 9px);
}
/* str-five-sec__history */
.str-five-sec__history{
    width: 820px;
    margin-top: 10px;
}
.str-five-sec__history-item{
    position: relative;
    padding: 18px 0 18px 180px;
}
.str-five-sec__history-item:not(:last-child){
    border-bottom: solid 1px var(--main-gray_border);
}
.str-five-sec__history-item-head{
    display: flex;
    align-items: center;
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--main-blue);
    font-family: var(--font-serif);
    font-size: 30px;
    line-height: 1;
    letter-spacing: .1em;
}
.str-five-sec__history-item-head__year{
    font-size: 45px;
}
.str-five-sec__history-item-body{
    display: flex;
    align-items: center;
    min-height: 45px;
    font-size: 2rem;
    line-height: calc(1em + 4px);
}
/* str-five-sec__btn */
.str-five-sec__btn{
    width: 290px;
    margin: -6px 0 0 55px;
}
.str-five-sec__btn__link{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70px;
    padding: 10px;
    border: solid 1px var(--main-darkblue);
    color: var(--main-darkblue);
    font-size: 1.8rem;
}
.str-five-sec__btn__link::after{
    width: 48px;
    height: 19px;
    margin-left: 11px;
    background: url(../images/strengths/str-arrow_link.svg) no-repeat top center / auto;
    content: "";
}
/* sp */
@media screen and (max-width:767px){
    .page-header--str{
        background: url(../images/strengths/page-header_bg_str@sp.jpg) no-repeat center / cover;
    }
    .str-read{
        margin-bottom: 50px;
        font-size: 1.3rem;
        line-height: calc(1em + 16px);
        padding: 0 10%;
    }
    @media screen and (max-width:320px){
        .str-read{
            letter-spacing: -.02em;
        }
    }
    /* str-five */
    .str-five{
        width: 100%;
    }
    .str-five-title{
        margin-bottom: 11px;
        font-size: 1.8rem;
        line-height: calc(1em + 9px);
    }
    .str-five-list{
        margin-bottom: 60px;
    }
    .str-five-list-item{
        flex: 0 0 100px;
        min-height: 100px;
        justify-content: center;
        margin: 0 5px;
        padding-bottom: 5px;
        font-size: 1.2rem;
        padding-top: 0;
    }
    .str-five-list-item:first-child{
        margin-left: calc(50vw - 105px);
    }
    .str-five-list-item:nth-child(2){
        margin-right: calc(50vw - 105px);
    }
    @media screen and (max-width:320px){
        .str-five-list-item:nth-child(3){
            margin: 0 calc(50vw - 55px);
        }
    }
    .str-five-list-item::before{
        margin-bottom: 7px;
    }
    .str-five-list-item::after{
        margin-top: 7px;
        font-size: .8rem;
    }
    /* str-five-sec */
    .str-five-sec:not(:last-of-type){
        margin-bottom: 100px;
    }
    .str-five-sec-head{
        min-height: 0;
    }
    .str-five-sec-head__visual{
        position: static;
    }
    .str-five-sec-head-main{
        transform: translateY(-18px);
        width: var(--inner-width--sp);
        margin: 0 auto;
        padding: 39px 12vw 31px;
    }
    .str-five-sec-head-main::before{
        top: 33px;
        left: 75%;
        font-size: 55px;
    }
    .str-five-sec-head__title{
        margin-bottom: 21px;
        padding: 0 40px 0 33px;
        font-size: 1.7rem;
    }
    .str-five-sec-head__title::before{
        top: calc(.5em - 13px);
        width: 20px;
        height: 25px;
    }
    /* .str-five-sec-head__title::after{
        margin-top: 7px;
        font-size: 1.1rem;
    } */
    .str-five-sec-head__catch{
        margin-bottom: 16px;
        font-size: 1.5rem;
        line-height: calc(1em + 11px);
    }
    .str-five-sec-head__text{
        font-size: 1.2rem;
        line-height: calc(1em + 9px);
    }
    .str-five-sec-body{
        width: var(--inner-width--sp);
        margin: 32px auto 0;
        padding: 0;
    }
    .str-five-sec-body__sec:not(:last-of-type){
        margin-bottom: 25px;
    }
    .str-five-sec-body__column--pic{
        flex: 0 0 35%;
        margin-right: 22px;
    }
    .str-five-sec-body__column--pic_sp-wide{
        flex: 0 0 100%;
        margin: 0 0 25px;
    }
    .str-five-sec-body__column{
        max-width: 100%;
        padding: 0 10px;
    }
    .str-five-sec-body__column--pic + .str-five-sec-body__column{
        flex-basis: calc(65% - 22px);
        padding: 0;
    }
    .str-five-sec-body__title{
        margin-bottom: 3px;
        font-size: 1.4rem;
    }
    .str-five-sec-body__text{
        font-size: 1.2rem;
        line-height: calc(1em + 7px);
    }
    /* str-five-sec__order-flow */
    .str-five-sec__order-flow{
        flex-direction: column;
        margin-top: 30px;
    }
    .str-five-sec__order-flow-item:not(:last-child){
        margin: 0 0 25px;
    }
    .str-five-sec__order-flow-item:not(:last-child)::before{
        top: auto;
        right: calc(50% - 6px);
        bottom: -20px;
        width: 12px;
        height: 15px;
        background: url(../images/strengths/str-arrow_flow_bottom.svg) no-repeat center / contain;
    }
    .str-five-sec__order-flow-item--side{
        min-width: 125px;
        padding: 11px 10px;
        font-size: 1.1rem;
    }
    .str-five-sec__order-flow-item--middle{
        min-width: 320px;
        min-height: 84px;
        padding: 5px 20px 5px 80px;
        border-width: 2px;
        border-radius: 42px;
    }
    .str-five-sec__order-flow-item--middle-head{
        top: -2px;
        left: -2px;
        width: 74px;
        height: calc(100% + 4px);
        border-radius: 44px;
        font-size: 1.2rem;
        line-height: calc(1em + 5px);
    }
    .str-five-sec__order-flow-item--middle-body{
        font-size: 1rem;
        line-height: calc(1em + 6px);
    }
    /* str-five-sec__history */
    .str-five-sec__history{
        width: 100%;
    }
    .str-five-sec__history-item{
        position: relative;
        padding: 11px 0 11px 85px;
    }
    .str-five-sec__history-item-head{
        top: 11px;
        left: 10px;
        font-size: 1.5rem;
    }
    .str-five-sec__history-item-head__year{
        font-size: 2.3rem;
    }
    .str-five-sec__history-item-body{
        min-height: 2.3rem;
        font-size: 1.1rem;
    }
    /* str-five-sec__btn */
    .str-five-sec__btn{
        width: 100%;
        margin: 10px 0 0 0;
    }
    .str-five-sec__btn__link{
        width: 182px;
        min-height: 44px;
        font-size: 1.2rem;
    }
    .str-five-sec__btn__link::after{
        width: 30px;
        height: 12px;
        margin-left: 9px;
        background: url(../images/strengths/str-arrow_link.svg) no-repeat bottom 5px right / auto;
        content: "";
    }
}

/*-------------
流れ
-------------*/
.page-header--flow{
    background: url(../images/flow/page-header_bg_flow.jpg) no-repeat center / cover;
}
.flow-read{
    margin-bottom: 78px;
    font-size: 1.9rem;
    line-height: calc(1em + 24px);
    text-align: center;
    letter-spacing: .1rem;
    text-align: left;
    display: table;
    margin: 0 auto 78px;
}
/* flow-list */
.flow-list{
    columns: 2;
    column-gap: 100px;
    width: 800px;
    margin: -30px auto 150px;
    counter-reset: flow-number;
}
.flow-list-item{
    display: inline-block;
    position: relative;
    width: 350px;
    min-height: 97px;
    margin-top: 30px;
    padding-left: 37px;
}
.flow-list-item.line-second{
  margin-top: 10px;
}
.flow-list-item:last-child{
    min-height: 0;
}
.flow-list-item::before{
    position: absolute;
    top: calc(1.25rem + 2px);
    left: 0;
    transform: translate(-35%,-50%);
    font-family: var(--font-serif);
    font-size: 3.0rem;
    line-height: 1;
    letter-spacing: .05em;
    content: counter(flow-number)".";
    counter-increment: flow-number;
}
.flow-list-item.line-second::before{
 top: calc(2.5rem + 10px);
}
.flow-list-item::after{
    position: absolute;
    top: calc((1.25rem + 2px) - 22px);
    right: 6px;
    width: 55px;
    height: 44px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
}
.flow-list-item.line-second::after{
    top: calc((1.25rem + 2px));
}
.flow-list-item--icon_01::after{
    background-image: url(../images/flow/flow-icon_list_01.svg);
}
.flow-list-item--icon_02::after{
    background-image: url(../images/flow/flow-icon_list_02.svg);
}
.flow-list-item--icon_03::after{
    background-image: url(../images/flow/flow-icon_list_03.svg);
}
.flow-list-item--icon_04::after{
    background-image: url(../images/flow/flow-icon_list_04.svg);
}
.flow-list-item--icon_05::after{
    background-image: url(../images/flow/flow-icon_list_05.svg);
}
.flow-list-item--icon_06::after{
    background-image: url(../images/flow/flow-icon_list_06.svg);
}
.flow-list-item--icon_07::after{
    background-image: url(../images/flow/flow-icon_list_07.svg);
}
.flow-list-item--icon_08::after{
    background-image: url(../images/flow/flow-icon_list_08.svg);
}
.flow-list-item--icon_09::after{
    background-image: url(../images/flow/flow-icon_list_09.svg);
}
.flow-list-item--icon_10::after{
    background-image: url(../images/flow/flow-icon_list_10.svg);
}
.flow-list-item--icon_11::after{
    background-image: url(../images/flow/flow-icon_list_11.svg);
}
.flow-list-item-head{
    position: relative;
    padding: 0 70px 13px 0;
    font-family: var(--font-serif);
    font-size: 2.1rem;
    line-height: calc(1em + 4px);
    letter-spacing: .1rem;
}
.flow-list-item-head::before{
    position: absolute;
    bottom: 0;
    left: -37px;
    width: calc(100% + 37px);
    height: 1px;
    background: #004da0;
    content: "";
}
.flow-list-item:not(:last-child) .flow-list-item-head::after{
    position: absolute;
    bottom: -34px;
    left: -37px;
    width: 10px;
    height: 35px;
    background: url(../images/flow/flow-arrow.svg) no-repeat center bottom / auto,#fff;
    content: "";
}
.flow-list-item-head .is--small{
    font-size: 1.5rem;
    vertical-align: bottom;
}
.flow-list-item-body{
    margin-top: 8px;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    line-height: calc(1em + 7px);
}
/* flow-case */
.flow-case-title{
    margin-bottom: 50px;
    font-family: var(--font-serif);
    font-size: 2.8rem;
    letter-spacing: .1rem;
    text-align: center;
    line-height: calc(1em + 8px);
}
.flow-case-list{
    width: 840px;
    margin: 0 auto;
}
.flow-case-list-item{
    display: flex;
    align-items: flex-start;
}
.flow-case-list-item__request{
    flex: 0 0 420px;
    transform: translateX(20px);
    padding: 52px 72px 40px 38px;
    border-radius: 5px;
    background: var(--main-gray);
}
.flow-case-list-item__request__title{
    position: relative;
    margin-bottom: 32px;
    padding-right: 60px;
    font-family: var(--font-serif);
    font-size: 1.7rem;
    line-height: calc(1em + 8px);
    letter-spacing: .1em;
}
.flow-case-list-item__request__title::before{
    display: block;
    margin-bottom: 10px;
    font-size: 37px;
    line-height: 1;
    content: "Request";
}
.flow-case-list-item__request__title::after{
    position: absolute;
    top: calc(50% - 27.5px);
    right: 17px;
    width: 50px;
    height: 55px;
    background: url(../images/flow/flow-icon_request.svg) no-repeat center / contain;
    content: "";
}
.flow-case-list-item__request__catch{
    margin-bottom: 26px;
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: bold;
    line-height: calc(1em + 8px);
}
.flow-case-list-item__request__text{
    font-family: var(--font-serif);
    font-size: 2.2rem;
    line-height: calc(1em + 19px);
}
.flow-case-list-item__answer{
    flex: 0 0 420px;
    transform: translateX(-20px);
    mix-blend-mode: multiply;
    margin-top: 120px;
    padding: 52px 35px 65px 89px;
    border-radius: 5px;
    background: var(--main-lightblue_grad);
}
.flow-case-list-item__answer__title{
    position: relative;
    margin-bottom: 32px;
    padding-right: 60px;
    font-family: var(--font-serif);
    font-size: 1.7rem;
    line-height: calc(1em + 8px);
    letter-spacing: .1em;
}
.flow-case-list-item__answer__title::before{
    display: block;
    margin-bottom: 10px;
    font-size: 37px;
    line-height: 1;
    content: "Answer";
}
.flow-case-list-item__answer__title::after{
    position: absolute;
    top: calc(50% - 31px);
    right: 13px;
    width: 50px;
    height: 62px;
    background: var(--bg-logomark);
    content: "";
}
.flow-case-list-item__answer__text{
    font-size: 1.9rem;
    line-height: calc(1em + 17px);
}
/* sp */
@media screen and (max-width:767px){
    .page-header--flow{
        background: url(../images/flow/page-header_bg_flow@sp.jpg) no-repeat center / cover;
    }
    .flow-read{
        margin-bottom: 43px;
        font-size: 1.3rem;
        line-height: calc(1em + 15px);
        padding: 0 10%;
    }
    /* flow-list */
    .flow-list{
        columns: unset;
        width: 250px;
        margin: 0 auto 85px;
    }
    .flow-list-item{
        display: block;
        width: 100%;
        min-height: inherit;
        margin-top: 20px;
        padding-left: 23px;
        padding-bottom: 23px;
    }
    .flow-list-item--icon_03{
      padding-bottom: 0;
    }
    .flow-list-item.line-second {
      margin-top: 20px;
    }
    .flow-list-item::before{
        top: calc(.75rem + 2px);
        font-size: 2rem;
    }
    .flow-list-item.line-second::before {
      top: calc(2.5rem + 5px);
    }
    .flow-list-item::after{
        top: calc((.75rem + 2px) - 14px);
        right: 4px;
        width: 35px;
        height: 28px;
    }
    .flow-list-item.line-second::after{
      top: calc(.75rem + 2px);
    }
    .flow-list-item-head{
        padding: 0 45px 8px 0;
        font-family: var(--font-serif);
        font-size: 1.5rem;
    }
    .flow-list-item-head::before{
        left: -23px;
        width: calc(100% + 23px);
    }
    .flow-list-item:not(:last-child) .flow-list-item-head::after{
        bottom: -22px;
        left: -23px;
        width: 10px;
        height: 22px;
    }
    .flow-list-item-head .is--small{
        font-size: 1.2rem;
    }
    .flow-list-item-body{
        font-size: 1rem;
        line-height: calc(1em + 6px);
    }
    /* flow-case */
    .flow-case-title{
        margin-bottom: 33px;
        font-size: 1.8rem;
    }
    .flow-case-list{
        width: var(--inner-width--sp);
    }
    .flow-case-list-item{
        display: block;
    }
    .flow-case-list-item__request{
        width: calc(100% - 46px);
        min-width: 260px;
        transform: none;
        margin-right: auto;
        padding: 33px 34px 39px;
        border-radius: 3px;
    }
    .flow-case-list-item__request__title{
        margin-bottom: 23px;
        padding-right: 45px;
        font-size: 1rem;
    }
    .flow-case-list-item__request__title::before{
        margin-bottom: 8px;
        font-size: 2.2rem;
    }
    .flow-case-list-item__request__title::after{
        top: calc(50% - 16.5px);
        right: 10px;
        width: 30px;
        height: 33px;
    }
    .flow-case-list-item__request__catch{
        margin-bottom: 16px;
        font-size: 1.5rem;
    }
    .flow-case-list-item__request__text{
        font-size: 1.3rem;
        line-height: calc(1em + 13px);
    }
    .flow-case-list-item__answer{
        width: calc(100% - 62px);
        min-width: 260px;
        transform: translateY(-20px);
        margin: 0 0 -20px auto;
        padding: 46px 22px 34px 37px;
        border-radius: 3px;
    }
    .flow-case-list-item__answer__title{
        position: relative;
        margin-bottom: 15px;
        padding-right: 47px;
        font-size: 1rem;
    }
    .flow-case-list-item__answer__title::before{
        margin-bottom: 8px;
        font-size: 2.2rem;
    }
    .flow-case-list-item__answer__title::after{
        top: calc(50% - 18.5px);
        right: 13px;
        width: 30px;
        height: 37px;
    }
    .flow-case-list-item__answer__text{
        font-size: 1.2rem;
        line-height: calc(1em + 12px);
    }
}

/*-------------
サスティナブル
-------------*/
.page-header--sust{
    background: url(../images/sustainable/page-header_bg_sust.jpg) no-repeat center / cover;
}
.sust-read{
    font-size: 1.9rem;
    line-height: calc(1em + 24px);
    text-align: center;
    letter-spacing: .1rem;
    text-align: left;
    display: table;
    margin: 0 auto 75px;
}
/* sust-recycle */
.sust-recycle{
    position: relative;
    z-index: 0;
    width: 1100px;
    min-height: 622px;
    margin: 0 auto 90px;
}
.sust-recycle-visual{
    position: absolute;
    top: 50px;
    left: 0;
    z-index: -1;
}
.sust-recycle-main{
    width: 440px;
    margin-left: auto;
    padding: 52px 55px 54px 72px;
    background: var(--main-gray);
}
.sust-recycle__title{
    position: relative;
    margin-bottom: 37px;
    padding-left: 48px;
    font-family: var(--font-serif);
    font-size: 2.9rem;
    line-height: calc(1em + 8px);
    letter-spacing: .1rem;
}
.sust-recycle__title::before{
    position: absolute;
    top: calc(1.45rem - 14px);
    left: 0;
    width: 30px;
    height: 36px;
    background: var(--bg-logomark);
    content: "";
}
.sust-recycle__catch{
    margin-bottom: 26px;
    font-family: var(--font-serif);
    font-size: 2.4rem;
    line-height: calc(1em + 17px);
    letter-spacing: .05em;
}
.sust-recycle__text{
    font-size: 1.6rem;
    line-height: calc(1em + 12px);
}
/* sust-list */
.sust-list{
    display: flex;
    width: 1100px;
    margin: 0 auto;
}
.sust-list-item{
    flex: 0 0 330px;
    padding: 42px 32px 34px;
    background: var(--main-gray);
}
.sust-list-item:not(:last-child){
    margin-right: 55px;
}
.sust-list-item__title{
    display: flex;
    align-items: center;
    min-height: calc(4.8rem + 14px);
    margin-bottom: 20px;
    font-family: var(--font-serif);
    font-size: 2.1rem;
    line-height: calc(1em + 7px);
    letter-spacing: .1rem;
}
.sust-list-item__title::before{
    width: 30px;
    height: 36px;
    margin: 0 23px 1px 0;
    background: var(--bg-logomark);
    content: "";
}
.sust-list-item__text{
    font-size: 1.6rem;
    line-height: calc(1em + 12px);
}
/* sp */
@media screen and (max-width:767px){
    .page-header--sust{
        background: url(../images/sustainable/page-header_bg_sust@sp.jpg) no-repeat center / cover;
    }
    .sust-read{
        margin-bottom: 42px;
        font-size: 1.3rem;
        line-height: calc(1em + 16px);
        padding: 0 10%;
    }
    /* sust-recycle */
    .sust-recycle{
        width: 100%;
        min-height: 0;
        margin-bottom: 33px;
    }
    .sust-recycle-visual{
        position: static;
    }
    .sust-recycle-main{
        transform: translateY(-22px);
        width: var(--inner-width--sp);
        margin: 0 auto;
        padding: 40px 45px 32px;
    }
    .sust-recycle__title{
        margin-bottom: 25px;
        padding-left: 33px;
        font-size: 2rem;
    }
    .sust-recycle__title::before{
        top: calc(1rem - 8.5px);
        width: 20px;
        height: 25px;
    }
    .sust-recycle__catch{
        margin-bottom: 20px;
        font-size: 1.6rem;
        line-height: calc(1em + 11px);
    }
    .sust-recycle__text{
        font-size: 1.2rem;
        line-height: calc(1em + 9px);
    }
    /* sust-list */
    .sust-list{
        display: block;
        width: 60%;
        min-width: 225px;
    }
    .sust-list-item{
        padding: 30px 23px 26px;
    }
    .sust-list-item:not(:last-child){
        margin: 0 0 25px;
    }
    .sust-list-item__title{
        min-height: calc(3.2rem + 10px);
        margin-bottom: 11px;
        font-size: 1.4rem;
        line-height: calc(1em + 5px);
    }
    .sust-list-item__title::before{
        width: 20px;
        height: 25px;
        margin-right: 15px;
    }
    .sust-list-item__text{
        font-size: 1.2rem;
        line-height: calc(1em + 9px);
    }
}

/*-------------
理念・ミッション
-------------*/
.page-header--phil{
    background: url(../images/philosophy/page-header_bg_phil.jpg) no-repeat center / cover;
}
.phil-sec{
    width: 1040px;
    margin: 0 auto;
}
.phil-sec:not(:last-of-type){
    margin-bottom: 150px;
}
.phil-sec-head{
    padding-left: 108px;
}
.phil-sec__title--main{
    display: block;
    position: relative;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    line-height: calc(1em + 8px);
    letter-spacing: .1rem;
}
.phil-sec__title--main::before{
    position: absolute;
    top: calc(.5em - 20px);
    left: -75px;
    width: 40px;
    height: 48px;
    background: var(--bg-logomark);
    content: "";
}
.phil-sec__title--sub{
    display: block;
    margin-top: 7px;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    line-height: calc(1em + 8px);
    letter-spacing: .1rem;
}
.phil-sec__catch{
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: bold;
    line-height: calc(1em + 15px);
}
.phil-sec__catch:first-child{
    margin-top: -8px;
}
.phil-sec__catch:not(:last-child){
    margin-bottom: 37px;
}
.phil-sec__catch--middle{
    font-family: var(--font-serif);
    font-size: 2.1rem;
    line-height: calc(1em + 15px);
}
.phil-sec__catch--middle:first-child{
    margin-top: 0;
}
.phil-sec__catch--middle:not(:last-child){
    margin-bottom: 44px;
}
.phil-sec__catch--small{
    font-family: var(--font-serif);
    font-size: 2.4rem;
    line-height: calc(1em + 20px);
}
.phil-sec__text{
    font-family: var(--font-serif);
    font-size: 1.7rem;
    line-height: calc(1em + 18px);
}
.phil-sec__text:not(:last-child){
    margin-bottom: 26px;
}
@media screen and (min-width:768px){
    .phil-sec--column_2{
        display: flex;
    }
    .phil-sec--column_2 .phil-sec-body{
        flex: 0 0 650px;
        margin-left: auto;
    }
}
/* phil-goals */
.phil-goals{
    display: flex;
    justify-content: space-between;
}
.phil-goals-main{
    flex: 0 0 660px;
}
.phil-goals-container{
    margin-top: 120px;
    padding-left: 108px;
    counter-reset: list-number;
    padding-right: 5px;
}
.phil-goals-sec{
    display: flex;
    padding-left: 40px;
}
.phil-goals-sec:not(:last-of-type){
    margin-bottom: 60px;
}
.phil-goals-sec-head{
    display: flex;
    flex: 0 0 140px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-right: 22px;
    padding: 7px;
}
.phil-goals-sec-head::before,
.phil-goals-sec-head::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 7px;
    height: 100%;
    border: solid 1px var(--main-black);
    content: "";
}
.phil-goals-sec-head::before{
    border-right: none;
}
.phil-goals-sec-head::after{
    right: 0;
    left: auto;
    border-left: none;
}
.phil-goals-sec__title--main{
    font-family: var(--font-serif);
    font-size: 1.6rem;
    line-height: calc(1em + 4px);
    text-align: center;
    letter-spacing: .08em;
}
.phil-goals-sec__title--sub{
    margin-top: 4px;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    line-height: calc(1em + 4px);
    text-align: center;
    letter-spacing: .04em;
}
.phil-goals-sec__list{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2px 0;
}
.phil-goals-sec__list-item{
    position: relative;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    line-height: calc(1em + 8px);
}
.phil-goals-sec__list-item:not(:last-child){
    margin-bottom: 18px;
}
.phil-goals-sec__list-item::before{
    position: absolute;
    top: 50%;
    left: -190px;
    transform: translate(-50%,-50%);
    font-family: var(--font-serif);
    font-size: 2.8rem;
    line-height: 1;
    content: counter(list-number);
    counter-increment: list-number;
}
.phil-goals-sec__list-item:not(:only-child):before{
    top: calc(.5em + 14px);
}
/* phil-str */
.phil-str{
    counter-reset: item-number;
}
.phil-str-item{
    display: flex;
    align-items: center;
}
.phil-str-item:not(:last-child){
    margin-bottom: 22px;
}
.phil-str-item-head{
    flex: 0 0 240px;
    position: relative;
    margin-right: 20px;
    padding-left: 30px;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    line-height: calc(1em + 8px);
}
.phil-str-item-head::before{
    position: absolute;
    top: calc((1.1rem + 4px) - 1.4rem);
    left: 0;
    font-size: 2.8rem;
    line-height: 1;
    content: counter(item-number);
    counter-increment: item-number;
}
.phil-str-item-body{
    font-family: var(--font-serif);
    font-size: 1.6rem;
    line-height: calc(1em + 8px);
}
/* phil-logo */
.phil-logo .phil-sec__title--main{
    font-size: 2.8rem;
    letter-spacing: 0;
}
.phil-logo__pic{
    margin: 0 0 51px 83px;
}
/* sp */
@media screen and (max-width:767px){
    .page-header--phil{
        background:  url(../images/philosophy/page-header_bg_phil@sp.jpg) no-repeat center / cover;
    }
    .phil-sec{
        width: var(--inner-width--sp);
        padding: 0 10px;
    }
    .phil-sec:not(:last-of-type){
        margin-bottom: 100px;
    }
    .phil-sec-head{
        margin-bottom: 35px;
        padding-left: 44px;
    }
    .phil-sec__title--main{
        font-size: 1.8rem;
    }
    .phil-sec__title--main::before{
        top: calc(.5em - 13px);
        left: -44px;
        width: 25px;
        height: 30px;
        line-height: calc(1em + 4px);
    }
    .phil-sec__title--sub{
        margin-top: 4px;
        font-size: .9rem;
        line-height: calc(1em + 4px);
    }
    .phil-sec__catch{
        font-size: 1.9rem;
        line-height: calc(1em + 16px);
    }
    .phil-sec__catch:not(:last-child){
        margin-bottom: 20px;
    }
    .phil-sec__catch--middle{
        font-size: 1.5rem;
        line-height: calc(1em + 15px);
    }
    .phil-sec__catch--middle:first-child{
        margin-top: -7px;
    }
    .phil-sec__catch--middle:not(:last-child){
        margin-bottom: 21px;
    }
    .phil-sec__catch--small{
        font-size: 1.3rem;
        line-height: calc(1em + 12px);
    }
    .phil-sec__text{
        font-size: 1.2rem;
        line-height: calc(1em + 14px);
    }
    .phil-sec__text:not(:last-child){
        margin-bottom: 19px;
    }
    /* phil-goals */
    .phil-goals{
        display: block;
    }
    .phil-goals-main{
        margin-bottom: 30px;
    }
    .phil-goals-container{
        margin: 0;
        padding-left: 0;
    }
    .phil-goals-sec{
        padding-left: 18px;
    }
    .phil-goals-sec:not(:last-of-type){
        margin-bottom: 33px;
    }
    .phil-goals-sec-head{
        flex: 0 0 59px;
        margin-right: 13px;
        padding: 2px 4px;
    }
    .phil-goals-sec-head::before,
    .phil-goals-sec-head::after{
        width: 4px;
    }
    .phil-goals-sec__title--main{
        font-size: .9rem;
    }
    .phil-goals-sec__title--sub{
        margin-top: 1px;
        font-size: .7rem;
    }
    .phil-goals-sec__list{
        padding: 0;
    }
    .phil-goals-sec__list-item{
        font-size: 1.3rem;
        line-height: calc(1em + 6px);
    }
    .phil-goals-sec__list-item:not(:last-child){
        margin-bottom: 7px;
    }
    .phil-goals-sec__list-item::before{
        left: -85px;
        font-size: 1.5rem;
    }
    .phil-goals-sec__list-item:not(:only-child):before{
        top: calc(.5em + 10px);
    }
    .phil-goals-figure{
        width: 100%;
        max-width: inherit;
        margin: 0 auto;
    }
    /* phil-str */
    .phil-str-item{
      display: block;
    }
    .phil-str-item:not(:last-child){
        margin-bottom: 15px;
    }
    .phil-str-item-head{
        flex: 0 0 95px;
        margin-right: 0;
        padding-left: 16px;
        margin-bottom: 5px;
        font-size: 1.3rem;
    }
    .phil-str-item-head::before{
        position: absolute;
        top: calc((.65rem + 4px) - .75rem);
        font-size: 1.5rem;
    }
    .phil-str-item-body{
        font-size: 1.1rem;
    }
    /* phil-logo */
    .phil-logo .phil-sec__title--main{
        font-size: 1.5rem;
    }
    .phil-logo__pic{
        width: 100px;
        margin: 0 0 25px 23px;
    }
}

/*-------------
企業概要
-------------*/
.page-header--com{
    background: url(../images/company/page-header_bg_com.jpg) no-repeat center / cover;
}
.company{
    padding-bottom: 180px;
}
.com-sec{
    width: 1100px;
    margin: -20px auto 0;
    padding-top: 20px;
}
.com-sec:not(:last-child){
    margin-bottom: 150px;
}
.com-sec-title{
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 50px;
    padding-left: 176px;
    font-family: var(--font-serif);
    font-size: 2.9rem;
    line-height: calc(1em + 8px);
    letter-spacing: .1rem;
}
.com-sec-title::before{
    position: absolute;
    top: calc(.5em - 20px);
    left: 100px;
    width: 40px;
    height: 48px;
    background: var(--bg-logomark);
    content: "";
}
/* .com-sec-title::after{
    display: block;
    margin-left: 35px;
    font-size: 1.5rem;
    content: attr(data-title-en);
    line-height: calc(1em + 8px);
} */
/* com-greeting */
.com-greeting{
    position: relative;
    padding: 66px 220px 0 0;
}
.com-greeting-main{
    margin-top: 76px;
    padding: 74px 102px;
    background: var(--main-gray);
}
.com-greeting-main-head{
    margin-bottom: 62px;
}
.com-greeting-main__title{
    margin-bottom: 34px;
    font-family: var(--font-serif);
    font-size: 2.7rem;
    line-height: calc(1em + 15px);
    letter-spacing: .1rem;
}
.com-greeting-main__name{
    display: block;
    align-items: center;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    line-height: calc(1em + 8px);
    letter-spacing: .1em;
}
.com-greeting-main__name__post{
    font-size: 1.8rem;
    line-height: calc(1em + 8px);
}
.com-greeting-main__catch{
    margin-bottom: 20px;
    color: var(--main-blue);
    font-size: 2rem;
    line-height: calc(1em + 8px);
}
.com-greeting-main__text{
    font-size: 1.6rem;
    line-height: calc(1em + 12px);
}
.com-greeting-main__text:not(:last-child){
    margin-bottom: 22px;
}
.com-greeting__pic{
    position: absolute;
    top: 0;
    right: 0;
}
/* com-table--common */
.com-table--common{
    width: 750px;
    margin-left: 176px;
    border-bottom: solid 1px var(--main-gray_border);
}
.com-table--common tr{
    border-top: solid 1px var(--main-gray_border);
}
.com-table--common th,
.com-table--common td{
    font-size: 1.7rem;
    line-height: calc(1em + 13px);
}
.com-table--common th{
    width: 220px;
    padding: 9px 15px 9px 25px;
    background: #fafafa;
    font-weight: normal;
}
.com-table--common td{
    padding: 9px 20px 9px 40px;
}
.com-table--common td p:not(:last-child){
    margin-bottom: 13px;
}
/* com-access */
.com-access-head{
    display: flex;
    align-items: flex-start;
    margin-bottom: 45px;
}
.com-access-info{
    flex: 1 1 auto;
    margin: -5px 0 0 80px;
}
.com-access-address{
    font-size: 1.6rem;
    line-height: calc(1em + 9px);
}
.com-access-roots{
    margin-top: 11px;
}
.com-access-roots-item{
    position: relative;
    padding-left: 1em;
    font-size: 1.6rem;
    line-height: calc(1em + 9px);
}
.com-access-roots-item::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "●";
}
.com-access-map{
    margin-bottom: 40px;
}
/* sp */
@media screen and (max-width:767px){
    .page-header--com{
        background: url(../images/company/page-header_bg_com@sp.jpg) no-repeat center / cover;
    }
    .company{
        padding-bottom: 50px;
    }
    .com-sec{
        width: 100%;
    }
    .com-sec:not(:last-child){
        margin-bottom: 70px;
    }
    .com-sec-title{
        width: var(--inner-width--sp);
        margin: 0 auto 26px;
        padding-left: 47px;
        font-size: 1.8rem;
    }
    .com-sec-title::before{
        top: calc(.5em - 10px);
        left: 6px;
        width: 24px;
        height: 28px;
    }
    /* .com-sec-title::after{
        margin-left: 25px;
        font-size: 1rem;
    } */
    /* com-greeting */
    .com-greeting{
        padding: 0 0 169px;
    }
    .com-greeting-main{
        margin-top: 0;
        padding: 42px var(--inner-sidespace--sp) 110px;
    }
    .com-greeting-main-head{
        margin-bottom: 27px;
    }
    .com-greeting-main__title{
        margin-bottom: 27px;
        font-size: 1.9rem;
        line-height: calc(1em + 16px);
        letter-spacing: .1em;
    }
    .com-greeting-main__name{
        font-size: 1.3rem;
    }
    .com-greeting-main__name__post{
        font-size: 1rem;
    }
    .com-greeting-main__catch{
        margin-bottom: 5px;
        font-size: 1.4rem;
    }
    .com-greeting-main__text{
        font-size: 1.2rem;
        line-height: calc(1em + 11px);
    }
    .com-greeting-main__text:not(:last-child){
        margin-bottom: 17px;
    }
    .com-greeting__pic{
        top: auto;
        right: auto;
        bottom: 0;
        left: var(--inner-sidespace--sp);
        width: 200px;
    }
    /* com-table--common */
    .com-table--common{
        width: var(--inner-width--sp);
        margin: 0 auto;
    }
    .com-table--common th,
    .com-table--common td{
        font-size: 1.1rem;
        line-height: calc(1em + 7px);
    }
    .com-table--common th{
        width: 88px;
        padding: 7px 10px;
    }
    .com-table--common td{
        padding: 7px 15px 7px;
    }
    .com-table--common td p:not(:last-child){
        margin-bottom: 11px;
    }
    /* com-access */
    .com-access-head{
        display: block;
        margin-bottom: 22px;
    }
    .com-access-info{
        width: var(--inner-width--sp);
        margin: 0 auto;
    }
    .com-access-address{
        font-size: 1.1rem;
        line-height: calc(1em + 7px);
    }
    .com-access-roots-item{
        font-size: 1.1rem;
        line-height: calc(1em + 7px);
    }
    .com-access-map{
        width: 100%;
        height: 450px;
        margin-bottom: 25px;
    }
    .com-access-map iframe{
        width: 100%;
        height: 100%;
    }
}

/*-------------
contact
-------------*/
.contents.contact {
    margin-bottom: 120px;
}
.page-header--contact {
    margin-bottom: 40px;
}
.page-header__contact {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 160px;
    display: flex;
    align-items: center;
    margin-right: 90px;
}
.page-header__contact--text {
    margin-right: 40px;
}
.page-header__contact--text dt {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 2.2rem;
}
.page-header__contact--btn {
    align-self: flex-end;
}
.page-header__contact--btn li {
    width: 260px;
    height: 50px;
}
.page-header__contact--btn li a,
.page-header__contact--btn li span {
    font-size: 1.8rem;
    font-weight: bold;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border: solid 1px #004da0;
    box-sizing: border-box;
    letter-spacing: .1rem;
}
.page-header__contact--btn .tel-btn {
    color: #fff;
    background: #004da0;
    margin-bottom: 10px;
}
.page-header__contact--btn .fax-btn {
    color: #004da0;
}
.contact-main {
    width: 800px;
    margin: 0 auto;
}
.contact-main--title {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 2.2rem;
    margin-bottom: 5px;
}
.contact-main--text {
    margin-bottom: 60px;
}
.contact-text {
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.contact-text span {
    color: #004da0;
    font-weight: 600;
    margin-right: 2px;
}
.contact-table {
    width: 100%;
    margin-bottom: 20px;
    table-layout: fixed;
}
.contact-table input:not([type="radio"]) {
    background: #f4f4f4;
    padding: 5px 10px;
    width: 100%;
    height: 40px;
}
.contact-table textarea {
    width: 100%;
    height: 240px;
    background: #f4f4f4;
    padding: 5px 10px;
    resize: vertical;
}
.contact-table tr th {
    font-size: 1.4rem;
    font-weight: normal;
    width: 190px;
    padding: 15px 10px;
    box-sizing: border-box;
    vertical-align: middle;
}
.contact-table tr th span {
    color: #004da0;
    font-weight: 600;
    margin-left: 2px;
}
.contact-table tr th.vt {
    vertical-align: top;
    padding-top: 23px;
}
.contact-table tr td {
    padding: 15px 0;
}
.contact-table .wid210 {
    width: 210px !important;
}
.contact-table .mR10 {
    margin-right: 10px;
}
.contact-table .mT10 {
    margin-top: 10px;
}
.contact-main__btn-list {
    display: flex;
    justify-content: center;
}
.contact-main__btn-list li {
    width: 250px;
    height: 40px;
}
.contact-main__btn-list li a {
    font-size: 1.5rem;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border: solid 1px #221714;
    box-sizing: border-box;
    background: #004da0;
}
.contact-main__btn-list .contact-main__backbtn {
    margin-left: 20px;
}
.contact-main__btn-list .contact-main__backbtn a {
    color: #231815;
    background: #fff;
    border: solid 1px #9e9e9f;
}
.complete-title {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-align: center;
}
.complete-text {
    text-align: center;
    margin-bottom: 30px;
}
.complete .back-btn {
    width: 260px;
    height: 50px;
    margin: 0 auto;
}
.complete .back-btn a {
    font-size: 1.5rem;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border: solid 1px #221714;
    box-sizing: border-box;
    background: #004da0;
}
/* sp */
@media screen and (max-width:767px) {

    /*-------------
  contact
  -------------*/
    .contents.contact {
        margin-bottom: 40px;
    }
    .page-header--contact {
        height: 250px;
    }
    .page-header__contact {
        position: absolute;
        top: 60px;
        right: 0;
        transform: translateY(0);
        height: auto;
        display: block;
        width: 44%;
        margin-right: var(--inner-sidespace--sp);
    }
    .page-header--contact .page-header__title {
        transform: none;
        top: 55px;
    }
    .page-header__contact--text {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-header__contact--text dt {
        font-size: 1.4rem;
        margin-bottom: 5px;
        line-height: 1.3;
    }
    .page-header__contact--text dd {
        font-size: 1.2rem;
    }
    .page-header__contact--btn li {
        width: 100%;
        height: 35px;
    }
    .page-header__contact--btn li a,
    .page-header__contact--btn li span {
        font-size: 1rem;
        font-weight: bold;
        width: 100%;
        height: 100%;
        padding: 0 5px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        border: solid 1px #004da0;
        box-sizing: border-box;
        letter-spacing: 0;
    }
    .page-header__contact--btn li small {
        font-size: 0.9rem;
        margin-top: 0;
        margin-right: 2px;
        letter-spacing: .1rem;
    }
    .contact-main {
        width: var(--inner-width--sp);
        margin: 0 auto;
    }
    .contact-main--title {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    .contact-main--text {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    .contact-text {
        font-size: 1.2rem;
    }
    .contact-table tr th {
        font-size: 1.2rem;
        display: block;
        width: 100%;
        padding-right: 0;
        margin-bottom: 5px;
        box-sizing: border-box;
        vertical-align: top;
    }
    .contact-table tr td {
        display: block;
        padding: 0 0 15px;
    }
    .contact-table tr th.vt {
        vertical-align: top;
        padding-top: 0;
    }
    .contact-table .txtRed {
        font-size: 1.2rem;
    }
    .contact-main__btn-list {
        justify-content: space-between;
    }
    .contact-main__btn-list li {
        width: 48%;
        height: 50px;
    }
    .contact-main__btn-list .contact-main__backbtn {
        margin-left: 0;
    }
    .contact-main__btn-list li a {
        font-size: 1.2rem;
        text-align: center;
    }
    .confirm-table tr th {
        font-weight: bold;
    }
}
/*-------------
page-header_recruit
-------------*/
.page-header_recruit {
    position: relative;
    width: 100%;
    height: 590px;
    margin: 0 auto 90px;
    /* aspect-ratio: 3 / 1;
    height: auto; */
}
.page-header_recruit__title {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 90px;
    left: 8.72%;
    min-width: 250px;
    min-height: 160px;
    padding: 20px 20px 22px;
    background: var(--main-blue_grad);
    color: #fff;
    font-family: var(--font-serif);
    font-size: 2.1rem;
    font-weight: bold;
    line-height: calc(1em + 5px);
    letter-spacing: .2em;
}
.page-header_recruit__title-inner::before {
    display: block;
    margin-bottom: 6px;
    font-size: 3rem;
    line-height: 1;
    content: attr(data-pagetitle-en);
}
.page-header_recruit__sub {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 290px;
    left: 8.72%;
    min-width: 225px;
    min-height: 75px;
    padding: 20px 20px 22px;
    background: #fff;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: calc(1em + 5px);
    letter-spacing: .2em;
}
.page-header_recruit__sub:before {
    content: "";
    background: url(../images/icon_title001.svg) no-repeat;
    background-size: cover;
    width: 25px;
    height: 30px;
    margin-right: 20px;
}
.page-header_recruit__sub_en {
    position: absolute;
    font-family: var(--font-serif);
    font-size: 5.0rem;
    letter-spacing: .2em;
    top: 90px;
    right: 12.72%;
}
/* sp */
@media screen and (max-width:767px) {
    .page-header_recruit {
        margin-bottom: 50px;
        aspect-ratio: 751 / 591;
        height: auto;
    }
    .page-header_recruit__title {
        justify-content: flex-start;
        top: 55px;
        left: 0;
        min-width: 125px;
        min-height: 90px;
        font-size: 1.2rem;
    }
    .page-header_recruit__title-inner::before {
        margin-bottom: 2px;
        font-size: 1.8rem;
    }
    .page-header_recruit__sub {
        top: 160px;
        left: 0;
        min-width: 115px;
        min-height: 35px;
        padding: 6px 10px;
        background: #fff;
        font-size: 1.4rem;
        font-weight: bold;
    }
    .page-header_recruit__sub:before {
        content: "";
        background: url(../images/icon_title001.svg) no-repeat;
        background-size: cover;
        width: 13px;
        height: 16px;
        margin-right: 8px;
    }
    .page-header_recruit__sub_en {
        position: absolute;
        font-family: var(--font-serif);
        font-size: 1.8rem;
        font-weight: bold;
        letter-spacing: .2em;
        top: 230px;
        right: auto;
        left: 4%;
    }
}
/*-------------
contact-link/enry-link
-------------*/
.contact-link.ver-recruit {
    padding-top: 60px;
    border-top: none;
    margin-top: 0;
}
.entry-link {
    width: 725px;
    margin: 100px auto 0;
}
.entry-link-title {
    font-family: var(--font-serif);
    letter-spacing: .2em;
    font-size: 5.4rem;
    text-align: center;
    margin-bottom: 30px;
}
.entry-link-btn {
    width: 100%;
    height: 130px;
}
.entry-link-btn a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.6rem;
    font-weight: bold;
    letter-spacing: .2rem;
    border: solid 2px #004da0;
    box-sizing: border-box;
    position: relative;
}
.entry-link-btn a:after {
    content: "";
    width: 90px;
    height: 16px;
    border-bottom: 2px solid #004da0;
    border-right: 2px solid #004da0;
    position: absolute;
    top: 0;
    right: 40px;
    bottom: 0;
    transform: skew(45deg);
    margin: auto;
    transition: all ease .3s;
}
/* .entry-link-btn a:hover:after{
  transition: all ease .3s;
  right: 20px;
  width: 70px;
} */
/* sp */
@media screen and (max-width:767px) {
    .contact-link.ver-recruit {
        padding-top: 50px;
    }
    .entry-link {
        width: var(--inner-width--sp);
        margin: 60px auto 0;
    }
    .entry-link-title {
        font-size: 3.0rem;
        text-align: center;
        margin-bottom: 20px;
    }
    .entry-link-btn {
        width: 100%;
        height: 70px;
    }
    .entry-link-btn a {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.4rem;
        font-weight: bold;
    }
    .entry-link-btn a:after {
        content: "";
        width: 30px;
        height: 8px;
        right: 20px;
    }
    /* .entry-link-btn a:hover:after{
    transition: all ease .3s;
    right: 40px;
    width: 90px;
  } */
}
/*-------------
リクルート
-------------*/
.contents.recruit {
    overflow: visible;
}
.page-header--recruit-top {
    background: url(../images/recruit/page-header_bg_recruit.jpg) no-repeat center / cover;
}
.recrui-sec1 {
    width: 1100px;
    margin: -150px auto 150px auto;
    position: relative;
}
.recrui-sec1-wrapper {
    width: 950px;
    padding: 60px;
    box-sizing: border-box;
    background: #dff0f4;
}
.recrui-title {
    position: relative;
    margin-bottom: 50px;
}
.recrui-title-main {
    display: flex;
    align-items: center;
    width: 390px;
    height: 88px;
    padding: 20px 20px 25px;
    background: #fff;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: calc(1em + 5px);
    letter-spacing: .2em;
}
.recrui-title-main:before {
    content: "";
    background: url(../images/icon_title001.svg) no-repeat;
    background-size: cover;
    width: 30px;
    height: 36px;
    margin-right: 20px;
}
.recrui-title-sub {
    font-size: 5.4rem;
    font-family: var(--font-serif);
    letter-spacing: .4rem;
    position: absolute;
    top: 0;
    right: 0;
}
.recrui-sec1-text dt {
    color: #004da0;
    font-size: 2.6rem;
    font-weight: bold;
    line-height: calc(1em + 25px);
    margin-bottom: 25px;
}
.recrui-sec1-text dd {
    font-size: 1.7rem;
    width: 575px;
    line-height: 1.8;
}
.recrui-sec1-pho {
    position: absolute;
    right: 0;
    bottom: -50px;
}
/*sec2*/
.recrui-sec2 {
    width: 100%;
    margin: 0 auto;
    position: relative;
    background: #e9ebf6;
    padding: 80px 0 0;
    box-sizing: border-box;
}
.recrui-sec2-wrapper {
    width: 1100px;
    margin: 0 auto;
}
.recrui-sec2 .recrui-title {
    margin-bottom: 60px;
}
.recrui-sec2 .recrui-title-main {
    margin-left: -40px;
}
.recrui-sec2--items {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
}
.recrui-sec2--items:after {
    content: none;
}
.recrui-sec2--item {
    flex: 0 1 510px;
    margin-bottom: 80px;
}
.recrui-sec2--item dl {
    background: #fff;
    width: 440px;
    margin: -80px 0 0 auto;
    padding: 110px 40px 40px;
}
.recrui-sec2--item img {
    position: relative;
    z-index: 10;
}
.recrui-sec2--item dt {
    font-size: 2.3rem;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 15px;
}
.recrui-sec2--item dt.line1 {
    margin-bottom: 45px;
}
.recrui-sec2--item dd {
    font-size: 1.6rem;
    font-weight: 500;
}
.recrui-sec2--item dd span {
    font-size: 2.3rem;
    margin-left: 15px;
}
/*sec3*/
.recrui-sec3 {
    width: 100%;
    margin: 0 auto;
}
.recrui-sec3--items {
    display: flex;
    justify-content: space-between;
}
.recrui-sec3--items:after {
    content: none;
}
.recrui-sec3--item {
    flex: 0 1 50%;
    height: auto;
    aspect-ratio: 887 / 401;
    position: relative;
    background: url(../images/recruit/training.jpg) no-repeat center / cover;
}
.recrui-sec3--item:last-of-type {
    background: url(../images/recruit/information.jpg) no-repeat center / cover;
}
.recrui-sec3--item a {
    display: block;
    width: 100%;
    height: 100%;
}
.recrui-sec3--item-main {
    width: 310px;
    position: absolute;
    right: 40px;
    bottom: 40px;
    text-align: right;
}
.recrui-sec3--item:last-of-type .recrui-sec3--item-main {
    text-align: left;
    right: auto;
    left: 40px;
}
.recrui-sec3--item-main .text {
    color: #fff;
    font-size: 3.5rem;
    font-family: var(--font-serif);
    letter-spacing: .4rem;
    margin-bottom: 40px;
}
.recrui-sec3--item:last-of-type .recrui-sec3--item-main .text {
    color: #231815;
}
.recrui-sec3--item-main .btn {
    display: flex;
    align-items: center;
    width: 100%;
    height: 88px;
    padding: 20px 20px 25px;
    background: #fff;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: calc(1em + 5px);
    letter-spacing: .2em;
    position: relative;
}
.recrui-sec3--item-main .btn:before {
    content: "";
    background: url(../images/icon_title001.svg) no-repeat;
    background-size: cover;
    width: 30px;
    height: 36px;
    margin-right: 20px;
}
.recrui-sec3--item-main .btn:after {
    content: "";
    width: 58px;
    height: 12px;
    border-bottom: 2px solid #004da0;
    border-right: 2px solid #004da0;
    position: absolute;
    top: -15px;
    right: 30px;
    bottom: 0;
    transform: skew(45deg);
    margin: auto;
    transition: all ease .3s;
}
/* sp */
@media screen and (max-width:767px) {
    .page-header--recruit-top {
        background: url(../images/recruit/page-header_bg_recruit@sp.jpg) no-repeat center / cover;
    }
    .recrui-sec1 {
        width: var(--inner-width--sp);
        margin: 0 auto 30px;
        position: relative;
    }
    .recrui-sec1-wrapper {
        width: 100%;
        padding: 40px 25px 60px;
        box-sizing: border-box;
        background: #dff0f4;
    }
    .recrui-title {
        position: relative;
        margin-bottom: 20px;
        display: table;
    }
    .recrui-title-main {
        min-width: 200px;
        width: 100%;
        height: auto;
        padding: 15px 10px;
        background: #fff;
        font-size: 1.4rem;
        font-weight: bold;
        line-height: calc(1em + 5px);
        letter-spacing: .2em;
        margin-bottom: 25px;
    }
    .recrui-title-main:before {
        content: "";
        background: url(../images/icon_title001.svg) no-repeat;
        background-size: cover;
        width: 13px;
        height: 16px;
        margin-right: 8px;
    }
    .recrui-title-sub {
        font-size: 2.7rem;
        font-family: var(--font-serif);
        letter-spacing: .4rem;
        position: static;
    }
    .recrui-sec1-text dt {
        color: #004da0;
        font-size: 1.8rem;
        font-weight: bold;
        line-height: calc(1em + 18px);
        margin-bottom: 25px;
    }
    .recrui-sec1-text dd {
        font-size: 1.4rem;
        width: 100%;
        line-height: 1.8;
    }
    .recrui-sec1-pho {
        width: 67%;
        position: static;
        margin: -30px 0 0 20px;
    }
    /*sec2*/
    .recrui-sec2 {
        width: 100%;
        margin: 0 auto;
        position: relative;
        background: #e9ebf6;
        padding: 50px 0;
        box-sizing: border-box;
    }
    .recrui-sec2-wrapper {
        width: var(--inner-width--sp);
        margin: 0 auto;
    }
    .recrui-sec2 .recrui-title {
        margin-bottom: 50px;
    }
    .recrui-sec2 .recrui-title-main {
        margin-left: 0;
    }
    .recrui-sec2--items {
        display: block;
    }
    .recrui-sec2--item {
        margin-bottom: 50px;
    }
    .recrui-sec2--item:last-of-type {
        margin-bottom: 0;
    }
    .recrui-sec2--item img {
        width: 90.17%;
    }
    .recrui-sec2--item dl {
        background: #fff;
        width: 90.17%;
        margin: -30px 0 0 auto;
        padding: 48px 18px 18px;
    }
    .recrui-sec2--item dt {
        font-size: 1.7rem;
        font-weight: bold;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    .recrui-sec2--item dt.line1 {
        margin-bottom: 15px;
    }
    .recrui-sec2--item dd {
        font-size: 1.2rem;
        font-weight: 500;
    }
    .recrui-sec2--item dd span {
        font-size: 1.5rem;
        margin-left: 15px;
    }
    /*sec3*/
    .recrui-sec3--items {
        display: block;
    }
    .recrui-sec3--item {
        flex: 0 1 50%;
        height: auto;
        aspect-ratio: 751 / 401;
        position: relative;
        background: url(../images/recruit/training@sp.jpg) no-repeat center / cover;
    }
    .recrui-sec3--item:last-of-type {
        background: url(../images/recruit/information@sp.jpg) no-repeat center / cover;
    }
    .recrui-sec3--item-main {
        width: 190px;
        position: absolute;
        right: 15px;
        bottom: 15px;
    }
    .recrui-sec3--item:last-of-type .recrui-sec3--item-main {
        right: auto;
        left: 15px;
    }
    .recrui-sec3--item-main .text {
        color: #fff;
        font-size: 2.5rem;
        font-family: var(--font-serif);
        letter-spacing: .3rem;
        margin-bottom: 15px;
    }
    .recrui-sec3--item-main .btn {
        width: 100%;
        height: auto;
        padding: 15px 10px;
        background: #fff;
        font-size: 1.4rem;
        font-weight: bold;
        line-height: calc(1em + 5px);
        letter-spacing: .2em;
    }
    .recrui-sec3--item-main .btn:before {
        content: "";
        width: 13px;
        height: 16px;
        margin-right: 8px;
    }
    .recrui-sec3--item-main .btn:after {
        content: "";
        width: 40px;
        height: 9px;
        top: -8px;
        right: 20px;
        bottom: 0;
    }
}
/*-------------
リクルート/人材育成
-------------*/
.page-header--recruit-training {
    background: url(../images/training/page-header_bg.jpg) no-repeat center / cover;
    margin-bottom: 0;
}
.recruit .training-sec1 {
    width: 1100px;
    padding: 0 0 100px;
    box-sizing: border-box;
    margin: 0 auto;
}
.recruit .training-sec1-wrapper {
    width: 830px;
    background: #dff0f4;
    margin-top: -60px;
    position: relative;
    z-index: 1;
    padding: 80px;
    box-sizing: border-box;
}
.recruit .training-sec1-title {
    color: #004da0;
    font-size: 4.0rem;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 0.2rem;
}
.recruit .training-sec1 dl dt {
    color: #004da0;
    font-size: 2.6rem;
    font-weight: bold;
    letter-spacing: 0.2rem;
    margin-bottom: 30px;
}
.recruit .training-sec1 dl dd {
    font-size: 1.6rem;
    line-height: 1.8;
}
/*sec2*/
.recruit .training-sec2 {
    background: #e9ebf6;
    padding: 100px 0;
}
.recruit .training-sec2-wrapper {
    width: 1100px;
    margin: 0 auto;
}
.recruit .training-title {
    margin-bottom: 40px;
}
.recruit .training-title-main {
    font-size: 2.9rem;
    font-weight: bold;
    letter-spacing: 1rem;
    text-align: center;
    margin-bottom: 60px;
}
.recruit .training-title-text {
    width: 625px;
    margin: 0 auto;
    letter-spacing: 0.1rem;
}
.recruit .training-sec2--item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}
.recruit .training-sec2--item-main {
    background: #fff;
    padding: 50px;
    box-sizing: border-box;
    margin-top: 70px;
    margin-left: -50px;
}
.recruit .training-sec2--item-main-title {
    font-size: 2.9rem;
    font-family: var(--font-serif);
    letter-spacing: .3rem;
    margin-bottom: 40px;
    padding-left: 40px;
    position: relative;
    line-height: 1;
}
.recruit .training-sec2--item-main-title small {
    font-size: 1.8rem;
}
.recruit .training-sec2--item-main-title:before {
    content: "";
    background: url(../images/icon_title001.svg) no-repeat;
    background-size: cover;
    width: 25px;
    height: 30px;
    position: absolute;
    top: 0;
    left: 0;
}
.recruit .training-sec2--item-main-text {
    margin-bottom: 40px;
    line-height: 1.8;
}
.recruit .training-sec2--item dl dt {
    font-weight: bold;
    margin-bottom: 3px;
}
/*sec3*/
.recruit .training-sec3 {
    padding: 100px 0;
}
.recruit .training-sec3-wrapper {
    width: 1100px;
    margin: 0 auto;
}
.recruit .training-sec3-pholist {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}
.recruit .training-sec3-text {
    background: #eeeeef;
    padding: 60px 100px;
    box-sizing: border-box;
}
.recruit .training-sec3-text dt {
    font-weight: bold;
    margin-bottom: 3px;
}
.recruit .training-sec3-text dd {
    display: flex;
    justify-content: space-between;
}
.recruit .training-sec3-text dd ul li:not(:last-child) {
    margin-bottom: 3px;
}
/*sec3*/
.recruit .training-sec4 {
    padding: 100px 0;
    background: #e9ebf6;
}
.recruit .training-sec4-wrapper {
    width: 1100px;
    margin: 0 auto;
}
.recruit .training-sec4-text {
    background: #fff;
    padding: 60px 200px;
    box-sizing: border-box;
}
.recruit .training-sec4-text dt {
    font-weight: bold;
    margin-bottom: 3px;
}
.recruit .training-sec4-text dd {
    display: flex;
    justify-content: space-between;
}
.recruit .training-sec4-text dd ul li:not(:last-child) {
    margin-bottom: 3px;
}
@media screen and (max-width:767px) {
    .page-header--recruit-training {
        background: url(../images/training/page-header_bg@sp.jpg) no-repeat center / cover;
    }
    .recruit .training-sec1 {
        width: var(--inner-width--sp);
        padding: 50px 0 50px;
        margin: 0 auto;
    }
    .recruit .training-sec1-wrapper {
        width: 100%;
        background: #dff0f4;
        margin-top: 0;
        position: relative;
        z-index: 1;
        padding: 30px 20px;
        box-sizing: border-box;
    }
    .recruit .training-sec1-title {
        font-size: 1.8rem;
        line-height: calc(1em + 15px);
        margin-bottom: 15px;
        letter-spacing: 0.2rem;
    }
    .recruit .training-sec1 dl dt {
        color: #004da0;
        font-size: 1.5rem;
        font-weight: bold;
        letter-spacing: 0.2rem;
        margin-bottom: 15px;
    }
    .recruit .training-sec1 dl dd {
        font-size: 1.4rem;
        line-height: 1.8;
    }
    /*sec2*/
    .recruit .training-sec2 {
        background: #e9ebf6;
        padding: 30px 0;
    }
    .recruit .training-sec2-wrapper {
        width: var(--inner-width--sp);
        margin: 0 auto;
    }
    .recruit .training-title {
        margin-bottom: 25px;
    }
    .recruit .training-title-main {
        font-size: 2.0rem;
        margin-bottom: 20px;
        letter-spacing: 0.5rem;
    }
    .recruit .training-title-text {
        width: 100%;
    }
    .recruit .training-sec2--item {
        display: block;
        margin-bottom: 33px;
    }
    .recruit .training-sec2--item img {
        width: calc(100% - 18px);
    }
    .recruit .training-sec2--item-main {
        background: #fff;
        padding: 30px 20px;
        box-sizing: border-box;
        margin-top: -18px;
        margin-left: 18px;
        position: relative;
        z-index: 1;
    }
    .recruit .training-sec2--item-main-title {
        font-size: 1.5rem;
        font-family: var(--font-serif);
        letter-spacing: .1rem;
        margin-bottom: 25px;
        padding-left: 20px;
        position: relative;
        line-height: 1.2;
    }
    .recruit .training-sec2--item-main-title small {
        font-size: 1.2rem;
    }
    .recruit .training-sec2--item-main-title:before {
        content: "";
        background: url(../images/icon_title001.svg) no-repeat;
        background-size: cover;
        width: 13px;
        height: 16px;
        position: absolute;
        top: 0;
        left: 0;
    }
    .recruit .training-sec2--item-main-text {
        margin-bottom: 25px;
        line-height: 1.8;
    }
    /*sec3*/
    .recruit .training-sec3 {
        padding: 30px 0;
    }
    .recruit .training-sec3-wrapper {
        width: var(--inner-width--sp);
        margin: 0 auto;
    }
    .recruit .training-sec3-pholist {
        display: block;
        margin-bottom: 30px;
    }
    .recruit .training-sec3-pholist picture:first-child {
        display: block;
        margin-bottom: 20px;
    }
    .recruit .training-sec3-text {
        padding: 30px 20px;
    }
    .recruit .training-sec3-text dt {
        font-weight: bold;
        margin-bottom: 3px;
    }
    .recruit .training-sec3-text dd {
        display: block;
    }
    .recruit .training-sec3-text dd ul li:not(:last-child) {
        margin-bottom: 3px;
    }
    .recruit .training-sec3-text dd ul li {
        margin-bottom: 3px;
    }
    /*sec4*/
    .recruit .training-sec4 {
        padding: 30px 0;
    }
    .recruit .training-sec4-wrapper {
        width: var(--inner-width--sp);
        margin: 0 auto;
    }
    .recruit .training-sec4-text {
        padding: 30px 20px;
    }
    .recruit .training-sec4-text dt {
        font-weight: bold;
        margin-bottom: 3px;
    }
    .recruit .training-sec4-text dd {
        display: block;
    }
    .recruit .training-sec4-text dd ul li:not(:last-child) {
        margin-bottom: 3px;
    }
    .recruit .training-sec4-text dd ul li {
        margin-bottom: 3px;
    }
}
/*-------------
社員紹介
-------------*/
.page-header--recruit-people1 {
    background: url(../images/people1/people_main.jpg) no-repeat center / cover;
    margin-bottom: 0;
    /* aspect-ratio: 1773 / 821;
    height: auto; */
}
.page-header--recruit-people2 {
    background: url(../images/people2/people_main.jpg) no-repeat center / cover;
    margin-bottom: 0;
}
.page-header--recruit-people3 {
    background: url(../images/people3/people_main.jpg) no-repeat top / cover;
    margin-bottom: 0;
}
.page-header--recruit-people4 {
    background: url(../images/people4/people_main.jpg) no-repeat center / cover;
    margin-bottom: 0;
}
/*sec1*/
.recruit .people-sec1 {
    width: 1100px;
    margin: -30px auto 150px auto;
    position: relative;
    padding: 0 60px;
    box-sizing: border-box;
    position: relative;
}
.recruit .people-sec1-title {
    width: auto;
    min-width: 540px;
    max-width: 780px;
    display: table;
    padding: 60px;
    box-sizing: border-box;
    background: #dff0f4;
    margin-bottom: 60px;
}
.recruit .people-sec1-title-main {
    font-size: 2.6rem;
    font-weight: bold;
    margin-bottom: 40px;
}
.recruit .people-sec1-title-sub span {
    font-size: 2.3rem;
    margin-left: 20px;
}
.recruit .people-sec1-title-en {
    font-family: var(--font-serif);
    font-size: 5.4rem;
    font-weight: bold;
    line-height: calc(1em + 5px);
    letter-spacing: .2em;
    position: absolute;
    top: 80px;
    right: 0;
}
.recruit .people-sec1--items {
    width: 780px;
    margin: 0 auto;
}
.recruit .people-sec1--item:not(:last-of-type) {
    margin-bottom: 40px;
}
.recruit .people-sec1--item_title {
    color: #004da0;
    font-size: 2.0rem;
    font-weight: bold;
    margin-bottom: 20px;
}
@media screen and (max-width:767px) {
    .page-header--recruit-people1 {
        background: url(../images/people1/people_main@sp.jpg) no-repeat center / cover;
        aspect-ratio: 751 / 821;
        height: auto;
    }
    .page-header--recruit-people2 {
        background: url(../images/people2/people_main@sp.jpg) no-repeat center / cover;
        aspect-ratio: 751 / 821;
        height: auto;
    }
    .page-header--recruit-people3 {
        background: url(../images/people3/people_main@sp.jpg) no-repeat top / cover;
        aspect-ratio: 751 / 821;
        height: auto;
    }
    .page-header--recruit-people4 {
        background: url(../images/people4/people_main@sp.jpg) no-repeat center / cover;
        aspect-ratio: 751 / 821;
        height: auto;
    }
    /*sec1*/
    .recruit .people-sec1 {
        width: var(--inner-width--sp);
        padding: 0 0 30px;
        margin: -25px auto 0;
    }
    .recruit .people-sec1-title {
        width: 100%;
        min-width: inherit;
        max-width: inherit;
        background: #dff0f4;
        margin-top: 0;
        position: relative;
        z-index: 1;
        padding: 30px 20px;
        box-sizing: border-box;
        margin-bottom: 30px;
    }
    .recruit .people-sec1-title-main {
        font-size: 2.0rem;
        font-weight: bold;
        margin-bottom: 15px;
    }
    .recruit .people-sec1-title-sub span {
        font-size: 1.8rem;
        margin-left: 20px;
    }
    .recruit .people-sec1-title-en {
        font-family: var(--font-serif);
        font-size: 3.0rem;
        font-weight: bold;
        line-height: calc(1em + 5px);
        letter-spacing: .2em;
        position: absolute;
        top: -12px;
        right: 0;
    }
    .recruit .people-sec1--items {
        width: 100%;
    }
    .recruit .people-sec1--item:not(:last-of-type) {
        margin-bottom: 20px;
    }
    .recruit .people-sec1--item_title {
        color: #004da0;
        font-size: 1.4rem;
        font-weight: bold;
        margin-bottom: 10px;
    }
}
/*-------------
リクルート/採用情報
-------------*/
.page-header--recruit-information {
    background: url(../images/information/page-header_bg.jpg) no-repeat center / cover;
    margin-bottom: 0;
}
.recruit .information-sec1 {
    width: 1100px;
    padding: 0 0 100px;
    box-sizing: border-box;
    margin: 0 auto;
}
.recruit .information-sec1-title {
    width: 830px;
    background: #dff0f4;
    margin-top: -60px;
    position: relative;
    z-index: 1;
    padding: 80px;
    box-sizing: border-box;
    margin-bottom: 80px;
}
.recruit .information-sec1-title-main {
    color: #004da0;
    font-size: 4.0rem;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 0.2rem;
}
.information-sec1--items {
    width: 1000px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto 80px;
}
.information-sec1--item_title {
    color: #004da0;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.information-sec1--item ul {
    line-height: 1.8;
}
/*sec2*/
.recruit .information-sec2 {
    width: 1100px;
    padding: 0 0 100px;
    box-sizing: border-box;
    margin: 0 auto;
}
.information-tb {
    width: 870px;
    margin: 0 auto;
    border-top: solid 2px #9e9e9f;
}
.information-tb tr {
    border-bottom: solid 2px #9e9e9f;
}
.information-tb tr th {
    font-size: 1.7rem;
    font-weight: normal;
    background: #fafafa;
    padding: 20px;
    box-sizing: border-box;
}
.information-tb tr td {
    font-size: 1.7rem;
    padding: 20px;
    box-sizing: border-box;
    line-height: 1.8;
}
.information-tb tr td .flex-box {
    display: flex;
}
.information-tb tr td .flex-box li:not(:last-child) {
    margin-right: 15px;
}
.information-tb-sub {
    width: 870px;
    margin: 30px auto 0;
}
/*sec3*/
.recruit .information-sec3 {
    width: 1100px;
    padding: 0 0 100px;
    box-sizing: border-box;
    margin: 0 auto;
}
/*スライド*/
.information-sec1--pholist {
    width: 1000px;
    margin: 0 auto;
}
.information-sec1--pholist_title {
    color: #004da0;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.information-sec1--pholist .keen-slider--thumbnail {
    display: flex;
    overflow: inherit;
    flex-flow: row wrap;
}
.information-sec1--pholist .keen-slider--thumbnail .keen-slider__slide {
    flex: 0 1 91px;
    margin-bottom: 10px;
}
.information-sec1--pholist .keen-slider--thumbnail .keen-slider__slide:not(:nth-of-type(10n)) {
    margin-right: 10px;
}
#js-keen-slider--thumbnail.keen-slider {
    margin-bottom: 25px;
}
@media screen and (max-width:767px) {
    .page-header--recruit-information {
        background: url(../images/information/page-header_bg@sp.jpg) no-repeat center / cover;
    }
    .recruit .information-sec1 {
        width: var(--inner-width--sp);
        padding: 50px 0 50px;
        margin: 0 auto;
    }
    .recruit .information-sec1-title {
        width: 100%;
        background: #dff0f4;
        margin-top: 0;
        position: relative;
        z-index: 1;
        padding: 40px 20px;
        box-sizing: border-box;
        margin-bottom: 35px;
    }
    .recruit .information-sec1-title-main {
        font-size: 1.8rem;
        line-height: calc(1em + 15px);
        margin-bottom: 15px;
        letter-spacing: 0.2rem;
    }
    .information-sec1--items {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-flow: row wrap;
        margin-bottom: 5px;
    }
    .information-sec1--item {
        flex: 0 1 48%;
        margin-bottom: 35px;
    }
    .information-sec1--item_title {
        color: #004da0;
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 15px;
    }
    /*sec2*/
    .recruit .information-sec2 {
        width: var(--inner-width--sp);
        padding: 50px 0 50px;
        margin: 0 auto;
    }
    .information-tb {
        width: 100%;
        margin: 0 auto;
        border-top: solid 2px #9e9e9f;
    }
    .information-tb tr {
        border-bottom: solid 2px #9e9e9f;
    }
    .information-tb tr th {
        font-size: 1.3rem;
        padding: 10px;
        width: 26%;
    }
    .information-tb tr td {
        font-size: 1.3rem;
        padding: 10px;
        line-height: 1.8;
    }
    .information-tb tr td .flex-box {
        flex-flow: row wrap;
    }
    .information-tb tr td .flex-box li:not(:last-child) {
        margin-right: 10px;
    }
    .information-tb-sub {
        width: 100%;
        margin: 10px auto 0;
        padding: 0 8px;
        box-sizing: border-box;
    }
    /*sec3*/
    .recruit .information-sec3 {
        width: var(--inner-width--sp);
        padding: 50px 0 30px;
        margin: 0 auto;
    }
    .recruit .information-sec3 .information-tb tr th {
        width: 110px;
    }
    /*スライド*/
    .information-sec1--pholist {
        width: 100%;
        margin: 0 auto;
    }
    .information-sec1--pholist_title {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 15px;
    }
    .information-sec1--pholist .keen-slider--thumbnail {
        display: flex;
        overflow: inherit;
        flex-flow: row wrap;
    }
    .information-sec1--pholist .keen-slider--thumbnail .keen-slider__slide {
        flex: 0 1 18.8%;
        margin-bottom: 5px;
    }
    .information-sec1--pholist .keen-slider--thumbnail .keen-slider__slide:not(:nth-of-type(10n)) {
        margin-right: 0;
    }
    .information-sec1--pholist .keen-slider--thumbnail .keen-slider__slide:not(:nth-of-type(5n)) {
        margin-right: 1.5%;
    }
    #js-keen-slider--thumbnail.keen-slider {
        margin-bottom: 15px;
    }
}
/*-------------
privacy
-------------*/
.privacy {
    width: 820px;
    margin: 120px auto 0;
}
.privacy.cookie {
    margin-top: 40px;
}
.privacy.cookie a {
    text-decoration: underline;
}
.privacy-title {
    font-size: 1.9rem;
    font-weight: bold;
    margin-bottom: 30px;
}
.privacy-text {
    font-size: 1.5rem;
    margin-bottom: 30px;
}
.privacy-list {
    font-size: 1.5rem;
    margin-bottom: 30px;
}
.privacy-tyui {
    font-size: 1.5rem;
}
.privacy-tyui:not(:last-of-type) {
    margin-bottom: 30px;
}
@media screen and (max-width:767px) {
    .privacy {
        width: var(--inner-width--sp);
        margin: 50px auto 0;
    }
    .privacy.cookie {
        margin-top: 30px;
    }
    .privacy-title {
        font-size: 1.6rem;
        font-weight: bold;
        margin-bottom: 20px;
    }
    .privacy-text {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    .privacy-list {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    .privacy-tyui {
        font-size: 1.3rem;
    }
    .privacy-tyui:not(:last-of-type) {
        margin-bottom: 15px;
    }
}
/*-------------
リクルート/エントリー
-------------*/
.page-header--recruit-entry {
    background: url(../images/entry/page-header_bg.jpg) no-repeat center / cover;
    margin-bottom: 90px;
}
.contents.entry {
    padding-bottom: 150px;
}
.entry .contact-table input:not([type="radio"]) {
    background: #eaf5f8;
}
.entry .contact-table textarea {
    background: #eaf5f8;
}
.entry .contact-table select {
    background: #eaf5f8;
    width: 70px;
    height: 40px;
    padding: 5px;
    box-sizing: border-box;
    margin-right: 10px;
}
.entry .contact-table select[name="year"] {
    width: 140px;
}
.entry .contact-table select[name="month"],
.entry .contact-table select[name="day"] {
    margin-left: 10px;
}
.entry .contact-main__btn-list li a {
    background: #5dc1cf;
    border: solid 1px #5dc1cf;
}
.entry .contact-main__btn-list .contact-main__backbtn a {
    background: #fff;
    border: solid 1px #9e9e9f;
}
.contact-table tr td ul {
    display: flex;
}
.contact-table tr td ul li:not(:last-child) {
    margin-right: 40px;
}
.contact-table input[type="radio"] {
    width: 22px;
    height: 22px;
    margin-right: 10px;
}
@media screen and (max-width:767px) {
    .page-header--recruit-entry {
        background: url(../images/entry/page-header_bg@sp.jpg) no-repeat center / cover;
        margin-bottom: 30px;
    }
    .entry .contact-table select {
        width: 60px;
        margin-right: 5px;
    }
    .entry .contact-table select[name="year"] {
        width: 90px;
    }
    .entry .contact-table select[name="month"],
    .entry .contact-table select[name="day"] {
        margin-left: 5px;
    }
    .contact-table tr td ul {
        line-height: 2;
    }
    .contact-table tr td ul li:not(:last-child) {
        margin-right: 15px;
    }
    .contact-table input[type="radio"] {
        width: 15px;
        height: 15px;
        margin-right: 5px;
    }
}
