@charset "utf-8";
/******************************************
- header
- footer
汎用classの定義
- Title Style
- Section Style
- List Style
- Button Style
- Text Style
- Stopgap Class
clearfix
*******************************************/
 #container {
	padding-top: 90px;
}
@media only screen and (max-width: 767px){
	#container {
		padding-top: 60px;
	}
} 

/* ----------------------------------------

- header

---------------------------------------- */
#header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	background-color: #fff;
}

#header .header_inner {
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#header .siteID {
	width: 240px;
}
#header .globalNav {
	font-size: 14px;
	margin-left: auto;
}
#header .globalNav > ul > li {
	display: inline-block;
	margin-left: 55px;
}
#header .globalNav > ul > li.document .btn01{
	font-size: 14px;
	min-width: 151px;
	padding: 10px;
	box-shadow: none;
}
@media screen and (max-width:1200px){
	#header .globalNav {
		font-size: 15px;
	}
	#header .siteID {
		width: 180px;
	}
	#header .globalNav > ul > li {
		margin-left: 15px;
	}
	#header .globalNav > ul > li.document .btn01 {
		font-size: 15px;
		min-width: 120px;
	}
}
@media screen and (max-width:767px){
	#header .header_inner {
		height: 60px;
	}
	#header .siteID {
		width: 170px;
	}
	.nav-open {
		overflow: hidden;
	}
	.nav-open #header .globalNav {
		opacity:1;
		transform: translateX(0%);
	}
	#header .globalNav {
		opacity: 0;
		width: 100%;
		max-height: 100vh;
		padding: 50px 20px;
		position: fixed;
		top: 60px;
		right: 0;
		z-index: 999;
		transform: translateX(-100%);
		background-color: #CC8383;
		overflow-y: scroll;
	}
	#header .globalNav > ul {

		text-align: center;
	}
	#header .globalNav > ul > li {
		display: block;
		margin: 0 0 20px;
	}
	#header .globalNav > ul > li > a {
		color: #fff;
	}
	#header .globalNav > ul > li.document .btn01 {
		background-color: #fff;
		color: #CC8383;;
	}
	/* menuBtn
	------------------------------- */
	.menuBtn {
    width: 60px;
    height: 100%;
    position: absolute;
    top: 0;
		right: 0;
		z-index: 2;
	}
	#header .menuBtn > span {
		position: absolute;
		top: 50%;
		left: 50%;
		z-index: 999;
		display: block;
		width: 24px;
		height: 1px;
		transform: translate(-50%,-50%);
		background: #CC8383;
		transition: all 0.5s ease-in-out;
	}
	#header .menuBtn > span:nth-child(1) {
		transition: all 0.2s ease-in-out;
		transform: translate(-50%,-50%) translateY(-8px);
	}
	#header .menuBtn > span:nth-child(4) {
		transition: all 0.2s ease-in-out;
		transform: translate(-50%,-50%) translateY(8px);
	}
	.nav-open #header .menuBtn > span:nth-child(1) {
		transition: all 0.3s ease-in-out;
		transform: translate(-50%,-50%) translateY(-35px);
		opacity: 0;
	}
	.nav-open #header .menuBtn > span:nth-child(4) {
		transition: all 0.3s ease-in-out;
		transform: translate(-50%,-50%) translateY(35px);
		opacity: 0;
	}
	.nav-open #header .menuBtn > span:nth-child(2) {
		transition: all 0.5s ease-in-out;
		transform: translate(-50%,-50%) rotate(40deg);
	}
	.nav-open #header .menuBtn > span:nth-child(3) {
		transition: all 0.5s ease-in-out;
		transform: translate(-50%,-50%) rotate(-40deg);
	}
	.nav-open #layer {
		width: 100%;
		height: 100vh;
		background: transparent;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 998;
	}
}
/* noscript
------------------------------- */
#noscript {
	margin-bottom: 15px;
	padding: 0.5em 1em;
	border: 2px solid #ccc;
	color: #333;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/* ----------------------------------------

- footer

---------------------------------------- */
#footer {
	text-align: center;
	background: #241F14;
	color: #fff;
}
#footer .siteinfo {
	padding-top: 40px;
	padding-bottom: 90px;
}
#footer .siteinfo .siteID {
	width: 240px;
	margin:0 auto 24px;
}
#footer .siteinfo .tel {
	display: inline-block;
	font-size: 26px;
	line-height: 1;
	color: #fff;
	vertical-align: middle;
	font-weight: bold;
	padding-left: 30px;
	background: url(../../img/common/icon-tel_white.svg) center left no-repeat;
	background-size: contain;
	margin-bottom: 10px;
}
#footer .siteinfo .time {
	font-size: 17px;
}

/* copyright
------------------------------- */
#footer .copyright {
	font-size: 12px;
	font-weight: 400;
	color: #B9B9B9;
	text-align: center;
	padding: 7px 0;

}



