@charset "UTF-8";
/* CSS Document */

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

img {
	width: 100%;
	border: none;
	vertical-align: bottom;
}

.pc { display: block !important; }
.sp { display: none !important; }
.sp-point { display: none !important; }


/*Setting***************************************************/
:root {
    --primary-color: #f0f0f0;
    --secondary-color: #00a653;
	--jp-primary-font: 'Noto Sans JP', sans-serif;
	--jp-secondary-font: 'Zen Kaku Gothic New', sans-serif;
	--en-primary-font: 'Barlow', sans-serif;
  	--font-weight-Regular: 400;
  	--font-weight-Medium: 600;
  	--font-weight-Bold: 800;
	--text-color: #3e3a39;
	--text-color-secondary: #000;
	--text-color-tertiary: #00a653;

}

::selection {
  background-color: #4ac338;
}


body {
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
	font-family: var(--jp-primary-font);
	background: var(--primary-color);
  color: var(--text-color);
}

/* ---------------------------- */
/* --- Animation --- */
/* ---------------------------- */
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 30%);
  transition: 1.2s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/*ボタン関連************************************************************/
.btn-item-01 {
	font-size: 1.3rem;
	color: var(--secondary-color);
	font-weight: var(--font-weight-Medium);
	letter-spacing: 0.3em;
	display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
  position: relative;
  text-decoration: none;
}
.btn-item-02 {
	font-size: 1.3rem;
	color: #fff;
	font-weight: var(--font-weight-Medium);
	letter-spacing: 0.3em;
	display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
  position: relative;
  text-decoration: none;
}
.btn-item-03 {
	font-size: 1.3rem;
	color: #231815;
	font-weight: var(--font-weight-Medium);
	letter-spacing: 0.3em;
	display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
  position: relative;
  text-decoration: none;
}
.btn-item-01 .icon,
.btn-item-02 .icon,
.btn-item-03 .icon {
  display: inline-block;
  width: 55px;
  height: 55px;
  margin-left: 18px;
  border-radius: 50%;
  background-color:#fff;
  position: relative;
   transition: background-color 0.3s ease, transform 0.3s ease;
}
.btn-item-01 .icon::before,
.btn-item-02 .icon::before,
.btn-item-03 .icon::before,
.btn-item-01 .icon02::before,
.btn-item-02 .icon02::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
  width: 5px;
  height: 5px;
  border-left: 2px solid #00a653;
  border-bottom: 2px solid #00a653;
  transition: border-color 0.3s ease;
}
.btn-item-01:hover .icon,
.btn-item-02:hover .icon,
.btn-item-03:hover .icon,
.btn-item-01:hover .icon02 {
  background-color: #00a653;
  transform: scale(1.3);
}
.btn-item-02:hover .icon02 {
	background-color: #fff;
	transform: scale(1.3);
}

.btn-item-01:hover .icon::before,
.btn-item-02:hover .icon::before,
.btn-item-03:hover .icon::before,
.btn-item-01:hover .icon02::before {
  border-color:#fff; 
}
.btn-item-02:hover .icon02::before{
	border-color:#00a653; 
}


.btn-item-01 .icon02,
.btn-item-02 .icon02 {
  display: inline-block;
  width: 55px;
  height: 55px;
  margin-left: 18px;
  border-radius: 50%;
  background-color:#f0f0f0;
  position: relative;
   transition: background-color 0.3s ease, transform 0.3s ease;
}


