@charset "utf-8";
/*
Theme Name: cpstyle
Version: 2.0
*/

/*----------------------------------------
■共通設定
-----------------------------------------*/


html{
font-size:62.5%;
}

body{
 font-size:1.6rem;/* 16px*/
}



body, h1, h2, h3, h4, h5, h6, p, td, th, ol, ul, li, dl, dt, dd, form, pre{
	margin:0;
	padding:0;
	font-family: "Barlow", 'Noto Sans JP', sans-serif;
 font-weight: 500;
	font-size: 1.6rem;
color:#2a2a2a;
letter-spacing:0.02em;
	word-break:break-all;
	word-wrap: break-word;
-webkit-text-size-adjust: 100%;
-webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 768px) {
p {
	font-size: 1.4rem;
}
}


body{
	background-color:#FFF;
	line-height:2;
}

@media screen and (max-width: 768px) {
body{
	line-height:1.8;
}
}

ul,li{
list-style:none;
}


p {
	margin-bottom:18px;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
	
}
img {
max-width:100%;
	vertical-align:bottom;
	border: none;
}

a:link {
-webkit-transition: all .3s;
	transition: all .3s;
opacity:1;
	color: #222222;
	text-decoration:underline;
}
a:visited {
	color: #222222;
}
a:active,
a:hover {
opacity:1;
	color: #222222;
	text-decoration:none;
}


.more-text {
    display: inline-block;
    font-weight: 700;
    color: #0065ad;
    margin-right: 16px;
    margin-bottom: 0;
    vertical-align: middle;
}

.dot-button {
  display: inline-block;
  width: 46px;
  height: 46px;
background:#FFF;
  border-radius: 50%;
  position: relative;
  transition: background 0.3s;
  cursor: pointer;
    margin: 0;
transition: .3s;
    vertical-align: middle;
 box-sizing: border-box;
}



.dot-button .dot {
    position: absolute;
    top: 50%;
    left: 50%;
 width: 100%;
  height: 100%;
    background: #0065ad;
    border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
    transition: all 0.4s ease;
opacity:0;
 box-sizing: border-box;
}

.black-more .dot-button .dot {
background:#222;
}
#top-news-more .dot-button{
    background: #0065ad;
}

.dot-button .arrow {
    position: absolute;
    top: 50%;
    left: 50%;
   width: 12px;
    height: 12px;
    transform: translate(-50%, -50%);
      transition: all 0.4s ease;
    background: url(/wp-content/uploads/arrow.svg) no-repeat center center;
    background-size: contain;
}

#top-news-more .dot-button .arrow {
    background: url(/wp-content/uploads/arrow2.svg) no-repeat center center;
    background-size: contain;
}


a:hover .dot {
transform: translate(-50%, -50%) scale(1.01); /* 少し大きめ */
opacity:1;
}




a:hover .arrow {
  background: url(/wp-content/uploads/arrow2.svg) no-repeat center center;
    background-size: contain;
   transform: translate(-50%, -50%) rotate(-90deg); /* 修正 */
transform-origin: center center; /* 回転の基点を中央に指定 */
}



#wrapper {
    overflow: hidden;
}






/*----------------------------------------
■汎用クラス
-----------------------------------------*/
.clearfix{
	zoom:1;
}
.clearfix:after{
	content:"";
	display:block;
	clear:both;
}

.pagetop{
background:#FFF;
width:100%;
height:66px;
margin:0;
}
.pagetop a{
font-size:10px;
width:100%;
line-height:66px;
display:block;
text-decoration:none;
text-align:center;
letter-spacing:0.08em;
}


.alignright{
	float:right;
	margin-left:20px;
	margin-bottom:20px;
}
.alignleft{
	float:left;
	margin-right:20px;
	margin-bottom:20px;
}
.aligncenter{
	clear:both;
	display:block;
	margin:25px auto;
}
.postmeta{
	clear:both;
}
.post {
	zoom:1;
}
.post .post{
	margin:10px;
}
#breadNavi .post:after{
	content:"";
	display:inline-block;
	clear:both;
}

.post:after{
	content:"";
	display:block;
	clear:both;
}

.wp-pagenavi{
	margin-top:20px;
	clear:both;
}


@media screen and (max-width: 768px)  {
.dot-button {
    width: 36px;
    height: 36px;
}
}





/*----------------------------------------
■ヘッダー
-----------------------------------------*/

#logo {
    width: 260px;
    display: flex;
    align-items: center;
    margin: 0;
}

.logo-black {
    display: none;
}

#header-bar-area.HeightMin .logo-white {
    display: none;
}
#header-bar-area.HeightMin .logo-black {
    display: block;
}

#header {
    background: #0065ad;
}

#header-bar-area{
    height: 130px;
    position: absolute;
    z-index: 200;
    top: 0;
    width: 100%;
}
#header-bar {
  position: absolute;
    top: 0;
    left: 5vw;
    z-index: 20;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;  /* ← これでOK */
    box-sizing: border-box;
    width: 95vw; /* ← 横幅指定して全体を制御 */
}

/*HeightMinというクラス名がついたら高さを小さく、上部固定に*/
#header-bar-area.HeightMin{
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 90px;
    animation: DownAnime 0.5s forwards;
    background: #ffffffed;
}

@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}

#header-bar-area.HeightMin #g-nav ul#navi-list > li a{
color:#0065ad;
}
#header-bar-area.HeightMin .nav-tel{
color:#0065ad;
}
#header-bar-area.HeightMin .nav-tel a{
color:#0065ad !important;
}
#header-placeholder {
    height: 0px !important;
}




#fv-area {
    margin-left: 2.5vw;
    height: 80vh;
min-height: 800px;
    position: relative;
    overflow: hidden;
}

#fv-text-area {
    position: absolute;
    bottom: 2.5vw;
    left: 2.5vw;
z-index:2;
}


#fv-bg {
    display: block;
    width: 100%;
    height: 100% !important;
    min-height: 800px;
position: absolute;
top:0px;
transition: opacity 0.5s ease-out, height 0.5s ease-out;
 z-index: 1;
    border-radius: 0 0 0 10px;
    overflow: hidden;
}

