/*
Theme Name: vvv2026
*/

@charset "utf-8";

body{
	color:#191919;
	font-family: futura-100,dnp-shuei-gothic-gin-std, sans-serif;
	font-size: 14px;
	line-height: 22px;
	word-break: break-all;
	overflow-x: hidden;
	text-align: justify;
	font-feature-settings: "palt";
	min-height: 100vh;
}

.bg{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: url(assets/image/common/bg.jpg)no-repeat;
	background-size: cover;
	pointer-events: none;
		z-index: 1;
}

body.on{
	overflow:hidden;
}
h1,h2,h3,h4{
	font-weight: normal;
}

ul{
	letter-spacing: -.40em; 
}

li{
	letter-spacing: normal; 
}
a {
	color:#191919;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	text-decoration:none;
	opacity:1;
	transition:all 0.4s;
}

img,
svg{
	max-width:100%;
	height:auto;
	font-size:0;
	vertical-align:top;
}

.clear{
	clear:both;
}

.clearfix_af:after{
	content: "";
	display: block; 
	height: 0; 
	font-size:0;    
	clear: both; 
	visibility:hidden;
}

.clearfix_bf:before{
	content: "";
	display: block; 
	height: 0; 
	font-size:0;    
	clear: both; 
	visibility:hidden;
}
.clearfix_af ,.clearfix_bf{
	display: inline-block;
} 
/* Hides from IE Mac */
* html .clearfix_af{
	height: 1%;
}
.clearfix_af ,.clearfix_bf{
	display:block;
}
/* End Hack */
.pagination{
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	line-height: 140%; /* 22.4px */
}
.pagination a{
	color:#B6B6B6;
}
.nav-links span,
.nav-links a{
	margin-left: 20px;
}
.op_ani{
	transition: all 0.4s;
}
.op_ani:hover{
	opacity: 0.6;
}
.fade_animat_out{
	opacity: 0;
	transition: 0.8s;
	transform:translateY(50px)
}

.fade_animat_in{
	opacity: 1;
	transform:translateY(0)
}
.white_area{
	background: #fff;
}
.text-center{
	text-align: center;
}
.container{
	max-width: 1440px;
	margin: auto;
	padding: 0 54px;
}
header{
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.10);
	box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.04);
	backdrop-filter: blur(25px);
	position: fixed;
	top: 16px;
	left: 24px;
	right: 24px;
	z-index: 999;
}
header.on{
	background: unset;
	box-shadow:unset;
	backdrop-filter:unset;
}
header .header-inner {
	padding: 11px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
	min-height: 62px;
}
/* nav */
header .global-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
header.on .global-nav {
  display: none;
}

header .global-nav ul {
  display: flex;
  align-items: center;
}

header .global-nav ul li{
	margin-right: 26px;
}

header .global-nav ul li:last-child{
	margin-right: 80px;
}

header .global-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

header .global-nav a:hover {
  opacity: 0.7;
}

/* actions */
header .header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  padding-right: 40px;
}
header.on .header-actions {
  display: none;
}

header .corp-link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

header .btn {
  min-width: 98px;
  height: 40px;
  padding: 0 20px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

header .btn:hover {
  opacity: 0.92;
}

header .btn-register {
	border-radius: 14px;
	background: rgba(0, 226, 197, 0.30);
	color: #fff;
}

header .btn-login {
	border-radius: 14px;
	background: rgba(255, 171, 113, 0.30);
	color: #fff;
}

/* hamburger */
header .menu-btn {
	top: 10px;
	right: 15px;
	position: absolute;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 999;
}

header .menu-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
	position: relative;
	transition: all 0.4s;
}

header .menu-btn.on span:nth-child(1) {
	transform: rotate(45deg);
	top: 4px;
}

header .menu-btn.on span:nth-child(2) {
	transform: rotate(-45deg);
	top: -3px;
}
header.black {
  background: #fff;
  backdrop-filter: none;
}

header.black h1.logo svg path {
  fill: #191919;
}

header.black .global-nav a,
header.black .corp-link {
  color: #191919;
}

