/*
Theme Name: y_テンプレート
Author: Ycreer
Version: 1.0
Description: y_テンプレート theme
*/

@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
/* ===================================================================
// 基本スタイル
// ===================================================================*/

html {
  font-size: 62.5%;
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-font-feature-settings: "pkna" 1;
          font-feature-settings: "pkna" 1;
  height: 100%;
}


body {
	/*ヘッダーフッター等*/
	--thema-color: #E0AD01;/*メインカラー*/
	--themafont-color: #000;/*メイン文字カラー*/
	--copyright-color:#fff;/*コピーライト文字色*/
	--copyrightback-color:#000;/*コピーライト背景色*/
	/*全体背景*/
	--bodyback-color: #fff;
	/*グロナビ文字カラー*/
	--gnav-color:#000;
	/*ブロックの背景色と文字色*/
	--blockback-color:#F2F2F2;/*ブロック背景色*/
	--blockfont-color:#000;/*ブロック文字色*/
	/*ボタン１*/
	--btn1font-color:#000;/*通常時文字色*/
	--btn1border-color:#E0AD01;/*枠色＆ホバー背景色*/
	--btn1hover-color:#fff;/*ホバー文字色*/
	/*ボタン２*/
	--btn2font-color:#fff;/*通常時文字色*/
	--btn2border-color:#E0AD01;/*枠色＆ホバー背景色*/
	--btn2hover-color:#000;/*ホバー文字色*/
	/*スクロール*/
	--scroll-color: #E0AD01;
 margin: 0;
  padding: 0;
  background-color: var(--bodyback-color);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--themafont-color);
  font-weight: 400;
  overflow-x: hidden;
  height: 100%;
  max-width: 100%;
}
#index{
	margin-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.6rem;
  }
	#index .header .btn{
	display: none;
}
	#index .mh .header .btn{
	display: inline;
}
#index{
	margin-bottom: 0;
}
}


/* ボックスサイズ */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* 行間 */
p{
  line-height: 1.8;
	font-family: 'Noto Sans JP', sans-serif;
}

div, h1, h2, h3, h4, h5 {
  line-height: 1.2;
}

/* リンク */
a {
  text-decoration: none;
  -webkit-transition: .3s;
  transition: .3s;
  color: #070707;
}


  a:hover {
    opacity: .7;
  }



/*  パンくずリスト　*/
.bread {
  padding: 0 10%;
	padding-top: 2rem;
}

.bread ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.bread ul li {
  margin-right: 1rem;
	color: var(--themafont-color);
}
.bread ul li a{
	color: var(--themafont-color);
}
.bread ul li:after {
  content: "\f105";
  font-family: "Font Awesome 5 free";
  font-weight: 700;
  margin-left: 1rem;
}

.bread ul li:last-child:after {
  display: none;
}

@media screen and (max-width: 450px) {
  .bread {
    padding: 1.2rem 10%;
  }
  .bread ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .bread ul li {
    margin-right: .4rem;
    font-size: 1.1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .bread ul li:after {
    margin-left: .4rem;
  }
  .bread ul li:last-child:after {
    display: none;
  }
}



/* img */
img {
  max-width: 100%;
  height: auto;
}

.object_fit_img {
  -o-object-fit: cover;
     object-fit: cover;
 font-family: 'Noto Sans JP', sans-serif;
}
/* flex */
.flex_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1020px) {
  .flex_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

/* width */
.inner {
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 1020px) {
  .inner {
    width: calc(100% - 4rem);
	text-align: center;
	gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    width: 80%;
	margin: auto 10%;
  }
}
/* pc & sp */
.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

.btn_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  padding: 2rem 0 0;
}


.btn_area p {
  text-align: center;
}

@media screen and (max-width: 980px) {
  .btn_area {
	  padding: 0;
	  margin-top: 3rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
	 .btn_area a{
	margin: 0;
	padding: 1rem 0;
}
}


.btn {
  padding: 1.5rem 3rem;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "josefin-sans", sans-serif;
  letter-spacing: 0.1em;
  min-width: 180px;
  text-align: left;
	vertical-align:  middle;
	border-radius: 30px;
	width: 25rem;
}
.btn p{
	margin-bottom: 0;
	font-family: "josefin-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.btn:hover{
	opacity: 1;
}

@media screen and (max-width: 450px) {
	.btn {
		padding: 1.5rem 3rem;
		width: 100%;
		display: flex;
	}
}


/* CSS Document */

 .ttl_b{
	border-bottom: 1px solid #707070;
	padding-bottom: 2rem;
	margin-bottom: 2rem;
}
.ttl_b h2{
   font-size: 1.6rem;
   font-weight: 500;
}
 .ttl_b p {
  font-size: 5.7rem;
  font-weight: 400;
  font-family: "josefin-sans", sans-serif;
  line-height: 6rem;
  margin: 1rem auto 2rem;
}
.ttl_b h3{
   font-size: 2rem;
   font-weight: 500;
   line-height: 3rem;
}
#index .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
	.ttl_b h2{
	   font-size: 1.6rem;
	 margin-bottom: 1rem;
		z-index: 2;
		margin-top: 1rem;
   }
   .ttl_b p {
	font-size: 4.5rem;
	line-height: 5rem;
	margin: 1rem auto 2rem;
   }
   .ttl_b h3{
	  font-size: 2rem;
	  line-height: 3rem;
   }
  #index .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #index .header a.btn {
    width: 140px;
    padding: 0;
    line-height: 34px;
    height: 36px;
    min-width: 140px;
    font-size: 1.1rem;
    margin-top: 2rem;
  }
  #index .header a.btn:after {
    font-size: 1rem;
    margin-top: -.5rem;
    right: .4rem;
  }
}

/* ===================================================================
// メインビジュアル、タイトル
// ===================================================================*/
#mainimg {
  position: relative;
	display: block;
	padding-top: 7.5rem;
	height: 100vh;
}
#mainimg .mainimg_contents {
	width: 100%;
}
#mainimg .mainimg_contents .slider{
	width: 60%;
	margin-left: 40%;
	height: 75vh;
	background-color: #fff;
}
#mainimg .mainimg_contents .slider img{
	height: 75vh;
	width: 100%;
	object-fit: cover;
}
@media screen and (max-width: 800px) {
	#mainimg {
		margin-bottom: 15%;
		height: 100vh;
	}
	#mainimg .mainimg_contents{
		padding-top: 0;
		height: 55vh;
	}
	#mainimg .mainimg_contents .slider,
	#mainimg .mainimg_contents .slider img{
		height: 55vh;
	}
	#mainimg .mainimg_contents .slider{
		width: 90%;
		margin-left: 10%;
	}
}
#mainimg .mainimg_contents .mainimg_back{
	position: absolute;
	width: 100%;
	height: 50%;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: -1;
}
#mainimg .mainimg_contents .information {
	color: #FFFFFF;
	position: absolute;
	font-weight: bold;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-start;
		  width: 40%;
	top: 25%;
    left: 0;
	background-color: #F2F2F2;
	padding: 5rem 2rem 5rem 5rem;
}
#mainimg .mainimg_contents .information img{
	width: 400px;
	margin: auto 60% 2% 0; 
}

#mainimg .mainimg_contents .information p {
  font-size: 2rem;
	color: #000;
  font-weight: normal;
	text-align: left;
	width: auto;
	display: inline-block;
	font-weight: 500;
}
#mainimg .mainimg_contents .information p.fv_p{
	font-size: 5.5rem;
	font-weight: 800;
	line-height: 6rem;
	margin-bottom: 2rem;
	font-family: "josefin-sans", sans-serif;
font-weight: 400;
font-style: normal;
}