#fv-bg::before {
    content: "";
    background: #00000026;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: block;
    left: 0;
    z-index: 2;
}

#background-layer {
    position: fixed;
height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;  /* fv-bg よりも上に来るように調整する必要がある場合は、この値を変更 */
    background-color: transparent;  /* 初期は透明 */
  transition: opacity 0.5s ease-out;
}

#g-nav {
    width: auto;  /* 幅指定解除 */
}

#g-nav ul#navi-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
    height: 70px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#g-nav ul#navi-list > li {
    list-style: none;
    text-align: center;
    position: relative;
 color: #FFF;
    -webkit-transition: all .3s;
    transition: all .3s;
    height: 70px;
    font-size: 1.8rem;
    display: inline-block;
    line-height: 1.2;
    margin-right: 2.4vw;
}
#g-nav ul#navi-list > li a {
      color: #FFF;
    padding: 0;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    -webkit-transition: all .3s;
    transition: all .3s;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    box-sizing: border-box;
}


#fv-catch span {
    font-size: 14vw;
display: inline-block;
    line-height: 1;
    margin-bottom: 20px;
}

#fv-catch {
     font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.4;
    color: #FFF;
}


.nav-tel span {
    font-size: 2rem;
}

.nav-tel {
     font-size: 2.6rem;
    line-height: 1.4;
    font-weight: 700;
    color: #FFF;
    border-bottom: solid 2px;
    padding-right: 2.5vw;
    margin-bottom: 6px;
    line-height: 1;
    padding-bottom: 6px;
    margin-top: -4px;
}
.nav-tel a{
    color: #FFF;
text-decoration:none;
}

.nav-contact a {
    background: #0065ad;
    display: inline-block;
    width: 100%;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    color: #FFF;
    padding: 4px 0;
}
.nav-contact a span {
    background: url(/wp-content/uploads/icon-mail.svg) no-repeat left center;
    background-size: 20px;
    padding-left: 26px;
}

.nav-contact a:hover {
   background: #2a2a2a;
}


.nav-contact {
    margin-right: 2.5vw;
}

#top-con {
    padding: 80px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.top-con-free {
margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: #FFF;
    display: inline-block;
    padding: 10px 0px;
    line-height: 1.4;
    border: solid 2px;
    width: 330px;
    text-align: center;
    box-sizing: border-box;
}
.top-con-text {
     font-size: 1.8rem;
    color: #FFF;
    margin: 0;
    font-weight: 700;
    line-height: 1.8;
    width: calc(100% - 390px);
    padding-left: 60px;
    box-sizing: border-box;
}


.spcontact {
 display: none;
}

#sp-logo {
    display: none;
}

#fv-catch span br{
display:none;
}





@media screen and (max-width: 1025px)  {

#sp-logo{
 display: block;
opacity:0;
}

.spcontact a {
     width: 100%;
    height: 100%;
    display: block;
    background: url(/wp-content/uploads/icon-mail.svg) no-repeat center center;
    background-size: 24px;
}

#header-bar-area.HeightMin .spcontact a {
    background: url(/wp-content/uploads/icon-mail2.svg) no-repeat center center;
    background-size: 24px;
}

.spcontact {
    position: absolute;
    right: 70px;
    top: 10px;
    width: 50px;
    height: 50px;
    display: block;
        z-index: 100;
}



#logo {
    width: 200px;
}
#header-bar{
    height: 70px;
}

#header-bar-area{
    height: 70px;
}
#header-bar-area.HeightMin{
    height: 70px;
}

.nav-tel {
         color: #0065ad !important;
    margin-top: 30px;
    padding-right: 0;
    width: 100%;
    display: inline-block;
    margin-bottom: 10px;
    white-space: nowrap;
}

.nav-tel a{
         color: #0065ad !important;
}
.nav-contact {
    margin: 0;
}


#fv-catch span{
font-size: 12rem;
    margin-bottom: 10px;
}
#fv-text-area{
           width: calc(100% - 10vw);
        bottom: 5vw;
        left: 5vw;
}
#fv-catch {
    font-size: 2rem;
}
#fv-area {
    margin-left: 2.5vw;
    height: 60vh;
    min-height: 600px;
}
#fv-bg {
    min-height: 600px;
}
#top-con {
    padding: 40px 5vw;
    display: block;
}
.top-con-free {
           margin: 0 auto 10px;
        display: block;
        font-size: 1.8rem;
}
.top-con-text {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    padding: 0;
        font-size: 1.6rem;
}

.top-con-more {
    text-align: center;
}


}


@media screen and (max-width: 768px)  {
    #fv-catch span {
        font-size: 22vw;
    }
#fv-catch span br{
display:block;
}

}





/*----------------------------------------
■グローバルナビ
-----------------------------------------*/



/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
    opacity: 1;
display:block;
visibility: inherit;
    z-index: 8000;
    pointer-events: auto;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    position: static;
    width: auto;
    height: auto;
    width: 100%;
}




#g-nav ul#navi-list > li a:hover{
opacity:.6;
}



#g-nav ul#navi-list li a span {
    position: relative;
    display: inline-block;
}

#g-nav ul#navi-list li.btn-recruit a span:after {
display:none;
}


#g-nav ul#navi-list li a span:after {
   position: absolute;
    bottom: -6px;
    left: 0;
    margin-left: 0px;
    z-index: -1;
    content: '';
    width: 100%;
    height: 2px;
    background: #009dda;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transition: -webkit-transform .3s, background-color .2s ease-out;
    transition: transform .3s, background-color .2s ease-out;
}




#g-nav ul#navi-list li a:hover span:after {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1,1);
    transform: scale(1,1)
}

#g-nav ul#navi-list li.btn-reserve a span:after {
display:none;
}




#g-nav ul#navi-list li.has-child .label__inner::before {
    content: "";
    background: #ffffffdb;
    height: 60px;
    width: 100%;
    left: 0;
    top: 70px;
    display: block;
    position: fixed;
    width: 100%;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transition: -webkit-transform .3s, background-color .2s ease-out;
    transition: transform .3s, background-color .2s ease-out;
}

#g-nav ul#navi-list li.has-child .label__inner {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
}

