﻿@charset "utf-8";
@import "base.css";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@100;300;400;500;600;700;800;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100;300;400;500;600;700;800;900&display=swap');

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  全般設定
　━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
body {
	font-family: "Jost", sans-serif;
	font-family: 'Noto Serif JP', serif;
	font-family: 'Noto Sans JP', 'Yu Gothic Medium', '游ゴシック Medium', YuGothic, '游ゴシック体', 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'メイリオ', sans-serif;
	font-size: 16px;
	color: #00060e;
	line-height: 1.4;
	-webkit-text-size-adjust: 100%;
}
#wrapper {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	position: relative;
	z-index: 1;
}
* { box-sizing: border-box; }

.bg_white {
	background-color: #ffffff;
}

.flex {
	display: flex;
	flex-wrap: wrap;
}
.reverse {
	flex-flow: row-reverse;
}
.jc_sb {
	justify-content: space-between;
}
.jc_c {
	justify-content: center;
}
.jc_fe{
	justify-content: flex-end;
}
.ai_c {
	align-items: center;
}
.ai_fe {
	align-items: flex-end;
}
.ac_sb {
	align-content: space-between;
}

@media (min-width: 769px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}

.w1400,
.w1200,
.w1150,
.w1100,
.w960,
.w600 {
	width: 100%;
	margin: 0 auto;
}
.w1400 {
	max-width: 1400px;
}
.w1200 {
	max-width: 1200px;
}
.w1150 {
	max-width: 1150px;
}
.w1100 {
	max-width: 1100px;
}
.w960 {
	max-width: 960px;
}
.w600 {
	max-width: 600px;
}

.lh18 {
	line-height: 1.8;
}

img.br10 {
	border-radius: 10px;
}
img.br20 {
	border-radius: 20px;
}
img.br30 {
	border-radius: 30px;
}

@media (max-width: 1200px) {
	img.br30 {
		border-radius: 20px;
	}
}

.pc1200,
.pc1000,
.pc {
	display: inline-block;
}
.sp1200,
.sp1000,
.sp {
	display: none;
}
@media (max-width: 1200px) {
	.pc1200 {
		display: none;
	}
	.sp1200 {
		display: inline-block;
	}
}
@media (max-width: 1000px) {
	.pc1000 {
		display: none;
	}
	.sp1000 {
		display: inline-block;
	}
}
@media (max-width: 768px) {
	.pc {
		display: none;
	}
	.sp {
		display: inline-block;
	}
}


/* header
------------------------------------------------------------*/
header {
	width: 100%;
	height: 80px;
	position: fixed;
	left: 0;
	right: 0;
	top: 30px;
	z-index: 999;
}
header .inner {
	width: calc(100% - 30px);
	max-width: 1780px;
	height: 100%;
	border-radius: 40px;
	background-color: #ffffff;
	box-shadow: 0 5px 5px rgba(42, 171, 159, 0.1);
	margin: 0 auto;
	padding: 10px 10px 10px 30px;
}

header .logo img {
	width: auto;
	height: 64px;
}

@media (max-width: 1200px) {
	header {
		height: 60px;
		top: 5px;
	}
	header .inner {
		width: calc(100% - 10px);
		border: 1px solid #2aab9f;
		border-radius: 10px;
		box-shadow: none;
		padding: 5px;
	}

	header .logo img {
		height: 50px;
	}
}

nav ul li a {
	font-family: "Jost", sans-serif;
	font-size: 20px;
	font-weight: 500;
}

@media (min-width: 1201px) {
	nav ul li {
		padding-top: 5px;
		position: relative;
	}
	nav ul li:not(:first-child) {
		margin-left: 40px;
	}

	nav ul li a {
		font-size: 20px;
	}
	nav ul li.current a,
	nav ul li a:hover {
		color: #2aab9f;
	}

	nav ul li.btn {
		width: 176px;
		height: 60px;
		padding-top: 0;
	}
	nav ul li.btn a {
		width: 100%;
		height: 100%;
		border-radius: 30px;
		color: #ffffff;
		padding-top: 3px;
	}

	nav ul li.btn.contact {
		margin-left: 15px;
	}
/*
	nav ul li.btn.recruit a {
		background-color: #97d23c;
	}
	nav ul li.btn.contact a {
		background-color: #2aab9f;
	}
*/
/*
	nav ul li.btn.recruit a:hover,
	nav ul li.btn.contact a:hover,
	nav ul li.btn.current a {
		background-color: #e1e1e1;
	}
*/

/*	nav ul li.btn.recruit a:hover, */
	nav ul li.btn.recruit.current a::before {
		background: linear-gradient(180deg, #97d23c 45%, rgba(151, 210, 60, 0.3) 100%);
	}
/*	nav ul li.btn.contact a:hover, */
	nav ul li.btn.contact.current a::before {
		background: linear-gradient(180deg, #2aab9f 45%, rgba(42, 171, 159, 0.3) 100%);
	}

	nav ul li.btn.contact a,
	nav ul li.btn.recruit a {
		position: relative;
		z-index: 3;
	}
	nav ul li.btn.recruit a::before,
	nav ul li.btn.contact a::before,
	nav ul li.btn.recruit a::after,
	nav ul li.btn.contact a::after {
		content: '';
		width: 100%;
		height: 100%;
		border-radius: 30px;
		position: absolute;
		left: 0;
		top: 0;
	}
	nav ul li.btn.recruit a::before,
	nav ul li.btn.contact a::before {
		animation: grad_color01 0.5s forwards;
		z-index: -1;
	}
	nav ul li.btn.recruit a::before {
		background: linear-gradient(180deg, #97d23c 45%, #97d23c 100%);
	}
	nav ul li.btn.contact a::before {
		background: linear-gradient(180deg, #2aab9f 45%, #2aab9f 100%);
	}

	nav ul li.btn.recruit a:hover::before,
	nav ul li.btn.contact a:hover::before {
		animation: grad_color10 0.5s forwards;
	}

	nav ul li.btn.recruit a::after,
	nav ul li.btn.contact a::after {
		z-index: -2;
	}
	nav ul li.btn.recruit a::after {
		background: linear-gradient(180deg, #97d23c 45%, rgba(151, 210, 60, 0.3) 100%);
	}
	nav ul li.btn.contact a::after {
		background: linear-gradient(180deg, #2aab9f 45%, rgba(42, 171, 159, 0.3) 100%);
	}

	nav ul li.btn.recruit a:hover::after,
	nav ul li.btn.contact a:hover::after {
		animation: grad_color01 0.5s forwards;
	}

	@keyframes grad_color10 {
		0% {
			opacity: 1;
		}
		100% {
			opacity: 0;
		}
	}
	@keyframes grad_color01 {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}

	nav ul li.btn.recruit.current a::after,
	nav ul li.btn.contact.current a::after {
		background: none;
	}

	nav ul li.btn.recruit.current a:hover::after {
		background: linear-gradient(180deg, #97d23c 45%, rgba(151, 210, 60, 0.3) 100%);
	}
	nav ul li.btn.contact.current a:hover::after {
		background: linear-gradient(180deg, #2aab9f 45%, rgba(42, 171, 159, 0.3) 100%);
	}

	.nav_sub {
		display: none;
		width: 100%;
		padding-top: 80px;
		position: absolute;
		left: 0;
		top: 1px;
		z-index: 1;
		transition: 0.5s;
	}
	nav ul li:hover .nav_sub {
		display: block;
	}
	.nav_sub a {
		display: block;
		width: 100%;
		background-color: #ffffff;
		color: #00060e;
		font-size: 16px;
		text-align: center;
		box-shadow: 0 0 9.8px rgba(42, 171, 159, 0.2);
		padding: 10px 20px !important;
	}
	.nav_sub a:hover {

	}
	.nav_sub .sub:not(:last-child) a {
		border-bottom: 1px dashed #f2f2f2;
	}

	nav ul li.btn .nav_sub a {
		color: #00060e;
	}
	nav ul li.btn.recruit .nav_sub a::before,
	nav ul li.btn.recruit .nav_sub a::after {
		content: none;
	}

	nav ul li.btn .nav_sub a:hover {
		color: #97d23c;
	}
}

@media (max-width: 1400px) and (min-width: 1201px) {
    nav ul li:not(:first-child) {
        margin-left: 20px;
    }
}

@media (max-width: 1200px) {
	.sp_menu {
		display : block;
		width: 42px;
		height: 42px;
		text-align: center;
		position: fixed;
		right: 14px;
		top: 14px;
		z-index: 3;
		cursor: pointer;
	}
    .sp_menu span {
	    display: block;
		width: 30px;
		height: 2px;
		background-color: #00060e;
		position: absolute;
		left: 6px;
		transition: 0.3s ease-in-out;
  	}
  	.sp_menu span:nth-child(1) { top: 10px; }
  	.sp_menu span:nth-child(2) { top: 20px; }
  	.sp_menu span:nth-child(3) { top: 30px; }
  
    .sp_menu.active span:nth-child(1) {
		left: 6px;
		top: 18px;
		transform: rotate(-45deg);
  	}
    .sp_menu.active span:nth-child(2),
  	.sp_menu.active span:nth-child(3) {
		top: 18px;
		transform: rotate(45deg);
  	}

    nav {
		width: 100%;
		max-width: 200px;
		height: auto;
		text-align: center;
		position: fixed;
		right: 0;
		top: 0;
		z-index : 2;
		transform: translateX(100%);
		transition: all 0.6s;
    }
    nav ul {
		width: 100%;
		border-radius: 0;
		margin: 0 auto;
		padding: 65px 0 10px;
	}
    nav ul li {
		width: 100%;
		margin: 3px 5px 0;
		padding: 0;
		transition: .4s all;
    }
    nav ul li a {
	    display: block;
		background-color: #ffffff;
		font-size: 16px;
		border: 1px solid #2aab9f;
		border-radius: 10px;
	    padding: 5px 10px;
    }
    nav ul li a:hover {
		background-color: #2aab9f;
		color: #ffffff;
	}
    /* クリックでjQueryで追加・削除 */
    nav.active {
		display: block;
	    opacity: 1;
	    transform: translateX(0%);
    }



	.nav_sub {
		margin-top: 3px;
	}
}


/* footer
------------------------------------------------------------*/
footer {
	background-color: #ffffff;
	position: relative;
	z-index: 3;
}
footer .inner {
	background-color: #02211e;
	border-radius: 200px 200px 0 0;
	color: #ffffff;
	padding: 220px 30px 20px;
}

@media (max-width: 1400px) {
	footer .inner {
		border-radius: 100px 100px 0 0;
		padding-top: 120px;
	}
}

@media (max-width: 1000px) {
	footer .inner {
		border-radius: 50px 50px 0 0;
		padding-top: 80px;
	}
}

@media (max-width: 768px) {
	footer .inner {
		border-radius: 15px 15px 0 0;
		padding-top: 60px;
	}
}


#contact {
	padding-bottom: 50px;
}
#contact .ttl .ja {
	font-size: 20px;
}
#contact .num {
	font-size: 41px;
	font-weight: 700;
	margin-top: 10px;
}

#contact .sign_btn {
	margin-top: 15px;
}
#contact .sign_btn a {
	color: #00060e;
}
#contact .sign_btn a:hover {
	color: #ffffff;
}

@media (max-width: 1200px) {
	#contact ul {
		justify-content: center;
	}
	#contact ul li:first-child{
		width: 100%;
	}
	#contact ul li:not(:first-child) {
		margin-top: 40px;
	}
	#contact ul li:last-child {
		margin-left: 40px;
	}
}

