@charset "utf-8";

/* @import "reset.css"; */


/*--------------------------------------------------
  Font
--------------------------------------------------*/

/*--adobe_font--*/
.shingo_l{
	font-family: a-otf-ud-shin-go-pr6n, sans-serif;
    font-family: sans-serif;
	font-weight: 300;
	font-style: normal;
}
.shuei_l{
	font-family: dnp-shuei-mgothic-std, sans-serif;
    font-family: sans-serif;
	font-weight: 400;
	font-style: normal;
}
.shuei_b{
	font-family: dnp-shuei-mgothic-std, sans-serif;
    font-family: sans-serif;
	font-weight: 600;
	font-style: normal;
}
.futura_m{
	font-family: futura-pt, sans-serif;
    font-family: sans-serif;
	font-weight: 500;
	font-style: normal;
}
.tb_b{
	font-family: tbudgothic-std,sans-serif;
    font-family: sans-serif;
	font-weight: 700;
	font-style: normal;
}
.tb_h{
	font-family: tbudgothic-std,sans-serif;
    font-family: sans-serif;
	font-weight: 900;
	font-style: normal;
}
.tb_r{
	font-family: tbudgothic-std,sans-serif;
    font-family: sans-serif;
	font-weight: 400;
	font-style: normal;
}


/*--------------------------------------------------
  Navi
--------------------------------------------------*/

#header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 72px;
    z-index: 100;
}
.global-nav {
	position: fixed;
	/*right: -320px;*/
	top: -100vh;
	width: 100%;
	height: 100vh;
	/*background-color: #fff;*/
	transition: all .6s;
	z-index: 200;
	opacity:0;
	overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}
.hamburger {
	position: absolute;
	right: 0;
	top: 0;
	width: 57px; /* クリックしやすいようにちゃんと幅を指定する */
	height: 51px; /* クリックしやすいようにちゃんと高さを指定する */
	cursor: pointer;
	z-index: 300;
}
.v_logo{
	max-width:190px;
	position: absolute;
	left: 20px;
	top: 15px;
	z-index: 300;
}
.nav_wrap{
	height:72px;
}
.global-nav__list {
	margin: 0;
	padding: 3rem 0;
	list-style: none;
	background:#FFF39B;
}
.global-nav__item {
	text-align: center;
	padding: 0 14px;
}
.global-nav__item a {
	display: block;
	padding: 1.5rem 0;
	/*border-bottom: 1px solid #eee;*/
	text-decoration: none;
	color: #111;
}
.global-nav__item a:hover {
	/*background-color: #eee;*/
	color: rgba(0,0,0,0.5);
}
.hamburger__line {
	position: absolute;
	right: 20px;
	width: 36px;
	height: 2px;
	background-color: #111;
	transition: all .6s;
}
.hamburger__line--1 {
	top: 20px;
}
.hamburger__line--2 {
	top: 32px;
}
.hamburger__line--3 {
	top: 44px;
}
.black-bg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: 100;
	/*background-color: #fff;*/
	opacity: 0;
	visibility: hidden;
	transition: all .6s;
	cursor: pointer;
}
/* 表示された時用のCSS */
.nav-open #header {
	background-color: #fff;
	box-shadow: 0 2px 6px rgba(0,0,0,.16);
}
.nav-open .global-nav {
	top: 0;
	padding-top: 72px;
	opacity:1;
}
.nav-open .nav_wrap{
	background:#fff;
}
.nav_wrap.white{
	background-color:#fff;
	transition:0.1s;
}
.nav-open .black-bg {
	opacity: 1;
	/*opacity: .8;*/
	visibility: visible;
}
.nav-open .hamburger__line--1 {
	transform: rotate(-45deg);
	top: 30px;
}
.nav-open .hamburger__line--2 {
	width: 0;
	right: 75%;
	transform: rotate(-90deg);
	opacity:0;
}
.nav-open .hamburger__line--3 {
	transform: rotate(45deg);
	top: 30px;
}


@media screen and (max-width:799px) {
	/*SP-Tablet*/

	.v_logo {
	    max-width: 160px;
	    position: absolute;
	    left: 20px;
	    top: 17px;
	    z-index: 300;
	}
	.global-nav__item {
	    font-size: 1.3rem;
	    height: calc( 100vh / 10);
	}
	.black-bg {
		/*background-color: #FFF39B;*/
	}
	.global-nav__list {
		height: calc(100vh - 72px);
	    box-sizing: border-box;
	}
}



