@charset "UTF-8";

/*=====================================================
*
*	style.css
*	Since 2020.3.12
*
*
*	1= font
*	2= style
*	3= common module
*	4= header module
*   5= footer module
*	6= mainVisual module
*	7= content module
*
*
========================================================*/

/*	1= font
-----------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700&display=swap&subset=japanese');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital@1&display=swap');

@font-face { font-family: 'savoye_let'; src: url('../font/savoye_let.eot');}
@font-face { font-family: 'savoye_let'; src: url('../font/savoye_let.otf') format("truetype");}
/*standard size = 16px*/

/* base font size */
*:first-child+html body {
	font-family: "游ゴシック", "Yu Gothic", "メイリオ", 'Meiryo', "ＭＳ Ｐゴシック", sans-serif;
	font-size: 87.5%;
} /* for ie7 */


html>/**/body {
	font-family: 'Noto Sans JP', "游ゴシック", "Yu Gothic", "メイリオ", 'Meiryo', "ＭＳ Ｐゴシック", sans-serif;
	font-size: 87.5%;
} /* for ie8 */


html:not(:target) body {
    font-family: 'Noto Sans JP', "游ゴシック Medium", 'Yu Gothic Medium', 'YuGothic Medium', "メイリオ", 'Meiryo', sans-serif;
    font-style:normal;
    font-weight: 400;
    font-size: 16px;
} /* for modern browser */

*:first-child+html body .serif { font-family: , serif; } /* for ie7 */
html>/**/body .serif { font-family: dnp-shuei-mincho-pr6n, sans-serif; font-weight: 500; font-style: normal; } /* for ie8 */
html:not(:target) body .serif { font-family: dnp-shuei-mincho-pr6n, sans-serif; font-weight: 500; font-style: normal; } /* for modern browser */

@media all and (-ms-high-contrast:none){
    html:not(:target) body .serif {
        font-family: 'ヒラギノ明朝 Pro W3','Hiragino Mincho Pro','ＭＳ Ｐ明朝','MS PMincho',serif;
        font-weight: bold;
        letter-spacing: 0.12em;
    }

}

*:first-child+html body .serif-en { font-family: , serif; } /* for ie7 */
html>/**/body .serif-en { font-family: 'Noto Serif', serif; font-style: italic;} /* for ie8 */
html:not(:target) body .serif-en { font-family: 'Noto Serif', serif; font-style: italic;} /* for modern browser */

.sanSerif-en{ font-family: roboto,sans-serif; font-weight: 400; font-style: normal;}
.numberFont{ font-family: 'savoye_let';}

/*  2= style
-----------------------------------------------------*/
body {
    color: #111111;
    background: #fff;
    overflow-x: hidden;
    position: relative;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    line-height: 1.6;
    letter-spacing: 0.05em;
}
li,p{ letter-spacing: 0.05em; }
a{
    color: #333333;
    font-weight: normal;
    transition: .3s;
}
a:hover{
    cursor: pointer;
}
.white{ color: #fff }
.red{ color: #e60012; }
.blue{ color: #1690CE; }
.green{ color: #A2CB35; }
.orange{ color: #E3B513; }
.blue-bg{ background-color: #1690CE; }
.l-green{ color: #A2CB35; }
.bold{ font-weight: bold; }
.center{ text-align: center; }
.beige-bg{ background-color: #F5F4F2; }
.under{ border-bottom: 1px solid #888; }
@media all and (-ms-high-contrast:none){
    .under{ padding-bottom: 0; }
}
#loadingWrap{
    width: 100%;
    height: 100vh;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
}
#loading {
    width: 3em;
    height: 3em;
    border-top: .4em solid rgba(1, 1, 1, 0.2);
    border-right: .4em solid rgba(1, 1, 1, 0.2);
    border-bottom: .4em solid rgba(1, 1, 1, 0.2);
    border-left: .4em solid rgba(22, 144, 206, 1);
    animation: loaderAnime 1s infinite linear;
    border-radius: 50%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 999;
}
@keyframes loaderAnime {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
        
.loadingNone {
    animation: loadingAnime 1s forwards;
}
        
@keyframes loadingAnime {
    0% {
        opacity: 1;
    }
    99% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        display: none;
        visibility: hidden;
    }
}

/*ボタン*/
.cntBtn{ background: #1690CE; color: #fff; padding: 14px 20px;}
#topBtn{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    background-color: #A2CB35;
    border-radius: 25px;
    position: fixed;
    right: 20px;
    bottom: 20px;
}
#topBtn:hover{
    bottom: 25px;
    cursor: pointer;
    transition: .2s;
}
.navBtn,.navBtn span {
  display: inline-block;
  transition: all .3s;
  box-sizing: border-box;
}
.navBtn {
  position: relative;
  width: 50px;
  height: 19px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
  top: -5px;
}
.navBtn p{
    font-size: 15px;
    position: absolute;
    bottom: -25px;
    letter-spacing: 0.1em;
    text-align: center;
    color: #333;
    font-style: normal;
}
.navBtn span {
  position: absolute;
  right: 0;
  width: 100%;
  height: 1.5px;
  background-color: #333;
}
.navBtn span:nth-of-type(1) {
  top: 0;
}
.navBtn span:nth-of-type(2) {
  top: 9px;
}
.navBtn span:nth-of-type(3) {
  bottom: 0;
}
.navBtn:hover span{
    width: 100%;
}
.navBtn:hover span:nth-of-type(2) {
    width: 80%;
}
.navBtn::after {
  position: absolute;
  top: 0;
  right: -8px;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  content: '';
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  transition: all .75s;
}
.navBtn.active{
    top: 0;
}
.navBtn.active p{
    opacity: 0;
}
.navBtn.active span:nth-of-type(1) {
  transform: translateY(8px) rotate(-45deg);
  width: 80%;
  top: 1px;
}
.navBtn.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: nav-btn .3s forwards;
}
@keyframes nav-btn {
  100% {
    height: 0;
  }
}
.navBtn.active span:nth-of-type(3) {
  transform: translateY(-7px) rotate(45deg);
  width: 80%;
  bottom: 1px;
}
.navBtn.active::after {
  animation: nav-btn-a .4s .25s forwards;
}
@keyframes nav-btn-a {
  0% {
    border-color: transparent;
    transform: rotate(0);
  }
  25% {
    border-color: transparent #333 transparent transparent;
  }
  50% {
    border-color: transparent #333 #333 transparent;
  }
  75% {
    border-color: transparent #333 #333 #333;
  }
  100% {
    border-color: #333;
    transform: rotate(-680deg);
  }
}

.arrowBtn a{
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 20;
    background-color: #fff;
}
.arrowBtn a span{
    display: block;
    background: url(../img/common/arrow_right.png) center / 70% no-repeat;
    position: relative;
    width: 100%;
    height: 100%;
}
.arrowBtn a::after{
    content: '';
    width: 0;
    height: 100%;
    left: 0;
    position: absolute;
    background: #1690CE;
    display: block;
    z-index: -1;
    transition: .2s;
    top: 0px;
}
.arrowBtn a:hover span{
    background-image: url(../img/common/arrow_right_w.png);
}
.arrowBtn a:hover::after{
    width: 100%;
}

.moreBtn{
    width: 280px;
    height:65px;
}
.moreBtn.large{
    width: 330px;
    height: 85px;
}
.moreBtn.large a div p{
    font-size: 18px;
}
.moreBtn a{
    display: block;
    height: 100%;
    background: #1690CE;
    padding: 4px;
    position: relative;
}
.moreBtn a:hover{
    padding: 0px;
}
.moreBtn a div{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    border: 1px solid rgba(255,255,255,.8);
}
.moreBtn a div p{
    font-size: 16px;
    letter-spacing: 2px;
}
.moreBtn a div img{   
    /*position: absolute;*/
    bottom: 10px;
    transition: .3s;
}
.moreBtn a:hover div img{
    transform: translateX(5px);
}
.moreBtn.bitween a div{
    flex-flow: row;
    padding: 0 20px;
    
}
.moreBtn.bitween a div p{
    left: 24px;
}
.linkBtn{
    width: 280px;
}
.linkBtn a{
    display: block;
    padding: 10px 30px;
    background: #fff;
    text-align: center;
    letter-spacing: 1px;
    border: 1px solid #1690CE;
    border-radius: 4px;
    position: relative;
}
.linkBtn a::after{
    content: '';
    background: url(../img/common/link_icon.svg)center / 100% no-repeat;
    position: absolute;
    right: 5px;
    top: 5px;
    width: 15px;
    height: 14px;
    display: block;
}
.linkBtn a:hover{
    opacity: .6;
}

.trigger .arrowBtn{
    position: absolute;
    right: -10px;
    bottom: -10px;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    background-color: #fff;
}
.trigger .arrowBtn span{
    display: block;
    background: url(../img/common/arrow_right.png) center / 70% no-repeat;
    position: relative;
    width: 100%;
    height: 100%;
}
.trigger .arrowBtn::after{
    content: '';
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background: #1690CE;
    display: block;
    z-index: -1;
    transition: .2s;
}
.trigger:hover .arrowBtn span{
    background-image: url(../img/common/arrow_right_w.png);
}
.trigger:hover .arrowBtn::after{
    width: 100%;
}

.arrowBtn.mini{
    width: 70px;
    height: 70px;
}

.entryBtn{
    width: 90%;
    max-width: 500px;
    height:180px;
    margin: 150px auto 60px;
    position: relative;
}
.entryBtn::before{
    content: '';
    width: 1px;
    height: 100px;
    position: absolute;
    left: 0;
    right: 0;
    top: -120px;
    margin: auto;
    background: #1690CE;
}
.entryBtn::after{
    content: '';
    background: #F5F4F2;
    position: absolute;
    width: 104%;
    height: 104%;
    z-index: -1;
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
    top: 0;
    bottom: 0;
    left: -2%;
    margin: auto;
}
.entryBtn a{
    display: block;
    height: 100%;
    background: #1690CE;
    padding: 10px;
    position: relative;
}
.entryBtn a:hover{
    padding: 0px;
}
.entryBtn a div{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    border: 1px solid rgba(255,255,255,.8);
}
.entryBtn a div p{
    font-size: 25px;
    letter-spacing: 2px;
}
.entryBtn a div span{
    font-size: 24px;
    letter-spacing: 0;
}
.entryBtn a div img{   
    margin-top: 10px;
    bottom: 25px;
    transition: .3s;
}
.entryBtn a:hover div img{
    transform: translateX(5px);
}
.btnBox{
    display: flex;
    justify-content: center;
    grid-gap: 5%;
    gap: 5%;
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 170px auto 50px;
}
.btnBox::before {
    content: '';
    width: 1px;
    height: 100px;
    position: absolute;
    left: 0;
    right: 0;
    top: -140px;
    margin: auto;
    background: #1690CE;
}
.btnBox .moreBtn{
    width: 100%;
}
@media (-ms-high-contrast: none) {
    .btnBox .moreBtn:first-child{
        margin-right: 5%;
    }
}
@media screen and (max-width:899px) and (-ms-high-contrast: none){
    .btnBox .moreBtn:first-child{
       margin-right: 0;
       margin-bottom: 5%;
   }
}

.moreBtn.backBtn a{
   background: #898989;
}
.moreBtn.backBtn a div{
    flex-flow: row-reverse;
}
.moreBtn.center a div p{
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
}
.moreBtn.backBtn a div img{
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.snsBox{
    display: flex;
    align-items: center;
}
.snsBox div a{
    width: 100px;
    height: 100px;
    background: #1690CE;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    border-radius: 50%;
    border: 0px solid #fff;
    text-align: center;
}
.snsBox div a:hover{
    border-width: 10px;
}
.snsBox div.facebook a img{
    width: 45px;
}
.snsBox div.twitter a img{
    width: 30px;
}

a.border{
    position: relative;
} 
a.border::after{
    content: '';
    height: 1px;
    width: 0;
    bottom: 0;
    position: absolute;
    background: #1690CE;
    transition: .3s;
    left: 0;
    max-width: 100%;
}
a.border:hover::after{
    width: 100%;
}

.slideBtn{
    width: 20px;
    height: 20px;
    position: relative;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: .2s;
}
.slideBtn span{
    position: absolute;
    background: #1690CE;
    margin: auto;
}
.slideBtn span:first-child{
    height: 1.5px;
    width: 100%;
    top: 0;
    bottom: 0;
}
.slideBtn span:last-child{
    height: 100%;
    width: 1.5px;
    left: 0;
    right: 0;
}
.slideBtn.open{
    height: 1px!important;    
}
/*TAB*/
@media screen and (max-width:899px){
    .snsBox div a{
        width: 60px;
        height: 60px;
    }
    .snsBox .sns.facebook img{
        max-width: 30px;
        height: 100%;
    }
    .snsBox .sns.twitter img{
        max-width: 22px;
        height: 100%;
    }
    .entryBtn{
        height: 130px;
    }
    .entryBtn a{
        padding: 5px;
    }
    .entryBtn a div p{
        font-size: 22px;
    }
    .entryBtn a div span{
        font-size: 18px;
    }
    .entryBtn a div img{
        bottom: 14px;
        height: 10px;
    }
    .arrowBtn a,.trigger .arrowBtn{
        width: 60px;
        height: 60px;
    }
    .btnBox{
        flex-flow: column;
        grid-gap: 20px;        
        gap: 20px;
        max-width: 350px;
    }
    .navBtn:hover span:nth-of-type(2){
        width: 100%;
    }
}
/*SP*/
@media screen and (max-width:480px){
    .snsBox div a{
        width: 50px;
        height: 50px;
    }
    .snsBox div a span{
        line-height: 1;
    }
    .snsBox .sns.facebook img{
        max-width: 28px;
        height: 100%;
    }
    .snsBox .sns.twitter img{
        max-width: 18px;
        height: 100%;
    }
    .navBtn{
        width: 41px;
        height: 13px;
    }
    .navBtn p{
        font-size: 12px;
        bottom: -20px;
    }
    .navBtn span{
        height: 1px;
    }
    .navBtn span:nth-of-type(2){
        top: 6px;
    }
    .navBtn::after{
        width: 40px;
        height: 40px;
        border: 1px solid transparent;
    }
    .navBtn.active span:nth-of-type(1){
        transform: translateY(6px) rotate(-45deg);
        top: 1px;
    }
    .navBtn.active span:nth-of-type(3) {
        transform: translateY(-6px) rotate(45deg);
        bottom: -1px;
    }
    
    #topBtn{   
        right: 10px;
    }
    .entryBtn{
        height: 100px;
        max-width: 350px;
        margin: 100px auto 30px;
    }
    .entryBtn a div p{
        font-size: 18px;
        margin-top: -12px;
    }
    .entryBtn a div span{
        font-size: 15px;
        line-height: 1;
    }
    .entryBtn a div img{
        bottom: 14px;
        height: 10px;
    }
    .entryBtn::before{
        height: 60px;
        top: -80px;
    }
    .arrowBtn a,.trigger .arrowBtn{
        width: 55px;
        height: 55px;
        right: -7px;
        bottom: -7px;
    }
    .cntBtn{
        font-size: 14px;
    }
    .moreBtn a div p{
        font-size: 14px;
        line-height: 2;
    }
    .moreBtn a div img{
        height: 10px;
    }
    .linkBtn a{
        font-size: 14px;
    }
    .btnBox{
        grid-gap: 10px;
        gap: 10px;
        margin: 100px auto 0;
    }
    .btnBox .moreBtn.center a div p img{
        height: 10px;
    }
    .moreBtn.large{
        height: 60px;
    }
    .moreBtn.center a div p{
        font-size: 16px;
    }
    .btnBox::before {
        height: 60px;
        top: -80px;
    }
}




/*ページタイトル*/
#main .pageTitle,#mainCntBox .cntTitle{ text-align: center; letter-spacing: 0.1em; margin-bottom: 40px;}
#main .pageTitle h1{ font-size: 40px;}
#main .pageTitle span{ font-size: 30px; line-height: 1; letter-spacing: 0.02em;}
#mainCntBox .cntTitle h2{ font-size: 36px; letter-spacing: 0.08em;}
#mainCntBox .cntTitle span{ font-size: 25px; line-height: 1; letter-spacing: 0.02em;}
#mainCntBox .cntTitle.left{ text-align: left; display:flex; align-items: baseline;}
#mainCntBox .cntTitle.left *{ margin-right: 20px; }
/*	3= common module
-------------------------------------------------------------- */
#main{
    margin-top: 100px;
    padding: 60px 0;
    overflow: hidden;
}
.home #main{
    margin-top: 0;
    padding-top: 0;
}
.cnt.style01{
    position: relative;
}
.cnt.style01::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #A2CB35;
    left: 10px;
    top: -10px;
    z-index: 10;
    pointer-events: none;
    mix-blend-mode: multiply;
}
.msg_copy{
    text-align: center;
    font-size: 30px;
    letter-spacing: 0.08em;
    margin-top: 100px;
    line-height: 2;
}

/*パンくずリスト*/
.breadcrumbs{
    padding-bottom:20px;
    padding-left: 20px;
    position: absolute;
    line-height: 1.2;
}
@media (-ms-high-contrast: none) {
    .breadcrumbs{
        top:100px;
    }
}
@media screen and (max-width:480px) and (-ms-high-contrast: none){
    .breadcrumbs{
        top:60px;
    }
}
.breadcrumbs li{
    position: relative;
    padding: 0 10px;
    line-height: 1;
    height: 20px;
    display: inline-block;
}
.breadcrumbs li a{
    display: inline-block;
    font-size: 14px;
}
.breadcrumbs li a{
    color: #1690CE;
    position: relative;
}
.breadcrumbs li a::after{
    content: '';
    position: absolute;
    height: 1px;
    width: 0;
    background: #1690CE;
    left: 0;
    bottom: 0;
    transition: .2s;
}
.breadcrumbs li a:hover::after{
    width: 100%;
}
.breadcrumbs li > span{ 
    color: #111;
    font-size: 14px;
}
.breadcrumbs li:after{
    content: "";
    display: inline-block;
    border-top: 1px #111 solid;
    border-right: 1px #111 solid;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -4px;
    width: 6px;
    height: 6px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.breadcrumbs li:last-child::after{
    display: none;
}

.mainCnt{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0 0;
    position: relative;
}
.mainCnt.max{
    width: 100%;
    max-width: 100%;
}
.mainCnt.max .inner{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.imgCover {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;'; /*IE対策*/
}
.deco-l-b,.deco-l-t,.deco-r-b,.deco-r-t{
    position: absolute!important;
    width: auto!important;
    z-index: -1;
}
.deco-l-b{
    bottom: -150px;
    left: -80px;
}
.deco-l-t{
    top: -80px;
    left: -130px;
}
.deco-r-b{
    bottom: -80px;
    right: -150px;
}
.deco-r-t{
    top: 0;
    right: -100px;
}
/*PC*/
@media screen and (min-width:900px){
    .pc{
        display: block;
    }
    .tab{
        display: none!important;
    }
    .sp{
        display: none!important;
    }
    .tab_sp{
        display: none!important;
    }
}
@media screen and (max-width:1100px){
    .msg_copy{
        font-size: 26px;
    }
}


/*TAB*/
@media screen and (max-width:899px){
    .pc{
        display: none!important;
    }
    .tab{
        display: block;
    }
    .sp{
        display: none!important;
    }
    .tab_sp{
        display: block;
    }
    /*#main{
        padding-top: 40px;
    }*/
    #main .pageTitle h1{
        font-size: 34px;
    }
    #mainCntBox .cntTitle h2{
        font-size: 32px;
    }
    #main .pageTitle span{ 
        font-size: 23px;
    }
    #mainCntBox .cntTitle span{
        font-size: 20px;
    }
    .mainCnt:first-child{
        margin-top: 0;
    }
    #mainCntBox .cntTitle.left *{
        margin-right: 15px;
    }
    .msg_copy{
        margin-top: 50px;
    }
}