/* ----------------------------------------

- Title Style

---------------------------------------- */
/* title01
------------------------------- */
.title01  {
	margin-bottom: 43px;
	text-align: center;
}
.title01 .main {
	font-size: 27px;
	letter-spacing: .2em;
	font-weight: 600;
	font-family: 'Noto Serif JP', serif;
}
.title01 .sub {
	font-size: 18px;
	letter-spacing: .2em;
	font-weight: 600;
	font-family: 'Noto Serif JP', serif;
}
@media only screen and (max-width: 767px){

}

/* ----------------------------------------

- Section Style

---------------------------------------- */

.bgGray {
	background: #FDFAF7;
	overflow: hidden;
}
/* section
------------------------------- */
.sec01 {
	margin-top: 100px;
	margin-bottom: 100px;
}

@media only screen and (max-width: 767px){

}
/* verticalSec
------------------------------- */
.verticalSec {
	padding-left: 95px;
	padding-right: 95px;
}
.verticalSec_inner {
	position: relative;
}
.verticalSec_tit .main {
	font-size: 25px;
	font-weight: 600;
	letter-spacing: .1em;
	font-family: 'Noto Serif JP', serif;
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
	position: absolute;
	right: 0;
	top: 0;
	padding-bottom: 75px;
	transform: translateX(100%);
}
.verticalSec_tit .main:before {
	content: "";
	height: 57px;
	width: 1px;
	background: #342811;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
@media only screen and (max-width: 767px){
	.verticalSec {
		padding-left: 0;
		padding-right: 0;
	}
	.verticalSec_tit {
		text-align: center;
	}
	.verticalSec_tit .main {
		display: inline-block;

		position: static;
		transform: translateX(0%);

	}

}
/* inner
------------------------------- */
.inner01 {
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
	box-sizing: content-box;
}
.inner02 {
	max-width: 890px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
	box-sizing: content-box;
}
.inner01 .inner02 {
	padding-left: 0;
	padding-right: 0;
}

@media only screen and (max-width: 767px){

}



/* ----------------------------------------

- List Style

---------------------------------------- */

/* list
------------------------------- */
.list01 > li {
	position: relative;
	padding-left: 14px;
	margin-bottom: 3px;
}
.list01 > li:before {
	content: '';
	width: 4px;
	height: 4px;
	display: block;
	border-radius: 100%;
	background: #125999;
	position: absolute;
	left: 3px;
	top: .65em;
}

/* defList
------------------------------- */
.defList {
	padding-left: 30px;
	margin-bottom: 15px;
}
ul.defList > li {
	list-style-type: disc;
}
ol.defList > li {
	list-style-type: decimal;
}


/* ----------------------------------------

- Button Style

---------------------------------------- */


/* btn01
------------------------------- */
.btn01 {
	font-size: 15px;
	line-height: 1.2;
	letter-spacing: 0.22em;
	color: #fff;
	letter-spacing: 0.05em;
	text-align: center;
	display: inline-block;
	background: #CC8383;
	border-radius: 4px;
	padding: 15px 40px;
}
.btn01 .arw {
	padding: 0 20px;
	background: url(../../img/common/arw_right_white.svg) right center no-repeat;
	background-size: 6px auto;
}
.btn01:hover {
	opacity: 1;
	background: #a36565;
	color: #fff;
	transform: translateY(5%);
}

@media screen and (max-width:767px){
	.btnUnit .fukidashi ,
	.btn01 {
		font-size: 15px;
	}
	.btn01 {
		min-width: none;
		width: 100%;
	}
}



/* ----------------------------------------

- Text Style

---------------------------------------- */
.underline_pink {
	background: linear-gradient(to top,#CC8383 2px, transparent 2px);
}
.whiteBase_coler-blue {
	display: inline-block;
	background-color: #fff;
	color: #1F539A;
	padding: 0 .25em;
}
.fc_blue { color:#1F539A; }
.fw400 { font-weight: 400 !important;}
.fwB { font-weight: bold !important;}
.txt_indent {
	padding-left: 1.15em;
	text-indent: -1.15em;
}
.txt_indent_mark {
	margin-right: .15em;
}



/* ----------------------------------------

- Stopgap Class

---------------------------------------- */
.clear {
	clear: both;
}
.hidden {
	height: 0;
	width: 0;
	overflow: hidden;
}
.font_orenge { color: #F7552D;}
.alnC { text-align: center !important;}
.alnR { text-align: right !important;}
.alnL{ text-align: left !important;}
.nowrap { white-space: nowrap;}
.breakWord { word-wrap: break-word;}
.pcNone { display: none!important; }
.spNone { display: inline-block!important; }
@media screen and (max-width:767px){

	.pcNone { display: block !important; }
	.spNone { display: none !important; }
}

/* ----------------------------------------

clearfix

---------------------------------------- */

/* Modern Browsers
------------------------------- */
.clearfix:after,
.imgSec01:after {
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	content: ".";
	line-height: 0;
}

/* Legacy IE
------------------------------- */
.clearfix,
.imgSec01 {
	*zoom: 1;
}