@charset "utf-8";
/* ===================================================================
CSS
 file name  :  common.css
=================================================================== */
/* web font */
body, button, input, select, textarea {
	font-family: 'Noto Sans JP','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','Avenir','Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','メイリオ',Meiryo,sans-serif;
	font-weight: 300;
	letter-spacing: 0.05em;
    line-height: 2;
}
html{
    font-size: 62.5%;
}
body{
    font-size:1.6rem;
	position: relative;
    /* 横にしたときに文字が大きくなる現象を防ぐ */
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
.font-en{
    font-family: europa, sans-serif;
}
@media screen and (max-width: 768px) {
	body{
		font-size:1.4rem;
	}
}
@media screen and (max-width: 480px) {
	body{
		font-size:1.2rem;
	}
}
img{
	max-width: 100%;
	height: auto;
	width: auto;
}
p{
	line-height: 2;
}
a{
	color: #3895C7;
}
a:hover{
	color: #07B8DE;
}
.contents_wrap a{
    text-decoration: none;
    border-bottom: 1px solid #3895C7;
}
.contents_wrap a:hover{
    border-bottom: 1px solid #07B8DE;
}
/* ボタン共通 */
a.btn{
	position: relative;
	display: block;
    border-radius: 100px;
    border: 1px solid #2B0608;
	padding: 1.5em 1em;
	background: #2B0608;
	color: #FFF;
	text-decoration: none;
	text-align: center;
	transition: all .3s;
    font-weight: 500;
    line-height: 1;
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.2);
        
}
@media print, screen and (min-width: 769px) {
    a.btn:hover{
        border: 1px solid #3895C7;
        background: #3895C7;
    }
}
@media print, screen and (min-width: 769px) {
	.pc_none{
		display:none;
	}
    .anchor{
        display: block;
        padding-top: 60px;
        margin-top: -60px;
    }
}
@media screen and (max-width: 768px) {
	.tb_none{
		display:none;
	}
    a.btn{
        font-size: 1.4rem;
    }
}
@media screen and (max-width: 480px) {
	.sp_none{
		display:none;
	}
}
/* =====================================
ヘッダー
======================================== */
@media print, screen and (min-width: 769px) {
	.header{
		top: -60px;
		margin: 60px auto 0;
		position: absolute;
		width:100%;
        z-index: 1000;
	}
	.header_wrap{
		width: 100%;
		margin: 50px auto auto;
		padding: 0 50px;
		display: flex;
		justify-content: space-between;
        align-items: center;
	}
	.header_wrap .h_logo a{
		display: block;
		width: 190px;
		height: 50px;
		background: url("../images/common/logo.png") no-repeat;
		background-size: contain;
		text-indent: -9999px;
	}
    .global_nav{
        width: calc(100% - 190px);
		display: flex;
        justify-content: flex-end;
		align-items: center;
    }
	.global_nav > ul{
		display: flex;
		align-items: center;
	}
	.global_nav > ul > li{
		padding: 0 25px;
		position: relative;
	}
	.global_nav > ul > li a{
        text-decoration: none;
        color: #2B0608;
        font-weight: 700;
        letter-spacing: 0.1em;
		position: relative;
		display: block;
        line-height: 1;
    }
	.global_nav > ul > li a::after{
		content: '';
		position: absolute;
		bottom: -10px;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #2B0608;
		transform: scaleX(0);
		transition: all .3s ease;
    }
	.global_nav > ul > li > a:hover::after{
		transform: scaleX(1);
	}
    .global_nav .h_contact{
        padding-left: 25px;
    }
	.global_nav .h_contact a{
        text-decoration: none;
        background: #2B0608;
        color: #FFFFFF;
        font-weight: 700;
        letter-spacing: 0.1em;
        padding: 0.8em 3em;
        border-radius: 100px;
        box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.2);
		transition: all .3s ease;
    }
	.global_nav .h_contact a:hover{
        background: #3895C7;
    }

    /*---ヘッダーが固定化されたときのCSS---*/
	.header.fixed{
		position: fixed;
		margin: 0px auto 0;
		top: 0;
        background-color:rgba(255,255,255,0.9);
		-webkit-transition: top 1.00s ease-in;
		-moz-transition: top 1.00s ease-in;
		transition: top 1.00s ease-in;
	}
	.header.fixed .header_wrap{
		width:100%;
		margin:0;
		padding: 10px 50px;
	}
	.header.fixed .header_wrap .h_logo a{
		display: block;
		width: 150px;
        height: 40px;
    }
	.header.fixed .global_nav .h_contact a{
        padding: 0.6em 2em;
    }
}
@media screen and (max-width: 768px) {
	.header_wrap{
		position: relative;
		width: 100%;
        padding: 30px 20px;
        z-index: 1000;
	}
	.header_wrap .h_logo a{
		display: block;
		width: 160px;
		height: 42px;
		background: url("../images/common/logo.png") no-repeat;
		background-size: contain;
		text-indent: -9999px;
	}
	/* Toggle Button */
	.nav-toggle {
		position: fixed;
		right: 20px;
		top: 30px;
		width: 40px;
		height: 40px;
		cursor: pointer;
		z-index: 1200;
	}
	.nav-toggle div {
		position: relative;
	}
	.nav-toggle span {
		display: block;
		position: absolute;
		right: 0;
		height: 1px;
		background: #333333;
		-webkit-transition: .35s ease-in-out;
		-moz-transition: .35s ease-in-out;
		transition: .35s ease-in-out;
	}
	.top_header .nav-toggle span {
		background: #FFF;
	}
	.nav-toggle span:nth-child(1) {
		top: 10px;
		width: 40px;
	}
	.nav-toggle span:nth-child(2) {
		top: 19px;
		width: 32px;
	}
	.nav-toggle span:nth-child(3) {
		top: 28px;
		width: 24px;
	}
	/* #nav-toggle 切り替えアニメーション */
	.nav-toggle.active span {
		background: #FFF;
	}
	.nav-toggle.active span:nth-child(1) {
		top: 20px;
		-webkit-transform: rotate(315deg);
		-moz-transform: rotate(315deg);
		transform: rotate(315deg);
	}
	.nav-toggle.active span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.nav-toggle.active span:nth-child(3) {
		top: 20px;
		width: 40px;
		-webkit-transform: rotate(-315deg);
		-moz-transform: rotate(-315deg);
		transform: rotate(-315deg);
	}

	/* .global_nav スライドアニメーション */
	.open .global_nav {
		-moz-transform: translateX(-100vw);
		-webkit-transform: translateX(-100vw);
		transform: translateX(-100vw);
	}
	/* 開いてないときは画面外に配置 */
	.global_nav{
		position: fixed;
		top: 0;
		right: -100vw;
        width: 100%;
		height: 100%;
		overflow: scroll;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
		z-index: 1100;
		background: rgba(21,22,26,0.9);
		padding: 80px 30px 50px 30px;
	}
    .global_nav ul li:not(:first-child){
        margin-top: 1em;
    }
	.global_nav ul li a{
		display: block;
		color: #FFF;
        text-align: center;
		text-decoration: none;
		padding: 1em;
		cursor: pointer;
	}
    .global_nav .h_contact{
        display: block;
        margin: 40px auto auto;
        width: 280px;
    }
	.global_nav .h_contact a{
        display: block;
        width: 100%;
        text-align: center;
        text-decoration: none;
        background: #FFFFFF;
        color: #333;
        font-weight: 600;
        padding: 0.8em 3em;
        border-radius: 100px;
    }
}
@media screen and (max-width: 480px) {
	.header_wrap .h_logo a{
		width: 130px;
		height: 35px;
	}
	.global_nav ul li a{
        font-size: 1.4rem;
	}
	.global_nav .h_contact a{
        font-size: 1.4rem;
        padding: 1em 2em;
    }
}
/* =====================================
コンテンツ共通
======================================== */
main{
    position: relative;
    z-index: 10;
    padding-top: 100px;
}
h1.page_title{
    color: #392324;
    font-size: 4.2rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-top: 100px;
}
.contents_wrap{
    max-width: 1180px;
    padding: 100px 50px;
    margin: auto;
}
.contents_wrap.last{
    padding: 100px 50px 200px 50px;
}
@media screen and (max-width: 768px) {
    main{
        padding-top: 0;
    }
    h1.page_title{
        font-size: 3.2rem;
        margin-top: 70px;
    }
    .contents_wrap{
        padding: 70px 50px;
    }
    .contents_wrap.last{
        padding: 70px 50px 160px 50px;
    }
}
@media screen and (max-width: 480px) {
    h1.page_title{
        font-size: 2.4rem;
        margin-top: 50px;
    }
    .contents_wrap{
        padding: 50px 20px;
    }
    .contents_wrap.last{
        padding: 50px 20px 120px 20px;
    }
}
/* =====================================
ページトップ
======================================== */
.page_top{
	position: fixed;
	right: 30px;
	width: 60px;
	z-index: 900;
}
@media screen and (max-width: 768px) {
	.page_top{
	    right: 20px;
		width: 50px;
	}
}
/* =====================================
フッター
======================================== */
.footer{
    position: relative;
    z-index: 10;
    background: #1A0102;
}
.footer_wrap{
    max-width: 1180px;
    margin: auto;
    padding: 100px 50px;
    font-size: 1.4rem;
}
.footer_wrap .footer_nav{
    display: flex;
    justify-content: center;
}
.footer_wrap .footer_nav > li{
    margin: auto 1em;
}
.footer_wrap .footer_nav > li > a{
    position: relative;
    color: #CCCCCC;
    text-decoration: none;
    letter-spacing: 0.1em;
    display: block;
    font-weight: 500;
    line-height: 1;
}
@media print, screen and (min-width: 769px) {
	.footer_wrap .footer_nav > li > a::after{
		content: '';
		position: absolute;
		bottom: -10px;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #CCCCCC;
		transform: scaleX(0);
		transition: all .3s ease;
    }
	.footer_wrap .footer_nav > li > a:hover::after{
		transform: scaleX(1);
	}
}
.copy{
    border-top: 1px solid #222222;
    margin: 70px auto auto;
    padding-top: 70px;
    color: #CCCCCC;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .footer_wrap{
        padding: 100px 30px;
    }
    .footer_wrap .footer_nav{
        flex-wrap: wrap;
    }
    .footer_wrap .footer_nav > li > a{
        line-height: 2;
    font-weight: 600;
    }
    .copy{
        margin: 50px auto auto;
        padding-top: 50px;
    }
}
@media screen and (max-width: 480px) {
    .footer_wrap{
        padding: 70px 20px;
        font-size: 1.2rem;
    }
    .footer_wrap .footer_nav{
        display: inherit;
    }
    .footer_wrap .footer_nav > li:not(:first-child){
        margin-top: 3em;
    }
    .footer_wrap .footer_nav > li > a{
        text-align: center;
        line-height: 1;
    }
    .copy{
        margin: 60px auto auto;
        padding-top: 60px;
    }
}