header.black .menu-btn span {
  background: #191919;
}
header.black .btn-register {
	background: rgba(0, 226, 197, 0.30);
	color: #000;
}

header.black .btn-login {
	background: rgba(255, 171, 113, 0.30);
	color: #000;
}

main{
	position: relative;
	padding-top: 80px;
	z-index: 2;
}
.more{
	margin-top: 50px;
}
.more a{
	border-radius: 22px;
	border: 1px solid #191919;
	display: block;
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	line-height: 140%; /* 25.2px */
	width: 202px;
	margin: auto;
	padding: 16px;
}

.title-wrap h2.title{
	font-size: 64px;
	font-weight: 350;
	line-height: 140%; /* 89.6px */
}

.title-wrap .sub{
	font-size: 14px;
	font-weight: 500;
	line-height: 160%; /* 22.4px */
}
#about{
	color: #fff;
	position: relative;
	padding-bottom: 330px;
}

#about .about-head{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding: 0 42px;
}
#about .title-wrap{
	width: 32%;
}
#about .about-copy{
	width: 68%;
}
#about .about-copy p{
	font-size: 32px;
	font-weight: 600;
	line-height: 200%; /* 64px */
}
#about .btn{
	margin-top: 70px;
}
#about .btn a{
	display: block;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.10);
	box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.10);
	color:#FFF;
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	line-height: 140%; /* 25.2px */	
	padding: 16px 30px;
	margin: auto;
	width: 204px;
}

.slide_com {
	color: rgba(255, 255, 255, 0.20);
	text-align: center;
	font-size: 224px;
	font-weight: 500;
	line-height: 140%; /* 313.6px */
	position: absolute;
	bottom: 0;
	white-space: pre;
	left:0;
	text-align: center;
	z-index:1;
	display: flex;
	overflow-x: hidden;
}

.slide_com div{
	display: flex;
	animation: infinity-loop 60s infinite linear 0.1s both;
}
/* 無限ループアニメーション */
@keyframes infinity-loop {
  from {
    transform: translateX(0vw);
  }
  to {
    transform: translateX(-100%);
  }
}
#station{
	color: #fff;
	padding: 140px 0 160px 0;
}

#station ul.station_list{
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 3px;
	margin-top: 60px;
}
#station ul.station_list li p{
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	line-height: 160%; /* 22.4px */
	margin-top: 16px;
}
#station ul.station_list li .image {
	overflow: hidden;
}
#station ul.station_list li .image img {
	transition: all 0.4s;
}
#station ul.station_list li:hover .image img {
  transform: scale(1.05);
}

#event{
	padding-top: 140px;
	padding-bottom: 20px;
}

#report{
	padding-top: 140px;
	padding-bottom: 160px;
}

.item_list{
	display: flex;
	justify-content:space-between;
	flex-wrap: wrap;
	margin-top: 60px;
}

.item_list > li{
	width: 30.57%;
}

.item_list > li:nth-child(n + 4){
	margin-top: 30px;
}
.item_list > li .image {
	overflow: hidden;
}

.item_list > li .image img{
	object-fit: cover;
	aspect-ratio:16 / 9;
	transition: all 0.4s;
}
.item_list > li:hover .image img {
  transform: scale(1.05);
}

.item_list > li h3{
	font-size: 22px;
	font-weight: 400;
	line-height: 140%; /* 30.8px */
	margin-top: 8px;
}

.item_list > li p{
	color:#6B6B6B;
	font-size: 14px;
	font-weight: 500;
	line-height: 160%; /* 22.4px */
	margin-top: 8px;
}

ul.tag{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

ul.tag li{
	margin-right: 6px;
	font-size: 10px;
	font-weight: 500;
	line-height: 120%; /* 12px */
	border-radius: 8px;
	background: #FFFBE4;
	padding: 6px 10px;
	margin-top: 8px;
}
#news{
	position: relative;
	padding-top: 140px;
	padding-bottom: 160px;
}

