@charset "UTF-8";

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI",
    "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic",
    Verdana, Meiryo, sans-serif;
  line-height: 1.5;
  text-rendering: optimizelegibility;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  background: #faf5f1;
  color: #151515;
  letter-spacing: 0.05em;
  font-weight: bold;
}
img {
  width: 100%;
  height: auto;
  max-width: 100%;
  -ms-interpolation-mode: bicubic;
}
body {
  opacity: 0;
  transition-duration: 400ms;
  transition-delay: 400ms;
}
body.onload {
  opacity: 1;
}
/* ========================================================================================================
HEADER
======================================================================================================== */

header {
  /* position: fixed; */
  width: 100%;
  z-index: 990;
  /* background-color: #faf5f1; */
  /* border-bottom: solid 1px #999; */
  position: relative;
}

header::before{
  background-image: url(../img/bg-left.png);
    background-size: cover;
    width: 30%;
    position: absolute;
    top: 0;
    left: 0%;
    width: 15%;
    height: 100%;
    content: '';
    position: absolute;
    background-position-y: -45%;
}
header a {
  transition: all 0.2s ease;
}
header a:hover{
  opacity: 0.6;
}
header .header-wrap {
  /* padding: 10px 0px; */
  height: 128px;
  padding: 0px 40px;
  display: flex;
  justify-content: space-between;
  /* box-shadow: 0 0 20px rgb(0 0 0 / 10%); */
}
.h-logo {
  fill: #151515;
  width: 240px;
  display: flex;
  align-items: center;
  padding: 10px 0px;
  /* height: 50px; */
  z-index: 992;
}

.h-menu {
  display: flex;
  align-items: center;
}
.h-menu .dropdown {
  position: fixed;
  background: #ffffff;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.25s ease;
  height: 0;
  overflow: hidden;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: solid 1px #f5f5f5;
}


.h-menu .wrap {
  display: flex;
}
.list-mune {
  display: flex;
  align-items: center;
}
.list-mune li {
  position: relative;
}
.list-mune li a {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  justify-content: center;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.2;
  text-align: left;
  height: 100%;
  padding-right: 24px;
  color: #151515;
}
.list-mune li a span {
  font-size: 10px;
  color: #b1b1b1;
  line-height: 1.5;
}

.inquiry-h-btn{
  background-color: #bf9b7a;
  border-radius: 24px;
}

.list-mune .inquiry-h-btn a{
  font-size: 14px;
  padding: 12px 40px;
  color: #fff;
}

.nav-button {
  position: relative;
  display: flex;
  flex-direction: column;
  /* z-index: 992; */
  justify-content: center;
  margin-left: 24px;
}

.nav-button p {
  color: #151515;
  font-size: 11px;
  font-weight: bold;
  margin-top: 4px;
  transition: all 0.2s ease;
}
.nav-button.active p {
  opacity: 0;
}
.nav-button .line-unit {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    position: relative;
    width: 40px;
    height: 40px;
}

.nav-button .line-unit .line{
  background: url(../img/menu-wave.svg);
  background-size: contain;
}

.nav-button span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #151515;
  /* border-radius: 1px; */
  transition: all 0.3s ease;
}

.nav-button span:nth-of-type(1) {
  top: 0;
}

.nav-button span:nth-of-type(2) {
  top: 14px;
}

body.open {
  overflow: hidden;
}

#full-nav {
  /* display: none; */
  /* background: #ffffff; */
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
  overflow: hidden;
  bottom: 0;
  z-index: 991;
  /* opacity: 0; */
  transition: 1000ms;
}
#full-nav .mask {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  background-color: #000;
  opacity: 0.5; /* display: none; */
  transition: all 0.7s ease;
  background-color: transparent;
}
#full-nav .full-nav-inner {
  height: auto;
  min-height: 100vh;
  width: 320px;
  background-color: #faf5f1;
  position: relative;
  margin-left: auto;
  z-index: 1;
  transform: translateX(360px);
  opacity: 1;
  transition: all 0.7s ease;
  line-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#full-nav .full-nav-list-mune {
  padding: 40px 40px 80px;
  height: 100%;
}

.full-nav-list-mune .item-btn{
  width: 100%!important;
}

#full-nav .full-nav-list-mune li {
  margin-bottom: 20px;
}
#full-nav .full-nav-list-mune .contact {
  margin-top: 40px;
}

#full-nav .full-nav-list-mune li a {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 14px;
  border-bottom: solid 1px #ddd;
  padding-bottom: 12px;
  color: #151515;
}
#full-nav .full-nav-list-mune li a span {
  font-size: 12px;
  color: #848484;
  line-height: 2;
  text-transform: uppercase;
  margin-right: 8px;
}

#full-nav .nav-button .line {
  width: 100%;
  height: 100%;
  /* padding: 0px; */
  margin-left: auto;
}
#full-nav .parts-flex {
  display: flex;
  align-items: center;
  padding: 20px 40px;
  justify-content: space-between;
}

#full-nav .nav-button {
  width: 30px;
  height: 30px;
  display: inline-block;
  transition: all 0.2s ease;
  margin-left: auto;
}

#full-nav .contact a:hover {
  opacity: 1;
}
#full-nav .nav-button span {
}
#full-nav .nav-button span:nth-of-type(1) {
  transform: rotateZ(45deg);
  top: calc(50% - 1px);
  height: 2px;
}

#full-nav .nav-button span:nth-of-type(2) {
  transform: rotateZ(135deg);
  height: 2px;
  top: calc(50% - 1px);
}

#full-nav.open {
  opacity: 1;
  overflow: auto;
  pointer-events: auto;
  transition: 1000ms;
  overflow-x: hidden;
}
#full-nav.open .full-nav-inner {
  transform: translateX(0px);
  /* opacity: 1; */
  transition: all 0.7s ease;
}
#full-nav.open .mask {
  transition: all 0.7s ease;
  background-color: #000;
}
#full-nav .sns-wrap {
  background-color: #222;
  bottom: 0;
  width: 100%;
}
#full-nav .sns-wrap .wrap {
  padding: 40px;
}
#full-nav .sns-wrap p {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
#full-nav .sns {
  /* background-color: #111; */
  display: inline-flex;
  width: 100%;
  /* padding: 20px 40px; */
  align-items: center;
  justify-content: flex-start;
  margin-top: 5px;
}
#full-nav .sns li {
  width: 24px;
  height: 24px;
  position: relative;
  margin: 12px;
}

#full-nav .sns li:first-child{
  margin-left: 0px;
}

#full-nav .sns li a {
  height: 100%;
  width: 100%;
  /* position: absolute; */
  display: block;
  transition: all 0.2s ease;
}

#full-nav .sns li a:hover{
  opacity: 0.6;
}

#full-nav .sns li a img {
  height: 100%;
  width: 100%;
  fill: #fff;
}

.is-show{
  /* position: fixed;
  transform: translateY(0); */
}

.is-show::before{
  background: none;
}


header.clone-nav {
  transform: translateY(0%);
}

header.clone-nav {
  position: fixed;
  top: 0;
  background-color: #faf5f1;
  transition: 0.6s;
  display: block;
  padding-top: 0px;
}

header.clone-nav {
  transform: translateY(-100%);
}

header.clone-nav.is-show {
  transform: translateY(0);
}

.is-show .h-menu .list-mune li:not(:last-child){
  /* display: none; */
}

header.clone-nav .logo svg {
  fill: #151515;
}

header.clone-nav .logo {
  width: 300px;
  height: 100%;
}

header.clone-nav .white {
  display: none
}

header.clone-nav .black {
  display: block
}

header.clone-nav .navi-menu ul li a {
  color: #151515;
}

header.clone-nav .navi-menu ul li a:after {
  background-color: #333;
}

header.clone-nav .sns li a:hover {
  opacity: 0.5;
}

header.clone-nav .sns li a svg {
  fill: #fff;
}

header.clone-nav .humb-menu .menu-btn span {
  background-color: #222;
}


/*========= ナビゲーションドロップダウンのためのCSS ===============*/

/*2階層目以降は横並びにしない*/
nav ul ul{
	display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	position: relative;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
	display: block;
	text-decoration: none;
	color: #999;
	padding:20px 35px;
	transition:all .3s;
}

nav ul li li a{
	padding:10px 35px;
}

nav ul li a:hover{
	color:#fff;	
}

.has-child a{
  align-items: center!important;
  flex-direction: row!important;
}