/*SP*/
@media screen and (max-width:480px){
    .tab{
        display: none!important;
    }
    .sp{
        display: block!important;
    }
    .mainCnt{
        padding-top: 60px;
    }

    #main{
        padding-top: 40px;
        margin-top: 60px;
    }
    #main .pageTitle h1{
        font-size: 28px;
    }
    #mainCntBox .cntTitle h2{
        font-size: 27px;
        letter-spacing: 0.05em;
        line-height: 1.3;
    }
    #main .pageTitle, #mainCntBox .cntTitle{
        margin-bottom: 30px;
    }
    #main .pageTitle span{
        font-size: 18px;
    }
    #mainCntBox .cntTitle span{
        font-size: 16px;
    }
    #mainCntBox .cntTitle.left *{
        margin-right: 7px;
    }
    .deco-r-t{
        top: -80px;
    }
    .deco-l-b {
        bottom: -150px;
        left: -110px;
    }
    .deco-l-t {
        top: -120px;
        left: -160px;
    }
    .deco-r-b{
        bottom: -110px;
        right: -120px;
    }
    .deco-l-b img, .deco-l-t img, .deco-r-b img, .deco-r-t img{
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
    }
    .cnt.style01::after{
        left: 7px;
        top: -7px;
    }
    .msg_copy{
        font-size: 20px;
    }
    .msg_copy{
        margin-top: 0;
    }
    .breadcrumbs{
        padding-left: 5px;
    }
    .breadcrumbs li{
        padding: 0 5px;
    }
    .breadcrumbs li a,.breadcrumbs li span{
        font-size: 12px;
    }
}


/*	4= header module
-----------------------------------------------------*/
header{
    height: 100px;
    background: rgba(255,255,255,.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 2.5%;
    position: fixed;
    min-width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}
header .topBtn a{
    display: flex;
    align-items: center;   
}
header .topBtn img{
    border-right: 1px solid #D3D3D3;
    margin-right: 10px;
    padding-right: 10px;
}
header .centerCnt{ 
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end;
}
header .rightCnt{
    width: 115px;
    text-align: center;
}  
header nav ul{
    display: flex;
    margin-right: 10px;
}
header nav li{
    margin: 0 10px;
}
header nav li a{
    color: #1690CE;
    font-size: 15px;
}

#g-navBox{
    position: fixed;
    background: #fff;
    width: 100%;
    height: calc(100% - 100px);
    border-top: 1px solid #D3D3D3;
    flex-flow: column;
    justify-content: space-between;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    transition: .5s;
    z-index: 101;
    opacity: 0;
    pointer-events: none;
    top: 100px;
 }
@media (-ms-high-contrast: none) {
    #g-navBox{
        z-index: -1;
    }
    #g-navBox.active{
        z-index: 101;
    }
}
#g-navBox.active{
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
}
#g-navBox .mainBox{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
    height: calc(100% - 80px);
    grid-gap: 5%;
    gap: 5%;
}
#g-navBox .subBox{
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 5%;
    gap: 5%;
    border-top: 1px solid #D3D3D3;
}
@media (-ms-high-contrast: none) {
    #g-navBox .subBox li{
        margin: 0 2.5%;
    }
}
#g-navBox .subBox li a:hover{
    opacity: .6;
}
#g-navBox .mainBox > div ,#g-navBox .mainBox > ul{
    display: flex;
    flex-flow: column;
    justify-content: space-around;
    height: 100%;
    max-height: 580px;
}
#g-navBox .mainBox .left{
    justify-content: center;
    display: flex;
    max-height: 580px;
    justify-content: end;
    grid-gap: 5%;
    gap: 5%;
}
@media (-ms-high-contrast: none) {
    #g-navBox .mainBox .left{
        margin-right: 5%;
    }
}
@media screen and (max-width:899px) and (-ms-high-contrast: none){
    #g-navBox .mainBox .left{
        margin-right: 0;
        margin-bottom: 3%;
    }
}
#g-navBox .mainBox .left p{
    letter-spacing: 1px;
    line-height: 2;
    margin-top: 20px;
}
#g-navBox .mainBox .copy p span{
    font-size: 38px;
    padding: 10px 15px;
    color: #fff;
    display: inline-block;
    background: #1690CE;
    line-height: 1;
    margin-bottom: 10px;
}

#g-navBox .mainNav li a{
    font-size: 22px;
}

#g-navBox .mainNav .interviewNav{
    padding-left: 60px;
}
#g-navBox .mainNav .interviewNav li{
    margin-bottom: 15px;
}  
#g-navBox .mainNav .interviewNav p{
    display: inline;
    margin-right: 10px;
    font-size: 17px;
}
#g-navBox .mainNav .interviewNav p.en{
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1;
}
#g-navBox .mainNav .interviewNav span{
    font-size: 12px;
    display: block;
/*    line-height: 0.5;*/
    line-height: 1.2;
}
#g-navBox .mainNav .interviewNav a{
    display: block;
    position: relative;
}
#g-navBox .mainNav .interviewNav a::before{
    content: '';
    width: 12px;
    height: 1px; 
    background: #000;
    left: -20px;
    position: absolute;
    top: 6px;
}
#g-navBox .mainNav .interviewNav a:hover,#g-navBox .mainNav .interviewNav a:hover::before{
    opacity: .6;
}
#g-navBox .mainNav li a.border::after{
    bottom: -2px;
}

@media screen and (max-width:1200px){
    #g-navBox .mainBox{
        justify-content: space-between;
        grid-gap: 0;
        gap: 0;
        padding: 50px 3%;
    }

}
@media screen and (max-width:1100px){
    header .rightCnt{
        width: 85px;
    }
    header nav li{
        margin: 0 5px;
    }
    #g-navBox .mainBox .left{
        width: 70%;
    }
    #g-navBox .mainBox .left p{
        font-size: 14px;
    }
    #g-navBox .mainBox .copy p{
        font-size: 33px;
        letter-spacing: 0;
    }
}


/*TAB*/
@media screen and (max-width:899px){
    .centerCnt nav{
        display: none;
    }
    #g-navBox .mainBox{
        padding: 0 5%;
        flex-flow: column;
        justify-content: start;
        grid-gap: 3%;
        gap: 3%;
        max-width: 550px;
        margin: 0 auto;
        min-height: calc(100vh - 80px);
        overflow-y: scroll;
    }
    #g-navBox .mainBox .other{
        display: none;
    }
    #g-navBox .mainBox .left{
        width: 100%;
        height: auto;
        margin-top: 5%;
    }
    #g-navBox .mainBox .copy p{
        margin-bottom: 10px;
        line-height: 2;
    }
    #g-navBox .mainBox .left p{
        margin-top: 0;
    }
    #g-navBox .mainBox .copy p{
        font-size: 28px;
    }
    #g-navBox .mainBox .left .text{
        margin-bottom: 0;
    }
    #g-navBox .mainBox > ul{
        width: 100%;
        height: auto;
        justify-content: start;
        grid-gap: 10px;
        gap: 10px;
    }
    #g-navBox .mainNav li a{
        font-size: 18px;
    }
    #g-navBox .mainNav > li.slideMenu{
        border-bottom: 1px solid #1690CE;
        position: relative;
    }
    #g-navBox .mainNav > li.slideMenu .slideBtn{
        position: absolute;
        right: 0;
        width: 15px;
        height: 15px;
    }
    #g-navBox .mainNav .interviewNav{
        display: none;
        margin-top: 5px;
    }
    #g-navBox .subBox{
        display: none;
    }
    #g-navBox .mainBox > div.subNav{
        justify-content: center;
        height: auto;
        width: 100%;
    }
    #g-navBox .mainBox > div.subNav .cntBtn{
        text-align: center;
        margin-bottom: 15px;
        padding: 10px 20px;
    }
    #g-navBox .mainBox > div.subNav ul{
        display: flex;
        flex-flow: wrap;
    }
    #g-navBox .mainBox > div.subNav li{
        width: 50%;
        height: 35px;
    }
    #g-navBox .mainBox > div.subNav .snsBox{
        justify-content: center;
        margin: 10px 0;
    }
    #g-navBox .mainBox > div.subNav small{
        text-align: center;
    }
    #g-navBox .mainBox .copy p span{
        font-size: 28px;
        padding:  10px;
    }
}

/*SP*/
@media screen and (max-width:480px){
    header{
        height: 60px;
    }
    header .topBtn img{
        width: 120px;
        margin-right: 7px;
        padding-right: 7px;
    }
    header .topBtn span{
        font-size: 14px;
    }
    header .rightCnt{
        width: 65px;
    }
    #g-navBox{
        height: calc(100% - 60px);
        top: 60px;
    }
    #g-navBox .mainBox{
        min-height: calc(100vh - 60px);
    }
    #g-navBox .mainBox .left{
        margin-top: 12%;
    }
    #g-navBox .mainBox .left p{
        letter-spacing: 0.05em;
        line-height: 1.8;
        font-size: 12px;
    }
    #g-navBox .mainBox .copy p{
        font-size: 22px;
        letter-spacing: 0;
    }
    #g-navBox .mainBox > div.subNav li a{
        font-size: 12px;
    }
    #g-navBox .mainNav li a{
        font-size: 18px;
    }
    #g-navBox .mainBox > ul{
        grid-gap: 8px;
        gap: 8px;
    }
    #g-navBox .mainBox > div.subNav small{
        font-size: 11px;
    }
    #g-navBox .mainBox > div.subNav .cntBtn{
        font-size: 14px;
    }
    #g-navBox .mainNav .interviewNav{
        padding-left: 30px;
    }
    #g-navBox .mainNav .interviewNav li{
        margin-bottom: 13px;
    }
    #g-navBox .mainNav .interviewNav span{
        font-size: 11px;
        line-height: 1.3;
    }
    #g-navBox .mainNav .interviewNav p{
        font-size: 16px;
    }
    #g-navBox .mainNav .interviewNav p.en{
        font-size: 13px;
    }
    #g-navBox .mainBox .copy p span{
        font-size: 22px;
        margin-bottom: 5px;
    }
}