/*header************************************************************/
header {
	width: 90%;
	height: 7vh;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2% 5%;
}
.header-left {
	width:10%;
	margin: 0;
}
.header-left img {
	width:125px;
}
.header-right {
	width:80%;
	margin: 0 0 0 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	font-family: var(--jp-secondary-font);
	font-size: 1.4rem;
	font-weight: 500;
	text-decoration: none;
}
.header-right li.h-txt {
	color: var(--text-color-secondary);
	transition: 0.3s;
	margin: 0 0 0 4vw;
	position: relative; 
	text-decoration: none;
	list-style: none;
}
.header-right li.h-txt::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 1.5px;
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
}
.header-right li.h-txt:hover::after {
  width: 100%; 
  transform: translateX(-50%) scaleX(1);
}
.header-right li.contact {
	margin: 0 0 0 1vw;
	color: #FFF;
}
.header-right li.contact a {
	border-radius: 3px;
	display: flex;
  	align-items: center;
  	justify-content: center;
	padding: 1vh 2.5vw;
	font-size: 1.3rem;
	margin: 0 0 0 3vw;
	background: var(--secondary-color);
}
.header-right li.contact a:hover {
	opacity: 0.4;
	transition: 0.3s;
}


/*fixd-header*****/
.fix-header {
	width: 90%;
	height: 7vh;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2% 5%;
	background-color: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
	transform: translateY(-100%);
	transition: transform 0.3s ease;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	z-index: 999;
}
.fix-header.show {
  transform: translateY(0); /* 表示 */
}

.nav-wrapper {
	display: none;
}

#contents-wrapper {
	width: 100%;
}
/*kv************************************************************/
.kv-area {
	position: relative;
  	width: 96%;
  	height: 460px; 
	border-radius: 7px;
	margin: 0 auto;
  	overflow: hidden;
}
.kv-area::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('../images/img-kv.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.5);     
  animation: zoomOut 10s ease-in-out forwards;
}
@keyframes zoomOut {
  0% { transform: scale(1.5); }
  100% { transform: scale(1); }  
}
.kv-txt {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color:var(--text-color);
  text-align: center;
  font-family: var(--jp-secondary-font);
  z-index: 2; 
  font-size: 2.0rem;
  font-weight: 700;
  text-align: start;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
  opacity: 0;
  animation: fadeInText 2s ease forwards; 
  animation-delay: 0.8s; 
  writing-mode: vertical-rl;  
  text-orientation: upright; 
  line-height: 2.2;
  letter-spacing: 0.65em;
}
@keyframes fadeInText {
  0% { opacity: 0; transform: translate(-50%, -60%); }
  100% { opacity: 1; transform: translate(-50%, -50%); }
}
.kv-en-txt {
	width: 98%;
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translate(-50%, -50%);
}

/*section01*********************************************/
.section-box-company {
	width: 950px;
	margin: 150px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: top;
}
.section-box-company .left-box {
	width: 50%;
	margin: 0;
}
.section-box-company .right-box {
	width: 45%;
	margin: 0;
}
.section-title-en {
	font-size: 1.1rem;
	color: #595757;
	font-family: var(--en-primary-font);
	font-weight: var(--font-weight-Medium);
	position: relative;
	display: inline-block;
	margin: 0 0 20px 0;
	letter-spacing: 0.2em;
}
.section-title-en::before {
	content: "";
  display: inline-block; 
  width: 18px; 
  height: 4px;
  background-color: var(--secondary-color);
  margin: 0 8px 2px 0; 
  vertical-align: middle;
}
.section-copy {
	font-size: 2.0rem;
	color: var(--text-color);
	font-family: var(--jp-primary-font);
	font-weight: var(--font-weight-Medium);
	line-height: 2;
	letter-spacing: 0.35em;
	margin: 0 0 20px 0;
}
.section-txt {
	font-size: 1.3rem;
	color: var(--text-color);
	font-family: var(--jp-primary-font);
	font-weight: var(--font-weight-Regular);
	line-height: 2.2;
	letter-spacing: 0.2em;
	margin: 0 0 70px 0;
}
.section-chart {
	width: 100%;
}
.contents-btn-box {
	width: 950px;
	margin: 0 auto 150px;
}