@media (max-width: 768px) {
	#contact ul li {
		width: 100%;
		max-width: 300px;
	}
	#contact ul li:first-child{
		max-width: 100%;
	}
	#contact ul li:last-child {
		margin-left: 0;
	}
	#contact .ttl .ja {
		font-size: 16px;
	}
	#contact .num {
		font-size: 30px;
	}
}


#f_cont {
	border-top: 1px solid #ffffff;
	padding-top: 80px;
}
#f_cont .logo {
	margin-bottom: 50px;
}
#f_cont .info {
	margin-top: 20px;
}

#f_cont .right {
	width: calc(100% - 420px);
	max-width: 660px;
	padding-right: 50px;
}

#f_nav {
	height: 100%;
}
#f_nav ul {
	width: 100%;
}
#f_nav ul li {
	font-family: "Jost", sans-serif;
	width: calc((100% - 80px) / 3);
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 60px;
}
#f_nav ul li:nth-child(4n) {
	width: 80px;
}

#f_nav ul:last-child li {
	width: 100%;
	font-size: 18px;
	text-align: right;
	margin-bottom: 0;
}

@media (max-width: 1000px) {
	#f_cont {
		justify-content: center;
	}
	
	#f_cont .right {
		display: none;
	}

}

@media (max-width: 768px) {
	#f_cont {
		padding-top: 50px;
	}
	#f_cont .logo {
		text-align: center;
		margin-bottom: 40px;
	}
	#f_cont .logo img {
		width: auto;
		height: 64px;
	}

}


#copyright {
	margin-top: 100px;
	padding: 0 15px;
}
#copyright .copyright {
	text-align: center;
}

@media (max-width: 768px) {
	#copyright {
		margin-top: 60px;
	}
	#copyright .copyright {
		font-size: 14px;
	}
}

#pagetop {
    position: fixed;
    bottom: 20px;
    right: 20px;
	z-index: 9;
}

@media (max-width: 768px) {
	#pagetop {
		width: 50px;
	}

}


/* sidemenu
------------------------------------------------------------*/
#main {
	position: relative;
	background-color: #ffffff;
}
#sidemenu {
	width: 249px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 9;
}
.sidemenu {
	position: sticky;
	top: 0;
	position: -webkit-sticky;
	padding: 160px 40px 40px 60px;
}
.sidemenu ul {
	width: 245px;
	background-color: #ffffff;
	border-radius: 18px;
	padding: 50px 40px;
	position: relative;
}
.sidemenu ul::before {
	content: '';
	width: 249px;
	height: calc(100% + 5px);
	background: linear-gradient(90deg, #faf9ec 0%, #d1f6ec 100%);
	border-radius: 20px;
	position: absolute;
	left: -2px;
	top: -2px;
	z-index: -1;
}
.sidemenu ul li:not(:first-child) {
	margin-top: 20px;
}
.sidemenu ul li {
	text-align: right;
	padding-right: 20px;
}
.sidemenu ul li a {
	display: inline-block;
	position: relative;
}
.sidemenu ul li a:hover::before,
.sidemenu ul li a.current::before {
	content: '';
	width: 12px;
	height: 12px;
	background-color: #2aab9f;
	border-radius: 6px;
	position: absolute;
	right: -24px;
	top: 6px;
}
.sidemenu ul li a:hover,
.sidemenu ul li a.current {
	color: #2aab9f;
}

@media (max-width: 1800px) {
	.sidemenu {
		padding-left: 20px;
	}
	.sidemenu ul {
		width: 180px;
		padding: 40px 15px 40px 5px;
	}
	.sidemenu ul::before {
		width: 184px;
	}
}

@media (max-width: 1410px) {
	#sidemenu {
		display: none;
	}
}


main {
	background-color: #ffffff;
	border-radius: 0 200px 0 0;
	margin-top: 670px;
	position: relative;
}
.top main {
	margin-top: 0;
}
main::before {
	content: '';
	width: 100%;
	height: 381px;
	background-image: url(../img/common/page_ttl_img.png);
	background-position: right bottom;
	background-repeat: no-repeat;
	position: absolute;
	right: 0;
	top: -380px;
	z-index: 5;
}
.top main::before {
	content: none;
}
.top main {
	border-radius: 0;
}
.recruit main {
	margin-top: 0;
}

@media screen and (max-width: 1400px) {
	main {
		margin-top: 540px;
	}
	main::before {
		height: 320px;
		background-size: cover;
		top: -320px;
	}
}

@media screen and (max-width: 1000px) {
	main {
		margin-top: 360px;
	}
	main::before {
		height: 180px;
		top: -180px;
	}
}

@media screen and (max-width: 768px) {
	main {
		margin-top: 260px;
	}
	main::before {
		content: none;
	}
}


.fuwa_rt,
.fuwa_lb {
	position: absolute;
	z-index: 9;
}
.fuwa_rt {
	right: 20%;
	top: 0;
}
.fuwa_lb {
	left: 25%;
	bottom: 0;
}

.fuwa_rt img,
.fuwa_lb img {
	-ms-filter: blur(15px);
  	filter: blur(15px);
}

@media screen and (max-width: 1000px) {
	.fuwa_rt,
	.fuwa_lb {
		width: 240px;
	}
}

@media screen and (max-width: 768px) {
	.fuwa_rt,
	.fuwa_lb {
		width: 180px;
	}
	.fuwa_rt {
		right: 8%;
	}
	.fuwa_lb {
		left: 8%;
	}
}

.fuwafuwa {
	position: absolute;
	left: 0;
	right: 0;
	top: 5%;
	z-index: 0;
}

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

	}
}


/* main　
------------------------------------------------------------*/
.top main {
	background-color: #ffffff;
	position: relative;
	z-index: -1;
}


/* article */
article.rt {
	width: 100%;
	position: relative;
}
article.rt::before {
	content: '';
	width: 100%;
	height: 300px;
	background-color: #ffffff;
	border-radius: 0 200px 0 0;
	position: absolute;
	right: 0;
	top: 0;
}
article.rt section {
	position: relative;
}

.recruit article.rt {
	background-image: none;
	margin-top: -175px;
}

@media (max-width: 1400px) {
	article.rt::before {
		border-radius: 0 100px 0 0;
	}
}

@media (max-width: 1000px) {
	article.rt::before {
		border-radius: 0 50px 0 0;
	}
}

@media (max-width: 768px) {
	article.rt::before {
		border-radius: 0 15px 0 0;
	}
	.recruit article.rt {
		margin-top: -100px;
	}
}


/* section */
section {
	padding-left: 15px;
	padding-right: 15px;
}
section.pt {
	padding-top: 100px;
}
section.pt_first {
	padding-top: 240px;
}
section.pt_middle {
	padding-top: 160px;
}
section.pb {
	padding-bottom: 100px;
}
section.pb_middle {
	padding-bottom: 160px;
}
section.pb_last {
	padding-bottom: 240px;
}

@media (max-width: 1000px) {
	section.pt {
		padding-top: 60px;
	}
	section.pt_first {
		padding-top: 120px;
	}
	section.pt_middle {
		padding-top: 80px;
	}
	section.pb {
		padding-bottom: 60px;
	}
	section.pb_middle {
		padding-bottom: 80px;
	}
	section.pb_last {
		padding-bottom: 120px;
	}
}

@media screen and (max-width: 768px) {
	section.pt_first {
		padding-top: 80px;
	}
	section.pt_middle {
		padding-top: 60px;
	}
	section.pb_middle {
		padding-bottom: 60px;
	}
	section.pb_last {
		padding-bottom: 80px;
	}
}


/* page ttl */
#page_ttl {
	width: 100%;
	height: 670px;
	background-image: url(../img/common/page_ttl.png);
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: cover;
	position: fixed;
	top: 0;
}
#page_ttl::before {
	content: '';
	width: 100%;
	height: 175px;
	background-image: url(../img/common/rt.jpg);
	background-position: right top;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 100%;
	z-index: -1;
}

.recruit #page_ttl {
	position: relative;
}

#page_ttl .inner {
	height: 100%;
	padding-bottom: 160px;
	padding-left: 15px;
	padding-right: 15px;
	position: relative;
}
#page_ttl .ja {
	font-size: 30px;
}
#page_ttl .ja::before {
	width: 6px;
	height: 6px;
	border-radius: 3px;
}
#page_ttl .en {
	font-family: "Jost", sans-serif;
	color: #2aab9f;
	font-size: 91px;
	font-weight: 500;
	line-height: 1.2;
}

.recruit #page_ttl {
	height: 1507px;
	background-image: url(../img/common/page_ttl_recruit.png);
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 360px;
	padding-bottom: 175px;
}
.recruit #page_ttl .cont .ttl {
	color: #2aab9f;
	font-size: 35px;
	font-weight: 500;
	line-height: 1.6;
}
.recruit #page_ttl .cont .txt {
	font-size: 18px;
	line-height: 3;
	margin-top: 30px;
}
.recruit #page_ttl .ttl_txt {
	font-family: "Jost", sans-serif;
	color: #ffffff;
	font-size: 245px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: -3px;
	position: absolute;
	bottom: -38px;
}

@media screen and (max-width: 1400px) {
	#page_ttl {
		height: 540px;
	}

	.recruit #page_ttl {
		padding-top: 240px;
	}
	.recruit #page_ttl .ttl_txt {
		font-size: 160px;
	}
}

@media screen and (max-width: 1000px) {
	#page_ttl {
		height: 360px;
	}
	#page_ttl .inner {
		padding-bottom: 80px;
	}
	#page_ttl .en {
		font-size: 78px;
	}

	.recruit #page_ttl {
		height: 1200px;
		padding-top: 200px;
	}

	.recruit #page_ttl .cont .txt {
		line-height: 2;
	}
}
	
@media screen and (max-width: 768px) {
	#page_ttl {
		height: 260px;
		background-size: cover;
	}
	#page_ttl .inner {
		padding-bottom: 60px;
	}

	#page_ttl .ja {
		font-size: 18px;
	}

	#page_ttl .en {
		font-size: 36px;
	}

	.recruit #page_ttl {
		height: auto;
		background-position: right bottom -20px;
		padding-top: 100px;
	}
	.recruit #page_ttl .cont {
		margin-top: 60px;
	}
	.recruit #page_ttl .cont .ttl {
		font-size: 24px;
	}
	.recruit #page_ttl .cont .txt {
		font-size: 16px;
		line-height: 1.8;
		margin-top: 10px;
	}

	.recruit #page_ttl .ttl_txt {
		font-size: 72px;
		bottom: -88px;
	}
}