#g-nav ul#navi-list li.has-child:hover .label__inner {
    visibility: visible;
    opacity: 1;
}
#g-nav ul#navi-list li.has-child:hover .label__inner::before {
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
    -webkit-transform-origin: left top;
    transform-origin: ledt top;
    -webkit-transition: -webkit-transform .3s,background-color .2s ease-out;
    transition: transform .3s,background-color .2s ease-out
}



#g-nav ul#navi-list {
      padding: 0;
    margin: 0;
    list-style-type: none;
    height: 70px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


#g-nav ul#navi-list > li.btn-reserve {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
#g-nav ul#navi-list li.btn-reserve a {
  display: inline-block;
    padding: 12px 20px;
    border-radius: 4px;
    height: auto !important;
    font-weight: 700;
}
#g-nav ul#navi-list li.btn-reserve a {
    background: #009dda;
    color: #FFF;
}
#g-nav ul#navi-list li.btn-reserve a:hover {
    background: #2a2a2a;
}


#g-nav ul#navi-list > li.btn-reserve a span {
    background: url(/wp-content/uploads/icon-reserve.svg) no-repeat left center;
    background-size: 14px;
    padding-left: 20px;
}






@media screen and (max-width: 1025px)  {

#g-nav-contents {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    display: inline;
    transform: translate(-50%, -50%);
    z-index: 200;
    width: 100%;
height: 100vh;
}

#g-nav {
       position: fixed;
    z-index: 999;
    top: 0;
    opacity: 0;
    left: auto;
    right: 0;
    width: 100vw;
    height: 100vh;
 background: #f6f6f6;
    transform: translate(0%,0%);
    visibility: hidden;
transition: all 0.4s;
    opacity: 0;
z-index:-10;
visibility: hidden;
    pointer-events: none;
    transform: translateX(0%);
}
#g-nav-area {
  text-align: center;
    z-index: 999;
    width: 100%;
    margin: 0 auto;
}
#g-nav ul#navi-list{
  margin-right: 0;
        margin-bottom: 0px;
        display: block;
        height: auto;
        text-align: center;
        width: 80vw;
        position: absolute;
        top: 140px;
        left: 50%;
        transform: translate(-50%, 0%);
}


#g-nav ul#navi-list > li {
    font-size: 1.8rem;
    display: block;
    margin-right: 0px;
    list-style: none;
    text-align: center;
    width: 100%;
    margin: 0;
    height: auto !important;
    line-height: 1.6 !important;
}
#g-nav ul#navi-list > li a{
    display: inline-block;
padding: 10px;
    font-size: 1.8rem;
        color: #0065ad;
}



#g-nav ul#navi-list li,
.nav-contact-area {
transition: all 0.4s;
    transform: translateX(200px);
    opacity: 0;
    -webkit-transform: translate3d(0px, 4px, 0);
}

#g-nav.panelactive ul#navi-list li,
#g-nav.panelactive .nav-contact-area{
transform: translateX(0);
    opacity: 1;
    -webkit-transform: translate3d(0px, 0px, 0);
}


#g-nav.panelactive ul#navi-list li#nav1{
    transition-delay: .0s;
}
#g-nav.panelactive ul#navi-list li#nav2{
    transition-delay: .05s;
}
#g-nav.panelactive ul#navi-list li#nav3{
    transition-delay: .1s;
}
#g-nav.panelactive ul#navi-list li#nav4{
    transition-delay: .15s;
}
#g-nav.panelactive .nav-contact-area{
    transition-delay: .2s;
}

#sp-logo{
position:fixed;
top:20px;
width:100%;
text-align:center;
transition: all 0.4s;
    transform: translateX(200px);
    opacity: 0;
    -webkit-transform: translate3d(0px, 0px, 0);
}

#sp-logo img{
width:200px;
}

#g-nav.panelactive #sp-logo{
transform: translateX(0);
    opacity: 1;
    -webkit-transform: translate3d(0px, 0px, 0);
}



}




/*==================================================
　5-2-6 3本線が回転して×に
===================================*/

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
display:none;
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
	background: #FFF;
    mix-blend-mode: difference;
  }

#header-bar-area.HeightMin .openbtn span{
	background: #0065ad;
}


.openbtn span:nth-of-type(1) {
	top:15px;	
  	width: 45%;
}

.openbtn span:nth-of-type(2) {
	top:23px;
  	width: 35%;
}

.openbtn span:nth-of-type(3) {
	top:31px;
  	width: 20%;
}

/*activeクラスが付与されると線が回転して×になる*/

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 30%;

}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 30%;

}

.openbtn.active span{
	background: #0065ad;
}

.openbtn.active{
 position: fixed;
}


@media screen and (max-width: 1025px)  {
.openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
display:block;
    position: absolute;
    cursor: pointer;
    width: 50px;
    height: 50px;
    right: 10px;
    top: 10px;
    z-index: 9999;
}




}







/*----------------------------------------
■キャッチイメージ
-----------------------------------------*/

#catch-area {
    margin-left: 2.5vw;
    height: 400px;
    position: relative;
    overflow: hidden;
}

#bread-area {
    padding: 20px 0;
    margin-right: 2.5vw;
    text-align: right;
   margin-left: 2.5vw;
}
#breadNavi a {
    color: #FFF;
}
#breadNavi {
    font-size: 1.2rem;
    color: #FFF;
    font-weight: 700;
    line-height: 1.4;
margin: 0;
}


#catch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#catch-image {
    display: block;
    width: 100%;
    height: 100% !important;
    position: absolute;
    top: 0px;
    z-index: 1;
    background: #999;
    border-radius: 0 0 0 10px;
    overflow: hidden;
}

#catch-image::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background: #00000057;
}


#catch-text-area {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 0 5vw;
}
#pagename {
    margin: 0;
    line-height: 1.6;
    font-weight: 700;
    font-size: 4rem;
    color: #FFF;
    margin-top: 40px;
    line-height: 1.2;
}



@media screen and (max-width: 768px)  {
#pagename {
    font-size: 2.6rem;
}
#catch-area {
    height: 280px;
}

#breadNavi {
    font-size: 1.1rem;
}
#bread-area {
    padding: 10px 0;
}



}