/*section02*********************************************/
.section-box-about {
	position: relative;
  	width:80%;
	border-radius: 7px;
	margin: 0 auto;
	background-color: #FFF;
	padding: 8%;
	letter-spacing: 0.2em;
}
.section-title-area {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	margin-bottom: 80px;
}
.section-title-area .copy {
	font-size: 2.5rem;
	color: var(--text-color);
	font-family: var(--jp-primary-font);
	font-weight: var(--font-weight-Medium);
	line-height: 2;
	letter-spacing: 0.35em;
	margin: 0 120px 0 0;
}
.section-title-area .txt {
	font-size: 1.3rem;
	color: var(--text-color);
	font-family: var(--jp-primary-font);
	font-weight: var(--font-weight-Regular);
	line-height: 2.2;
	margin: 5px 0 0 0;
}
.section-box-three-items {
	display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 5%;
  row-gap: 0;
}
.section-box-three-items .box {
	width: 30%;
	border-bottom: 1px solid #dcdddd;
	text-decoration: none;
	color: inherit;
	position: relative;
	overflow: hidden;
	display: block;
	margin-bottom: 5%;
}
.section-box-three-items .ph {
	margin: 0;
}
.section-box-three-items .title {
	font-size: 1.6rem;
	font-weight: var(--font-weight-Medium);
	color: var(--secondary-color);
	position: relative;
	margin: 18px 0;
}
.section-box-three-items .title::after {
	content: ""; 
  position: absolute;
  right: 1px;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
  width: 5px;
  height: 5px;
  border-left: 2px solid #00a653;
  border-bottom: 2px solid #00a653;
}
.section-box-three-items .overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 166, 83, 0.9);
	color: #fff;
	font-size: 1.3rem;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: scale(1.1);
	transition: opacity 0.4s ease, transform 0.4s ease;
	border-radius: 7px;
}

/* hover時に表示 */
.section-box-three-items .box:hover .overlay {
	opacity: 1;
	transform: scale(1);
}

.btn-area {
	width: 100%;
	text-align: center;
	margin-top: 50px;
}

/*section03*********************************************/
.section-box-works {
  	width:100%;
	margin: 200px auto;
	display: flex;
	justify-content: space-between;
}
.section-box-works .left-box {
  	width:30%;
	margin: 0 auto;
	padding-left: 10%;
}
.section-box-works .right-box {
  	width:60%;
	margin: 0 auto;
}
.section-box-works .section-title {
	font-size: 2.5rem;
	color: var(--text-color);
	font-family: var(--jp-primary-font);
	font-weight: var(--font-weight-Medium);
	line-height: 2;
	letter-spacing: 0.35em;
	margin: 0 0 20px 0;
}
.works-slider {
	width: 100%;
	overflow: hidden;
}
.works-slider .slick-slide {
  padding: 0 15px; /* スライド間の隙間 */
  box-sizing: border-box;
}
.works-slider img {
  width: 100%;
  height: auto;
  display: block;
}