/* ja */
.ja.dot {
	padding-left: 20px;
	position: relative;
}

.ja.dot::before {
	content: '';
	width: 4px;
	height: 4px;
	background-color: #97d23c;
	border-radius: 2px;
	position: absolute;
	left: 5px;
	top: 0;
	bottom: 0;
	margin: auto;
}


/* section ttl */
.section_ttl {
	margin-bottom: 40px;
	position: relative;
}

@media screen and (max-width: 768px) {
	.section_ttl {
		margin-bottom: 30px;
	}
}


/* section cont */
.section_cont {
	position: relative;
}


/* ttl */
.s_ttl .ja {
	font-size: 20px;
}
.s_ttl .en {
	font-family: "Jost", sans-serif;
	font-size: 62px;
	font-weight: 500;
	line-height: 1.2;
}

@media screen and (max-width: 1400px) {
	.circle_ttl .s_ttl {
		padding-left: 80px;
	}
}
@media screen and (max-width: 768px) {
	.s_ttl .ja {
		font-size: 16px;
	}
	.s_ttl .en {
		font-size: 36px;
	}

	.circle_ttl .s_ttl {
		padding-left: 0;
	}
}


.l_ttl {
	min-height: 50px;
	color: #2aab9f;
	font-size: 30px;
	font-weight: 500;
	line-height: 1.2;
	padding-left: 25px;
	position: relative;
}
.l_ttl::before {
	content: '';
	width: 10px;
	height: 50px;
	background-color: #2aab9f;
	border-radius: 5px;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
.privacy .l_ttl {
	font-size: 27px;
}

@media screen and (max-width: 768px) {
	.l_ttl {
		min-height: 30px;
		font-size: 20px;
		padding-left: 16px;
	}
	.l_ttl::before {
		width: 6px;
		height: 30px;
		border-radius: 3px;
	}

	.privacy .l_ttl {
		font-size: 18px;
	}
}


/* frame */
.cont_frame {
	background-color: #ffffff;
	border-radius: 10px;
	box-shadow: 0 0 9.8px rgba(42, 171, 159, 0.2);
	padding: 40px 45px;
}
.products .cont_frame {
	margin-top: 40px;
}

@media screen and (max-width: 768px) {
	.products .cont_frame {
		margin-top: 20px;
	}
}
@media screen and (max-width: 480px) {
	.cont_frame {
		padding: 30px 20px;
	}
}


/* table */
table.table01 {
	width: 100%;
	border-top: 1px solid #2aab9f;
	margin: 20px 0;
}
table.table01 caption {
	color: #2aab9f;
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 15px;
}
table.table01 th,
table.table01 td {
	border-bottom: 1px solid #2aab9f;
	line-height: 1.8;
	vertical-align: top;
	padding: 20px 25px;
}
table.table01 th {
	width: 220px;
	color: #2aab9f;
}
table.table01 td dl:not(:first-child) {
	margin-top: 15px;
}
table.table01 td dl dt {
	text-indent: -1em;
	padding-left: 1em;
}
table.table01 td ol li {
	text-indent: -1em;
	padding-left: 1em;
}

@media screen and (max-width: 1000px) {
	table.table01 th {
		width: 160px;
	}
}

@media screen and (max-width: 768px) {
	table.table01 caption {
		font-size: 21px;
	}

	table.table01 tr {
		display: flex;
		flex-wrap: wrap;
	}
	table.table01 th,
	table.table01 td {
		width: 100%;
		padding: 5px;
	}
}


/* btn */
.sign_btn .btn {
	width: 300px;
	height: 70px;
	position: relative;
}
.sign_btn .btn a {
	font-family: "Jost", sans-serif;
	width: 100%;
	height: 100%;
	background-color: #f3f3f3;
	border-radius: 35px;
	font-size: 20px;
	font-weight: 500;
	padding: 10px 70px 10px 35px;
	position: relative;
}
.sign_btn .btn a::before,
.sign_btn .btn a::after {
	content: '';
	width: 40px;
	height: 40px;
	position: absolute;
	right: 15px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.sign_btn .btn a::before {
	background-color: #2aab9f;
	border-radius: 20px;
}
.sign_btn .btn a::after {
	background-image: url(../img/common/sign.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 10px auto;
}
.sign_btn .btn a:hover {
	background-color: #2aab9f;
	color: #ffffff;
}
.sign_btn .btn a:hover::before {
	background-color: #ffffff;
}
.sign_btn .btn a:hover::after {
	background-image: url(../img/common/sign_g.svg);
}

.sign_btn.white .btn a {
	background-color: #ffffff;
}
.sign_btn.white .btn a:hover {
	background-color: #2aab9f;
	color: #ffffff;
}

@media screen and (max-width: 768px) {
	.sign_btn .btn {
		width: 240px;
		height: 54px;
	}
	.sign_btn .btn a {
		font-size: 16px;
	}
}


.form_btn.sign_btn .btn {
	margin: 0 auto;
}
.form_btn.sign_btn input {
	font-family: "Jost", sans-serif;
	width: 100%;
	height: 100%;
	background-color: transparent;
	border: 1px solid #f3f3f3;
	border-radius: 35px;
	color: #00060e;
	font-size: 20px;
	font-weight: 500;
	text-align: left;
	padding: 10px 70px 10px 35px;
	position: relative;
	cursor: pointer;
}
.form_btn.sign_btn input:hover {
	color: #ffffff;
}
.form_btn.sign_btn .sign {
	width: 100%;
	height: 100%;
	background-color: #f3f3f3;
	border: 1px solid #f3f3f3;
	border-radius: 35px;
	position: absolute;
	left: 0;
	top: 0;
	cursor: pointer;
}
.form_btn.sign_btn .sign::before,
.form_btn.sign_btn .sign::after {
	content: '';
	width: 40px;
	height: 40px;
	position: absolute;
	right: 15px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.form_btn.sign_btn .sign::before {
	background-color: #2aab9f;
	border-radius: 20px;
}
.form_btn.sign_btn .sign::after {
	background-image: url(../img/common/sign.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 10px auto;
}
.form_btn.sign_btn .btn:hover .sign {
	background-color: #2aab9f;
	color: #ffffff;
	transition: 0.5s;
}
.form_btn.sign_btn .btn:hover .sign::before {
	background-color: #ffffff;
}
.form_btn.sign_btn .btn:hover .sign::after {
	background-image: url(../img/common/sign_g.svg);
}


.download_btn .btn a {
	font-size: 16px;
}
.download_btn .btn a::before {
	content: none;
	background-color: #f3f3f3;
}
.download_btn .btn a::after {
	background-image: url(../img/common/download.svg);
	background-size: 27px auto;
}
.download_btn .btn a:hover::after {
	background-image: url(../img/common/download_w.svg);
}

@media screen and (max-width: 768px) {
	.download_btn .btn {
		width: 300px;
	}
}


#link_btn,
.link_btn {
	width: 100%;
}
.link_btn .btn {
	width: 810px;
	height: 290px;
}
.link_btn .btn a {
	border-radius: 20px;
}
.link_btn .btn .ja {
	font-family: 'Noto Sans JP', sans-serif;
	color: #ffffff;
	font-size: 18px;
}
.link_btn .ja.dot::before {
	background-color: #ffffff;
}
.link_btn .btn .en {
	color: #ffffff;
	font-size: 48px;
	font-weight: 500;
}

.link_btn.sign_btn .btn a {
	background-color: transparent;
	padding: 0;
}
.link_btn.sign_btn .btn a::before,
.link_btn.sign_btn .btn a::after {
	right: 50px;
}
.link_btn.sign_btn .btn a::before {
	background-color: #ffffff;
	transition: 0.5s;
}
.link_btn.sign_btn .btn a::after {
	background-image: url(../img/common/sign_g.svg);
}
.link_btn.sign_btn .btn a:hover::before {
	background-color: #2aab9f;
}
.link_btn.sign_btn .btn a:hover::after {
	background-image: url(../img/common/sign.svg);
}

@media screen and (max-width: 1200px) {
	.link_btn .btn .en {
		font-size: 36px;
	}
}

@media screen and (max-width: 1000px) {
	.link_btn .btn {
		width: 100%;
		max-width: 810px;
		height: 250px;
	}
}

@media screen and (max-width: 768px) {
	.link_btn .btn {
		height: 180px;
	}

	.link_btn .btn .ja {
		font-size: 16px;
	}
	.link_btn .btn .en {
		font-size: 28px;
	}
}


.link_btn .btn_img {
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 20px;
	padding: 10px 110px 10px 50px;
	position: relative;
	z-index: -1;
}
.link_btn .btn_img::before {
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(2, 33, 30, 0.5);
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 0;
	transition: 0.5s;
}
.link_btn a:hover .btn_img::before {
	background-color: rgba(2, 33, 30, 0.25);
}
.link_btn .ttl {
	position: relative;
}
.products .link_btn .btn_img {
	background-image: url(../img/products/link_btn_img.jpg);
}
.interview .link_btn .btn_img {
	background-image: url(../img/interview/link_btn_img.jpg);
}

#top02 .link_btn .btn {
	width: 47.14%;
	max-width: 660px;
	height: 250px;
}
#top02 .link_btn .ja.dot {
	padding-left: 0;
}
#top02 .link_btn .ja.dot::before {
	content: none;
}
#top02 .link_btn .btn:first-child .btn_img {
	background-image: url(../img/top/link_btn_img01.jpg);
}
#top02 .link_btn .btn:last-child .btn_img {
	background-image: url(../img/top/link_btn_img02.jpg);
}

@media screen and (max-width: 768px) {
	.link_btn .btn_img {
		padding-left: 35px;
	}

	#top02 .link_btn .btn {
		height: 180px;
	}
}


.circle_img {
	position: relative;
}
.circle_img::before {
	content: '';
	width: 100%;
	max-width: 1600px;
	height: 280px;
	background-image: url(../img/recruit/recruit04_ttl_bg.png);
	background-position: left 20px top;
	background-repeat: no-repeat;
	margin: 0 auto;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	z-index: 1;
}

.circle_ttl .section_ttl {
	margin-top: -60px;
	position: relative;
	z-index: 2;
}

@media screen and (max-width: 1400px) {
	.circle_img::before {
		height: 200px;
		background-size: auto 600px;
	}
}

@media screen and (max-width: 768px) {
	.circle_img::before {
		content: none;
	}

	.circle_ttl .section_ttl {
		margin-top: 0;
	}
}


/* top
------------------------------------------------------------*/
.top footer {
	background-color: #f3f3f3;
}

.movie_bg {
    width: 100%;
    height: 1080px;
	height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
	z-index: -2;
}
.movie_bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#main_movie {
	width: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 10%, rgba(2, 30, 33, 0.8) 100%);
}

