@charset "UTF-8";



/* ========================================================
  
  common

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

/*---------------------------------------------------------
tab
---------------------------------------------------------*/
.tab_wrap {
	display: flex;
	flex-wrap: wrap;
	column-gap: 1.3%;
}
.tab_wrap input {
	display: none;
}
.tab-btn {
	position: relative;
	order: -1;
	flex: 1;
	/* width: 24%; */
	max-width: 290px;
	height: 3.8em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	color: var(--color_dgrn);
	font-size: min(1.9vw,135%);
	font-weight: bold;
	line-height: 1.3;
	letter-spacing: .02em;
	background-color: #fff;
	border: 1px solid var(--color_dgrn);
	border-radius: 10px;
	box-sizing: border-box;
	padding: 1% 1em;
	word-break: keep-all;
	overflow-wrap: break-word;
	cursor: pointer;
	transition: color .5s, background-color .5s;
	margin-bottom: 20px;
}
.tab-btn::before {
	position: absolute;
	content: "";
	background-color: var(--color_dgrn);
	width: 6px;
	height: 6px;
	right: 10px;
	top: 10px;
	clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.tab-btn::after {
	position: absolute;
	content: "";
	background-color: var(--color_dgrn);
	width: 8.5px;
	height: 5px;
	inset: 105% 0 auto 0;
	margin: auto;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	opacity: 0;
	transition: opacity .5s;
}
.tab-btn small {
	display: block;
	font-size: 65%;
	font-weight: normal;
	letter-spacing: .02em;
}
.tab-btn:hover,
.tab-btn:has(:checked) {
	color: #FFF;
	background-color: var(--color_dgrn);
}
.tab-btn:hover::after,
.tab-btn:has(:checked)::after {
	opacity: 1;
}
/* content */
.tab-content {
	display: none;
	width: 100%;
	background-color: #fff;
	border-radius: 1.4em;
	box-sizing: border-box;
	padding: 5.6%;
	box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

.tab-btn:has(:checked) + .tab-content {
	display: block;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.tab_wrap {
	column-gap: 2%;
}
.tab-btn {
	width: 49%;
	font-size: 90%;
}
/* content */
.tab-content {
	border-radius: 1em;
	padding: 8% 6%;
}
}


/* ========================================================
  
  main

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


/*---------------------------------------------------------
 about
---------------------------------------------------------*/
#about {
	color: #FFF;
	background-color: var(--color_lgrn);
}
#about .com_h__en {
	color: #FFF;
}