/*--------------------------------------------------
  Style
--------------------------------------------------*/

body{
	font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-size:16px;
	line-height:1.5;
}
img{
	width:100%;
	height:auto;
}

.flex{
	display: flex;
	flex-wrap:wrap;
	align-items: flex-start;
}
.pc_only{
	display: initial;
}
.sp_only{
	display: none;
}
.box{
	width:800px;
	margin-left:auto;
	margin-right:auto;
}
#top_title{
	text-align:center;
	color:#fff;
	padding:10rem 0 5rem;
}
#top_title h2{
	font-family: futura-pt, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size:2.5rem;
}
#top_title h3{
	font-family: dnp-shuei-mgothic-std, sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size:1.75rem;
}

@media screen and (max-width:799px) {
	/*SP-Tablet*/

	.box{
		width: 90%;
		margin-left:5%;
	}
	.sp_only{
		display: none;
	}
}

@media screen and (max-width:479px) {
	/*SP*/

	.pc_only{
		display: none;
	}
	.sp_only{
		display: initial;
	}
	#top_title{
		padding:7rem 0 3rem;
	}
}

/*--------------------------------------------------
  Footer
--------------------------------------------------*/
footer{
	background:#F7F7F7;
}
footer .list{
	justify-content:space-between;
	font-size:0.75rem;
	font-family: dnp-shuei-mgothic-std, sans-serif;
	font-weight: 400;
	font-style: normal;
}
footer a{
	color:#000;
	transition:0.2s;
}
footer a:hover{
	opacity:0.5;
}
footer .footer_menu{
	padding:2rem 0 3rem;
}
footer .spread img{
	max-width:150px;
}
footer .copyright{
	font-size:0.6rem;
}
footer .logo_copy{
	align-items:flex-end;
	padding-bottom:1rem;
}

@media screen and (max-width:799px) {
	/*SP-Tablet*/

}

@media screen and (max-width:479px) {
	/*SP*/
	footer .list {
	    justify-content: space-around;
	}
	footer .footer_menu ul{
	    justify-content:space-between;
	}
	footer .footer_menu li{
	    width:50%;
	    margin-bottom: 1rem;
	    text-align: center;
	}
	footer .spread{
	    margin-bottom: 1rem;
	    width: 100%;
		text-align: center;
	}
	footer .footer_menu li:last-child {
	    width: 50%;
	}
	footer .copyright{
		width:100%;
		text-align: center;
	}
}


/********************************************************************
8: Cookie
********************************************************************/
.overlay{
    display:none;
    width: 100%;
    height: 100px;
    background: rgba(163,163,163,0.9);
    position: fixed;
    z-index: 10;
    bottom: 0;
    z-index: 100;
}
.btn_area{
    width: 1002px;
    height: 100px;
    z-index: 2;
    margin: 0 auto;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* position: relative; */
    padding: 0 40px;
    box-sizing: border-box;
}
.btn_area p{
    /* padding:15px; */
    font-size:14px;
    text-align: left;
    letter-spacing: 0;
}
.btn_area p a{
    color:#009F40;
    text-decoration: underline;
}
.btn_area button{
    display: block;
    height: 40px;
    width: 80px;
    font-weight: bold;
    background-color: #009F40;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: .3s;
    border-radius: 5px;
    font-size: 14px;
}
.btn_area button:hover{
    background-color:#007930;
}
.btn_area button.close{
    width: initial;
    height: auto;
    /* border-radius: 50%; */
    position: absolute;
    right: 20px;
    top: 0px;
    font-size: 28px;
    border: none;
    /* box-shadow: 0px 0px 10px rgb(0 0 0 / 30%); */
    background: none;
    color: #fff;
    font-weight: 100;
}
.btn_area button.close:hover{
    /* background-color:rgb(220, 220, 220); */
}

@media screen and (max-width: 799px){
    .overlay{
        height: auto;
    }
    .btn_area{
        width: 100%;
        height: auto;
        flex-wrap: wrap;
        padding: 30px 20px 20px;
    }
    .btn_area p {
        margin-bottom: 0;
        font-size: 12px;
        line-height: 1.7;
    }
    .btn_area button.close {
        right: 20px;
    }
}
@media screen and (max-width: 479px){
    .btn_area{
        padding: 40px 20px 20px;
    }
    .btn_area p {
        margin-bottom: 20px;
    }
}