.main_img {
	width: 100%;
	height: 100vh;
	position: relative;
	z-index: -1;
}
.main_img .img {
	position: fixed;
}
.main_img .img.show {
	animation: show 2s forwards;
}
@keyframes show {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}
.main_img .img.none {
	opacity: 0;
}
.main_img .img.hidden {
	animation: hidden 2s forwards;
}
@keyframes hidden {
  0% {
      opacity: 1;
  }
  100% {
      opacity: 0;
  }
}

.main_img .img.hidden {
	animation: hidden 2s forwards;
}

.main_txt {
	padding: 80px 15px;
}
.main_txt .left {
	width: 45%;
}
.main_txt .right {
	width: 48%;
	max-width: 460px;
	color: #ffffff;
}
.main_txt .ttl {
	font-size: 30px;
	font-weight: 600;
	line-height: 1.5;
}
.main_txt .txt {
	font-size: 18px;
	line-height: 2;
	margin-top: 60px;
}

@media screen and (max-width: 1000px) {
	.main_img .img {
		max-width: 80%;
	}

	.main_txt .ttl {
		font-size: 24px;
	}
	.main_txt .txt {
		font-size: 16px;
	}
}

@media screen and (max-width: 768px) {
	.main_txt .left {
		width: 100%;
	}
	.main_txt .right {
		width: 100%;
		max-width: 100%;
		margin-top: 40px;
	}
	.main_txt .ttl {
		font-size: 21px;
	}
	.main_txt .txt {
		margin-top: 20px;
	}
}


#about {
	background: linear-gradient(0deg, rgba(186, 229, 212, 0.5) 0%, rgba(244, 253, 234, 0.5) 30%, rgba(255, 255, 255, 0.5) 100%);
}
#about .sign_btn {
	margin-top: 20px;
}

#about .ttl02 {
	margin-top: 120px;
}
#about .s_ttl .ja {
	display: inline-block;
}
/*
#about .s_ttl .ja::after {
	content: '';
	width: 4px;
	height: 4px;
	background-color: #97d23c;
	border-radius: 2px;
	position: absolute;
	right: -15px;
	top: 0;
	bottom: 0;
	margin: auto;
}
*/

#about ul {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
}
#about ul li {
	width: 30.46%;
	background-color: #ffffff;
	border-radius: 20px;
	padding: 30px;
	position: relative;
}
#about ul li .interview {
	writing-mode: vertical-rl;
	font-family: "Jost", sans-serif;
	color: #2aab9f;
	font-size: 45px;
	font-weight: 500;
	position: absolute;
	left: -35px;
	top: 10px;
}
#about ul li .box {
	margin-top: 20px;
}
#about ul li .ttl {
	color: #2aab9f;
	font-size: 27px;
	font-weight: 500;
	text-align: center;
}
#about ul li .txt {
	margin-top: 15px;
}

#top02 {
	background-image: url(../img/top/top02_bg.png);
	background-position: center top;
	background-repeat: no-repeat;
}
#top02 section {
	padding-top: 380px;
}
#top02 .s_ttl,
#top02 .cont {
	padding-left: 100px;
}
#top02 .img {
	width: 51.53%;
}
#top02 .cont {
	margin-bottom: 60px;
}
#top02 .box {
	width: 40.8%;
}
#top02 .box .ttl {
	font-family: "Jost", sans-serif;
	color: #2aab9f;
	font-size: 35px;
	font-weight: 500;
	line-height: 1.6;
}
#top02 .box .txt {
	margin-top: 15px;
}
#top02 .box .sign_btn {
	margin-top: 30px;
}

#top03 {
	width: 100%;
	background-image: url(../img/top/top03_ttl.png);
	background-position: center top;
	background-repeat: no-repeat;
}
#top03 .cont {
	padding-bottom: 50px;
	position: relative;
}
#top03 .cont .left .ttl {
	color: #2aab9f;
	font-size: 27px;
	font-weight: 500;
	line-height: 1.5;
}
#top03 .cont .left .txt {
	max-width: 42%;
	margin: 10px 0 30px;
}
#top03 .cont .left .img {
	display: none;
	width: 100%;
}
#top03 .cont .right {
	width: 50%;
	position: absolute;
	right: 0;
	top: -240px;
}
#top03 .cont .right .img {
	display: block;
	width: 100%;
}

#top04 {
	position: relative;
}
#top04::before {
	content: '';
	width: 1060px;
	height: 730px;
	background: linear-gradient(180deg, rgba(250, 249, 236, 0.8) 0%, rgba(222, 248, 231, 0.8) 50%, rgba(209, 246, 236, 0.8) 100%);
	border-radius: 50px;
	position: absolute;
	right: 100px;
	top: 0;
	bottom: 0;
	margin: auto;
	z-index: -1;
}
#top04 .section_ttl {
	z-index: 1;
}
#top04 .section_ttl .s_ttl {
	width: 50%;
}
#top04 .section_ttl .img {
	width: 47%;
	margin-left: -5%;
}
#top04 .cont .box {
	width: 50%;
	margin-top: 30px;
}
#top04 .cont .box .ttl {
	font-family: "Jost", sans-serif;
	color: #2aab9f;
	font-size: 35px;
	font-weight: 500;
	line-height: 1.6;
}
#top04 .cont .box .txt {
	margin: 20px 0 40px;
}
#top04 .cont .img {
	width: 57.5%;
	margin-right: -12%;
	margin-top: -25%;
}

#interview {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	position: relative;
}
#interview::before {
	content: '';
	width: 100%;
	max-width: 1240px;
	height: calc(100% - 220px);
	background: linear-gradient(180deg, #faf9ec 20%, #def8e7 65%, #d1f6ec 100%);
	border-radius: 50px;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 0;
}
#interview ul {
	margin-top: 120px;
}
#interview ul li {
	width: 45%;
}
#interview ul li:last-child {
	margin-top: -80px;
}
#interview ul li .bg {
	background-color: #f3f3f3;
	border-radius: 10px;
	padding: 40px 40px 50px;
	transition: 0.5s;
}
#interview ul li a:hover .bg {
	background-color: #ffffff;
	box-shadow: 0 0 9.8px rgba(42, 171, 159, 0.2);
}
#interview ul li .box {
	margin-top: 30px;
}
#interview ul li .year,
#interview ul li .office {
	color: #b5b5b6;
	font-size: 18px;
}
#interview ul li .name {
	font-family: "Jost", sans-serif;
	font-size: 20px;
	font-weight: 500;
}
#interview ul li .name .strong {
	font-size: 40px;
}
#interview ul li .name .color {
	color: #2aab9f;
}
#interview .sign_btn {
	margin-top: 60px;
}
#interview .sign_btn .btn {
	width: 480px;
	text-align: center;
}

@media screen and (max-width: 1600px) {
	#top04 .cont .img {
		width: 48%;
		margin-right: 0;
	}
}

@media screen and (max-width: 1400px) {
	#about ul li .ttl {
		font-size: 21px;
	}
	#about ul li .interview {
		font-size: 25px;
		left: -20px;
	}

	#top02 .box .ttl,
	#top04 .cont .box .ttl {
		font-size: 25px;
	}
}

@media screen and (max-width: 1000px) {
	#about .sign_btn {
		margin-top: 30px;
	}

	#about ul {
		justify-content: center;
	}
	#about ul li {
		width: 48%;
		margin: 0 1%;
	}
	#about ul li:last-child {
		margin-top: 20px;
	}
	#about ul li .interview {
		left: -10px;
	}
	#about ul li .img {
		text-align: center;
	}

	#top02 section {
		padding-bottom: 0;
	}
	#top02 .s_ttl,
	#top02 .cont {
		padding-left: 0;
	}
	#top02 .img {
		width: 100%;
	}
	#top02 .box {
		width: 100%;
		margin-top: 30px;
	}

	#top02 .link_btn {
		justify-content: center;
	}
	#top02 .link_btn .btn {
		width: 100%;
	}
	#top02 .link_btn .btn:not(:first-child) {
		margin-top: 30px;
	}

	#top03 {
		background-image: none;
	}
	#top03 section {
		padding-top: 100px;
		padding-bottom: 0;
	}
	#top03 .cont {
		padding-bottom: 0;
	}
	#top03 .cont .left .txt {
		max-width: 100%;
	}
	#top03 .cont .left .img {
		display: block;
		margin-bottom: 30px;
	}
	#top03 .cont .right .img {
		display: none;
	}

	#top04::before {
		content: none;
	}
	#top04 .section_ttl.reverse {
		flex-flow: wrap;
	}
	#top04 .section_ttl .img {
		width: 100%;
		margin-left: 0;
		margin-top: 20px;
	}
	#top04 .cont .box {
		width: 100%;
		margin-top: 0;
	}
	#top04 .cont .img {
		width: 100%;
		margin-top: 30px;
	}

	#interview::before {
		content: none;
	}
	#interview ul {
		margin-top: 0;
	}

}

@media screen and (max-width: 768px) {
	#about section {
		padding-bottom: 60px;
	}
	#about .s_ttl {
		text-align: left;
	}
	#about .s_ttl .ja::after {
		content: none;
	}

	#top02 {
		background-image: none;
	}
	#top02 section {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	#top02 .box .ttl,
	#top04 .cont .box .ttl {
		font-size: 20px;
	}

	#top03 section {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	#top03 .cont .left .ttl {
		font-size: 20px;
	}

	#interview ul {
		justify-content: center;
	}
	#interview ul li {
		width: 100%;
		max-width: 400px;
	}
	#interview ul li .bg {
		padding: 20px;
	}
	#interview ul li:last-child {
		margin-top: 30px;
	}
	#interview ul li .name .strong {
		font-size: 24px;
	}
	#interview ul li .year,
	#interview ul li .office {
		font-size: 16px;
	}
	#interview .sign_btn {
		margin-top: 40px;
	}
}



/* about us
------------------------------------------------------------*/
.about #about {
	background: none;
}
#about .cont01 .ttl {
	font-size: 37px;
	font-weight: 500;
	line-height: 1.6;
}
#about .cont01 .ttl .color01 {
	color: #97d23c;
}
#about .cont01 .ttl .color02 {
	color: #2aab9f;
}
#about .cont01 .txt {
	width: calc(100% - 500px);
	max-width: 600px;
}

#about .cont02 {
	background-image: url(../img/about/about_top_img.png);
	background-position: center top;
	background-repeat: no-repeat;
	margin-top: 120px;
	padding-top: 120px;
}
#about .cont02 .box {
	width: 370px;
}
#about .cont02 .box .img {
	text-align: center;
}
#about .cont02 .box .ttl {
	font-size: 22px;
	font-weight: 500;
	text-align: center;
	line-height: 1.6;
}
#about .cont02 .box:first-child .ttl {
	color: #97d23c;
}
#about .cont02 .box:last-child .ttl {
	color: #2aab9f;
}
#about .cont02 .box .txt {
	margin-top: 10px;
}

