@charset "utf-8";
/* CSS Document */
/* ------------------------------------------------------------------------ */

/*  Reset

/* ------------------------------------------------------------------------ */

html {
	overflow-y	: scroll;
	height		: 100%;
	-webkit-text-size-adjust: 100%;
	font-size	: 112.5%;
}

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;
}

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: "BIZ UDGothic", MS PGothic, arial, sans-serif;
	line-height	: 1.5;
	text-align	: center;
	color		: #272727;
	-webkit-text-size-adjust	: 100%;
	font-smoothing	: auto;
}
body.fixed {
	width: 100%;
	height: 100%;
	position: fixed;
}

body *,
body *:before,
body *:after {
    box-sizing: border-box;
}

#wrap{
	margin		: 0 auto;
	text-align	: center;
}

body > #wrap { height : auto;}

.spStyle{
	display: none !important;
}

.contents{
	max-width: 1200px;
	width: calc(100% - 40px);
	margin: 0 auto;
}

.flex{
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

@media screen and (max-width: 768px){
	body{
		font-size: 90%;
	}
	.pcStyle{
		display: none;
	}
	.spStyle{
		display: inherit !important;
	}
}

/* Link
--------------------------------------------------------------------------- */

.opacity a:hover img{
	opacity: 0.85;
}

a:link	{
	text-decoration	: none;
	color			: #00F;
}

a:visited	{
	text-decoration	: none;
	color			: #941D55;
}

a:hover	{
	text-decoration	: underline;
}

.tel a{
	color: #00F;
}
.fax a{
	color: #232323;
	pointer-events: none;
	text-decoration: none;
}
a.btn{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background: #e8e4cf;
	border-radius: 8px;
	box-shadow: 7px 7px 0 0 #d8d7d1;
	padding: 15px 25px 15px 20px;
	transition: all 0.2s ease;
	color: #272727;
	font-weight: 700;
	position: relative;
	max-width: 400px;
}
a.btn::before{
	content: "";
	display: block;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	flex-shrink: 0;
	margin-right: 8px;
}
a.btn.contact::before{
	background-image: url("/common/img/icon_letter.svg");
	background-size: 50%;
}


a.btn::after{
	content: "\f054";
	font-family: 'FontAwesome';
	font-size: 0.8em;
	position: absolute;
	top: 50%;
	right: 14px;
	transform: translateY(-50%);
}
a.btn:hover{
	transform: translate(7px,7px);
	box-shadow: none;
	text-decoration: none;
}

a.btn.red{
	background: #db3300;
	color: #fff;
}
a.btn.blue{
	background: #006db7;
	color: #fff;
}

a.btn.brown{
	background: #a85b00;
	color: #fff;
}

a.btn.white{
	background: #fff;
	border: solid 2px #272727;
}

@media screen and (min-width: 1024px){
	a.tel{
		pointer-events: none;
		color: #232323;
	}
	.fax a{
		color: #232323;
		text-decoration: none;
	}
}
@media screen and (max-width: 1439px){
	a.btn{
		padding: 10px 24px 10px 10px;
	}
	a.btn::before{
		width: 40px;
		height: 40px;
	}
	a.btn::after{
		font-size: 0.6em;
		right: 8px;
	}
}



/* ------------------------------------------------------------------------ */

/* Hedaer

/* ------------------------------------------------------------------------ */
header{
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	box-shadow: 0 5px 3px 0 rgba(221,221,221,0.2);
	width: 100%;
	height: 140px;
	z-index: 999;
	transition: transform 0.8s, height 0.8s;
	transition-timing-function: cubic-bezier(0.9, 0, 0.1, 1);
}
header.hide {
	transform: translateY(-150%);
}

.header_inner {
	max-width: 1440px;
	width: calc(100% - 40px);
	margin: 0 auto;
	padding: 25px 0;
	align-items: center;
}

.header_inner h1{
	max-width: 359px;
}

.header_inner nav{
	align-items: flex-end;
}

#font_box{
	font-size: 88.889%;
	border-radius: 8px;
	background: #f6f6ee;
	align-items: center;
	padding: 18px 19px;
}