@media screen and (max-width: 900px) {
}
@media screen and (max-width: 900px) {
	#mainimg{
		margin-top: -5rem;
	}
	#mainimg .mainimg_contents .information {
	width: 85%;
	top: auto;
	bottom: 7%;
    left: 0;
	padding: 3rem 2rem 3rem 3rem;
}
#mainimg .mainimg_contents .information img{
	width: 25rem;
	margin: auto 30% 1% 0; 
}
	#mainimg .mainimg_contents .information h1 {
  font-size: 4vw;
		align-content: center;
		align-items: center;
}
	#mainimg .mainimg_contents{
		height: 90vh;
		width: auto;
	}
	#mainimg .mainimg_contents .mainimg_contents .slider,
	#mainimg .mainimg_contents .mainimg_contents{
		height: 100%;
		width: auto;
}
	#mainimg .mainimg_contents .mainimg_contents img{
		height: 100%;
		width: auto;
	}
	#mainimg .mainimg_contents .information p{
	font-size: 2rem;
	line-height: 2rem;
}
	#mainimg .mainimg_contents .information p.fv_p{
	font-size: 4rem;
	line-height: 4rem;
}
}

.slide-dots {
	margin: 0;
	padding: 0;
	text-align: center;
	position: absolute;
	bottom: -10px;
	right: 10px;
  }
  .slide-dots li {
	display: inline-block;
	margin: 0 6px;
  }
  .slide-dots li button {
	position: relative;
	color: rgba(0, 0, 0, 0);
  }
  .slide-dots li button::before {
	background: #fff;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	cursor: pointer;
	height: 12px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 24px;
	width: 12px;
	border-radius: 15px;
  }
  .slide-dots li.slick-active button::before {
	background: #CBCBCB;
  }
  button {
	background: none;
	border: none;
	outline: none;
	padding: 0 ;
  }

/*スクロールダウン全体の場所*/
.scrolldown2{
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  bottom:3px;
  left:5rem;
}

/*Scrollテキストの描写*/
.scrolldown2 span{
    /*描画位置*/
  position: absolute;
  left:10px;
  bottom:67px;
    /*テキストの形状*/
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
	font-family: "josefin-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
}
@media screen and (max-width: 450px) {
	.scrolldown2{
	  right:4rem;
	  left: auto;
	}
	.scrolldown2 span{
  font-size: 13px;
}
}

/* 丸の描写 */
.scrolldown2:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom:0;
    left:-4px;
    /*丸の形状*/
  width:10px;
  height:10px;
  border-radius: 50%;
  background: #fff;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom:100px;}
     100%{bottom:-5px;}
 }

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
  100%{opacity:0;}
 }

/* 線の描写 */
.scrolldown2:after{
  content:"";
    /*描画位置*/
  position: absolute;
  bottom:0;
  left:0;
    /*線の形状*/
  width:1px;
  height: 100px;
  background: #fff;
}



#index .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#index .header a.btn {
  padding: 0 3.2rem;
  line-height: 34px;
  height: 36px;
  min-width: 140px;
  font-size: 1.3rem;
  font-family: "Oswald", sans-serif;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 1.8rem;
    letter-spacing: .2rem;
	  font-weight: 700;
  }
  #index .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #index .header a.btn {
    width: 140px;
    padding: 0;
    line-height: 34px;
    height: 36px;
    min-width: 140px;
    font-size: 1.1rem;
    margin-top: 2rem;
  }
  #index .header a.btn:after {
    font-size: 1rem;
    margin-top: -.5rem;
    right: .4rem;
  }
  #index .header h2.col + a.btn {
    margin-top: 0;
  }
}

/* ===================================================================
// main
// ===================================================================*/
main {
  margin: 0 0;
}

main#index {
  margin-top: 0;
}

main > section {
  padding: 1rem 0;
}

main > section:first-child {
  padding-top: 0;
}


@media screen and (max-width: 767px) {
  main {
    margin: 2rem 0 0;
	  overflow: hidden;
  }
  main > section {
    padding: 4rem 0;
  }
}


/* ===================================================================
// ヘッダー,
// ===================================================================*/
header {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
	position: fixed;
	z-index: 99;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
header .logo{
	 height: 3.5rem;
	width: auto;
	margin: 2rem 0 2rem 2rem;
}
header .logo img {
	height: 3.5rem;
  width: auto;
}
header .logo p{
	margin-top: 0.4rem;
	margin-left: 1rem;
}
@media screen and (max-width: 1040px) {
  header .logo img {
  }
}

@media screen and (max-width: 767px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
	padding-top: 2rem;
	  padding-bottom: 2rem;
  }
  header .logo{
	  margin: 1rem 0 1rem 2rem;
  }
}

@media screen and (max-width: 900px) {
	header{
		padding-right: 2rem; 
	}
}

.fixed {
  position: fixed;
  width: 100%;
}

/* ===================================================================
// フッター
// ===================================================================*/
footer .copy{
  font-size: 1.2rem;
  text-align: left;
	width: 100%;
	background: #fff;
	padding-top: 1rem;
	padding-bottom: 1rem;
	border-top: 1px solid #C4C4C4;
}
footer .copy .copyright{
	margin: auto 10%;
	font-family: "josefin-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
}
footer{
	background: #fff;
	padding-top: 2%;
	margin-top: 0;
}
footer .company{
	margin: 2% 10%;
}
footer .company .flex_wrap{
	justify-content: center;
	gap: 5%;
	color: #000;
	margin-bottom: 3%;
	text-align: center;
	flex-wrap: nowrap;
}
footer .company .flex_wrap .footer_info{
	width: 100%;
	text-align: left;
}
footer .company .flex_wrap .logo{
	width: 35%;
	text-align: left;
}
footer .company .flex_wrap .logo p:first-child{
	font-family: "josefin-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.8rem;
}
footer .company .flex_wrap .logo p:last-child{
	font-family: "josefin-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
}
footer .company .flex_wrap .logo img{
	width: 25rem;
	margin-bottom: 1rem;
}
#footer-menu{
	margin-top: 5%;
	width: 70%;
}
#footer-menu ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 1rem;
	list-style: none;
	font-weight: bold;
	width: 100%;
	text-align: left;
}
#footer-menu ul li{
	text-align: left;
	margin-bottom: 0;
	margin-right: 3rem;
}
#footer-menu ul a{
	text-align: left;
	margin-bottom: 0;
}
#footer-menu ul a p{
	font-family: "josefin-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	text-align: left;
	width: 100%;
}
#footer-menu li a:hover{
	opacity: 0.4;
}
@media screen and (max-width: 1100px) {
  .footer {
  }
  footer .company .flex_wrap{
	flex-wrap: wrap;
  }
  footer .company .flex_wrap .logo{
	  width: 100%;
  }
  footer .company .flex_wrap .logo img{
	margin-left: 0;
  }
  #footer-menu{
	  margin-top: 5%;
	  width: 100%;
  }
  #footer-menu ul{
	display: flex;
	width: 100%;
	flex-direction:row;
  }
  #footer-menu ul li{
	margin-right: 0;
	width: 45%;
  }
  footer .footer_info {
  flex-direction: column;
	  padding-bottom: 5%;
  }
	footer .footer_info div{
		width: 100%;
		margin-top: 5%;
	}
	footer .company .logo img{
	width: 60%;
	margin: 5% 20% 0;
}
}
@media screen and (max-width: 767px) {
  .footer {
  }
  footer .company .flex_wrap{
	flex-wrap: wrap;
	margin-bottom: 10%;
  }
  footer .company .flex_wrap .logo{
	  width: 100%;
	  margin-top: 10%;
  }
}

#footer-menu ul.footer_sns{
	gap: 5px;
	margin-top: 3rem;
}
#footer-menu ul.footer_sns li{
	margin-right: 1.5rem;
}
#footer-menu ul.footer_sns li a img{
	height: 3rem;
	width: auto;
	object-fit: contain;
}
@media screen and (max-width: 767px) {
	#footer-menu ul.footer_sns li{
		width: 3rem;
	}
	#footer-menu ul.footer_sns li a img{
		height: 100%;
		width: auto;
		object-fit: contain;
	}
}

