@charset "utf-8";
/* CSS Document */
/* ------------------------------------------------------------------------ */

/*  Reset

/* ------------------------------------------------------------------------ */

*{
	box-sizing: border-box;
}

html {
	overflow-y	: scroll;
	height		: 100%;
	font-size	: 62.5%;
	-webkit-text-size-adjust: 100%;
}

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
pre,form,fieldset,p,blockquote {
	margin 	: 0;
	padding : 0;
}

fieldset {
	display	: inline;
}

address,caption,cite,code,dfn,em,strong,th,var {
	font-style : normal;
}

body/**/table {
	line-height	: 1.5;
}

q:before,
q:after {
	content : '';
}

object,embed {
	vertical-align : top;
}

hr,legend	{
	display : none;
}

h1,h2,h3,h4,h5,h6 {
	font-size : 100%;
}

img,abbr,acronym,fieldset {
	border : 0;
}

li {
	list-style-type : none;
}

img[usemap] {
	border		: none;
	height		: auto;
	max-width	: 100%;
	width		: auto;
}

img {
	border		: 0;
	max-width	: 100%;
}

i {
	padding	: 5px 5px 2px 0;
}

p {
	word-break	: break-all;
}

/* Flexible Images */
img{
	max-width	: 100%;
	height		: auto;
	width /***/	: auto;
}

submit	{ -webkit-appearance : none;}

/* ------------------------------------------------------------------------ */

/*  Basic Style

/* ------------------------------------------------------------------------ */

body {
	margin		: 0;
	padding		: 0;
	height		: 100%;
	font-family: 'Shippori Mincho', serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height	: 2.0;
	text-align	: center;
	color		: #000;
	-webkit-text-size-adjust	: 100%;
	font-smoothing	: auto;
	box-sizing: border-box;
}

#wrap{
	margin		: 0 auto;
	text-align	: center;
}

body > #wrap { height : auto;}


@media screen and (max-width: 767px){
	body{
		font-size: max(2.5vw,1.4rem);
	}

}

/* Link
--------------------------------------------------------------------------- */

.opacity a:hover img{
	opacity: 0.85;
}

a{
	text-decoration: none;
	color: #000;
}

/* ------------------------------------------------------------------------ */

/* footer

/* ------------------------------------------------------------------------ */

footer{
	background-color: #542708;
	padding: 60px 0 0;
	margin-top: 120px;
}

footer > p{
	font-size: 2.8rem;
	font-weight: 600;
	color: #fff;
	margin-top: 23px;
	line-height: calc(48 / 28);
	letter-spacing: 0.04em;
}

footer .btn{
	margin: 25px auto 0;
	max-width: 460px;
	height: 70px;
}

footer .btn > a{
	background: url(../img/btn_bottom_pc.png) no-repeat center / contain;
	padding: 0;
}

footer .btn > a p{
	color: #542708;
	font-size: 2.2rem;
	letter-spacing: -0.01em;
	padding: 0 0 10px;
}

footer .footer_bottom{
	background-color: #fff;
	margin-top: 60px;
	padding: 20px 0;
}

footer .footer_bottom .flex{
	justify-content: space-between;
}

footer .footer_bottom .flex p{
	font-size: 1.2rem;
	letter-spacing: 0.01em;
}

@media screen and (max-width: 1000px){

	footer > p{
		font-size: 2.66666vw;
	}

	footer .footer_bottom > .contents{
		padding: 0;
	}

	footer .footer_bottom .flex{
		flex-direction: column;
	}

	footer .footer_bottom .flex p{
		font-size: 1.2rem;
	}
}

@media screen and (max-width: 767px){
	footer{
		margin-top: 80px;
	}

	footer > p{
		font-size: 1.4rem;
	}

	footer .btn{
		width: calc(100% - 40px);
	}

	footer .footer_bottom .flex p {
		font-size: max(1.6vw,1.0rem);
	}
}

/* ------------------------------------------------------------------------ */

/* Contents

/* ------------------------------------------------------------------------ */

.contents{
	max-width: 1240px;
	padding: 0 20px;
	width: 100%;
	margin: 0 auto;
}

/* sideNav */

.sideNav{
	position: fixed;
	right: 0;
	top: 30%;
	z-index: 900;
	max-width: 240px;
	width: 100%;
}

.sideNav > ul > li{
	position: relative;
	width: 100%;
	border-radius: 16px 0 0 16px;
	transition: all .3s;
	max-width: 240px;
	height: 82px;
}

.sideNav > ul > li:not(:first-of-type){
	margin-top: 8px;
}

.sideNav > ul > li > a{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 10px 0 0 10px;
	background-repeat: no-repeat;
	background-size: contain;
	transition: all .3s;
}


.sideNav > ul > li > a:hover{
	background-color: rgba(255,255,255,0.1);
	background-blend-mode: lighten;
}

.sideNav > ul > li.item01 a{
	background-image: url("../img/side/bg_side_001_pc.png");
}

.sideNav > ul > li.item02 a{
	background-image: url("../img/side/bg_side_002_pc.png");
}

.sideNav > ul > li.item03 a{
	background-image: url("../img/side/bg_side_003_pc.png");
}