/*  5= footer module
-----------------------------------------------------*/
footer{
    border-top: 2px solid #1690CE;
    padding: 20px 0;
}
footer .mainCnt{
    width: 90%;
    max-width: 1000px;
    margin: 0px auto 60px;
}
footer .mainCnt nav{
    display: flex;
    justify-content: center;
}
footer .mainCnt nav ul{
    width: 100%;
    min-width: 140px;
}
footer .mainCnt nav ul:first-child{
    min-width: 250px;
}
footer .mainCnt nav ul:nth-child(2){
    min-width: 210px;
}
footer .mainCnt nav ul:nth-child(3){
    min-width: 250px;
}
footer .mainCnt nav h3{
    margin-bottom: 15px;
}
footer .mainCnt nav h3 a{
    color: #1690CE;
    font-size: 20px;
    font-weight: bold;
}
footer .mainCnt nav h3 a:hover{
    opacity: .8;
}
footer .mainCnt nav li{
    margin-bottom: 10px;
    font-size: 15px;
}
footer .mainCnt nav li a{
    position: relative;
    padding-left: 12px;
}
footer .mainCnt nav li a:hover{
    opacity: .6;
}
footer .mainCnt nav li a::before{
    content: '';
    height: 1px;
    width: 6px;
    background: #111;
    position: absolute;
    left: 0;
    top: 11px;
}
footer .footerLogo{
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .footerLogo img{
    border-right: 1px solid #D3D3D3;
    margin-right: 13px;
    padding-right: 13px;
}
footer .footerLogo span{
    font-size: 20px;
}
small{
    font-size: 13px;
    letter-spacing: 0.03em;
}
footer .snsBox{
    position: absolute;
    right: 80px;
    bottom: 20px;
}

/*PC*/
@media screen and (max-width:1000px){
    footer .mainCnt{
        width: 95%;
    }
    footer .mainCnt nav h3 a{
        font-size: 18px;
    }
    footer .mainCnt nav li{
        font-size: 14px;
    }
}

/*TAB*/
@media screen and (max-width:899px){
    footer .mainCnt{
        display: none;
    }
    footer .snsBox{
        position: static;
    }
    footer .snsBox{
        justify-content: center;
        margin-bottom: 15px;
    }
    
}

/*SP*/
@media screen and (max-width:480px){
    footer .footerLogo{
        transform: scale(.8);
    }
    footer .footerLogo img{
        width: 140px;
        margin-right: 8px;
        padding-right: 8px;
    }
    footer .footerLogo span{
        font-size: 16px;
    }
    footer small{
        font-size: 10px;
    }

}

.bunnerLink{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;
}
.bunnerLink .cntImg{
    max-width: 380px;
}
.bunnerLink .cntImg a:hover{
    opacity: .5;
}
@media screen and (max-width:480px){
    .bunnerLink{
        height: 170px;
    }
    .bunnerLink .cntImg{
        max-width: 300px;
    }
}


 
/*	6= mainVisual module
-----------------------------------------------------*/

#mainVisual {
    margin: 60px auto;
    width: 90%;
    max-width: 1000px;
    height: 370px;
    position: relative;
}
.home #mainVisual{
    width: 100%;
    max-width: calc(100% - 115px);
    margin: 0;
    height: auto;
}
.home #mainVisual .imgBox{
    margin-top: 100px;
    display: -moz-grid;
    display: -ms-grid;
    display: grid;
    grid-gap: 5px;
    gap: 5px;
    -moz-grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    -ms-grid-columns: 1fr 5px 1fr 5px 1fr 5px 1fr 5px 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    -moz-grid-template-rows: 1fr 1fr 1fr;
    -ms-grid-rows: 1fr 5px 1fr 5px 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    max-height: calc(100vh - 100px);
}
.home #mainVisual .imgBox > div{
    overflow: hidden;
}
.home #mainVisual .imgBox > div:first-of-type{
    -moz-grid-row: 1/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1/3;
    -moz-grid-column: 1/2;
    -ms-grid-column: 1;
    grid-column: 1/2;
}
.home #mainVisual .imgBox > div:nth-of-type(2){
    -moz-grid-row: 1/2;
    -ms-grid-row: 1;
    grid-row: 1/2;
    -moz-grid-column: 2/4;
    -ms-grid-column: 3;
    -ms-grid-column-span: 3;
    grid-column: 2/4;
}
.home #mainVisual .imgBox > div:nth-of-type(3){
    -moz-grid-row: 1/2;
    -ms-grid-row: 1;
    grid-row: 1/2;
    -moz-grid-column: 4/5;
    -ms-grid-column: 7;
    grid-column: 4/5;
}
.home #mainVisual .imgBox > div:nth-of-type(4){
    -moz-grid-row: 1/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1/3;
    -moz-grid-column: 5/6;
    -ms-grid-column: 9;
    grid-column: 5/6;
}
.home #mainVisual .imgBox > div:nth-of-type(5){
    -moz-grid-row: 2/3;
    -ms-grid-row: 3;
    grid-row: 2/3;
    -moz-grid-column: 2/3;
    -ms-grid-column: 3;
    grid-column: 2/3;
}
.home #mainVisual .imgBox > div:nth-of-type(6){
    -moz-grid-row: 2/3;
    -ms-grid-row: 3;
    grid-row: 2/3;
    -moz-grid-column: 3/5;
    -ms-grid-column: 5;
    -ms-grid-column-span: 3;
    grid-column: 3/5;
}
.home #mainVisual .imgBox > div:nth-of-type(7){
    -moz-grid-row: 3/4;
    -ms-grid-row: 5;
    grid-row: 3/4;
    -moz-grid-column: 1/4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
    grid-column: 1/4;
}
.home #mainVisual .imgBox .mainCopy{
    display: -ms-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.home #mainVisual .imgBox > div:last-of-type{
    -moz-grid-row: 3/4;
    -ms-grid-row: 5;
    grid-row: 3/4;
    -moz-grid-column: 4/6;
    -ms-grid-column: 7;
    -ms-grid-column-span: 3;
    grid-column: 4/6;
}

/*画像調整*/
.home #mainVisual .imgBox > div:first-of-type img{
    object-position: left;
    font-family: 'object-fit: cover; object-position: right;'; /*IE対策*/
}
.home #mainVisual .imgBox > div:nth-of-type(4) img{
    object-position: 68% 50%;
    font-family: 'object-fit: cover; object-position: 68% 50%;'; /*IE対策*/
}

.home #mainVisual .mainCopy {
    background: #fcfcfc;
}
.home #mainVisual .mainCopy > div{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.home #mainVisual .mainCopy p{
    font-size: 38px;
    line-height: 2;
    letter-spacing: 1px;
}

@media all and (-ms-high-contrast:none){
    .home #mainVisual .mainCopy p{
        letter-spacing: 0.22em!important;
    }
}

.home #mainVisual .mainCopy p span{
    border-color: #1690CE;
    padding-bottom: 10px;
}

#mainVisual .scrollBar{
    height: 207px;
    position: absolute;
    right: -115px;
    width: 115px;
    text-align: center;
    bottom: 0;
}
#mainVisual .scrollBar span{
    -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
#mainVisual .scrollBar span::after{
    content: '';
    height: 142px;
    width: 1px;
    top: 65px;
    left: 0;
    right: 0;
    margin: auto;
    background: #000000;
    position: absolute;
    -webkit-animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
    animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
}

@media screen and (min-width:1500px){
    .home #mainVisual{
        max-width: 1385px;
    }
}
@media screen and (min-width:1550px){
    .home #mainVisual{
        margin: 0 auto;
    }
}
@media screen and (max-width:1200px){
    #mainVisual .scrollBar{
        right: -45px;
        width: 50px;
    }
}
@media screen and (max-width:1100px){
    .home #mainVisual{
        max-width: calc(100% - 85px);
    }
    .home #mainVisual .scrollBar{
        width: 85px;
        right: -85px;
    }
    .home #mainVisual .mainCopy p{
        font-size: 32px;
    }
    .home #mainVisual .imgBox{
        height: auto;
    }
    #mainVisual .imgBox{
        height: 370px;
    }

}

/*TAB*/
@media screen and (max-width:899px){
    .home #mainVisual .imgBox{
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 25% 1fr;
    }
    .home #mainVisual .imgBox > div:first-of-type{
        grid-row: 1/3;
        grid-column: 1/2;
    }
    .home #mainVisual .imgBox > div:nth-of-type(4){
        grid-row: 1/2;
        grid-column: 2/4;
    }
    .home #mainVisual .imgBox > div:nth-of-type(6){
        grid-row: 2/3;
        grid-column: 2/4;
    }
    .home #mainVisual .imgBox > div:nth-of-type(7){
        grid-row: 3/4;
        grid-column: 1/4;
    }
    .home #mainVisual .imgBox > div:nth-of-type(2){
        grid-row: 4/5;
        grid-column: 1/3;
    }
    .home #mainVisual .imgBox > div:nth-of-type(5){
        grid-row: 4/5;
        grid-column: 3/4;
    }
    .home #mainVisual .imgBox > div:nth-of-type(3){
        grid-row: 5/6;
        grid-column: 1/2;
    }
    .home #mainVisual .imgBox > div:nth-of-type(8){
        grid-row: 5/6;
        grid-column: 2/4;
    }
    .home #mainVisual .imgBox .mainCopy{
        padding: 20px 0;
    }
    .home #mainVisual .imgBox > div:nth-of-type(4) img{
        object-position: 50% 25%;
        font-family: 'object-fit: cover; object-position: 50% 25%;'; /*IE対策*/
    }
    .home #mainVisual .imgBox > div:nth-of-type(5) img{
        object-position: 50% 25%;
        font-family: 'object-fit: cover; object-position: 50% 25%;'; /*IE対策*/
    }
    #mainVisual{
        margin: 40px auto;
        height: auto;
    }
}
@media screen and (max-width:550px){
   .home #mainVisual .mainCopy p{
        font-size: 25px;
   }
   .home #mainVisual{
        max-width: 100%;
   }    
   #mainVisual .scrollBar{
    display: none;
   }
}
/*SP*/
@media screen and (max-width:480px){
    .home #mainVisual .imgBox{
        margin-top: 60px;
        height: calc(100vh - 60px);
        max-height: 640px;
    }
    .home #mainVisual .mainCopy p{
        font-size: 26px;
    }
    #mainVisual{
        margin: 30px auto 0;
    }
    #mainVisual .imgBox{
        height: 180px;
    }
}
@media screen and (max-width:400px){
    .home #mainVisual .mainCopy p{
        font-size: 23px;
    }
}


/*	7= content module
-----------------------------------------------------*/
/*1.TOPページ*/
.home #about .cntTitle{
    margin-bottom: 20px;   
}
.home #about .cnt{
/*    padding: 50px 50px 40px;*/
    box-sizing:  border-box;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.home #about .cnt .aboutCopy{
    margin-bottom: 40px;
    width: 100%;
}
.home #about .cnt > a{
    display: block;
    padding: 50px 50px 40px;
}
.home #about .cnt p{
    font-size: 22px;
    letter-spacing: 0.1em;
    width: 70%;
    line-height: 2.2;
}
.home #about .cnt .aboutCopy span{
    font-size: 36px;
    padding: 15px 50px 0;
    display: inline-block;
    position: relative;
    z-index: 2;
    letter-spacing: 0.03em;
    margin-left: -50px;
    line-height: 1;
}
.home #about .cnt .aboutCopy span::before{
    content: '';
    width: 100%;
    height: 68px;
    background-color: #1690CE;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.home #about .cnt .cntInfo{
    padding: 20px 0 0;
    border-top: 1px solid #D3D3D3;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}
.home #about .cnt .cntInfo p{
    font-size: 18px;
}
.home #about .cnt .cntText{
    display: flex;
    gap: 30px;
    align-items: center;
}
.home #about .cnt .cntText img{
    width: 40%;
    max-width: 385px;
}
.home #about .cnt .cntText p{
   flex:1;
}

.home #voice .cnt {
    padding: 0 50px;
    box-sizing:  border-box;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 150px;
    position: relative;
}
.home #voice .title{
    display: inline-block;
    background: #fff;
    font-size: 28px;
    position: absolute;
    left: 0;
    top: -20px;
    letter-spacing: 2px;
    padding: 5px 25px;
    z-index: 10;
}
.home #voice .title span{
    font-size: 135px;
    line-height: 0;
    letter-spacing: 0;
    margin-right: 10px;
    transform: translateY(3px); 
    display: inline-block;
}
.home #voice .cntImg{
    border-top: 5px solid #1690CE;
    position: relative;
    transition: .2s;
    background: #000;
}
.home #voice .cntText{
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid #1690CE;
    border-bottom: 1px solid #1690CE;
}

.home #informatioin{
    padding: 50px 0;
    position: relative;
}
.home #informatioin .cntTitle{
    position: absolute;
    top: -35px;
}
.home #informatioin li a{
    background: #fff;
    padding: 18px 50px;
    margin-bottom: 3px;
    color: #1690CE;
    display: block;
    position: relative;
}
.home #informatioin li a::after{
    content: '';
    width: 10px;
    height: 18px;
    background: url(../img/common/arrow_right2.png)center / 100% no-repeat;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: .2s;
}
.home #informatioin li a:hover{
    color: #1690CE88;
}
.home #informatioin li a:hover::after{
    right: 25px;
}
.home #recruit .cntTitle{
    position: absolute;
    z-index: 1;
    padding: 25px 8px 10px;
    background: #A2CB35;
    width: 50px;
    height: 190px;
    left: 50px;
    top: -20px;
    height: 166px;
}
.home #recruit .cntTitle h2{
    font-size: 24px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    letter-spacing: 8px;
    color: #fff;
    line-height: 1.4;
}