/*----------------------------------------
■メイン
-----------------------------------------*/




#main{
 padding: 0px 0;
}


.container{
padding:140px 0;
  position: relative;
    z-index: 2;
}


.section{
    max-width: calc(1200px + 10vw);
       margin: 0 auto;
    position: relative;
    padding: 0 5vw;
}


.midashi-h2 span {
    font-size: 0.5em;
    color: #0065ad;
}
.midashi-h2 {
    font-size: 4rem;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 1.6em;
}



@media screen and (max-width: 768px) {


.section{
       margin: 0 auto;
    position: relative;
    max-width: 1200px;
    padding: 0 5vw;
}



#main{
  padding: 0px 0;
  overflow: hidden;
}

.container{
padding:70px 0;
}

.midashi-h2{
font-size: 2.8rem;
        margin-bottom: 1.6em;
        display: inline-block;
}

}



/*----------------------------------------
■コンテンツ
-----------------------------------------*/

#contents-area{
width:1000px;
margin:0 auto;
}
#contents{
	width:700px;
	margin-right:50px;
	float:left;
}



/*----------------------------------------
■サイド
-----------------------------------------*/

	

/*----------------------------------------
■フッター
-----------------------------------------*/

.no-tel {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
#footer-banner-area ul li {
    width: 50%;
 overflow: hidden;
    height: 40vw;
    max-height: 400px;
    position: relative;
}

#footer-banner-area ul li a {
    display: inline-block;
    width: 100%;
    height: 100%;
}



.footer-banner-more {
    position: absolute;
    right: 2.5vw;
    bottom: 2.5vw;
}



#footer-banner-area ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.footer-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  transition: transform 0.5s ease;
}
#footer-banner-area ul li a:hover .footer-banner-img {
  transform: scale(1.1);
}


.footer-banner-name span {
    font-size: 0.6em;
}

.footer-banner-name {
    position: absolute;
    margin: 0;
    transform: translate(0%, -50%);
    top: 50%;
    left: 5vw;
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 1.4;
    color: #FFF;
}





#footer-area {
    padding-bottom: 5vw;
}
#footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    max-width: calc(1200px + 10vw);
    margin-bottom: 100px;
}

#footer-logo {
  width: 280px;
    margin-bottom: 0;
}



#logo-text {
      margin: 0;
    font-size: 1.6rem;
    color: #0065ad;
    padding-top: 10px;
    text-align: center;
    font-weight: 700;
}
#footer-info {
    font-weight: 700;
    font-size: 1.6rem;
    margin: 0;
    line-height: 1.7;
}
#footer-nav-area {
    display: flex;
    align-items: top;
    justify-content: space-between;
    box-sizing: border-box;
}
.footer-block:first-child {
    margin-right: 6vw;
}
.footer-block h4 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}
.footer-block ul {
    border-left: solid 2px #c3c3c3;
    padding-left: 20px;
}
.footer-block ul li {
    font-size: 1.4rem;
    color: #c3c3c3;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 14px;
}
.footer-block ul li a{
    color: #c3c3c3;
text-decoration:none;
}
.footer-block ul li a:hover{
    color: #2a2a2a;
}


.footer-block h4 a {
    text-decoration: none;
}

.footer-block h4 a:hover{
  color: #0065ad;
}

#footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 5vw;
    margin: 0 auto;
    max-width: calc(1200px + 10vw);
}
address {
    font-style: normal;
    font-weight: 700;
    color: #0065ad;
}
#sdgs {
    width: 60px;
    margin: 0;
}

@media screen and (max-width: 768px)  {

#footer-banner-area ul li {
    width: 100%;
    height: 200px;
    max-height: none;
}

#footer-banner-area ul {
    display: block;
    width: 100%;
}

.footer-banner-name {
    font-size: 2.4rem;
}


#footer {
          display: block;
        margin-bottom: 50px;
}
#footer-logo {
    margin: 0 auto;
}
#logo-area {
    margin-bottom: 30px;
}
#footer-info {
    text-align: center;
    line-height: 1.6;
    margin-bottom: 30px;
}
.footer-block h4 {
    font-size: 1.4rem;
    text-align: left;
}
.footer-block ul li {
    font-size: 1.2rem;
  text-align: left;
}
#footer-nav-area {
    display: block;
    text-align: center;
}
.footer-block {
    display: inline-block;
    vertical-align: top;
}
address {
    font-size: 1.2rem;
}
#sdgs {
    width: 40px;
}


}


/*----------------------------------------
■トップページ
-----------------------------------------*/

#top-message-catch {
    font-weight: 700;
    font-size: 5rem;
    line-height: 1.4;
    display: inline-block;
    border-bottom: solid 2px;
    padding-bottom: 20px;
    margin-bottom: 30px;
    margin-top: -1em;
    color: #0065ad;
}

#top-message-text {
    margin: 0;
    font-size: 1.8rem;
    line-height: 3.3;
    font-weight: 700;
    color: #0065ad;
}

.top-message-mark {
    position: absolute;
    top: 0;
    width: 60vw;
    max-width: 800px;
    left: 820px;
    margin: 0;
}

#top-company-area,
#top-service-area {
    background: #0065ad;
}

#top-company-area .midashi-h2,
#top-service-area .midashi-h2,
#top-company-area .midashi-h2 span,
#top-service-area .midashi-h2 span{
color:#FFF;
}


#top-company-area {
    padding-bottom: 0;
}
#top-company-image {
    margin-left: calc(-1 * ((100vw - (1200px + 10vw)) / 2));
    width: calc(100% + 10vw);
border-radius: 0 10px 0 0;
    overflow: hidden;
}

@media (max-width: 1500px) {
  #top-company-image {
    margin-left: -5vw;
    width: calc(100% + 5vw);
  }
}



#top-company-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    margin-bottom: 40px;
}

#top-company-text span {
    font-size: 0.9em;
    display: inline-block;
    margin-top: 10px;
}
#top-company-text {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: #FFF;
    line-height: 1.8;
}


#top-service {
}








#top-service-pn {
    position: absolute;
    right: 5vw;
    top: 40px;
    font-size: 0;
}

#top-service-pn div:last-child {
    margin-right: 0;
}

