@charset "utf-8";
/* CSS Document */

a {
	color: #333;
}

/*-- fontSize --*/
html { font-size: 62.5%; } /* 10px */
body { font-size: 1.4rem; } /* 14px */
p  { font-size: 1.4rem; } /* 14px */
@media screen and (max-width: 767px) {
	p  { font-size: 1.2rem; } /* 12px */
}
h2 { font-size: 2.4rem; } /* 24px */
h3 { font-size: 2rem; } /* 20px */

/*-- fontFamily --*/
body {
}

/*-- lineHeight --*/
body { line-height: 2.8rem; }
p  { line-height: 3rem; }
@media screen and (max-width: 767px) {
	p  { line-height: 2.6rem; }
}
h2 { line-height: 3.4rem; }
h3 { line-height: 2.6rem; }

/*-- letter-spacing --*/
body { letter-spacing: 0.08rem; }
h2 { letter-spacing: 0.15rem; }
p  { letter-spacing: 0.2rem; }

/*-- text style --*/
.txt-jus {
	text-align: justify;
}

/*-- background-color --*/
.bgB { background: #555 !important; }
.bgW { background: #fff !important; }


/*-- hook --*/
.pdtb1 { padding: 1px 0 0}

@media screen and (max-width: 767px) {
	.pc {
		display: none;
	}
}

/* breadcrumbs */
.breadcrumbs__wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 40px;
	color: #fff;
	z-index: 1;
}
@media screen and (max-width: 767px) {
	.breadcrumbs__wrapper {
		position: fixed;
		top: auto;
		left: 2.5%;
		width: 95%;
	}
}
.breadcrumbs {
	margin:auto;
	max-width: 1300px;
	padding: 0 2rem;
	line-height: 40px;
	background: rgba(0,0,0,0.5);
	box-sizing: border-box;
	font-size: 1.5rem;
}
.breadcrumbs ul {
	display:flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.breadcrumbs li {
	padding-right:20px;
}
.breadcrumbs li:not(:last-child) {
	position:relative;
	padding-right:40px;
}
.breadcrumbs li:not(:last-child)::after {
	content: ">";
	display: block;
	position: absolute;
	width: 9px;
	height: 15px;
	top: 0px;
	right: 15px;
}
@media screen and (max-width:768px) {
	.breadcrumbs {
		padding: 0 3rem;
		font-size: 1.2rem;
	}
	.breadcrumbs ul {
		display:block;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		overflow-scrolling: touch;
		overflow: auto;
		white-space: nowrap;
	}
	.breadcrumbs li {
		display: inline-block;
		padding-right: 20px;
		flex: 0 0 40%;
	}
}
.breadcrumbs li:last-child {
	font-weight: bold;
}
.breadcrumbs a {
	color: #fff;
	cursor: pointer;
}
.breadcrumbs a:hover {

}

/*-- modal custom (close button) --*/
.modal {
	position: relative;
}
.jquery-modal {
	opacity: 1 !important;
}
.modal a.close-modal {
	position: absolute;
	top: 0;
	right: -130px;
	display: block;
	width: 90px;
	height: 90px;
	text-indent: -9999px;
	background: url(common/images/close.png) no-repeat;
	background-size: contain;
	z-index: 3;
}
@media screen and (max-width: 1650px) {
	.modal a.close-modal {
		position: fixed;
		top: 50px;
		right: 3.9%;
		width: 70px;
		height: 70px;
		text-indent: -9999px;
		background-repeat: no-repeat;
		background-position: center center;
		background: #333 url(common/images/close.png) 50% 50% no-repeat;
		border-radius: 100px;
		background-size: 50px;
		box-sizing: border-box;
	}
}
@media screen and (max-width: 767px) {
	.modal a.close-modal {
		position: fixed;
		top: auto;
		top: 100px;
		right: 0;
		padding: 19px 10px;
		width: 35px;
		height: 35px;
		text-indent: -9999px;
		background-repeat: no-repeat;
		background-position: center center;
		background: #333 url(common/images/close_sp.png) 50% 50% no-repeat;
		border-radius: 0;
		background-size: 12px;
		box-sizing: border-box;
		border-top-left-radius: 5px;
		border-bottom-left-radius: 5px;
	}
	.modal.left a.close-modal {
		right: auto;
		left: 0;
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
		border-top-right-radius: 5px;
		border-bottom-right-radius: 5px;
	}
}


/*-- modal custom --*/
.blocker {
	position:fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	z-index: 100;
	padding: 20px calc(20px + 17px) 20px 20px;
	box-sizing:border-box;background-color: #000;
	background-color: rgba(0,0,0,0.75);
	text-align: center;
}
@media screen and (max-width: 767px) {
	.blocker {
		padding: 2.5% 0 !important;
	}
}


.modal.phImg {
	width: auto;
}
@media screen and (max-width: 767px) {
	.modal.phImg {
		width: 90%;
	}
}

.modal.phImg img {
	overflow: hidden;
	max-height: 80vh;
	text-align: center;
	width: 100%;
}
@media screen and (max-width: 768px) {
	.modal.phImg img {
		height: auto;
		width: 100%;
	}
}

.modal .close {
	text-align: center;
}
.modal .close a.btn {
	display: block;
	padding: 2rem 0;
	color: #fff;
	background: #000;
	transition: 0.3s;
	font-size: 1.6rem;
	cursor: pointer;
}
@media screen and (max-width: 767px) {
	.modal .close a.btn {
		padding: 1rem 0;
		font-size: 1.3rem;
	}
}

.modal .close a:hover {
	background: #222;
}

.modal .modalInner {
	padding: 6rem 6rem 1rem;
}
@media screen and (max-width: 768px) {
	.modal .modalInner {
		padding: 5rem 5rem 1rem;
	}
}
@media screen and (max-width: 767px) {
	.modal .modalInner {
		padding: 4rem 3rem 1rem;
	}
}

.modal .modalInner .box-wrp {
	margin: 0 0 6rem;
}
@media screen and (max-width: 767px) {
	.modal .modalInner .box-wrp {
		margin: 0 0 4rem;
		line-height: 2.5rem;
	}
}

.modal .modalInner .keyImg img {
	border-radius: 5px;
}

.modal h3.h3-con {
	position: relative;
	margin: 0 0 3rem;
	text-align: left;
	font-size: 3rem;
	line-height: 3rem;
	font-family:YuMincho, "游明朝体", "YuMincho", "游明朝", "Yu Mincho",serif,"Meiryo","メイリオ",sans-serif;
}
@media screen and (max-width: 767px) {
	.modal h3.h3-con {
		margin: 0 0 1.5rem;
		font-size: 2rem;
		line-height: 3rem;
	}
}

.modal h4.h4-txt-ttl {
	margin: 0 0 2rem;
	font-size: 3rem;
	line-height: 5rem;
	font-family:YuMincho, "游明朝体", "YuMincho", "游明朝", "Yu Mincho",serif,"Meiryo","メイリオ",sans-serif;
}
@media screen and (max-width: 767px) {
	.modal h4.h4-txt-ttl {
		margin: 0 0 1.5rem;
		font-size: 2rem;
		line-height: 3.6rem;
	}
}

.modal h4.h4-txt-ttl.center {
	margin: 0 0 4rem;
	text-align: center;
	font-family:YuMincho, "游明朝体", "YuMincho", "游明朝", "Yu Mincho",serif,"Meiryo","メイリオ",sans-serif;
}
@media screen and (max-width: 767px) {
	.modal h4.h4-txt-ttl.center {
	margin: 0 0 2rem;
	}
}

.modal h4.h4-txt-ttl-right {
	position: absolute;
	right: -2rem;
	top: 1rem;
	color: #000;
	font-size: 6rem;
	font-family: 'Tangerine', sans-serif;
	transform: rotate(12deg);
}
.modal h4.h4-txt-ttl-right.roboto {
	font-size: 4rem;
	font-family: 'Roboto', sans-serif;
}
/* Tangerine = font-size 6rem  line-height none */
/* Roboto = font-size 4rem  line-height none */
@media screen and (max-width: 767px) {
	.modal h4.h4-txt-ttl-right {
		font-size: 5rem;
	}
	.modal h4.h4-txt-ttl-right.roboto {
		right: -1rem;
		top: 0;
		font-size: 2.3rem;
	}
}
/* Tangerine = font-size 5rem  line-height none */
/* Roboto = left: -1rem top: 0 font-size 2.3rem  line-height none */

.modal h4.h4-txt-ttl-left {
	position: absolute;
	left: -2rem;
	top: 1.5rem;
	color: #000;
	font-size: 6rem;
	font-family: 'Tangerine', sans-serif;
	transform: rotate(-12deg);
}
.modal h4.h4-txt-ttl-left.roboto {
	font-size: 4rem;
	font-family: 'Roboto', sans-serif;
}
/* Tangerine = font-size 6rem  line-height none */
/* Roboto = font-size 4rem  line-height none */
@media screen and (max-width: 767px) {
	.modal h4.h4-txt-ttl-left {
		font-size: 5rem;
	}
	.modal h4.h4-txt-ttl-left.roboto {
		left: -1rem;
		top: 0;
		font-size: 2.3rem;
	}
}
/* Tangerine = font-size 5rem  line-height none */
/* Roboto = left: -1rem top: 0 font-size 2.3rem  line-height none */

.modal h4.h4-con {
	position: relative;
	margin: 0 0 1rem;
	text-align: left;
	font-size: 1.8rem;
	line-height: 3.6rem;
}
@media screen and (max-width: 767px) {
	.modal h4.h4-con {
		margin: 0 0 2rem;
		font-size: 1.6rem;
		line-height: 3rem;
	}
}

.modal .ttl-wrp::before {
	padding: 5rem;
}

.modal .ttl-wrp {
	padding: calc(8rem + 30px) 6rem 8rem;
	color: #fff;
}
@media screen and (max-width: 768px) {
	.modal .ttl-wrp {
		padding: calc(5rem + 30px) 5rem 5rem;
	}
}
@media screen and (max-width: 767px) {
	.modal .ttl-wrp {
		padding: calc(4rem + 30px) 3rem 4rem;
	}
}

.modal .ttl-wrp::before {
	content: '';
	background: inherit;
	/* -webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-o-filter: blur(5px);
	-ms-filter: blur(5px);
	filter: blur(5px); */
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	z-index: -1;
	filter: brightness(50%);
}

.modal .trimWidth {
	margin: 0 auto;
	width: 80%;
}
@media screen and (max-width: 767px) {
	.trimWidth {
	width: 100%;
}
}

.modal .trimWrap {
	margin: 0 auto 4rem;
	width: 90%;
}
@media screen and (max-width: 767px) {
	.modal .trimWrap {
	margin: 0 auto 2rem;
	width: 100%;
}
}
.modal .trim {
    position: relative;
    width: 100%;
}
.modal .trim::before {
    content: "";
    display: block;
    padding-top: 60%;
}
@media screen and (max-width: 767px) {
	.trim::before {
    width: 100%;
	}
}
.modal .trim::after {
	content: '';
    position: absolute;
    top: 14px;
    left: 14px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    border: 1px solid rgba(255,255,255,0.4);
    box-sizing: border-box;
}
.modal .thumbnail {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal .con-txt-ph-0 {
	padding: 0 0 4rem;
	width: 100%;
}
@media screen and (max-width: 767px) {
	.modal .con-txt-ph-0 {
		padding: 0 0 3rem;
		max-width: 100%;
	}
}

.modal .con-txt-ph-0 img {
	object-fit: cover;
}

.modal .con-txt-ph-1 {
	float: left;
	padding: 0 5rem 4rem 0;
	max-width: 430px;
}
@media screen and (max-width: 768px) {
	.modal .con-txt-ph-1 {
		float: none;
		padding: 0 0 3rem;
		max-width: 100%;
	}
}

.modal .con-txt-ph-2 {
	float: right;
	padding: 0 0 4rem 5rem;
	max-width: 430px;
}
@media screen and (max-width: 768px) {
	.modal .con-txt-ph-2 {
		padding: 0 0 3rem;
		max-width: 100%;
	}
}

.modal .con-txt-ph-1 img,
.modal .con-txt-ph-2 img {
	border-radius: 0px;
}

.modal .txt-hr {
	margin: 0 auto 6rem;
	height: 1px;
	max-width: 70px;
	background: #ccc;
	border: none;
}
@media screen and (max-width: 767px) {
	.modal .txt-hr {
		margin: 0 auto 4rem;
	}
}

.modal .box-wrp {
	position: relative;
}
.modal .box-wrp::after {
	content: '';
	display: block;
	clear: both;
}

.modal .con-pickup-list {
	margin: 6rem auto 0;
	padding: 5rem 5rem calc(5rem - 1%);
	width: 100%;
	background: #f8f8f8;
	box-sizing: border-box;
}
@media screen and (max-width: 767px) {
	.modal .con-pickup-list {
		margin: 3rem auto 0;
		padding: 2rem 2rem calc(5rem - 3rem);
	}
}

.modal .con-pickup-list h5 {
	margin: 0 0 3rem;
	font-size: 2rem;
	line-height: 4rem;
	text-align: center;
	font-family:YuMincho, "游明朝体", "YuMincho", "游明朝", "Yu Mincho",serif,"Meiryo","メイリオ",sans-serif;
}
@media screen and (max-width: 767px) {
	.modal .con-pickup-list h5 {
		margin: 0;
		font-size: 1.8rem;
		line-height: 3rem;
	}
}

.modal .con-pickup-list hr {
	margin: 2rem 0 4rem;
	border: 0;
	height: 1px;
	width: 100%;
	background: #ccc;
}
@media screen and (max-width: 767px) {
	.modal .con-pickup-list hr {
		margin: 1.5rem 0 2rem;
	}
}

.modal .con-pickup-list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.modal .con-pickup-list ul li {
	margin: 0 0 2%;
	padding: 2rem;
	width: 49%;
	background: #fff;
	box-sizing: border-box;
}
@media screen and (max-width: 767px) {
	.modal .con-pickup-list ul li {
		margin: 0 0 1rem;
		width: 100%;
	}
}

.modal .con-dis-list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.modal .con-dis-list ul li {
	margin: 0;
	width: 48.3%;
	background: #f8f8f8;
}
@media screen and (max-width: 767px) {
	.modal .con-dis-list ul li {
		margin: 0 0 2rem;
		width: 100%;
	}
}
.modal .con-dis-list ul li:nth-child(n + 3) {
	margin: 4rem 0 0;
}
@media screen and (max-width: 767px) {
	.modal .con-dis-list ul li:nth-child(n + 3) {
		margin: 0 0 2rem;
	}
	.modal .con-dis-list ul li:last-child {
		margin: 0;
	}
}
.modal .con-dis-list ul li .inner {
	padding: 3rem;
	box-sizing: border-box;
}
@media screen and (max-width: 767px) {
	.modal .con-dis-list ul li .inner {
	padding: 2rem;
	}
}

.modal .con-dis-list ul li .list-img {
	position: relative;
}
.modal .con-dis-list ul li .list-img::before {
	content: '';
    position: absolute;
    top: 14px;
    left: 14px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    border: 1px solid rgba(255,255,255,0.4);
    box-sizing: border-box;
}

.modal .con-dis-list ul li .list-img img {
	object-fit: cover;
	height: 360px;
	width: 100%;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}
@media screen and (max-width: 767px) {
	.modal .con-dis-list ul li .list-img img {
		height: 200px;
	}
}

.modal .con-dis-list ul li h5 {
	margin: 0 0 1rem;
	font-size: 2rem;
}
@media screen and (max-width: 767px) {
	.modal .con-dis-list ul li h5 {
		font-size: 1.7rem;
		line-height: 3rem;
	}
}

.modal table.con-table {
	width: 100%;
	border-collapse: collapse;
}
@media screen and (max-width: 767px) {
	.modal table.con-table {
		border-bottom: 1px solid #ccc;
	}
}

.modal table.con-table td {
	padding: 2rem;
	border: 1px solid #ccc;
}

.modal table.con-table th {
	padding: 2rem;
	width: 250px;
	border: 1px solid #ccc;
	background: #f5f5f5;
	box-sizing: border-box;
}
@media screen and (max-width: 767px) {
	.modal table.con-table th,
	.modal table.con-table td {
		display: block;
		width: 100%;
		border-bottom: none;
		box-sizing: border-box;
	}
}

.modal ul.con-ul-col-1 li {
	position: relative;
	padding: 3rem 0 2rem 7rem;
	border-bottom: 1px solid #ccc;
}
.modal ul.con-ul-col-1 li::before {
	content: '-';
	position: absolute;
	top: 40%;
	left: 3rem;
}
.modal ul.con-ul-col-1 li p {
	font-size: 1.3rem;
	line-height: 2.6rem;
	letter-spacing: 0.2rem;
}

.modal .con-mb {
	margin: 0 0 6rem;
}
@media screen and (max-width: 767px) {
	.modal .con-mb {
		margin: 0 0 4rem;
	}
}

/* staff list */
.modal .con-ph-wrp {
	margin: 0 !important;
}

.modal .con-ph-hr {
	margin: 2rem auto 6rem;
}
@media screen and (max-width: 767px) {
	.modal .con-ph-hr {
		margin: 0 auto 4rem;
	}
}

.modal h3.con-ph-ttl {
	margin: 0 0 4rem;
	font-size: 3rem;
	line-height: 5.5rem;
	text-align: center;
}
@media screen and (max-width: 767px) {
	.modal h3.con-ph-ttl {
		margin: 0 0 2rem;
		font-size: 2rem;
		line-height: 3.4rem;
	}
}

.modal ul.con-ph-list {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 0 6rem;
}
@media screen and (max-width: 767px) {
	.modal ul.con-ph-list {
	margin: 0 0 4rem;
}
}

.modal ul.con-ph-list li {
	position: relative;
	width: calc(100% / 3 - 2.22rem);
}
@media screen and (max-width: 768px) {
	.modal ul.con-ph-list li {
		margin: 0 0 2rem;
		width: 100%;
	}
}
.modal ul.con-ph-list li:nth-child(n + 4) {
	margin: 4rem 0 0;
}
@media screen and (max-width: 768px) {
	.modal ul.con-ph-list li:nth-child(n + 4) {
	margin: 0 0 2rem;
	}
	.modal ul.con-ph-list li:last-child {
	margin: 0;
	}
}

.modal ul.con-ph-list::after{
	content:"";
	display: block;
	width: calc(100% / 3 - 2.22rem);
}

.modal ul.con-ph-list li .con-ph-list-img {
	overflow: hidden;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}

.modal ul.con-ph-list li .con-ph-list-img img {
	object-fit: cover;
	height: 500px;
	width: 100%;
	object-fit: cover;
	transition: 1s;
	cursor: pointer;
}
@media screen and (max-width: 767px) {
	.modal ul.con-ph-list li .con-ph-list-img img {
		height: 300px;
	}
}

.modal ul.con-ph-list li .con-ph-list-img img:hover {
	transform: scale(1.05);
}

.modal ul.con-ph-list li .con-ph-txtarea {
	padding: 3rem;
	background: #fff;
	border: 1px solid #dfdfdf;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
@media screen and (max-width: 767px) {
	.modal ul.con-ph-list li .con-ph-txtarea {
		padding: 2rem;
	}
}

.modal ul.con-ph-list li .con-ph-name-s {
	font-size: 0.8rem;
	line-height: 1.6rem;
	color: #aaa;
}
@media screen and (max-width: 767px) {
	.modal ul.con-ph-list li .con-ph-name-s {
		margin: 0 0 0.3rem;
	}
}

.modal ul.con-ph-list li .con-ph-name-m {
	font-size: 1.8rem;
	line-height: 3.6rem;
	font-weight: bold;
}
@media screen and (max-width: 767px) {
	.modal ul.con-ph-list li .con-ph-name-m {
		font-size: 1.4rem;
		line-height: 2.5rem;
	}
}

.modal ul.con-ph-list li i {
	position: absolute;
	right: 25px;
	top: 25px;
	color: #fff;
}
.modal ul.con-ph-list li i.fa-2x {
	font-size: 2.3rem;
}
@media screen and (max-width: 767px) {
	.modal ul.con-ph-list li i {
		right: 17px;
		top: 17px;
	}
	.modal ul.con-ph-list li i.fa-2x {
		font-size: 1.8rem;
	}
}


/* -- staff prof -- */
.modal .con-ph-prof {
}

.modal .con-ph-prof dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.modal .con-ph-prof dl:nth-child(n + 2) {
	margin: 4rem 0 0;
}

.modal .con-ph-prof dl:nth-child(even) {
	flex-flow: row-reverse;
}
@media screen and (max-width: 767px) {
	.modal .con-ph-prof dl:nth-child(even) {
		flex-flow: column;
	}
}

.modal .con-ph-prof dl dt {
	width: 34%;
}
@media screen and (max-width: 768px) {
	.modal .con-ph-prof dl dt {
		width: 40%;
	}
}
@media screen and (max-width: 767px) {
	.modal .con-ph-prof dl dt {
		margin: 0 0 2rem;
		width: 100%;
	}
}

.modal .con-ph-prof dl dd {
	width: 61.5%;
}
@media screen and (max-width: 768px) {
	.modal .con-ph-prof dl dd {
		width: 50.5%;
	}
}
@media screen and (max-width: 767px) {
	.modal .con-ph-prof dl dd {
		width: 100%;
	}
}

.modal .con-ph-prof dl:nth-child(odd) .con-ph-prof-wrp {
	position: relative;
}

.modal .con-ph-prof dl:nth-child(even) .con-ph-prof-wrp {
	position: relative;
}

.modal .con-ph-prof-wrp hr {
	margin: 1rem 0 4rem;
	width: 100%;
	height: 1px;
	background: #000;
	border: none;
}
@media screen and (max-width: 767px) {
	.modal .con-ph-prof-wrp hr {
		margin: 1rem 0 2rem;
	}
}

.modal .con-ph-prof-img {
	position: relative;
}
.modal .con-ph-prof-img img {
	border-radius: 0px;
}
.modal .con-ph-prof-subttl {
	font-size: 1.4rem;
	line-height: 3rem;
}
@media screen and (max-width: 767px) {
	.modal .con-ph-prof-subttl {
		line-height: 2.6rem;
	}
}
.modal .con-ph-prof-ttl {
	font-size: 3rem;
	line-height: 5rem;
	font-family:YuMincho, "游明朝体", "YuMincho", "游明朝", "Yu Mincho",serif,"Meiryo","メイリオ",sans-serif;
}
@media screen and (max-width: 767px) {
	.modal .con-ph-prof-ttl {
		font-size: 2rem;
		line-height: 3.4rem;
	}
}

.modal .con-ph-prof-dis {
	margin: 3rem 0 0;
	padding: 3rem;
	border: 1px solid #000;
	font-size: 1.2rem;
	line-height: 2.6rem;
}

/* -- staff prof -- */
.modal ol.flow li {
	position: relative;
	margin: 0 0 6rem;
	padding: 0 0 4rem;
	border-bottom: 1px dotted #aaa;
}
.modal ol.flow li::before {
	content: '';
	position: absolute;
	bottom: -17px;
	left: calc(50% - 100px);
	display: block;
	width: 0;
	height: 0;
	border-left: 100px solid transparent;
	border-right: 100px solid transparent;
	border-top: 16px solid #efefef;
}
.modal ol.flow li:last-child::before {
	display: none;
}
.modal ol.flow .num-wrp {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 1rem;
}

.modal ol.flow .num-wrp div:nth-child(1) {
	display: block;
	font-size: 2.8rem;
	line-height: 5rem;
	width: 35px;
	font-family: YuMincho, "游明朝体", "YuMincho", "游明朝", "Yu Mincho",serif,"Meiryo","メイリオ",sans-serif;
}
@media screen and (max-width: 767px) {
	.modal ol.flow .num-wrp div:nth-child(1) {
		font-size: 2rem;
		line-height: 4rem;
		width: 25px;
	}
}

.modal ol.flow .num-wrp div:nth-child(2) {
	width: calc(100% - 35px);
}

.modal ol.flow li:last-child {
	margin: 0 0 7rem;
}
@media screen and (max-width: 767px) {
	.modal ol.flow li:last-child {
		margin: 0 0 4rem;
	}
}
.modal ol.flow li img {
	border-radius: 0px;
}
.modal ol.flow .flow-ttl {
	font-size: 2.4rem;
	line-height: 5rem;
	font-family:YuMincho, "游明朝体", "YuMincho", "游明朝", "Yu Mincho",serif,"Meiryo","メイリオ",sans-serif;
}
@media screen and (max-width: 767px) {
	.modal ol.flow .flow-ttl {
		font-size: 1.4rem;
		line-height: 2.8rem;
	}
}
.modal ol.flow .flow-ph-wrp {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.modal ol.flow .flow-ph-wrp div:nth-child(1) {
	width: 300px;
}
@media screen and (max-width: 767px) {
	.modal ol.flow .flow-ph-wrp div:nth-child(1) {
		margin: 0 0 3rem;
		width: 100%;
	}
}
.modal ol.flow .flow-ph-wrp div:nth-child(1) img {
	object-fit: cover;
	width: 300px;
	height: 190px;
}
@media screen and (max-width: 767px) {
	.modal ol.flow .flow-ph-wrp div:nth-child(1) img {
		width: 100%;
		height: 25vh;
	}
}
.modal ol.flow .flow-ph-wrp div:nth-child(2) {
	width: calc(100% - 300px - 40px);
}
@media screen and (max-width: 767px) {
	.modal ol.flow .flow-ph-wrp div:nth-child(2) {
		width: 100%;
	}
}


/* -- Q&A (faq) -- */
.faq {
	margin: 0 0 7rem;
}
@media screen and (max-width: 767px) {
	.faq {
	margin: 0 0 6rem;
}
}
.faq li {
	padding: 3rem 3rem 3rem 7rem;
}
@media screen and (max-width: 767px) {
	.faq li {
		padding: 2rem 2rem 2rem 3rem;
	}
}
.faq .q {
	position: relative;
	border-bottom: 1px dotted #aaa;
	cursor: pointer;
}
.faq .q:hover {
	background: #fbfbfb;
}
@media screen and (max-width: 767px) {
	.faq .q:hover {
		background: #fff;
	}
}
.faq .q::before {
	content: '＋';
	position: absolute;
	top: 3.2rem;
	left: 3rem;
}
@media screen and (max-width: 767px) {
	.faq .q::before {
		top: calc(50% - 1.35rem);
		left: 0;
	}
}
.faq .a {
	display: none;
	background: #f1f1f1;
}

/* -- corp -- */
.corp-ph {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.corp-ph p {
	width: 100%;
}
.corp-ph p img {
	object-fit: cover;
	width: 100%;
	max-height: 400px;
	border-radius: 5px;
}
@media screen and (max-width: 767px) {
	.corp-ph p img {
		border-radius: 0;
	}
}

table.corp {
	margin: 0 auto 6rem;
	width: 100%;
	border-collapse:collapse;
	border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
	table.corp {
		margin: 0 auto 4rem;
	}
}
@media screen and (max-width: 767px) {
	table.corp {
		margin: 0 auto 3rem;
	}
}
table.corp th,
table.corp td {
	padding: 2rem;
	border: 1px solid #ccc;
	border-bottom: 0;
}
@media screen and (max-width: 767px) {
	table.corp th {
		padding: 1rem;
	}
	table.corp td {
		padding: 2rem;
	}
}
table.corp th {
	position: relative;
	width: 25%;
	background: #fff;
	font-size: 1.3rem;
	vertical-align: middle;
	text-align: center;
}
table.corp tr:nth-child(even) th {
	background: #f7f7f7;
}
@media screen and (max-width: 767px) {
	table.corp tr th {
		background: #f7f7f7;
	}
}
table.corp th.ttl::before {
	display: none;
}
table.corp td {
	background: #fff;
}
table td.corp-top {
	padding: 0;
	border: none;
	border-bottom: 0;
}
@media screen and (max-width: 767px) {
	table td.corp-top {
		padding: 0rem;
	}
	table.corp th,
	table.corp td {
		display: block;
		width: 100%;
		box-sizing: border-box;
	}
}


body {
	word-wrap: break-word;
	overflow-wrap: break-word;
	overflow-x: hidden;
}

img {
	width: 100%;
}

main {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

main > .lCol {
	position: fixed;
	width: 46%;
	height: 100%;
	background: #000;
}
@media screen and (max-width: 1365px) {
	main > .lCol {
		position: inherit;
		width: 100%;
		height: auto;
	}
}
@media screen and (max-width: 767px) {
	main > .lCol {
		position: inherit;
		width: 100%;
		height: auto;
	}
}

main > .rCol {
	position: absolute;
	right: 0;
	width: 54%;
	height: 100%;
}
@media screen and (max-width: 1365px) {
	main > .rCol {
		position: inherit;
		width: 100%;
	}
}
@media screen and (max-width: 767px) {
	main > .rCol {
		position: inherit;
		padding: 1rem;
		width: 100%;
		height: auto;
		box-sizing: border-box;
	}
}

aside {
	display: none;
}

main > .lCol a {
	display: block;
	padding: 0.5rem 0;
	color: #aaa;
}

main > .lCol a.now {
	color: #eee;
}

main > .lCol a:hover {
	color: #eee;
}

main > .lCol h1 {
	font-size: 2rem;
	line-height: 2rem;
}

main > .lCol h1 a {
	color: #fff;
}

main > .lCol .lcol-inner {
	position: relative;
}

main > .lCol #key {
	height: 100vh;
	z-index: 0;
}
@media screen and (max-width: 767px) {
	main > .lCol #key {
		z-index:3;
	}
}

main > .lCol #key h1 {
	position: absolute;
	top: calc(50% - 10rem);
	left: 5rem;
	color: #fff;
	font-size: 6rem;
	line-height: 8rem;
	font-family: 'Tangerine', sans-serif;
	z-index: 2;
}
main > .lCol #key h1.roboto {
	font-size: 8rem;
	line-height: 9rem;
	font-family: 'Roboto', sans-serif;
}
@media screen and (max-width: 767px) {
	main > .lCol #key h1 {
		top: 50%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
		-webkit-transform: translateY(-50%) translateX(-50%);
		font-size: 3rem;
		line-height: 5.5rem;
		text-align: center;
	}
	main > .lCol #key h1.roboto {
		font-size: 4rem;
		line-height: 5rem;
		font-family: 'Roboto', sans-serif;
	}
}

main > .lCol #key h1 span {
	display: block;
	margin: 0 0 0 1rem;
	font-size: 3rem;
}
main > .lCol #key h1.roboto span {
	font-size: 2rem;
}
@media screen and (max-width: 767px) {
	main > .lCol #key h1 span {
		font-size: 1.7rem;
	}
	main > .lCol #key h1.roboto span {
		font-size: 1.5rem;
	}
}

