@charset "utf-8";

/* Google Fonts */
.wf-mplus1p { font-family: 'M PLUS 1p', sans-serif; }

/* Default Style */
body {
	font-family: 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif; /*全体の書体を指定する*/
	font-size: 1.6rem; /*全体のフォントサイズは16pxとする*/
	background: #fbf6ea url(../images/cmn_bg.jpg) center top repeat;
	line-height: 1;
	color:#333333;
}

/* Default Link Style */
a {
	text-decoration: none;
	color: inherit;
	transition: 0.2s;
}

a:hover {
	opacity: .8;
}

/* common */
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}

#wrapper {
	width: 100%;	/*全ての要素を包括する<div id"wrapper">の幅を画面幅に設定する*/
	padding-top: 120px;	/*headerの高さと同一*/
}

/* header ---------------------------------------- */
/* ヘッダー */
header {
	position: fixed;
	top: 0;
	width: 100%;
	height: 120px;
	padding: 0;
	background-color: #56788E;
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	-webkit-transition: all;
	transition: all;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform-origin: center top;
	-ms-transform-origin: center top;
	transform-origin: center top;
	z-index: 100;
}

header.close {
	opacity: 0;
	-webkit-transform: perspective(300px) rotateY(-90deg);
	transform: perspective(300px) rotateX(-90deg);
}

.header-inner {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	position: relative;
	width: 100%;
	height: 120px;
	margin: 0 auto;
	padding: 0 30px;
}

/* サイトタイトル */
h1.site-title {
}

h1.site-title img {
	height: 50px;
}

.header-inner ul.inquiry {
	position: absolute;
	right: 30px;
	top: 0;
	z-index: 300;
}

.header-inner ul.inquiry li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 47px;
	background-color: #333333;
	font-size: 1.8rem;
	color: #ffffff;
	transition: none;
}

.header-inner ul.inquiry li a:before {
	content: "";
	width: 21px;
	height: 16px;
	margin-right: 6px;
	background: url(../images/icon_mail_w.svg) center center no-repeat;
	background-size: cover;
}

/* ヘッダーナビ */
#headNav {
	align-self: flex-end;
	margin-bottom: 23px;
}

#menu-header-nav {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	padding: 0;
}

#menu-header-nav > li {
	position: relative;
	margin: 0;
	border-left: 1px dashed #ffffff;
}

#menu-header-nav li > a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 160px;
	text-decoration: none;
	text-align: center;
	font-size: 1.8rem;
	color: #ffffff;
	height: 50px;
}

#menu-header-nav li.headTel > a {
	width: 260px;
	flex-flow: column wrap;
	line-height: 1.3;
}

#menu-header-nav li > a small {
	align-self: flex-end;
	font-size: 1.2rem;
}

#menu-header-nav > li ul {
	position:absolute;
	font-size: 0;
	margin: 0 auto;
	padding: 0;
	min-width: 100%;
}

#menu-header-nav > li ul li {
	display:block;
	overflow: hidden;
	height: 0;
	white-space:nowrap;
	background:none;
	-moz-transition: .2s;
	-webkit-transition: .2s;
	-o-transition: .2s;
	-ms-transition: .2s;
	transition: .2s;
}

#menu-header-nav > li ul li a {
	display: block;
	height: auto;
	padding: 1em 0;
	border-top: 1px solid #fff;
	text-decoration: none;
	text-align: center;
	background: #56788E;
	font-size: 1.6rem;
	line-height: 1;
	text-decoration: none;
}

#menu-header-nav li ul li a::before {
	content: none;
}

#menu-header-nav > li ul li a:hover {
	opacity: 1;
}

#menu-header-nav > li:hover ul li {
	overflow: visible;
	height:50px;
	margin: 0;
}

#navBtn {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	cursor: pointer;
}

#navBtn:hover {
}

#navBtn:focus {
	outline: none;
}

#navBtn span,
#navBtn span::before,
#navBtn span::after {
	display: block;
	width: 34px;
	height: 4px;
	position: absolute;
	top: 28px;
	left: 13px;
	background-color: #ffffff;
	border-radius: 3px;
}

#navBtn span::before {
	content: "";
	top: -13px;
	left: 0;
}

#navBtn span::after {
	content: "";
	top: 13px;
	left: 0;
}

#navClose {
	display: none;
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	cursor: pointer;
	z-index: 1;
}

#navClose span,
#navClose span::before,
#navClose span::after {
	display: block;
	width: 40px;
	height: 5px;
	position: absolute;
	top: 28px;
	left: 10px;
	border-radius: 3px;
}

#navClose span::before {
	content: "";
	top: 0;
	left: 0;
	transform: rotate(45deg);
	background-color: #ffffff;
}

#navClose span::after {
	content: "";
	top: 0;
	left: 0;
	transform: rotate(-45deg);
	background-color: #ffffff;
}

/* footer ---------------------------------------- */
footer {
	margin-top: 20rem;
}

.footInr {
}

.footContact {
	background-color: #333;
	color: #fff;
	font-size: 2rem;
	line-height: 1.5;
	text-align: center;
	position: relative;
}