.has-child a svg{
  width: 8px;
    margin-left: 6px;
    transform: rotate(90deg);
}

.list-mune .has-child a span{
  font-family: 'DIN Condensed';
  text-transform: uppercase;
  font-size: 10px;
  color: #b1b1b1;

}

/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
.has-child ul{
    /*絶対配置で位置を指定*/
	position: fixed;
	left:0;
	top:100px;
	z-index: 4;
    /*形状を指定*/
	background:#fff;
	width:100vw;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
  display: flex;
  justify-content: center;
}

/*hoverしたら表示*/
.has-child:hover > ul , .has-child ul li:hover > ul , .has-child:active > ul,.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
.has-child ul li a{
	color: #151515;
  display: grid;
}

.has-child ul li:last-child a{
	border-bottom:none;
}

.has-child ul li a:hover , .has-child ul li a:active{
	opacity: 0.5;
}

.list-mune .has-child ul li a{
  padding:40px 32px;
}


/*==3階層目*/

/*3階層目の位置*/
.has-child ul ul{
	top:0;
	left:182px;
	background:#66ADF5;
}

.has-child ul ul li a:hover,
.has-child ul ul li a:active{
	background:#448ED3;
}



/*アイコンの＋と×*/
.opener::before,
.opener::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.opener::before{
    top:25%;
    left: 90%;
    transform: rotate(0deg);
    
}
.opener::after{    
    top:25%;
    left: 90%;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.opener.close::before{
	transform: rotate(45deg);
}

.opener.close::after{
	transform: rotate(-45deg);
}

.dropdown-sp .box{
  background-color: #faf5f1;
  padding: 0px;
  display: none;
}

.dropdown-sp .box ul li{
  margin-bottom: 0!important;
}

.dropdown-sp .box ul li a{
  font-size: 12px;
    padding: 12px 0px;
    padding-left: 15px;
    position: relative;
    display: block;
}

#full-nav .full-nav-list-mune .dropdown-sp .box ul li a{
  display: block;
}

footer .opener::before, footer .opener::after{
  background-color: #fff;
}

footer .dropdown-sp .box{
  background-color: #222;
}

footer .dropdown-sp .box ul li{
  padding-bottom: 12px;
}

 footer .dropdown-sp .box ul li a{
  padding: 0;
}

footer .dropdown-sp .box ul li a:first-child{
  padding-top: 12px;
}

/* ---HEADER-fin--- */

/* ========================================================================================================
top-fv-sec
======================================================================================================== */
#top-fv-sec{
  position: relative;
}

#top-fv-sec::before{
  background-image: url(../img/bg-left.png);
  background-size: cover;
  width: 30%;
  position: absolute;
  top: 0;
  left: 0%;
  width: 15%;
  height: 100%;
  content: '';
  position: absolute;
  background-position-y: 260%;

}


#top-fv-sec .swiper-container{
  width: calc(100% - 10%);
  margin-left: auto;
  border-radius: 24px 0px 0px 24px;
}

#top-fv-sec .swiper-container .swiper-wrapper{
  height: calc(100vh - 128px);
}

/*=== 9-1-2 丸が動いてスクロールを促す ====*/

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

/*Scrollテキストの描写*/
.scrolldown2 span{
  position: absolute;
  left: -3px;
  bottom: 60px;
  color: #151515;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
  content: "";
  position: absolute;
  bottom:0;
  left:-3.5px;
  width:8px;
  height:8px;
  border-radius: 50%;
  background:#151515;
animation:
  circlemove 2s ease-in-out infinite,
  cirlemovehide 2s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
    0%{bottom:35px;}
   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: 40px;
background:#151515;
}


/* ---top-fv fin--- */

/* ========================================================================================================
top-news-sec
======================================================================================================== */

#top-news-sec{
  position: relative;
}

#top-news-sec::before{
  background-image: url(../img/bg-left.png);
  background-size: cover;
  width: 30%;
  position: absolute;
  top: 0;
  left: 0%;
  width: 15%;
  height: 100%;
  content: '';
  position: absolute;
  background-position-y: 80%;
  z-index: -1;
}

#top-news-sec .top-news-sec-wrap{
  padding: 60px 0px 0px;
}

#top-news-sec .top-news-sec-wrap .inner{
  background-color: #fff;
  background-image: url(../img/nara-mark.png);
  width: 80%;
  margin-right: auto;
  padding: 60px 170px 60px 170px;
  border-radius: 0px 24px 24px 0px;
  background-repeat: no-repeat;
  background-size: 35%;
  background-position: 10% center;
}

#top-news-sec .item-unit{
  display: flex;
  align-items: center;
  border-bottom: solid 1px #bf9b7a;
  padding: 20px 0px;
}

#top-news-sec .item-unit div{
  display: flex;
  align-items: center;
}

#top-news-sec .item-unit:first-child{
  padding-top: 0;
}

.news-category p{
  font-family: 'DIN Condensed';
  /* background-color: #333; */
  border-radius: 24px;
  padding: 10px 20px;
  color: #fff;
  margin-right: 24px;
  text-transform: uppercase;
  width: 100%;
  /* min-width: 120px; */
  text-align: center;
}

#top-news-sec .item-unit .time{
  font-family: 'DIN Condensed';
  margin-right: 16px;
}

#top-news-sec .item-unit a{
  width: 100%; /* 省略せずに表示するサイズを指定 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  justify-content: space-between;
  transition: all 0.2s ease;
}

#top-news-sec .item-unit a:hover{
  opacity: 0.6;
}

_::-webkit-full-page-media, _:future, :root #top-news-sec .item-unit a {
  display: -webkit-box;
}

#top-news-sec .item-unit a p{
  width: 85%; /* 省略せずに表示するサイズを指定 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#top-news-sec .item-unit a svg{
  width: 10px;
  opacity: 0.5;
}




/* ---top-news fin--- */

/* ========================================================================================================
top-about-sec
======================================================================================================== */
#top-about-sec{
  position: relative;
}

#top-about-sec::before{
  background-image: url(../img/bg-left.png);
  background-size: cover;
  width: 30%;
  position: absolute;
  top: 0;
  left: 0%;
  width: 15%;
  height: 100%;
  content: '';
  position: absolute;
  background-position-y: 80%;
  z-index: -1;
}

#top-about-sec .flex-item{
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  padding-left: 170px;
}

.flex-item-img{
  width: 100%;
  height: auto;
}

.about-img{
  width:100%;  
  padding-bottom: 56.25%;
  height:0px;
  position: relative;
}

.about-img img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px 0px 0px 24px;
}

#top-about-sec .about-inner .flex-item .flex-item-text{
  width: calc(100% - 170px);
}

#top-about-sec .about-inner .flex-item .flex-item-text p{
  margin-right: 9%;
}

#top-about-sec .about-inner .flex-item .flex-item-text .lead-indention:last-child{
  margin-bottom: 0;
}

.lead-indention{
  margin-bottom: 16px;
}

/* ---top-about-sec fin--- */

/* ========================================================================================================
top-recruit-sec
======================================================================================================== */

#top-recruit-sec{
  background-image: url(../img/recruit-bg.jpg);
  background-size: cover;
  color: #fff;
  background-position: center;
}

#top-recruit-sec .sec-mask{
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide{
  background-image: url(../img/sample-img.jpg);
}

#top-recruit-sec .item-btn{
  margin: 40px auto 0px;
}


/* ---top-recruit-sec fin--- */

/* ========================================================================================================
top-contents-sec
======================================================================================================== */

#top-contents-sec{
  background-color: #fff;
  position: relative;
  z-index: 1;
}

#top-contents-sec .wrap{
  padding: 0px 0px 0px;
}

.top-contents-sec-container-bg{
  padding: 160px 0px 60px;
  background: #fff;
  position: relative;
  z-index: 2;
}

.top-contents-sec-container-bg::before{
  top: 0;
	left: 43%;
	width: 57%;
	height: 100%;
	content: '';
	position: absolute;
	background: #faf5f1;
	z-index: -1;
  border-bottom-left-radius: 24px;
}

#top-contents-sec .content-learn{
  background: #fff;
  position: relative;
  z-index: 2;
  margin: 60px 0px;
  padding-top:60px;
}

#top-contents-sec .content-life{
  background: #fff;
  position: relative;
  z-index: 2;
  margin-top: 60px;
  padding: 60px 0px 180px;
}