main > .lCol #key h1 img {
	max-width: calc(100% - 5rem);
}

main > .lCol #key h1 a {
	display: none;
}

main > .lCol #key h1 a.now {
	display: block;
}

main > .lCol #key .keyText.jp.serif {
	font-size: 4rem;
	font-family: serif;
	line-height: 6rem;
	letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
	main > .lCol #key .keyText.jp.serif {
		margin: 0 0 2rem;
		font-size: 2.3rem;
		line-height: 4rem;
		width: 80%;
		letter-spacing: 0.1rem;
	}
	main > .lCol #key .keyText.jp.serif span {
		margin: 0;
		display: block;
		font-size: 1.5rem;
	}
}

main > .lCol #key .keyText.jp.gothic {
	font-size: 4rem;
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
	line-height: 6rem;
	letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
	main > .lCol #key .keyText.jp.gothic {
		margin: 0 0 2rem;
		font-size: 2.3rem;
		line-height: 4rem;
		width: 80%;
		letter-spacing: 0.1rem;
	}
	main > .lCol #key .keyText.jp.gothic span {
		margin: 0;
		display: block;
		font-size: 1.5rem;
	}
}

main > .lCol #key video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	object-fit: cover;
	z-index: 1;
	filter: brightness(80%);
}

main > .lCol .copyright {
	position: absolute;
	bottom: 5rem;
	left: 5rem;
	color: #aaa;
}