.home #recruit .cnt{
    padding: 45px;
    display: flex;
    align-items: flex-end;
    background: url(../img/top/recruit_bg.jpg) center / cover no-repeat;
}
.home #recruit .cnt .recruitCopy{
    font-size: 38px;
    width: 340px;
}
.home #recruit .cnt .recruitCopy span{
    background: rgba(255,255,255,.8);
    letter-spacing: 6px;
    display: inline-block;
    margin-top: 5px;
    padding: 3px 15px;
}
.home #recruit .cnt .cntText{
    display: flex;
    background: #fff;
    padding: 30px 3%;
    position: relative;
    width: calc(100% - 360px);
    z-index: 11;
}
.home #recruit .cnt .cntText h3{
    margin-bottom: 10px;
    font-size: 18px;
}
.home #recruit .cnt .cntText .cntBtn{
    margin-top: 15px;
    display: inline-block;
    border-radius: 50px;
    transition: .3s;
}
.home #recruit .cnt .cntText .cntBtn:hover{
    opacity: .6;
}
.home #recruit .cnt .cntText .text{
    width: 50%;
}
.home #recruit .cnt .cntText .cntImg{
    width: 53%;
    height: 100%;
    right: -5%;
    top: -8%;
    position: absolute;
}
.home #cp_wlb .cnt{
    display: flex;
    justify-content: space-around;
    width:90%;
    max-width: 1000px;
    margin: 0 auto;
    gap: 5%; 
    position: relative;
}
.home #cp_wlb .cnt > div{
    width: 100%;
    position: relative;
}
@media (-ms-high-contrast: none) {
    .home #cp_wlb .cnt > div:first-child{
        margin-right: 5%;
    }
}
@media screen and (max-width:899px) and (-ms-high-contrast: none){
    .home #cp_wlb .cnt > div:first-child{
        margin-right: 0;
        margin-bottom: 30px;
    }
}


.home #cp_wlb .cnt > div a{
    display: block;
    background: #F5F4F2;
    padding: 30px 5%;
    height: 100%;
}
.home #cp_wlb .cntText{
    border-top: 1px solid #1690CE;
    border-bottom: 1px solid #1690CE;
    padding: 20px 0;
    height: 100%;
}
.home #cp_wlb .cntText h3{
    font-size: 20px;
    margin-bottom: 15px;
}
.home #cp_wlb .cntText h3 span{
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid #1690CE;
    letter-spacing: 0;
    font-size: 18px;
}
@media screen and (max-width:1100px){
    .home #about .cnt .aboutCopy span{
        font-size: 30px;
    }
    .home #about .cnt p{
        font-size: 20px;
        width: 90%;
    }
    .home #recruit{
        max-width: 800px;
    }
    .home #recruit .cnt{
        flex-flow: column;
        align-items: start;
        padding: 20px 0 30px;
    }
    .home #recruit .cntTitle{
        left: auto;
        right: 2%;
    }
    .home #recruit .cnt .cntText{
        flex-flow: column-reverse;
        background: none;
        padding: 0;
        margin-top: 20px;
        width: 100%;
    }
    .home #recruit .cnt .cntText .cntImg{
        position: static;
        width: 60%;
        height: 200px;
    }
    .home #recruit .cnt .cntText .text{
        padding: 30px 20px 20px;
        background: #fff;
        margin-top: -15px;
        margin-left: auto;
        width: 60%;
    }
}
@media screen and (max-width:899px){
    .home #informatioin .cntTitle{
        top: -30px;
    }
    .home #about .cnt > a{
        padding: 30px 5%;
    }
    .home #about .cnt .aboutCopy span{
        font-size: 23px;
        margin-left: -5.5%;
        padding: 13px 33px 0;
    }
    .home #about .cnt .aboutCopy span::before{
        height: 52px;
    }
    .home #about .cnt p{
        font-size: 18px;
        line-height: 1.6;
    }
    .home #about .cnt .cntInfo p{
        font-size: 16px;
    }
    .home #about .cnt .cntInfo{
        padding-top: 15px;
        margin-top: 15px;
    }
    .home #about .cnt .cntText{
        flex-flow: column;
    }
    .home #about .cnt .cntText img{
        width: 100%;
        max-width: 500px;
    }
    .home #voice .cnt{
        padding: 0;
        margin-bottom: 80px;
    }
    .home #voice .title{
        position: static;
        padding-left: 0;
    }
    .home #voice .title{
        font-size: 25px;
    }
    .home #voice .title span{
        font-size: 100px;
    }
    .home #informatioin li a{
        padding: 15px 5%;
    }
    .home #informatioin li a::after{
        right: 10px;
    }
    .home #cp_wlb .cnt{
        flex-flow: column;
        grid-gap: 30px;
        gap: 30px;
        width: 100%;
    }
    .home #cp_wlb .cntText h3{
        font-size: 18px;
    }
    .home #cp_wlb .cntText h3 span{
        font-size: 16px;
    }
    .home #cp_wlb .cntText p{
        font-size: 14px;
    }
    
}
@media screen and (max-width:660px){
    .home #about .cnt .aboutCopy span{
        padding: 10px 20px 0 5%;
        letter-spacing: 0;
    }
    .home #about .cnt > a{
        padding: 20px 2% 20px 5%;
    }
    .home #about .cnt p{
        width: 100%;
        font-size: 16px;
        line-height: 1.8;
    }
    .home #about .cnt .cntInfo p{
        font-size: 14px;
    }
    .home #about .cnt .aboutCopy span::before{
        height: 44px;
    }

}
@media screen and (max-width:480px){

    .home #informatioin .cntTitle{
        top: -40px;
        flex-flow: column;
        grid-gap: 5px;
        gap: 5px;
    }
    .home #about .cnt .aboutCopy span{
        font-size: 18px;
        padding-right: 5%;
        padding-top: 13px;
        letter-spacing: 0.03em;
    }
    .home #about .cnt p{
        font-size: 15px;
        line-height: 2;
    }
    .home #about .cnt .cntInfo p{
        font-size: 13px;
        letter-spacing: 0;
        line-height: 1.6;
        width: 300px;
    }
    .home #about .cnt .cntText img{
        max-width: 320px;
    }
    .home #about .cnt .aboutCopy{
        margin-bottom: 25px;
    }
    .home #about .cnt .cntText{
        gap: 20px;
    }
    .home #voice{
        margin-bottom: 100px;
    }
    .home #voice .cnt{
        margin-bottom: 60px;
    }
    .home #voice .title{
        font-size: 22px;
    }
    .home #voice .title span{
        font-size: 75px;
    }
    .home #voice .cntText{
        font-size: 14px;
        padding: 10px 0;
        margin-top: 15px;
    }
    .home #voice .cntImg{
        border-top: 3px solid #1690CE;
    }
    .home #informatioin li a{
        font-size: 14px;
        padding: 15px 5% 15px 3%;
    }
    .home #informatioin li a::after{
        width: 8px;
        height: 15px;
    }
    .home #recruit .cntTitle{
        padding: 20px 8px 10px;
    }
    .home #recruit .cntTitle h2{
        font-size: 20px;
    }
    .home #recruit .cnt .recruitCopy{
        font-size: 31px;
    }
    .home #recruit .cnt .cntText .cntImg{
        width: 90%;
        height: 160px;
    }
    .home #recruit .cnt .cntText .text{
        width: 90%;
        padding-right: 0;
    }
    .home #recruit .cnt .cntText .text p{
        font-size: 14px;
        line-height: 1.8;
    }
    .home #cp_wlb .cnt > div a{
        padding: 25px 5%;
    }
    .home #cp_wlb .cntText{
        padding: 15px 0;
    }
    .home #cp_wlb .cntText h3{
        font-size: 16px;
        margin-bottom: 10px;
    }
    .home #cp_wlb .cntText h3 span{
        margin-left: 10px;
        padding-left: 10px;
        font-size: 14px;
    }
}  





/*2.看護系技官を知る*/
.about #field {
    padding-top: 0;
}
.about #field .cntTitle h2 span{
    border-color: #1690CE;
    font-size: 35px;
    line-height: 2;
}
.about #field .cnt{
    width: 90%;
    max-width: 1000px;
    padding: 30px 4% 50px;
    margin: 60px auto;
    
}
.about #field .cnt .aboutCopy{
    font-size: 23px;
    line-height: 2.5;
    margin-bottom: 50px;
    width: 75%;
}
.about #field .cnt .aboutCopy p{
    border-color: #ddd;
    color: #333;
}
.about #field .cnt .aboutText{
    display: flex;
    align-items: start;
    grid-gap: 5%;
    gap: 5%;
}
@media (-ms-high-contrast: none) {
    .about #field .cnt .aboutText .text{
        margin-right: 5%;
        width: 100%;
    }
}
.about #field .cnt .aboutText .linkBox{
    margin-top: 45px;
}
.about #field .cnt .aboutText h3{
    font-size: 28px;
    margin-bottom: 20px;
    border-color: #1690CE;
    letter-spacing: 2px;
}
.about #field .cnt .aboutText .text p{
    line-height: 2;
}
.about #field .moreBtn{
    margin-bottom: 10px;
}

.about .cntBlock .title{
    font-size: 28px;
    background: #fff;
    padding: 25px 20px 0;
    position: absolute;
    left: 0;
    top: 0;
}

.about .cntBlock .title span {
    font-size: 135px;
    line-height: 0;
    letter-spacing: 0;
    margin-right: 10px;
    transform: translateY(3px);
    display: inline-block;
}
.about .cntBlock{
    margin: 60px auto;
    padding: 50px 0 0;
    display: flex;
    flex-flow: column;
}
.about .cntBlock .cntBox{
    display: flex;
}
.about .cntBlock .cntBox .cntText{
    padding: 30px 4%;
    max-width: 550px;
    line-height: 2;
    margin-top: 80px;
}
.about .cntBlock .cntBox .cntText .moreBtn{
    margin-top: 20px;
}
.about .cntBlock .cntBox .cntImg{
    margin-right: -3%;
    max-height: 400px;
    min-width: 580px;
    z-index: -1;
    width: 60%;
}
.about .cntBlock .cntBox .cntImg img{
    margin-top: -50px;
    margin-left: -5%;
}
.about .cntBlock.reverse .title{
    right: 0;
    left: auto;
}
.about .cntBlock.reverse .cntBox{
    flex-flow: row-reverse;
}
.about .cntBlock.reverse .cntBox .cntImg{
    margin-right: 0;
    margin-left: -3%;
}
.about .cntBlock.reverse .cntBox .cntImg img{
    margin-left: 5%;
}
.about #cp_faq .cnt{
    display: flex;
    justify-content: space-around;
    width:90%;
    max-width: 1000px;
    margin: 0 auto;
    grid-gap: 5%;
    gap: 5%;
    position: relative;
}
@media (-ms-high-contrast: none) {
    .about #cp_faq .cnt > div:first-child{
       margin-right: 5%;
   }
}
@media screen and (max-width:899px) and (-ms-high-contrast: none){
    .about #cp_faq .cnt > div:first-child{
       margin-right: 0;
       margin-bottom: 30px;
   }
}

.about #cp_faq .cnt > div{
    width: 100%;
    position: relative;
}
.about #cp_faq .cnt > div a{
    display: block;
    background: #F5F4F2;
    padding: 30px 5%;
    height: 100%;
}
.about #cp_faq .cntText{
    border-top: 1px solid #1690CE;
    border-bottom: 1px solid #1690CE;
    padding: 20px 0;
    height: 100%;
}
.about #cp_faq .cntText h3{
    font-size: 20px;
    margin-bottom: 15px;
}
.about #cp_faq .cntText h3 span{
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid #1690CE;
    letter-spacing: 0;
    font-size: 18px;
}
@media screen and (max-width:1200px){
    .about #field .cnt{
        padding: 30px 3% 50px;
    }
    .about #field .cnt .aboutCopy{
        font-size: 22px;
    }
}
@media screen and (max-width:1100px){
    .about #field .cnt .aboutCopy{
        width: 100%;
    }
    .about .cntBlock{
        margin: 0 auto;
    }
    .about .cntBlock .cntBox .cntImg{
        max-height: 340px;
        min-width: 500px;
    }
}
@media screen and (max-width:899px){
    .about #field .cnt{
        padding: 20px 5% 40px;
    }
    .about #field .cntTitle h2 span{
        font-size: 26px;
    }
    .about #field .cnt .aboutCopy{
        margin-bottom: 30px;
        font-size: 20px;
    }
    .about #field .cnt .aboutCopy p{
        display: inline;
        padding-bottom: 5px;
    }   
    .about #field .cnt .aboutText{
        flex-flow: column;
        align-items: center;
    }
    .about #field .cnt .aboutText .linkBox{
        display: flex;
        flex-flow: column;
        align-items: center;
        margin-top: 30px;
    }
    .about #field .linkBtn a{
        display: block;
    }
    .about #field .cnt .aboutText h3{
        font-size: 25px;
    }
    .about .cntBlock .cntBox, .about .cntBlock.reverse .cntBox{
        flex-flow: column-reverse;
    }
    .about .cntBlock{
        max-width: 700px;
    }
    .about .cntBlock .cntBox .cntImg{
        margin-right: 0;
        margin-left: 0;
        width: 90%;
        min-width: 0;
    }
    .about .cntBlock.reverse .cntBox .cntImg{
        margin-left: auto;
    }
    .about .cntBlock .cntBox .cntImg img,.about .cntBlock.reverse .cntBox .cntImg img{
        margin-right: 0;
        margin-left: 0;
        margin-top: -20px;
    }
    .about .cntBlock .cntBox .cntText{
        margin-left: auto;
        margin-top: -10px;
        width: 90%;
    }
    .about .cntBlock.reverse .cntBox .cntText{
        margin-right: auto;
        margin-left: 0;
    }
    .about #cp_faq .cnt{
        flex-flow: column;
        grid-gap: 30px;
        gap: 30px;
        width: 100%;
    }
    .about #cp_faq .cntText h3{
        font-size: 18px;
    }
    .about #cp_faq .cntText h3 span{
        font-size: 16px;
    }
    .about #cp_faq .cntText p{
        font-size: 14px;
    }
    .about .cntBlock .title span{
        font-size: 100px;
    }
    .about .cntBlock .title{
        position: static;
        font-size: 25px;
    }
    .about .cntBlock.reverse .title{
        text-align: right;
    }
}
@media screen and (max-width:480px){
    .about #field{
        padding-top: 30px;
    }
    .about .cntBlock{
        padding: 25px 0;
    }
    .about #field .cnt{
        width: 100%;
        padding-left: 7%;
        margin-bottom: 20px;
        margin-top: 30px;
    }
    .about #field .cntTitle h2 span{
        font-size: 20px;
    }
    .about #field .cnt .aboutCopy{
        font-size: 15px;
    }
    .about #field .cnt .aboutText h3{
        font-size: 20px;
    }
    .about #field .cnt .aboutText .text p{
        font-size: 14px;
    }
    .about #cp_faq .cnt > div a{
        padding: 25px 5%;
    }
    .about #cp_faq .cntText{
        padding: 15px 0;
    }
    .about #cp_faq .cntText h3{
        font-size: 16px;
        margin-bottom: 10px;
    }
    .about #cp_faq .cntText h3 span{
        margin-left: 10px;
        padding-left: 10px;
        font-size: 14px;
    }
    .about .cntBlock .title span{
        font-size: 75px;
    }
    .about .cntBlock .title{
        font-size: 22px;
    }
    .about .cntBlock .cntBox .cntText{
        font-size: 14px;
        padding: 20px 3% 30px 5%;
        width: 95%;
    }   
    .about .cntBlock .title{
        padding: 25px 10px 0;
    }
    .about .cntBlock .cntBox .cntImg{
        width: 95%;
    }

    .about .cntBlock .cntBox .cntImg img, .about .cntBlock.reverse .cntBox .cntImg img{
        margin-top: -10px;
    }
}