#top-contents-sec .content-learn .contents-wrap , #top-contents-sec .content-learn .contents-wrap .flex-item{
  flex-direction: row-reverse;
}


#top-contents-sec .content-learn{
  padding-bottom: 60px;
}

#top-contents-sec .content-learn::before{
  top: 0;
	right: 43%;
	width: 57%;
	height: 100%;
	content: '';
	position: absolute;
	background: #faf5f1;
	z-index: -1;
  border-radius: 0px 24px 24px 0px;
}

#top-contents-sec .content-learn .item-btn{
  left: 10%;
  margin: 0;
}

#top-contents-sec .content-life::before{
  top: 0;
	left: 43%;
	width: 57%;
	height: 100%;
	content: '';
	position: absolute;
	background: #faf5f1;
	z-index: -1;
  border-radius: 24px 0px 0px 24px;
}

#top-contents-sec .tit-container {
  background-image: url(../img/contents-top-bg.jpg);
  background-size: cover;
  color: #fff;
  background-position: bottom;
  margin: 0px 80px;
  border-radius: 24px;
}

#top-contents-sec .sec-mask{
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  padding: 0px 80px;
  border-radius: 24px;
}

#top-contents-sec .tit-container .txt-group{
  padding: 160px 0px 60px;
  width: 50%;
}

#top-contents-sec .top-contents-sec-container-bg .content-works{
  padding-top: 60px;
}


.works .category-circle{
  background-color: #66b9cc;
}

.learn .category-circle{
  background-color: #ff9966;
}

.life .category-circle{
  background-color: #99cc66;
}

.categoryid-5 .category-circle{
  background-color: #66b9cc;
}

.categoryid-6 .category-circle{
  background-color: #ff9966;
}

.categoryid-7 .category-circle{
  background-color: #99cc66;
}

.recruit-article-contents-wrap .category-circle{
  background-color: #000;
}

.contents-wrap{
  padding: 20px 120px;
  position: relative;
}


#top-contents-sec .contents-wrap .item-btn{
  margin-top: 0;
  position: absolute;
  bottom: 0;
  right: 12%;
}

#top-contents-sec .flex-item{
  justify-content: space-between;
  align-items: center;
}

.thumb-wrap{
  width: 21%;
  height: auto;
  margin-right: 40px;
  overflow: hidden;
}

.thumb-wrap:last-child{
  margin-right: 0;
}

.content-learn .thumb-wrap:last-child{
  margin-right: 40px;
}

.content-learn .thumb-wrap:first-child{
  margin-right: 0px;
}

#top-contents-sec .thumb-wrap:first-child{
  width: 50%;
}




#top-contents-sec .thumb-wrap:first-child .thumb-item{
  border: solid #faf5f1 8px;
}

#top-contents-sec .thumb-nomal{
  width: 25%;
}

.thumb-item {
  width: 100%;
  padding-bottom: 56.25%;
  height: 0px;
  position: relative;
  background: #999;
  border-radius: 24px;
  position: relative;
  background-size: cover;
  transition: all 0.2s ease;
  border: solid #fff 8px;
}

.flex-item a:hover .thumb-item{
  opacity: 0.6;
}

#top-contents-sec .thumb-wrap:first-child .thumb-item .category-tit{
  padding: 20px;
  background: #fff;
  position: absolute;
  bottom: -8px;
  left: -8px;
  border-top-right-radius: 24px;
}

#top-contents-sec .content-learn .thumb-wrap:first-child .thumb-item .category-tit{
  background: #faf5f1;
}

.thumb-wrap .thumb-item .category-tit{
  padding: 16px;
  background: #faf5f1;
  position: absolute;
  bottom: -8px;
  left: -8px;
  border-top-right-radius: 24px;
  margin-bottom: 0;
}


/* .thumb-item .category-circle{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #000;
  display: inline-block;
  margin-right: 10px;
} */

.category-circle{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #000;
  display: inline-block;
  margin-right: 10px;
}

.thumb-item-tit{
  margin: 16px 0px 8px;
  line-height: 1.6!important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.thumb-item-day{
  color: #999;
  font-family: 'DIN Condensed';
}

.content-learn .sub-tit{
  left: 25%;
}

/* 記事増えたら消す↓ */
.thumb-item .thumb-item-tit{
  display: none;
}


/* ---top-contents-sec fin--- */

/* ========================================================================================================
top-link-sec
======================================================================================================== */

#top-link-sec{
  background-color: #f3f3f3;
}

#top-link-sec .flex-item{
  justify-content: space-between;
  flex-wrap: wrap;
}

#top-link-sec .flex-item li{
  width: calc(25% - 15px);
  margin-bottom: 20px;
  /* background: #999; */
  height: 48px;/* 画像になる場合は削除 */
  border: 2px solid #999;/* 画像になる場合は削除 */
}


#top-link-sec .flex-item li a{
  display: block;
  line-height: 0;
  transition: all 0.2s ease;
}

#top-link-sec .flex-item li a:hover{
  opacity: 0.6;
}

#top-link-sec .flex-item li a p{
  font-size: 12px;
    text-align: center;
    padding: 14px 0px;
    line-height: 1.2;
}

#top-link-sec ul::after {
  display: block;
  content: "";
  width: calc(50% - 10px);
}

/* ---top-link-sec fin--- */

/* ========================================================================================================
footer
======================================================================================================== */

footer {
  background-color: #222;
  color: #fff;
}
footer .common-w-inner {
  padding: 0 40px;
}
footer .wrap {
  padding: 120px 0px 8px 0px;
}
footer .elemnt01 {
  margin-bottom: 60px;
  border-bottom: solid 1px #fff;
}
footer .elemnt01 a {
  color: #fff;
}
footer .elemnt01 .list-mune li {
  padding-bottom: 20px;
}
footer .elemnt01 .list-mune li:nth-child(1) {
  margin-left: 0px;
}

footer .elemnt02 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
footer .h-logo {
  fill: #fff;
}
footer .elemnt02 .list {
  display: flex;
  flex-wrap: wrap;
}

footer .elemnt02 ul {
  display: flex;
  align-items: center;
  margin-right: 40px;
}

footer .elemnt02 ul li {
  width: 200px;
  margin-right: 20px;
}

footer .elemnt02 ul li a {
  width: 100%;
}

footer .elemnt02 ul.sns {
  margin-left: 0px;
}

footer .elemnt02 ul.sns li {
  height: 36px;
  width: 36px;
  margin-left: 0px;
  border: solid 1px #fff;
  border-radius: 50%;
  padding: 10px;
}
footer .elemnt02 .l-btn {
  margin-bottom: 30px;
}
footer .elemnt02 .l-btn a {
  min-width: 200px;
}
footer .elemnt02 .l-btn a:hover {
  opacity: 1;
  background-color: #fff;
  color: #151515;
}
footer .elemnt02 .l-btn a:hover svg {
  fill: #151515;
}
footer .elemnt02 .l-btn a svg {
  fill: #fff;
}
footer .list-mune {
  flex-wrap: wrap;
}

footer .elemnt02 ul.sns li a {
  display: block;
  position: relative;
  height: 100%;
  width: 100%;
}

footer .elemnt02 ul.sns li img {
  position: absolute;
  width: 100%;
  height: 100%;
  fill: #fff;
}
footer .elemnt03 {
}
footer .elemnt03 p {
  font-size: 12px;
  margin-bottom: 5px;
  line-height: 1.5;
}
footer .elemnt03 p.copylight {
  margin-bottom: 0px;
  margin-top: 20px;
  font-size: 10px;
}

.personal-info{
  font-size: 10px!important;
    margin-top: 24px;
}

footer a {
  transition: all 0.2s ease;
}
footer a:hover {
  opacity: 0.6;
}

footer .elemnt01 .list-mune .has-child{
  position: relative;
}

footer .has-child ul{
  top: 460px;
}

/* ========================================================================================================
===========================================================================================================

archive-page

===========================================================================================================
======================================================================================================== */

/* recruit */
#recruit-fv-sec{
  position: relative; 
}

#recruit-fv-sec::before{
  background-image: url(../img/bg-left.png);
  background-size: cover;
  width: 30%;
  position: absolute;
  top: 0;
  left: 0%;
  width: 15%;
  height: 100%;
  content: '';
  position: absolute;
  background-position-y: 280%;
  z-index: -1;

}