main > .rCol a {
	color: #333;
}

main > .rCol .rCol-inner {
	margin: 2rem;
}
@media screen and (max-width: 1366px) {
	main > .rCol .rCol-inner {
		margin: 2rem;
	}
}
@media screen and (max-width: 767px) {
	main > .rCol .rCol-inner {
		margin: 0;
	}
}

section .inner {
	position: relative;
	padding: 7rem 5rem;
	background: #fff;
}
@media screen and (max-width: 767px) {
	section .inner {
		padding: 5rem 3rem;
	}
}

section .inner h2 {
	position: relative;
	margin: 0 0 5rem;
	font-size: 5rem;
	line-height: 5rem;
	font-family: 'Tangerine', sans-serif;
	text-align: center;
}
section .inner h2.roboto {
	font-size: 3rem;
	line-height: 3rem;
	font-family: 'Roboto', sans-serif;
}
section .inner h2.jp.gothic {
	font-size: 3rem;
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
	line-height: 3rem;
	letter-spacing: 0.1rem;
}
section .inner h2.jp.serif {
	font-size: 3rem;
	font-family: serif;
	line-height: 3rem;
	letter-spacing: 0.1rem;
}
/* Tangerine = font-size 5rem  line-height 5rem */
/* Roboto = font-size 3rem  line-height 3rem */
/* jp gothic = font-size 3rem  line-height 3rem */
/* jp serif = font-size 3rem  line-height 3rem */
@media screen and (max-width: 767px) {
	section .inner h2 {
		font-size: 3.5rem;
		line-height: 5rem;
	}
	section .inner h2.roboto {
		font-size: 2.5rem;
		line-height: 3.4rem;
	}
	section .inner h2.jp.gothic {
		font-size: 2rem;
		line-height: 3.4rem;
	}
	section .inner h2.jp.serif {
		font-size: 2rem;
		line-height: 3.4rem;
	}
}
/* Tangerine = font-size 3.5rem  line-height 5rem */
/* Roboto = font-size 2.5rem  line-height 5rem */
/* jp gothic = font-size 2rem  line-height 4rem */
/* jp serif = font-size 2rem  line-height 4rem */

section.sdw::before {
    content: '';
    display: inherit;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0,0,0,0.4);
    z-index: -1;
}

section .h2-b {
	color: #333;
}
section .h2-b::before {
	content: '';
	position: absolute;
	bottom: -1rem;
	left: calc(50% - 3px);
	width: 3px;
	height: 3px;
	background: #333;
	transform: rotate(45deg);
}
section .h2-b::after {
	content: '';
	position: absolute;
	bottom: -1rem;
	left: calc(50% + 3px);
	width: 3px;
	height: 3px;
	background: #aaa;
	transform: rotate(45deg);
}
section .dis-b {
	margin: 0 0 6rem;
	color: #000;
	text-align: center;
}
@media screen and (max-width: 767px) {
	section .dis-b {
		margin: 0 0 5rem;
	}
}
section .h2-w {
	color: #fff;
}
section .h2-w::before {
	content: '';
	position: absolute;
	bottom: -1rem;
	left: calc(50% - 3px);
	width: 3px;
	height: 3px;
	background: #333;
	transform: rotate(45deg);
}
section .h2-w::after {
	content: '';
	position: absolute;
	bottom: -1rem;
	left: calc(50% + 3px);
	width: 3px;
	height: 3px;
	background: #aaa;
	transform: rotate(45deg);
}
section .dis-w {
	margin: 0 0 6rem;
	color: #fff;
	text-align: center;
}
@media screen and (max-width: 767px) {
	section .dis-w {
		margin: 0 0 5rem;
	}
}

header#menu-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 2;
}
@media screen and (max-width: 1365px) {
	header#menu-wrap {
		display: none;
	}
}

header#menu-wrap .inner {
	overflow: hidden;
	padding: 5rem;
	width: 100%;
	box-sizing: border-box;
}

header#menu-wrap h1 {
	float: left;
}

header#menu-wrap nav {
	float: right;
	text-align: right;
	font-size: 1.4rem;
	line-height: 2.2rem;
}

#menu-wrap-sp {
	position: fixed;
	top: 100px;
	right: 0;
	z-index: 5;
	transition: 0.5s;
	opacity: 0;
}

#menu-wrap-sp.view {
	opacity: 1 !important;
}

#menu-wrap-sp.left {
	right: auto;
	left: 0;
}

#menu-wrap-sp button {
	display: none;
}
@media screen and (max-width: 767px) {
	#menu-wrap-sp button {
		display: block;
		padding: 11px 10px;
		width: 35px;
		background: #333;
		border: none;
		color: #fff;
		box-sizing: border-box;
		border-top-left-radius: 5px;
		border-bottom-left-radius: 5px;
	}
	#menu-wrap-sp.left button {
		border-top-left-radius: 0;
		border-top-right-radius: 5px;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 5px;
	}
}

nav.sp {
	display: none;
}
@media screen and (max-width: 767px) {
	#menu-wrap-sp.right nav.sp {
		display: block;
		width: 35px;
		height: 100%;
		transition: all 0.2s;
		transform: translate(40px);
		position: fixed;
		top: 150px;
		right: 0;
		z-index: 5;
		text-align: center;
		color: #fff;
	}
	#menu-wrap-sp.left nav.sp {
		display: block;
		width: 35px;
		height: 100%;
		transition: all 0.2s;
		transform: translate(-40px);
		position: fixed;
		top: 150px;
		left: 0;
		z-index: 5;
		text-align: center;
		color: #fff;
	}
	#menu-wrap-sp.right nav.sp ul {
		position: relative;
		padding: 0.25rem 0;
		background: #333;
		border-top-left-radius: 5px;
		border-bottom-left-radius: 5px;
	}
	#menu-wrap-sp.left nav.sp ul {
		position: relative;
		padding: 0.25rem 0;
		background: #333;
		border-top-right-radius: 5px;
		border-bottom-right-radius: 5px;
	}
	nav.sp ul li {
		margin: 1rem 0;
	}
	nav.sp a {
		color: #666;
	}
	#menu-wrap-sp.left nav.open,
	#menu-wrap-sp.right nav.open {
		transform: translate(0);
	}
	nav.sp ul li a.now{
		color: #fff !important;
	}
}

aside.choice {
	display: none;
}
@media screen and (max-width: 767px) {
	aside.choice {
		display: block;
	}
}
@media screen and (max-width: 767px) {
	.scroll {
		overflow: hidden;
	}
}

.overlay {
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	position: fixed;
	z-index: 10;
}
.btn-area {
	position: absolute;
	top: 0;
	left: 50%;
	width: 100%;
	height: 100vh;
	margin-left: -50%;
	z-index:2;
	color: #fff;
	box-sizing: border-box;
	text-align: center;
}
.btn-area::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
	filter: blur(0px) brightness(60%);
	z-index: -1;
}
.btn-area .inner {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}
.btn-area .ttlTxt {
	font-size: 2rem;
}
.btn-area .flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 3rem 0;
}
.btn-area .flex > div {
	padding: 1rem 1rem 2rem;
	width: 47%;
	color: #000;
	background: #fff;
	box-sizing: border-box;
	font-weight: bold;
	border-radius: 5px;
}
.btn-area .flex .ttl {
	margin: 0 0 2rem;
	padding: 0.7rem 1rem 1rem;
	color: #fff;
	background: #333;
	border-radius: 5px;
}
.btn-area .flex span {
	display: block;
	color: #bbb;
	font-size: 1rem;
	line-height: 1.6rem;
}
.btn-area .hand img {
	width: 100%;
}



/*-- address --*/
.address {
	padding: 1rem 3rem;
	color: #fff;
	background: #313131;
	font-family: 'Questrial', sans-serif;
	text-align: center;
}
@media screen and (max-width: 767px) {
	.address {
		padding: 2rem 3rem;
		text-align: left;
	}
}

.address .inner {
	margin: 0 auto;
	max-width: 1260px;
}
@media screen and (max-width: 767px) {
	.address .inner {
		padding: 0 3rem;
	}
}

.address .sp {
	display: none;
}
@media screen and (max-width: 767px) {
	.address .sp {
		display: block;
	}
}

.address span {
	padding: 0 0.5rem 0 0;
	color: #b9b9b9;
}

.address span.tel {
	margin: 0 0 0 4rem;
}
@media screen and (max-width: 767px) {
	.address  span.tel {
		margin: 0;
	}
}