.sideNav > ul > li.item04 a{
	background-image: url("../img/side/bg_side_004_pc.png");
}

.sideNav > ul > li.item05 a{
	background-image: url("../img/side/bg_side_005_pc.png");
}

.sideNav > ul > li.item06 a{
	background-image: url("../img/side/bg_side_006_pc.png");
}

.sideNav > ul > li > a p{
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: calc(24 / 18);
	width: 66%;
}

.sideNav > ul > li > a p span{
	font-size: 1.4rem;
}

.sideNav_wide{display: block;}
.sideNav_default{display: none;}

@media screen and (max-width: 1580px){
	.sideNav{
		top: auto;
		bottom: 10px;
		right: 50%;
		max-width: 100%;
		width: calc(100% - 10px);
		margin: 0 auto;
		transform: translate(50%, 0);
	}

	.sideNav > ul{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.sideNav > ul > li{
		width: 19.6%;
		height: 72px;
		margin-top: 0;
	}

	.sideNav > ul > li:not(:first-of-type){
		margin-top: 0;
		margin-left: 0.5%;
	}

	.sideNav > ul > li > a{
		border-radius: 10px;
		background-size: cover;
		background-position: left center;
	}


	.sideNav > ul > li > a p{
		font-size: 1.3rem;
		width: 56%;
		line-height: 1.4;
		text-align: left;
	}

	.sideNav > ul > li > a p span{
		font-size: 1.2rem;
	}

	.sideNav_wide{display: none;}
	.sideNav_default{display: block;}
}

@media screen and (max-width: 767px){
	.sideNav{
		bottom: 0;
	}
	.sideNav br{
		display: none;
	}
	.sideNav > ul > li:not(:first-of-type){
		margin-left: 2.5%;
	}
	.sideNav > ul > li{
		height: auto;
		display: flex;
		align-items: flex-end;
		width: 45%;
		max-width: 263px;
	}

	.sideNav > ul > li > a{
		border-radius: 10px 10px 0 0;
		background-position: top center;
	}
	
	.sideNav > ul > li.item01 a{
		background-image: url("../img/side/bg_side_001_sp.png");
	}

	.sideNav > ul > li.item02 a{
		background-image: url("../img/side/bg_side_002_sp.png");
	}

	.sideNav > ul > li.item03 a{
		background-image: url("../img/side/bg_side_003_sp.png");
	}

	.sideNav > ul > li.item04 a{
		background-image: url("../img/side/bg_side_004_sp.png");
	}

	.sideNav > ul > li.item05 a{
		background-image: url("../img/side/bg_side_005_sp.png");
	}

	.sideNav > ul > li.item06 a{
		background-image: url("../img/side/bg_side_006_sp.png");
	}

	.sideNav > ul > li > a p{
		font-size: min(2.5vw, 18px);
		width: 100%;
		height: auto;
		padding: 9.5vw 0 1.0vw;
		text-align: center;
	}

}

@media screen and (max-width: 400px){
	.sideNav{
		bottom: 0;
	}

	.sideNav > ul > li > a p{
		font-size: 1.2rem;
	}

}

/* ------------------------------------------------------------------------ */

/* トップへ戻るボタン

/* ------------------------------------------------------------------------ */

#pagetop{
	position: fixed;
	right: 40px;
	bottom: 60px;
	z-index: 900;
}

#pagetop > a{
	display: block;
	width: 81px;
	height: 81px;
	background: url("../img/pageTop.png") no-repeat center / contain;
	transition: all .3s;
}

#pagetop > a:hover{
	opacity: 0.9;
}

#pagetop > a span.arrow{
	display: block;
	border-right: 6px dotted #fff;
	width: calc(50% + 2px);
	height: 26px;
	bottom: 20px;
	transition: all .3s;
}

#pagetop > a span.arrow::before,
#pagetop > a span.arrow::after{
	background-color: #fff;
	width: 18px;
	height: 5px;
	bottom: 28px;
	transition: all .3s;
}

#pagetop > a span.arrow::before{
	transform: rotate(-45deg);
	right: -6.5px;
}

#pagetop > a span.arrow::after{
	transform: rotate(45deg);
	right: -17.5px;
}

#pagetop > a:hover span.arrow{
	border-right: 6px dotted #1c5b73;
}

#pagetop > a:hover span.arrow::before,
#pagetop > a:hover span.arrow::after{
	background-color: #1c5b73;
}

@media screen and (max-width: 767px){
	#pagetop{
		right: 20px;
		bottom: 34vw;
	}

	#pagetop > a{
		width: 60px;
		height: 60px;
	}

	#pagetop > a span.arrow{
		border-right: 4px dotted #fff;
		height: 18px;
		bottom: 17px;
		width: calc(50% + 1px);
	}

	#pagetop > a:hover span.arrow{
		border-right: 4px dotted #1c5b73;
	}

	#pagetop > a span.arrow::before,
	#pagetop > a span.arrow::after{
		width: 15px;
		height: 3px;
		bottom: 20px;
	}

	#pagetop > a span.arrow::before {
		right: -4.5px;
	}

	#pagetop > a span.arrow::after {
		right: -14px;
	}
}


@media screen and (max-width: 430px){
	#pagetop{
		bottom: 140px;
	}
	
}