.footContact h2 {
	position: absolute;
	display: inline-block;
	padding: 4rem 6rem 10rem 6rem;
	background-color: #333;
	border-radius: 50%;
	transform: translate(-50%,-40%);
	white-space: nowrap;
}

.footContact .inrBox {
	padding-top: 4rem;
	padding-bottom: 4rem;
	position: relative;
}

.footContact ul {
	margin: 1.5rem 0;
}

.footContact ul li {
	display: inline-block;
	margin: 1rem 1rem;
	width: 100%;
	max-width: 300px;
}

.footContact ul li a {
	display: block;
	background-color: #fff;
	padding: 1rem 2rem;
	border-radius: 5px;
	color: #333;
}

.footContact ul li.footMail a::before {
	content: "";
	display: inline-block;
	width: 22px;
	height: 16px;
	margin-right: 6px;
	background: url(../images/icon_mail.svg) center center no-repeat;
	background-size: cover;
}

.footInfo {
	background-color: #fff;
}

.footProf {
	padding: 4rem 5rem;
	line-height: 1.5;
}

.footTitle {
	margin-bottom: 3rem;
}

.footTel {
	font-size: 3.2rem;
}

footer .copy {
	text-align: center;
	font-size: 1.2rem;
	padding: 2rem 0;
	border-top: 1px solid #ccc;
}

/* ページトップへ */
#pageTop {
	position: fixed;
	bottom: -50px;
	right: 20px;
	line-height:0;
	z-index:8;
}

#pageTop a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background-color: #333333;
	color: #ffffff;
}

#pageTop a::before {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	border-top: 3px solid #fff;
	border-right: 3px solid #ffffff;
	transform: translate(0px,20%) rotate(-45deg);
}

/* SP時コンタクトボックス */
.spInquiryBox {
	display: none;
}

/* メインビジュアル ---------------------------- */
.mainVisual {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 450px;
	background-size: cover;
	background-position: center center;
}
.mainVtitle {
	width: 80%;
	max-width: 380px;
	font-size: 6rem;
	font-weight: bold;
	color: #ffffff;
	transform: translate(calc(50vw - 410px),0);
}

/* BreadcrumbList ------------------------------ */
.breadcrumbList {
	width: 100%;
	margin: 0;
	padding: 0;
	background-color: rgba(255,255,255,0.5);
	color: #333;
}

.breadcrumbList ul {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 9px 20px;
	font-size: 0;
}

.breadcrumbList ul li {
	display: inline-block;
	padding: 2px 0;
	font-size: 1.4rem;
	line-height: 1.3;
}

.breadcrumbList ul li::after {
	content: '＞';
	display: inline-block;
	padding: 0 1em;
	font-size: 1rem;
	vertical-align: middle;
}

.breadcrumbList ul li:last-of-type::after {
	content: none;
}

.breadcrumbList ul li:last-of-type span {
	display: inline-block;
	max-width: 20em;
	vertical-align: middle;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

/* content ---------------------------------------- */
.container {
}

.contents {
}

.contents main {
	width: 100%;
}

.contents.wrap2clm {
	display: flex;
	flex-flow: row-reverse nowrap;
	justify-content: space-between;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px 40px;
}

.contents.wrap2clm main {
	width: 68%;
	max-width: 650px;
	margin: 0;
	padding: 0;
}

.contents.wrap2clm aside {
/*	position: relative;*/
	width: 23%;
	max-width: 220px;
	padding: 0;
}

.sideMenuBox {
/*	position: absolute;
	left: 0;*/
	transform: translate(calc(480px - 50vw),0);
	width: calc(50vw - 260px); 
}

.sideMenu > li > a {
	display: block;
	line-height: 1.5;
	margin: 0 0 1px 0;
	padding: 18px 10px 18px calc(100% - 200px);
	background-color: #c8757c;
	font-size: 1.8rem;
	color: #ffffff;
}

.sideMenu > li.active > a {
	background-color: #B3424A;
}

.sideMenu > li.active > a::before {
	content: "》";
	position: absolute;
	transform: translate(-20px,0);
}

.sideMenuChild > li > a {
	display: block;
	line-height: 1.5;
	padding: 18px 10px 18px calc(100% - 180px);
	background-color: #B3424A;
	font-size: 1.6rem;
	color: #ffffff;
}

.sideMenuChild > li > a::before {
	content: "｜";
	position: absolute;
	transform: translate(-20px,0);
}

.sideMenuChild > li.sideMenuTop > a {
	font-size: 1.2rem;
	padding-left: calc(100% - 200px);
}

.sideMenuChild > li.sideMenuTop > a::before {
	content: normal;
}

/* pagenation ------------------------------------- */
.pagination {
	padding:30px 0 0;
}

.pagination .page-numbers {
	text-align: center;
	font-size: 0;
}

.pagination .page-numbers  li {
	display: inline-block;
	margin: 4px;
	width: 35px;
	height : 35px;
	font-weight: bold;
	font-size: 1.6rem;
}

.pagination .page-numbers li a,
.pagination .page-numbers li span {
	display: block;
	width: 35px;
	height: 35px;
	background-color: transparent;
	border: 1px solid #666666;
	border-radius: 50%;
	text-align: center;
	line-height: 35px;
	font-weight: normal;
	font-size: 1.6rem;
	color: #666666;
}

.pagination .page-numbers li a:hover,
.pagination .page-numbers li span.current {
	background-color: #666666;
	opacity: 1;
	color: #ffffff;
}

.inrBox {
	width: 100%;
	max-width: calc(960px + 40px);
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.dispNone {
	display:none;
}

@media (max-width: 1100px) {
.header-inner {
	flex-flow: column nowrap;
	align-items: flex-start;
	justify-content: flex-end;
}
#headNav {
	margin-bottom: 0;
}
}

@media (max-width: 1000px) {
.sideMenuBox {
	transform: translate(-20px,0);
	width: calc(100% + 20px);
}

.sideMenu > li > a {
	padding-left: 40px;
}

.sideMenuChild > li > a {
	padding-left: 60px;
}
}

@media (max-width: 960px) {
.site-title ul li:first-of-type {
	display: none;
}
}

@media (max-width: 767px) {
#wrapper {
	padding-top: 60px;	/*headerの高さと同一*/
}

header {
	height: 60px;
}

.header-inner {
	height: 60px;
	padding: 0;
	justify-content: center;
}

.header-inner ul.inquiry {
	display: none;
}

.site-title {
	margin: 0 0 0 20px;
}

.site-title ul {
	display: none;
}

h1.site-title img {
	height: 40px;
}

#headNav {
	height: auto;
	padding: 0;
	border-top: 0;
	transform: none;
}