#top-service-pn div {
    display: inline-block;
    width: 20px;
    margin-right: 30px;
    opacity: .6;
 transition: all 0.4s ease;
}
#top-service-pn div:hover{
 opacity: 1;
}


.top-service-slider {
    margin-right: -5vw;
}

@media screen and (min-width: 1501px) {
  .top-service-slider {
    margin-right: calc(-1 * ((100vw - (1200px + 10vw)) / 2));
  }
}

.top-service-slider .slick-list {
    padding: 0 5vw 0 0 !important;
}


.top-service-item {
    padding-right: 80px;
    box-sizing: border-box;
}

.top-service-img {
    width: 50%;
    background: #DDD;
    margin-right: 40px;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
}
.top-service-img img {
  width: 100%;
  height: 100%;
object-fit:cover;
}

.top-service-textbox {
    width: 50%;
}

.top-service-no {
    display: block;
    font-weight: 700;
color: #FFF;
    font-size: 6rem;
    margin-bottom: 20px;
    line-height: 1;
}

.top-service-more .more-text {
    color: #FFF;
}


.top-service-title {
    font-size: 5.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 40px;
    color: #FFF;
}
.top-service-title span{
 font-size: 2.8rem;
display:block;
}
.top-service-desc {
    font-size: 1.8rem;
    margin: 0;
color: #FFF;
    margin-bottom: 30px;
}

.top-service-itembox {
    display: flex;
    align-items: top;
    justify-content: space-between;
    box-sizing: border-box;
}

#top-strength-item-area {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}
.top-strength-item {
    width: 47%;
}
.top-strength-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-strength-img {
width: 100%;
    background: #EEE;
    margin-bottom: 20px;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
}

.top-strength-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0065ad;
    text-align: center;
    margin-bottom: 16px;
}
.top-strength-desc {
    margin: 0;
}





/* slick arrows */
.slick-prev, .slick-next {
  font-size: 24px;
  color: #005bac;
  background: transparent;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
}
.slick-prev {
  left: -40px;
}
.slick-next {
  right: -40px;
}

/* optional: dot styling */
.slick-dots {
  margin-top: 30px;
  text-align: center;
}
.slick-dots li button:before {
  color: #005bac;
  opacity: 0.4;
}
.slick-dots li.slick-active button:before {
  opacity: 1;
}

#top-news-lr {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}
#top-news-l {
    width: 30%;
}
#top-news-r {
    width: 70%;
}
#top-news-list li {
    margin-bottom: 10px;
}
#top-news-list li:last-child {
    margin-bottom: 0;
}
#top-news-list li a {
    background: #f9f9f9;
    display: block;
    padding: 30px 5vw;
    box-sizing: border-box;
    border-radius: 10px;
    text-decoration: none;
 transition: all 0.4s ease;
}
.news_date {
    display: inline-block;
    font-weight: 700;
    color: #0065ad;
    font-size: 1.8rem;
    margin-right: 5vw;
    line-height: 1.4;
}
.news_title {
    display: inline-block;
    line-height: 1.6;
    font-weight: 700;
    font-size: 1.8rem;
 transition: all 0.4s ease;
}

#top-news-list li a:hover .news_title{
  font-size: 2rem;
}


#top-news-list li a:hover {
    background: #f1f1f1;
}





@media screen and (max-width: 768px)  {


.top-service-itembox{
display: block;
}
.top-service-img {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
}
.top-service-textbox {
    display: block;
    width: 100%;
}
#top-service-pn {
    top: 14px;
}

.top-service-title {
font-size: 3rem;
        line-height: 1.4;
        margin-bottom: 14px;
}
.top-service-title span {
    font-size: 2rem;
}


.top-service-no {
margin-bottom: 6px;
        font-size: 3.6rem;
}

.top-service-desc {
    font-size: 1.6rem;
    margin-bottom: 20px;
}



ul.top-service-list {
    display: block;
}


#top-message-catch {
    font-size: 3.6rem;
    margin-bottom: 20px;
}

#top-message-text {
    margin: 0;
    font-size: 1.6rem;
    line-height: 2.2;
}
#top-message-text br {
    display: none;
}
#top-message {
    padding-bottom: 400px;
}
.top-message-mark {
    position: absolute;
    top: auto;
    bottom: 0px;
    width: 400px;
    max-width: none;
    left: auto;
    margin: 0;
    right: -100px;
}

#top-news-lr {
    display: block;
}
#top-news-l {
    width: 100%;
}
#top-news-r {
    width: 100%;
}
.news_date {
    display: block;
    margin-right: 0;
}
#top-news-more {
    position: absolute;
    right: 5vw;
    top: 20px;
}

#top-company-head {
    display: block;
}

#top-company-text {
    margin-bottom: 20px;
    font-size: 1.8rem;
}
#top-company-more {
    text-align: right;
        position: absolute;
        top: 20px;
        right: 5vw;
}

#top-strength-item-area {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.top-strength-item{
    width: 100%;
}
.top-strength-img {
        margin-bottom: 12px;
    width: 100%;
    margin-right: 0;
}



.top-strength-textbox {
    width: 100%;
}
.top-strength-title {
          font-size: 2.2rem;
        line-height: 1.4;
        margin-bottom: 10px;
}

#top-service-left {
    display: none;
    overflow: visible;
}
.top-service-name {
font-size: 2rem;
padding: 0px;
}
.top-service-text-section {
    max-height: none;
}
.top-service-text {
    opacity: 1;
    font-size: 1.4rem;
    transform: translateY(0em);
    padding-top: 0;
width: 65%;
}
.top-service-item {
         padding-right: 5vw;
}
ul.top-service-list li:first-child {
    padding-top: 0;
}
.top-service-namebox {
    margin-bottom: 16px;
}

.top-service-sp-img {
 display: block;
    width: calc(35% - 20px);
    aspect-ratio: 3 / 4;
    vertical-align: top;
    margin-bottom: 0;
    margin-right: 20px;
    box-sizing: border-box;
}

.top-service-sp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#top-strengts-pn {
    top: 20px;
}

}





/*----------------------------------------
■会社
-----------------------------------------*/


#company-message-lr {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}