footer {
	width: 100%;
	color: #fff;
	background: #222;
	box-sizing: border-box;
}

footer .inner {
	position: relative;
	margin: 0 auto;
	padding: 10rem 5rem 1rem;
	max-width: 1260px;
	box-sizing: border-box;
}
@media screen and (max-width: 767px) {
	footer .inner {
		padding: 6rem 4rem 0;
	}
}

section.sec-m-bottom {
	margin: 0 0 2rem;
}
@media screen and (max-width: 767px) {
	section.sec-m-bottom {
		margin: 0 0 1rem;
	}
}

/* コンテンツ */

/* 広告枠 */
.rCol .bnr {
	position: relative;
	margin: 0 0 3rem;
}
.rCol .bnr {
	display: flex;
	align-items: center;
	position: relative;
	margin: 0 auto 3rem;
	max-width: 1160px;
	height: 250px;
}
@media screen and (max-width: 1366px) {
	.rCol .bnr {
		height: 170px;
	}
}
@media screen and (max-width: 1280px) {
	.rCol .bnr {
		height: 250px;
	}
}
@media screen and (max-width: 768px) {
	.rCol .bnr {
		margin: 0 auto 3rem;
		height: 177px;
	}
}
@media screen and (max-width: 767px) {
	.rCol .bnr {
		margin: 0 0 1rem;
	}
}
@media screen and (max-width: 600px) {
	.rCol .bnr {
		height: 150px;
	}
}
@media screen and (max-width: 450px) {
	.rCol .bnr {
		height: 110px;
	}
}
@media screen and (max-width: 414px) {
	.rCol .bnr {
		height: 99px;
	}
}
@media screen and (max-width: 375px) {
	.rCol .bnr {
		height: 89px;
	}
}
@media screen and (max-width: 320px) {
	.rCol .bnr {
		height: 75px;
	}
}
.rCol .bnr p {
	margin: 0 auto;
}
.rCol .bnr img {
	object-fit: cover;
	text-align: center;
}
@media screen and (max-width: 767px) {
	.rCol .bnr img {
	}
}

.rCol .bnr p.text {
	padding: 6rem;
	background: #fff;
	text-align: center;
}

section#top {
	margin: 0 0 2rem;
}
@media screen and (max-width: 767px) {
	section#top {
		margin: 0 0 1rem;
	}
}

section#top .inner {
	padding: 5rem;
	text-align: center;
}
@media screen and (max-width: 767px) {
	section#top .inner {
		padding: 3rem;
		height: auto;
	}
}

section#top .inner .border {
	padding: 8rem 6rem 15rem;
	border: 1px solid #d7d7d7;
}
@media screen and (max-width: 767px) {
	section#top .inner .border {
		height: auto;
		padding: 3rem 3rem 4rem;
	}
}

section#top .inner .text-area {

}
@media screen and (max-width: 767px) {
	section#top .inner .text-area {

	}
}

section.con .inner {
	text-align: left;
}

section.con ul.content-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

section.con ul.content-list li {
	width: 47.8%;
}
@media screen and (max-width: 767px) {
	section.con ul.content-list li:first-child {
		margin: 0 0 5rem;
	}
	section.con ul.content-list li {
		margin: 6rem 0;
		width: 100%;
	}
}

section.con ul.content-list li:nth-child(even) {
	margin: 6rem 0 3rem;
}
@media screen and (max-width: 767px) {
	section.con ul.content-list li:nth-child(even) {
		margin: 0;
	}
}

section.con ul.content-list li.col1 {
	margin: 3rem auto 0;
	width: 100%;
}
@media screen and (max-width: 767px) {
	section.con ul.content-list li.col1 {
		margin: 5rem 0 0;
	}
}

section.con .inner ul li p.subTitle {
	color: #888;
	font-size: 1rem;
	line-height: 1.4rem;
	font-family: "メイリオ", serif;
}

section.con .inner ul li p.text {
	font-size: 1.2rem;
	line-height: 2.6rem;
}
@media screen and (max-width: 767px) {
	section.con .inner ul li p.text {
		font-size: 1.1rem;
		line-height: 2.3rem;
	}
}

section.con .inner ul li a.udLin h3 {
	position: relative;
	display: inline-block;
	text-decoration: none;
	font-family:YuMincho, "游明朝体", "YuMincho", "游明朝", "Yu Mincho",serif,"Meiryo","メイリオ",sans-serif;
}
section.con .inner ul li a.udLin h3::after {
	position: absolute;
	bottom: 3px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #333;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform .3s;
}
section.con .inner ul li a.udLin:hover h3::after {
	transform: scale(1, 1);
}
section.con .inner ul li h3 {
	margin-bottom: 0.4em;
	font-size: 2.5rem;
	line-height: 4rem;
}
@media screen and (max-width: 767px) {
	section.con .inner ul li h3 {
		font-size: 2rem;
		line-height: 3rem;
	}
}

section.con .inner ul li .keyImgWrap {
	position: relative;
	margin: 0 0 2.6rem;
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 767px) {
	section.con .inner ul li .keyImgWrap {
		margin: 0 0 3rem;
	}
}
section.con .inner ul li .keyImgWrap::before {
	content: '';
	position: absolute;
	top: 1rem;
	left: 10px;
	width: 100%;
	height: 100%;
	background: #ddd;
	box-sizing: border-box;
	z-index: 0;
}

section.con .inner ul li p.keyImg {
	position: relative;
	overflow: hidden;
	border-radius: 0px;
	background: #000;
}

section.con .inner ul li p.keyImg img {
	object-fit: cover;
	width: 100%;
	height: 280px;
	border-radius: 0px;
	-webkit-transition: 0.5s;
	-moz-transition: 1s;
}
@media screen and (max-width: 1366px) {
	section.con .inner ul li p.keyImg img {
		height: 180px;
	}
}
@media screen and (max-width: 1365px) {
	section.con .inner ul li p.keyImg img {
		height: 320px;
	}
}
@media screen and (max-width: 768px) {
	section.con .inner ul li p.keyImg img {
		height: 240px;
	}
}
@media screen and (max-width: 767px) {
	section.con .inner ul li p.keyImg img {
		height: 300px;
	}
}
@media screen and (max-width: 500px) {
	section.con .inner ul li p.keyImg img {
		height: 250px;
	}
}
@media screen and (max-width: 414px) {
	section.con .inner ul li p.keyImg img {
		height: 220px;
	}
}
@media screen and (max-width: 375px) {
	section.con .inner ul li p.keyImg img {
		height: 190px;
	}
}
@media screen and (max-width: 320px) {
	section.con .inner ul li p.keyImg img {
		height: 156px;
	}
}

section.con .inner ul li p.keyImg img:hover {
	transform: scale(1.05);
	opacity: 0.6;
}

section.con .inner ul li p i {
	position: absolute;
	right: 25px;
	top: 25px;
	color: #fff;
}
section.con .inner ul li p i.fa-2x {
	font-size: 2.3rem;
}
@media screen and (max-width: 767px) {
	section.con .inner ul li p i {
		right: 17px;
		top: 17px;
	}
	section.con .inner ul li p i.fa-2x {
		font-size: 1.8rem;
	}
}


/*-- gallery --*/

.tabs {
	display: table;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 60px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
	.tabs {
		width: calc(100% - 6rem);
		height: auto;
		margin: 3rem;
	}
}
.tabs > label {
	display: flex;
	padding: 1rem 0;
	align-items: center;
	width: calc(100% / 3);
	height: auto;
	border-bottom: 1px solid rgba(255,255,255,0.5);
	box-sizing: border-box;
	cursor: pointer;
}
@media screen and (max-width: 767px) {
	.tabs > label {
		width: calc(100% / 2);
		height: 100%;
	}
}

.tabs > label span {
	display: inline-block;
	margin: 0 auto;
}
/*タブのスタイル*/
.tab_item {
  display: block;
  width: 100%;
	height: 100%;
  line-height: 2.8rem;
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
  float: left;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
	.tab_item {
		padding: 0.6rem 0;
	}
}
.tab_item:hover {
  opacity: 0.75;
}
@media screen and (max-width: 767px) {
	.tab_item:hover {
		opacity: 1;
	}
}

input[name="tab_item"] {
  display: none;
}

.tab_content {
  display: none;
  padding: 3rem 0 0;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

#all:checked ~ #all_content,
#tab01:checked ~ #tab01_content,
#tab02:checked ~ #tab02_content,
#tab03:checked ~ #tab03_content,
#tab04:checked ~ #tab04_content,
#tab05:checked ~ #tab05_content,
#tab06:checked ~ #tab06_content,
#tab07:checked ~ #tab07_content,
#tab08:checked ~ #tab08_content,
#tab09:checked ~ #tab09_content {
  display: block;
}

.tabs input:checked + .tab_item {
  background-color: #fff;
  color: #333;
}

section.gallery {
	position: relative;
	z-index: 0;
}
section.gallery #gallery {
	width: 100%;
	height: 100%;
}
section.gallery .inner {
	margin: 0 auto;
	padding: 10rem calc(60px + 3rem) 10rem;
	max-width: 960px;
	box-sizing: border-box;
	background: none;
}
@media screen and (max-width: 767px) {
	section.gallery .inner {
		padding: 5rem 3rem 7rem;
	}
}
section.gallery .innerWidth {
	max-width: 100%;
}
@media screen and (max-width: 1366px) {
	section.gallery .innerWidth {
		margin: 0 auto;
		max-width: 960px;
	}
}
@media screen and (max-width: 767px) {
	section.gallery .innerWidth {
		padding: 0;
	}
}

section.gallery h2 {
	color: #fff;
}

section.gallery .inner .galleryWrap ul.thumb-item li img {
	object-fit: cover;
	height: 500px;
}
@media screen and (max-width: 1366px) {
	section.gallery .inner .galleryWrap ul.thumb-item li img {
		height: 350px;
	}
}
@media screen and (max-width: 1365px) {
	section.gallery .inner .galleryWrap ul.thumb-item li img {
		height: 500px;
	}
}
@media screen and (max-width: 768px) {
	section.gallery .inner .galleryWrap ul.thumb-item li img {
		height: 350px;
	}
}
@media screen and (max-width: 767px) {
	section.gallery .inner .galleryWrap ul.thumb-item li img {
		height: 350px;
	}
}
@media screen and (max-width: 600px) {
	section.gallery .inner .galleryWrap ul.thumb-item li img {
		height: 300px;
	}
}
@media screen and (max-width: 500px) {
	section.gallery .inner .galleryWrap ul.thumb-item li img {
		height: 250px;
	}
}
@media screen and (max-width: 414px) {
	section.gallery .inner .galleryWrap ul.thumb-item li img {
		height: 220px;
	}
}
@media screen and (max-width: 375px) {
	section.gallery .inner .galleryWrap ul.thumb-item li img {
		height: 190px;
	}
}
@media screen and (max-width: 320px) {
	section.gallery .inner .galleryWrap ul.thumb-item li img {
		height: 140px;
	}
}


section.gallery .thumb-item-nav li img {
	object-fit: cover;
	height: 80px;
	cursor: pointer;
}
@media screen and (max-width: 1600px) {
	section.gallery .thumb-item-nav li img {
		height: 70px;
	}
}
@media screen and (max-width: 1500px) {
	section.gallery .thumb-item-nav li img {
		height: 60px;
	}
}
@media screen and (max-width: 1400px) {
	section.gallery .thumb-item-nav li img {
		height: 50px;
	}
}
@media screen and (max-width: 1366px) {
	section.gallery .thumb-item-nav li img {
		height: 60px;
	}
}
@media screen and (max-width: 1365px) {
	section.gallery .thumb-item-nav li img {
		height: 82px;
	}
}
@media screen and (max-width: 1000px) {
	section.gallery .thumb-item-nav li img {
		height: 70px;
	}
}
@media screen and (max-width: 900px) {
	section.gallery .thumb-item-nav li img {
		height: 65px;
	}
}
@media screen and (max-width: 800px) {
	section.gallery .thumb-item-nav li img {
		height: 60px;
	}
}
@media screen and (max-width: 768px) {
	section.gallery .thumb-item-nav li img {
		height: 58px;
	}
}
@media screen and (max-width: 767px) {
	section.gallery .thumb-item-nav li img {
		height: 70px;
	}
}
@media screen and (max-width: 766px) {
	section.gallery .thumb-item-nav li img {
		height: 100px;
	}
}
@media screen and (max-width: 650px) {
	section.gallery .thumb-item-nav li img {
		height: 88px;
	}
}
@media screen and (max-width: 550px) {
	section.gallery .thumb-item-nav li img {
		height: 80px;
	}
}
@media screen and (max-width: 500px) {
	section.gallery .thumb-item-nav li img {
		height: 70px;
	}
}
@media screen and (max-width: 450px) {
	section.gallery .thumb-item-nav li img {
		height: 60px;
	}
}
@media screen and (max-width: 414px) {
	section.gallery .thumb-item-nav li img {
		height: 55px;
	}
}
@media screen and (max-width: 375px) {
	section.gallery .thumb-item-nav li img {
		height: 45px;
	}
}
@media screen and (max-width: 320px) {
	section.gallery .thumb-item-nav li img {
		height: 35px;
	}
}

section.gallery .thumb-item-nav .slick-current {
	position: relative;
	z-index: 1;
}

section.gallery .thumb-item-nav .slick-current::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	box-sizing: border-box;
}

section.gallery .thumb-item-nav .slick-active {
	opacity: 0.5;
}

section.gallery .thumb-item-nav .slick-current {
	position: relative;
	opacity: 1;
	z-index: 1;
}