#font_box > p{
	margin-right: 14px;
}

#font_box ul .changeBtn{
	border: solid 1px #ccc;
	border-radius: 18px;
	min-width: 58px;
	padding: 3px;
	cursor: pointer;
	background: #fff;
	font-weight: 700;
}
#font_box ul .changeBtn.is_active{
	border-color: #db3300;
	background: #db3300;
	color: #fff;
}

#font_box ul .changeBtn + .changeBtn{
	margin-left: 6px;
}
.header_inner .page_nav{
	margin-left: 40px;
}
.header_inner .page_nav > li{
	border-left: dotted 5px #9a9a9a;
	min-width: 185px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header_inner .page_nav > li.icon a{
	padding: 0 10px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #272727;
	letter-spacing: 2px;
	width: 100%;
}
.header_inner .page_nav > li.icon a:hover{
	text-decoration: none;
}
.header_inner .page_nav > li.icon a::before{
	content: "";
	display: block;
	margin: 0 auto 12px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	height: 41px;
}
.header_inner .page_nav > li.icon.search a::before{
	background-image: url("/common/img/icon_search.svg");
	width: 41px;
}
.header_inner .page_nav > li.icon.about a::before{
	background-image: url("/common/img/icon_book.svg");
	width: 61px;
}

.header_inner .page_nav > li .btn.contact{
	min-width: 256px;
	margin-left: 63px;
	letter-spacing: 2px;
}


@media screen and (min-width: 1081px){
	.header_inner nav{
		display: flex !important;
	}
}
@media screen and (max-width: 1439px){
	header{
		height: 120px;
	}
	.header_inner{
		padding: 22px 0;
	}
	.header_inner h1 {
		max-width: 260px;
		width: 60%;
	}
	#font_box{
		padding: 11px 13px;
	}
	.header_inner .page_nav{
		margin-left: 25px;
	}
	.header_inner .page_nav > li{
		min-width: 115px;
	}
	.header_inner .page_nav > li .btn.contact{
		min-width: 196px;
		margin-left: 20px;
	}
	.header_inner .page_nav > li.icon a::before{
		margin: 0 auto 5px;
	}
	.header_inner .page_nav > li.icon.search a::before{
		width: 31px;
	}
	.header_inner .page_nav > li.icon.about a::before{
		width: 41px;
	}
}
@media screen and (max-width: 1080px){
	header {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 77px;
	}
	.header_inner{
		padding: 0;
		padding-left: 20px;
		height: 100%;
		width: 100%;
	}
	div.hg_menu_btn {
		flex-shrink: 0;
		cursor: pointer;
		height: 100%;
		position: relative;
		top: inherit;
		z-index: 2;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		width: 77px;
		background: #006db7;
	}
		div.hg_menu_btn span {
			position: relative;
			display: inline-block;
			width: 32px;
			height: 2px;
			background: #fff;
			margin: 16px 0 15px;
			transition: 0.4s ease;
		}
			div.hg_menu_btn span::before,
			div.hg_menu_btn span::after {
				content: "";
				position: absolute;
				background: #fff;
				display: block;
				height: 2px;
				width: 100%;
				transition: .4s;
			}
				div.hg_menu_btn span::before {
					bottom: 10px;
				}
				div.hg_menu_btn span::after {
					top: 10px;
				}
					div.hg_menu_btn.active span{
						transform: rotate(180deg);
						background: none;
					}
					div.hg_menu_btn.active span::before{
						top: 50%;
						transform: translateY(-50%) rotate(45deg);
					}
					div.hg_menu_btn.active span::after{
						top: 50%;
						transform: translateY(-50%) rotate(-45deg);
					}
	
	div.hg_menu_btn.active{
		background: #e03400;
	}
	
	.header_inner nav {
		display: none;
		background: #e03400;
		position: absolute;
		top: 100%;
		right: 0;
		width: 100%;
		height: calc(100vh - 77px);
		padding: 32px 15px 60px;
		overscroll-behavior: auto;
		overflow-y: auto;
	}
	.header_inner nav.navIn{
		opacity: 1;
		z-index: 8888;
	}
	
	#font_box{
		display: none;
	}
	
	.header_inner .page_nav{
		display: block;
		margin: 0;
	}
	.header_inner .page_nav > li{
		border-left: none;
		border-bottom: solid 1px #fff;
	}
	.header_inner .page_nav > li:first-child{
		border-top: solid 1px #fff;
	}
	.header_inner .page_nav > li:last-child{
		border: none;
	}
	.header_inner .page_nav > li.icon a{
		flex-direction: row-reverse;
		justify-content: flex-end;
		padding: 15px 0;
		color: #fff;
	}
	.header_inner .page_nav > li.icon a::before{
		margin: 0;
		margin-left: 10px;
	}
	.header_inner .page_nav > li .btn.contact{
		margin: 20px auto 0;
		min-width: inherit;
		width: 100%;
	}
}