.abo_slide {
	margin: 5% auto;
}
.abo_slide .splide__track {
	overflow: visible;
}
.abo_slide .splide__slide {
	width: 27vw !important;
	max-width: 400px;
}
/* point_area */
.point_area .percent {
	font: var(--font_fut);
	line-height: 0.8;
	vertical-align: -0.1em;
}
.point_area .percent span {
	font-size: 139%;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.abo_slide .splide__slide {
	width: 50vw !important;
}
}
/*about: abo_list
---------------------------------------------------------*/
.abo_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	row-gap: 2em;
}
.abo_list > li {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	position: relative;
	color: #000;
	text-align: center;
	font-weight: bold;
	line-height: 1.3;
	background-color: #fff;
	box-sizing: border-box;
	border-radius: .8em;
	padding: 4.4% 1.8% 3.8%;
}
.abo_list .icon {
	position: absolute;
	width: 38%;
	max-width: 130px;
	right: 8%;
	top: 5%;
}
.abo_list .com_h__bld {
	margin-bottom: 1em;
}
.abo_list > li > div {
	position: relative;
	color: var(--color_dgrn);
	font-size: min(2vw,141%);
}
.abo_list .txt_large {
	text-align: center;
	font-size: 175%;
}
.abo_list .txt_large span {
	font: var(--font_fut);
	font-size: 235%;
	line-height: 0.8;
	vertical-align: -0.1em;
}
.abo_list > li > div li {
	position: relative;
	text-align: left;
	box-sizing: border-box;
}
/* box_year */
.abo_list .box_year li {
	display: flex;
	white-space: nowrap;
	column-gap: 2em;
	padding: .8em 5% .3em;
	border-bottom: 1px solid currentColor;
}
.abo_list .box_year li > div:first-of-type {
	width: 7em;
}
.abo_list .box_year li > div:first-of-type::before {
	position: absolute;
	display: block;
	content: "";
	background: url(../images/recruit/accent-l.svg) no-repeat;
	background-size: contain;
	width: .9em;
	height: .9em;
	translate: -80% -30%;
}
.abo_list .box_year li span {
	font: var(--font_fut);
	font-size: 245%;
	vertical-align: -0.1em;
}
/* box_vac */
.abo_list .box_vac li {
	text-align: right;
	padding: 0 16%;
}
.abo_list .box_vac li div {
	text-align: center;
	font-size: 92%;
	margin-bottom: .4em;
}
.abo_list .box_vac li .icon {
	inset: auto auto -8% 4%;
}
/* box_time */
.abo_list .box_time .dash {
	font-family: "Hiragino Kaku Gothic ProN","Hiragino Sans","游ゴシック","Yu Gothic",Meiryo,sans-serif;
	font-size: 100%;
	font-weight: normal;
	font-style: normal;
	vertical-align: 0;
}
/* box_benefit */
.abo_list .box_ben li {
	display: flex;
	align-items: center;
	column-gap: .5em;
	font-feature-settings: "palt";
	margin-top: 1em;
}
.abo_list .box_ben li:first-of-type {
	margin-top: 0;
}
.abo_list .box_ben li span {
	position: relative;
	display: inline-block;
	color: #FFF;
	text-align: center;
	font-size: 70%;
	line-height: 3.4;
	min-width: 3.4em;
	background-color: var(--color_dgrn);
	border-radius: 50%;
}
.abo_list .box_ben li span::before {
	position: absolute;
	display: block;
	content: "";
	background: url(../images/recruit/accent-r.svg) no-repeat right top;
	background-size: contain;
	width: 1.2em;
	height: 1.2em;
	right: -0.3em;
	top: -0.9em;
}
/* box_trial */
.abo_list .box_trial {
	display: block;
}
.abo_list .box_trial .com_h__bld {
	font-size: min(3vw,2.35rem);
	margin-bottom: .1em;
}
.abo_list .box_trial .com_h__bld:nth-child(4) {
	padding-top: .6em;
	margin-top: .5em;
	border-top: 1px solid var(--color_dgrn);
}
.abo_list .box_trial .ft_fut {
	font-size: 150%;
	vertical-align: -0.05em;
	margin-right: .1em;
}
/* box_staff */
.abo_list .box_staff {
	width: 100%;
}
.abo_list .box_staff > div {
	color: #000;
}
.abo_list .box_staff ul {
	max-width: 1000px;
	display: grid;
	grid-template-columns: 50% 1fr;
	margin-inline: auto;
}
.abo_list .box_staff li {
	padding: 6% 0 5%;
}
.abo_list .box_staff li:first-of-type {
	border-right: 1px solid var(--color_dgrn);
}
.abo_list .box_staff li > div {
	display: flex;
	justify-content: center;
	column-gap: .5em;
}
.abo_list .box_staff .txt_large > div > div {
	font-size: 71%;
	margin-bottom: .2em;
}
.abo_list .box_staff img {
	width: 2.39em;
	margin: 0;
}
.abo_list .box_staff p {
	text-align: center;
	font-size: 88%;
	font-weight: normal;
	margin-top: .5em;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
.abo_list > li:nth-of-type(-n+3) {
	width: 32%;
	padding-left: 4%;
	padding-right: 4%;
}
.abo_list > li:nth-of-type(n+4):nth-of-type(-n+7) {
	width: 23.5%;
	padding-bottom: 2.6%;
}
.abo_list > li.box_staff {
	width: 100%;
}
.abo_list .box_year ul,
.abo_list .box_vac ul {
	max-width: 270px;
	margin-inline: auto;
}
/* box_vac */
.abo_list .box_vac li:nth-of-type(n+2) {
	padding-top: .6em;
	margin-top: .6em;
	border-top: 1px solid currentColor;
}
/* box_trial */
.abo_list .box_trial {
	padding: 3% 1.8%;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.abo_list {
	row-gap: .4em;
}
.abo_list > li {
	width: 49%;
	padding: 6% 5% 7%;
}
.abo_list > li:nth-of-type(3) {
	width: 100%;
}
.abo_list > li > div {
	font-size: 88%;
}
.abo_list .txt_large {
	font-size: 150%;
}
/* box_year */
.abo_list .box_year li {
	column-gap: 1em;
}
.abo_list .box_year li > div:first-of-type {
	width: 5em;
}
/* box_vac */
.abo_list .box_vac ul {
	display: grid;
	grid-template-columns: 50% 1fr;
}
.abo_list .box_vac li:first-of-type {
	border-right: 1px solid currentColor;
}
.abo_list .box_vac li .icon {
	left: 10%;
}
/* box_trial */
.abo_list .box_trial .com_h__bld {
	font-size: 120%;
}
}
/*about: appeal
---------------------------------------------------------*/
.appeal {
	position: relative;
	text-align: center;
	font-size: min(4vw,282%);
	line-height: 1.5;
	margin: 7% auto 6%;

	background-image: url(../images/recruit/about-deco01.svg),url(../images/recruit/about-deco02.svg);
	background-repeat: no-repeat;
	background-position: left top, right bottom;
	padding-top: 10px;
}
.appeal .com_fuki {
	font-size: min(4vw,282%);
	letter-spacing: normal;
	margin-bottom: .6em;
}
.appeal .com_fuki::before,
.appeal .com_fuki::after {
	width: 2px;
	height: 1.6em;
	bottom: -0.2em;
}
.appeal .com_fuki::before {
	right: calc(100% + 1em);
}
.appeal .com_fuki::after {
	left: calc(100% + 1em);
}
.appeal .com_fuki span {
	font-size: 135%;
	vertical-align: -0.1em;
}
.appeal .point_txt {
	font-weight: bold;
}
.appeal .point_txt .percent {
	font-size: 237%;
	vertical-align: -0.25em;
}
.appeal img {
	width: 8.48em;
	margin-top: .5em;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.appeal {
	font-size: 120%;
	margin: 10% auto;
}
.appeal .com_fuki {
	font-size: 140%;
}
}



/*---------------------------------------------------------
 responsibilities
---------------------------------------------------------*/
.details_list {
	margin-bottom: 2%;
}
.details_list > li {
	text-align: center;
	background-color: #ecf3cc;
	box-sizing: border-box;
	border-radius: .8em;
	padding: 12% 8%;
}
.details_list > li div {
	font-size: min(2vw,117%);
	font-weight: bold;
	letter-spacing: .08em;
	line-height: 1.5;
	font-feature-settings: "halt";
	margin-bottom: .5em;
}
.details_list > li p {
	font-size: 88%;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
.details_list {
	display: grid;
	justify-content: space-between;
	grid-template-columns: repeat(4,23.5%);
	row-gap: 1.5em;
}
#responsibilities .tab-btn {
	height: 4.1em;
	font-size: min(2.8vw,152%);
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.details_list {
	margin-bottom: 6%;
}
.details_list > li {
	padding: 8%;
	margin-bottom: 3%;
}
.details_list > li div {
	font-size: 110%;
}
}

/*responsibilities: flow
---------------------------------------------------------*/
.flow_list > li {
	display: grid;
	justify-content: space-between;
	grid-template-columns: 20% 76%;
}
.flow_list .time {
	text-align: center;
	color: #FFF;
	font: var(--font_fut);
	font-size: min(3vw,235%);
	font-style: normal;
	letter-spacing: .08em;
	background-color: #8bc750;
	box-sizing: border-box;
	padding: 14%;
}
.flow_list > li:nth-of-type(even) .time {
	background-color: #A7CF71;
}
.flow_list .time time:nth-of-type(2)::before {
	display: block;
	content: "";
	background-color: rgba(255,255,255,0.7);
	width: .5em;
	height: .25em;
	margin: .3em auto;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.flow_list .com_flt {
	padding-bottom: 1.5em;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
.flow_list dl {
	padding-top: 1.5em;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.flow_list > li {
	grid-template-columns: 22% 75%;
}
.flow_list .time {
	font-size: 105%;
	letter-spacing: .04em;
	padding: 25% 5%;
}
.flow_list .com_flt {
	padding: 0 4% 1.5em;
}
.flow_list .com_h__min {
	text-align: center;
	font-size: 115%;
}
}


/*---------------------------------------------------------
 person
---------------------------------------------------------*/
#person {
	text-align: center;
	background-color: var(--color_bei);
}
#person .com_h__min {
	margin-bottom: 0;
}
#person .com_h__min::after {
	display: block;
	content: "";
	background-color: currentColor;
	width: 3.4em;
	height: 1px;
	margin: .8em auto 1.2em;
}
#person .com_h__bld {
	color: var(--color_dgrn);
	margin-bottom: 2em;
}
.psn_list {
	font-size: min(1.9vw,112%);
	font-weight: bold;
	letter-spacing: .1em;
	line-height: 1.8;
}
.psn_list img {
	width: 9.48em;
	margin-bottom: 1em;
}
.psn_list p span {
	color: var(--color_dgrn);
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
.psn_list {
	display: flex;
}
.psn_list > li {
	flex: 1;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
#person .com_h__bld {
	margin-bottom: 1em;
}
.psn_list {
	font-size: 100%;
	letter-spacing: .05em;
}
.psn_list > li {
	display: flex;
	align-items: center;
	column-gap: 1em;
	text-align: left;
	margin-top: 1em;
}
.psn_list img {
	width: 6em;
	margin: 0;
}
}