/*3.看護系技官のフィールド*/
.field #fieldList{
    padding-top: 0;
}
.field #fieldList .cnt{
    margin-bottom: 30px;
}
.field #fieldList .f-level1{
    border-bottom: 1px solid #1690CE;
    font-size: 26px;
    position: relative;
    cursor: pointer;
}
.field #fieldList .f-level1 span{
    font-size: 18px;
}
.field #fieldList .f-level1 .slideBtn{
    position: absolute;
    right: 20px;
}
.field #fieldList .innerBox{
    display: none;
}
.field #fieldList .innerBox > div{
    padding: 8px 0 0;
    display: flex;
    grid-gap: 5px;
    gap: 5px;
    flex-wrap: wrap;
}
.field #fieldList .innerBox ul{
    width: 100%;
    display: flex;
    flex-flow: column;
    grid-gap: 8px;
    gap: 8px;
    width: calc((100% - 35px) / 7);
}
.field #fieldList .cnt.row-6 .innerBox > div{
    gap: 20px 5px;
}
.field #fieldList .cnt.row-6 .innerBox ul{
    width: calc((100% - 35px) / 6);
}
@media (-ms-high-contrast: none) {
    .field #fieldList .innerBox ul{
        margin-right: 4.9px;
    }
    .field #fieldList .innerBox ul:nth-child(8){
        margin-right: 0;
    }
    .field #fieldList .innerBox ul li{
        margin-bottom: 8px;
    }
}
@media screen and (max-width:1100px) and (-ms-high-contrast: none){
    .field #fieldList .innerBox ul:nth-child(7){
        margin-right: 0;
    }
    .field #fieldList .innerBox ul:nth-child(8){
        margin-right: 4.9px;
    }
}
@media screen and (max-width:899px) and (-ms-high-contrast: none){
    .field #fieldList .innerBox ul:nth-child(4){
        margin-right: 0;
    }
    .field #fieldList .innerBox ul:nth-child(7){
        margin-right: 4.9px;
    }
}

.field #fieldList .cnt:last-child .innerBox ul{
    width: calc((100% - 56px) / 8 * 4);

}
.field #fieldList .innerBox ul li{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    background-color: #E5E5E5; 
    text-align: center;
    font-size: 12px;
    line-height: 1.3;
    border-radius: 50px;
    letter-spacing: 0;
    padding: 3px 0;
}
.field #fieldList .innerBox ul li:first-child{
    border-radius: 0;
}
.field #fieldList .cnt.sub .innerBox ul li:first-child{
    border-radius: 50px;
}
.field #fieldList .innerBox ul li.a-dept{
    background-color: #1690CE;
    color: #fff;
}
.field #fieldList .innerBox ul li a{
    color: #fff;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;   
    justify-content: center;
}
.field #fieldList .innerBox ul li.c-dept a{
    color: #111;
}
.field #fieldList .innerBox ul li.fieldBtn{
    box-shadow: 0 3px #00679B;
    transition: .2s;
}
.field #fieldList .innerBox ul li.fieldBtn.c-dept{
    box-shadow: 0 3px #759db2;
    border: 1px solid #d9eaf3;
}

.field #fieldList .innerBox ul li.fieldBtn:hover{
    box-shadow: none;
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
}
.field #fieldList .innerBox ul li.c-dept{
    background-color: #EDF8FF;
}

.field .fieldCntBox .fieldCnt{
    border: 2px solid #1690CE;
    border-radius: 10px;
    background-color: #FAFAFA;
    padding: 15px 0;
    text-align: left;
    position: relative;
}
.field .fieldCntBox .fieldCnt h3{
    font-size: 30px;
    padding: 0 3%;
    margin-bottom: 5px;
}
.field .fieldCntBox .fieldCnt h3 span{
    font-size: .7em;
    margin-left: -5px;
}
.field .fieldCntBox .fieldCnt h4{
    background: #1690CE;
    color: #fff;
    padding: 8px 3%;
    font-size: 22px;
    font-weight: normal;
}

.field .fieldCntBox .fieldCnt .cntText{
    padding: 20px 3%;
    max-width: 100%;
}
.field .fieldCntBox .fieldCnt .cntText > div:first-child{
    margin-bottom: 20px;
}
.field .fieldCntBox .fieldCnt h5{
    color: #1690CE;
    border-bottom: 1px solid #1690CE;
    font-size: 16px;
    margin-bottom: 5px;
    padding-bottom: 2px;
    font-weight: 500;
}
.field .fieldCntBox .fieldCnt .cntText p{
    font-size: 15px;
    letter-spacing: 0.02em;
    text-align: justify;
}
.field .deptBox{
    margin-bottom: 30px;
    display: flex;
    grid-gap: 5px;
    gap: 5px;
    justify-content: end;
}
.field .deptBox li{
    padding: 10px 20px;
    display: inline-block;
    text-align: center;
}
.field .deptBox li.a-dept{
    background-color: #1690CE;
    color: #fff;
}
.field .deptBox li.c-dept{
    background-color: #EDF8FF;
}
.field .syozokubusyo{
    text-align: center;
} 
.field .syozokubusyo p{
    font-size: 25px;
    letter-spacing: 1px;
}
.field .syozokubusyo .linkBtn{
    margin: 20px auto;
}
.field .comment{
    margin-bottom: 60px;
}
.field .comment .commentList{
    display: flex;
    grid-gap: 5%;
    gap: 5%;
    padding: 50px 5%;
    background: #F5F4F2;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    justify-content: center;
}
.field .comment .commentList ul{
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}
@media (-ms-high-contrast: none) {
    .field .comment .commentList ul:first-child{
        margin-right: 5%;
    }
    .field .fieldCntBox .fieldCnt h4{
        font-weight: 600;
    }
    .field .comment .commentList li .level1{
        font-weight:600;
    }
}
@media screen and (max-width:899px) and (-ms-high-contrast: none){
    .field .comment .commentList ul:first-child{
        margin-right: 0;
    }
}
.field .comment .commentList li{
    margin-bottom: 30px;
}
.field .comment .commentList li .level1{
    font-size: 25px;
    margin-bottom: 10px;
    line-height: 1.3;
}
.field .comment .commentList li a{
    border-bottom: 1px solid #1690CE;
    width: 100%;
    display: block;
    margin-bottom: 10px;
    position: relative;
    padding-right: 15px;
    color: #1690CE;
}
.field .comment .commentList li dd{
    margin-bottom: 5px;
    padding-left: 10px;
}
.field .comment .commentList li a::after{
    content: '';
    position: absolute;
    background: url(../img/common/arrow_down.png)center / 100% no-repeat;
    width: 12px;
    height: 7px;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 2px;
    transition: .2s;
    transform: rotate(-90deg);
}
.field .comment .commentList li a:hover::after{
    right: 0;
}
.field .comment .commentList li a:hover{
    opacity: .6;
}
.field .comment .msg_copy{
    line-height: 1.6;
    margin-bottom: 10px;
}
.field .fieldCntBox .fieldCnt .imgBox{
    display: flex;
    padding: 20px 3%;
    grid-gap: 3%;
    gap: 3%;
}
@media (-ms-high-contrast: none) {
    .field .fieldCntBox .fieldCnt .imgBox .cntText{
        margin-right: 3%;
    }
}
@media screen and (max-width:899px) and (-ms-high-contrast: none){
    .field .fieldCntBox .fieldCnt .imgBox .cntText{
        margin-right: 0;
        margin-bottom: 20px;
    }
}
.field .fieldCntBox .fieldCnt .imgBox .cntImg{
    width: 100%;
    max-width: 200px;
}
.field .fieldCntBox .fieldCnt .imgBox .cntImg img{
    height: auto;
}
.field .fieldCntBox .fieldCnt .imgBox .cntText{
    padding: 0;
}
@media screen and (max-width:1100px){
    .field #fieldList .innerBox ul{
        width: calc((100% - 30px) / 7);
    }
}
@media screen and (max-width:899px){
    .field #fieldList .innerBox ul{
        width: calc((100% - 20px) / 5);
    }
    .field #fieldList .f-level1{
        font-size: 20px;
    }
    .field #fieldList .innerBox ul li{
        font-size: 12px;
        letter-spacing: -0.01em;
    }
    .field .comment .commentList{
        flex-flow: column;
        padding: 30px 3%;
    }
    .field .comment .commentList li .level1{
        font-size: 20px;
    }
    .field .comment .commentList li dd{
        font-size: 14px;
    }
    .field .syozokubusyo p{
        font-size: 20px;
    }
    .field #fieldList .f-level1 .slideBtn{
        width: 15px;
        height: 15px;
        right: 5px;
    }
    .field .fieldCntBox .fieldCnt .imgBox{
        flex-flow: column;
        grid-gap: 20px;
        gap: 20px;
        align-items: center;
    }
}
@media screen and (max-width:600px){
    .field .deptBox li{
        font-size: 13px;
        padding: 8px 15px;
    }
    .field #fieldList{
        padding-top: 30px;
    }
    .field #fieldList .innerBox > div{
        flex-flow: column;
    }
    .field #fieldList .cnt.row-6 .innerBox > div{
        gap: 5px;
    }
    .field #fieldList .innerBox ul{
        display: grid;
        grid-template: 1fr 1fr 1fr / 0.6fr 1fr;
        width: 100%;
    }
    .field #fieldList .cnt.row-6 .innerBox ul{
        width: 100%;
    }
    .field #fieldList .innerBox ul li:first-child{
        grid-row: 1/6;
        grid-column: 1/2;
    }
    .field #fieldList .innerBox ul li:not(:first-child){
        grid-column: 2/3;
    }
    .field #fieldList .innerBox ul li{
        min-height: 35px;
        font-size: 11px;
    }
    .field .fieldCntBox .fieldCnt{
        max-height: calc(100vh - 30px);
        overflow-y: scroll;
        padding: 10px 0 5px;
    }
    .field .fieldCntBox .fieldCnt .cntText{
        padding: 10px 3%;
    }
    .field .fieldCntBox .fieldCnt h3{
        font-size: 23px;
    }
    .field .fieldCntBox .fieldCnt h4{
        padding: 5px 3%;
        font-size: 17px;
    }
    .field .fieldCntBox .fieldCnt .cntText p{
        font-size: 13px;
    }
    .field .fieldCntBox .fieldCnt h5{
        font-size: 15px;
    }
    .field #fieldList .cnt:last-child .innerBox ul{
        width: auto;
    }
    .field #fieldList .f-level1 .slideBtn span{
        margin-left: auto;
    }
    .field #fieldList .f-level1 span{
        font-size: 15px;
        letter-spacing: 0;
        margin-left: -5px;
    }
    .field .comment .commentList li .level1{
        font-size: 18px;
    }
    .field .comment .commentList li dd{
        font-size: 13px;
        letter-spacing: 0;
    }
    .field .comment .commentList li a::after{
        width: 10px;
        height: 6px;
    }
    .field .comment{
        margin-bottom: 0;
    }
}


/*4.他職種職員から見た看護系技官*/
.other .cntBlock{
    margin: 0 auto;
    padding: 50px 0;
    display: flex;
}
.other .cntBlock .title{
    font-size: 20px;
    letter-spacing: 1px;
    background: #fff;
    width: 100%;
    padding: 20px 5%;
}
.other .cntBlock .title h3{ 
    font-size: 25px;
}
.other .cntBlock .title p{
font-size: 16px;
}

.other .cntBlock .title h3 span{
    font-size: 20px;
}
.other .cntBlock .title .copy {
    border-bottom: 1px solid #EFEDED;
    padding-bottom: 10px;
    font-size: 30px;
    margin-bottom: 10px;
}
.other .cntBlock .cntBox{
    display: flex;
    flex-flow: column;
    grid-gap: 30px;
    gap: 30px;
    width: 80%;
}
@media (-ms-high-contrast: none) {
    .other .cntBlock .title{
        margin-bottom: 30px;
    }
}
@media screen and (max-width:899px) and (-ms-high-contrast: none){
    .other .cntBlock .title{
        margin-bottom: 0;
    }
}
.other .cntBlock .cntImg{
    margin-top: 50px;
    max-height: 500px;
    margin-left: -10%;
    z-index: -1;
    width: 70%;
}
.other .cntBlock  .cntText{
    padding: 30px 5% 30px 7%;
    line-height: 2;
    margin-right: 5%;
}
.other .cntBlock.reverse{
    flex-flow: row-reverse;
}
.other .cntBlock.reverse .cntImg{
    margin-left: 0;
    margin-right: -10%;
}
@media screen and (max-width:1100px){
    .other .cntBlock .cntText{
        margin-right: 0;
        width: 115%;
    }
    .other .cntBlock.reverse .cntText{
        margin-left: -15%;
    }
    .other .cntBlock .title .copy{
        font-size: 28px;
    }
}
@media screen and (max-width:899px){
    .other .cntBlock {
        max-width: 700px;
    }
    .other .cntBlock:first-child{
        padding-top: 0;
    }
    .other .cntBlock,.other .cntBlock.reverse{
        flex-flow: column-reverse;
    }
    .other .cntBlock .cntBox{
        width: 100%;
        grid-gap: 0;
        gap: 0;
        margin-top: -50px;
    }
    .other .cntBlock .cntImg{
        margin-left: 0;
        height: 350px;
        margin-top: 0;
        width: 100%;
    }
    .other .cntBlock .cntImg img{
        object-position: 50% 25%;
        font-family: 'object-fit: cover; object-position: 50% 25%;'; /*IE対策*/
    }
    .other .cntBlock.reverse .cntImg{
        margin-right: 0;
    }
    .other .cntBlock .cntText{
        width: 100%;
        margin-top: -20px;
    }
    .other .cntBlock.reverse .cntText{
        margin-left: 0;
    }
    .other .cntBlock .title{
        z-index: 11;
        width: 90%;   
    }
    .other .cntBlock.reverse .title{
        margin-left: auto;
    }
    .other .cntBlock .title .copy{
        font-size: 24px;
    }
    .other .deco-r-t{
        top: -180px;
    }
    .other .deco-l-t{
        top: -100px;
        left: -110px;
    }
}
@media screen and (max-width:480px){
    .other .cntBlock .cntBox{
        margin-top: -100px;
    }
    .other .cntBlock .title{
        padding: 15px 5%;
    }
    .other .cntBlock .title p{
        font-size: 13px;
    }
    .other .cntBlock .title h3{
        font-size: 20px;
    }
    .other .cntBlock .title h3 span{
        font-size: 18px;
    }
    .other .cntBlock .cntText{
        font-size: 14px;
        line-height: 1.8;
    }
    .other .cntBlock .title{
        margin-left: -4%;
    }
    .other .cntBlock.reverse .title{
        margin-right: -4%;
        margin-left: auto;
        width: 98%;
    }
    .other .cntBlock .title .copy{
        font-size: 20px;
    }

}