/* ------------------------------------------------------------------------ */

/* Navigation

/* ------------------------------------------------------------------------ */

nav {}


/* ------------------------------------------------------------------------ */

/* Contents

/* ------------------------------------------------------------------------ */

#wrap{
	overflow: hidden;
}
#mainBlock {
	clear : both;
	padding-top: 140px;
	background: rgb(241,241,221);
	background: linear-gradient(180deg, rgba(241,241,221,1) 0%, rgba(241,241,221,1) 50%, rgba(255,255,255,0) 50%, rgba(255,255,255,0) 100%);
}
#contentsBlock{
	background: #fff;
	position: relative;
	z-index: 5;
}
.under #contentsBlock{
	padding-bottom: 140px;
}
.under #mainBlock {
	padding-top: 0;
}
#keyVisual{
	padding-top: 140px;
	background: #f1f1dd;
	height: 754px;
}
#keyVisual > .contents{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	position: relative;
	height: 100%;
}
#keyVisual .ttl{
	text-align: left;
	font-size: 277.778%;
	padding-bottom: 100px;
	position: relative;
	z-index: 1;
}
#keyVisual .ttl::before{
	content: "";
	display: block;
	background: url("../img/hd_ttl_bg.png") no-repeat center / contain;
	width: 1206px;
	height: 871px;
	position: absolute;
	top: -415px;
	right: -47.4%;
	z-index: -1;
}
#keyVisual .ttl::after{
	content: "";
	display: block;
	background: url("../img/hd_icon.png") no-repeat center / contain;
	width: 196px;
	height: 159px;
	position: absolute;
	top: -85px;
	right: 91%;
}


@media screen and (max-width: 1440px){
	#keyVisual{
		height: 564px;
	}
	#keyVisual > .contents{
		justify-content: flex-start;
	}
	#keyVisual .ttl{
		padding: 100px 0 0;
	}
	#keyVisual .ttl::before{
		top: -290px;
		right: -33%;
		width: 746px;
		height: 800px;
	}
	#keyVisual .ttl::after{
		width: 96px;
		height: 78px;
		top: 20px;
		right: auto;
		left: 0;
	}
}
@media screen and (max-width: 1439px){
	#mainBlock {
		padding-top: 120px;
	}
}
@media screen and (max-width: 1024px){
	.under #contentsBlock{
		padding-bottom: 70px;
	}
	#keyVisual .ttl{
		font-size: 222%;
		padding: 30px 0 0;
	}
	#keyVisual .ttl::before{
		top: -360px;
	}
	#keyVisual .ttl::after{
		top: -50px;
	}
}
@media screen and (max-width: 767px){
	.under #contentsBlock{
		padding-bottom: 40px;
	}
	#keyVisual {
		height: 127vw;
		min-height: 564px;
	}
	#keyVisual .ttl {
		font-size: 166.6667%;
		padding-top: 50px;
	}
	#keyVisual .ttl::before{
		content: none;
	}
	#keyVisual .ttl::after {
		top: -40px;
		left: 10px;
	}
}
/* ------------------------------------------------------------------------ */