/* ===================================================================
// メイン
// ===================================================================*/
.m_txt p{
	line-height: 2.5;
	margin-bottom: 2rem;
}
/* -------------------ABOUT ------------ */
#mission{
	background-image: url("images/top/about.png");/*変更*/
	background-size: cover;
	padding-bottom: 7rem;
	text-align: center;
	margin-top: -5px;
	 overflow-x: hidden;
	color: #fff;
	padding-top: 7rem;
	background-position: center;
}
#mission .ttl_b2{
	margin-bottom: 5rem;
}
#mission .btn_area{
	justify-content: center;
}
@media screen and (max-width: 767px) {
	#mission .ttl,
	#mission .m_txt{
		margin: auto 10%;
	}
	#mission .ttl_b2{
	margin-bottom: 3rem;
}
}

/* ------------------　会社概要 ------------ */

 .company_top{
	margin: 10% 10% 10% 0;
	color: #000;
	position: relative;
}
 .company_top .flex_wrap{
	position: relative;
}
 .company_top .flex_wrap .com_img{
	width: 60%;
}
.company_top .flex_wrap .com_img img{
	height: 100%;
	width: 100%;
	object-fit: cover;
}
 .company_top .flex_wrap .com_txt{
	width: 35%;
}
 .company_top .ttl_b{
	text-align: left;
}
 .company_top.company_top2{
	margin: 10% 0 10% 10%;
}
.company_top.company_top2 .ttl_b{
	 text-align: left;
}
.company_top.company_top .ttl_b{
	 text-align: left;
}
@media screen and (max-width: 900px) {
	.company_top .flex_wrap .btn p:first-child{
		margin-left: 3rem;
	}
	.company_top .flex_wrap .btn p:last-child{
		margin-right: 3rem;
	}
}
@media screen and (max-width: 767px) {
	.company_top{
   margin: 10% 10% 10% 0;
}
	.company_top .flex_wrap{
		flex-direction: column;
	}
	.company_top .flex_wrap .btn{
		flex-direction: row;
		padding: auto 2rem;
	}
	 .company_top .flex_wrap .com_img{
	width: 100%;
		 margin-bottom: 5%;
}
	 .company_top.company_top2{
	margin: 10% ;
}
 .company_top .flex_wrap .com_txt{
	width: 90%;
	margin-left: 10%;
}
	}
/* ------------------　サービス ------------ */
.service_top{
	padding: 7% 10%;
	background-color: #F2F2F2;
}
.service_top .ttl_b{
	border-bottom: 0px;
}
.service_top ul{
	gap: 4%;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.service_top ul li{
	width: 48%;
	height: 40vh;
	margin-bottom: 5%;
	position: relative;
	cursor: pointer;
	overflow: hidden;
}
.service_top ul li a{
}
.service_top ul li a img{
	width: 100%;
	height: 100%;
	transition: transform .6s ease;/* ゆっくり変化させる */
	object-fit: cover;
}
.service_top ul li a:hover{
	opacity: 1;
}
.service_top ul li a:hover img {
  transform: scale(1.1);/* 拡大 */
}
.service_top ul li a div{
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	padding:1rem 3rem;
	justify-content: space-between;
	align-items: center;
	align-content: center;
}
.service_top ul li a div h2{
	font-size: 2rem;
	margin-bottom: 0;
	line-height: 2rem;
}
.service_top ul li a div p{
	font-size: 2rem;
	margin-bottom: 0;
}
@media screen and (max-width: 1100px) {
.service_top ul li{
	height: 20vh;
}
}
@media screen and (max-width: 767px) {
	.service_top{
		padding: 15% 10%;
	}
	.service_top ul li{
		width: 100%;
		height: 30vh;
		margin-bottom: 3rem;
	}
}

/* -----------ABOUTページ---------------- */
.company_top.recruit_top{
	margin: 10% 0% 10% 10%;
}
.company_top.recruit_top .flex_wrap .com_img img{
	height: 80%;
	width: 100%;
	object-fit: cover;
}
.about_page .company_top.recruit_top .flex_wrap .com_img img{
	height: 100%;
}
.color_block{
	position: absolute;
	right: 0;
	bottom: 0;
	width: 40%;
	height: 30%;
	z-index: -1;
}
@media screen and (max-width: 767px) {
	.company_top.recruit_top .flex_wrap .com_img{
		order: 1;
	}
	.company_top.recruit_top .flex_wrap .com_txt{
		order: 2;
		width: 90%;
		margin: 5% 10% 0% 0%;
	}
	.company_top.recruit_top .flex_wrap .com_img{
   width: 100%;
		margin-bottom: 0%;
		margin-top: 5%;
}
.color_block{
	top: 8%;
}
}

/* -----------ブログ---------------- */
.news_top{
	margin-bottom: 5%;
	overflow: hidden;
}
.news_top .ttl_b{
	margin: auto 10% 3%;
}
.news_top .news_slick{
	margin-left: 10%;
	position: relative;
}
.news_top .slick01{
	width: 105%;
}
.news_top .slick01 li{
	padding-right: 15%;
}
.news_top .slick01 li a img{
	height: 35vh;
	margin-bottom: 1rem;
	object-fit: cover;
}
.news_top .slick01 li a p{
	font-family: "josefin-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #ACACAC;
}
.news_top .news_slick .slick-prev {
	position: absolute;
	top: 50%;
	margin-top: -3.2rem;
	font-size: 1.8rem;
	z-index: 20;
	left: -2rem;
	padding: 1rem 1.3rem;
	border-radius: 30px;
	opacity: 0.8;
}
.news_top .news_slick .slick-next {
	position: absolute;
	top: 50%;
	margin-top: -3.2rem;
	font-size: 1.8rem;
	z-index: 20;
	right: 8rem;
	padding: 1rem 1.3rem;
	border-radius: 30px;
	opacity: 0.8;
}
.news_top .btn_area{
	margin: 1rem 10%;
}
@media screen and (min-width: 1200px) {
.news_top .slick01 li a img{
	height: 180px;
}
}
@media screen and (max-width: 1100px) {
	.news_top .slick01 li a img{
		height: 15vh;
	}
}
@media screen and (max-width: 900px) {
	.news_top .btn_area .btn p:first-child{
		margin-left: 3rem;
	}
	.news_top .btn_area .btn p:last-child{
		margin-right: 3rem;
	}
}
@media screen and (max-width: 767px) {
	.news_top{
		padding-top: 0;
	}
	.news_top .slick01 li a img{
		height: 20vh;
	}
	.news_top .news_slick .slick-next {
		right: 2rem;
	}
}

/* -----------会社概要---------------- */
.com_top{
	background-color: #F2F2F2;
	padding: 7% 10%;
}
.com_top .ttl_b{
	width: 50%;
}
.com_top ul{
	gap: 4%;
	margin-top: 4%;
	flex-wrap: wrap;
}
.com_top ul li{
	width: 48%;
	height: 40vh;
	position: relative;
	margin-bottom: 3%;
}
.com_top ul li img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.com_top ul li a:hover{
	opacity: 1;
}
.com_top ul li a .com_cnt_box{
	width: 100%;
	height: 50%;
	opacity: 0.6;
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%,-50%);
}
.com_top ul li a:hover .com_cnt_box{
	height: 100%;
    transition:all 0.4s;
  display:block;
}
.com_top ul li a .com_cnt_ttl{
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%,-50%);
	text-align: center;
}
.com_top ul li a .com_cnt_ttl p{
	font-family: "josefin-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 5rem;
	line-height: 5rem;
	margin-bottom: 1rem;
}
.com_top ul li a .com_cnt_ttl h2{
	font-size: 2rem;
	line-height: 2rem;
}
.com_top .btn_area{
	justify-content: center!important;
	text-align: center!important;
	width: 100%;
}
@media screen and (max-width: 1100px) {
	.com_top ul li{
		height: 20vh;
	}
}
@media screen and (max-width: 900px) {
	.com_top .btn_area .btn p:first-child{
		margin-left: 3rem;
	}
	.com_top .btn_area .btn p:last-child{
		margin-right: 3rem;
	}
}
@media screen and (max-width: 767px) {
	.com_top{
		background-color: #F2F2F2;
		padding: 15% 10%;
	}
	.com_top .ttl_b{
		width: 100%;
	}
	.com_top ul li{
		width: 100%;
		height: 35vh;
		margin-bottom: 3rem;
	}
	.com_top .btn_area{
		width: 100%;
		padding-top: 0;
		margin-top: 0;
	}
	.com_top .btn_area .btn{
		width: 100%;
	}
}