#about01 {
	background: linear-gradient(180deg, transparent 50%, #f3f3f3 50%);
	position: relative;
}
#about01::before {
	content: '';
    width: 100%;
	height: 100%;
    background: linear-gradient(180deg, #faf9ec 20%, #def8e7 65%, #d1f6ec 100%);
    border-radius: 120px;
	position: absolute;
	left: 0;
	top: 0;
}
#about01 ul li {
	background-color: #ffffff;
	border-radius: 30px;
	padding: 40px 50px;
}
#about01 ul li:not(:first-child) {
	margin-top: 40px;
}
#about01 ul li .img {
	width: 44.18%;
}
#about01 ul li .box {
	width: 46.36%;
}
#about01 ul li .ttl {
	color: #2aab9f;
	font-size: 25px;
	font-weight: 500;
}
#about01 ul li .txt {
	margin-top: 20px;
}

#about02 {
	background-color: #f3f3f3;
	border-radius: 0 0 120px 120px;
}
#about02 section {
	padding-bottom: 360px;
}

#about02 ul li {
	width: 46.66%;
	background-color: #ffffff;
	border-radius: 30px;
	padding: 50px;
}
#about02 ul li .img {
	width: 100%;
	padding-bottom: 30px;
	position: relative;
}
#about02 ul li .img::before {
	position: absolute;
	right: 0;
	bottom: 0;
}
#about02 ul li:first-child .img::before {
	content: url(../img/about/about02_img01_1.png);
}
#about02 ul li:last-child .img::before {
	content: url(../img/about/about02_img02_1.png);
}

#about02 ul li .s_ttl {
	margin: 30px 0 10px;
}
#about02 ul li .s_ttl .ja {
	font-size: 15px;
}
#about02 ul li .s_ttl .en {
	color: #2aab9f;
	font-size: 35px;
}
#about02 ul li .sign_btn .btn {
	width: 210px;
	height: 40px;
	margin-left: auto;
	margin-top: 30px;
	padding-top: 0;
	padding-bottom: 0;
}
#about02 ul li .sign_btn .btn a {
	background-color: transparent;
	font-size: 18px;
}
#about02 ul li .sign_btn .btn a:hover {
	color: #2aab9f;
}
#about02 ul li .sign_btn .btn a::before,
#about02 ul li .sign_btn .btn a::after {
	right: 0;
	transition: 0.5s;
}
#about02 ul li .sign_btn .btn a:hover::before {
	border: 1px solid #2aab9f;
}

#about03 ul li {
	width: 100%;
	padding-bottom: 60px;
	position: relative;
}
#about03 ul li:not(:first-child) {
	margin-top: 60px;
}
#about03 .cont_frame {
	width: 60%;
	max-width: 845px;
	min-height: 400px;
	padding: 80px 40px 40px;
	position: absolute;
	right: 0;
	bottom: 0;
}
#about03 .cont_frame .service {
	font-family: "Jost", sans-serif;
	color: #2aab9f;
	font-size: 60px;
	font-weight: 500;
	writing-mode: vertical-rl;
	position: absolute;
	left: -40px;
	top: 10px;
}
#about03 .cont_frame .ttl {
	color: #2aab9f;
	font-size: 34px;
	font-weight: 500;
}
#about03 .cont_frame .txt {
	margin-top: 20px;
}

@media screen and (max-width: 1400px) {
	#about03 .cont_frame .service {
		font-size: 50px;
	}
	#about03 .cont_frame .ttl {
		font-size: 25px;
	}
}

@media screen and (max-width: 1000px) {
	#about .cont01 {
		justify-content: center;
	}	

	#about .cont01 .txt {
		width: 100%;
		margin-top: 20px;
	}
	#about .cont01 .sp1000 {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	#about .cont02 {
		background-size: auto 360px;
		margin-top: 80px;
		padding-top: 360px;
	}
	#about .cont02 .box {
		width: 48%;
	}

	#about01::before {
		border-radius: 50px;
	}
	#about01 ul li {
		padding: 30px;
		align-items: flex-start;
	}
	#about01 ul li .box {
		width: 50%;
	}
	#about02 {
		border-radius: 0 0 50px 50px;
	}
	#about02 section {
		padding-bottom: 240px;
	}
	#about02 ul li {
		width: 49%;
		padding: 30px;
	}

	#about03 .cont_frame {
		padding-top: 40px;
	}
}

@media screen and (max-width: 768px) {
	#about .cont01 {
		justify-content: flex-start;
	}

	#about .cont01 .ttl {
		font-size: 24px;
	}

	#about .cont02 {
		background-size: auto 240px;
		margin-top: 60px;
		padding-top: 240px;
	}
	#about .cont02 .box {
		width: 100%;
	}
	#about .cont02 .box .img img {
		width: 180px;
		height: auto;
	}
	#about .cont02 .box .ttl {
		font-size: 20px;
	}

	#about ul li {
		width: 100%;
		max-width: 400px;
		margin-top: 20px;
	}
	#about ul li:not(:first-child) {
		margin-top: 20px;
	}

	#about ul li .ttl {
		font-size: 18px;
	}

	#about01::before {
		border-radius: 15px;
	}

	#about01 ul li {
		padding: 20px;
	}
	#about01 ul li .img {
		width: 100%;
	}
	#about01 ul li .box {
		width: 100%;
		margin-top: 15px;
	}	
	#about01 ul li .box .ttl {
		font-size: 20px;
	}
	#about01 ul li .txt {
		margin-top: 5px;
	}

	#about02 {
		border-radius: 0 0 15px 15px;
	}
	#about02 section {
		padding-bottom: 60px;
	}

	#about02 .sign_btn {
		width: 100%;
		margin-top: 10px;
	}
	#about02 .sign_btn .btn {
		margin-left: auto;
	}


	#about02 ul li {
		width: 100%;
		padding: 20px;
	}
	#about02 ul li:not(:first-child) {
		margin-top: 20px;
	}
	#about02 ul li .img {
		margin-bottom: 20px;
		padding-bottom: 0;
	}
	#about02 ul li .img::before {
		transform: scale(0.5);
		left: 0;
	}
	#about02 ul li .s_ttl {
		margin-top: 0;
	}
	#about02 ul li .s_ttl .en {
		font-size: 28px;
	}

	#about03 section {
		padding-top: 60px;
	}
	
	#about03 ul li {
		padding-top: 15px;
		padding-bottom: 0;
	}
	#about03 ul li:not(:first-child) {
		margin-top: 30px;
	}
	#about03 .cont_frame {
		width: 100%;
		max-width: 100%;
		min-height: auto;
		margin-top: 15px;
		box-shadow: none;
		padding: 0;
		position: static;
	}
	#about03 .cont_frame .service {
		font-size: 24px;
		font-weight: 700;
		writing-mode: unset;
		left: -5px;
		top: 0;
	}
	#about03 .cont_frame .ttl {
		font-size: 18px;
		margin-top: 5px;
	}
	#about03 .cont_frame .txt {
		margin-top: 5px;
	}
}


/* products
------------------------------------------------------------*/
#products_top .cont {
	background-image: url(../img/products/products_top_bg.png);
	background-position: center;
	background-repeat: no-repeat;
	padding: 160px 0;
}
#products_top .ttl {
	color: #2aab9f;
	font-size: 35px;
	text-align: center;
}
#products_top .txt {
	line-height: 2;
	text-align: center;
	margin-top: 20px;
}

#products01,
#products02 {
	width: 100%;
	background-image: url(../img/products/products_ttl.png);
	background-position: center top;
	background-repeat: no-repeat;
}
#products02 {
	margin-top: 100px;
}

.products .section_ttl {
	margin-bottom: -50px;
	padding-top: 25px;
}
.products .cont {
	padding: 100px 0;
}

.products .cont01 {
	padding-bottom: 50px;
	position: relative;
}
.products .cont01 .left .ttl {
	color: #2aab9f;
	font-size: 27px;
	font-weight: 500;
	line-height: 1.5;
}
.products .cont01 .left .txt {
	max-width: 50%;
	margin: 10px 0 30px;
}

.products .cont01 .right {
	width: 55%;
	position: absolute;
	right: -10%;
	top: -60px;
}

.products .cont02 ul li {
	width: 31%;
	background-color: #f3f3f3;
	border-radius: 10px;
	margin: 30px 1% 0;
	padding: 30px 22px;
}
.products .cont02 ul li .ttl {
	min-height: 60px;
	color: #2aab9f;
	font-size: 21px;
	font-weight: 500;
	text-align: center;
}
.products .cont02 ul li .img {
	text-align: center;
	margin: 15px 0 20px;
}
.products .cont02 .sub_item {
	display: inline-flex;
	margin-top: 5px;
}
.products .cont02 .sub_item .item {
	background-color: #ffffff;
	border: 1px solid #2aab9f;
	border-radius: 15px;
	font-size: 14px;
	font-weight: 500;
	margin-right: 5px;
	margin-top: 5px;
	padding: 0 10px;
}
.products .cont02 .sub_item .item:last-child {
	margin-right: 0;
	padding-right: 5px;
}
.products .cont02 .sub_item .item span {
	font-size: 11px;
}

.products .cont03 {
	background: linear-gradient(90deg, #faf9ec 0%, #def8e7 50%, #d1f6ec 100%);
	border-radius: 60px;
	padding-left: 15px;
	padding-right: 15px;
}
.products .cont03 ul li,
.products .cont04 ul li {
	width: 48.6%;
	background-color: #ffffff;
	border-radius: 10px;
	margin-top: 30px;
	padding: 25px 20px;
}
.products .cont03 ul li .img,
.products .cont04 ul li .img {
	width: 38%;
}
.products .cont03 ul li .img {
	max-width: 190px;
}
.products .cont03 ul li .box,
.products .cont04 ul li .box {
	width: 55%;
}
.products .cont03 ul li .ttl,
.products .cont04 ul li .ttl {
	color: #2aab9f;
	font-size: 21px;
	font-weight: 500;
}
.products .cont03 ul li .txt,
.products .cont04 ul li .txt {
	margin-top: 5px;
}

.products .cont04 ul li {
	width: 100%;
}

#products01 .cont04 .txt {
	margin-top: 40px;
}
#products01 .cont04 .img {
	text-align: center;
	margin-top: 60px;
}
#products01 .cont04 .video {
    width: 100%;
	text-align: center;
	margin-top: 60px;
}

#products02 .cont04 .left {
	width: 43.4%;
}
#products02 .cont04 .right {
	width: 56.6%;
}
#products02 .cont04 .left {
	padding-top: 60px;
}

.products .cont05 {
	width: calc(100% + 30px);
	background-color: #f3f3f3;
	margin-left: -15px;
}
.products .cont05 .box {
	width: 100%;
}
.products .cont05 .box:not(:first-child) {
	margin-top: 70px;
}
.products .cont05 .img {
	text-align: center;
	margin: 20px 0;
}

#products01 .cont05 .box:last-child table {
	width: 48%;
} 
#products01 .cont05 table th {
	width: 140px;
}