#news .news-area{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding: 0 42px;
}
#news .title-wrap{
	width: 32%;
	color: #fff;
}
#news .news_article{
	width: 68%;
}
#news .news_article a{
	display: block;
	border-radius: 16px;
	border: 1px solid#fff;
	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(16px);
	padding: 32px 54px;
	transition: all 0.4s;
}
#news .news_article a:hover{
	background: rgba(255, 255, 255, 1);
}
#news .news_article a + a{
	margin-top: 8px;
}
#news .news_article a .news_head{
	color:#6B6B6B;
	font-size: 12px;
	font-weight: 500;
	line-height: 140%; /* 16.8px */
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
#news .news_article a .date{
	margin-right: 26px;
}
#news .news_article a h3{
	margin-top: 20px;
	font-size: 18px;
	font-weight: 600;
	line-height: 140%; /* 25.2px */
}
#news .news_article a p{
	margin-top: 20px;
	color: #6B6B6B;
	font-size: 12px;
	font-weight: 500;
	line-height: 140%; /* 16.8px */
}
ul.news_category{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
ul.news_category li{
	margin-right: 8px;
}
#recruitment{
	padding-top: 140px;
	padding-bottom: 110px;
	color: #fff;
}
#recruitment .recruit-area{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#recruitment .recruit-area .title-wrap{
	width: 49.24%;
}
#recruitment .recruit-area p.recruit_com{
	margin-top: 60px;
	font-size: 20px;
	font-weight: 600;
	line-height: 170%; /* 34px */
}
#recruitment .recruit-area .recruit_img{
	width: 42.24%;
}

#howto{
	color: #fff;
	padding: 80px 0;
}

#howto .title-wrap{
	margin-bottom: 60px;
}

#howto ul.howto_list{
	display: flex;
	justify-content: space-between;
}

#howto ul.howto_list li{
	width: 49.7%;
	border-radius: 32px;
	border: 1px solid #00E2C5;
	background: rgba(0, 226, 197, 0.30);
	backdrop-filter: blur(25px);
	padding: 50px 65px;
	position: relative;
}