#company-message-r {
     width: calc(55% + 5vw);
    margin-right: -5vw;
    box-sizing: border-box;
}


#company-message-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: #DDD;
}

#company-message-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#company-message-l {
    padding-right: 80px;
    box-sizing: border-box;
}

#company-message-catch br {
    display: none;
}
#company-message-catch {
font-size: 5.2rem;
    font-weight: 700;
    line-height: 1.4;
    color: #0065ad;
    margin-bottom: 40px;
}

#company-message-text {
    font-size: 1.8rem;
    margin-bottom: 50px;
}

#company-message-name span {
    font-size: .8em;
    margin-right: 10px;
}
#company-message-name {
    margin: 0;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.6;
}


#company-prof-area {
    background: #0065ad;
}

#company-prof-r {
    width: calc(100% - 300px);
}
#company-prof-l {
    width: 300px;
}

#company-prof-lr {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}
#company-prof-title,
#company-prof-title span {
    color: #FFF;
}

.prof-t {
    border-collapse: separate;
    border-spacing: 30px;
}

.prof-t th, .prof-t td {
    padding: 0px 30px 30px;
    font-size: 1.8rem;
    line-height: 1.8;
    color: #FFF;
}

.prof-t td {
    border-bottom: solid 1px #025289;
}

.prof-t td a {
    color: #FFF !important;
    text-decoration: none;
}
.prof-t th {
      font-weight: 700;
    text-align: left;
    border-bottom: solid 1px;
    font-size: 2rem;
}

#company-prof-more .more-text {
    color: #FFF;
}

@media screen and (max-width: 768px)  {
#company-message-lr {
    display: block;
}
#company-message-l {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
}
#company-message-catch {
    font-size: 3rem;
    margin-bottom: 20px;
}
#company-message-text {
    font-size: 1.6rem;
    margin-bottom: 20px;
}
#company-message-name {
    font-size: 2rem;
    text-align: right;
}
#company-message-r {
    margin: 0 auto;
    width: 200px;
}

#company-prof-lr {
    display: block;
}

#company-prof-l {
    width: 100%;
}
#company-prof-r {
    width: 100%;
}
.prof-t {
    border-collapse: separate;
    border-spacing: 0px;
}
.prof-t th, .prof-t td {
    padding: 0;
}

.prof-t th, .prof-t td {
    display: block;
    padding: 0;
}
.prof-t th {
    display: inline-block;
    margin-bottom: 10px;
}

.prof-t td {
    border-bottom: none;
    padding-bottom: 20px;
    font-size: 1.6rem;
}
.prof-t tr:last-child td {
    padding-bottom: 0;
}

#company-prof-more {
    position: absolute;
    right: 5vw;
    top: 20px;
}
#company-map iframe {
    height: 400px;
}


}



/*----------------------------------------
■事業内容
-----------------------------------------*/


.pagelink{
padding-top:120px;
margin-top:-120px;
}
#service-head-catch {
    font-weight: 700;
    font-size: 4rem;
    line-height: 1.6;
    margin-bottom: 30px;
}
#service-head-text {
    margin-bottom: 100px;
}


.service-contents-catch {
    font-size: 2.6rem;
    font-weight: 700;
    color: #0065ad;
    line-height: 1.6;
    margin-bottom: 20px;
}
.service-contents-name-no {
    color: #0065ad;
    font-size: .9em;
    margin-right: 10px;
}

.service-contents-name {
    font-weight: 700;
    font-size: 5.2rem;
    line-height: 1.4;
    margin-bottom: 40px;
}

.service-contents-name-s {
    font-size: .6em;
}

.service-contents-cbox {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}


.service-contents-box {
    padding-bottom: 80px;
    margin-bottom: 80px;
    border-bottom: solid 1px #EEE;
}
.service-contents-box:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: none;
}

.service-contents-imgbox {
    width: 40%;
}

.service-contents-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-contents-textbox {
    width: 60%;
    box-sizing: border-box;
    padding-left: 50px;
}
.service-contents-cbox-text {
    margin-bottom: 40px;
}

.service-contents-cbox-catch {
    font-weight: 700;
    font-size: 2.6rem;
}

.service-contents-cbox-dl dd:last-child {
    margin-bottom: 0;
}
.service-contents-cbox-dl dd {
    font-size: 1.6rem;
    margin-bottom: 40px;
}
.service-contents-cbox-dl dt {
    color: #0065ad;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.service-contents-img {
    width: 100%;
    aspect-ratio: 3 / 3.5;
    background: #EEE;
    border-radius: 10px;
    overflow: hidden;
}


ul.service-contents-cbox-list li span {
      display: inline-block;
    width: 36px;
    height: 36px;
    border: solid 2px;
    margin-right: 14px;
    padding-top: 2px;
    text-align: center;
    color: #0065ad;
    box-sizing: border-box;
    border-radius: 50%;
}

ul.service-contents-cbox-list li {
    background: #f9f9f9;
    padding: 14px 20px;
    margin-bottom: 10px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.6;
}


.service-flow-list::before {
    content: "";
    position: absolute;
    top: 50%;
    height: 10px;
    width: 100%;
    left: 0;
    display: block;
    background: #0065ad;
    margin-top: -5px;
}