/*5.リーダーメッセージ*/
.leader_message .cntBlock{
    margin: 0 auto;
    display: flex;
    margin-bottom: 100px;
    align-items: center;
    padding-top: 20px;
    flex-flow: row-reverse;
}
.leader_message .mainCnt{
    padding: 0;
}
.leader_message .cntBlock .title{
    font-size: 20px;
    letter-spacing: 2px;
    background: #fff;
    width: auto;
    padding: 30px 5% 15px;
    position: relative;
    width: 110%;
}
.leader_message .cntBlock .cntText{
    z-index: 20;
}
.leader_message .cntBlock .title .title-en{
    background-color: #1690CE;
    display: inline-block;
    text-align: right;
    padding: 5px 25px 5px 30px;
    letter-spacing: 0.05em;
    position: absolute;
    top: -20px;
    left: -30px;
}
.leader_message .cntBlock .cntBox{
    display: flex;
    flex-flow: column;
    grid-gap: 20px;
    gap: 20px;
    width: 74%;
    /*align-items: flex-end;*/
}
@media (-ms-high-contrast: none) {
    .leader_message .cntBlock .title{
        margin-bottom: 20px;
    }
}
@media screen and (max-width:899px) and (-ms-high-contrast: none){
    .leader_message .cntBlock .title{
        margin-bottom: 0;
    }
}
.leader_message .cntBlock .cntText h3{ 
    font-size: 25px;
}
.leader_message .cntBlock .cntText p{
    font-size: 16px;
}
.leader_message .cntBlock .cntText h3 span{
    font-size: 20px;
}
.leader_message .cntBlock .title .copy {
    font-size: 32px;
    margin-bottom: 10px;
}
.leader_message .cntBlock .title .copy span{
    border-bottom: 1px solid #EFEDED;
    padding-bottom: 10px;
    line-height: 2.3;
}
.leader_message .cntBlock .cntImg{
    max-height: 550px;
    margin-right: -15%;
    z-index: -1;
    overflow: hidden;
    width: 100%;
}
.leader_message .cntBlock .cntText{
    padding: 20px 2% 25px 5%;
    line-height: 2;
    margin-left: 10%;
    max-width: 360px;
}
.leader_message .massageBox h4{
    border-bottom: 1px solid #1690CE;
    border-left: 7px solid #1690CE;
    font-size: 27px;
    padding-bottom: 3px;
    margin-bottom: 20px;
    padding-left: 20px;
}
.leader_message .massageBox p{
    letter-spacing: 0.02em;
}
.leader_message .massageBox .cnt{
    margin: 80px 0;
}
.leader_message .massageBox .cnt .text{
    display: flex;
    grid-gap: 4%;
    gap: 4%;
    line-height: 2;
}
@media (-ms-high-contrast: none) {
    .leader_message .massageBox .cnt .text p{
        margin-right: 4%;
    }
    .leader_message .massageBox .cnt .text.reverse p{
        margin-right: 0;
    }
    .leader_message .massageBox .cnt .text.reverse img{
        margin-right: 4%;
    }
    .leader_message .cntBlock .cntText h3{ 
        letter-spacing: 0.05em;
    }
}
@media screen and (max-width:899px) and (-ms-high-contrast: none){
    .leader_message .massageBox .cnt .text *{
        width: 100%;
    }
    .leader_message .massageBox .cnt .text p{
        margin-right: 0;
        margin-bottom: 30px;
    }
    .leader_message .massageBox .cnt .text.reverse img{
        margin-bottom: 30px;
    }
}
.leader_message .massageBox .cnt .text.reverse{
    flex-flow: row-reverse;
} 
.leader_message .massageBox .cnt .text img{
    width: 47.5%;
    min-width: 47.5%;
}
.leader_message .deco-l-b{
    left: 30px;
    transform: scale(0.8);
}
@media screen and (max-width:1200px){
    .leader_message .cntBlock .cntBox{
        width: 95%;
    }
    .leader_message .cntBlock .cntImg{
        margin-right: -10%;
    }
    .leader_message .cntBlock .title .copy{
        font-size: 27px;
    }
    .leader_message .cntBlock .title .title-en{
        font-size: 18px;
    }
}   
@media screen and (max-width:1000px){
    .leader_message .cntBlock .cntText{
        padding: 15px 30px 20px;
    }
    .leader_message .cntBlock .title .copy{
        font-size: 24px;
    }
    .leader_message .cntBlock .title .title-en{
        font-size: 16px;
        padding-left: 50px;
    }
    .leader_message .cntBlock .cntText p{
        font-size: 15px;
    }
    .leader_message .cntBlock .cntText h3{
        font-size: 22px;
    }
    .leader_message .cntBlock .cntText h3 span{
        font-size: 17px;
    }
    .leader_message .cntBlock .cntImg{
        margin-right: -17%;
    }
}
@media screen and (max-width:899px){
    .leader_message .cntBlock{
        flex-flow: column-reverse;
        max-width: 700px;
    }
    .leader_message .cntBlock .title .copy{
        font-size: 22px;
    }
    .leader_message .cntBlock .cntText h3{
        font-size: 20px;
    }
    .leader_message .cntBlock .cntText h3 span{
        margin-left: -10px;
        font-size: 16px;
    }
    .leader_message .cntBlock .cntImg{
        margin-left: auto;
        margin-right: 0;
        height: 400px;
        width: 100%;
    }
    .leader_message .cntBlock .cntImg img{
        object-position: 45% 10%;
        font-family: 'object-fit: cover; object-position: 50% 10%;'; /*IE対策*/
        margin-top: -10px;
    }
    .leader_message .cntBlock .cntBox{
        align-items: flex-start;
        margin-top: -130px;
        width: 95%;
        grid-gap: 0;
        gap: 0;
        margin-left: -10%;
    }
    .leader_message .cntBlock .title{
        padding-left: 5%;
        padding: 15px 5% 10px;
        z-index: 12;
        width: auto;
    }
    .leader_message .cntBlock .cntText{
        margin-left: auto;
        margin-top: -10px;
        margin-right: -60px;
        width: 380px;
    }
    .leader_message .cntBlock .title .title-en{
        left: -10px;
        padding-left: 40px;
    }
    .leader_message .cntBlock{
        margin-bottom: 50px;
    }
    .leader_message .massageBox .cnt{
        margin: 60px 0;
    }
    .leader_message .massage{
        font-size: 22px;
    }
    .leader_message .massageBox .cnt .text,.leader_message .massageBox .cnt .text.reverse{
        flex-flow: column;
        grid-gap: 30px;
        gap: 30px;
        align-items: center;
    }
    .leader_message .massageBox .cnt .text img{
        width: 100%;
        max-width: 500px;
    }
    .leader_message .massageBox h4{
        font-size: 20px;
        padding-left: 15px;
    }
    .leader_message .deco-l-b{
        left: -80px;
    }
}
@media screen and (max-width:480px){
    .leader_message .massageBox .cnt{
        overflow: hidden;
    }
    /*.leader_message .massageBox .cnt .text img{
        width: 130%;
    }*/
    .leader_message .massageBox .cnt .text{
        font-size: 14px;
    }
    .leader_message .cntBlock .cntText h3{
        font-size: 18px;
    }
    .leader_message .cntBlock .cntText h3 span{
        font-size: 15px;
    }
    .leader_message .cntBlock .cntText p{
        font-size: 14px;
    }
    .leader_message .cntBlock .cntText{
        margin-right: -23px;
        width: 275px;
    }
    .leader_message .cntBlock .cntBox{
        width: 100%;
        margin-top: -165px;
    }
    .leader_message .cntBlock .title .copy{
        font-size: 19px;
        letter-spacing: 0.05em;
    }
    .leader_message .massageBox h4{
        font-size: 18px;
        padding-left: 10px;
        border-left: 5px solid #1690CE;
    }
}


/*7.先輩技官の声*/

.voice #mainCntBox .mainCnt#crosstalk{
    margin-top: 50px;
} 
.voice #interview .cntBox{
    display: flex;
    justify-content: center;
    flex-flow: wrap;
    grid-gap: 30px 3%;
    gap: 30px 3%;
}
@media (-ms-high-contrast: none) {
    .voice #interview .cnt{
        margin: 0 1.5% 30px;
    }
}
.voice #interview .cnt{
    display: flex;
    flex-flow: column;
    width: 30%;
}
.voice #interview .spacer{
    width: 100%;
}
.voice #interview .cnt .cntImg{
    position: relative;
    height: 260px;
    border-top: 5px solid #1690CE;
}
.voice #interview .cnt .cntImg > span{
    position: absolute;
    background: #1690CE;
    padding: 1px 10px;
    color: #fff;
    font-size: 14px;
    bottom: -5px;
    left: -5px;
}
.voice #interview .cnt .profile{
    padding-top: 10px;
    line-height: 1.5;
}
.voice #interview .cnt .profile span{
    font-size: 13px;
    margin-bottom:5px;
    display: block;
    letter-spacing: 0;
}
.voice #interview .cnt .profile p{
    display: inline;
    margin-right: 10px;
    font-size: 22px;
    letter-spacing: 2px;
}
.voice #interview .cnt .profile p.en {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1;
}

.voice #crosstalk .cnt {
    padding: 0 50px;
    box-sizing: border-box;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 50px;
    position: relative;
}
.voice #mainCntBox .cntTitle {
    font-size: 28px;
    letter-spacing: 2px;
}
.voice #mainCntBox .cntTitle h2 span {
    font-size: 150px;
    line-height: 0;
    letter-spacing: 0;
    margin-right: 10px;
    transform: translateY(3px);
    display: inline-block;
}
.voice #crosstalk .cntImg {
    border-top: 5px solid #1690CE;
    position: relative;
    transition: .2s;
}
.voice #crosstalk .cntImg img{
    max-height: 370px;
}
.voice #crosstalk .cntText {
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid #1690CE;
    border-bottom: 1px solid #1690CE;
}
.voice #interview .deco-l-t{
    top: -30px;
}
.voice #interview .deco-r-t{
    top: 50px;
}
.voice #crosstalk .deco-l-b{
    bottom: -70px;
}
@media screen and (max-width:1100px){
    .voice #interview .cntBox{
        max-width: 800px;
        margin: 0 auto;
    }
    .voice #interview .cnt{
        width: 48%;
    }
}
@media screen and (max-width:899px){
    .voice #mainCntBox{
        margin-top: 0;
    }
    .voice #mainCntBox .cntTitle h2 span{
        font-size: 130px;
    }
    .voice #crosstalk .cnt{
        padding: 0;
    }
}
@media screen and (max-width:700px){
    .voice #interview .cnt .profile span{
        font-size: 12px;
    }
    .voice #interview .cnt .cntImg > span{
        font-size: 12px;
    }
    .voice #interview .cntBox{
        grid-gap: 20px 3%;
        gap: 20px 3%;
    }
    .voice #interview .cnt .cntImg{
        height: 200px;
        border-top: 3px solid #1690CE;
    }
}
@media screen and (max-width:480px){
    .voice #interview .cnt {
        width: 90%;
    }
    .voice #interview .cnt .cntImg {
        height: 260px;
    }
    .voice #mainCntBox .cntTitle h2 span{
        font-size: 100px;
    }
    .voice #crosstalk .cntImg{
        border-top: 3px solid #1690CE;
    }
    .voice #mainCntBox .cntTitle{
        margin-bottom: 20px;
    }
    .voice #mainCntBox .mainCnt#crosstalk{
        margin-top: 0;
    }
}
@media screen and (max-width:400px){
    .voice #interview .cnt .cntImg {
        height: 200px;
    }
    .voice #mainCntBox .cntTitle h2{
        font-size: 25px;
    }
    .voice #mainCntBox .cntTitle h2 span{
        font-size: 90px;
        margin-right: 8px;
    }
    .voice #crosstalk .cntText{
        font-size: 14px;
        padding: 10px 0;
        margin-top: 15px;
    }
}

/*8.先輩技官インタビュー*/
.interview .cntBlock{
    margin: 0 auto;
    display: flex;
    margin-bottom: 100px;
    align-items: center;
    padding-top: 0;
}
.interview .cntBlock .title{
    font-size: 20px;
    letter-spacing: 2px;
    background: #fff;
    width: 100%;
    padding: 30px 5% 20px;
    position: relative;
}
@media (-ms-high-contrast: none) {
    .interview .cntBlock .title{
        margin-bottom: 20px;
    }   
}
.interview .cntBlock .title .title-en{
    background-color: #1690CE;
    display: inline-block;
    text-align: right;
    padding: 5px 25px 5px 30px;
    letter-spacing: 0.05em;
    position: absolute;
    top: -20px;
    left: -30px;
}
.interview .cntBlock .title .title-en span{
    font-size: 45px;
    margin-left: 5px;
    line-height: 0.3;
}
.interview .cntBlock .cntBox{
    display: flex;
    flex-flow: column;
    grid-gap: 20px;
    gap: 20px;
    width: 80%;
    align-items: flex-end;
    margin-top: 30px;
}
.interview .cntBlock .cntText{
    padding: 20px 50px 25px;
    line-height: 2;
    margin-right: 5%;
    width: 90%;
}
.interview .cntBlock .cntText h3{ 
    font-size: 25px;
}
.interview .cntBlock .cntText p{
    font-size: 16px;
}
.interview .cntBlock .cntText h3 span{
    font-size: 20px;
}
.interview .cntBlock .cntText .career{
    border-top: 1px solid #BABABA;
    padding: 15px 0;
    margin-top: 5px;
    display: flex;
    flex-flow: wrap;
    font-size: 13px;
    line-height: 1.7;
    color: #333;
}
.interview .cntBlock .cntText .career dt{
    width: 80px;
    font-weight: 400;
}
.interview .cntBlock .cntText .career dd{
    width: calc(100% - 80px);
}
.interview .cntBlock .title .copy {
    font-size: 32px;
    margin-bottom: 10px;
    color: #1690CE;
}
.interview .cntBlock .title .copy span{
    border-bottom: 1px solid #1690CE;
    padding-bottom: 10px;
    line-height: 2.3;
}
.interview .cntBlock .cntImg{
    margin-left: -5%;
    z-index: -1;
    overflow: hidden;
    width: 60%;
}
.interview .massageBox{
    padding: 0;
}
.interview .massageBox h4{
    border-bottom: 1px solid #1690CE;
    border-left: 7px solid #1690CE;
    font-size: 27px;
    padding-bottom: 3px;
    margin-bottom: 20px;
    padding-left: 20px;
}
.interview .massageBox .cnt{
    margin: 80px 0;
}
.interview .massageBox .cnt .text{
    display: flex;
    grid-gap: 4%;
    gap: 4%;
    line-height: 2;
}