.under-fv-wrap{
  width: calc(100% - 10%);
  height: 540px;
  /* background: url(../img/1.jpeg); */
  background: url(../img/news-bg.jpg);
  background-size: cover;
  /* background-position: center; */
  background-position: bottom;
  margin-left: auto;
  color: #fff;
  border-radius: 24px 0px 0px 24px;
}

.post-type-archive-recruit .under-fv-wrap{
  background: url(../img/recruit-bg-new.jpg);
  background-size: cover;
  background-position: bottom;
}

.under-fv-mask{
  padding: 40px 5%;
  width: calc(100%);
  height: 540px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 24px 0px 0px 24px;
}

.under-tit-container{
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: calc(400px - 80px);
}


#recruit-lead-sec{
  padding: 80px 0px 60px;
  position: relative;
}

#recruit-lead-sec::before {
  background-image: url(../img/bg-left.png);
  background-size: cover;
  width: 30%;
  position: absolute;
  top: 0;
  left: 0%;
  width: 15%;
  height: 100%;
  content: '';
  position: absolute;
  background-position-y: 280%;
  z-index: -1;
}

.recruit-lead-sec-wrap{
  background-color: #fff;
  padding: 60px;
  border-radius: 24px;
}

#recruit-lead-sec .item-btn{
  margin: 0 auto;
  margin-top: 40px;
  width: 400px;
}

#recruit-serch-sec{
  background: #fff;
  
}

#recruit-serch-sec .recruit-serch-sec-wrap{
  padding: 60px 0px;
  background-image: url(../img/nara-mark.png);
  background-size: cover;
}

.recruit-serch-container-wrap{
  padding: 40px;
  background-color: #999;
}

#recruit-serch-sec .recruit-serch-container .flex-item{
  justify-content: space-between;
  align-items: center;
}

#recruit-serch-sec .recruit-serch-container .flex-item .accordion-btn{
  width: 64px;
  height: 64px;
  background: #bf9b7a;
  border-radius: 50%;
  position: relative;
}

#recruit-serch-sec .recruit-serch-container .flex-item .accordion-btn span:first-child{
  width: 2px;
  height: 20px;
  background-color: #fff;
  /* z-index: 3; */
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

#recruit-serch-sec .recruit-serch-container .flex-item .accordion-btn span:last-child{
  width: 20px;
  height: 2px;
  background-color: #fff;
  /* z-index: 3; */
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

/*アコーディオン全体*/
.accordion-area{
  list-style: none;
  width: 100%;
  max-width: 900px;
  margin:0 auto;
}

.accordion-area li{
  margin: 10px 0;
}

.accordion-area section {
border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
  position: relative;/*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  transition: all .5s ease;
}

/*　closeというクラスがついたら形状変化　*/


.title.close .accordion-btn span:first-child{
display: none!important;
}


/*アコーディオンで現れるエリア*/
.recruit-serch-container .box {
  display: none;/*はじめは非表示*/
  background: #faf5f1;
  padding: 40px;
  border-radius: 24px;
}

/*** custom checkboxes ***/
label {
}

.page-id-221 input , .page-id-72 input{
  margin: .4rem 0px;
}


.accordion-area .area-map{
  background-color: #fff;
  padding: 40px;
  border-radius: 24px;
  /* background-image: url(../img/nara-mark.png); */
  background-image: url(../img/nara-mark-map.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 320px;
}

.accordion-area .area-map ul li{
  position: absolute;
  background-color: #faf5f1;
  padding: 6px 24px;
  border-radius: 8px;
}


.accordion-area .area-map ul li:first-child{
  right: 50%;
  top: 14%;
}

.accordion-area .area-map ul li:nth-child(2){
  top: 40%;
  right: 40%;
}

.accordion-area .area-map ul li:nth-child(3){
  top: 55%;
  right: 35%;
}

.accordion-area .area-map ul li:nth-child(4){
  bottom: 10%;
  right: 50%;
}

/* .accordion-area .area-map ul .north{
  right: 49%;
  top: 14%;
} */

/* .accordion-area .area-map ul .east{
  top: 25%;
  right: 30%;
} */

/* .accordion-area .area-map ul .middle-area{
  top: 50%;
  right: 35%;
} */


/* .accordion-area .area-map ul .south{
  bottom: 10%;
  right: 50%;
} */




.accordion-area .accordion-item .accordion-item-list{
  display: flex;
}

.accordion-item-list li{
  margin-right: 10px;
}

.recruit-serch-container .box .item-btn{
  margin:60px auto 0px;
  width: 400px;
}

#recruit-article-sec{
  position: relative;
}

#recruit-article-sec::before {
  background-image: url(../img/bg-left.png);
  background-size: cover;
  width: 30%;
  position: absolute;
  top: 0;
  left: 0%;
  width: 15%;
  height: 100%;
  content: '';
  position: absolute;
  background-position-y: 280%;
  z-index: -1;
}

#recruit-article-sec .flex-item{
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

#recruit-article-sec .flex-item::after {
  display: block;
  content: "";
  /* width: calc(33.333% - 40px); */
  width: calc(50% - 40px);
}

#recruit-article-sec .flex-item .thumb-wrap{
  /* width: calc(33.333% - 40px); */
  width: calc(50% - 40px);
  height: auto;
  margin-right: 0px;
  margin-bottom: 40px;
}

#recruit-article-sec .item-btn{
  margin:60px auto 0px;
  width: 400px;
}


#related-article-sec{
  background: url(../img/related-bg.jpg);
  background-size: cover;
  background-position: bottom;
}

#related-article-sec .wrap , .single #recruit-article-sec .wrap{
  padding: 120px 0px;
}

#recruit-article-sec .category-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}

#recruit-article-sec .category-list li{
  margin-right: 10px;
}



#related-article-sec .thumb-wrap .thumb-item .category-tit{
  background: #ffff;
}

.yarpp-related{
  margin: 0!important;
}

/* news */
.archive-news #top-news-sec .top-news-sec-wrap{
  padding: 0;
  background-color: #fff;
}

.archive-news #top-news-sec .top-news-sec-wrap .inner{
  width: 100%;
  padding: 120px 170px;
  /* max-width: 1024px;
  margin: 0 auto; */
  background-image: none;
}

 /* 検索ページ */
 .result-wrap{
   padding-bottom: 120px;
 }


 /* 404 */

 #notfound-sec{
  position: relative;
 }

 #notfound-sec::before{
  background-image: url(../img/bg-left.png);
background-size: cover;
width: 30%;
position: absolute;
top: 0;
left: 0%;
width: 15%;
height: 100%;
content: '';
position: absolute;
background-position-y: 260%;
z-index: -1;
}

 #notfound-sec .item-btn{
   width: 400px;
   margin: 40px auto 0px;
 }

 .tag-name{
  font-size: 14px;
  margin-bottom: 8px;
  color: #999;
 }

 

/* ========================================================================================================
===========================================================================================================

single

===========================================================================================================
======================================================================================================== */


#single-job-sec{
  position: relative;
}

#single-job-sec::before {
  background-image: url(../img/bg-left.png);
  background-size: cover;
  width: 30%;
  position: absolute;
  top: 0;
  left: 0%;
  width: 15%;
  height: 100%;
  content: '';
  position: absolute;
  background-position-y: 280%;
  z-index: -1;
}

#single-job-sec .single-job-thumb-wrap{
  width: calc(100% - 10%);
  height: calc(100vh - 120px);
  background: url(../img/1.jpeg);
  background-size: cover;
  background-position: center;
  margin-left: auto;
  color: #fff;
  border-radius: 24px 0px 0px 24px;
  padding: 40px;
}

.page-id-72 #single-job-sec .single-job-thumb-wrap{
  /* background: url(../img/contact-bg.jpeg); */
  background: url(../img/news-bg.jpg);
  background-size: cover;
  background-position: center;
}

#single-job-contents{
  background-color: #fff;
  /* border-bottom: 1px solid #999; */
}

#single-job-contents .wrap{
  padding-top: 40px;
}


#single-job-contents .single-job-contents-area{
  padding: 40px;
}

.single-job-contents-area .flex-item{
  /* justify-content: space-between;
  margin-bottom: 48px;
  align-items: center; */
}

.single-job-contents-area .flex-item .category-tit{
  font-size: 16px;
}

.single-recruit{
}

.single-recruit #single-job-sec-wrap{
  display: flex;
  max-width: 1024px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 80px;
}


.single-recruit #single-job-sec-wrap .swiper-recuit-wrap{
  position: relative;
  width: 50%;
  margin-right: 40px;
}