/* ヘッダーナビ */
#navBtn {
	display:block;
}

#headNav.open #navBtn {
	display:none;
}

#header-nav {
	display: block;
	position: fixed;
	top: 60px;
	left: 0;
	width: 100%;
	height: 0;
	z-index: 1;
	background-color: rgba(0, 0, 0, .9);
	opacity: 0.5;
	transition: 0.2s;
}

#headNav.open #header-nav {
	height: calc(100% - 60px);
	opacity: 1;
}

#menu-header-nav {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

#menu-header-nav > li {
	display: block;
	width: 100%;
	margin: 0;
	background-color: #ffffff;
	border-left: 0;
	transform: none;
}

#menu-header-nav > li:nth-of-type(2) {
	display: block;
}

#menu-header-nav li a {
	width: 100%;
	padding: 20px 20px;
	border-bottom: 1px solid #d2d2d2;
	text-align: left;
	text-decoration: none;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1;
	transform: none;
	color: #000000;
	justify-content: flex-start;
	height: auto;
	font-weight: normal;
}

#menu-header-nav li.headTel > a {
	width: 100%;
	flex-flow: row wrap;
}

#menu-header-nav li > a small {
	align-self: center;
	margin-left: 10px;
}

#menu-header-nav > li ul {
	position: static;
	font-size: 0;
	margin: 0 auto;
	padding: 0;
	min-width: 100%;
}

#menu-header-nav > li ul li{
	display:block;
	overflow: hidden;
	height: auto;
	white-space:nowrap;
	background:none;
	border-bottom: 1px solid #d2d2d2;
	
	-moz-transition: .2s;
	-webkit-transition: .2s;
	-o-transition: .2s;
	-ms-transition: .2s;
	transition: .2s;
}

#menu-header-nav > li ul li a {
	display: block;
	padding: 20px 20px 20px 40px;
	border: 0;
	border-radius: 0;
	text-decoration: none;
	text-align: left;
	background: #ffffff;
	line-height: 1;
	text-decoration: none;
	font-size: 1.828rem;
	font-weight: normal;
}

#menu-header-nav > li:hover ul li {
	overflow: visible;
	height:auto;
	margin: 0;
}


#headNav.open #navClose {
	display:block;
}

/* content ---------------------------------------- */
.container {
}

.contents {
}

.contents.wrap2clm {
	flex-flow: column nowrap;
}

.contents.wrap2clm main {
	width: 100%;
	max-width: none;
}

.contents.wrap2clm aside {
	width: 100%;
	max-width: none;
}

.sideMenuBox {
	width: 100%;
	transform: translate(0, 0);
}

.sideMenu > li > a {
	padding-left: 50px;
}

/* footer ---------------------------------------- */

/* SP時コンタクトボックス */
.spInquiryBox {
	position: fixed;
	bottom: 0;
	left: 0;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	width:100%;
	padding: 10px 20px;
	background: rgba(0,0,0,.5);
	z-index:8;
}

.spInquiryBox li {
	background-color: #ffffff;
	border-radius: 7px;
}

.spInquiryBox li + li {
	margin-left: 22px;
}

.spInquiryBox li a {
	display: flex;
	align-items: center;
	padding: 5px;
	border-radius: 6px;
	transition: none;
}

.spInquiryBox li a img {
	width: 100%;
	height: auto;
}

/* メインビジュアル ---------------------------- */
.mainVisual {
	justify-content: center;
}
.mainVtitle {
	transform: none;
}

}

@media (max-width: 480px) {

.site-title h1 a {
	padding: 0 10px;
}

}