@media (-ms-high-contrast: none) {
    .interview .massageBox .cnt .text p{
        margin-right: 4%;
    }
    .interview .massageBox .cnt .text.reverse p{
        margin-right: 0;
    }
    .interview .massageBox .cnt .text.reverse img{
        margin-right: 4%;
    }
}
@media screen and (max-width:899px) and (-ms-high-contrast: none){
    .interview .massageBox .cnt .text *{
        width: 100%;
    }
    .interview .massageBox .cnt .text p{
        margin-right: 0;
        margin-bottom: 30px;
    }
    .interview .massageBox .cnt .text.reverse img{
        margin-bottom: 30px;
    }
}

.interview .massageBox .cnt .text.reverse{
    flex-flow: row-reverse;
} 
.interview .massageBox .cnt .text img{
    width: 47.5%;
    min-width: 47.5%;
    max-width: 540px;
}
.interview .massageBox .cnt .text.verticalImg img{
    min-width: 40%;
    width: 40%;
    max-width: 450px;
}
.interview .workstyle{
    position: relative;
    border: 2px solid #1690CE;
    padding: 50px 5%;
    display: flex;
    justify-content: center;
}
.interview .workstyle h3{
    background-color: #fff;
    font-size: 35px;
    padding: 0 30px;
    position: absolute;
    top: -30px;
    letter-spacing: 1px;
}
.interview .workstyle .flow .flowBelt{
    width: 40px;
    height: 95%;
    background: #DBDBDB;
    margin-right: 35px;
    display: inline-block;
    vertical-align: top;
    border-radius: 50px;
}
.interview .workstyle .flow ul{
    display: inline-block;
    width: calc(100% - 120px);
}
.interview .workstyle .flow li{
    position: relative;
    border-bottom: 1px dashed #B2B2B2;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.interview .workstyle .flow li::after{
    content: '';
    position: absolute;
    width: 30px;
    height: 100%;
    background: url(../img/voice/arrow_down.png)center / 100% no-repeat;
    top: 50px;
    left: -75px;
}
.interview .workstyle .flow li:last-child{
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.interview .workstyle .flow li:last-child::after{
    display: none;
}
.interview .workstyle .flow li div{
    width: 75px;
    height: 75px;
    text-align: center;
    border-radius: 50px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 8px;
    position: absolute;
    left: -97px;
    z-index: 10;
}
.interview .workstyle .flow li div span{
    font-size: 14px;
    margin-bottom: 3px;
}
.interview .workstyle .flow li div p{
    border-top: 1px solid #fff;
    font-size: 17px;
}
.interview .workstyle .flow dt{
    font-size: 19px;
    margin-bottom: 10px;
}
.interview .workstyle .flow dd{
    font-size: 14px;
}
.interview .cntBlock.reverse{
    flex-flow: row-reverse;
}
.interview .cntBlock.reverse .cntBox{
    padding-left: 0;
    padding-right: 5%;
}
.interview .cntBlock.reverse .cntImg{
    margin-left: 0;
    margin-right: -5%;
}
.interview .interview05 .cntBlock .title{
    width: 90%;
/*    margin-right: -7%;*/
    padding-right: 0;
}
.interview .interview05 .cntBlock .title .copy{
    letter-spacing: 0.03em;
}
.interview .cntBlock.reverse .title{
    padding-right: 0;
    width: 109%;
}
#interview01 .deco-r-b{
    bottom: -110px;
    right: -120px;
}
#interview02 .deco-l-t{
    left: 20px;
}
#interview03 .deco-r-b{
    bottom: -130px;
}
#interview04 .deco-l-t{
    top: -100px;
    left: 20px;
}
#interview05 .deco-r-b{
    bottom: -140px;
    transform: rotate(160deg) scale(0.8);
}
@media screen and (max-width:1200px){
    .interview .mainCnt.cntBlock{
        width: 95%;
    }
    .interview .cntBlock .title{
        padding-left: 0;
        padding-right: 3%;
    }
    .interview .cntBlock .title .title-en {
        font-size: 18px;
    }
    .interview .cntBlock .title .title-en span{
        font-size: 42px;
    }
    .interview .cntBlock .title .copy{
        font-size: 27px;
    }
    .interview .cntBlock.reverse .title{
        padding-left: 5%;
    }

}
@media screen and (max-width:1000px){
    .interview .cntBlock .title .copy{
        font-size: 22px;
    }
    .interview .cntBlock .title .title-en{
        font-size: 16px;
    }
    .interview .cntBlock .cntText p{
        font-size: 15px;
        line-height: 1.6;
    }
    .interview .cntBlock .cntText h3{
        font-size: 22px;
    }
    .interview .cntBlock .cntText h3 span{
        font-size: 17px;
    }
    .interview .cntBlock.reverse .title{
        padding-left: 3%;
        padding-right: 3%;
        width: auto;
    }

}
@media screen and (max-width:899px){
    .interview .mainCnt.cntBlock{
        flex-flow: column-reverse;
        width: 100%;
    }
    .interview .cntBlock .cntImg{
        margin: 0 auto;
        height: 580px;
        width: 100%;
        max-width: 430px;
    }
    .interview .cntBlock .cntBox{
        margin-top: -240px;
        align-items: start;
        grid-gap: 0;
        gap: 0;
        width: 90%;
    }
    .interview .cntBlock .title{
        width: auto;
        padding: 15px 3% 10px;
        z-index: 12;
    }

    .interview .cntBlock .cntText {
        margin-left: auto;
        margin-top: -10px;
        margin-right: 0;
        width: 90%;
        max-width: 480px;
    }
    .interview .massageBox h4{
        font-size: 20px;
    }
    .interview .massageBox .cnt .text{
        font-size: 14px;
    }
    .interview .massageBox .cnt .text{
        flex-flow: column;
        grid-gap: 30px;
        gap: 30px;
        align-items: center;
    }
    .interview .massageBox .cnt .text.reverse{
        flex-flow: column-reverse;
    }
    .interview .massageBox .cnt .text img{
        width: 100%;
        max-width: 500px;
        max-height: 350px;
    }
    .interview .massageBox .cnt .text.verticalImg img{
        width: 60%;
        max-height: 450px;
    }
    .interview .massageBox .cnt{
        margin: 60px 0;
    }
    .interview .workstyle h3{
        font-size: 26px;
        top: -25px;
        padding: 0 15px;
    }
    .interview .workstyle .flow dt{
        font-size: 17px;
    }
    .interview .workstyle .flow li div span{
        font-size: 13px;
    }
    .interview .workstyle .flow li div p{
        font-size: 15px;
    }
    .interview .workstyle .flow li div{
        width: 60px;
        height: 60px;
        left: -82px;
    }
    .interview .workstyle .flow .flowBelt{
        width: 25px;
    }
    .interview .workstyle .flow li::after{
        left: -61px;
        width: 20px;
    }
    .interview .workstyle .flow ul{
        width: calc(100% - 65px);
    }
    .interview .cntBlock.reverse .cntBox{
        padding: 0;
    }
    .interview .cntBlock.reverse .cntImg{
        margin: 0 auto;
    }
    .interview .interview05 .cntBlock .title{
        margin-right: -5%;
        width: auto;
        padding-left: 0;
    }

}
@media screen and (max-width:480px){
    .interview .mainCnt.cntBlock{
        margin-bottom: 50px;
    }
    .interview .cntBlock .cntImg{
        max-width: 100%;
    }
    .interview .cntBlock .title .title-en{
        left: -10px;
    }
    .interview .cntBlock .cntBox{
        width: 100%;
    }
    .interview .cntBlock .title .title-en{
        font-size: 14px;
    }
    .interview .cntBlock .title .title-en span{
        font-size: 38px;
    }
    .interview .cntBlock .cntText h3 span{
        font-size: 16px;
        letter-spacing: 0.01em;
    }
    .interview .cntBlock .title .copy{
        font-size: 20px;
        letter-spacing: 1px;
    }
    .interview .cntBlock .cntText{
        padding: 20px 10px 20px 30px;
    }
    .interview .massageBox h4{
        font-size: 18px;
        padding-left: 10px;
        border-left: 5px solid #1690CE;
    }
    .interview .massageBox .cnt .text img{
        max-height: 280px;
    }
    .interview .workstyle{padding-left: 7%;}
   
    
    .interview .workstyle .flow .flowBelt{
        height: 88%;
        margin-right: 21px;
        width: 15px;
    }
    #interview02.interview .workstyle .flow .flowBelt{
        height: 95%;
    }
    #interview04.interview .workstyle .flow .flowBelt{
        height: 85%;
    }
    .interview .workstyle .flow li div{
        left: -64px;
    }
    .interview .workstyle .flow ul{
        width: calc(100% - 46px);
    }
    .interview .workstyle .flow dd{
        font-size: 13px;
    }
    .interview .massageBox .cnt .text.verticalImg img{
        width: 70%;
        height: 340px;
    }
    .interview .interview04 .cntBlock .title,.interview .interview05 .cntBlock .title,.interview .cntBlock.reverse .title{
        padding-left: 5%;
        padding-right: 5%;
    }
    .interview .workstyle .flow li::after{
        background-size: 100% 15px;
        background-repeat: repeat-y;
        background-position: top center;
        top: 62px;
        width: 12px;
        left: -40px;
    }
    .interview .deco-l-t{
        top: 50px;
    }
    #interview02 .deco-r-b{
        bottom: -130px;
    }
    #interview02 .deco-l-t{
        left: -120px;
    }
    #interview03 .deco-r-b{
        right: -170px;
    }
    #interview04 .deco-l-t{
        top: 40px;
        left: -110px;
    }
    #interview04 .deco-r-b{    
        bottom: -180px;
        right: -70px;  
        transform: rotate(45deg);
    }
}



/*9.若手先輩クロストーク*/

.crosstalk #mainCntBox #copy{
    text-align: center;
    padding-top: 0;
}
.crosstalk #mainCntBox #copy span{
    color: #1690CE;
    font-size: 30px;
    margin-bottom: 15px;
    margin-left: -5px;
    letter-spacing: 0.1em;
    text-decoration: underline 1px;
    padding-bottom: 5px;
    text-underline-offset: 10px;
    line-height: 2.5;
}
.crosstalk #mainCntBox #copy .cntImg{
    position: relative;
    margin-top: 50px;
}
.crosstalk #mainCntBox #copy .cntImg::before{
    content:'';
    position: absolute;
    background: #F5F4F2;
    width: 100%;
    height: 85%;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin:auto;
}
.crosstalk #mainCntBox #copy .cntImg > div{
    width: 80%;
    margin-left: -10%;
    position: relative;
}
.crosstalk #target{
    padding-top: 0;
}
.crosstalk #target .copy{
    text-align: center;
}
.crosstalk #target .copy span{
    font-size: 35px;
    padding: 0 15px;
    background: #1690CE;
    color: #fff;
    display: inline;
    display: inline-block;
    letter-spacing: 0;
}
.crosstalk .cntBox{
    display: flex;
    justify-content: center;
    margin: 80px 0;
    gap: 30px;
    align-items: center;
}
.crosstalk .cntBox .member{
    width: 20%;
    max-width: 130px;
}
.crosstalk .cntBox .cnt{
    display: flex;
    flex: 1;
    flex-flow: column;
    gap: 40px;
}
.crosstalk .cntBox .profile{
    display: flex;
/*    flex-flow: column;*/
    text-align: center;
    width: 100%;
    position: relative;
    justify-content: center;
    align-items: center;
}
.crosstalk .cntBox .cnt01 .profile{
    border: 1px solid #E3B513;
    border-bottom: 5px solid #E3B513;
}
.crosstalk .cntBox .cnt02 .profile{
    border: 1px solid #A2CB35;
    border-bottom: 5px solid #A2CB35;
}
.crosstalk .cntBox .profile .text{
    width: 45%;
}
@media (-ms-high-contrast: none) {
    .crosstalk .cntBox .profile:first-child{
        margin-right: 10px;
    }
}