.single-recruit #single-job-sec-wrap .swiper-recuit-wrap .swiper-container{
  padding-bottom: 56.25%;
  border-radius: 24px;
}

.single-recruit #single-job-sec-wrap .swiper-recuit-wrap .swiper-container .swiper-wrapper{
  position: absolute;
}

.single-recuit-tit-area{
  width: 50%;
}

.single-recruit .content{
  background-color: #fff;
}

.content .content-wrap{
  max-width: 830px;
  margin:0 auto;
  padding: 60px 0px 120px;
}

.swiper-recuit-wrap .swiper-button-prev , .swiper-recuit-wrap .swiper-button-next{
  position: absolute;
  z-index: 10;
  cursor: pointer;
  width: 40px;
  top: 50%;
  opacity: 0.6;
  height: 40px;
  background-color: #fff;
  border-radius: 100%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.swiper-recuit-wrap .swiper-button-prev img , .swiper-recuit-wrap .swiper-button-next img{
  width: 10px;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.swiper-recuit-wrap .swiper-button-prev{
  left: 20px;

}

.swiper-recuit-wrap .swiper-button-prev img{
  transform: scale(-1, 1);
}

.swiper-recuit-wrap .swiper-button-next{
  right: 20px;
}

.recruit-btn-area{
  justify-content: space-between;
  align-items: center;
}

.recruit-btn-area .item-btn{
  width: 47%;
  margin: 24px 0px 0px;
}

.content .recruit-btn-area .item-btn{
  margin-top: 60px;
}

.recruit-btn-area .type-submit{
  background-color: #ff9966;
}

#single-contents{
  background: #fff;
}

.content-wrap .flex-item{
  justify-content: space-between;
  align-items: center;
}

.post-line{
  margin: 60px 0px;
}

/*---------- single-contents ---------*/

#share-sec {
  margin-bottom: 48px;
}

#share-sec ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#share-sec ul li {
    width: calc(33.333% - 10px);
}

#share-sec ul li a {
    width: 100%;
    padding: 12px 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d8d8d8;
    border-radius: 20px;
    transition: background-color .3s ease 0s;
    height: 40px;
}

#share-sec ul li.fb a:hover {
    background-color: #3b5998;
}

#share-sec ul li.tw a:hover {
    /* background-color: #33ccff; */
    background-color: #000;
}

#share-sec ul li.ln a:hover {
    background-color: #00C402;
}

#share-sec ul li a .img-wrap {
    width: 100%;
    height: 32px;
    position: absolute;
}

#share-sec ul .fb a .img-wrap{
  height: 20px;
}

#share-sec ul .tw a .img-wrap{
  height: 18px;
}

#share-sec ul li a svg {
    width: 100%;
    height: 100%;
    fill: #fff;
}

.is-single #content-sec #share-sec {
    margin: 0px 0 60px;
}

.is-single .foot {}

.is-single .foot #share-sec {
    margin: 0px 0 80px;
}

.single-img{
  border-radius: 24px;
}

.single-info{
  padding: 40px;
  background-color: #faf5f1;
  border-radius: 24px;
  margin-bottom: 32px;
}

.info-tit{
  margin-bottom: 24px;
}

.content p img{
  margin: 0px 0px -20px;
}

.content a{
  text-decoration: underline;
}

/*---------- single-contents end ---------*/


/* ========================================================================================================
===========================================================================================================

category-page

===========================================================================================================
======================================================================================================== */

.category .under-fv-wrap{
  height: calc(100vh - 128px);
}

.category .under-fv-wrap .under-fv-mask{
  height: calc(100vh - 128px);
  position: relative;
}

.category .under-fv-wrap .lead-area{
  padding: 40px;
  background-image: url(../img/related-bg.jpg);
  color: #151515;
  border-radius: 24px;
  background-size: cover;
  background-position: center 70%;
  position: absolute;
  bottom: 40px;
  width: 90%;
}

.category-works .under-fv-wrap{
  background: url(../img/works-bg.jpg);
  background-size: cover;
  background-position: center;
}

.category-learn .under-fv-wrap{
  background: url(../img/learn-bg-new.jpg);
  background-position: center;
}

.category-life .under-fv-wrap{
  background: url(../img/life-bg-new.jpg);
  /* background-position: bottom; */
  background-position: center;
}

#archive-sec-contents{
  background-color: #fff;
}

#archive-sec-contents .flex-item{
  flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

#archive-sec-contents .flex-item .thumb-wrap{
  width: calc(33.333% - 40px);
  margin-right: 0;
  margin-bottom: 40px;
}

#archive-sec-contents .flex-item::after {
  display: block;
  content: "";
  width: calc(33.333% - 40px);
}

/* #archive-sec-contents .infinite-wrap a:first-child{
  display: none;
} */


#archive-sec-contents-item{
  background-color: #fff;
  position: relative;
  padding: 60px 0px;
}

#archive-sec-contents .wrap{
  padding:60px 0px 160px;
}

#archive-sec-contents .thumb-wrap .thumb-item .category-tit{
  background-color: #fff;
}

#archive-sec-contents-item::before{
  top: 0;
    left: 43%;
    width: 57%;
    height: 100%;
    content: '';
    position: absolute;
    background: #faf5f1;
    border-bottom-left-radius: 24px;
}

.thumb-item-first{
  max-width: 1024px;
  margin: 0 auto;
}

.thumb-item-first .thumb-wrap{
  display: flex;
    width: 100%;
    /* justify-content: space-between; */
    align-items: center;
}

.thumb-item-first .thumb-wrap .thumb-item-wrap{
  width: 70%;
  margin-right: 40px;
}

.thumb-item-first .thumb-txt{
  z-index: 1;
  width: 30%;
}

#sec-related-category .wrap{
  padding: 60px 0px;
}

#sec-related-category .flex-item{
  justify-content: space-between;
  align-items: center;
}

#sec-related-category .flex-item li{
  width: 48%;
}

#sec-related-category .flex-item .related-category-item{
  background-size: cover;
  border-radius: 24px;
}

#sec-related-category .flex-item .related-category-item{
  transition: all 0.2s ease;
}

#sec-related-category .flex-item .related-category-item:hover{
  opacity: 0.6;
}



.related-category-learn{
  background-image: url(../img/learn-bg.jpg);
  background-position: center 60%;
}

.related-category-works{
  background-image: url(../img/works-bg.jpg);
  background-position: center 30%;
}

.related-category-life{
  background-image: url(../img/life-bg.jpg);
  background-position: center 90%;
}

#sec-related-category .flex-item li a{
  display: flex;
  padding: 40px;
  justify-content: space-between;
  align-items: flex-end;
  background-color: rgba(0,0,0,0.3);
  border-radius: 24px;
}

#sec-related-category .flex-item li a p{
  font-size: 31.25px;
  color: #fff;
}

#sec-related-category .flex-item li a p span{
  display: block;
  font-size: 16px;
  margin-bottom: 16px;
  font-family: 'DIN Condensed';
  text-transform: uppercase;
}

#sec-related-category .flex-item li a svg{
  width: 10px;
  color: #fff;
}

/* ========================================================================================================
===========================================================================================================

CONTACT

===========================================================================================================
======================================================================================================== */

#single-contact-area{
  background-color: #fff;
}

#single-contact-area .wrap{
  padding: 80px 0px;
}

 /* --- お問い合わせフォーム --- */