/* -----------お問い合わせ---------------- */
 .top_contact{
	padding:5% 10%;
	text-align: center;
	margin-bottom: -12rem;
}
.top_contact .ttl_b{
	border-bottom: 0px;
	margin-bottom: 0;
}
 .top_contact .btn_area{
	justify-content: center;
	padding-top: 0;
}
.top_contact .btn_area .btn{
	border: #fff 1px solid;
}
@media screen and (max-width: 1400px) {
	 .top_contact{
	}
}
@media screen and (max-width: 960px) {
	 .top_contact{
		margin-bottom: 0;
	}
}
@media screen and (max-width: 900px) {
	.top_contact .btn_area .btn p:first-child{
		margin-left: 3rem;
	}
	.top_contact .btn_area .btn p:last-child{
		margin-right: 3rem;
	}
}
@media screen and (max-width: 767px) {
	.top_contact{
	   padding:15% 10%;
	}
	.top_contact .ttl_b{
		padding-bottom: 0;
	}
	 .btn_area{
	justify-content: center;
}
}

/* ===================================================================
// ボックス1
// ===================================================================*/
.company_top.boxcontent1{
	margin-top: 5%;
	margin-bottom: 5%;
}
.company_top.boxcontent1 .flex_wrap .com_img{
	width: 52%;
 }
 .company_top.boxcontent1 .flex_wrap .com_txt{
	width: 43%;
 }
 .company_top.boxcontent1 .flex_wrap .com_txt .ttl_b{
	padding-bottom: 0;
 }
 .company_top.boxcontent1 .flex_wrap .com_txt .ttl_b p{
	font-size: 4rem;
	font-weight: 600;
	margin-bottom: 0;
	line-height: 5.5rem;
 }
 @media screen and (max-width: 767px) {
	.company_top.boxcontent1{
		width: 90%;
		margin-right: 10%;
	}
	.company_top.boxcontent1 .flex_wrap .com_img{
		width: 100%;
	 }
	 .company_top.boxcontent1 .flex_wrap .com_txt{
		width: 90%;
		margin-left: 10%;
	 }
	 .company_top.boxcontent1 .flex_wrap .com_txt .ttl_b p{
		font-size: 3rem;
		line-height: 4.5rem;
	 }
 }

/* ===================================================================
// 下層ページ
// ===================================================================*/
#content{
	padding-top: 8rem;
	margin-bottom: 12rem;
}
#mainttl{
	padding: 2% 10%;
	border-bottom: 1px solid #C4C4C4;
}
#mainttl p{
	font-size: 2rem;
	font-family: "josefin-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
}
#mainttl h1{
	font-size: 4rem;
}
@media screen and (max-width: 767px) {
	#content{
		padding-top: 8rem;
		margin-bottom: 0;
	}
	#mainttl{
		padding: 5% 10%;
	}
	#mainttl h1{
	font-size: 3rem;
}
#mainttl p{
	font-size: 2rem;
}
}

/* 
===================================================================
// ABOUTページ
// ===================================================================*/
.about_page #mainttl{
}
.about_page .about_img{
	height: 70vh;
	padding: 0;
}
.about_page .about_img img{
	height: 70vh;
	width: 100%;
}
.about_page .ttl_b{
	margin-top: 2rem;
	margin-bottom: 3rem;
}
.about_page .slick02{
	margin: 5% auto;
}
.about_page .slick02 li{
	height: 25vh;
	padding-right: 5rem;
}
.about_page .slick02 li img{
	height: 25vh;
	width: 100%;
	object-fit: cover;
}
.about_page .company_top{
	margin: 7% 10% 7% 0;
}
.about_page .company_top.recruit_top{
	margin: 7% 0% 7% 10%;
}
@media screen and (max-width: 1100px) {
	.about_page .slick02 li{
		height: 20vh;
	}
}
@media screen and (max-width: 767px) {
	.about_page .slick02{
		margin: 10% auto;
	}
	.about_page .company_top{
		margin: 0% 10% 7% 0;
	}
}


/* 
===================================================================
// 会社概要ページ
// ===================================================================*/
.company_page #mainttl{
}

/* -----------理念---------------- */
.com_rinen{
	text-align: center;
	padding: 7% 10%;
	background-color: #F2F2F2;
}
.com_rinen .ttl_b{
	border-bottom: 0px;
	padding-bottom: 1rem;
	margin-bottom: 0;
}
@media screen and (max-width: 767px) {
	.com_rinen{
		padding: 15% 10%;
	}
	.company_page .com_rinen .ttl_b{
		padding-bottom: 0;
	}
}

/* -----------概要---------------- */
.enkaku{
	margin: 0 10%;
}
.enkaku.en_company .ttl_b{
	border-bottom: 0px;
	margin-bottom: 0;
}
.enkaku dl{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	text-align: left;
	gap: 0;
	border-top: 1px solid #707070;
}
.enkaku dl dt{
	width: 30%;
	padding: 2rem 2rem 2rem 3.5rem;
	border-bottom: 1px solid #707070;
	border-right: 1px solid #707070;
}
 .enkaku dl dd{
	width: 70%;
	padding: 2rem 2rem 2rem 4rem;
	border-bottom: 1px solid #707070;
}
.company_page .enkaku.en_company{
	background: none;
	color: none;
	padding-top: 10%;
	padding-bottom: 10%;
	color:  var(--themafont-color);
}
.company_page .enkaku.en_company iframe{
	width: 100%;
	margin: 4% 0% 0;
	height: 40vh;
}
@media screen and (max-width: 767px) {
	.enkaku {
		margin-top: 10%;
	}
	.enkaku dl{
	width: 100%;
	margin: 0% 0% auto;
	gap: 0;
	flex-wrap: wrap;
}
	.enkaku dl dt{
	width: 100%;
	border-right: 0px;
	border-bottom: 1px solid #DEDEDE;
	padding: 2rem 2rem 2rem 2rem;
}
 .enkaku dl dd{
	width: 100%;
	padding: 2rem 2rem 2rem 2rem;
}
	.company_page .enkaku.en_company iframe{
	width: 100%;
	margin-top: 5%;
	margin-bottom: 10%;
	height: 30vh;
}
}
/* 
===================================================================
// 事業内容ページ
// ===================================================================*/
.service_page .service_top{
	background: none;
	padding-top: 5%;
}
.service_page .company_top.boxcontent1:nth-child(even){
	background-color: #F2F2F2;
	padding: 7% 0 7% 10%;
	margin: 7% 0;
}
.service_page .company_top.boxcontent1:nth-child(even) .flex_wrap .com_img{
	order: 2;
}
.service_page .company_top.boxcontent1:nth-child(even) .flex_wrap .com_txt{
	order: 1;
}
@media screen and (max-width: 767px) {
	.service_page .service_top{
		background: none;
		padding-top: 2rem;
	}
	.service_page .company_top.boxcontent1:nth-child(even){
		padding: 15% 0 15% 10%;
		margin: 7% 0;
		width: 100%;
	}
	.service_page .company_top.boxcontent1:nth-child(even) .flex_wrap .com_img{
		order: 1;
		margin: auto 0 2rem;
		width: 100%;
	}
	.service_page .company_top.boxcontent1:nth-child(even) .flex_wrap .com_txt{
		order: 2;
		margin: auto 10% auto 0;
		width: 90%;
	}
}
/* 
===================================================================
// 採用ページ
// ===================================================================*/