.service-flow-list {
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

.service-flow-list li {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px 14px 30px;
    text-align: center;
    position: relative;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.6;
    text-align: left;
    box-sizing: border-box;
width:calc((100% - 90px) / 10);
    display: flex;
    writing-mode: vertical-rl;
    text-orientation: upright;
align-items: center;
}

.service-flow-list li span {
    display: inline-block;
    color: #0065ad;
    border: 2px solid;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    text-align: center;
    padding-top: 2px;
    box-sizing: border-box;
    margin-bottom: 10px;
    writing-mode: horizontal-tb;
}
.sakusei-flow-area {
    margin-top: 40px;
}
.service-contents-h3 {
    color: #0065ad;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

@media screen and (max-width: 768px)  {
#service-head-catch{
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 1.4;
    margin-bottom: 20px;
}
#service-head-text {
    margin-bottom: 50px;
}
.service-contents-catch {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.service-contents-name {
    font-size: 3.2rem;
    line-height: 1.4;
    margin-bottom: 30px;
}
.service-contents-name-no {
    font-size: .8em;
    margin-right: 0px;
    display: block;
    margin-bottom: 0;
}
.service-contents-name-s {
      font-size: .6em;
    display: block;
}
.service-contents-cbox {
    display: block;
}
.service-contents-img {
    width: 100%;
    aspect-ratio: 4 / 3;
margin-bottom:20px;
}
.service-contents-imgbox {
    width: 100%;
}

.service-contents-textbox {
    width: 100%;
    padding: 0;
}
.service-contents-cbox-catch {
    font-size: 2.2rem;
    line-height: 1.6;
    margin-bottom: 10px;
}
.service-contents-cbox-text {
    margin-bottom: 30px;
}
.service-contents-cbox-dl dt {
    font-size: 1.6rem;
    margin-bottom: 8px;
}
.service-contents-cbox-dl dd {
    font-size: 1.4rem;
    margin-bottom: 20px;
}
.sakusei-flow-area {
    margin-top: 30px;
}
.service-contents-h3 {
    margin-bottom: 16px;
    font-size: 1.6rem;
}
ul.service-flow-list {
    display: block;
}
.service-flow-list li {
    width: 100%;
    text-align: left;
    writing-mode: horizontal-tb;
    text-orientation: sideways;
    margin-bottom: 10px;
    padding: 14px 20px 14px;
    box-sizing: border-box;
        font-size: 1.5rem;
}
ul.service-contents-cbox-list li {
    font-size: 1.5rem;
}
ul.service-contents-cbox-list li span {
    width: 34px;
    height: 34px;
}


.service-flow-list::before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 10px;
    left: 50%;
    display: block;
    background: #0065ad;
   margin-top: 0px;
    margin-left: -5px;
}
.service-flow-list li span {
    margin-bottom: 0;
    margin-right: 10px;
}
.service-contents-box {
    padding-bottom: 40px;
    margin-bottom: 40px;
}


}

/*----------------------------------------
■お問い合わせ
-----------------------------------------*/

.wpcf7 form .wpcf7-response-output{
    text-align: center;
}
.wpcf7 form.sent .wpcf7-response-output {
    border: none;
    background: #45b450;
    color: #FFF;
    font-weight: 700;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border: none !important;
    background: #ff9b02;
    color: #FFF;
    font-weight: 700;
}



#form-area {
    max-width: 1200px;
    margin: 0 auto;
}


.form-t td, .form-t th {
    padding: 10px 0px;
    box-sizing: border-box;
}


.form-t td {
    padding-left: 80px;
}


.form-t th {
    width: 300px;
    text-align: left;
    position: relative;
    font-weight: 700;
    font-size: 2rem;
    padding-top: 20px;
}

.hissu {
    display: inline-block;
    background: #0065ad;
    font-size: 1.4rem;
    line-height: 1.4;
    padding: 2px 10px;
    color: #FFF;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0%, -50%);
}

.form-t input, .form-t textarea, .form-t select {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    font-weight: 700;
    font-size: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
    border: none;
}

::placeholder {
    font-size: 1.6rem;
    font-weight: 700;
    color: #e0e0e0;
}

.form-t {
    margin-bottom: 60px;
}



.form-submit {
    text-align: center;
    margin: 0;
}


.form-submit input {
       font-size: 2.6rem;
    font-weight: 700;
    padding: 20px 60px;
    box-sizing: border-box;
    color: #FFF;
    background: #0065ad;
    border: none;
    border-radius: 10px;
}
:disabled {
    opacity: .2;
}

span.wpcf7-spinner {
    display: block;
    margin-top: 20px;
    margin: 20px auto 0;
}
.form-check-kakunin {
    text-align: center;
    margin-bottom: 40px;
}

.form-check-kakunin .wpcf7-list-item {
    margin: 0;
}

.your-message-tr th .hissu {
    top: 40px;
}

.your-message-tr th {
    vertical-align: top;
}




@media screen and (max-width: 768px)  {

.form-t td, .form-t th {
    display: block;
    padding: 0;
}
.form-t td {
    padding-bottom: 20px;
}

.form-t th {
    padding-bottom: 10px;
    width: 100%;
    font-size: 1.8rem;
}
.form-t input, .form-t textarea, .form-t select {
    font-size: 1.6rem;
    padding: 16px;
}
.hissu {
    font-size: 1.2rem;
    top: 16px;
}
.your-message-tr th .hissu {
    top: 16px;
}
.form-t {
    margin-bottom: 20px;
}
.form-submit input {
    font-size: 2.2rem;
    padding: 14px 40px;
}


}



/*----------------------------------------
■採用情報
-----------------------------------------*/


#recruit-appli-more {
    position: absolute;
    right: 5vw;
    top: 40px;
}

#recruit-appli-more .dot-button{
background:#0065ad;
}
#recruit-appli-more .dot-button .arrow {
    background: url(/wp-content/uploads/arrow2.svg) no-repeat center center;
    background-size: contain;
}



#recruit-interview-area {
    background: #0065ad;
}

#recruit-message-title {
    font-weight: 700;
    font-size: 4rem;
    margin-bottom: 40px;
    line-height: 1.3;
}
#recruit-message-area {
    padding-bottom: 0;
}


#recruit-message-text {
    margin-bottom: 0px;
}

#recruit-message-img {
    background: #DDD;
    height: 600px;
    margin-right: -5vw;
    border-radius: 10px 0 0 10px;
    box-sizing: border-box;
    overflow: hidden;
}



#recruit-interview-title, #recruit-interview-title span {
    color: #FFF;
}



#job-offer-box-area {
     display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
}

.job-offer {
    background: #f9f9f9;
    box-sizing: border-box;
    padding: 60px;
    border-radius: 10px;
}

.job-offer-name {
    font-weight: 700;
    font-size: 2.6rem;
}
.job-offer-kyuyo {
    font-weight: 700;
    font-size: 2rem;
    color: #0065ad;
}
.job-offer-kyuyo span {
    font-size: 1.2em;
}


.job-offer-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #0065ad;
    border-radius: 50%;
    margin-right: 10px;
}


