@charset "utf-8";
/* CSS Document */

/* ===================================
ヘッダー
=================================== */

.fv{
	position: relative;
}

.fv::before{
	content: "";
	width: 50vw;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	background: #6e968d;
}

.fv::after{
	content: "";
	width: 50vw;
	height: 50px;
	position: absolute;
	top: 123px;
	right: 0;
	z-index: -1;
	background: #6e968d;
}

.fv .fv_box{
	position: relative;
		max-width: 1100px;
	width: 100%;
	height: 282px;
	margin: 0 auto;
	overflow-x: hidden;
}

	.fv .fv_box img{
		    height: 100%;
    width: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    overflow-x: hidden;
	}

.fv .fv_box h1{
	    position: absolute;
    top: 35%;
    left: 4.5%;
}

.fv .fv_box h1 a{
	font-size: 40px;
	transition: 0.3s;
}

.fv .fv_box h1 a:hover{
	opacity: 0.7;
	transition: 0.3s;
}

.fv .fv_box h1 span{
	    display: block;
    padding-top: 27px;
    color: #396e62;
}

/* 言語選択
==============================　*/

.fv .fv_box nav{
	position: absolute;
	top: 0;
	right: 55px;
	padding: 18px 45px;
	background: #210701;
}

.fv .fv_box nav ul{
	display: flex;
	justify-content: space-between;
}

.fv .fv_box nav ul li{
	font-size: 14px;
	color: #fff;
}

.fv .fv_box nav ul li.current{
	text-decoration: underline;
}

.fv .fv_box nav ul li:nth-child(2){
	margin: 0 13px;
	padding: 0 13px;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
}

.fv .fv_box nav ul li a{
	color: #fff;
	transition: 0.3s;
}

.fv .fv_box nav ul li a:hover{
	text-decoration: underline;
	transition: 0.3s;
}

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

	
	
/* 言語選択
==============================　*/
	
	.fv .fv_box nav{
		right: 20px;
	}
	
	
}

@media screen and (max-width: 1000px) and (min-height: 901px){
	
	.fv .fv_box img{
		    right: 0;
    left: initial;
    transform: initial;
	}
}


@media screen and (max-width: 900px) {
	
		.fv::before{
	height: 35px;
}

.fv::after{
	height: 35px;
	top: 233px;
}

	.fv .fv_box{
		overflow-x: hidden;
		height: 344px;
	}
	
			.fv .fv_box h1{
		top: 80px;
	}
	
}


@media screen and (max-width: 600px) {
	
	
	.fv .fv_box h1 a{
		font-size: 30px;
	}
	
	.fv .fv_box h1 span{
		padding-top: 10px;
		font-size: 18px;
		line-height: 1.8;
	}
	
/* 
下層用ヘッダー
=================================== */
	
	.fv2{
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		height: 60px;
		padding: 0 20px;
		border-bottom: 1px solid #6e968d;
		box-sizing: border-box;
		background: url("../img/bg_fv_sp.jpg") no-repeat right 30px top/40%, #fff;
		z-index: 9;
	}
	
	.fv2 h1 a{
		font-size: 22px;
		line-height: 60px;
	}
	
/* 言語選択
==============================　*/
	
	.fv .fv_box nav{
		right: inherit;
    left: 0;
    padding: 23px 26px;
	}

}

/* ===================================
スマホバーガー
=================================== */

#nav-wrapper{
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10;
}

/* 
ハンバーガーメニュー
=================================== */
.hamburger {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 300;
    background: #6e968d;
    padding: 0 20px;
    box-sizing: border-box;
}

.hamburger span.line {
    position: absolute;
    top: 26px;
    width: 38px;
    height: 2px;
    background: #fff;
    left: 12px;
	transition: 0.3s;
}

.hamburger span:nth-child(2).line {
  top: 34px;
}


/*ハンバーガーがクリックされたら*/
.nav-open .hamburger span.line {
  transform: rotate(-45deg);
	top: 30px;
	transition: 0.3s;
}