.recruit_page .rec_mes{
	text-align: center;
	padding: 7% 10%;
}
.recruit_page .rec_mes .ttl_b{
	border-bottom: 0px;
	padding-bottom: 1rem;
	margin-bottom: 0;
}
@media screen and (max-width: 767px) {
	.com_rinen{
		padding: 15% 10%;
	}
	.company_page .com_rinen .ttl_b{
		padding-bottom: 0;
	}
}

/* ------- 福利厚生 ------*/
.rec_wel{
	background-color: #F2F2F2;
	padding: 7% 10%;
}
.rec_wel .ttl_b{
	width: 50%;
}
.rec_wel ul {
	gap: 2.5%;
	flex-wrap: wrap;
	margin-top: 5%;
}
.rec_wel ul li{
	width: 23%;
	background-color: #fff;
	margin-bottom: 3rem;
}
.rec_wel ul li h3{
	padding: 1rem 2rem;
	font-size: 2rem;
	font-weight: 500;
}
.rec_wel ul li p{
	margin: 1rem;
	line-height: 2.5rem;
	font-weight: 300;
}
@media screen and (max-width: 767px) {
	.rec_wel{
		padding: 15% 10%;
		margin-top: 10%;
	}
	.rec_wel ul li{
		width: 100%;
	}
}

/* ------- インタビュー ------*/
.rec_interview{
	margin: 7% 10%;
}
.rec_interview .ttl_b{
	text-align: center;
	border-bottom: 0px;
}
.rec_interview ul{
	gap: 3%;
}
.rec_interview ul li{
	width: 31%;
}
.rec_interview ul li div{
	padding: 1rem 2rem;
}
.rec_interview ul li div h3{
	font-size: 2.5rem;
	font-weight: 500;
}
.rec_interview ul li div p{
	line-height: 1.6rem;
	font-weight: 400;
	margin-bottom: 0.5rem;
}
.rec_interview ul li{
	overflow: hidden;
	position: relative;
}
.rec_interview ul li a img{
	width: 100%;
	height: 50vh;
	transition: transform .6s ease;/* ゆっくり変化させる */
	object-fit: cover;
	z-index: -1;
}
.rec_interview ul li a:hover{
	opacity: 1;
}
.rec_interview ul li a:hover img {
  transform: scale(1.1);/* 拡大 */
}
.rec_interview ul li a div{
	z-index: 4;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
}
@media screen and (max-width: 1100px) {
	.rec_interview ul li a img{
		width: 100%;
		height: 25vh;
	}
}
@media screen and (max-width: 767px) {
	.rec_interview{
		margin: 15% 10%;
	}
	.rec_wel .ttl_b{
		margin-bottom: 0;
	}
	.rec_interview ul li{
		width: 100%;
		margin-bottom: 3rem;
	}
	.rec_interview ul li a img{
		width: 100%;
		height: 40vh;
	}
}


/* ------- 募集要項 -------*/
.rec_recruit{
	background-color: #F2F2F2;
	padding: 7% 10%;
}
.faq_toggle{
	max-width: 100%;
	margin:0;
}
.faq-cnt{
	width: 100%;
}

.faq_toggle dl{
	text-align: center;
	background-color: #fff;
}
.faq_toggle dt.faq-cntdt{
  font-size: 2.2rem;
  position: relative;
  cursor: pointer;
  margin-top: 3%;
  align-items: center;
  align-content: center;
  padding-left: 3rem;
  background-color: #fff;
}
.faq_toggle dt.faq-cntdt h3{
	margin: 2rem 1rem;
}
.faq_toggle dt.faq-cntdt:hover{
	opacity: 0.9;
}
.faq_toggle dt.faq-cntdt:after {
  font-size: 1.6rem;
  content: "▼";
  margin-left: -2rem;
  right: 3rem;
  top: 35%;
  position: absolute;
}
.faq_toggle dt.faq-cntdt.open:after {
	content: "▲";
}
.faq_toggle .faq-cnt dd.faq-cntdd{
	width: 100%;
	text-align: left;
	display: none;
	margin-top: 0;
	padding:2% 5% 5%;
	background-color: #fff;
}
.faq_toggle .faq-cnt dd.faq-cntdd .flex_wrap{
	gap: 6%;
}
.faq_toggle .faq-cnt dd.faq-cntdd .flex_wrap.rec_dd_top img{
	width: 34%;
	margin: 0;
	height: 30vh;
	object-fit: cover;
}
.faq_toggle .faq-cnt dd.faq-cntdd .flex_wrap.rec_dd_top div{
	width: 60%;
	margin: 0;
}

.faq_toggle .faq-cnt dd.faq-cntdd .flex_wrap.rec_dd_top div p{
	font-weight: 400;
}
@media screen and (min-width: 2000px) {
	.faq_toggle .faq-cnt dd.faq-cntdd .flex_wrap.rec_dd_top img{
		height: 280px;
	}
}
@media screen and (max-width: 1100px) {
	.faq_toggle .faq-cnt dd.faq-cntdd .flex_wrap.rec_dd_top img{
		height: 15vh;
	}
}
@media screen and (max-width: 767px) {
	.rec_recruit{
		padding: 15% 10%;
	}
	.faq_toggle dt.faq-cntdt{
	  font-size: 2rem;
	  margin-top: 7%;
	  padding-left: 2rem;
	}
	.faq_toggle .faq-cnt dd.faq-cntdd .flex_wrap.rec_dd_top img{
		width: 100%;
		margin: 0;
		margin-top: 2rem;
		margin-bottom: 2rem;
		height: 20vh;
	}
	.faq_toggle .faq-cnt dd.faq-cntdd .flex_wrap.rec_dd_top div{
		width: 100%;
		margin: 0;
	}
	.faq_toggle .faq-cnt dd.faq-cntdd{
		padding:2% 10% 10%;
	}
}

/* ------- 募集要項 -------*/
.faq_toggle .faq-cnt dd .enkaku{
	margin: 0 0%;
}
.faq_toggle .faq-cnt dd .enkaku dl{
	background-color: #F8F8F8;
	text-align: left;
	margin-top: 3rem;
}
.faq_toggle .faq-cnt dd .enkaku dl dt{
	padding: 1.5rem 2rem 1.5rem 3.5rem;
}
.faq_toggle .faq-cnt dd .enkaku dl dd{
	padding: 1.5rem 2rem 1.5rem 4rem;
}
@media screen and (max-width: 767px) {
.faq_toggle .faq-cnt dd .enkaku dl dt{
padding: 1rem 1.5rem 1rem 1.5rem;
}
.faq_toggle .faq-cnt dd .enkaku dl dd{
padding: 1rem 1.5rem 1rem 1.5rem;
}
}

/* ------ エントリー ----*/
.rec_entry{
	position: relative;
}
.rec_entry_back{
	position: absolute;
	height: 100%;
	width: 100%;
	top: 50%;
	right: 50%;
	transform: translate(50%,-50%);
	opacity: 0.85;
	z-index: 0;
}
.rec_entry .ttl_b,
.rec_entry h4{
	z-index: 10;
	position: relative;
}
.rec_entry .ttl_b h3 p{
	font-size: 2rem;
	line-height: 3.5rem;
	font-weight: 600;
}
.rec_entry h4{
	font-size: 1.6rem;
	font-weight: 500;
}
.rec_entry .btn_area{
	justify-content: center;
	text-align: center;
}
@media screen and (max-width: 900px) {
	.rec_entry .btn_area .btn p:first-child{
		margin-left: 3rem;
	}
	.rec_entry .btn_area .btn p:last-child{
		margin-right: 3rem;
	}
}
@media screen and (max-width: 767px) {
	.rec_mes.rec_entry .ttl_b{
		margin-top: 15%;
	}
	.rec_entry .btn_area{
		margin-bottom: 15%;
	}
}