/*---------------------------------------------------------
 message
---------------------------------------------------------*/
#message .com_h__min {
	color: var(--color_dgrn);
}
.dr_name {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	column-gap: .5em;
	font: var(--font_min);
	font-size: min(2vw,123%);
	letter-spacing: .1em;
	line-height: 1.5;
	margin-top: 4%;
}
.dr_name span {
	font-size: 142%;
	letter-spacing: .1em;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
#message .com_flt .txt_r {
	width: 55%;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
#message .com_flt .img_l {
	width: 60%;
}
.dr_name {
	font-size: 105%;
}
}



/*---------------------------------------------------------
 voice
---------------------------------------------------------*/
#voice {
	background-color: #c1d656;
}
#voice .com_title2,
#voice .com_h__en {
	color: #FFF;
}
.voi_list > li {
	background-color: #ecf3cc;
	box-sizing: border-box;
	border-radius: .8em;
	padding: 8.2%;
}
.voi_list > li div {
	display: grid;
	align-items: center;
	column-gap: 1em;
	grid-template-columns: 34% 62%;
	font-size: min(2.8vw,180%);
	letter-spacing: .08em;
	line-height: 1.5;
	margin-bottom: 1em;
}
.voi_list > li div span {
	display: block;
	font-size: 78%;
}
.voi_list > li div img {
	margin: 0;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
.voi_list {
	display: grid;
	justify-content: space-between;
	grid-template-columns: repeat(2,48.4%);
	row-gap: 2em;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.voi_list > li {
	margin-top: 3%;
}
.voi_list > li div {
	font-size: 120%;
}
}



/*---------------------------------------------------------
 guideline
---------------------------------------------------------*/
#guideline .tab-content {
	border-radius: 0;
}
.tbl_job {
	width: 100%;
	border-collapse: collapse;
}
.tbl_job tr {
	border-bottom: 1px solid rgba(0,0,0,0.3);
}
.tbl_job tr:last-of-type {
	border-bottom: none;
}
.tbl_job th,
.tbl_job td {
	box-sizing: border-box;
	padding: 2.2rem 0;
}
.tbl_job th {
	width: 23%;
	text-align: left;
	color: var(--color_dgrn);
	font-size: min(2vw,117%);
	vertical-align: top;
}
.tbl_job td {
	width: 77%;
}
.tbl_job .com_list > li {
	margin-bottom: .3em;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
.tbl_job tr:first-of-type th,
.tbl_job tr:first-of-type td {
	padding-top: 0;
}
.tbl_job tr:last-of-type th,
.tbl_job tr:last-of-type td {
	padding-bottom: 0;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.tbl_job th,
.tbl_job td {
	display: block;
	width: 100%;
	padding: 1em 0;
}
.tbl_job th {
	text-align: center;
	font-size: 105%;
	padding-bottom: 0;
}
.tbl_job td {
	padding-top: .5em;
}
.tbl_job tr:first-of-type th {
	padding-top: 0;
}
}


/*---------------------------------------------------------
 entry
---------------------------------------------------------*/
#entry {
	color: #FFF;
	background-color: rgba(99,166,101,0.85);
}
#entry .com_h__en {
	text-align: center;
	color: #FFF;
	margin-bottom: .5em;
}
#entry .com_h__en::after {
	display: inline-block;
	content: "";
	background: url(../images/recruit/entry-icon.svg) no-repeat;
	background-size: contain;
	width: 1em;
	height: 1em;
	vertical-align: -0.15em;
	margin-left: .3em;
}
#entry .com_h__en + p {
	text-align: center;
	font-size: min(2vw,112%);
	margin-bottom: 4%;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
#entry .com_h__en + p {
	font-size: 100%;
	margin-bottom: 8%;
}
}



/*---------------------------------------------------------
 
---------------------------------------------------------*/

/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {


}



/*---------------------------------------------------------
 
---------------------------------------------------------*/

/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {


}



/*---------------------------------------------------------
 
---------------------------------------------------------*/

/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {


}