#products02 .cont05 .box:nth-last-child(-n+2) {
	width: 48%;
}
#products02 .cont05 ol li {
	text-indent: -1em;
	line-height: 1.8;
	padding-left: 1em;
}
#products02 .cont05 ol li:not(:first-child) {
	margin-top: 8px;
}
#products02 .cont05 ol li::before {
	content: '・';
	color: #2aab9f;
}

@media (max-width: 1800px) {
	#products_top .cont {
		background-size: auto 100%;
	}

	#products_top section,
	#products01 section,
	#products02 section {
		width: calc(100% - 200px);
		margin-left: auto;
	}

	.products .cont01 .right {
		right: -15px;
	}

	.products .cont05 {
		width: calc(100vw - 15px);
		margin-left: -215px;
		padding-left: 215px;
		padding-right: 15px;
	}
}

@media (max-width: 1400px) {
	#products_top .ttl {
		font-size: 25px;
	}

}

@media (max-width: 1200px) {
	#products_top section,
	#products01 section,
	#products02 section {
		width: 100%;
		margin-left: auto;
	}

	.products .cont05 {
		width: calc(100% + 30px);
		margin-left: -15px;
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media (max-width: 1000px) {
	#products_top .cont {
		background-size: auto 320px;
		padding: 80px 0;
	}

	#products01,
	#products02 {
		width: 100%;
		background-image: none;
		position: relative;
	}
	#products01::before,
	#products02::before {
		content: '';
		width: 100%;
		height: 640px;
		background: linear-gradient(180deg, #d1f6ec -20%, #def8e7 30%, #faf9ec 80%, #ffffff 100%);
		position: absolute;
		left: 0;
		top: 120px;
	}

	#products02 {
		margin-top: 80px;
	}
	.products .section_ttl {
		margin-bottom: 40px;
		padding-top: 0;
	}
	.products .cont {
		padding: 0;
	}
	.products .cont01 .left .txt {
		max-width: 100%;
	}
	.products .cont01 .right {
		width: 100%;
		margin-top: 30px;
		position: static;
	}
	.products .cont01 .right .img {
		text-align: center;
	}

	.products .cont02 {
		margin-top: 80px;
	}
	.products .cont02 ul {
		margin-top: 20px;
		justify-content: space-between;
	}
	.products .cont02 ul li {
		width: 49%;
		margin: 10px 0 0;
	}

	.products .cont03 {
		width: calc(100% + 30px);
		border-radius: 0;
		margin-left: -15px;
		margin-top: 80px;
		padding: 80px 15px;
	}

	.products .cont03 ul li .img,
	.products .cont03 ul li .img {
		width: 100%;
	}
	.products .cont03 ul li .box,
	.products .cont04 ul li .box {
		width: 100%;
		min-height: 120px;
		margin-top: 20px;
	}

	.products .cont04,
	.products .cont05 {
		margin-top: 80px;
	}
	.products .cont05 {
		padding-bottom: 80px;
	}
	.products .cont05 .box:first-child,
	.products .cont05 .box:not(:first-child) {
		padding-left: 15px;
		padding-right: 15px;
		padding-top: 60px;
	}
	.products .cont05 .box:not(:first-child) {
		margin-top: 0;
	}

	#products01 .cont05 .box:last-child table {
		width: 100%;
		margin: 0;
	}
	#products01 .cont05 .box:last-child table:last-child {
		border-top: none;
	}

	#products02 .cont04 .left,
	#products02 .cont04 .right {
		width: 100%;
	}

	#products02 .cont05 .box:nth-last-child(-n+2) {
		width: 100%;
	}
}

@media (max-width: 768px) {
	#products_top .cont {
		background-size: auto 240px;
		padding: 0;
	}
	#products_top .ttl {
		font-size: 21px;
	}
	#products_top .txt {
		text-align: left;
	}

	.products .cont01 .left .ttl {
		font-size: 21px;
		margin-top: 20px;
	}

	.products .cont02 ul {
		justify-content: center;
	}
	.products .cont02 ul li {
		width: 100%;
		max-width: 400px;
	}

	.products .cont03 ul,
	.products .cont04 ul {
		margin-top: 20px;
		justify-content: center;
	}
	.products .cont04 ul {
		display: flex;
		flex-wrap: wrap;
	}
	.products .cont03 ul li,
	.products .cont04 ul li {
		width: 100%;
		max-width: 400px;
		margin-top: 10px;
	}

	.products .cont03 ul li .box,
	.products .cont04 ul li .box {
		min-height: 1px;
	}

	.products .cont05 {
		margin-top: 60px;
	}

	#products01::before,
	#products02::before {
		top: 100px;
	}
	#products01 .cont04 .img {
		margin-top: 30px;
	}
	#products01 .cont05 table th {
		width: 100%;
	}

	#products02 {
		margin-top: 0;
	}
}


/* company
------------------------------------------------------------*/
#company01 section {
	position: relative;
	z-index: 1;
}
#company01 .section_ttl {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
#company01 .section_ttl::before {
	content: '';
	width: 100%;
	max-width: 1175px;
	height: 520px;
	background: linear-gradient(90deg, #faf9ec 0%, #d1f6ec 100%);
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: -60px;
}
#company01 .s_ttl {
	position: relative;
}

#company01 .section_cont {
	position: relative;
	z-index: 1;
}
#company01 .left {
	width: 51.3%;
	padding-top: 40px;
}
#company01 .right {
	width: 49.56%;
	margin-right: -100px;
	margin-top: -70px;
}
#company01 .name {
	font-size: 25px;
	text-align: center;
	margin-top: 30px;
}

#company03 {
	position: relative;
	z-index: 1;
}
#company03::before {
	content: '';
	width: 100%;
	height: calc(100% - 220px);
	background: linear-gradient(180deg, #faf9ec 20%, #def8e7 65%, #d1f6ec 100%);
	border-radius: 50px;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}
#company03 section:not(:first-child) {
	margin-top: 80px;
}
#company03 ol {
	margin-top: 20px;
	padding: 0 25px;
}
#company03 ol li {
	width: 33.33%;
	line-height: 2.1;
}
#company03 ol li:not(:last-child)::before {
	content: '・';
	color: #2aab9f;
}
#company03 ol li:last-child {
	width: 100%;
	color: #2aab9f;
	text-align: right;
}

#company04 {
	background-color: #ffffff;
	border-radius: 50px;
}
#company04 .cont {
	margin: 20px 0;
	padding: 10px 0 10px 20px;
	position: relative;
}
#company04 .cont::before {
	content: '';
	width: 30px;
	height: 100%;
	background: linear-gradient(180deg, #faf9d8 0%, #def8e7 50%, #d1f6ec 100%);
	border-radius: 15px;
	position: absolute;
	left: 20px;
	top: 0;
	z-index: 0;
}
#company04 .box:not(:first-child) {
	margin-top: 30px;
}
#company04 .circle {
	width: 30px;
	margin-right: 40px;
	position: relative;
}
#company04 .circle::before {
	content: '';
	width: 15px;
	height: 15px;
	background-color: #ffffff;
	border-radius: 7.5px;
	position: absolute;
	left: 7.5px;
	top: 12px;
	z-index: 1;
}
#company04 .year {
	font-family: "Jost", sans-serif;
	width: 120px;
	color: #2aab9f;
	font-size: 30px;
	font-weight: 500;
	margin-right: 40px;
}
#company04 .txt {
	width: calc(100% - 230px);
}
#company04 .txt p {
	width: 100%;
	min-height: 36px;
	line-height: 1.6;
	display: flex;
	align-items: center;
}
#company04 .txt p:not(:first-child) {
	margin-top: 5px;
}


#company05 .box:not(:first-child) {
	margin-top: 80px;
}
#company05 .map {
	width: 100%;
	height: 360px;
}
#company05 .map iframe {
	border-radius: 10px;
}
#company05 table.table01 {
	margin-bottom: 0;
}
#company05 table.table01 th {
	width: 120px;
}

.company .page_img {
	height: 540px;
	background-image: url('../img/company/company_img.jpg');
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	margin-top: -50px;
	margin-bottom: -50px;
}

#company03 {
	margin-top: -120px;
	padding-top: 120px;
}
#company03-1 {
	margin-bottom: 140px;
}
#company03-2 section {
	margin-top: -140px;
	padding-top: 140px;
}

@media (max-width: 1800px) {
	.company section {
		padding-left: 220px;
	}

	#company01 .section_ttl::before {
		left: -35px;
	}
	#company01 .left {
		width: 48%;
	}
	#company01 .right {
		width: 49%;
		margin-right: -15px;
	}
}

@media (max-width: 1400px) {
	#company03 ol li {
		width: 50%;
	}
}


@media (max-width: 1400px) {
	.company section {
		padding-left: 15px;
	}
}

@media (max-width: 1000px) {
	#company01 .left {
		width: 100%;
		padding-top: 40px;
	}
	#company01 .right {
		width: 100%;
		margin-right: 0;
		margin-top: 40px;
	}
	#company01 .right .img {
		text-align: center;
	}
}

@media (max-width: 768px) {
	#company01 section {
		padding-bottom: 60px;
	}
	#company01 .section_ttl::before {
		width: calc(100% + 30px);
		height: 800px;
		border-radius: 0;
		left: -15px;
		top: 45px;
	}
	#company01 .name {
		font-size: 18px;
		margin-top: 10px;
	}


	#company03::before {
		border-radius: 15px;
	}

	#company03 section:not(:first-child) {
		margin-top: 40px;
	}

	#company03-2 {
		margin-top: 60px;
	}

	#company03 ol {
		padding: 0;
	}
	#company03 ol li {
		width: 100%;
		line-height: 1.8;
	}

	#company04 {
		border-radius: 15px;
	}
	#company04 .cont {
		margin: 0;
		padding: 0;
	}
	#company04 .cont::before {
		content: none;
	}
	#company04 .circle {
		display: none;
	}
	#company04 .year {
		width: 100%;
		font-size: 21px;
		margin-right: 0;
	}
	#company04 .txt {
		width: 100%;
	}
	#company04 .txt p {
		min-height: 1px;
	}
	#company04 .txt p:not(:first-child) {
		margin-top: 0;
	}

	#company05 .map {
		height: 200px;
	}

	#company05 table.table01 th {
		width: 100%;
	}

	.company .page_img {
		height: 320px;
	}
}


/* recruit
------------------------------------------------------------*/
#recruit01 section {
	max-width: 1600px;
	margin: 0 auto;
	position: relative;
}
#recruit01 .fuwafuwa_img {
	position: absolute;
	z-index: 0;
}
#recruit01 .fuwafuwa_img.img01 {
	left: 0;
	top: 0;
}
#recruit01 .fuwafuwa_img.img02 {
	right: 0;
	bottom: 5%;
}