.nav-open .hamburger span:nth-child(2).line{
  transform: rotate(45deg);
}


/* 
スマホナビゲーションメニュー(ハンバーガー内)
=================================== */
/*ハンバーガーがクリックされる前はWindow右側に隠す*/
.sp-nav {
  position: fixed;
  right: -100%; 
  top: 0;
	bottom: 0;
  width: 84%; 
  height: 100vh;
  padding: 80px 0 20px;
  background-color: #6e968d;
  transition: all 0.3s;
  z-index: 10;
  overflow-y: auto;
	box-sizing: border-box;
	color: #fff;
	font-size: 14px;
}

.sp-nav a{
	color: #fff;
}

/*ハンバーガーがクリックされたら右からスライド*/
.nav-open .sp-nav {
  right: 0;
}

.sp-nav>ul>li{
	margin-bottom: 20px;
    padding: 0 20px 20px;
    border-bottom: 1px solid #cecece;
}

.sp-nav>ul>li:last-child{
	border-bottom: none;
}

.sp-nav>ul>li ul.lang_list{
	display: flex;
}

.sp-nav>ul>li ul.lang_list li.current{
	text-decoration: underline;
}

.sp-nav>ul>li ul.lang_list li:nth-child(2){
	    margin: 0 13px;
    padding: 0 13px;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

.sp-nav>ul>li p{
	padding-bottom: 15px;
}

.sp-nav>ul>li ul.cat_list li a{
	    position: relative;
    display: block;
    margin-bottom: 10px;
    padding-left: 16px;
    font-size: 14px;
    line-height: 1.5;
    transition: 0.3s;
}

.sp-nav>ul>li ul.cat_list li a::before{
	content: ">";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
    font-size: 15px;
    color: #fff;
}


/* 
ハンバーガーメニュー解除bg
=================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
}

/*ハンバーガーメニューが開いたら表示*/
.nav-open .black-bg {
  opacity: 0.3;
  visibility: visible;
}




/* ===================================
フッター
=================================== */

footer .footer_box{
	background: url("../img/bg_footer.jpg") no-repeat center center/cover;
	padding: 115px 20px;
}

footer .footer_box div{
	display: block;
	margin: 0 auto;
	max-width: 540px;
	width: 100%;
	background: rgba(255,255,255,0.80);
	padding: 30px 10px 40px;
	box-sizing: border-box;
}

footer .footer_box div p{
	font-size: 18px;
	text-align: center;
	line-height: 1.3;
}

footer .footer_box div a{
	transition: 0.3s;
}

footer .footer_box div a:hover{
	transition: 0.3s;
	opacity: 0.7;
}

footer .footer_box div a.f_contact{
	display: block;
	max-width: 260px;
	width: 100%;
	margin: 30px auto 45px;
	padding: 19px 10px;
	box-sizing: border-box;
	background: #210701;
	color: #fff;
	font-size: 18px;
	letter-spacing: 0.2em;
	text-align: center;
	line-height: 1.3
}

footer .footer_box div a.f_contact img{
	display: inline-block;
	width: 25px;
	padding-right: 15px;
}

footer .footer_box div a.f_fb{
	display: block;
	margin: 0 auto;
	width: 50px;
}

footer small{
	display: block;
	padding: 33px 20px;
	font-size: 11px;
	letter-spacing: 0.2em;
	text-align: center;
}


@media screen and (max-width: 600px) {
	
	footer .footer_box{
		padding: 30px 40px 130px;
	}
	
	footer .footer_box div{
		padding: 20px 10px 17px;
	}
	
	footer .footer_box div p{
		font-size: 16px;
	}
	
	footer .footer_box div a.f_contact{
		margin: 20px auto;
	}
	
	footer small{
		padding: 24px 20px;
	}	
	
}

@media screen and (max-width: 320px) {

	footer .footer_box div p{
		font-size: 14px;
	}
	
	footer .footer_box div a.f_contact{
		font-size: 16px;
	}
	
}