/* 
===================================================================
// インタビューページ
// ===================================================================*/
.interview_ttl{
	text-align: center;
	margin: 5% auto;
}
.interview_ttl h2{
	font-size: 4rem;
}
.service_page.interview_page .company_top.boxcontent1:nth-child(odd){
	background-color: #F2F2F2;
	padding: 7% 0 7% 10%;
	margin: 7% 0;
}
.service_page.interview_page .company_top.boxcontent1:nth-child(odd) .flex_wrap .com_img{
	order: 2;
}
.service_page.interview_page .company_top.boxcontent1:nth-child(odd) .flex_wrap .com_txt{
	order: 1;
}
.service_page.interview_page .company_top.boxcontent1:nth-child(even){
	background-color: #fff;
	padding: 0% 10% 0% 0;
	margin: 7% 0;
}
.service_page.interview_page .company_top.boxcontent1:nth-child(even) .flex_wrap .com_img{
	order: 1;
}
.service_page.interview_page .company_top.boxcontent1:nth-child(even) .flex_wrap .com_txt{
	order: 2;
}
.interview_page .btn_area{
	justify-content: center;
	text-align: center;
	padding-top: 0;
	margin-bottom: 10%;
}
.interview_page .btn_area .btn{
	justify-content: center;
}
.interview_page .top_contact{
   padding:5% 10%;
   text-align: center;
   margin-bottom: -20rem;
}
@media screen and (max-width: 767px) {
	.interview_ttl{
		margin: 5% auto -5%;
		padding-bottom: 0;
	}
	.service_page.interview_page .company_top.boxcontent1:nth-child(even){
		padding: 12% 0 12% 10%;
		margin: 7% 0;
		width: 100%;
	}
	.service_page.interview_page .company_top.boxcontent1:nth-child(even) .flex_wrap .com_img{
		order: 1;
		margin: auto 0 2rem;
		width: 100%;
	}
	.service_page.interview_page .company_top.boxcontent1:nth-child(even) .flex_wrap .com_txt{
		order: 2;
		margin: auto 10% auto 0;
		width: 90%;
	}
	.service_page.interview_page  .company_top.boxcontent1:nth-child(odd){
		padding: 15% 0 15% 10%;
		margin: 7% 0;
		width: 100%;
	}
	.service_page.interview_page  .company_top.boxcontent1:nth-child(odd) .flex_wrap .com_img{
		order: 2;
		margin: auto 0 2rem;
		width: 100%;
	}
	.service_page.interview_page  .company_top.boxcontent1:nth-child(odd) .flex_wrap .com_txt{
		order: 2;
		margin: auto 10% auto 0;
		width: 90%;
	}
	.interview_page .btn_area{
		width: 80%;
		margin: auto 10%;
		margin-bottom: 20%;
	}
	.interview_page .top_contact{
	   margin-bottom: 0;
	}
	.service_page.interview_page .company_top.boxcontent1:first-child{
		padding: 0% 0 7% 10%;
		margin-top: 0;
	}
}

/* 
===================================================================
// ニュース
// ===================================================================*/
.news_page #mainttl{
}
.news_page .bread{
	margin-bottom: 5%;
}
.news_page .btn_area{
	justify-content: center;
}

/* ===================================================================
// アーカイブ
// ===================================================================*/
#content .archive_list.news_archive{
 margin: auto 10%;
}
#content .archive_list .flex_wrap a{
	position: relative;
	width: 31%;
	margin-bottom: 5%;
	box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.16);
	padding: 2rem;
}
#content .archive_list.news_archive h3{
	margin-top: 1rem;
}
#content .archive_list.news_archive p.date{
	color: #ACACAC;
	font-family: "josefin-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
}
#content .archive_list .flex_wrap{
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 3%;
	padding: 0;
}

#content .archive_list.news_archive .flex_wrap a img{
	height: 180px;
	width: 100%;
	object-fit: cover;
}
#content .archive_list .arc_btn{
	text-align: center;
	justify-content: center;
	display: block;
	margin-bottom: 10%;
}
#content .archive_list .arc_btn a{
	border: #C09E5E 1px solid;
	padding: 2rem 4rem;
	border-radius: 30px;
}
#content .archive_list .arc_btn a:hover{
	background: #C09E5E;
	color: #fff;
}
@media screen and (max-width: 1100px) {
	#content .archive_list.news_archive .flex_wrap a img{
		height: 100px;
	}
}
@media screen and (max-width: 767px) {
	#content .archive_list.news_archive .flex_wrap a img{
		height: 170px;
	}
	#content .archive_list .flex_wrap a{
	position: relative;
	width: 100%;
		height: auto;
}
	#content .archive_list .flex_wrap a img{
	width: 100%;
		height: 17vh;
		object-fit: cover;
}
	.archive_list .arc_btn{
		margin-top: 5%;
	}
	#content .archive_list.news_archive .flex_wrap a{
		text-align: left;
	}
	#content .archive_list .flex_wrap a h3{
		font-size: 2rem;
	}
}

@media screen and (max-width: 450px) {
	#content .archive_list .flex_wrap a{
	width: 100%;
	margin-bottom: 10%;
}
	#content .archive_list .flex_wrap a img{
	width: 100%;
}
}

/* ページネーション　*/
.pagenavi{
	margin-bottom: 10%;
	margin-top: 5%;
}
.pagenavi .wp-pagenavi {
  text-align: center;
  padding: 2rem 0;
  font-size: 1.6rem;
  font-family: "josefin-sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6rem;
}

.pagenavi .wp-pagenavi a, .pagenavi .wp-pagenavi span {
  border: none;
  border: 1px solid #848484;
  color:  #848484;
  padding: 1.4rem 2.3rem;
	border-radius: 80px;
}
.pagenavi .wp-pagenavi .pages {
  border: 0px solid #848484;
}
.pagenavi .wp-pagenavi span.current {
  background-color: #848484;
  border: 1px solid #848484;
  color: #fff;
}

.btn_area.space{
	justify-content: space-around;
	column-gap: 5%;
	margin: 5% auto;
}
.btn_area.space a{
	border: 1px solid #848484;
	background: #848484;
	color:#fff;
	padding: 1rem 4rem;
	border-radius: 30px;
}
.btn_area.space a:hover{
	background: #fff;
	color: #848484;
	opacity: 1;
}
.arc_btn {
	text-align: center;
	margin-bottom: 10%;
	justify-content: center;
}
.arc_btn .back_single{
	border: 1px solid  var(--thema-color);
	padding: 1.5rem 6rem;
	border-radius: 30px;
	color: var(--thema-color);
}
.arc_btn .back_single:hover{
	background:  var(--thema-color);
	color: var(--bodyback-color);
	opacity: 1;
}
@media screen and (max-width: 767px) {
	.btn_area.space{
	margin-bottom: 10%;
}
}