section.gallery .prev-arrow {
	position: absolute;
	top: calc(50%);
	left: -40px;
	z-index: 3;
	cursor: pointer;
	width: 20px;
}
@media screen and (max-width: 767px) {
	section.gallery .prev-arrow {
		top: calc(50%);
		left: -20px;
		width: 10px;
	}
}

section.gallery .next-arrow {
	position: absolute;
	top: calc(50%);
	right: -40px;
	z-index: 3;
	cursor: pointer;
	width: 20px;
}
@media screen and (max-width: 767px) {
	section.gallery .next-arrow {
		top: calc(50%);
		right: -20px;
		width: 10px;
	}
}
section.gallery .sliderWrap {
	margin: 0 0 6rem;
}
@media screen and (max-width: 767px) {
	section.gallery .sliderWrap {
		margin: 0 0 4rem;
	}
}

@media screen and (max-width: 767px) {
	.photoListWrap {
		padding: 0;
	}
}
.modalPhoto {
	background: none;
}
.modalPhoto .tabsWrap {
	min-height: calc(100vh - 4rem);
}
@media screen and (max-width: 767px) {
	.modalPhoto .tabsWrap {
	min-height: calc(100vh - 6rem);
}
}
.photoListWrap .moreBtn {
	display: block;
	margin: 5rem auto 0;
	padding: 6px;
	color: #fff;
	letter-spacing: 0.1rem;
	width: 200px;
	box-sizing: border-box;
	text-align: center;
	border: 1px #fff solid;
	cursor: pointer;
	transition: 0.3s;
}
@media screen and (max-width: 767px) {
	
}
.photoListWrap div:last-child {
	display: none !important;
}

.photoList {
	display: inline-block;
	width: 100%;
}
.photoList ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.photoList ul::after{
  content:"";
  display: block;
  width: calc(100% / 3 - 0.3rem);
}
.photoList li {
	position: relative;
	margin: 0 0 0.6rem;
	width: calc(100% / 3 - 0.3rem);
}
@media screen and (max-width: 767px) {
	.photoList li {
		width: calc(100% / 2 - 0.3rem);
	}
}

.photoList li i {
	position: absolute;
	top: 22px;
	right: 22px;
	color: #fff;
	font-size: 2.3rem;
	z-index: 1;
}
@media screen and (max-width: 767px) {
	.photoList li i {
		top: 8px;
		right: 8px;
		font-size: 1.4rem;
	}
}
.photoList li p {
	overflow: hidden;
}
.photoList li img {
	width: 100%;
	height: 286px;
	transition: 0.3s;
	object-fit: cover;
}
@media screen and (max-width: 1500px) {
	.photoList li img {
	height: 270px;
	}
}
@media screen and (max-width: 1400px) {
	.photoList li img {
	height: 250px;
	}
}
@media screen and (max-width: 1300px) {
	.photoList li img {
	height: 230px;
	}
}
@media screen and (max-width: 1200px) {
	.photoList li img {
	height: 220px;
	}
}
@media screen and (max-width: 1100px) {
	.photoList li img {
	height: 200px;
	}
}
@media screen and (max-width: 1000px) {
	.photoList li img {
	height: 180px;
	}
}
@media screen and (max-width: 900px) {
	.photoList li img {
	height: 160px;
	}
}
@media screen and (max-width: 767px) {
	.photoList li img {
	height: 220px;
	}
}
@media screen and (max-width: 600px) {
	.photoList li img {
	height: 180px;
	}
}
@media screen and (max-width: 500px) {
	.photoList li img {
	height: 140px;
	}
}
@media screen and (max-width: 414px) {
	.photoList li img {
	height: 110px;
	}
}
@media screen and (max-width: 375px) {
	.photoList li img {
	height: 100px;
	}
}
@media screen and (max-width: 320px) {
	.photoList li img {
	height: 75px;
	}
}
.photoList li img:hover {
	transform: scale(1.05);
}
section.gallery .photoListBtn {
	position: relative;
	display: block;
	margin: 0 auto;
	padding: 6px;
	color: #fff;
	letter-spacing: 0.1rem;
	width: 200px;
	box-sizing: border-box;
	text-align: center;
	border: 1px #fff solid;
	cursor: pointer;
	transition: 0.3s;
}
section.gallery .photoListBtn:hover {
	opacity: 0.6;
}
section.gallery .photoListBtnWrap {
	margin: 10px auto 0;
}
section.gallery .photoListBtnWrap a {
	color: #fff;
}
section.gallery .photoListBtnWrap a span {
	padding: 0 0 0 2.1rem;
}
section.gallery .photoListBtnWrap i {
	position: absolute;
	top: calc(50% - 0.7rem);
	left: 14px;
	color: #fff;
	font-size: 1.4rem;
}
/*-- priceList --*/
section.priceList {
}

section.priceList .inner {
	margin: 0 auto;
	padding: 10rem calc(60px + 4rem) 10rem;
	max-width: 1260px;
	box-sizing: border-box;
}
@media screen and (max-width: 1366px) {
	section.priceList .inner {
		max-width: 960px;
	}
}
@media screen and (max-width: 767px) {
	section.priceList .inner {
		padding: 5rem 3rem 4rem;
	}
}


/*-- priceList --*/
section.priceList {
}

section.priceList .inner {
	margin: 0 auto;
	padding: 10rem calc(60px + 3rem) 10rem;
	box-sizing: border-box;
	background: none;
}
@media screen and (max-width: 1366px) {
	section.priceList .inner {
		margin: 0 auto;
		padding: 10rem calc(60px + 3rem) 10rem;
		max-width: 960px;
		background: none;
	}
}
@media screen and (max-width: 767px) {
	section.priceList .inner {
		padding: 5rem 3rem 4rem;
	}
}


/*-- priceList priceA --*/
section.priceList .priceA {
	margin: 0 0 12rem;
}
@media screen and (max-width: 767px) {
	section.priceList .priceA {
		margin: 0 0 7rem;
	}
}

section.priceList .priceA ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
section.priceList .priceA ul li {
	display: inline-block;
	vertical-align: top;
	background: #f5f5f5;
}
@media screen and (max-width: 767px) {
	section.priceList .priceA ul li {
		width: 100%;
	}
}
section.priceList .priceA ul::after {
	content: "";
	display: block;
	width: calc(100% / 3);
}
@media screen and (max-width: 767px) {
	section.priceList .priceA ul::after {
		width: 100%;
	}
}
section.priceList .priceA ul li .ttl {
	padding: 0 0 2.6rem;
	background: #fff;
	vertical-align: middle;
	text-align: center;
	font-family: 'Questrial', sans-serif;
}
@media screen and (max-width: 767px) {
	section.priceList .priceA ul li .ttl {
		padding: 0 0 3rem;
	}
}
section.priceList .priceA ul li .ttl span {
	font-size: 3rem;
	line-height: 4rem;
}
@media screen and (max-width: 767px) {
	section.priceList .priceA ul li .ttl span {
		font-size: 3rem;
		line-height: 4rem;
	}
}
section.priceList .priceA ul li .ttl img {
	overflow: hidden;
	margin: 0 0 1.4rem;
	object-fit: cover;
	width: 100%;
	height: 500px;
	border-radius: 5px;
}
@media screen and (max-width: 1500px) {
	section.priceList .priceA ul li .ttl img {
		height: 400px;
	}
}
@media screen and (max-width: 1400px) {
	section.priceList .priceA ul li .ttl img {
		height: 400px;
	}
}
@media screen and (max-width: 769px) {
	section.priceList .priceA ul li .ttl img {
		height: 400px;
	}
}
@media screen and (max-width: 768px) {
	section.priceList .priceA ul li .ttl img {
		margin: 0 0 1rem;
		height: 350px;
	}
}
@media screen and (max-width: 767px) {
	section.priceList .priceA ul li .ttl img {
		height: 300px;
	}
}
@media screen and (max-width: 600px) {
	section.priceList .priceA ul li .ttl img {
		height: 250px;
	}
}
@media screen and (max-width: 500px) {
	section.priceList .priceA ul li .ttl img {
		height: 400px;
	}
}
@media screen and (max-width: 414px) {
	section.priceList .priceA ul li .ttl img {
		height: 350px;
	}
}
@media screen and (max-width: 375px) {
	section.priceList .priceA ul li .ttl img {
		height: 300px;
	}
}
@media screen and (max-width: 320px) {
	section.priceList .priceA ul li .ttl img {
		height: 250px;
	}
}
section.priceList .priceA ul li .txt {
	position: relative;
	padding: 3.5rem;
	border-top: 1px solid #aaa;
	text-align: left;
	vertical-align: top;
}
@media screen and (max-width: 767px) {
	section.priceList .priceA ul li .txt {
		padding: 2rem;
	}
}
section.priceList .priceA ul li .txt::before {
	content: '';
	position: absolute;
	top: -15px;
	left: 50%;
	height: 30px;
	width: 1px;
	background: #aaa;
}

/*-- priceList priceB --*/
section.priceList table.priceB {
	margin: 0 0 4.3rem;
	width: 100%;
	background: #fff;
	font-size: 1.4rem;
	border-collapse: collapse;
	font-family: 'Questrial', sans-serif;
}
@media screen and (max-width: 767px) {
	section.priceList table.priceB {
		margin: 0 0 3rem;
		font-size: 1.2rem;
	}
}

section.priceList table.priceB th {
	padding: 1em;
	border: 1px solid #b9b9b9;
	vertical-align: middle;
}

section.priceList table.priceB tr:nth-child(n + 2) th {
	border-right: none;
	width: 50%;
}

section.priceList table.priceB td {
	padding: 1em;
	border: 1px solid #b9b9b9;
	text-align: center;
	vertical-align: middle;
}

section.priceList table.priceB tr:nth-child(n + 2) td {
	border-left: none;
	font-weight: bold;
	max-width: 50%;
}

section.priceList table.priceB tr:nth-child(even) {
	background: #fafafa;
}

/*-- priceList priceC ---*/
section.priceList table.priceC {
	margin: 0 0 4.3rem;
	width: 100%;
	background: #fff;
	border: 1px solid #b9b9b9;
	font-size: 1.4rem;
	border-collapse: collapse;
	font-family: 'Questrial', sans-serif;
}
@media screen and (max-width: 767px) {
	section.priceList table.priceC {
		font-size: 1.2rem;
	}
}

section.priceList table.priceC th {
	padding: 1em;
	border: 1px solid #b9b9b9;
	vertical-align: middle;
}

section.priceList table.priceC tr:nth-child(n + 2) th {
	border-right: none;
}

section.priceList table.priceC td {
	padding: 1em;
	border: 1px solid #b9b9b9;
	text-align: center;
	vertical-align: middle;
}

section.priceList table.priceC tr td:nth-child(3) {
	color: #d94905;
	font-weight: bold;
}

section.priceList table.priceC tr:nth-child(n + 2) td {
	border-left: none;
	font-weight: bold;
}

section.priceList table.priceC tr:nth-child(even) {
	background: #fafafa;
}

/*-- priceList table custom --*/
section.priceList table {
	margin: 0 auto 2rem;
}

section.priceList table:last-child {
	margin: 0 !important;
}
@media screen and (max-width: 767px) {
	section.priceList table:last-child {
		margin: 0 0 3rem !important;
	}
}


/*-- slider costom --*/
#price .slider {
	position: relative;
	margin: 0 auto;
	max-width: 100%;
}

#price .slick-slide:not(.slick-center) {
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0.3;
	transition: opacity 0.4s;
}

#price .slider li {
	transition: 0.2s linear;
	cursor: pointer;
}

#price .slider .slick-slide:not(.slick-center) {
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
	transition: 0.2s linear;
}
@media screen and (max-width: 767px) {
	#price .slider .slick-slide:not(.slick-center) {
		-webkit-transform: scale(0.9);
		-moz-transform: scale(0.9);
		-ms-transform: scale(0.9);
		-o-transform: scale(0.9);
		transform: scale(0.9);
		transition: 0.2s linear;
	}
}

@media screen and (max-width: 767px) {
	#price .slider .slick-list {
		padding: 0 12% 0 0 !important;
	}
}

#price .next-arrow {
	position: absolute;
	top: 50%;
	right: -40px;
	z-index: 3;
	cursor: pointer;
	width: 20px;
}
@media screen and (max-width: 767px) {
	#price .next-arrow {
		top: calc(50% - 20px);
		right: -20px;
		width: 10px;
	}
}
#price .prev-arrow {
	position: absolute;
	top: 50%;
	left: -40px;
	z-index: 3;
	cursor: pointer;
	width: 20px;
}
@media screen and (max-width: 767px) {
	#price .prev-arrow {
		top: calc(50% - 20px);
		left: -20px;
		width: 10px;
	}
}



/*-- businessDay --*/
section.businessDay {
	position: relative;
	z-index: 0;
}

section.businessDay .inner {
	margin: 0 auto;
	padding: 10rem 5rem 5rem;
	box-sizing: border-box;
	background: none;
}
@media screen and (max-width: 767px) {
	section.businessDay .inner {
		padding: 5rem 3rem 3rem;
	}
}


/*-- businessDay businessA --*/
section.businessDay table.businessA {
	margin: 0 0 5rem;
	width: 100%;
	font-size: 1.4rem;
	text-align: center;
	border: 1px #fff solid;
	border-collapse: collapse;
	color: #fff;
}
@media screen and (max-width: 767px) {
	section.businessDay table.businessA {
		margin: 0 0 3rem;
		border-top: 0;
		border-bottom: 1px #fff solid;
	}
	section.businessDay table.businessA.bk {
		border-collapse: collapse;
		border: none;
		border-bottom: 1px #666 solid;
	}
}

