/*共通*/
*{
	margin:0;
	padding:0;
}

:root{
	scroll-padding: 80px;
}

button {
	margin: 0;
	padding: 0;
	outline: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	vertical-align: middle;
	text-align: inherit;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}

body {
	width:100%;
	line-height:150%;

}

#contents h1 {
	font-size:120%;
}

#contents h2{
	border-bottom:2px solid #b8964c;
	font-size:115%;
	margin:3em -1em 2em -1em;
	padding:0 2em 12em 0;
	line-height:120%;
}

#contents h3{
	font-size: 108%;
	margin: 1em 0 0.5em 0;
	font-weight:bold;
}

#contents p,
#contents li,
#contents dl dt,
#contents dl dd,
#contents tr th,
#contents tr td{
	line-height:1.7;
}

#contents h1{
	text-align:center;
	font-size:129%;
	background:url(../images/bg_h1.png) center bottom no-repeat;
	padding-bottom:1em;
	margin-bottom:2em;
}

#contents ul li{
	margin-bottom:1em;
}

/*メニュー*/
#common_header {
	width: 100vw;
	position: fixed;
	top:0;
	left:0;
	background-color:#FFF;
	z-index:100;
}

#common_header .menu_pc {
	display:none;
}

#common_header .menu_mobile {
  /* メニューの位置マイナス指定で画面外に */
 	position: fixed;
	right: -100%;
	width: 100%;
	height: 90vh;
	/* メニューを縦に */
	display: flex;
	flex-direction: column;
	color: #FFF;
	background-color: #000;
	transition: .3s;
	z-index: 900;
}

#common_header #logo img{
	width:70%;
}

#common_header #menu_mobile a {
	text-decoration: none;
}

#common_header #menu_mobile a:hover {
	text-decoration: none;
}

#common_header .menu_list {
	width: 100%;
	height: 100%;
	/* メニューテキスト位置をリスト内中心に */
	display: flex;
	justify-content: left;
	align-items: left;
	border-bottom: 1px solid #666;
	background-color: #000;
	vertical-align: middle;
	padding: 1em 1em;
}

#common_header a {
	text-decoration: none;
}

#common_header a:hover {
	text-decoration: none;
}

#common_header li.menu_list {
	color: #FFF;
	text-decoration: none;
}

#common_header .menu_list:hover{
	background-color: #333;
	text-decoration: none;
}

#common_header .menu_btn {
	/* ボタンの配置位置  */
	position: fixed;
	top: 0.5em;
	right: 0.5em;
	/* ボタンの大きさ  */
	width: 25px;
	height: 40px;
	/* 最前面に */
	z-index: 999;
}

#common_header .menu_btn:hover {
	cursor: pointer;
}

#common_header .menu_mobile .rockIcon {
	max-width: 100%; 
	width: 1em;
	height: 1em;
	margin-top: 2px;
}

/***** 真ん中のバーガー線 *****/
#common_header .menu_btn_line {
	display: block;
	position: relative;  /* バーガー線の位置基準として設定 */
	width: 100%;  /* 線の長さと高さ */
	height: 2px;
	background-color: #000;  /* バーガー線の色 */
/*	transition: .2s;*/
}

/****** 上下のバーガー線 *****/
#common_header .menu_btn_line::before,
#common_header .menu_btn_line::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #000;
}
#common_header .menu_btn_line::before {
	/* 上の線の位置 */
	transform: translateY(-8px);
}
#common_header .menu_btn_line::after {
	/* 下の線の位置 */
	transform: translateY(8px);
}

/***** メニューオープン時 *****/
#common_header .menu_btn_line.open {
	/* 真ん中の線を透明に */
	background-color: transparent;
}
#common_header .menu_btn_line.open::before , .btn-line.open::after {
	content: "";
	background-color: #333;
}
#common_header .menu_btn_line.open::before {
	/* 上の線を傾ける */
	transform: rotate(45deg);
}
#common_header .menu_btn_line.open::after {
	/* 上の線を傾ける */
	transform: rotate(-45deg);
}

#common_header .menu_mobile.open {
	right: 0;
}

#contents p {
	margin-bottom: 1em;
}

/*トップぺージ*/
#include_header {
	display:block;
}

/*スライダー関連*/
#slider {
	height:100%;
}

#slider .sp-layer.sp-static {
	width: 100%;
	height: calc(100% - 20px);
}

#slider .sp-image {
	width: 100%;
	height: auto;
	clip-path: inset(0 0 20px 0);
}

#slider .sp-buttons {
	position: absolute !important; 
	bottom: 30px !important;
	left: 50% !important; 
	transform: translateX(-50%); /* 中央揃え */
	z-index: 30;
}