/* デザインカスタマイズ */
div.wpcf7 { background:#faf5f1; padding:0px; -moz-border-radius:0px 0px 10px 10px; -khtml-border-radius:0px 0px 10px 10px; -webkit-border-radius:0px 0px 10px 10px; border-radius:0px 0px 10px 10px; margin:0 0 30px 0; }
div.wpcf7 p { padding:32px 32px 0; margin:0; font-size:14px; }
div.wpcf7 input, .wpcf7 textarea { border:1px solid #ccc; padding:8px; font-size:14px; }
div.wpcf7 textarea { width:97.5%; height:300px; }
div.wpcf7 input.wpcf7-submit {
   cursor:pointer; color:#fff; font-weight:bold; font-size:14px; width:200px; height:45px; margin:0 auto; display:block;
   -moz-border-radius:24px; -khtml-border-radius:24px; -webkit-border-radius:24px; border-radius:24px;
   background:#bf9b7a;transition: all 0.2s ease;
}
div.wpcf7 input.wpcf7-submit:hover { opacity: 0.6; }
.wpcf7 input.wpcf7-submit:active { box-shadow:none; bottom:-2px; position:relative; }
.wpcf7 input:focus, .wpcf7 textarea:focus { border:1px solid #009de1; }
.wpcf7-captchac { border:1px solid #ccc; }
 
 
/* エラー個所をわかりやすく表示 */
.wpcf7 .wpcf7-not-valid { background: #ffb6c1; }
.wpcf7 span.wpcf7-not-valid-tip {font-size: 80%;}
.wpcf7 .wpcf7-response-output {margin: 10px 0 0; padding: 8px 35px 8px 14px; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; }
.wpcf7 .wpcf7-validation-errors {color: #B94A48; background-color: #F2DEDE; border: 1px solid #EED3D7;}
.wpcf7 .wpcf7-mail-sent-ok {color: #3A87AD; background-color: #D9EDF7; border: 1px solid #BCE8F1;}
 
/* 必須赤色表示 */
.wpcf7 .required { color: #e02323;line-height: 1.6;}
/* 任意緑色表示 */
.wpcf7 .any{ color: #080;}


/*tabの形状*/
.tab{
	display: flex;
	flex-wrap: wrap;
  justify-content: center;
}

.tab li{
  width: 50%;
}

.tab li a{
	display: block;
	background:#fff;
  padding: 32px 40px;
  font-size: 20px;
  text-align: center;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a{
	background:#faf5f1;
}


/*エリアの表示非表示と形状*/
.area {
	display: none;/*はじめは非表示*/
	opacity: 0;/*透過0*/
	background: #fff;
	padding:0px 0px 50px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.contact-read .sub-tit-under{
  font-size: 20px;
  margin-bottom: 24px;
  text-align: center;
}

.contact-read .sub-tit-under span{
  font-size: 12px;
  display: block;
  margin-bottom: 12px;
}

.contact-read .lead-txt{
  margin-bottom: 20px;
  font-weight: normal;
}

.post-titile{
  display: none;
}

.contact-web-lead{
  background: #faf5f1;
    padding: 32px 32px 0px;
    line-height: 1.6;
    font-size: 14px;
}

.time-reception{
  display: block;
    margin-top: 8px;
    font-weight: normal;
    color: #e02323;
}

/* ========================================================================================================
===========================================================================================================

unit

===========================================================================================================
======================================================================================================== */

.pc-block {
  display: block;
}
.sp-display {
  display: none;
}

.pc-display{
  display: block;
}

/* チェックボックス01 */
/* input[type=checkbox]{
  display: none;
}

.checkbox01 {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
}
.checkbox01::before {
  background: #fff;
  border: 2px solid #ff9966;
  content: '';
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
  border-radius: 4px;
}
.checkbox01::after {
  border-right: 3px solid #ed7a9c;
  border-bottom: 3px solid #ed7a9c;
  content: '';
  display: block;
  height: 9px;
  left: 10px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
}

input[type=checkbox]:checked + .checkbox01::after {
  opacity: 1;
} */




/* ========================================================================================================
COMMON
======================================================================================================== */
.main-tit{
    font-size: calc((39.06 / 1366) * 100vw);
    margin-bottom: 40px;
}


.main-tit span{
  font-size: calc((16 / 1366) * 100vw);
  font-family: 'DIN Condensed';
  text-transform: uppercase;
  display: flex;
  line-height: 1;
  margin-bottom: 8px;
}

.sub-tit{
  font-size: calc((31.25 / 1366) * 100vw);
  text-align: center;
  position: absolute;
  top: 0;
  right: 25%;
  width:-moz-fit-content; /* Firefox */
  width:fit-content; /* other browsers */
}

.sub-tit-under{
  font-size: calc((31.25 / 1366) * 100vw);
  margin-bottom: 24px;
}

.sub-tit span{
  font-size: calc((16 / 1366) * 100vw);
  font-family: 'DIN Condensed';
  text-transform: uppercase;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}


.middle-txt{
    font-size: calc((20 / 1366) * 100vw);
    line-height: 2;
}

.contents-sub-txt{
  font-size: calc((16 / 1366) * 100vw);
  line-height: 1.6;
  margin-bottom: 16px;
  color: #888;
}

.lead-txt{
    font-size: calc((16 / 1366) * 100vw);
    line-height: 2;
}


.category-tit{
  font-size: calc((12.8 / 1366) * 100vw);
  font-weight: bold!important;
}


/* single-page-font-size */
.single-tit{
  font-size: calc((25 / 1366) * 100vw);
  margin-bottom: 32px;
  line-height: 1.6;
}

.single-recuit-tit-area .single-tit{
  margin-bottom: 24px;
}

.single-tit-sub{
  font-size: 31.25px!important;
  border-bottom: none!important;
  margin-bottom: 40px!important;
}

.content h2{
  font-size: calc((20 / 1366) * 100vw);
  line-height: 1.6;
  padding-bottom: 8px;
  margin-bottom: 32px;
}

.content h3{
  font-size: calc((18 / 1366) * 100vw);
  line-height: 1.6;
  border-bottom: 1px solid #bf9b7a;
  padding-bottom: 8px;
  margin-bottom: 32px;
}

.content p{
  font-size: calc((16 / 1366) * 100vw);
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: normal;
}

.content .single-recruit-unit{
  margin-bottom: 32px;
}

.content .single-recruit-unit li{
  font-weight: normal;
  line-height: 1.6;
}

.content .g-map-wrap{
  position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow:auto; 
    -webkit-overflow-scrolling:touch;
}

.content .g-map-wrap iframe {
  position:absolute;
      top:0;
      left:0;
      width:100%;
      height:100%;
      border:none;
      display:block;
}

/* / single-page-font-size */

.common-w-inner {
  padding-left: 8.784%;
  padding-right: 8.784%;
}
.common-h-inner {
  padding-top: 140px;
  padding-bottom: 140px;
}

.arrow-btn a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 30px;
  border: solid 1px #333;
  color: #333;
  fill: #333;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin: auto;
  position: relative;
  min-width: 140px;
}

/* category color */


/* news */
.event {
  background-color: #ffc474;
}
.infomation {
  background-color: #333;
}

/* / news */

.day-adhesion span {
  background-color: #ff3366;
}
.interview span , .interview-learn span {
  background-color: #ff9966;
}
.parenting span {
  background-color: #99cc66;
}

/* / category color */

.home .item-btn , footer .item-btn{
  width: 400px;
}

footer .item-btn{
  margin-top: 0;
}

.item-btn{
  width: 100%;
  background-color: #bf9b7a;
  border-radius: 24px;
  margin-left: auto;
  margin-top: 60px;
  background-image: url(../img/wood-line.png);
  background-size: 80% auto;
  background-position: -100% 40%;
  background-repeat: no-repeat;
}

.wp-pagenavi{
  margin: 60px auto 0px;
  width: 400px;
  background-color: #bf9b7a;
  border-radius: 24px;
  background-image: url(../img/wood-line.png);
  background-size: 80% auto;
  background-position: -100% 40%;
  background-repeat: no-repeat;
  color: #fff;
  display: block!important;
}

.wp-pagenavi a{
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0;
  padding: 20px 24px;
  display: inline-block;
}

#infscr-loading{
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: 0;
}

#infscr-loading img{
  width: 20px;
}

.item-btn a{
  display: flex;
  padding: 20px 24px;
  /* display: -webkit-box; */
  transition: all 0.2s ease;
  text-decoration: none;
}

.item-btn a:hover{
  opacity: 0.6;
}

_::-webkit-full-page-media, _:future, :root .item-btn a {
  display: -webkit-box;
}

.item-btn a p{
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0;
}

.item-btn a svg{
  width: 10px;
  color: #fff;
}

.white-btn{
  background: #fff;
  color: #151515;
}

.white-btn a p{
  color: #151515;
}

.white-btn a svg{
  width: 10px;
  color: #151515;
}


.submit-btn{
  background: none;
    border: none;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    height: 100%;
    padding: 0;
}

.flex-item{
  display: flex;
}

.wrap{
  padding: 160px 0px;
}

.m-width{
  max-width: 1024px;
  margin: 0 auto;
}

.thumb-big{

}

.border-w{
  border: solid #fff 8px;
}

.border-nomal{
  border: solid #faf5f1 8px;
}

.category-tit-bg-nomal{
  background-color: #faf5f1!important;
  padding: 16px!important;
}

.caption{
  font-size: 12px!important;
  color: #999;
  /* font-style: italic; */
  margin-top: 10px;
  margin-bottom: 32px;
}

.wp-caption-text{
  color: #999;
  /* font-style: italic; */
  margin-top: 10px;
  font-size: 12px!important;
}

.wp-caption{
  width: 100%!important;
}

.credit {
  /* text-align: right; */
  font-size: 12px!important;
  line-height: 1.5;
  color: #999;
  font-weight: normal;
}

.breadcrumbs{
  font-size: 10px;
  line-height: 1.4;
  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 800ms;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/*========= 流れるテキスト ===============*/

/*全共通*/

.slide-in {
	overflow: hidden;
    display: inline-block;
}

.slide-in_inner {
	display: inline-block;

}

/*左右のアニメーション*/
.leftAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
	animation-name:slideTextX100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
  from {
	transform: translateX(-100%); /*要素を左の枠外に移動*/
        opacity: 0;
  }

  to {
	transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
	animation-name:slideTextX-100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}


@keyframes slideTextX-100 {
  from {
	transform: translateX(100%);/*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
	transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}


.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.loading-animation img{
  width: 50%;
  margin: 0 auto;
}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}



/* ========================================================================================================
IE
======================================================================================================== */
@media all and (-ms-high-contrast: none) {
  #top-news-sec .item-unit a{
    height: 15px;
    margin-left: 16px;
  }


  #top-news-sec .item-unit .flex-item{
    width: 48%;
    justify-content: space-between;
  }

  .news-category p{
    margin-right: 0;
    width: 100%;
  }

  .item-btn a{
    height: 48px;
  }

  .thumb-item-tit{
    max-height: 64px;
  }

  .content-learn .contents-wrap{
    padding: 60px 120px;
  }

  #sec-related-category .flex-item li a{
    height: 132px;
  }

  .accordion-item .item-btn a{
    height: 64px;
  }

  .img-wrap{
    position: absolute;
    top: 10px;
    left: 0;
  }

}


/* ========================================================================================================
===========================================================================================================

responsive

===========================================================================================================
======================================================================================================== */

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

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

  /* ========================================================================================================
HEADER
======================================================================================================== */
header .header-wrap{
  height: 72px;
  padding: 0px 20px;
}  

.h-logo{
    width: 160px;
}


.h-menu .list-mune{
    display: none;
  }

.nav-button .line-unit{
  width: 32px;
  height: 32px;
  }

.nav-button span {
  height: 5px;
}

.nav-button span:nth-of-type(2) {
  top: 11px;
}

.nav-button p{
  font-size: 10px;
  letter-spacing: 0;
}

.inquiry-h-btn-sp a{
  font-size: 10px;
  color: #fff;
  line-height: 1;
  align-items: center;
  padding: 8px 12px;
  display: inline-block;
}

.full-nav-list-mune .item-btn{
  width: 100%;
}

.item-btn a{
  padding: 12px 24px;
}

.wrap{
  padding: 80px 40px;
}

.content .content-wrap{
  padding: 60px 40px 120px;
}

#related-article-sec .wrap, .single #recruit-article-sec .wrap{
  padding: 80px 40px;
}

.home .item-btn, footer .item-btn{
  width: 240px;
}


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



/* ========================================================================================================
TOP SEC FV
======================================================================================================== */

  #top-fv-sec .swiper-container ,   #top-fv-sec .swiper-container .swiper-wrapper{
    height: calc(100vh - 72px);
    position: relative;
  }

  .swiper-slide{
    background-position: 100% bottom;
    background-size: cover;
  }


  .swiper-slide:first-child{
    background-position: 140% top;
  }

  .fv-catchcopy{
    position: absolute;
    bottom: 40px;
    z-index: 1;
    color: #fff;
    left: 80px;
    font-size: 24px;
    letter-spacing: 2px;
  }

  .fv-catchcopy p{
    line-height: 1.6;
  }

  #top-news-sec .item-unit a svg{
    display: none;
  }

  #top-news-sec .item-unit a p{
    width: 100%;
  }


/* ========================================================================================================
TOP SEC NEWS
======================================================================================================== */

  #top-news-sec .top-news-sec-wrap .inner{
    width: 90%;
    padding: 40px;
    background-size: 90%;
    background-position: center;

  }

  #top-news-sec .item-unit{
    display: block;

  }

  #top-news-sec .item-unit a p{
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    line-height: 1.6;
  }

  #top-news-sec .item-unit .news-category{
    font-size: 10px;
    /* padding: 6px 10px; */
    margin-right: 12px;
    margin-bottom: 12px;
  }

  #top-news-sec .item-unit .news-category p{
    margin-right: 0;
    width: 100%;
  }

  #top-news-sec .item-unit .time{
    font-size: 12px;
    margin-bottom: 12px;
  }

  .top-news-sec-wrap .item-btn{
    width: 100%;
  }
  