#howto ul.howto_list li:last-child{
	border: 1px solid #FFAB71;
	background: rgba(255, 171, 113, 0.30);
	backdrop-filter: blur(25px);
}
#howto ul.howto_list li .number{
	position: absolute;
	top: -60px;
	left: 0;
	font-size: 32px;
	font-weight: 600;
	line-height: 200%; /* 64px */
}
#howto ul.howto_list li .title{
	font-size: 32px;
	font-weight: 600;
	line-height: 200%; /* 64px */
}
#howto ul.howto_list li p{
	margin-top: 32px;
	font-size: 14px;
	font-weight: 500;
	line-height: 160%; /* 22.4px */
}
#howto ul.howto_list li .btn{
	margin-top: 32px;
}
#howto ul.howto_list li .btn a{
	display: inline-block;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.10);
	box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.10);
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	line-height: 140%; /* 25.2px */
	color: #fff;
	padding: 16px 30px;
}
footer{
	position: relative;
	background: #000;
	z-index: 2;
	color: #fff;
	padding: 100px 0 55px 0;
}
footer a{
	color: #fff;
}
footer .footer_top_wrap{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
footer .footer_logo{
	max-width: 297px;
}
footer ul.footer_menu{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
footer ul.footer_menu li{
	margin-left: 120px;
}
footer ul.footer_menu li:first-child{
	margin-left: 0;
}
footer ul.footer_menu li .title{
	color:#B6B6B6;
	font-size: 12px;
	font-weight: 350;
	line-height: 140%; /* 16.8px */
	margin-bottom: 27px;
}
footer ul.footer_menu li.footer_link a{
	display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: 160%; /* 22.4px */
	margin-bottom: 16px;
}
footer ul.footer_menu li.contact_as a{
	display: block;
	border-radius: 16px;
	border: 1px solid #6B6B6B;
	padding: 20px 24px;
	max-width: 300px;
}
footer ul.footer_menu li.contact_as a + a{
	margin-top: 8px;
}
footer ul.footer_menu li.contact_as a h3{
	font-size: 14px;
	font-weight: 500;
	line-height: 160%; /* 22.4px */
}
footer ul.footer_menu li.contact_as a p{
	margin-top: 12px;
	color:#B6B6B6;
	font-size: 12px;
	font-weight: 500;
	line-height: 140%; /* 16.8px */
}
footer .footer_bottom_wrap{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 100px;
}
footer ul.footer_bottom a{
	color:#B6B6B6;
	font-size: 12px;
	font-weight: 500;
	line-height: 140%; /* 16.8px */
}
footer ul.footer_bottom a{
	padding-right: 16px;
	padding-left: 16px;
	position: relative;
}
footer ul.footer_bottom a:before{
	content: "|";
	position: absolute;
	top: 0;
	left: 0;
}
footer ul.footer_bottom a:first-child{
	padding-left: 0;
}
footer ul.footer_bottom a:first-child::before{
	display: none;
}
footer .copyright{
	color:#B6B6B6;
	font-size: 12px;
	font-weight: 500;
	line-height: 140%; /* 16.8px */
}
.h_area{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	overflow: scroll;
	background: url(assets/image/common/h_bg.jpg)no-repeat center center;
	background-size: cover;
	z-index: 99;
	pointer-events: none;
	transition: all 0.4s;
	opacity: 0;
	padding: 140px 54px 20px 54px;
	color: #fff;
}
.h_area {
  /* Firefox用 */
  scrollbar-width: none;
  /* IE/Edge用 */
  -ms-overflow-style: none;
}

/* Chrome/Safari/Edge用 */
.h_area::-webkit-scrollbar {
  display: none;
}
.h_area a{
	color: #fff;
}

.h_area.on{
	opacity: 1;
	pointer-events: unset;
}
.h_area .title{
	color: #E6E6E6;
	font-size: 12px;
	font-weight: 350;
	line-height: 140%; /* 16.8px */
	margin-bottom: 20px;
}
.h_area ul.h_menu + .title{
	margin-top: 60px;
}
.h_area ul.h_menu > li{
	margin-bottom: 20px;
	display:flex;
	justify-content: flex-start;
}
.h_area ul.h_menu > li > a{
	min-width: 105px;
}
.h_area ul.h_menu > li ul.child{
	margin-left: 20px;
	display:flex;
	justify-content: flex-start;
}
.h_area ul.h_menu > li ul.child li{
	margin-right: 24px;
}
.h_area .bottom_wrap{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 100px;
}
.h_area ul.bottom_menu a{
	color:#B6B6B6;
	font-size: 12px;
	font-weight: 500;
	line-height: 140%; /* 16.8px */
}
.h_area ul.bottom_menu a{
	padding-right: 16px;
	padding-left: 16px;
	position: relative;
}
.h_area ul.bottom_menu a:before{
	content: "|";
	position: absolute;
	top: 0;
	left: 0;
}
.h_area ul.bottom_menu a:first-child{
	padding-left: 0;
}
.h_area ul.bottom_menu a:first-child::before{
	display: none;
}
.h_area .copyright{
	color:#B6B6B6;
	font-size: 12px;
	font-weight: 500;
	line-height: 140%; /* 16.8px */
}
#ex{
	background: #000;
	color: #fff;
	padding: 150px 0;
}
#ex ul.ex_list{
	max-width: 960px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}