#slider .slider_text {
	width: 100%;
	height: 50%;
	box-sizing: content-box;
	position: absolute !important; 
	top:50% !important;
	left: 50% !important; 
	transform: translateX(-50%); /* 中央揃え */
	z-index: 50;
}

.slider_text p.img_catch {
	text-align: center;
	top: 50%;
	object-fit: contain;
}

.slider_text p.img_catch img {
	width: 95%;
	height: auto;
}

.slider_text p.photo_copy {
	text-align: right;
	color: #fff;
	line-height: 1.8;
	position: absolute;
	right: 1%;
	bottom: 0%;
	margin-bottom: 50px;
	font-size: 60%;
}

.sp-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/*コンテンツ*/
#header  {
	display: none;
}

#fixedheader_none {
	display: none;
}

#wrapper .nav_wrapper nav {	
	display: none;
}

#wrapper {
	position: relative;
	z-index: 90;
	transform: translate3d(0,0,0);
}

#white_wrap {
	background-color: #fff;
	width: 100%;
}

#contents_wrapper {
	width: 100vw;
	margin: 0 auto;
	overflow: hidden;
}

#contents {
	width: 100vw;
	background-color: #fff;
	clear: both;
	overflow: hidden;
	margin: 0 auto;
}

#news h3 {
	background: url(../images/top/tit_news.png) no-repeat center center;
	width: 100%;
	height: 50px;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}

#news #news_list {
	margin: 0 auto;
	width: 95%;
}

#news #news_list　.list {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

#news_list .list dt,
#news_list .list dd {
	box-sizing: border-box;
}

#news_list .list dt {
	color: #9e8040;
	font-size: 87.5%;
	padding: 0.5em 0;
	width: 6em;
	float: left;
	clear: both;
	position: relative;
	letter-spacing: 0;
	line-height: 2;
}

#news_list .list dd  {
	padding: 0.5em 1em 0.5em 5em;
	line-height: 1.5;
	margin-bottom: 1em;
	letter-spacing: 0;
}

#news_list  dt.new:before {
	content: "NEW";
	font-size: 80%;
	color: #fff;
	background-color: #9E7F3A;
	padding: 1px;
	position: absolute;
	width: 6em;
	line-height: 1.2;
	top: -1ex;
	text-align: center;
}

#news_list  dd {
	padding: 0.5em 1em 0.5em 5em;
	line-height: 1.5;
	margin-bottom: 1em;
	letter-spacing: 0;
}

#news_list .list dd:hover{
	background-color: #eee;
}

#news_list .list dd a{
	text-decoration: none;
}

#news_list .btn_news {
	text-align: center;
	width: 100%;
}

#news_list .btn_news a {
	display: block;
	padding: 15px 0;
	color: #fff;
	text-decoration: none;
	background-color: #9e8040;
	font-weight: bold;
}

#right_btn {
	width: 95%;
	margin: 2em auto;
}

#right_btn div {
	margin-bottom: 10px;
}

#right_btn a {
	display: block;
/*	border: 1px #e8e8e8 solid; */
	border: 1px #ddd solid; 
	border-bottom: 1px #aaa solid;
	border-right: 1px #ccc solid;

	height: 120px;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	box-sizing: border-box;
	background-color: #fff;
	margin: 0.2ex auto;
}

#right_btn a:hover {
	border: 2px #000 solid;
}

#right_btn .condition a {
	background-image: url(../images/top/condition.png);
}

#right_btn .whethernews a {
	background-image: url(../images/top/whethernews.png);
}

#right_btn .recruitment a {
	background-image: url(../images/top/recruitment.png);
}

#right_btn .stop-harassment a{
	background-image:url(../images/top/stop-harassment.png);
}

#gallery {
	overflow: hidden;
	background-color: #fff;
	margin-bottom: 2em;
}

#gallery a {
	display: block;
	margin: 0 auto;
	width: 100%;
}

#gallery img {
	vertical-align: bottom;
	width: 100%;
}

/*フッター*/
footer{
	background-color: #000;
	color: #fff;
	padding: 1em 0 2em 0;
}

footer .photoby{
	color: #fff;
	text-align: right;
	padding: 0px 1em 0 0;
	margin-bottom: 2em;
}

footer ul{
	overflow: hidden;
	text-align: center;
	margin: 0 auto 2em auto;
	display: flex;
	flex-direction: column;
}

footer ul li{
	display: inline;
	list-style: none;
	margin: 0 1em;
}

footer ul li a{
	text-decoration: none;
	color: #fff;
}

footer p{
	color: #fff;
	text-align: center;
}

footer p span{
	display: block;
}