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


/* リセットCSS */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	color: inherit;
	vertical-align: baseline;
}
h1, h2, h3, h4, h5, h6{
	height: auto;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* /リセットCSS */


/****************************************
		clearfix
*****************************************/
.cf::before,
.cf::after {
	content: " ";
	display: table;
}
.cf::after {
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.cf {
	display: inline-block;
	*zoom: 1;
}

* html .cf {
	height: 1%;
}
/* /clearfix */

/****************************************
		base
*****************************************/

*{
	box-sizing: border-box;
}
body{
	width: 100%;
	max-width: 100%;
	position: relative;
	font-family: 'Noto Sans JP','ヒラギノ角ゴ ProN','Hiragino Kaku Gothic ProN','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	font-size: 1.1vw;
  font-weight: 400;
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
}

p{
	font-size: 1em;
	line-height: 1.7em;
	letter-spacing: 0.1em;
	word-break: break-word;
	overflow-wrap : break-word;
	font-weight: 400;
}

h1,h2,h3,h4,h5,h6{
	line-height: 1.4em;
	letter-spacing: 0.1em;
	word-break: break-word;
	overflow-wrap : break-word;
}
strong{
	font-weight: 700;
	color: #c14419;
}
img{
	margin: 0 auto;
	line-height: 0;
	padding: 0;
	vertical-align: bottom;
	max-width: 100%;
}
a{
	transition: 0.3s;
	display: inline-block;
	text-decoration: none;
	color: inherit;
}

button{
	font-size: 100%;
	border: 0;
	padding: 0;
	font-family: inherit;
	background: none;
	border: none;
	outline: none;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

body ::-webkit-scrollbar {
	/* width: 1.5em; */
	width: 0.5em;
	display: inline-block;
	margin: 1em 0;
}
body ::-webkit-scrollbar-track {
	background: #e6e6e6;
	border-radius: 5em;
}
body ::-webkit-scrollbar-thumb {
	background: #000;
	border-radius: 5em;
}

/* fade */
.fadein {
  transition: all 2s;
  opacity: 0;
  visibility: hidden;
  transform: translate(0px, 20px);
}

.fadein.scrollin {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0px);
}
.fadein + .fadein{
	transition-delay: 0.2s;
}
.fadein + .fadein + .fadein{
	transition-delay: 0.4s;
}
.fadein + .fadein + .fadein + .fadein{
	transition-delay: 0.6s;
}
.fadein + .fadein + .fadein + .fadein + .fadein{
	transition-delay: 0.8s;
}
.fadein + .fadein + .fadein + .fadein + .fadein + .fadein{
	transition-delay: 1s;
}


/****************************************
		header
*****************************************/
header{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.2em 2.2em 1.2em 1.2em;
	z-index: 10;
}
.header_logo{
	color: #c14419;
}
.header_logo a{
	display: flex;
	align-items: center;
	font-weight: 600;
	font-size: 0.9em;
}
.header_logo img{
		margin: 0 1.4em 0 0;
	width: 10em;
	padding-bottom: 0.5em;
}
.header_nav{
	padding-top: 0.5em;
}

/****************************************
		footer
*****************************************/
footer{
	background: #c14419;
	color: #fff;
	padding: 30px 30px;
	overflow: hidden;
	position: relative;
}
footer .footer_inner{
	display: flex;
}
.footer_left{
    margin-right: 13.2%;
}
.footer_left .footer_logo a{
	display: flex;
	align-items: center;
}
.footer_left .footer_logo img{
    margin-right: 1.4em;
    width: 9em;
}


.footer_nav{
	display: flex;
    gap: 2em;
    margin-top: 1em;
}
.footer_nav .tit{
	font-size: 1.2em;
	font-weight: 800;
    margin-bottom: 0.4em;
}
.footer_nav .link_list{
	min-width: 13.5em;
	padding-left: 0.4em;
}
.footer_nav .link_list + .link_list{
	margin-left: 10px;
}
.footer_nav .link_list li a{
	padding: 0.35em 0;
	font-weight: 800;
	letter-spacing: 0.05em;
}
.footer_nav .link_list li a:before{
	content: "-";
	display: inline-block;
}
.sns_list{
	display: flex;
    /* margin-top: 2.6em; */
    margin-top: -2.2em;
    gap: 1.3em;
}
.sns_list li{
    width: 2.2em;
}

footer small{
	display: block;
    margin-top: 2.2em;
	letter-spacing: 0.01em;
	font-size: 1em;
	font-weight: 600;
	text-align: center;
}


/****************************************
		common
*****************************************/
.inner{
	/* max-width: 1000px; */
    width: 73%;
	margin: 0 auto;
}
.sec_intro .inner{
	width: 86%;
}
.link_btn{
	color: #000;
	border: solid 3px #000;
	padding: 0.8em 0.6em 0.8em 1.4em;
	font-weight: 600;
	font-size: 0.9em;
	display: inline-block;
}
.sec_tit{
	font-size: 1em;
	padding: 0 0 2em;
}
.sec_tit .ja{
	font-size: 1.9em;
    line-height: 1.4;
    letter-spacing: 0.1em;
	display: block;
	font-weight: 800;
    margin-bottom: 0.2em;
}
.sec_tit .en{
	letter-spacing: 0.18em;
	font-weight: 600;
}

/****************************************
		main
*****************************************/
.sec_fv{
}
.cate_tab{
	font-size: 1.6em;
	font-weight: 800;
	letter-spacing: 0.1em;
    margin-top: -2em;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.cate_tab li{
	width: 49%;
}
.cate_tab li a{
  position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 1em;
	border: solid 0.2em #fff;
	background: #cccccc;
	color: #fff;
	padding: 0.5em;
	height: 4em;
}
.cate_tab li a:hover{
	opacity: 1;
}
.cate_tab li.active a{
	background: #c14419;
}
.cate_tab li.active a:before,
.cate_tab li.active a:after {
  content: "";
  position: absolute;
	top: auto;
  bottom: -1.8em;
  left: 50%;
	right: 50%;
  transform: translateX(-50%);
  border: 1em solid transparent;
  border-top: 1.1em solid #c14419;
  z-index: 2;
}
.cate_tab li.active a:after {
  bottom: -2.1em;
  border-top-color: #fff;
  z-index: 1;
}

.sec_intro{
	color: #fff;
	background: url(../images/bg1.png) center/cover no-repeat;
}
.sec_intro .flex{
	position: relative;
	display: flex;
    align-items: flex-end;
	justify-content: space-between;
}
.sec_intro .flex .img{
    width: 40.5%;
    margin-left: -2%;
    margin-top: 1.5em;
}
.sec_intro .flex .img img{
	width: 100%;
}
.sec_intro .flex .txt{
	width: 59%;
    padding-bottom: 7em;
}
.sec_intro .flex .txt .tit{
    font-size: 2.4em;
	font-weight: 800;
    margin-bottom: 0.4em;
    margin-top: 0.6em;
}
.sec_intro .flex .txt p{
    font-size: 1.05em;
    font-weight: 600;
}
.sec_intro .flex .txt .copy{
    font-size: 1.6em;
	font-weight: 700;
    margin-bottom: 1.4em;
}
.sec_intro .item{
	position: absolute;
    bottom: -7em;
    right: 8%;
    max-width: 28%;
}
.sec_intro .item img{
	width: 100%;
}

.sec_job{
	padding: 3.5em 0 0;
}
.sec_job .sec_tit{
	color: #c14419;
}
.job_list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 7.5em;
}
.job_list li{
	width: 46.5%;
	margin-bottom: 9%;
	background: url(../images/bg1.png) center/cover no-repeat;
	text-align: center;
	padding: 1em 2em;
	color: #fff;
}
.job_list li .img{
    width: 83%;
    display: flex;
    margin: -8.5em auto 0;
}
.job_list li .img img{
	width: 100%;
}
.job_list li .tit{
    width: 9em;
    font-size: 1.95em;
    letter-spacing: -0.05em;
    font-weight: 600;
	background: #c14419;
    border: solid 0.1em #fff;
    margin: 0 auto 0.8em;
    padding: 0.3em;
}
.job_list li p{
	text-align: left;
    font-size: 1.15em;
    letter-spacing: 0.15em;
    font-weight: 600;
}
.job_list li .more_btn{
	margin: 1.2em auto;
	width: 66%;
    height: 3em;
}

.more_btn{
	background: #fff;
	color: #000;
    border: solid 0.2em #000;
	text-align: center;
    font-size: 1.1em;
    letter-spacing: 0.05em;
	font-weight: 800;
	padding: 0.8em 0.5em;
    height: 2.7em;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 2em;
	width: 12.5em;
}
.more_btn.none{
	background: transparent;
	pointer-events: none;
	border: none;
}
.more_btn span{
	display: flex;
	align-items: center;
	justify-content: center;
}
.more_btn span:after{
	content: "";
	display: inline-block;
	background: url(../images/arrow.png) center/contain no-repeat;
	width: 1em;
	height: 1em;
	margin-left: 0.7em;
	transition: .3s;
}
.more_btn.none span:after{
	display: none;
}

.sec_voice{
	padding: 2.5em 0;
	color: #fff;
	background: url(../images/voice_bg_pc.webp) center/cover no-repeat;
}
.sec_voice .copy{
    font-size: 1.8em;
	font-weight: 800;
    line-height: 1.5;
    margin-top: 2.5em;
    margin-bottom: 1.3em;

}
.sec_voice .copy .big{
	font-size: 1.2em;
    letter-spacing: 0.15em;
}
.sec_voice .flex{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.sec_voice .flex p{
    font-size: 1.15em;
    font-weight: 600;
}

.sec_data{
	padding: 2.5em 0 3em;
	background: url(../images/bg2.png) center/cover no-repeat;
}
.sec_data .img{
}
.sec_data .img img{
	width: 100%;
}

.sec_part{
    padding: 5em 0;
}
.sec_part .inner{
	position: relative;
	display: flex;
	justify-content: flex-end;
	background: #5d8960;
	color: #fff;
    border-radius: 3em;
    padding: 2.5em 5.5em;
    min-height: 23em;
}
.sec_part .img{
	width: 31%;
	position: absolute;
	bottom: 0;
	left: 7%;
}
.sec_part .txt{
    width: 57.5%;
}
.sec_part .txt .tit{
	border: solid 0.08em #fff;
	display: block;
    padding: 0.3em;
    font-size: 2em;
    font-weight: 800;
    letter-spacing: 0.02em;
		text-align: center;
    margin-bottom: 0.7em;
}
.sec_part .txt p{
    font-size: 1.16em;
    letter-spacing: 0.22em;
    font-weight: 600;
}
.sec_part .part_btn{
    margin-top: 1em;
    margin-top: 3.3em;
    margin-left: 0.5em;
		position: relative;
}
.sec_part .part_btn img{
	width: 100%;
}
.sec_part .part_btn .more_btn{
	width: 94%;
    justify-content: flex-start;
		padding-left: 2em;
		height: 3.2em;
}
.sec_part .part_btn .more_btn:after{
	content: "";
	position: absolute;
	right: 0;
	bottom: -0.3em;
	display: block;
	width: 100%;
	height: 6em;
	background: url(../images/part_btn.png) center/contain no-repeat;
}

/****************************************
		ポップアップ
*****************************************/
.modal {
	display: none;
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	overflow-y: scroll;
}
.modal .modal_bg {
	background: rgba(0, 0, 0, 0.8);
	height: 100%;
	position: fixed;
	width: 100%;
}
.modal .modal_area_wrap {
	position: absolute;
	margin: 0 auto;
	left: 50%;
	right: 50%;
	top: 50%;
	bottom: 50%;
	transform: translate(-50%, -50%);
	width: 73%;
	height: 75vh;
	pointer-events: none;
}
.modal .modal_close {
	position: absolute;
	right: -0.5em;
	top: -6.8em;
	width: 6em;
	height: 6em;
	overflow: hidden;
	border-radius: 50%;
	background: #000;
	transition: .3s;
}

.modal .modal_area {
	position: relative;
	box-sizing: border-box;
	border-radius: 2em;
	background: #fff;
	color: #000;
	margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
	pointer-events: auto;
	padding: 0 0 2.5em 3em;
	/* direction: rtl; */
	overflow: hidden;
}
.modal .modal_area .detail_wrap{
	/* direction: ltr; */
	overflow-y: auto;
	overflow-x: hidden;
  height: 100%;
}
.detail_haed{
	display: flex;
	justify-content: space-between;
	margin-bottom: 3em;
}
.detail_haed .img{
}
.detail_haed .img img{
    width: 42em;
    height: 24.5em;
	object-fit: cover;
}
.detail_haed .txt{
    padding-top: 3.5em;
}
.detail_haed .detail_tit{
	font-size: 1em;
	padding: 0 0 9.5em;
}
.detail_haed .detail_tit .ja{
	font-size: 1.9em;
    line-height: 1.4;
    letter-spacing: 0.1em;
	display: block;
	font-weight: 800;
    margin-bottom: 0.2em;
}
.detail_haed .detail_tit .en{
	letter-spacing: 0.18em;
	font-weight: 600;
}
.detail_haed .txt p{
	font-size: 1.2em;
	font-weight: 600;
    letter-spacing: 0.1em;
}
.detail_main {
	/* height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
  flex: 1; */
	padding-right: 2.5em;
}
.detail_main .qa_wrap{
	display: flex;
    justify-content: space-between;
		margin-bottom: 1em;
}
.detail_main .qa_wrap:nth-of-type(2n){
    flex-direction: row-reverse;
}
.detail_main .qa_wrap + .qa_wrap{
	margin-top: 2.5em;
}
.detail_main .qa_wrap .txt{
	width: 53%;
}
.detail_main .qa_wrap .img{
	width: 42%;
	margin-top: 0.5em;
}
.detail_main .qa_list li + li{
	margin-top: 2.5em;
}

.detail_main .qa_list li .tit{
	font-size: 1.6em;
	font-weight: 800;
	color: #c14419;
    margin-bottom: 0.5em;
}
.detail_main .qa_list li p{
    letter-spacing: 0.15em;
    line-height: 1.8;
		font-weight: 600;
}

.detail_main .schedule{
    margin-top: 3em;
}
.detail_main .schedule_tit{
	background: #c14419;
	color: #fff;
	text-align: center;
    padding: 0.25em;
    font-size: 1.9em;
    letter-spacing: 0.11em;
	font-weight: 800;
	margin-bottom: 1.4em;
}
.detail_main .schedule_table{
	margin-left: 24%;
}
.detail_main .schedule_table th{
	background: url(../images/dot.png) center top/0.31em repeat-y;
    height: 8.5em;
}
.detail_main .schedule_table tr:last-of-type th{
	background: none;
    height: auto;
}
.detail_main .schedule_table th .time{
	width: 5.9em;
	border-radius: 2em;
	border: solid 0.1em #c14419;
	background: #fff;
	color: #c14419;
	text-align: center;
    padding: 0.2em;
	display: block;
    font-size: 1.6em;
    font-weight: 700;
    letter-spacing: 0.1em;
}
.detail_main .schedule_table td{
    padding-left: 2.8em;
}
.detail_main .schedule_table td .tit{
	color: #c14419;
	font-size: 1.4em;
	font-weight: 800;
    margin-bottom: 0.4em;
}
.detail_main .schedule_table td p{
	font-weight: 600;
    letter-spacing: 0.16em;
    font-size: 1.05em;
    line-height: 1.4;
}


/****************************************
		レスポンシブ
*****************************************/
.pc{
	display: block;
}
.sp{
	display: none;
}

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


@media (min-width: 769px) {
	a:hover{
		transition: 0.3s;
		color: inherit;
		opacity: 0.7;
	}
	.link_btn:hover{
		color: #fff;
		background: #000;
		opacity: 1;
	}
	.more_btn:hover{
		opacity: 1 !important;
		color: #fff;
		background: #000;
	}
	.more_btn:hover span:after{
		transition: .3s;
		background: url(../images/arrow_wh.png) center/contain no-repeat;
	}
	.modal .modal_close:hover {
		opacity: 1;
		transition: .3s;
		background: #c14419;
	}
}
@media (max-width: 768px) {
	.pc{
		display: none !important;
	}
	.sp{
		display: block;
	}
	img.pc{
		display: none !important;
	}
	img.sp{
		display: inline-block !important;
	}
	body{
		font-size: 3.4vw;
		min-width: 0;
		-webkit-text-size-adjust: 100%;
	}

	.link_btn{
		font-size: 2.7vw;
    padding: 0.7em 1em 0.7em 1.3em;
    border: solid 0.5vw #000;
	}
	.link_btn.sp{
		display: inline-block;
	}
	header{
    padding: 3vw 3vw 3vw 3vw;
		position: fixed;
    align-items: flex-start;
	}
	.header_logo a{
    font-size: 2.5vw;
	}
	.header_logo img{
    width: 25vw;
	}
	.header_nav{
		padding-top: 0;
	}
	/****************************************
			ハンバーガーメニュー
	*****************************************/
	header .ham_menu{
		top: 0;
		left: 0;
		right: 0;
		pointer-events: none;
		position: static;
	}
	header .ham_menu .menu{
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		height: 100vh;
		box-sizing: border-box;
		font-size: 16px;
		letter-spacing: 0.2em;
		transition: 0.3s;
		z-index: +1;
		background: #c14419;
		color: #fff;
		overflow-x: auto;
		opacity: 0;
		pointer-events: none;
		align-content: center;
	}
	.menu_inner{
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
        padding: 12vw 12vw;
	}

	/* .nav_toggle */
	header .ham_menu .nav_toggle,
	header .ham_menu .nav_toggle .line {
		z-index: 100;
		position: relative;
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
		pointer-events: auto;
	}
	header .ham_menu .nav_toggle {
		margin-top: 3vw;
		appearance: none;
		cursor: pointer;
		pointer-events: auto;
		border: none;
		width: 12vw;
		height: 12vw;
		border: solid 0.6vw transparent;
		border-radius: 6vw;
	}
	header .ham_menu .nav_toggle .txt{
		font-size: 3vw;
		letter-spacing: 0.05em;
		color: #c14419;
		margin-top: 4vw;
		display: block;
	}
	header .ham_menu .nav_toggle .line,
	header .ham_menu .nav_toggle .line:before,
	header .ham_menu .nav_toggle .line:after{
		height: 0.3vw;
		background-color: #c14419;
		display: block;
		width: 9vw;
		margin: 0 auto;
	}
	header .ham_menu .nav_toggle .line{
		position: relative;
	}
	header .ham_menu .nav_toggle .line:before,
	header .ham_menu .nav_toggle .line:after{
		content: "";
		position: absolute;
		transition: all .4s;
	}
	header .ham_menu .nav_toggle .line:before{
    top: -3vw;
	}
	header .ham_menu .nav_toggle .line:after{
    top: 3vw;
	}

	/* .active */
	body.ham_active{
		overflow: hidden;
	}
	header .ham_menu.active .menu{
		opacity: 1;
		transition: 0.3s;
		pointer-events: auto;
	}
	header .ham_menu.active .nav_toggle{
		background: transparent !important;
		border: solid 0.6vw #fff;
		border-radius: 6vw;
		margin-top: 0;
	}
	header .ham_menu.active .nav_toggle .txt{
		display: none;
	}
	header .ham_menu.active .nav_toggle .line{
		visibility: hidden;
		background-color: transparent !important;
	}
	header .ham_menu.active .nav_toggle .line:before,
	header .ham_menu.active .nav_toggle .line:after{
		top: 0;
		visibility: visible;
		background-color: #fff;
	}
	header .ham_menu.active .nav_toggle .line:before{
		transform: rotate(45deg);
	}
	header .ham_menu.active .nav_toggle .line:after{
		transform: rotate(-45deg);
	}
	header .ham_menu .header_logo{
		color: #fff;
	}
	header .ham_menu .link_btn{
		border-color: #fff;
		background: #000;
		color: #fff;
        margin: 0 auto;
        display: block;
        text-align: center;
        font-size: 5vw;
	}
	.ham_menu_list{
		display: flex;
		flex-direction: column;
		gap: 12vw;
		margin: 10vw 0 10vw;
	}
	.ham_menu_list .tit{
    font-size: 6vw;
		font-weight: 800;
			margin-bottom: 0.4em;
	}
	.ham_menu_list .link_list{
		padding-left: 0.4em;
        font-size: 5vw;
	}
	.ham_menu_list .link_list li a{
    padding: 0.5em 0;
		font-weight: 800;
		letter-spacing: 0.05em;
	}
	.ham_menu_list .link_list li a:before{
		content: "-";
		display: inline-block;
	}

	/****************************************
			scroll
	*****************************************/
	body header:before{
		content: "";
		top: 0;
		left: 0;
		display: block;
		transition: .3s;
		width: 100%;
		height: 100%;
		position: absolute;
		z-index: -1;
		opacity: 0;
		transition: .3s;
		background-image: linear-gradient(180deg, #fff 0%, rgb(255 255 255 / 0%) 100%);
	}
	body header.headerscroll:before{
		opacity: 1;
		transition: .3s;
	}

	footer{
		text-align: center;
        padding: 5vw 6vw;
	}
	.footer_inner{
    flex-direction: column;
	}
	.footer_left{
        margin: 0 auto 3vw;
    font-size: 2.6vw;
	}
	.footer_left .footer_logo img{
    width: 25.3vw;
	}
	.footer_nav{
		text-align: left;
    gap: 3em;
	}
	.footer_nav .tit{
    font-size: 3.6vw;
	}
	.footer_nav .link_list{
		min-width: 0;
        font-size: 3.2vw;
	}
	.footer_nav .link_list li a{
    padding: 0.5em 0;
	}
	.sns_list{
    justify-content: center;
		gap: 4.5vw;
    margin-top: 8vw;
	}
	.sns_list li{
    width: 6vw;
	}
	footer small{
        font-size: 2.8vw;
        margin-top: 5vw;
    font-weight: 400;
	}

	.inner{ 
    width: 87%;
	}
	.sec_tit{
		text-align: center;
		font-size: 2.7vw;
	}
	.more_btn{
    font-size: 3vw;
		margin: 0;
    height: 2.6em;
	}
	.sec_intro .inner{
    width: 96%;
	}
	.cate_tab{
    font-size: 3.2vw;
    margin-top: -3.4em;
	}
	.cate_tab li a{
		background: #5d8960;
					height: 2.7em;
			border-radius: 0.6em;
	}
	.cate_tab li.active a:before,
	.cate_tab li.active a:after{
    border: 0.5em solid transparent;
    border-top: 0.7em solid #c14419;
        bottom: -0.9em;
	}
	.cate_tab li.active a:after{
    border-top-color: #fff;
        bottom: -1.2em;
	}
	.sec_intro .flex{
		display: block;
        width: 90%;
        margin: 0 auto;
	}
	.sec_intro .flex .txt{
		width: 100%;
    padding-bottom: 30vw;
	}
	.sec_intro .flex .txt .tit{
    font-size: 6.5vw;
    letter-spacing: 0.01em;
    margin-top: 10vw;
    margin-bottom: 0.1em;
	}
	.sec_intro .flex .txt p{
    font-size: 3vw;
	}
	.sec_intro .flex .txt .copy{
    font-size: 4.5vw;
    margin-bottom: 1.1em;
	}
	.sec_intro .flex .img{
		position: absolute;
		bottom: 0;
        right: -2%;
    width: 52%;
    margin-left: 0;
    margin-top: 0;
	}
	.sec_intro .item{
		right: auto;
        left: 1vw;
        bottom: -7.5vw;
        max-width: 46%;
	}

	.sec_job{
    padding: 9vw 0 11vw;
	}
	.job_list{
    margin-top: 21vw;
	}
	.job_list li{
		width: 100%;
    padding: 0 6vw 3vw;
    margin-bottom: 22vw;
	}
	.job_list li:last-of-type{
		margin-bottom: 0;
	}
	.job_list li .img{
    width: 85%;
    margin: -21.5vw auto 0;
	}
	.job_list li .tit{
    width: 68%;
    font-size: 5.5vw;
	}
	.job_list li p{
    font-size: 3.2vw;
    line-height: 1.7;
	}
	.job_list li .more_btn{
    width: 67%;
	}

	.sec_voice{
    padding: 7vw 0;
		background: url(../images/voice_bg_sp.webp) center/cover no-repeat;
	}
	.sec_voice .inner{
        width: 84%;
	}
	.sec_voice .sec_tit{
		text-align: left;
	}
	.sec_voice .copy{
    font-size: 4.8vw;
    line-height: 1.3;
    margin-top: 14vw;
    margin-bottom: 7vw;
	}
	.sec_voice .copy .big{
    font-size: 1.3em;
	}
	.sec_voice .flex{
		display: block;
	}
	.sec_voice .flex p{
    line-height: 1.5;
    font-size: 3.5vw;
	}
	.sec_voice .flex .more_btn{
        margin: 6.5vw auto 0;
	}
	.sec_voice .flex .more_btn span:after{
		display: none;
	}
	.modal .modal_close{
    top: -17.8vw;
    width: 16vw;
    height: 16vw;
	}
	.modal .modal_area_wrap{
		width: 86vw;
	}
	.modal .modal_area{
		border-radius: 5vw;
    padding: 0 0 0;
	}
	.detail_haed{
    flex-direction: column-reverse;
		margin-bottom: 6vw;
	}
	.detail_haed .img img{
    width: 100%;
    height: 58vw;
	}
	.detail_haed .txt{
		padding: 3vw 6vw 0;
	}
	.detail_haed .detail_tit{
		font-size: 2.7vw;
		padding: 0 0 3.5vw;
	}
	.detail_haed .txt p{
    font-size: 3.2vw;
	}
	.detail_main{
		padding: 0 0 7vw;
	}
	.detail_main .qa_wrap{
		display: block;
		padding: 0 6vw 0;
	}
	.detail_main .qa_wrap .img{
		width: 100%;
    margin-top: 6vw;
	}
	.detail_main .qa_wrap .txt{
		width: 100%;
	}
	.detail_main .qa_list li + li{
    margin-top: 7vw;
	}
	.detail_main .qa_list li .tit{
    font-size: 4.3vw;
	}
	.detail_main .qa_list li p{
    font-size: 2.8vw;
	}
	.detail_main .schedule{
    margin-top: 8vw;
		padding: 0 0 0;
	}
	.detail_main .schedule_tit{
    font-size: 5.4vw;
    padding: 0.2em;
	}
	.detail_main .schedule_table{
		margin: 0 6vw 0;
	}
	.detail_main .schedule_table th{
    background: url(../images/dot.png) center top / 0.28em repeat-y;
		height: 7em;
	}
	.detail_main .schedule_table th .time{
    font-size: 4.5vw;
	}
	.detail_main .schedule_table td{
    padding-left: 2.5em;
	}
	.detail_main .schedule_table td .tit{
    font-size: 3.5vw;
	}
	.detail_main .schedule_table td p{
    font-size: 2.9vw;
	}

	.sec_data{
    padding: 7vw 0;
    background: url(../images/bg2_sp.png) center / cover no-repeat;
	}
	.sec_data .inner{
        width: 80%;
	}

	.sec_part{
		padding: 0;
	}
	.sec_part .inner{
        padding: 7vw 9vw;
		width: 100%;
    border-radius: 0;
    flex-direction: row-reverse;
	}
	.sec_part .img{
		left: auto;
        right: 7vw;
        bottom: 17vw;
    width: 37%;
	}
	.sec_part .txt .tit{
    font-size: 5.3vw;
	}
	.sec_part .txt{
		width: 100%;
	}
	.sec_part .txt p{
        width: 57%;
        font-size: 3.2vw;
	}
	.sec_part .part_btn{
		z-index: 1;
		position: relative;
        width: 107%;
        margin-left: -2%;
    margin-top: 7vw;
	}
	
}