section.businessDay table td span:first-child {
	display: none;
}

@media screen and (max-width: 767px) {
	section.businessDay table.businessA .thead {
		display: none;
	}
	section.businessDay table td span:first-child {
		display: block;
		padding: 1rem 0;
		float: left;
		width: 50%;
		border-right: 1px #fff solid;
		box-sizing: border-box;
	}
	section.businessDay table.bk td span:first-child {
		border-right: 1px #666 solid;
	}
	section.businessDay table td span:last-child {
		display: block;
		padding: 1rem 0;
		float: left;
		text-align: center;
		width: 50%;
		color: #fff !important;
		background: none;
	}
	section.businessDay table.businessA tr,
	section.businessDay table.businessAtd{
		display: block;
		width: 100%;
		position: relative;
	}

	section.businessDay table.businessA tr {
	}
}

section.businessDay table.businessA th {
	padding: 1em;
	width: 10%;
	background: #fff;
	color: #000;
	border: 1px #ccc solid;
	font-weight: bold;
}
section.businessDay table.businessA.bk th {
	background: #333;
	color: #fff;
	border: 1px #666 solid;
}
@media screen and (max-width: 767px) {
	section.businessDay table.businessA th {
		display: block;
		border: none;
	}
}

section.businessDay table.businessA th:nth-child(7) {
	color: #0c64c5;
	background: #edf0f3;
	font-weight: bold;
}
section.businessDay table.businessA.bk th:nth-child(7) {
	color: #fff;
	background: #1e3c5d;
}

section.businessDay table.businessA th:nth-child(8) {
	color: #d06666;
	background: #f1dddd;
	font-weight: bold;
}
section.businessDay table.businessA.bk th:nth-child(8) {
	color: #fff;
	background: #7b2c2c;
}

section.businessDay table.businessA th:first-child {
	width: 20%;
}

section.businessDay table.businessA td {
	overflow: hidden;
	padding: 1.5rem;
	border: 1px #fff solid;
	vertical-align: middle;
}
section.businessDay table.businessA.bk td {
	color: #fff;
	border-left: 1px #666 solid;
	border-right: 1px #666 solid;
	border-bottom: 1px #666 solid;
}
section.businessDay table.businessA td:first-child {
	background: none;
}
@media screen and (max-width: 767px) {
	section.businessDay table.businessA td:first-child {
		padding: 1rem 1rem 0;
		color: #000;
		border-top: 1px #fff solid;
		background: #fff;
		font-weight: bold;
	}
	section.businessDay table.businessA.bk td:first-child {
		border: 1px #666 solid;
	}
	section.businessDay table.businessA td:last-child {
		border-bottom: none;
	}
	section.businessDay table.businessA td {
		overflow: hidden;
		display: block;
		padding: 0;
		border: none;
		border-bottom: 1px #fff solid;
	}
}

@media screen and (max-width: 767px) {
	section.businessDay table.businessA.bk td:first-child {
		color: #fff;
		background: #333;
	}
}

section.businessDay table.businessA td .am {
	position: relative;
	padding: 0 0 1.4rem;
}
@media screen and (max-width: 767px) {
	section.businessDay table.businessA td .am,
	section.businessDay table.businessA td .pm {
		margin: 0;
		float: left;
	}
	section.businessDay table.businessA td .am {
		padding: 0 3rem 0 0;
	}
	section.businessDay table.businessA td .ampm {
		overflow: hidden;
		display:inline-block;
		margin: 0 auto;
	}
}
section.businessDay table.businessA td .am::before {
	content: '';
	position: absolute;
	bottom: 4px;
	left: calc(50% - 1px);
	width: 2px;
	height: 10px;
	background: #ccc;
}
@media screen and (max-width: 767px) {
	section.businessDay table.businessA td .am::before {
		left: calc(100% - 2rem);
		bottom: 1.5rem;
		width: 10px;
		height: 1px;
		background: #000;
	}
	section.businessDay table.businessA.bk td .am::before {
		background: #fff;
	}
}

@media screen and (max-width: 767px) {
	section.businessDay table.businessA td:nth-child(7) span,
	section.businessDay table.businessB td:nth-child(7) span {
		color: #fff;
		background: #1e3c5d;
		background-color: rgba(12,100,197,0.2);
		font-weight: bold;
	}
	section.businessDay table.businessA td:nth-child(8) span,
	section.businessDay table.businessB td:nth-child(8) span {
		color: #fff;
		background: #7b2c2c;
		background-color: rgba(228,138,138,0.3);
		font-weight: bold;
	}
}


/*-- businessDay businessB --*/
section.businessDay table.businessB {
	margin: 0 0 5rem;
	width: 100%;
	font-size: 1.4rem;
	text-align: center;
	border: 1px #fff solid;
	border-collapse:collapse;
	color: #fff;
}
@media screen and (max-width: 767px) {
	section.businessDay table.businessB {
		margin: 0 0 3rem;
		border-top: 0;
		border-bottom: 0;
	}
	section.businessDay table.businessB.bk {
		border: none;
	}
}

@media screen and (max-width: 767px) {
	section.businessDay table.businessB .thead {
		display: none;
	}
	section.businessDay table.businessB tr,
	section.businessDay table.businessBtd{
		display: block;
		width: 100%;
		position: relative;
	}
	section.businessDay table.businessB tr {
	}
}

section.businessDay table.businessB th {
	padding: 1em;
	width: 10%;
	background: #fff;
	color: #000;
	border: 1px #ccc solid;
	font-weight: bold;
}
@media screen and (max-width: 767px) {
	section.businessDay table.businessB th {
		display: block;
		border: none;
	}
}

section.businessDay table.businessB.bk th {
	background: #333;
	color: #fff;
	border: 1px #666 solid;
}

section.businessDay table.businessB th:nth-child(7) {
	color: #0c64c5;
	background: #edf0f3;
	font-weight: bold;
}
section.businessDay table.businessB.bk th:nth-child(7) {
	color: #fff;
	background: #1e3c5d;
}

section.businessDay table.businessB th:nth-child(8) {
	color: #d06666;
	background: #f1dddd;
	font-weight: bold;
}
section.businessDay table.businessB.bk th:nth-child(8) {
	color: #fff;
	background: #7b2c2c;
}

section.businessDay table.businessB th:first-child {
	width: 20%;
}

section.businessDay table.businessB td {
	overflow: hidden;
	padding: 1em;
	border: 1px #fff solid;
	vertical-align: middle;
}
section.businessDay table.businessB td:first-child {
	background: none;
}
@media screen and (max-width: 767px) {
	section.businessDay table.businessB td:first-child {
		padding: 1rem;
		color: #000;
		border-top: 1px #fff solid;
		background: #fff;
		font-weight: bold;
	}
	section.businessDay table.businessB td {
		display: block;
		padding: 0;
		border: none;
		border-bottom: 1px #fff solid;
	}
}
section.businessDay table.businessB.bk td {
	color: #fff;
	border: 1px #666 solid;
}
@media screen and (max-width: 767px) {
	section.businessDay table.businessB.bk td {
		border: 0;
		border-bottom: 1px #666 solid;
		border-left: 1px #666 solid;
		border-right: 1px #666 solid;
	}
	section.businessDay table.businessB.bk td:first-child {
		color: #fff;
		background: #333;
	}
}

section.businessDay table.businessB td .am {
	position: relative;
	margin: 0 0 0.3rem;
	padding: 0 0 2.3rem;
}
section.businessDay table.businessB td .am::before {
	content: '';
	position: absolute;
	bottom: 7px;
	left: calc(50% - 1px);
	width: 1px;
	height: 10px;
	background: #ccc;
}

/*-- businessDay businessText --*/
section.businessDay .businessText {
	margin: 0 0 5rem;
	padding: 5rem;
	color: #fff;
	border: 1px solid #fff;
	text-align: center;
}
@media screen and (max-width: 767px) {
	section.businessDay .businessText {
		margin: 0 0 3rem;
		padding: 2rem;
	}
}
section.businessDay .businessText.bk {
	border: 1px solid #666;
}


/*-- access googleMap --*/
section.googleMap {
	width: 100%;
	color: #fff;
	text-align: center;
}

section.googleMap .inner {
	margin: 0 auto;
	padding: 10rem 5rem;
	box-sizing: border-box;
	background: none;
}
@media screen and (max-width: 767px) {
	section.googleMap .inner {
		padding: 5rem 3rem 6rem;
	}
}

section.googleMap iframe {
	margin: 0 0 1rem;
	width: 100%;
	height: 400px;
}
@media screen and (max-width: 767px) {
	section.googleMap iframe {
		height: 300px;
	}
}

section.googleMap .caution {
	color: #888;
	font-size: 1.2rem;
	line-height: 2.5rem;
	text-align: right;
}
@media screen and (max-width: 767px) {
	section.googleMap .caution {
		font-size: 1.1rem;
		line-height: 2.3rem;
		text-align: left;
	}
}


/*-- news & blog --*/
section.post {
	position: relative;
	width: 100%;
	color: #fff;
	font-family: 'Questrial', sans-serif;
	letter-spacing: 0.1rem;
	z-index: 0;
}

section.post .news ul li a {
	display: block;
    padding: 2.4rem 0 0.4rem;
    color: #000;
    transition: 0.2s;
}
@media screen and (max-width: 767px) {
	section.post .news ul li a {
		padding: 3rem 0 0.5rem;
	}
}
section.post .news ul li:first-child a {
	padding: 0 0 0.4rem;
}
section.post .news ul li a:hover {
	color: #aaa;
}

section.post .blog ul li a {
	display: block;
	color: #333;
	transition: 0.2s;
}
@media screen and (max-width: 767px) {
	section.post .blog ul li a {
		padding: 0;
	}
}
section.post .blog ul li a:hover {
	color: #aaa;
}

@media screen and (max-width: 767px) {
	section.post .blog ul li:first-child a {
		padding: 2rem 0 0;
	}
	section.post .col1 .blog ul li > div:nth-child(2) a {
		padding: 0;
	}
}

section.post .inner {
	margin: 0 auto;
	padding: 10rem 5rem;
	box-sizing: border-box;
}
@media screen and (max-width: 767px) {
	section.post .inner {
		padding: 5rem 3rem 6rem;
	}
}

section.post .col1 {
	display: block;
}

section.post .col1 .news h2,
section.post .col1 .blog h2 {
	margin: 0 0 2.8rem;
	font-size: 4rem;
	color: #333;
}
@media screen and (max-width: 767px) {
	section.post .col1 .news h2,
	section.post .col1 .blog h2 {
		margin: 0;
	}
}

section.post .col1 .news {
	margin: 0 0 6rem;
}

section.post .col1 .news,
section.post .col1 .blog {
	position: relative;
	padding: 6rem 5rem 0;
	width: 100%;
	color: #333;
	background: #fff;
	box-sizing: border-box;
}
@media screen and (max-width: 767px) {
	section.post .col1 .news {
		margin: 0 0 3rem;
	}
	section.post .col1 .news,
	section.post .col1 .blog {
		padding: 3rem 3rem 0;
		width: 100%;
	}
}
@media screen and (max-width: 340px) {
	section.post .col1 .news,
	section.post .col1 .blog {
		padding: 3rem 2rem 0;
		width: 100%;
	}
}

section.post .col1 .news p,
section.post .col1 .blog p {
	font-size: 1.4rem;
	line-height: 2.8rem;
	width: 100%;
}
@media screen and (max-width: 1280px) {
	section.post .col1 .news p,
	section.post .col1 .blog p {
		font-size: 1.2rem;
		line-height: 3rem;
	}
}

section.post .col1 .news ul,
section.post .col1 .blog ul {
	margin: 0 0 5rem
}

section.post .col1 .news ul li,
section.post .col1 .blog ul li {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-bottom: 1px solid #555;
}

section.post .col1 .blog ul li {
	padding: 2.4rem 0 0;
}
@media screen and (max-width: 767px) {
	section.post .col1 .blog ul li {
		margin: 0 0 2.4rem;
		padding: 0 0 1.2rem;
	}
}

section.post .col1 .blog ul li:first-child {
	padding: 0;
}
@media screen and (max-width: 767px) {
	section.post .col1 .blog ul li:first-child {
		padding: 2rem 0 1.2rem;
	}
}

section.post .col1 .news ul li span.date,
.newslist .date {
		display: inline-block;
		margin: 0 0 0.4rem;
		padding: 0 1rem;
	background: #eee;
		font-size: 1rem;
	line-height: 2rem;
	}

@media screen and (max-width: 767px) {
	section.post .col1 .news ul li span.date {
		position: inherit;
		display: inline-block;
		margin: 0 2rem 0 0;
		padding: 0 1rem;
		text-align: left;
		line-height: 2.4rem;
	}
}

section.post .col1 .blog ul li .postImg img {
	width: 100%;
	height: 120px;
	object-fit: cover;
}
@media screen and (max-width: 767px) {
	section.post .col1 .blog ul li .postImg img {
		height: 200px;
	}
}
@media screen and (max-width: 500px) {
	section.post .col1 .blog ul li .postImg img {
		height: 190px;
	}
}
@media screen and (max-width: 414px) {
	section.post .col1 .blog ul li .postImg img {
		height: 180px;
	}
}
@media screen and (max-width: 375px) {
	section.post .col1 .blog ul li .postImg img {
		height: 150px;
	}
}
@media screen and (max-width: 320px) {
	section.post .col1 .blog ul li .postImg img {
		height: 126px;
	}
}

section.post .col1 .blog ul li > div:nth-child(1) {
	width: 190px;
}
@media screen and (max-width: 767px) {
	section.post .col1 .blog ul li > div:nth-child(1) {
		width: 100%;
	}
}