@media screen and (max-width: 768px)  {
#recruit-message-title {
    font-size: 2.6rem;
    margin-bottom: 20px;
}
#recruit-appli-more {
    top: 20px;
}
#job-offer-box-area {
    gap: 10px;
    grid-template-columns: 1fr;
}
.job-offer {
    padding: 30px;
}
.job-offer-kyuyo {
    font-weight: 700;
    font-size: 1.8rem;
line-height: 1.6;
    margin-bottom: 10px;
}

ul.job-offer-list li {
    font-size: 1.5rem;
}
.job-offer-name {
    font-size: 2.2rem;
}


}



/*----------------------------------------
■プライバシーポリシー
-----------------------------------------*/


#privacy-contents {
    max-width: 1000px;
}

#privacy-head {
    margin-bottom: 60px;
}
#privacy-list dt span {
    border-bottom: solid 2px #0065ad;
    display: inline-block;
    padding-bottom: 2px;
    margin-right: 10px;
}
#privacy-list dt {
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.privacy-list-box {
    margin-bottom: 60px;
}
.privacy-list-box:last-child {
    margin-bottom: 0;
}
#privacy-info {
    margin-top: 30px;
    margin-bottom: 0;
    font-weight: 700;
}
.privacy-list-box ul li::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #0065ad;
    border-radius: 50%;
    margin-right: 10px;
}

.privacy-list-box ul {
    margin-top: 20px;
}
.privacy-list-box ul li {
}

@media screen and (max-width: 768px)  {
#privacy-head {
    margin-bottom: 30px;
}
#privacy-list dt {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 14px;
}

#privacy-list dd {
    font-size: 1.4rem;
}
.privacy-list-box {
    margin-bottom: 40px;
}
#privacy-list dt span {
    display: block;
    padding-bottom: 2px;
 margin-right: 0px;
    margin-bottom: 10px;
    width: 24px;
    text-align: center;
}

.privacy-list-box ul {
    margin-top: 10px;
}
.privacy-list-box ul li {
    font-size: 1.4rem;
}


}


/*----------------------------------------
■ブログ
-----------------------------------------*/

#single-news-contents {
    margin-bottom: 80px;
}
#single-news-contents p{
 margin-bottom: 40px;
}

#single-news-contents h2{
font-size:2.2rem;
line-height:1.6;
 margin-top: 40px;
 margin-bottom: 40px;
font-weight:700;
}

#single-news-contents h3{
font-size:1.8rem;
line-height:1.6;
 margin-top: 40px;
 margin-bottom: 40px;
font-weight:700;
color:#0065ad;
}

#single-news-contents h2::before{
content:"■";
font-size:.8em;
}

#single-news-all .dot-button {
    background: #0065ad;
}
#single-news-all .dot-button .arrow {
    background: url(/wp-content/uploads/arrow2.svg) no-repeat center center;
    background-size: contain;
}
#single-news-all {
    text-align: center;
    margin: 0;
}
#single-head {
    margin-bottom: 60px;
}
#singlename {
    font-weight: 700;
    font-size: 4rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

#singledate {
    font-size: 2rem;
    color: #0065ad;
    font-weight: 700;
    margin: 0;
}
#single-news-contents, #single-news-contents p {

    font-size: 1.8rem;
}

#single-news {
    max-width: 800px;
}


#news-all-list-area #top-news-list li a{
    padding: 32px 5vw;
}

#news-all-list-area .news_title {
    font-size: 2.4rem;
}

#news-all-list-area #top-news-list li a:hover .news_title{
  font-size: 2.6rem;
}

#news-all-list-area .news_date {
    font-size: 2.2rem;
}





#single_social{
float:left;
width:50%;
	list-style:none;
}
.single-post-info{
float:right;
width:50%;
    line-height: 1;
text-align:right;
font-size:12px;
}


#single_social li{
	float:left;
}
.postmeta{
	
}
.postmeta p{
}


@media screen and (max-width: 768px)  {
#news-all-list-area .news_title {
    font-size: 1.8rem;
    line-height: 1.4;
}
#news-all-list-area .news_date {
    font-size: 1.8rem;
}
#news-all-list-area #top-news-list li a:hover .news_title{
  font-size: 2rem;
}
#news-all-list-area #top-news-list li a {
    padding: 28px 5vw;
}


#singlename {
    font-size: 3rem;
    line-height: 1.2;
}

#singledate {
    font-size: 1.8rem;
}

#single-news-contents, #single-news-contents p {
    font-size: 1.6rem;
}
#single-head {
    margin-bottom: 30px;
}
#single-news-contents {
    margin-bottom: 40px;
}

}


/*----------------------------------------
■404
-----------------------------------------*/

#contents404 {
    padding: 200px 0 120px;
    text-align: center;
}
.notfound-title {
    font-weight: 700;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 40px;
}
.notfound-text {
    margin-bottom: 60px;
}


.notfound-title span{
font-size:3em;
}

#notfound-more .dot-button {
    background: #0065ad;
}
#notfound-more .dot-button .arrow{
    background: url(/wp-content/uploads/arrow2.svg) no-repeat center center;
    background-size: contain;
}



@media screen and (max-width: 768px)  {
#contents404 {
    padding: 150px 5vw 80px;
    text-align: center;
}
.notfound-title {
    font-size: 2.6rem;
}
.notfound-text {
font-size:1.4rem;
    margin-bottom: 40px;
}


}


/*----------------------------------------
■個別設定
-----------------------------------------*/

.fadein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1s;
  &.fadein-left{
      transform: translate(-30px,0);
  }
  &.fadein-right{
      transform: translate(30px,0);
  }
  &.fadein-up{
      transform: translate(0,-30px);
  }
  &.fadein-bottom{
      transform: translate(0,30px);
  }
  &.scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
}

.slidein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.0s;
  &.slidein-left{
      transform: translate(-100%,0);
  }
  &.slidein-right{
      transform: translate(100%,0);
  }
  &.slidein-up{
      transform: translate(0,-100%);
  }
  &.slidein-bottom{
      transform: translate(0,30%);
  }
  &.scrollin{
    transform: translate(0, 0)!important;
    opacity: 1!important;
  }
}