#recruit01 ul li {
	width: 47.5%;
	background-color: #f3f3f3;
	border-radius: 10px;
	margin-top: 30px;
	padding: 40px 40px 50px;
}
#recruit01 ul li .box {
	margin-top: 30px;
}
#recruit01 ul li .ttl {
	color: #2aab9f;
	font-size: 27px;
	font-weight: 500;
	text-align: center;
}
#recruit01 ul li .txt {
	margin-top: 20px;
}

#recruit02 {
    width: 100%;
    background: linear-gradient(180deg, #faf9ec 20%, #def8e7 65%, #d1f6ec 100%);
    border-radius: 50px;
	position: relative;
}
#recruit02 .cont {
	width: calc(100% - 460px);
	max-width: 625px;
	margin-top: -100px;
}
#recruit02 .cont .ttl {
	color: #2aab9f;
	font-size: 30px;
	font-weight: 500;
}
#recruit02 .cont .txt {
	margin-top: 10px;
}

#recruit02 ul {
	width: 100%;
	margin-top: 80px;
}
#recruit02 ul li {
	width: 23%;
	height: 270px;
	background-color: #ffffff;
	border-radius: 20px;
	position: relative;
}
#recruit02 ul li .num {
	font-family: "Jost", sans-serif;
	color: #2aab9f;
	font-size: 65px;
	font-weight: 500;
	text-align: center;
	position: absolute;
	left: 0;
	right: 0;
	top: -40px;
}
#recruit02 ul li .txt {
	font-size: 24px;
	text-align: center;
	line-height: 1.6;
}
#recruit02 ul li .txt span {
	color: #2aab9f;
}

#recruit05 {
	position: relative;
}
#recruit05::before {
	content: '';
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #faf9ec 0%, #def8e7 50%, #d1f6ec 100%);
	border-radius: 150px 150px 0 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
}

#recruit05 .img {
	text-align: center;
}

.recruit footer {
	background: linear-gradient(90deg, #faf9ec 0%, #def8e7 50%, #d1f6ec 100%);
}

#recruit_slide {
	margin-top: 140px;
}


.recruit_slide li {
	margin: 0 20px;
}
.recruit_slide img {
	border-radius: 30px;
}

@media (max-width: 1200px) {
	#recruit01 ul li .ttl {
		text-align: left;
	}

	#recruit02 ul li {
		width: 48%;
		padding-left: 15px;
		padding-right: 15px;
	}
	#recruit02 ul li:nth-last-child(-n+2) {
		margin-top: 50px;
	}
}

@media (max-width: 1000px) {
	#recruit02 .cont {
		width: 100%;
		max-width: 100%;
		margin-top: 0;
	}

	#recruit05::before {
		border-radius: 50px 50px 0 0;
	}
}

@media (max-width: 768px) {
	#recruit01 ul {
		justify-content: center;
	}
	#recruit01 ul li {
		width: 100%;
		max-width: 400px;
		margin-top: 10px;
		padding: 20px;
	}
	#recruit01 ul li:first-child {
		margin-top: 0;
	}
	#recruit01 ul li .box {
		margin-top: 20px;
	}
	#recruit01 ul li .ttl {
		font-size: 21px;
	}
	#recruit01 ul li .txt {
		margin-top: 10px;
	}

	#recruit02 {
		border-radius: 15px;
	}
	#recruit02 .cont .ttl {
		font-size: 24px;
	}

	#recruit02 ul {
		margin-top: 60px;
		justify-content: center;
	}
	#recruit02 ul li {
		width: 100%;
		max-width: 400px;
	}
	#recruit02 ul li:nth-last-child(-n+3) {
		margin-top: 40px;
	}
	#recruit02 ul li .num {
		font-size: 48px;
		top: -35px;
	}
	#recruit02 ul li {
		height: 180px;
	}
	#recruit02 ul li .txt {
		font-size: 21px;
	}

	#recruit_slide {
		margin-top: 0;
		margin-bottom: 60px;
	}

	#recruit04 section {
		padding-top: 60px;
	}

	#recruit05::before {
		border-radius: 15px 15px 0 0;
	}

	.recruit_slide li {
		margin: 0 5px;
	}

}


/* interview
------------------------------------------------------------*/
#interview_top .sign_btn .btn {
	width: 45%;
	max-width: 500px;
	min-height: 200px;
}
#interview_top .sign_btn a {
	display: block;
	background-color: #ffffff;
	color: #00060e;
	border-radius: 20px;
	box-shadow: 0 0 9.8px rgba(42, 171, 159, 0.2);
	padding: 0;
	position: relative;
}

#interview_top .sign_btn .bg {
	height: 100%;
	padding: 70px 70px 10px 35px;
	position: relative;
}
#interview_top .sign_btn .bg:before,
#interview_top .sign_btn .bg:after {
	content: '';
	width: 100%;
	height: 100%;
	border-radius: 20px;
	color: #00060e;
	position: absolute;
	left: 0;
	top: 0;
}
#interview_top .sign_btn .bg:before {
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 0;
	opacity: 0;
	transition: opacity 0.5s;
}
#interview_top .sign_btn .btn:first-child .bg:before {
	background-image: url(../img/interview/interview_top_img01.jpg);
}
#interview_top .sign_btn .btn:last-child .bg:before {
	background-image: url(../img/interview/interview_top_img02.jpg);
}
#interview_top .sign_btn a:hover .bg:before {
	opacity: 1;
}
#interview_top .bg::after {
	background: linear-gradient(90deg, rgba(250, 249, 236, 0.8) 0%, rgba(222, 248, 231, 0.8) 50%, rgba(209, 246, 236, 0.8) 100%);
	opacity: 0;
	transition: opacity 0.3s;
}
#interview_top a:hover .bg::after {
	opacity: 1;
}


#interview_top .sign_btn .btn a::before,
#interview_top .sign_btn .btn a::after {
	right: 30px;
}


#interview_top .interview {
	font-family: "Jost", sans-serif;
	color: #2aab9f;
	font-size: 35px;
	font-weight: 500;
	position: absolute;
	left: 10px;
	top: -25px;
	z-index: 3;
}
#interview_top .bg_box {
	position: relative;
	z-index: 3;
}
#interview_top .name {
	font-family: "Jost", sans-serif;
	font-size: 20px;
	font-weight: 500;
}
#interview_top .name span {
	font-size: 40px;
}
#interview_top .year,
#interview_top .office {
	color: #b5b5b6;
	font-size: 18px;
}

.interview .cont dl:last-child {
	margin-top: 15px;
}
.interview .cont dl dt {
	margin-right: 20px;
}
.interview .cont dl dt p {
	width: 68px;
	height: 50px;
	background-color: #2aab9f;
	border-radius: 25px;
	color: #ffffff;
	text-align: center;
	line-height: 50px;
}
.interview .cont01 dl dt p {
	width: 90px;
	height: 35px;
	line-height: 35px;
}
.interview .cont dl dd {
	width: calc(100%  - 88px);
	line-height: 1.8;
	padding-top: 10px;
}
.interview .cont dl:first-child dd {
	color: #2aab9f;
	font-weight: 700;
}
.interview .cont01 dl dd {
	width: calc(100%  - 110px);
	line-height: 1.4;
	padding-top: 5px;
}

.interview .cont01 {
	width: calc(100% + 30px);
	background-position: center top;
	background-repeat: no-repeat;
	margin-left: -15px;
	padding-top: 100px;
	position: relative;
}
#interview01 .cont01 {
	background-image: url(../img/interview/interview01_c01_img.jpg);
}
#interview02 .cont01 {
	background-image: url(../img/interview/interview02_c01_img.jpg);
}
.interview .cont01::before,
.interview .cont01::after {
	content: '';
	width: 100%;
	height: 605px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1;
}
.interview .cont01::before {
	background-color: rgba(96, 96, 96, 0.2);
}
.interview .cont01::after {
	background: linear-gradient(90deg, rgba(151, 210, 60, 0.4) 0%, rgba(42, 171, 159, 0.4) 100%);
}
.interview .cont01 .box {
	padding-left: 15px;
	padding-right: 15px;
	position: relative;
	z-index: 2;
}
.interview .cont01 .interview {
	font-family: "Jost", sans-serif;
	color: #ffffff;
	font-size: 30px;
	font-weight: 500;
}
.interview .cont01 .ttl {
	margin: 60px 0 80px;
}
.interview .cont01 .cont_frame {
	max-width: 600px;
}
.interview .cont01 .name {
	font-family: "Jost", sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 15px;
}
.interview .cont01 .name span {
	font-size: 45px;
}

.interview .cont02 {
	margin-top: 100px;
	position: relative;
}
.interview .cont02::before {
	content: '';
	width: 100%;
	max-width: 1760px;
	height: 700px;
	background: linear-gradient(90deg, #faf9ec 0%, #def8e7 50%, #d1f6ec 100%);
	position: absolute;
	left: -15px;
	top: 0;
	bottom: 0;
	margin: auto;
	z-index: 0;
}
.interview .cont02 .box .img {
    flex: 1;
    margin-left: calc(50% - 50vw);
    margin-right: 4%;
}
.interview .cont02 .box .img img {
	border-radius: 0 20px 20px 0;
}
.interview .cont02 .box .cont_frame {
	width: 55.83%;
}
.interview .cont02 ul {
	margin-top: 50px;
}
.interview .cont02 ul li {
	width: 45.8%;
}
.interview .cont02 .cont_frame {
	height: 100%;
}

.interview .cont03 {
	margin-top: 80px;
}
.interview .cont03 .cont_frame {
	width: calc(100% - 30px);
	margin-top: -100px;
	position: relative;
}

#interview01,
#interview02 {
	margin-top: -140px;
	padding-top: 140px;
}

@media screen and (max-width: 1000px) {
	.interview .cont02 {
		margin-top: 40px;
	}
	.interview .cont02 .box .img {
		width: 100%;
		flex: none;
		margin-left: 0;
		margin-right:0;
	}
	.interview .cont02 .box .img img {
		border-radius: 20px;
	}
	.interview .cont02 .box .cont_frame {
		width: 100%;
		margin-top: 40px;
	}
	.interview .cont02 ul {
		margin-top: 0;
	}
	.interview .cont02 ul li {
		width: 100%;
		margin-top: 40px;
	}

	.interview .cont03 {
		margin-top: 40px;
	}
}