section.post .col1 .blog ul li > div:nth-child(2) {
	width: calc(100% - 190px - 2rem);
}
@media screen and (max-width: 767px) {
	section.post .col1 .blog ul li > div:nth-child(2) {
		width: 100%;
	}
}

section.post .col1 .blog ul li span.date {
	display: inline-block;
    margin: 0 2rem 0.4rem 0;
    padding: 0 1rem;
    font-size: 1.1rem;
    line-height: 2rem;
    background: #eee;
    letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
	section.post .col1 .blog ul li span.date {
		display: inline-block;
		margin: 1.6rem 0 0.4rem;
    padding: 0.2rem 1rem;
    font-size: 1.1rem;
    text-align: left;
    line-height: 2rem;
	}
}

section.post .col1 .news .more,
section.post .col1 .blog .more {
	position: relative;
	text-align: center;
	margin: 0 auto;
	width: 177.5px;
}

section.post .col1 .news .more a,
section.post .col1 .blog .more a {
	display: inline-block;
	padding: 0.6rem 7rem;
	color: #fff;
	background: #333;
	transition: 0.3s;
}

section.post .col1 .news .more a:hover,
section.post .col1 .blog .more a:hover {
	background: #555;
}

section.post .col1 .news .more i,
section.post .col1 .blog .more i {
	position: absolute;
	top: 50%;
	left: 15px;
	color: #fff;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}


/*-- social --*/
section.social {
	color: #fff;
}
section.social .inner {
	margin: 0 auto;
	padding: 10rem 60px;
	max-width: 1260px;
	box-sizing: border-box;
}
@media screen and (max-width: 767px) {
	section.social .inner {
		padding: 5rem 3rem 6rem;
	}
}


/* contactform */
.contactForm .box {
	width: 100%;
	border: 1px solid #333;
	box-sizing: border-box;
}

/* contactform */
.contactForm .box {
	padding: 5rem 5rem 0;
    width: 100%;
    border: 1px solid #ddd;
    box-sizing: border-box;
}
@media screen and (max-width: 767px) {
	.contactForm .box {
	padding: 2.4rem 2.4rem 0;
	}
}
.wpcf7-form input,
.wpcf7-form textarea {
	padding: 1.4rem;
	width: 100%;
	background: #eee;
	box-sizing: border-box;
	border: none;
	line-height: 2.4rem;
}
@media screen and (max-width: 767px) {
	.wpcf7-form input,
	.wpcf7-form textarea {
		padding: 0.7rem 1rem;
	}
}
.contact-list > li {
	margin: 0 0 3rem;
}
@media screen and (max-width: 767px) {
	.contact-list > li {
	margin: 0 0 1.5rem;
}
}
.contact-list label span {
	display: block;
	margin: 0 0 0.3rem;
	color: #333;
	font-weight: bold;
}
@media screen and (max-width: 767px) {
	.contact-list label span {
		font-size: 1.2rem;
	}
}
.wpcf7-not-valid-tip {
	color: #f00 !important;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
	padding: 1.4rem;
	background: rgba(0, 0, 0, 0.05);
	border: none;
}
@media screen and (max-width: 767px) {
	input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
	padding: 0.7rem 1rem;
	}
}
input.wpcf7-submit {
	margin: 0 25%;
	width: 50%;
	height: auto;
	background: #000;
	color: #fff;
	font-size: 1.5rem;
	border: none;
	box-sizing: border-box;
	transition: 0.3s;
	cursor: pointer;
}
@media screen and (max-width: 767px) {
	input.wpcf7-submit {
		display: block;
		margin: 0 auto;
		width: 175px;
		font-size: 1.2rem;
	}
}
input.wpcf7-submit:hover {
	background: #555;
}

div.wpcf7 .ajax-loader {
	display: none !important;
}

div.wpcf7-response-output {
	margin: 3rem 0 4rem !important;
	padding: 3rem !important;
}
@media screen and (max-width: 767px) {
	div.wpcf7-response-output {
		margin: 2rem 0 3rem !important;
		padding: 1.4rem !important;
	}
}

div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
	color: #fff;
	border: 0 !important;
	background: #e2a60b;
	font-size: 1.2rem;
}

div.wpcf7-mail-sent-ok {
	color: #fff;
	background: #1169b3 !important;
	border: none !important;
	font-size: 1.2rem;
}


/*-- footer col1 --*/
footer .col1 {
	margin: 0 0 5rem;
	width: 100%;
}
@media screen and (max-width: 767px) {
	footer .col1 {
		margin: 0 0 3rem;
	}
}

footer .sitemap ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
footer .sitemap ul::before,
footer .sitemap ul::after {
	content: "";
	display: block;
	width: calc(100% / 4 - 1rem);
	height: 0;
}
footer .sitemap ul::before {
	order: 1;
}

footer .sitemap li {
	position: relative;
	margin: 0 0 1.5rem;
	width: calc(100% / 4 - 1rem);
	background: #333;
}
@media screen and (max-width: 767px) {
	footer .sitemap li {
		width: 48%;
		font-size: 1rem;
	}
}

footer .sitemap li i {
	position: absolute;
	top: 17px;
	left: 20px;
}
@media screen and (max-width: 767px) {
	footer .sitemap li i {
		top: 19px;
		left: 15px;
	}
}

footer .sitemap li a {
	display: block;
	padding: 1rem 2rem 1rem calc(2rem + 32px);
	width: 100%;
	color: #fff;
	box-sizing: border-box;
	transition: 0.6s;
}
@media screen and (max-width: 767px) {
	footer .sitemap li a {
		padding: 1rem 1rem 1rem calc(1rem + 25px);
	}
}

footer .sitemap li a:hover {
	background: #555;
}

/*-- footer col2 --*/
footer .col2 {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 5rem;
	width: 100%;
	justify-content: space-between;
}
@media screen and (max-width: 767px) {
	footer .col2 {
		margin: 0 0 4rem;
	}
}

footer .colL,
footer .colR {
	width: calc(100% / 2 - 2.12rem);
	box-sizing: border-box;
}
@media screen and (max-width: 767px) {
	footer .colL,
	footer .colR {
		width: 100%;
	}
}

footer .colL {
	padding: 3rem;
	color: #000;
	background: #eee;
	box-sizing: border-box;
}
@media screen and (max-width: 767px) {
	footer .colL {
		padding: 3rem;
		margin: 0 0 4rem;
	}
}

footer h2 {
	margin: 0 0 2rem;
	color: #777;
	font-size: 1.6rem;
	font-family: 'Questrial', sans-serif;
	line-height: 3.2rem;
}
@media screen and (max-width: 767px) {
	footer h2 {
		text-align: center;
	}
}

footer .colC ul {
	overflow: hidden;
	width: 100%;
}

footer .colC ul li {
	float: left;
	overflow: hidden;
	margin: 0 2% 2% 0;
	width: 32%;
}

footer .colC ul li:nth-child(3n) {
	margin-right: 0;
}

footer .colC ul li img {
	object-fit: cover;
	width: 100%;
	height: 80px;
}

footer .colR table {
	width: 100%;
}
@media screen and (max-width: 767px) {
	footer .colR table {
		font-size: 1.2rem;
		line-height: 2.4rem;
	}
}

footer .colR table th {
	width: 100px;
	text-align: left;
}

footer .colR table th,
footer .colR table td {
	padding: 1rem;
	border-bottom: 1px solid #555;
}

/*-- return --*/
footer .return a {
	position: absolute;
	display: block;
	top: 0;
	right: 60px;
	color: #fff;
	padding: 0.4rem 6rem;
	background: #333;
	text-align: center;
	transition: 0.7s;
}
@media screen and (max-width: 1300px) {
	footer .return a {
		right: 3rem;
	}
}
@media screen and (max-width: 767px) {
	footer .return a {
		top: auto;
		bottom: 85px;
		right: 50%;
		width: 100px;
		transform: translateX(50%);
		-webkit-transform: translateX(50%);
		-moz-transform: translateX(50%);
	}
}

footer .return a:hover {
	background: #444;
}

/*-- copyright --*/
footer .copyright {
	padding: 3em 0 0.6em;
	text-align: center;
}

footer .copyright span {
	padding: 0 2rem;
	color: #ccc;
}
@media screen and (max-width: 767px) {
	footer .copyright span {
		display: none;
	}
}

footer .copyright a {
	color: #fff;
}

footer .copyright br.sp {
	display: none;
}
@media screen and (max-width: 767px) {
	footer .copyright br.sp {
		display: block;
	}
}



aside.choice {
	display: none;
}
@media screen and (max-width: 767px) {
	aside.choice {
		display: block;
	}
}
@media screen and (max-width: 767px) {
	.scroll {
		overflow: hidden;
	}
}

.overlay {
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	position: fixed;
	z-index: 10;
}
.btn-area {
	position: absolute;
	left: 50%;
	width: 100%;
	height: 100vh;
	margin-left: -50%;
	z-index:2;
	color: #fff;
	box-sizing: border-box;
	text-align: center;
}
@media screen and (max-width: 370px) {
	.btn-area {
		height: 110vh;
	}
}
.btn-area::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
	filter: blur(0px) brightness(60%);
	z-index: -1;
}
.btn-area .inner {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}
.btn-area .ttlTxt {
	font-size: 2rem;
}
.btn-area .flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 3rem 0;
}
.btn-area .flex > div {
	padding: 1rem 1rem 2rem;
	width: 47%;
	color: #000;
	background: #fff;
	box-sizing: border-box;
	font-weight: bold;
	border-radius: 5px;
}
.btn-area .flex .ttl {
	margin: 0 0 2rem;
	padding: 0.7rem 1rem 1rem;
	color: #fff;
	background: #333;
	border-radius: 5px;
}
.btn-area .flex span {
	display: block;
	color: #bbb;
	font-size: 1rem;
	line-height: 1.6rem;
}
.btn-area .hand img {
	width: 100%;
}

.sp-fixed-footerMenu {
	position: fixed;
	right: 0;
	bottom: 0;
	background: #111;
	z-index: 2;
	font-size: 5rem;
	border-top-left-radius: 5px;
}
@media screen and (max-width: 767px) {
	.sp-fixed-footerMenu {
		display: none;
	}
}
.sp-fixed-footerMenu i {
	padding: 2rem;
	color: #fff;
}


/* ----------------------------------------

single.php

 ---------------------------------------- */

.singleInner {
  padding: 5rem;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
	.singleInner {
		padding: 5rem;
	}
}
@media screen and (max-width: 767px) {
	.singleInner {
		padding: 0;
	}
	.singleInner .contentArea{
		padding: 4rem 3rem;
	}
}
.singleInner.mb1 {
	padding: 5rem 5rem 4rem;
	width: 100%;
	box-sizing: border-box;
}
@media screen and (max-width: 767px) {
	.singleInner.mb1 {
		padding: 4rem 3rem;
	}
}
.singleInner img {
	max-width: 100%;
	width: auto;
	height: auto;
	text-align: center;
}
.singleInner .singleNavi {
	overflow: hidden;
	margin: 0 0 1rem;
}
.singleInner .singleNavi li {
	float: left;
}
.singleInner .singleNavi li:nth-child(1) {
	margin: 0 1.8rem 0 0;
	padding: 0 1rem;
	background: #eee;
}
.singleInner .singleNavi li:nth-child(2) p {
	line-height: 2.8rem;
}
.singleInner h1 {
	margin: 0 0 3.5rem;
	font-size: 2.4rem;
	line-height: 4.4rem;
	font-family:YuMincho, "游明朝体", "YuMincho", "游明朝", "Yu Mincho",serif,"Meiryo","メイリオ",sans-serif;
}
@media screen and (max-width: 767px) {
	.singleInner h1 {
		margin: 0 0 2rem;
		font-size: 2rem;
		line-height: 4rem;
	}
}
.singleInner .singlePage {
	padding: 4rem;
	background: #eee;
}
@media screen and (max-width: 767px) {
	.singleInner .singlePage {
		padding: 3rem;
	}
}
.singleInner .singleListTtl {
	margin: -7.2rem 0 4rem -4rem;
	text-align: left;
	font-size: 1.1rem;
	font-weight: bold;
}
@media screen and (max-width: 767px) {
	.singleInner .singleListTtl {
		margin: -6rem 0 3.2rem -3rem;
		text-align: left;
		font-size: 1.1rem;
		font-weight: bold;
	}
}
.singleInner .singleListTtl span {
	background: #eee;
	padding: 2rem 8rem;
}
@media screen and (max-width: 767px) {
	.singleInner .singleListTtl span {
		background: #eee;
		padding: 1rem 3rem 2rem;
	}
}
.singleInner .singleList > ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.singleInner .singleList > ul > li {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 0 2.4rem;
	width: 48%;
	border-bottom: 1px solid #000;
	box-sizing: border-box;
}
.singleInner .singleList > ul > li:nth-last-child(-n+2) {
	margin: 0;
}
@media screen and (max-width: 767px) {
	.singleInner .singleList > ul > li {
		margin: 0 0 2rem;
		width: calc(100% / 2 - 1rem);
	}
	.singleInner .singleList > ul > li:nth-last-child(n+2) {
		margin: 0 0 2rem;
	}
	.singleInner .singleList > ul > li:nth-last-child {
		margin: 0;
	}
}
.singleInner .singleList.news > ul > li {
	padding: 0 0 0.8rem;
	width: 100%;
	border-bottom: 1px solid #aaa;
	box-sizing: border-box;
}
.singleInner .singleList > ul > li p {
	line-height: 2.5rem;
}
@media screen and (max-width: 767px) {
	.singleInner .singleList > ul > li p {
		font-size: 1.1rem;
		line-height: 2rem;
	}
}
.singleInner .singleList.news li:nth-last-child(-n+2) {
	margin: 0 0 2.4rem
}
.singleInner .singleList.news li:last-child {
	margin: 0;
}
.singleInner .singleList li div:nth-child(1) {
	width: 45%;
}
@media screen and (max-width: 768px) {
	.singleInner .singleNews li div:nth-child(1) {
		width: 100%;
	}
}
@media screen and (max-width: 767px) {
	.singleInner .singleList li div:nth-child(1) {
		width: 100%;
	}
}
.singleInner .singleList.news li.newslist div {
	width: 100%;
}
.singleInner .singleList li div:nth-child(2) {
	width: 51%;
}
@media screen and (max-width: 767px) {
	.singleInner .singleList li div:nth-child(2) {
		padding: 1.2rem 0;
		width: 100%;
	}
}
.singleInner.mb1 .singleList li img {
	height: 160px;
}
@media screen and (max-width: 1366px) {
	.singleInner.mb1 .singleList li img {
		height: 160px;
	}
}
@media screen and (max-width: 1300px) {
	.singleInner.mb1 .singleList li img {
		height: 143px;
	}
}
@media screen and (max-width: 1200px) {
	.singleInner.mb1 .singleList li img {
		height: 133px;
	}
}
@media screen and (max-width: 1100px) {
	.singleInner.mb1 .singleList li img {
		height: 123px;
	}
}
@media screen and (max-width: 1000px) {
	.singleInner.mb1 .singleList li img {
		height: 113px;
	}
}
@media screen and (max-width: 900px) {
	.singleInner.mb1 .singleList li img {
		height: 103px;
	}
}
@media screen and (max-width: 800px) {
	.singleInner.mb1 .singleList li img {
		height: 93px;
	}
}
@media screen and (max-width: 768px) {
	.singleInner.mb1 .singleList li img {
		height: 86px;
	}
}
@media screen and (max-width: 767px) {
	.singleInner.mb1 .singleList li img {
		height: 210px;
	}
}
@media screen and (max-width: 700px) {
	.singleInner.mb1 .singleList li img {
		height: 200px;
	}
}
@media screen and (max-width: 600px) {
	.singleInner.mb1 .singleList li img {
		height: 164px;
	}
}
@media screen and (max-width: 500px) {
	.singleInner.mb1 .singleList li img {
		height: 133px;
	}
}
@media screen and (max-width: 414px) {
	.singleInner.mb1 .singleList li img {
		height: 108px;
	}
}
@media screen and (max-width: 375px) {
	.singleInner.mb1 .singleList li img {
		height: 96px;
	}
}
@media screen and (max-width: 320px) {
	.singleInner.mb1 .singleList li img {
		height: 73px;
	}
}