#ex ul.ex_list + ul{
	margin-top: 10px;
}
#ex ul.ex_list li.image_area{
	width: 33.3%;
}
#ex ul.ex_list li.text_area{
	width: 54.1%;
}
#ex ul.ex_list li dl{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
#ex ul.ex_list li dl dt{
	width: 80px;
	font-size: 32px;
	font-weight: 350;
	line-height: 200%; /* 64px */
}
#ex ul.ex_list li dl dd{
	flex: 1;
}
#ex ul.ex_list li dl dd h3{
	font-size: 32px;
	font-weight: 350;
	line-height: 200%; /* 64px */
}
#ex ul.ex_list li dl dd h3 span{
	display: block;
	color:#B6B6B6;
	font-size: 14px;
	font-weight: 500;
	line-height: 160%; /* 22.4px */
}
#ex ul.ex_list li dl dd p{
	margin-top: 70px;
	font-size: 14px;
	font-weight: 500;
	line-height: 160%; /* 22.4px */
}
dl.cate_list{
	display: flex;
	flex-wrap: wrap;
	margin-top: 40px;
}
dl.cate_list + dl{
	margin-top: 16px;
}
dl.cate_list dt{
	width: 80px;
	color:#00E2C5;
	font-size: 14px;
	font-weight: 500;
	line-height: 160%; /* 22.4px */
}
dl.cate_list dd{
	flex: 1;
}
dl.cate_list dd ul{
	display: flex;
	flex-wrap: wrap;
}
dl.cate_list dd ul li{
	margin-right: 20px;
	margin-bottom: 8px;
}
dl.cate_list dd ul li.act a{
	color: #191919;
}
dl.cate_list dd ul li a{
	color:#B6B6B6;
	font-size: 14px;
	font-weight: 500;
	line-height: 160%; /* 22.4px */
}
dl.cate_list dd ul li:last-child{
	margin-right: 0;
}
.back{
	color:#6B6B6B;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	line-height: 160%; /* 22.4px */
	margin-top: 32px;
}
.position-area{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.position-area .title-wrap{
	width: 28.52%;
}
.position-area .position_detail{
	width: 71%;
}
.position-area .position_detail dl{
	border-radius: 32px;
	border: 1px solid #fff;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(25px);
	padding: 54px 32px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}
.position-area .position_detail h3{
	font-size: 32px;
	font-weight: 600;
	line-height: 140%; /* 44.8px */
}
.position-area .position_detail span{
	display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: 160%; /* 22.4px */
}
.position-area .position_detail p{
	margin-top: 16px;
}
.position-area .position_detail dl a{
	color: #fff;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.10);
	box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.10);
	display: inline-block;
	padding: 16px 40px;
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	line-height: 140%; /* 25.2px */
}
.position-area .position_detail dl + dl{
	margin-top: 6px;
}

@media only screen and (min-width: 1000px) {


}

@media (max-width: 1280px) {
	header .global-nav{
		display: none;
	}
}

@media (max-width: 1100px) {
	footer .footer_top_wrap{
		display: block;
	}
	footer ul.footer_menu{
		margin-top: 30px;
	}
}
@media (max-width: 999px) {


}



@media (max-width: 840px) {
	.container{
		padding: 0 24px;
	}
	header .header-inner{
		min-height: unset;
	}
	header .header-actions{
		display: none;
	}
	.title-wrap h2.title{
		font-size: 45px;
	}
	footer .copyright{
		margin-top: 30px;
	}
	#about .about-head{
		padding: 0;
		display: block;
	}
	#about .title-wrap,
	#about .about-copy{
		width: 100%;
	}
	#about .about-copy p{
		margin-top: 20px;
		font-size: 30px;
	}
	.slide_com{
		font-size: 100px;
	}
	#about{
		padding-bottom: 150px;
	}
	#event{
		padding: 60px 0;
	}
	.item_list > li h3{
		font-size: 18px;
	}
	#report{
		padding: 60px 0;
	}
	#news{
		padding: 60px 0;
	}
	#news .news-area{
		padding: 0;
	}
	#news .title-wrap{
		width: 20%;
	}
	#news .news_article{
		width: 80%;
	}
	#recruitment{
		padding: 60px 0;
	}
	#howto ul.howto_list{
		display: block;
	}
	#howto ul.howto_list li{
		width: 100%;
	}
	#howto ul.howto_list li + li{
		margin-top: 80px;
	}
	header .menu-btn {
		top: 2px;
	}
	.h_area .copyright{
		margin-top: 30px;
	}
	#station{
		padding: 60px 0;
	}
	#ex{
		padding: 60px 0;
	}
	dl.cate_list dd ul li{
		margin-bottom: 10px;
	}


}
@media only screen and (min-width: 600px) {
	.sp_only{
		display:none !important;
	}
}