.news_single {
	margin: auto 15%;
	width: 70%;
}
.news_single h2{
	font-size: 3rem;
	margin: 1% auto 2%;
}
.news_single .date{
	color: #ACACAC;
	font-size: 1.6rem;
	font-family: "josefin-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.news_single figure{
	margin-bottom: 5%;
}
.news_single figure img{
	width: 100%;
}
.news_single .news_content p{
	margin-bottom: 2%;
}
.news_single .news_content h2{
	border-left: #8E8E8E 15px solid;
	padding-left: 1.5rem;
	font-size: 2.5rem;
}
.news_single .news_content h3{
	border-bottom: 2px solid #8E8E8E;
	margin-top: 5%;
	padding-bottom: 1rem;
	font-size: 2rem;
	margin-bottom: 5%;
}
.news_single .news_content h4{
	margin-top: 5%;
	font-size: 1.8rem;
	margin-bottom: 2%;
}
.news_single .news_content h4::before {
	display: inline-block;
	margin: 0 1rem 0 0;
	width: 1.8rem;
	height: 1.8rem;
	content: '';
	border-radius: 100%;
	background:#8E8E8E;
	}
.news_single .news_content img{
	width: 80%;
	margin: auto 10%;
}
@media screen and (max-width: 767px) {
	.news_single {
		margin: auto 10% 15%;
		width: 80%;
	}
	.news_single h2{
		font-size: 2.5rem;
		margin-bottom: 2rem;
	}
	.news_single figure{
		margin-bottom: 10%;
	}
	.news_single .news_content h2{
		font-size: 2.3rem;
	}
	.news_single .news_content h3{
		margin-top: 10%;
		margin-bottom: 3rem;
	}
	.news_single .news_content img{
		width: 100%;
		margin: auto 0 3rem;
	}
	.news_single .news_content h4{
		margin-top: 3rem;
		margin-bottom: 2%;
	}
}


/* ===================================================================
// お問い合わせページ
// ===================================================================*/
.contact_page #mainttl{
}


/* ------------------- 電話 ------------ */
#content.contact_page .call_sec{
	text-align: center;
	margin: 5% 10%;
	padding: 3% 5%;
} 
#content.contact_page .ttl_b{
	text-align: center;
	border-bottom: 0px;
	padding-bottom: 0;
}
#content.contact_page .ttl_b p{
	font-size: 1.6rem;
	margin-bottom: 1rem;
	font-family: "josefin-sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.6rem;
}
#content.contact_page .ttl_b h2{
	font-size: 2rem;
}
#content.contact_page .btn_area{
	justify-content: center;
	text-align: center;
	padding-top: 0;
}
#content.contact_page .btn_area .btn{
	justify-content: center;
	width: 50%;
	text-align: center;
	padding: 1rem;
}
#content.contact_page .btn_area .btn p{
	font-size: 4rem;
	line-height: 4rem;
	text-align: center;
}

#content.contact_page .form{
	margin-top: 5%;
}
#content.contact_page .form .contact_form{
	margin: 5% 10% 0%;
}
#content.contact_page .form .form_message{
	text-align: center;
	margin: 3% 10% 0;
	width: 80%;
	line-height: 2rem;
	margin-bottom: 2rem;
}
.contact_form table {
  width: 100%;
  margin: 80px auto;
	font-weight: 200;
}
.contact_form .form_txt{
	font-size: 1.4rem;
	text-align: left;
	margin-bottom: 1%;
	margin-left: 10%;
	margin-right: 10%;
}
.contact_form .form_txt2{
	margin-bottom: 3%;
}
.contact_form .form_txt a{
	border-bottom: 1px solid #94b5eb;
	font-weight: 700;
}
.contact_form table{
	color: #000;
}
.contact_form table th {
  text-align: left;
  width: 25%;
	padding: 0 0 2rem;
}

.contact_form table th span {
  text-align: center;
  padding: .1em .4em;
  margin-left: 1em;
  font-weight: normal;
  border-radius: 4px;
  font-size: 1.2rem;
}
.contact_form table th span.red {
  color: #E50012;
}
.contact_form table th span.block {
  display: block;
  margin-left: 0;
  padding: 0;
  color: #E50012;
  font-size: 1.1rem;
  text-align: left;
}

.contact_form table.contact_tbl {
  margin: 0 auto 2rem;
}
.contact_form table td {
  text-align: left;
	width: 75%;
	padding: 0 0 2rem;
}
.contact_form table td input{
	width: 97%;
	height: 6vh;
	background: none;
	border: 0px;
	margin-left: 3%;
	border:  1px #000 solid;
}
.contact_form table td.contactradio input{
	width: 15px;
	height:auto;
}
.contact_form table td.contactradio .wpcf7-list-item{
	display: inline;
	margin-right: 1em;
	margin-left: 0;
}
.contact_form table td input.wpcf7-file{
	padding: 1.5rem;
	height: 6rem;
}
.contact_form table td textarea{
	width: 97%;
	height: 20vh;
	background: none;
	border: 0px;
	margin-left: 3%;
	border:  1px #000 solid;
}
.contact_form .sub-btn{
	background: #848484;
	padding: 1.5rem 4rem;
	text-align: center;
	width: 30%;
	margin: auto 35%;
	border: 0px;
	color: #fff;
	border: 1px solid #848484;
	border-radius: 45px;
}
.contact_form .sub-btn:hover{
	 background-color: #fff;
  color: #848484;
}

.box2 {
	width: 100%;                /* 横幅を200pxに指定 */
	height: 150px;               /* 横幅を200pxに指定 */
	border: 1px solid #0A4571;      /* わかりやすくボーダーを引く */
	overflow-y: scroll; 
	  padding: 5% 5%;
	  background: #fff;/* 縦方向にスクロール可能にする */
  }
  .accept{
	  text-align: center;
	  justify-content: center;
	  margin-top: 5%;
	  margin-bottom: 2rem;
  }
  .box2 p span{
	  margin-bottom: 2rem;
	  margin-left: -2rem;
	  font-weight: 500;
  }
  .kojin{
	  font-weight: 700;
  }
  .box2 p{
	  margin-bottom: 1rem;
  }
  @media screen and (max-width: 1000px) {
	#content.contact_page .btn_area .btn{
		width: 100%;
	}

  }
@media screen and (max-width: 767px) {
	#content.contact_page .call_sec{
		margin: 10% 10%;
		padding: 8% 5%;
	}
	#content.contact_page .btn_area {
		margin-top: 0;
		padding-top: 0;
	}
	#content.contact_page .btn_area .btn{
		width: 100%;
	}
	#content.contact_page .btn_area .btn p{
		font-size: 2.5rem;
		line-height: 2.5rem;
		text-align: center;
	}
	#content.contact_page .tel_hour{
		font-size: 1.3rem;
	}
	.contact_form table {
    width: 100%;
    margin: 40px auto;
  }
  .contact_form table th, table td {
    display: block;
    width: 100%;
	  margin: 0;
  }
	.contact_form table td {
  text-align: left;
	width: 100%;
	}
  .contact_form table th {
    width: 100%;
	padding: 0 0 1rem;
  }
	.contact_form table td input{
		width: 100%;
		margin: 0;
	}
	.contact_form table td textarea{
	width: 100%;
	margin-left: 0%;
}
	.contact_form .sub-btn{
	padding: 1.5rem 4rem;
	text-align: center;
	width: 70%;
	margin: auto 15%;
		margin-top: 5%;
		font-size: 1.5rem;
}
	.contact_form .form_txt{
	margin-bottom: 3%;
	margin-left: 0%;
	margin-right: 0%;
		font-size: 1.2rem;
}
.box2 {
	height: 100px;
}
.box2 p span{
	margin-left: 0rem;
}
.accept{
	margin-bottom: 0;
}
}

/*==================================================
404
===================================*/
.errpage{
	margin: 10% 10%;
	text-align: center;
}
.errpage #main_ttl h2{
	font-size: 4rem;
	font-weight: 400;
	font-family: "josefin-sans", sans-serif;
}
.errpage #main_ttl p{
	font-size: 2rem;
	margin-top: 1rem;
}
.errpage .btn_area{
	justify-content: center;
}
@media screen and (max-width: 900px) {
.errpage .btn p:first-child{
	margin-left: 3rem;
}
.errpage .btn p:last-child{
	margin-right: 3rem;
}
}
@media screen and (max-width: 767px) {
	.errpage{
		margin: 25% 10% 15%;
	}
	.errpage #main_ttl p{
		font-size: 1.8rem;
	}
}