/* ========================================================================================================
TOP SEC ABOUT
======================================================================================================== */

  #top-about-sec .wrap{
    padding: 80px 0px;
  }

  #top-about-sec .flex-item{
    display: block;
    padding-left: 0;
  }

  #top-about-sec .flex-item .flex-item-img{
    margin-bottom: 24px;
    padding-left: 40px;
  }

  #top-about-sec .about-inner .flex-item .flex-item-text{
    width: 100%;
    padding: 0px 40px;
  }

  #top-about-sec .about-inner .flex-item .flex-item-text p{
    margin-right: 0;
  }

/* ========================================================================================================
TOP SEC RECURIT
======================================================================================================== */

  #top-recruit-sec .flex-item-text{
    padding: 0px 40px;
  }

  #top-recruit-sec .item-btn{
    width: calc(100% - 80px);
  }

/* ========================================================================================================
TOP SEC CONTENTS
======================================================================================================== */

  .top-contents-sec-container-bg{
    padding: 80px 0px 40px;
  }

  #top-contents-sec .tit-container{
    margin: 0px 20px;
  }

  #top-contents-sec .sec-mask{
    display: block;
    padding:0px 20px;
  }

  #top-contents-sec .tit-container .txt-group{
    width: 100%;
    padding: 40px 0px;
  }

  #top-contents-sec .flex-item{
    display: block;
  }

  #top-contents-sec .contents-wrap .item-btn{
    position: static;
    margin: 40px auto 0px;
    width: calc(100%);
  }

  #top-contents-sec .content-learn{
    margin: 40px 0px;
    padding: 40px 0px;
  }

  #top-contents-sec .content-life{
    margin-top: 40px;
    padding: 40px 0px 80px;
  }

  .category-tit-bg-nomal{
    padding: 12px;
  }

  .category-tit-bg-nomal_sp{
    background-color: #fff!important;
    padding: 12px!important;
  }

  .thumb-wrap .thumb-item .category-tit{
    background: #fff;
  }

  .content-learn .thumb-wrap .thumb-item .category-tit , #top-contents-sec .content-learn .thumb-wrap:first-child .thumb-item .category-tit{
    background: #faf5f1;
  }


  #top-contents-sec .thumb-wrap .thumb-item .category-tit{
    padding: 16px;
  }

  #top-contents-sec .thumb-wrap:first-child .thumb-item .category-tit{
    padding: 16px;
  }

  #top-contents-sec .thumb-wrap .thumb-item{
    border: solid #faf5f1 8px;
  }

  .contents-sub-txt{
    font-size: 14px;
  }

  #top-contents-sec .thumb-wrap{
    display: block;
    width: 100%!important;
    margin-bottom: 40px;
  }

/* ========================================================================================================
TOP SEC LINK
======================================================================================================== */

  #top-link-sec{
    padding-left: 40px;
    padding-right: 40px;
  }

  #top-link-sec .flex-item li{
    width: calc(50% - 8px);
  }

  #top-link-sec .flex-item li:first-child p , #top-link-sec .flex-item li:nth-child(2) p , #top-link-sec .flex-item li:nth-child(6) p{
    padding: 7px 0px;
  }
  

/* ========================================================================================================
FOOTER
======================================================================================================== */

  footer .list-mune{
    display: block;
  }

  footer .wrap{
    padding: 60px 0px 8px 0px;
  }

  footer .elemnt02 .list{
    margin-bottom: 40px;
  }

  footer .elemnt02 ul li a{
    margin-bottom: 24px;
  }