@media screen and (max-width: 768px) {
	#interview_top .sign_btn {
		justify-content: center;
	}
	#interview_top .sign_btn .btn {
		width: 100%;
		min-height: 160px;
	}
	#interview_top .sign_btn .btn:last-child {
		margin-top: 20px;
	}

	#interview_top .interview {
		font-size: 24px;
		left: 35px;
		top: 15px;
	}
	#interview_top .name span {
		font-size: 24px;
	}
	#interview_top .year,
	#interview_top .office {
		font-size: 16px;
	}

	.interview .cont01 {
		height: 400px;
		background-position: right center;
		background-size: cover;
		padding-top: 40px;
	}
	.interview .cont01::before,
	.interview .cont01::after {
		height: 400px;
	}
	.interview .cont01 .ttl {
		text-align: left;
		margin: 40px 0;
	}
	.interview .cont01 .ttl img {
		width: auto;
		height: 78px;
	}
	.interview .cont01 .name span {
		font-size: 28px;
	}

	.interview .cont02 {
		margin-top: 140px;
	}
	.interview .cont02 .box .cont_frame {
		margin-top: 30px;
	}

	.interview .cont02::before {
		width: calc(100% + 30px);
		height: 1400px;
	}
	.interview .cont02.ja::before {
		height: 1200px;
	}




	.interview .cont dl dt p {
		height: 40px;
		line-height: 38px;
	}
	.interview .cont dl dd {
		width: 100%;
	}
	.interview .cont02 ul li {
		margin-top: 30px;
	}

	.interview .cont03 {
		margin-top: 30px;
	}
	.interview .cont03 .cont_frame {
		width: 100%;
		margin-top: 30px;
	}

	#interview01 .cont01 {
		background-image: url(../img/interview/interview01_c01_img_sp.jpg);
	}
	#interview02 .cont01 {
		background-image: url(../img/interview/interview02_c01_img_sp.jpg);
	}

}


/* contact
------------------------------------------------------------*/
.contact .cont_frame {
	padding-top: 60px;
	padding-bottom: 80px;
}

#contact01 .left,
#contact01 .right {
	width: 48%;
}
#contact01 .left .num {
	color: #2aab9f;
	font-size: 50px;
	font-weight: 700;
}

#contact01 .right {
	margin-right: 3%;
}
#contact01 .right dl:not(:first-child) {
	margin-top: 30px;
}
#contact01 .right dl dt {
	color: #2aab9f;
	font-size: 24px;
	font-weight: 500;
}
#contact01 .right dl dd {
	line-height: 1.8;
	margin-top: 10px;
}
#contact01 .right dl dd ol li {
	text-indent: -1em;
	padding-left: 1em;
}

#contact02 .form_check {
	text-align: center;
	margin: 40px 0;
}

.form table {
	width: 100%;
	margin: 60px 0 40px;
}
.form table th {
	width: 240px;
	font-weight: 500;
	vertical-align: top;
	padding: 20px 0;
	position: relative;
}
.form table th span {
	color: #2aab9f;
	position: absolute;
	right: 30px;
}
.form table td {
	padding: 5px 0;
}
.form table td .radio label:not(:first-child) {
	margin-left: 20px;
}

#formWrap {
	width: 100%;
	max-width: 780px;
	margin: 0 auto;
}
#formWrap table.formTable {
	margin-top: 20px;
	margin-bottom: 20px;
}
#formWrap table.formTable td p {
	display: inline-block;
	width: 100%;
	min-height: 40px;
	background-color: #f3f3f3;
	border-radius: 5px;
	padding: 10px 15px;
}

.input_text,
.textarea {
	width: 100%;
	background-color: #f3f3f3;
	border: 1px solid #f3f3f3;
	border-radius: 5px;
	padding: 10px 15px;
}
.input_text:focus,
.textarea:focus {
	outline: 1px solid #f3f3f3;
}

.input_text {
	height: 60px;
}
.textarea {
	height: 180px;
	resize: vertical;
}

.input_radio {
	display: inline-block;
	background-color: #ffffff;
	margin-right: 15px;
	transform: scale(1.5);
	accent-color: #ffffff;
	position: relative;
	z-index: 1;
}
.input_radio::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-color: #f3f3f3;
/*	border: 1px solid #f3f3f3; */
	border-radius: 10px;
	position: absolute;
	left: -2px;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
}
.input_radio:checked::after {
	content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: #2aab9f;
	border-radius: 5px;
    position: absolute;
    left: 2.5px;
    top: 2px;
}


.input_check {
	display: inline-block;
	background-color: #ffffff;
	margin-right: 15px;
	transform: scale(1.5);
	accent-color: #ffffff;
	position: relative;
	z-index: 1;
}
.input_check::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-color: #f3f3f3;
/*	border: 1px solid #f3f3f3; */
	border-radius: 10px;
	position: absolute;
	left: -2px;
	top: 50%;
	transform: translateY(-50%);
	z-index: -1;
}
.input_check:checked::after {
	content: '';
    display: block;
    width: 4px;
    height: 8px;
    background: transparent;
    border-bottom: 2px solid #00060e;
    border-right: 2px solid #00060e;
    position: absolute;
    left: 5px;
    top: 0;
    transform: rotate(42deg);
}

.w60 {
	max-width: 500px;
}

.form_txt a {
	color: #2aab9f;
	text-decoration: underline;
}

@media screen and (max-width: 1200px) {
	#contact01 .left,
	#contact01 .right {
		width: 100%;
	}
	#contact01 .right {
		margin-top: 30px;
	}
}

@media screen and (max-width: 768px) {
	.contact .cont_frame {
		padding-top: 30px;
		padding-bottom: 40px;
	}

	#contact01 .left .num {
		font-size: 30px;
	}
	#contact01 .right dl dt {
		font-size: 21px;
	}

	.form table tr {
		display: flex;
		flex-wrap: wrap;
	}
	.form table th,
	.form table td {
		width: 100%;
		padding: 5px;
	}

	.input_text {
		height: 48px;
	}
	.input_check {
		margin-right: 10px;
	}
}


/* privacy policy
------------------------------------------------------------*/
#privacy01 .top_txt {
	margin-bottom: 80px;
}
#privacy01 .box {
	margin-top: 60px;
}

#privacy01 .ttl {
	margin-bottom: 20px;
}

#privacy01 .sign_btn {
	margin-top: 40px;
}

@media screen and (max-width: 768px) {
	#privacy01 .top_txt {
		margin-bottom: 40px;
	}

	#privacy01 .box {
		margin-top: 40px;
	}

	#privacy01 .sign_btn {
		margin-top: 20px;
	}
}


/* news
------------------------------------------------------------*/
#news ul li {
	width: 48%;
	min-height: 200px;
	margin-bottom: 40px;
}
#news ul li a {
	display: block;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	border-radius: 10px;
	padding: 20px;
	position: relative;
}
#news ul li a:hover {
	box-shadow: 0 0 9.8px rgba(42, 171, 159, 0.2);
}
#news ul li .img {
	width: 180px;
	height: 130px;
}
#news ul li .img img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	object-fit: cover;
}
#news ul li .box {
	width: calc(100% - 200px);
}
#news ul li .box .ttl {
	font-size: 20px;
	font-weight: 500;
}

#news ul li .up_date {
	color: #898989;
	font-size: 15px;
	position: absolute;
	left: 220px;
	bottom: 20px;
}

.newMark {
	background-color: #ff0000;
	border-radius: 5px;
	font-size: 14px;
	color: #ffffff;
	margin-left: 10px;
	padding: 0 10px;
	position: absolute;
	left: -15px;
	top: -10px;
}

.top #news {
	background-color: #f3f3f3;
	margin-top: 180px;
}
.news #news ul li {
	width: 31.66%;
	margin-right: 2.51%;
}
.news #news ul li:nth-child(3n) {
	margin-right: 0;
}
.news #news ul li a {
	box-shadow: 0 0 9.8px rgba(42, 171, 159, 0.2);
	padding-bottom: 50px;
	position: relative;
}
.news #news ul li a::before,
.news #news ul li a::after {
	content: '';
	width: 40px;
	height: 40px;
	position: absolute;
	right: 15px;
	bottom: 15px;
}
.news #news ul li a::before {
	background-color: #2aab9f;
	border: 1px solid #2aab9f;
	border-radius: 20px;
	transition: 0.5s;
}
.news #news ul li a::after {
	background-image: url(../img/common/sign.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 10px auto;
	transition: 0.5s;
}
.news #news ul li a:hover {
	box-shadow: 0 0 9.8px rgba(42, 171, 159, 0.5);
}
.news #news ul li a:hover::before {
	background-color: #ffffff;
}
.news #news ul li a:hover::after {
	background-image: url(../img/common/sign_g.svg);
}

.news #news ul li .img {
	width: 100%;
	height: 200px;
}
.news #news ul li .box {
	width: 100%;
}
.news #news ul li .ttl {
	min-height: 90px;
	margin-top: 20px;
}
.news #news ul li .up_date {
	left: 20px;
}

.pager {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.pager a {
	display: inline-block;
	width: 40px;
	height: 40px;
	background-color: #f7f8f8;
    border: 1px solid #f7f8f8;
    border-radius: 20px;
    font-size: 16px;
	font-weight: 500;
	text-align: center;
	line-height: 38px;
	margin: 0 7px;
}
.pager a:hover,
.pager a.current{
	background-color: #2aab9f;
	color: #ffffff;
}
.prev,
.next {
	display: inline-block;
	width: 40px;
	height: 40px;
	background-color: #ffffff;
	background-image: url(../img/common/sign_g.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 8px;
	border: 1px solid #2aab9f;
	border-radius: 25px;
}
.prev {
	transform: rotate(180deg);
}
a:hover .prev,
a:hover .next {
	background-color: #2aab9f;
	background-image: url(../img/common/sign.svg);
}

.detail_ttl {
	border-bottom: 2px solid #2aab9f;
	color: #2aab9f;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 10px;
	padding-bottom: 10px;
}
.detail_date {
	text-align: right;
}
.detail {
	line-height: 1.8;
	margin-top: 20px;
}
.detail img {
	margin: 10px 0;
}

.back_btn {
	width: 200px;
	height: 50px;
	margin: 60px auto 0;
}
.back_btn a {
	display: block;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	border: 1px solid #2aab9f;
	color: #2aab9f;
	font-size: 18px;
	text-align: center;
	line-height: 48px;
}
.back_btn a:hover {
	background-color: #2aab9f;
	color: #ffffff;
}

@media (max-width: 1000px) {
	.top #news {
		margin-top: 0;
	}

	#news ul li .up_date {
		left: 20px;
		bottom: 18px;
	}
	#news ul li .box .ttl {
		font-size: 16px;
	}
}

@media (max-width: 768px) { 
	#news .sign_btn {
		width: 100%;
		margin-top: 10px;
	}
	#news .sign_btn .btn {
		margin-left: auto;
	}
	#news ul {
		justify-content: center;
	}
	#news ul li {
		width: 100%;
		max-width: 400px;
	}

	#news ul li a {
		padding-bottom: 45px;
	}

	#news ul li .box {
		width: 100%;
		margin-top: 10px;
	}
	#news ul li .up_date {
		bottom: 15px;
	}

	.news #news ul {
		justify-content: space-between;
	} 
	.news #news ul li {
		width: 48%;
		margin-right: 0;
	}
	.news #news ul li .img {
		height: 160px;
	}

	.back_btn {
		width: 160px;
		height: 40px;
		margin-top: 50px;
	}
	.back_btn a {
		font-size: 16px;
		line-height: 38px;
	}
}

@media (max-width: 480px) { 
	.news #news ul li {
		width: 100%;
	}
}