@media (max-width: 599px) {
	.pc_only{
		display:none !important;
	}
	#about .about-copy p{
		font-size: 17px;
	}
	#about .btn a{
		font-size: 18px;
		padding: 17px 30px;
	}
	#station ul.station_list{
		grid-template-columns: repeat(2, 1fr);
	}
	#station ul.station_list li{
		margin-bottom: 20px;
	}
	#station ul.station_list li p{
		margin-top: 8px;
	}
	.item_list{
		margin-top: 30px;
	}
	.item_list > li{
		width: 100%;
	}
	.item_list > li:nth-child(n + 2){
		margin-top: 30px;
	}
	.more{
		margin-top: 30px;
	}
	.more a{
		font-size: 18px;
        padding: 17px 30px;
	}
	#event{
		padding: 30px 0;
	}
	#report{
		padding: 30px 0;
	}
	#news .news-area{
		display: block;
	}
	#news .title-wrap{
		width: 100%;
	}
	#news .news_article{
		width: 100%;
		margin-top: 20px;
	}
	#news .news_article a{
		padding: 15px 20px;
	}
	#recruitment .recruit-area{
		display: block;
	}
	#recruitment .recruit-area .title-wrap{
		width: 100%;
	}
	#recruitment .recruit-area .recruit_img{
		width: 100%;
	}
	#howto ul.howto_list li{
	padding: 25px;
}

	#howto ul.howto_list li .title{
		font-size: 24px;
	}
	#howto ul.howto_list li p{
		margin-top: 16px;
	}
	#recruitment .recruit-area p.recruit_com{
		margin-top: 30px;
		font-size: 17px;
	}
	footer ul.footer_menu{
		display: block;
	}
	footer ul.footer_menu li{
		margin-left: 0;
	}
	footer ul.footer_menu li .title{
		margin-top: 30px;
		margin-bottom: 12px;
	}
	footer .footer_bottom_wrap{
		margin-top: 50px;
		display: block;
	}
	footer ul.footer_bottom a{
		white-space: nowrap;
		display: block;
		padding: 0;
		padding-top: 10px;
	}
	footer ul.footer_bottom a:before{
		display: none;
	}
	header{
		left: 10px;
		right: 10px;
	}
	header .header-inner{
		padding: 10px;
	}
	header .menu-btn {
		top: 0;
		right: 10px;
	}
	.h_area{
		padding: 70px 24px 20px 24px;;
	}
	.h_area ul.h_menu > li{
		display: block;
	}
	.h_area .bottom_wrap{
		margin-top: 50px;
		display: block;
	}
	.h_area ul.bottom_menu a{
		white-space: nowrap;
		display: block;
		padding: 0;
		padding-top: 10px;
	}
	.h_area ul.bottom_menu a:before{
		display: none;
	}
	.h_area ul.h_menu > li ul.child{
		display: block;
	}
	.h_area ul.h_menu > li ul.child li{
		margin-top: 5px;
	}
	#howto{
		padding: 30px 0;
	}
	#station{
		padding: 30px 0;
	}
	.position-area{
		display: block;
	}
	.position-area .title-wrap{
		width: 100%;
	}
	.position-area .position_detail{
		width: 100%;
		margin-top: 30px;
	}

	#ex ul.ex_list{
		flex-direction: column-reverse;
	}
	#ex ul.ex_list li + li{
		margin-top: 50px;
	}
	#ex ul.ex_list li.image_area{
		width: 100%;
		margin-top: 30px;
	}
	#ex ul.ex_list li.image_area img{
		width: 100%;
	}
	#ex ul.ex_list li.text_area{
		width: 100%;
		margin-top: 0;
	}
	#ex ul.ex_list li dl{
		display: block;
	}
	#ex ul.ex_list li dl dd p{
		margin-top: 30px;
	}
	#ex ul.ex_list li dl dd h3{
		font-size: 24px;
	}

}