/* ========================================================================================================
ARCHIVE PAGE
======================================================================================================== */

#archive-sec-contents .flex-item .thumb-wrap{
  display: block;
    width: 100%;
}

/* recurit   */
#recruit-lead-sec{
  padding: 40px;
}

.recruit-lead-sec-wrap{
  padding: 20px;
}

#recruit-lead-sec .item-btn{
  margin-top: 32px;
    width: 100%;
}


#recruit-article-sec .item-btn{
  margin: 40px auto 0px;
    width: 100%;
}

.recruit-serch-container .box .item-btn{
  width: 100%;
}

#recruit-serch-sec .recruit-serch-sec-wrap{
  padding:40px 20px;
  background-position: center;
}

#recruit-serch-sec .recruit-serch-container .flex-item .accordion-btn{
  width: 48px;
  height: 48px;
}

.recruit-serch-container .box{
  padding: 20px;
}


#recruit-article-sec{
  padding: 0px 40px;
}

#recruit-article-sec .thumb-wrap .thumb-item .category-tit{
  background: #faf5f1;
}

.wp-pagenavi{
  width: 100%;
}


.archive-news #top-news-sec .top-news-sec-wrap .inner{
    padding: 60px 40px;
  }

  .box{
    padding: 20px;
  }

  .accordion-area .area-map{
    padding: 20px;
  }

  .accordion-area .area-map ul li{
    padding: 6px 12px;
  }

  .accordion-area li{
    font-size: 12px;
  }

  .accordion-area .accordion-item .accordion-item-list{
    display: block;
  }

  .accordion-area .area-map ul li:first-child{
    right: 35%;
    top: 13%;
  }

  .accordion-area .area-map ul li:nth-child(2){
    top: 30%;
    right: 5%;
  }

  .accordion-area .area-map ul li:nth-child(3){
    right: 30%;
    top: 45%;
  }

  .accordion-area .area-map ul li:nth-child(4){
    right: 60%;
    bottom: 18%;
  }


  /* 404 */

  #notfound-sec{
      padding: 0px 40px;

  }

  

 #notfound-sec .item-btn{
  width: 100%;
}

/* contact */
.tab li a{
  padding: 16px 8px;
    font-size: 14px;
    background: #faf5f1;
}

.tab li.active a{
  background: #fff;
}


.page-id-221 #single-contact-area{
  padding: 60px 0px;
}

.page-id-221 #single-contact-area .main-tit{
  padding: 0px 32px;
}

.contact-web-lead{
  background: #fff;
}

div.wpcf7 p .contact-text-area{
  width: 100%;
}

/* ========================================================================================================
SINGLE PAGE
======================================================================================================== */
/* recruit */

  .single-recruit #single-job-sec-wrap{
    display: block;
    padding: 20px 20px 60px
  }

  .single-recruit #single-job-sec-wrap .swiper-recuit-wrap , .single-recuit-tit-area{
    width: 100%;
  }

  .single-recruit #single-job-sec-wrap .swiper-recuit-wrap{
    margin-bottom: 24px;
  }

  .single-recuit-tit-area .single-tit{
    margin-bottom: 12px;
  }

  .content .content-wrap{
    padding: 60px 40px 120px;
  }

  .single-tit-sub , .single-tit{
    font-size: 25px !important;
    margin-bottom: 24px !important;
  }

  .content p{
    /* font-size: 12px; */
    font-size: 16px;
    margin-bottom: 24px;
  }

  .content h2{
    font-size: 20px;
    margin-bottom: 24px;
  }

  .content h3{
    font-size: 18px;
    margin-bottom: 24px;
  }

  #single-job-sec .single-job-thumb-wrap{
    /* height: calc(100vh - 72px); */
    height: calc(44vh - 72px);
  }

  .single-job-contents-area .content .content-wrap{
    padding: 0;
  }

  #single-job-sec .single-job-thumb-wrap{
    padding: 20px;
  }

  #related-article-sec .wrap, .single #recruit-article-sec .wrap{
    padding: 60px 0px;
  }

  #recruit-article-sec .flex-item .thumb-wrap{
    width: 100%;
    display: block;
  }

/* ========================================================================================================
ARCHIVE PAGE
======================================================================================================== */

.category .under-fv-wrap , .category .under-fv-wrap .under-fv-mask{
    height: calc(100vh - 72px);
    position: relative;
  }

.category .under-fv-wrap .lead-area{
    padding: 20px;
    position: absolute;
    bottom: 20px;
    width: calc(100% - 10%);
  }

  .category .under-tit-container{
    /* height: calc(380px - 20%); */
  }

  .under-tit-container{
    /* height: calc(300px - 80px); */
    height: auto;
    padding: 8% 0px 23%;
  }


  .thumb-item-first .thumb-wrap{
    display: block;
  }

  .thumb-item-first .thumb-wrap .thumb-item-wrap , .thumb-item-first .thumb-txt{
    width: 100%;
  }

  #archive-sec-contents-item{
    padding: 60px 20px 40px;
    z-index: 1;
  }

  #archive-sec-contents-item::before{
    z-index: -1;
  }

  #archive-sec-contents .flex-item{
    display: block;
  }

  #archive-sec-contents .wrap{
    padding: 60px 40px;
  }

  #archive-sec-contents-item .item-btn{
    width: 100%;
  }

.thumb-item-tit{
    margin: 12px 0px 6px;
  }

/* .thumb-txt{
    margin-bottom: 32px;
  } */

.thumb-wrap:last-child .thumb-txt{
    margin-bottom: 0;
  }



  .sub-tit-under{
    font-size: 16px;
  }

  

  #sec-related-category .flex-item{
    display: block;
  }

  #sec-related-category .flex-item .related-category-item{
    margin-bottom: 24px;
  }

  #sec-related-category .flex-item .related-category-item:last-child{
    margin-bottom: 0;
  }

  #sec-related-category .flex-item li a{
    padding: 20px;
  }

  #sec-related-category .flex-item li a p{
    font-size: 25px;
  }

  #sec-related-category .flex-item li a p span{
    font-size: 12px;
    margin-bottom: 12px;
  }

  #sec-related-category .wrap{
    padding: 40px;
  }

  #sec-related-category .flex-item li{
    width: 100%;
  }


  /* 検索ページ */
  .result-wrap{
    padding: 60px 40px;
  }

  .result-wrap .thumb-wrap .thumb-item .category-tit{
    background: #faf5f1;
  }


  /* contact page */
  div.wpcf7 textarea{
    height: 100px;
  }

/* ========================================================================================================
UNIT RELATED
======================================================================================================== */
  #related-article-sec{
    padding: 0px 40px;
  }

  .recruit-article-contents-wrap .flex-item{
    display: block;
  }

/* ========================================================================================================
common
======================================================================================================== */
  .main-tit{
    font-size: 25px;
    margin-bottom: 18px;
  }

  .main-tit span{
    font-size:12.8px;
  }

  .sub-tit{
    font-size: 20px;
    position: static;
    width: 100%;
    margin-bottom: 24px;
  }

  .category-tit{
    font-size: 10px;
  }

  .sub-tit span{
    font-size: 12px;
  }

  .lead-txt , .middle-txt{
    font-size: 14px;
    line-height: 1.6;
  }


  .tag-name{
    font-size: 12px;
  }

  .wrap {
    padding: 80px 0px;
  }



  .item-btn{
    width: calc(100% - 80px);
    margin-top: 40px;
    margin: 40px auto 0px;
  }


  .content .item-btn{
    width: 48%;
  }

  .content .item-btn a{
    padding: 10px 18px;
    display: flex;
    align-items: center;
  }

  .contents-wrap{
    padding: 0px 40px;
  }

  .pc-block {
    display: none;
  }

  .sp-display {
    display: block;
  }


  .pc-display{
    display: none;
  }

  #share-sec , .single-job-contents-area .flex-item{
    margin-bottom: 24px;
  }

  #share-sec ul li{
    width: calc(33.333% - 6px);
  }

  #share-sec ul li a{
    height: 32px;
  }


  /* contact */
  div.wpcf7{
    border: none;
    border-radius: 0px;
  }

  div.wpcf7 { 
    background:#fff;
  }

  #single-contact-area .wrap{
    padding: 0;
  }

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


  
}


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

#recruit-lead-sec .item-btn a p{
  font-size: 10px;
}
  
}



/* ========================================================================================================
===========================================================================================================

last

===========================================================================================================
======================================================================================================== */