.singleInner .singleList li img {
	width: 100%;
	height: 150px;
	object-fit: cover;
}
@media screen and (max-width: 768px) {
	.singleInner .singleList li img {
		height: 110px;
	}
}
@media screen and (max-width: 767px) {
	.singleInner .singleList li img {
		height: 200px;
	}
}
@media screen and (max-width: 600px) {
	.singleInner .singleList li img {
		height: 170px;
	}
}
@media screen and (max-width: 500px) {
	.singleInner .singleList li img {
		height: 135px;
	}
}
@media screen and (max-width: 414px) {
	.singleInner .singleList li img {
		height: 105px;
	}
}
@media screen and (max-width: 375px) {
	.singleInner .singleList li img {
		height: 90px;
	}
}
@media screen and (max-width: 320px) {
	.singleInner .singleList li img {
		height: 62px;
	}
}
.singleInner .singleList li div:nth-child(2) .date {
	display: inline-block;
	margin: 0 0 0.6rem;
	padding: 0 1rem;
	font-size: 1rem;
	background: #eee;
}
@media screen and (max-width: 767px) {
	.singleInner .singleList li div:nth-child(2) .date {
		margin: 0.6rem 0 0.6rem;
	}
}
.singleInner .singlePage li div:nth-child(2) .date {
	margin: 0 0 0.2rem;
	padding: 0;
	background: none;
}
@media screen and (max-width: 767px) {
	.singleInner .singlePage li div:nth-child(2) .date {
		margin: 0;
	}
}
.singleInner .singleTextArea {
	margin: 0 0 12rem;
}
@media screen and (max-width: 767px) {
	.singleInner .singleTextArea {
		margin: 0 0 8rem;
	}
}
.singleInner .singleTextArea p {
	font-size: 1.4rem;
}
.singleInner .singleTtl {
	margin: 0 0 4rem;
	font-size: 4rem;
	font-family: 'Tangerine', sans-serif;
	text-align: center;
}
.singleInner .moreButton a {
	display: block;
	padding: 1rem;
	background: #000;
	color: #fff;
	font-size: 1.2rem;
	text-align: center;
	transition: 0.3s;
}
.singleInner .moreButton a:hover {
	background: #555;
}
.singleInner .singleNews ul li {
	padding: 0 0 0.4rem;
	width: 100%;
	box-sizing: border-box;
}
@media screen and (max-width: 767px) {
	.singleInner .singleNews ul li {
		padding: 0 0 0.8rem;
	}
}
.singleInner .singleNews ul li:nth-last-child(n+2) {
	margin: 0 0 2rem;
}
.singleInner .singleNews ul li:nth-last-child {
	margin: 0;
}
.singleInner .singleNews ul li .date {
	margin: 0 3rem 0 0;
	font-size: 1.1rem;
}
@media screen and (max-width: 767px) {
	.singleInner .singleNews ul li .date {
		display: block;
		line-height: 1.6rem;
	}
}

.singleInner .singleNews li:nth-last-child(-n+2) {
	margin: 0 0 2.4rem;
}
.singleInner .singleNews li:last-child {
	margin: 0;
}

/* ----------------------------------------

category-blog, category-news

 ---------------------------------------- */
#postbg {
	background: #fff;
}


/* ----------------------------------------

cms-pagination

 ---------------------------------------- */

/* cms-pagination */
.cms-pagination {
    width: 100%;
    overflow: hidden;
    margin-top: 2rem;
}

.cms-pagination ul {
    position: relative;
    float: left;
    left: 50%;
    margin-bottom: 12px;
}

.cms-pagination ul li {
    position: relative;
    float: left;
    left: -50%;
    width: 28px;
    height: 25px;
    display: table;
    margin: 0 2px;
    display: none;
}

.cms-pagination ul li.pagination-no-num {
    width: 50px;
    display: table;
}

.cms-pagination ul li.pagination-no-num span {
    background: #eee;
    color: #ccc;
}

.cms-pagination ul li.pagination-sp {
    display: table;
}

.cms-pagination ul li a,
.cms-pagination ul li span {
    width: 100%;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    position: relative;
    background: #eee;
}

.cms-pagination ul li span {
    background: #000;
    color: #fff;
}

.pagination-txt {
	display: none;
    clear: both;
}

.pagination-txt span {
    color: #999;
}

@media print,screen and (min-width: 1024px) {
    .cms-pagination ul li {
        width: 28px;
        height: 25px;
        margin: 0 3px;
        display: table;
    }
    .cms-pagination ul li a {
        -webkit-transition: background 0.3s ease;
        -moz-transition: background 0.3s ease;
        transition: background 0.3s ease;
    }
    .cms-pagination ul li a:hover {
        background: #ccc;
        -webkit-transition: background 0.3s ease;
        -moz-transition: background 0.3s ease;
        transition: background 0.3s ease;
    }
    .cms-pagination ul li.pagination-no-num {
        width: 60px;
    }
}


/* ----------------------------------------

ウィジェット　footer部分

 ---------------------------------------- */
#a2a_follow_widget-2 {
	margin: 0 0 2rem;
	text-align: center;
}
@media screen and (max-width: 767px) {
	#a2a_follow_widget-2 {
		margin: 0 0 7rem;
	}
}
.a2a_kit {
	display: inline-block;
  text-align: left;
}




#pl-6 .so-panel {
	margin: 0 !important;
}





/* fade */
.fade.delighter.started {
	transform: none;
	opacity: 1;
}
.fade.delighter {
	transition: all 0.57s ease-out;
	opacity: 0;
}




.rCol .arrow {
	position: absolute;
	bottom: 4rem;
	left: 50%;
	font-size: 1.8rem;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	font-family: 'Questrial', sans-serif;
}
@media screen and (max-width: 767px) {
	.rCol .arrow {
		display: none;
	}
}

.rCol .arrow a span {
	position: absolute;
	bottom: 90px;
	left: 50%;
	width: 50px;
	height: 50px;
	margin-left: -25px;
	border-left: 1px solid #000;
	border-bottom: 1px solid #000;
	-webkit-transform: rotateZ(-45deg);
	transform: rotateZ(-45deg);
	-webkit-animation: sdb 3.8s infinite;
	animation: sdb 3.8s infinite;
	box-sizing: border-box;
}
@media screen and (max-width: 767px) {
	.rCol .arrow a span {
		bottom: 60px;
		width: 30px;
		height: 30px;
		margin-left: -15px;
	}
}
@-webkit-keyframes sdb {
	0% {
		-webkit-transform: rotateY(0) rotateZ(-45deg) translate(0, 0);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		-webkit-transform: rotateY(720deg) rotateZ(-45deg) translate(-20px, 20px);
		opacity: 0;
	}
}
@keyframes sdb {
	0% {
		transform: rotateY(0) rotateZ(-45deg) translate(0, 0);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: rotateY(720deg) rotateZ(-45deg) translate(-20px, 20px);
		opacity: 0;
	}
}




/* ----------------------------------------------------------------------------------------
 * 
 * 全ての要素に適用　カラーまとめ
 * 
---------------------------------------------------------------------------------------- */

/*フォーム・テーブル背景カラー*/
.textAreaColorAll,
section.priceList table.priceB tr:nth-child(even),
section.priceList table.priceC tr:nth-child(even),
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required,
.wpcf7-form input, .wpcf7-form textarea,
.faq .a,
.singleInner .singleListTtl span,
.singleInner .singlePage,
footer .colL {
	background: #f7f5f1;
}
/*ボタンカラー*/
.buttonColorAll,
input.wpcf7-submit,
#menu-wrap-sp button,
#menu-wrap-sp.right nav.sp ul,
#menu-wrap-sp.left nav.sp ul,
.btn-area .flex .ttl {
	background: #9f927e;
}
@media screen and (max-width: 767px) {
.modal a.close-modal {
	background-color: #eee;
}
}
.cms-pagination ul li.pagination-no-num span,
.cms-pagination ul li a {
    background: #f7f5f1;
	color: #333;
}
.cms-pagination ul li span {
	background: #9f927e;
	color: #fff;
}


/*ボタンカラー（hover）*/
.buttonColorAll:hover,
input.wpcf7-submit:hover {
	background: #8c816f;
}
.cms-pagination ul li a:hover {
	background: #8c816f;
	color: #fff;
}

/*ボーダーカラー*/
.borderColorAll {
	border: 1px solid #efe9db;
}
section.post .col1 .news ul li, section.post .col1 .blog ul li,
.singleInner .singleList > ul > li,
.singleInner .singleList.news > ul > li{
	border-bottom: 1px solid #ada082;
}

/*装飾背景カラー*/
.bgColorAll-orn,
section.post .col1 .news ul li span.date, .newslist .date,
.singleInner .singleList li div:nth-child(2) .date {
	background: #efe9db;
}
.modal ol.flow li::before {
	border-top: 16px solid #efe9db;
}
/*左スライダーボタンカラー*/
.zs-enabled .zs-slideshow .zs-bullets .zs-bullet {
	background: #e0e0e0;
}
/*左スライダーボタンカラー（アクティブ）*/
.zs-enabled .zs-slideshow .zs-bullets .zs-bullet.active {
	background: #fff;
}
/*プライススライダーボタンカラー*/
.slick-dots li button {
	background: #e0e0e0;
}
/*プライススライダーボタンカラー（アクティブ）*/
.slick-dots li.slick-active button {
	background: #9f927e;
}

#calendarTitle {
	color: #fff !important;
}

h1 {
	font-family: 'Noto Serif JP', sans-serif !important;
}


/* re  */
.grecaptcha-badge {
	margin: auto;
}


/************************************************************************

	page

************************************************************************/


.fade_groupA div {
    content: '';
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100%;
    pointer-events: none;
}
.fade_groupA div {
    z-index: 9999;
    transition: .6s;
}
.fade_groupA div:nth-of-type(1) {
    background: rgba(255,255,255,.3);
}
.fade_groupA div:nth-of-type(2) {
    background: rgba(255,255,255,.5);
    transition-delay:.1s;
}
.fade_groupA div:nth-of-type(3) {
    background: rgba(255,255,255,.7);
    transition-delay:.2s;
}
.fade_groupA div:nth-of-type(4) {
    background: rgba(50,50,50,1);
    transition-delay:.3s;
}
body.curtain .fade_groupA div{
    right: 0;
}

.fade_groupB div {
    content: '';
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100%;
    pointer-events: none;
}
.fade_groupB div {
    z-index: 9998;
    transition: .8s;
}
.fade_groupB div:nth-of-type(1) {
    background: rgba(255,255,255,.8);
    transition-delay: .2s;
}
.fade_groupB div:nth-of-type(2) {
    background: rgba(255,255,255,.8);
    transition-delay: .3s;
}
body.curtain .fade_groupA div{
    right: 0;
}
body.curtain .fade_groupB div{
    right: 100vw;
}