.fadein {
    opacity : 0;
    transform : translate(0, 0px);
    transition:all 1s;
  display:block;
	animation-duration: 1s;
	animation-delay: .3s;
	transform: scale(1.05);
	animation-fill-mode:forwards;
}
.fadein.scrollin {
    opacity : 1;
	transform: scale(1);
	filter: blur(0);
}
.fadein1 {
    opacity : 0.2;
    transform : translate(0, 50px);
    transition:all 1s;
  display:block;
  margin:60px auto;
  text-align:center;
}
.fadein1.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

/* その場で */


.fadeon{
animation-name:fadeUpAnime;
  animation-duration: 1.2s;
  animation-fill-mode:forwards;
	animation-delay: .3s;
	opacity: 0;
}

@keyframes fadeUpAnime{
  from {
	  opacity: 0;
  transform: scale(1.3);
  }

  to {
	  opacity: 1;
  filter: blur(0);
  transform: scale(1);
  }
}


/*==================================================
じわっ
===================================*/

.blur{
  animation-name:blurAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
  filter: blur(10px);
  transform: scale(1.02);
  opacity: 0;
  }

  to {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
  }
}
 
.blurTrigger{
    opacity: 0;
}


/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box{
  opacity: 0;
}

/*==================================================
ふわっ
===================================*/

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}





/* --------------------------------------
ナビゲーション
-------------------------------------- */
.drawer_menu a {
	color: inherit;
	text-decoration: none;
}

.drawer_menu a:visited {
	color: inherit;
}


/* PC用ナビゲーション */

.drawer_menu .drawer_nav_wrapper {
	transform: translate(0);
	width: 100%;
	/* PC用メニュー高さ */
	position: relative;
	top: auto;
	right: auto;
	z-index: 100;
	/* PC用メニュー背景色 */
	align-items: center;
	align-content: center;
}

.drawer_menu .drawer_nav {
	max-width: 1000px;
	/* コンテンツ幅に合わせる */
	padding: 0;
	margin: 0 auto;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	list-style-type: none;
	align-items: center;
	align-content: center;
}

.drawer_menu .drawer_nav li {
	font-size: 16px;
	margin: 0;
	padding: 0;
	width: 100%;
	/* PC用メニュー高さ */
	line-height: 50px;
	/* PC用メニュー高さ */
	text-align: center;
	list-style-type: none;
	margin-right: 3rem;
}

.drawer_menu .drawer_nav li:last-child{
	padding: 2.3rem 3rem;
	margin-right: 0;
}
.drawer_menu .drawer_nav li:hover {
	opacity: 0.8;
	/* PC用メニューボタンマウスオーバー背景色 */
}

.drawer_menu .drawer_nav li a {
	color: #fff;
	/* PC用メニューボタン文字色 */
}
.drawer_menu .drawer_nav li a p{
	font-weight: 400;
	font-family: "josefin-sans", sans-serif;
}


/* PC非表示 */

@media screen and (min-width:1101px) {
	.pc-hidden {
		display: none;
		text-align: center;
	}
}

@media screen and (min-width: 1101px) {
	.touch-btn {
		color: #fff;
		margin-left: 5px;
		display: none;
	}
}

/*+++ Default Button Color +++*/

.drawer_menu .drawer_button {
	color: #000;
	/* ハンバーガーメニュー文字色 */
	display: none;
}

.drawer_menu .drawer_button .drawer_bar {
	background-color: #000;
	/* ハンバーガーメニュー三本線の色 */
}


/* 1000px以下 */

@media screen and (max-width: 1100px) {
	.drawer_menu .drawer_bg {
		width: 100%;
		height: 100%;
		position: fixed;
		z-index: 999;
		background-color: rgba(51, 51, 51, 0.5);
		display: none;
		top: 0;
		left: 0;
	}

	.drawer_menu .drawer_button {
		display: block;
		border: none;
		padding: 5px;
		width: 50px;
		letter-spacing: 0.1em;
		cursor: pointer;
		position: fixed;
		top: 0.5rem;
		right: 2rem;
		z-index: 1001;
		text-align: center;
		outline: none;
	}

	.drawer_menu .drawer_button.active .drawer_bar {
		width: 40px;
	}

	.drawer_menu .drawer_button.active .drawer_bar1 {
		transform: rotate(30deg);
	}

	.drawer_menu .drawer_button.active .drawer_bar2 {
		opacity: 0;
	}

	.drawer_menu .drawer_button.active .drawer_bar3 {
		transform: rotate(-30deg);
	}

	.drawer_menu .drawer_button.active .drawer_menu_text {
		display: none;
	}

	.drawer_menu .drawer_button.active .drawer_close {
		display: block;
	}

	.drawer_menu .drawer_bar {
		display: block;
		height: 2px;
		margin: 8px 2px;
		transition: all 0.2s;
		transform-origin: 0 0;
	}

	.drawer_menu .drawer_text {
		text-align: center;
		font-size: 10px;
	}

	.drawer_menu .drawer_close {
		letter-spacing: 0.08em;
		display: none;
	}

	.drawer_menu .drawer_menu_text {
		display: block;
	}

	.drawer_menu .drawer_nav_wrapper {
		width: 250px;
		height: 100%;
		transition: all 0.2s;
		transform: translate(250px);
		position: fixed;
		top: 0;
		right: 0;
		z-index: 1000;
		/* ドロワーメニュー内背景色 */
		overflow-x: hidden;
		overflow-y: auto;
		align-items: flex-start;
		align-content: flex-start;
		background-color: #fff;
	}

	.drawer_menu .drawer_nav {
		display: block;
		position: relative;
		margin-top: 115px;
	}

	.drawer_menu .drawer_nav li {
		height: auto;
		padding: 2rem;
		/*  ドロワーメニューリスト項目高さ */
		position: relative;
		border-bottom: 1px solid #eee;
		background-color: #fff;
	}
	.drawer_menu .drawer_nav li:last-child{
		padding: 2rem 2rem;
		margin-right: 0;
	}

	.drawer_menu .drawer_nav li a {
		/* ドロワーメニューリスト背景色 */
		color: #000;
		/* ドロワーメニューリスト文字色 */
		display: block;
		text-align: left;
		padding-left: 2rem;
	}

	/* スマートフォン2階層目 */

	.drawer_menu .drawer_nav_wrapper.open {
		transform: translate(0);
	}

	.drawer_menu.left .drawer_button {
		right: auto;
		left: 32px;
	}

	.drawer_menu.left .drawer_nav_wrapper {
		transform: translate(-250px);
		right: auto;
		left: 0;
	}

	.drawer_menu.left .drawer_nav_wrapper.open {
		transform: translate(0);
	}

	.pc-hidden {
		text-align: center;
	}

	.touch-btn {
		color: #555;
		position: absolute;
		top: 1rem;
		right: 2rem;
		display: block;
		z-index: 10;
		text-align: center;
		vertical-align: middle;
		display: block;
	}
	.drawer_menu .drawer_nav li:last-child .touch-btn {
		color: #fff;
	}
}
@media screen and (min-width: 1101px) {
.drawer_menu .drawer_nav_wrapper{
	background-color: #fff!important;
}
}
@media screen and (max-width: 767px) {
.drawer_menu .drawer_button {
	top: 2rem;
}
}

/*  ウィジェットタイトル */
.drawer-title {
	text-align: center;
	width: 100%;
	height: 50px;
	line-height: 50px;
	background-color: #555;
	/* ドロワーメニュー内タイトルライン背景色 */
	color: #fff;
}