.crosstalk .cntBox .profile h3{
    font-size: 22px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.crosstalk .cntBox .profile h3 span{
    display: block;
    font-size: 13px;
    letter-spacing: 0.05em;
    line-height: 1;
}
.crosstalk .cntBox .profile p{
    font-size: 12px;
    color: #555;
}
.crosstalk .cntBox .profile img{
    width: 180px;
    height: 230px;
    margin-top: -50px;
}
.crosstalk .talkBox{
    padding-top: 0;
}
.crosstalk .talkBox h4 {
    border-bottom: 1px solid #1690CE;
    border-left: 7px solid #1690CE;
    font-size: 27px;
    padding-bottom: 3px;
    margin-bottom: 40px;
    padding-left: 20px;
}
.crosstalk .talkBox .cnt{
    margin: 80px auto;
}
.crosstalk .talkBox .talkCnt{
    display: flex;
    grid-gap: 20px;
    gap: 20px;
    margin: 30px auto;
}
.crosstalk .talkBox .talkCnt p{
    font-size: 14px;
}
.crosstalk .talkBox .talkCnt img{
    height: 80px;
}
.crosstalk .deco-r-t{
    transform: scale(0.8) rotate(160deg);
    top: -20px;
}
.crosstalk .deco-l-b{
    bottom: -100px;
    transform: scale(1.1);
}
@media (-ms-high-contrast: none) {
    .crosstalk .talkBox .talkCnt img{
        margin-right: 20px;
    }   
}

@media screen and (max-width:899px){
    .crosstalk #mainCntBox .copy span{
        font-size: 28px;
    }
}
@media screen and (max-width:899px){
    .crosstalk #target .copy span{
        font-size: 30px;
    }
    .crosstalk #mainCntBox #copy{
        padding-top: 30px;
    }
    .crosstalk #mainCntBox #copy span{
        font-size: 26px;
    }
    .crosstalk #mainCntBox #copy .cntImg > div{
        width: 100%;
    }
    .crosstalk .cntBox{
        flex-flow: column;
    }
    .crosstalk .cntBox .cnt{
/*        padding: 40px 5%;*/
        max-width: 600px;
    }

    /*.crosstalk .cntBox .cnt.cnt01{
        margin-left: -4%;
        margin-right: auto;
    }
    .crosstalk .cntBox .cnt.cnt02{
        margin-left: auto;
        margin-right: -2%;
        margin-top: -70px;
    }*/
    .crosstalk .cntBox .profile {
        min-width: 380px;
    }
    .crosstalk .cntBox .profile h3{
        font-size: 20px;
    }
    .crosstalk .cntBox .profile h3 span{
        font-size: 13px;
    }
    .crosstalk .cntBox .profile img{
        width: 200px;
        height: 210px;
        margin-right: -5%;
    }
    .crosstalk .talkBox h4{
        font-size: 20px;
        padding-left: 15px;
    }
    .crosstalk .deco-r-t{
        right: -60px;
    }
    .crosstalk .deco-r-t img{
        width: 200px;
    }
    .crosstalk .cntBox .profile .text{
        width: 55%;
    }
}
@media screen and (max-width:700px){
    .crosstalk #mainCntBox #copy{
        width: 100%;
        padding-top: 0;
    }
    .crosstalk #mainCntBox #copy span{
        font-size: 23px;
        letter-spacing: 0;
    }
}
@media screen and (max-width:480px){
    .crosstalk .cntBox{
        gap: 15px;
        margin: 40px auto;
    }
    .crosstalk .cntBox .cnt{
        grid-gap: 3%;
        gap: 20px;
        width: auto;
    }
    .crosstalk #mainCntBox #copy span{
        font-size: 18px;
        letter-spacing: 1px;
        line-height: 2.2;
    }
    .crosstalk #target .copy span{
        font-size: 23px;
    }
    .crosstalk #mainCntBox #copy .cntImg > div{
        width: 130%;
        margin-left: -25%;
    }
    .crosstalk .cntBox .profile{
        min-width: 340px;
    }
    .crosstalk .cntBox .profile img{
        height: 160px;
        width: 150px;
        margin-top: -25px;
    }
    .crosstalk .cntBox .profile h3{
        font-size: 16px;
    }
    .crosstalk .cntBox .profile h3 span,.crosstalk .cntBox .profile p{
        font-size: 11px;
    }
    .crosstalk .cntBox .member{
        width: 25%;
    }
    .crosstalk .talkBox .cnt{
        margin: 50px auto;
    }
    .crosstalk .talkBox .talkCnt img{
        /*width: 60px;*/
        height: 60px;
    }
    .crosstalk .talkBox .talkCnt{
        font-size: 15px;
    }
    .crosstalk .talkBox .talkCnt p{
        font-size: 14px;
    }
    .crosstalk .talkBox h4{
        font-size: 18px;
        padding-left: 10px;
        border-left: 5px solid #1690CE;
    }
    .crosstalk .talkBox .cntImg{
        height: 120px;
        margin-bottom: 60px;
    }
    .crosstalk .deco-r-t{
        top: -100px;
        right: -60px;
    }
    .crosstalk .deco-r-t img{
        width: 250px;
    }
}

/*==========================10.キャリアパス・働く環境*/
#careerpath .careerpath{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    grid-gap: 5%;
    gap: 5%;
}
#careerpath .careerpath img{
    width: 60%;
    max-width: 100%;
    min-width: 250px;
    max-height: 570px;
}
@media (-ms-high-contrast: none) {
    #careerpath .careerpath img{
        margin-right: 5%;
    }
}
@media screen and (max-width:899px) and (-ms-high-contrast: none){
    #careerpath .careerpath img{
        margin-right: 0;
        margin-top: 30px;
    }
}


#careerpath .careerpath .careerText{
    width: 100%;
}

/* あしらい */
.deco-l-b,.deco-l-t,.deco-r-b,.deco-r-t{
    position: absolute!important;
    width: auto!important;
    z-index: -1;
}
#careerpath .deco-r-t{
    top: -20px;
    right: -150px;
}
#careerpath .deco-r-t img{
    width: 70%;
}
#careerpath .deco-l-b{
    bottom: -30px;
    left: -80px;
}
#careerpath .deco-l-b{
    width: 70%;
}
/* グラフ */
#mainCntBox .graph{
    margin: 80px auto 0;
    padding: 20px 0;
    background: #fdf8e3; 
    background: -moz-linear-gradient(-45deg,  #fdf8e3 0%, #fceeeb 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg,  #fdf8e3 0%,#fceeeb 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg,  #fdf8e3 0%,#fceeeb 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
#mainCntBox .graph img{
    display: block;
    margin: 0 auto;
    width: 90%;
    max-width: 800px;
}
#mainCntBox .graph p{
    font-size: 13px;
    color: #5C5C5C;
    text-align: center;
}

@media screen and (max-width:1000px){
    #mainCntBox .graph img{
        max-width: 600px;
    }
}
@media screen and (max-width:899px){
    #careerpath .careerpath{
        flex-flow: column-reverse;
        align-items: center;
        grid-gap: 50px;
        gap: 50px;
    }
    #careerpath .careerpath img{
        width: 100%;
        max-width: 400px;
        height: auto;
    }
}
@media screen and (max-width:480px){
    #careerpath .careerpath .careerText p{
        font-size: 14px;
        line-height: 1.8;
    }
    #careerpath .careerpath img{
        max-height: 300px;
    }
    #mainCntBox .graph img{
        width: 95%;
    }
}


/* ---------WLB------------ */
#wlb .cntTitle p{
    margin-top: 1.5em;
}
#wlb .wlbCnt{
    max-width: 1130px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 100px auto 0;
}
#wlb .wlbCnt .wlblist {
    width:30%;
    min-width: 270px;
    margin: 0 auto 60px;
    position: relative;
    border: 1px solid #1690CE;
}
#wlb .wlbCnt .wlblist h1{
    font-size: 60px;
    background-color: #fff;
    position: absolute;
    top: -45px;
    left: 0;
    right: 0;
    margin: auto;
    width: 60px;
    text-align: center;
}
#wlb .wlblist .listBody{
    width: 90%;
    text-align: center;
    margin: 0 auto;
    padding: 60px 0;

}
#wlb .wlblist .listBody img{
    width: 27%;
    margin-bottom: 20px;
} 
#wlb .wlblist .listBody h2{
    width: 90%;
   font-size: 23px;
   margin: 0 auto;
   padding-bottom: 10px;
   margin-bottom: 20px;
   border-bottom: 1px solid#EFEDED;
}
#wlb .wlblist .listBody p{
    display: inline-block;
    margin: 0 auto;
text-align: left;
}

@media screen and (max-width:899px){
    #wlb .cntTitle p{
        text-align: left;
    }
    #wlb .wlbCnt .wlblist{
        min-width: 200px;
    }
    #wlb .wlblist .listBody h2{
        font-size: 18px;
    }
    #wlb .wlblist .listBody p{
        font-size: 13px;
    }
    #wlb .wlblist .listBody{
        padding: 53px 0 30px;
    }
}
@media screen and (max-width:480px){
    #wlb .cntTitle p{
        font-size: 14px;
    }
    #wlb .wlbCnt {
        margin-top: 0;
    }
    #wlb .wlbCnt .wlblist{
        min-width: auto;
        width:47%;
    }
    #wlb.mainCnt{
        margin-bottom: 0;
    }
    #wlb .wlbCnt .wlblist h1{
        padding: 0 15px;
        line-height: 1;
        top: -27px;
        line-height: 1;
    }
    #wlb .wlblist .listBody{
        padding: 32px 0 20px;
    }
    #wlb .wlbCnt .wlblist{
        margin-bottom: 40px;
    }
    #wlb .wlblist .listBody h2{
        width: 100%;
        font-size: 16px;
    }
    #wlb .wlblist .listBody img{
        margin-bottom: 10px;
    }
}

/*=========================11.採用情報・業務説明会*/
#Entry{
    padding-top: 0;
    padding-bottom: 40px;
}
.entry .mainCnt > div{
    padding-top: 100px;
    margin-bottom: 30px;
}
.entry .mainCnt > div:first-child{
    padding-top: 0;
}
.entry .cnt > div{
    margin: auto !important;
}
.entry .informationList{
border: 1px solid #1690CE;
}
.entry .information p{
    margin-bottom: 15px;
}

.entry .information ul li{
    margin: 25px 10px;
}
.entry .information ul li p{
    border-bottom: 1px solid #188AC4;
    display: inline;
    margin: 10px;
}
#Entry .section ,
#Entry .jobfair{
    background-color: #FAFAFA;
    position: relative;
}

#Entry .section .cntTitle{
    position: absolute;
    top: -35px;
}

#Entry .section .sectionText{
    padding: 30px;
}
#Entry .section .sectionText .sectionInfo{
    padding: 30px 2.5%;
    background: #f1f1f1;
    margin: 20px 0;
    color: #333;
    font-size: 20px;
    color: #1690CE;
}
#Entry .section .sectionText .sectionInfo p{
    letter-spacing: 2px;
}
#Entry .section .sectionText .sectionInfo a{
    color: #1690CE;
    border-bottom: 1px solid #1690CE;
    letter-spacing: 2px;
    font-weight:600;
}
#Entry .section .flexBox{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    border-bottom: 1px solid #1690CE;
    padding: 25px 0px;
}
#Entry .section .flexBox:last-child{
    border-bottom: none;
}
#Entry .section .flexBox .title{
    width: 20%;
    min-width: 140px;
    font-size: 15px;
    color: #1690CE;
}
#Entry .section .flexBox .text{
    width: 80%;
    font-size: 15px;
}
#Entry .section .flexBox .text a{
    color: #1690CE;
    border-bottom: 1px solid #1690CE;
}
#Entry .section .flexBox .text p{
    margin-bottom: 10px;
}
#Entry .section .flexBox .text .border{
    width: 100%;
    height: 1px;
    background-color: #ddd;
}
#Entry .section .flexBox .text *:first-child{
    margin-top: 0;
}
#Entry .section .flexBox .text *:last-child{
    margin-bottom: 0;
}
#Entry .section .flexBox .text ul{
    margin: 25px 0;
}
#Entry .section .flexBox .text ul li{
    margin: 8px 0;
}
#Entry .section .flexBox .text ul li{
    margin-left: 2em;
    text-indent: -1em;
}
#Entry .section .flexBox .text ul li.listTitle{
    margin-left: 1em;
    text-indent: -1em;
}

#Entry .mailBtn a div{
    background-color: #1690CE;
    width: 398px;
    height: 80px;
    padding: 0 30px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 10px;
    gap: 10px;
}
#Entry .mailBtn a p{
    font-size: 20px;
}
#Entry .mailBtn>p{
    text-align: center;
    font-size: 14px;
    padding:10px 0 40px;
    color: #535353
}

@media screen and (max-width:899px){
    #Entry .section .flexBox{
        font-size: 14px;
    }
    #Entry .section .flexBox{
        flex-flow: column;
        grid-gap: 20px;
        gap: 20px;
    }
    .entry .mainCnt > div{
        padding-top: 100px;
    }
    #Entry .section .flexBox .title,#Entry .section .flexBox .text{
        width: 100%;
    }
    #Entry .section .sectionText .sectionInfo{
        font-size: 18px;
        letter-spacing: 1px;
    }
}
@media screen and (max-width:480px){
    #Entry .section .sectionText{
        padding: 30px 5%;
    }
    #Entry .section .cntTitle{
        top: -24px;
    }
    #Entry .section .flexBox .text{
        font-size: 14px;
    }
    #Entry .mailBtn a div{
        width: 90%;
        max-width: 300px;
        height: 60px;
    }
    #Entry .mailBtn a p{
        font-size: 16px;
    }
    #Entry .mailBtn a img{
        height: 22px;
    }
    #Entry .mailBtn > p{
        font-size: 13px;
    }
    .entry .information ul li{
        margin: 20px 2.5%;
    }
    .entry .information ul li p{
        font-size: 14px;
        margin: 0;
    }
    .entry .mainCnt:first-child{
        margin-bottom: 0;
    }
    .entry .mainCnt > div{
        padding-top: 60px;
    }
    .entry .mainCnt:first-child{
        padding-top: 0;
    }
    #Entry .section .flexBox .text ul li{
        margin-left: 1em;
    }
    #Entry .section .flexBox{
        padding: 15px 0;
    }
    #Entry .section .sectionText .sectionInfo{
        font-size: 15px;
        letter-spacing: 0.02em;
    }
}
/*=========================12.よくある質問*/

 .faq .pageTitle p{
    margin-top: 1.5em;
    line-height: 2em;
}
.faq{
    overflow-y: scroll;
}
.faq #main .mainCnt{
    padding-top: 0;
}
.faq #faq .question,.faq #faq .answer{
    padding: 10px 10px 15px 10px;
}
.faq #faq .question{
    border-top: 1px solid #1690CE;
    font-size: 17px;
    position: relative;
    cursor: pointer;
    justify-content: space-between;
}
.faq #faq .question,.faq #faq .answer{
    display: flex;
    align-items: flex-start;
}
.faq #faq .answer{
    border-top: 1px solid #E6E6E6;
    padding: 20px 50px 20px 10px;
    justify-content: flex-start;
}
.faq #faq .question p.text{
    padding-top: 14px;
    width: calc(100% - 65px);
}
.faq #faq .question > span,.faq #faq .answer > span{
    margin-right: 20px;
    font-size: 30px;
    width: 25px;
}
.faq #faq .answer > span{
    margin-top: -10px;
}
.faq #faq .question p,.faq #faq .answer p{
    max-width: 100%;
}
.faq #faq .answer p{
    width: 100%;
}
.faq #faq .innerBox{
    display: none;
}
.faq #faq .innerBox .flexBox p.answer{
    font-size: 30px;
    padding: 10px 10px;
    margin-right: 60px;
}
.faq #faq .cnt:last-of-type{
    border-bottom: 1px solid #1690CE;
}

@media screen and (max-width:480px){
    .faq #faq .answer p{
        padding-top: 10px;
    }
    .faq #faq .answer p{
        padding-top: 0;
    }
    .faq #faq .answer p a{
        color: #1690CE;
        border-bottom: 1px solid #1690CE;
    }
    .faq #faq .question, .faq #faq .answer{
        padding-right: 25px;
        padding-left: 0;   
    }
    .faq #faq .question p, .faq #faq .answer p{
        font-size: 14px;
        line-height: 1.8;
    }
    .faq #faq .question > span, .faq #faq .answer > span{
        font-size: 25px;
    }
    .faq #faq .question::after{
        width: 15px;
        height: 8px;
        right: 5px;
    }
    .faq #faq .question p.text{
        padding-top: 8px;
    }
    .faq .mainCnt{
        padding-bottom: 0;
    }
    .faq .pageTitle p{
        font-size: 14px;
    }
}