/*section04*********************************************/
.section-box-recruit {
	position: relative;
  	width: 96%;
  	height: 350px; 
	margin: 0 auto 350px;
	background-image: url('../images/img-recruit.png');
  	background-size: cover;
  	background-position: center;
	border-radius: 7px;
}
.recruit-contents-box {
	width: 70%;
	margin: 0 auto;
	background-image: linear-gradient(
  90deg,
  rgba(0, 134, 84, 0.9),   /* #008654 + α90% */
  rgba(0, 192, 78, 0.9)    /* #00c04e + α90% */
);
	position: absolute;
	top:55%;
	left:50%;
	transform: translateX(-50%);
	border-radius: 7px;
	text-align: center;
	padding: 3% 5% 5%;
}
.recruit-contents-box .title-en {
	font-size: 1.1rem;
	color: #fff;
	font-family: var(--en-primary-font);
	font-weight: var(--font-weight-Medium);
	margin: 0 auto 5px;
	letter-spacing: 0.2em;
}
.recruit-contents-box .title-jp {
	font-size: 2.5rem;
	color: #fff;
	font-family: var(--jp-primary-font);
	font-weight: var(--font-weight-Medium);
	letter-spacing: 0.35em;
	margin: 0 0 40px 0;
}
.recruit-contents-box .txt-box {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.recruit-contents-box .txt-box .left-box {
	width: 70%;
	font-size: 1.3rem;
	color: #fff;
	font-family: var(--jp-primary-font);
	font-weight: var(--font-weight-Regular);
	line-height: 2.2;
	letter-spacing: 0.2em;
	text-align: left;
}
.recruit-contents-box .txt-box .right-box {
	width: 25%;
	text-align: right;
}


/*section05*********************************************/
.section-box-contact {
	position: relative;
  	width:80%;
	border-radius: 7px;
	margin: 0 auto 100px;
	background-color: #FFF;
	padding: 3% 8%;
	letter-spacing: 0.2em;
}
.section-box-contact .contents-area {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.section-box-contact .contents-area .left-box {
	width: 55%;
}
.section-box-contact .contents-area .right-box {
	width: 45%;
	display: flex;
}
.section-box-contact .contents-area .left-box .title {
	font-size: 2.5rem;
	color: var(--text-color);
	font-family: var(--jp-primary-font);
	font-weight: var(--font-weight-Medium);
	line-height: 2;
	letter-spacing: 0.35em;
	margin: 0 0 20px 0;
}
.section-box-contact .contents-area .left-box .txt {
	font-size: 1.3rem;
	color: var(--text-color);
	font-family: var(--jp-primary-font);
	font-weight: var(--font-weight-Regular);
	line-height: 2.2;
	margin: 0;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 2em 2em;
  width: 360px;
  background-color: #00a651;
  color: #fff;
  font-size: 1.3rem;
  font-weight: var(--font-weight-Medium);
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.3s ease;
  margin-left: auto;
}

.contact-btn .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* 線で作る矢印 */
.contact-btn .arrow {
  display: block;
  width: 3px;
  height: 3px;
  border-left: 2px solid #00a653;
  border-bottom: 2px solid #00a653;
  transform: rotate(-135deg); /* 向きを右向きに調整 */
  transition: all 0.3s ease;
  margin-right: 2px;
}

/* ホバー時：色反転 */
.contact-btn:hover {
  background: #f0f0f0;
  color: #00a651;
}

.contact-btn:hover .btn-icon {
  background: #00a651;
  transform: scale(1.4);
}

.contact-btn:hover .arrow {
  border-left-color: #fff;
  border-bottom-color: #fff;
}

/*footer*********************************************/
footer {
	width: 95%;
	border-top: 1px solid #c9caca;
	margin: 0 auto 80px;
}
footer .logo {
	margin: 40px auto;
	width: 8%;
	max-width: 100px;
}
footer .contents-box {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #c9caca;
	border-bottom: 1px solid #c9caca;
	padding: 25px 1px;
}
footer .contents-box .left {
	font-size: 1.3rem;
	color: var(--text-color);
	font-weight:var(--font-weight-Medium);
	line-height: 1.5;
	margin: 0;
	width: 50%;
}
footer .contents-box .right {
	font-size: 1.1rem;
	font-family: var(--en-primary-font);
	font-weight: var(--font-weight-Regular);
	color: var(--text-color);
	line-height: 1.5;
	margin: 0;
	width: 50%;
	text-align: right;
	letter-spacing: 0.15em;
}







@media screen and (max-width: 900px) {/* 899px以下に適用されるCSS（スマホ用） */

	.pc { display: none !important; }
	.sp { display: block !important; }
	.sp-point { display: inline !important; }
/*header************************************************************/
header {
  width: 90%;
  height: 7vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1vh 5%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  /* すりガラス風 */
  background-color: rgba(255, 255, 255, 0.4); /* 白の半透明 */
  backdrop-filter: blur(10px); /* 背景をぼかす */
  -webkit-backdrop-filter: blur(10px); /* Safari対応 */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* ふんわり影 */
}
.header-left {
	width:10%;
	margin: 0;
}
.header-left img {
	width:100px;
}
.header-right {
	display: none;
}
.fix-header {
	display: none;
}
.nav-wrapper {
	display: block;
}
/* 
hamburger(ハンバーガーアイコン)
=================================== *//* ハンバーガー本体（白丸） */
.hamburger {
  position: absolute;
  right: 20px;
  top: 15px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  z-index: 1600;
}

/* ホバーで外周光る */
.hamburger:hover {
  box-shadow: 0 0 8px 3px rgba(0, 166, 83, 0.5);
}

/* ラッパーで線を上下中央＋間隔均等 */
.hamburger__line {
  position: absolute;
  left: 50%;
  width: 25px;
  height: 3px;
  background-color: #00a653;
  transform: translateX(-50%);
  transition: all 0.4s;
  transform-origin: center;
}
/* 初期状態：上下にずらす */
.hamburger__line--1 { top: 14px; }
.hamburger__line--2 { top: 50%; transform: translate(-50%, -50%); }
.hamburger__line--3 { bottom: 14px; }

/* クリック時：中央で× */
.open .hamburger__line--1 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.open .hamburger__line--2 {
  opacity: 0;
}
.open .hamburger__line--3 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* 
sp-nav(ナビ)
=================================== */
.sp-nav {
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #00a653;
  transition: all 0.8s;
  z-index: 1200;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
  right: 0;
}
.menu-title {
	font-size: 2.5rem;
	color: #FFF;
	font-family: var(--en-primary-font);
	font-weight: var(--font-weight-Medium);
	margin: 35% auto 2%;
	width: 60%;
	letter-spacing: 0.3em;
}
.sp-nav ul {
	width: 60%;
	margin: 8% auto 0;
	font-size: 1.4rem;
	line-height: 4.5;
	color: #fff;
	font-weight: var(--font-weight-Medium);
	text-align: left;
	letter-spacing: 0.2em;
}
.sp-nav ul li {
  position: relative;
  padding-left: 2.6rem; /* 丸と矢印用の余白 */
  list-style: none; /* デフォルトの黒点は消す */
}

/* 白丸 */
.sp-nav ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
}

/* 緑カーソル（矢印） */
.sp-nav ul li::after {
  content: "";
  position: absolute;
  left: 6px; /* 白丸の中に配置 */
  top: 50%;
  transform: translateY(-50%) rotate(-45deg); /* 右向き矢印 */
  width: 3px;
  height: 3px;
  border-right: 2px solid #00a653;
  border-bottom: 2px solid #00a653;
}


/* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 1100;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}

#contents-wrapper {
	width: 100%;
	padding-top: 12vh;
}


/*kv************************************************************/
.kv-area {
	position: relative;
  	width: 94%;
  	height: 500px; 
	border-radius: 7px;
	margin: 0 auto;
  	overflow: hidden;
}

.kv-en-txt {
	width: 98%;
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translate(-50%, -50%);
}

/*section01*********************************************/
.section-box-company {
	width: 90%;
	margin: 80px auto;
	display: flex;
	flex-direction: column;
	align-items: top;
}
.section-box-company .left-box {
	width: 100%;
	margin: 0;
}
.section-box-company .right-box {
	width: 80%;
	margin: 0 auto;
}

.section-copy {
	font-size: 1.7rem;
	letter-spacing: 0.15em;
}
.contents-btn-box {
	width: 90%;
	margin: 0 auto 80px;
}
.section-txt {
	margin: 0 0 40px 0;
	text-align: justify;
	letter-spacing: 0.1em;
}

/*section02*********************************************/
.section-box-about {
	position: relative;
  	width:84%;
	border-radius: 7px;
	margin: 0 auto;
	background-color: #FFF;
	padding: 10% 5%;
	letter-spacing: 0.2em;
}
.section-title-area {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin-bottom: 80px;
}
.section-title-area .copy {
	font-size: 2.0rem;
	margin: 0 0 10px 0;
}
.section-title-area .txt {
	font-size: 1.3rem;
	margin: 5px 0 0 0;
	text-align: justify;
}
.section-box-three-items {
	display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.section-box-three-items .box {
	width: 98%;
	border-bottom: 1px solid #dcdddd;
	text-decoration: none;
	color: inherit;
	position: relative;
	overflow: hidden;
	display: block;
	margin-bottom: 10%;
}
.section-box-three-items .ph {
	margin: 0;
}
.section-box-three-items .title {
	font-size: 1.5rem;
	margin: 18px 0;
}


/*section03*********************************************/
.section-box-works {
  	width:90%;
	margin: 80px auto;
	display: flex;
	flex-direction: column;
}
.section-box-works .left-box {
  	width:100%;
	margin: 0 auto;
	padding-left: 0;
}
.section-box-works .right-box {
  	width:100%;
	margin: 70px auto;
}
.section-box-works .section-title {
	font-size: 2.0rem;
	margin: 0 0 20px 0;
}


/*section04*********************************************/
.section-box-recruit {
	position: relative;
  	width: 94%;
  	height: 300px; 
	margin: 0 auto 350px;
	background-image: url('../images/img-recruit.png');
  	background-size: cover;
  	background-position: center;
	border-radius: 7px;
}
.recruit-contents-box {
	width: 85%;
	margin: 0 auto;
	background-image: linear-gradient(
  90deg,
  rgba(0, 134, 84, 0.9),   /* #008654 + α90% */
  rgba(0, 192, 78, 0.9)    /* #00c04e + α90% */
);
	position: absolute;
	top:45%;
	left:50%;
	transform: translateX(-50%);
	border-radius: 7px;
	text-align: center;
	padding: 7% 8%;
}
.recruit-contents-box .title-jp {
	font-size: 2.0rem;
	color: #fff;
	font-family: var(--jp-primary-font);
	font-weight: var(--font-weight-Medium);
	letter-spacing: 0.35em;
	margin: 0 0 20px 0;
}
.recruit-contents-box .txt-box {
	width: 100%;
	display: flex;
	flex-direction: column;
}
.recruit-contents-box .txt-box .left-box {
	width: 100%;
	text-align: left;
	margin: 0 0 20px 0;
	line-height: 1.8;
	letter-spacing: 0.1em;
	text-align: justify;
}
.recruit-contents-box .txt-box .right-box {
	width: 80%;
	text-align: center;
}


/*section05*********************************************/
.section-box-contact {
	position: relative;
  	width:84%;
	border-radius: 7px;
	margin: 0 auto 100px;
	background-color: #FFF;
	padding: 8% 5%;
	letter-spacing: 0.2em;
}
.section-box-contact .contents-area {
	width: 100%;
	display: flex;
	flex-direction: column;
}
.section-box-contact .contents-area .left-box {
	width: 100%;
}
.section-box-contact .contents-area .right-box {
	width: 100%;
	display: flex;
}
.section-box-contact .contents-area .left-box .title {
	font-size: 2.0rem;
	margin: 0 0 20px 0;
}
.section-box-contact .contents-area .left-box .txt {
	margin: 0 0 30px 0;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
 padding: 1.2em 1.2em 1.3em 1.2em;
  width: 100%;
  background-color: #00a651;
  color: #fff;
  font-size: 1.2rem;
  margin-left: 0;
}

.contact-btn .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #fff;
}

/*footer*********************************************/
footer {
	width: 95%;
	border-top: 1px solid #c9caca;
	margin: 0 auto 40px;
}
footer .logo {
	margin: 30px auto;
	width: 20%;
}
footer .contents-box {
	display: flex;
	flex-direction: column;
	border-top: 1px solid #c9caca;
	border-bottom: 1px solid #c9caca;
	padding: 25px 1px;
}
footer .contents-box .left {
	margin: 0 0 15px 0;
	width: 100%;
	text-align: center;
	text-decoration: none;
}
footer .contents-box .right {
	margin: 0;
	width: 100%;
	text-align: center;
	letter-spacing: 0.15em;
}


}/* 767px以下に適用されるCSS（スマホ用） */