/* Footer

/* ------------------------------------------------------------------------ */

.fixedBG{
	position: fixed;
	bottom: 0;
	left: 0;
	background: url("/common/img/footer_bg.jpg") no-repeat center top / cover;
	width: 100%;
	height: 100vh;
	z-index: -1;
}

footer {
	padding-top: 373px;
	position: relative;
}
footer::after{
	content: "";
	display: block;
	width: 110%;
	height: 390px;
	background: #fff;
	border-radius: 50%;
	border-bottom: solid 8px #fff;
	position: absolute;
	top: -236px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}
footer::before{
	content: "";
	display: block;
	border-top-right-radius: 50%;
	border-top-left-radius: 50%;
	width: 108%;
	height: 321px;
	background: #f1f1dd;
	position: absolute;
	left: 50%;
	bottom: -1px;
	z-index: 2;
	transform: translateX(-50%);
}

footer > .icon{
	display: block;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center top;
	position: absolute;
	z-index: 1;
}
footer > .icon.left{
	background-image: url("/common/img/footer_icon_left.png");
	max-width: 594px;
	width: 100%;
	height: 494px;
	left: 54px;
	bottom: 133px;
	transition-delay: 0.8s;
}
footer > .icon.right{
	background-image: url("/common/img/footer_icon_right.png");
	max-width: 463px;
	width: 100%;
	height: 353px;
	top: -22px;
	right: 0;
	transition-delay: 0.8s;
}

footer > .contents{
	position: relative;
	z-index: 5;
}

.footerInner {
	background: #fff;
	border-radius: 24px;
	justify-content: space-between;
	align-items: flex-start;
	padding: 47px 80px;
	margin-bottom: 32px;
}
.footerInner .logo{
	width: 359px;
	flex-shrink: 0;
}

.footerInner .addContents{
	text-align: left;
	font-size: 111.111%;
	width: 49%;
}

.footerInner .addContents > .tel{
	margin-top: 1em;
}
.footerInner .addContents a.btn{
	margin-top: 1.6em;
	max-width: 340px;
}
footer .copytxt{
	font-size: 88.889%;
	padding-bottom: 49px;
}

@media screen and (max-width: 1440px){
	footer > .icon.right{
		width: 30%;
		top: 0;
	}
	footer > .icon.left{
		left: 2%;
		width: 30%;
	}
}
@media screen and (max-width: 1024px){
	footer::after{
		width: 140%;
		height: 350px;
	}
	.footerInner{
		justify-content: flex-start;
		padding: 36px 20px;
	}
	.footerInner .logo{
		max-width: 270px;
		width: 100%;
		margin-right: 40px;
	}
	.footerInner .addContents{
		width: 100%;
	}
}
@media screen and (max-width: 880px){
	footer{
		padding-top: 43%;
	}
	footer > .icon.right{
		top: 20px;
	}
	footer > .icon.left{
		top: 24%;
		left: -30px;
		bottom: auto;
		width: 36%;
	}
	footer::before{
		width: 128%;
	}
	footer::after{
		height: 320px;
	}
	.footerInner{
		display: block;
	}
	.footerInner .logo{
		display: block;
		margin: 0 0 20px;
	}
	.footerInner .addContents a.btn{
		margin: 20px auto 0;
	}
}
@media screen and (max-width: 767px){
	footer::after{
		top: -170px;
		height: 230px;
		width: 160%;
	}
	footer::before{
		width: 160%;
		height: 230px;
	}
	footer > .icon.left{
		top: 14%;
		width: 40%;
	}
	footer > .icon.right{
		width: 40%;
	}
}