@charset "utf-8";

/* Webフォント
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Lora&family=Shippori+Mincho&family=Zen+Kaku+Gothic+Antique:wght@500&display=swap');
/*
* "Lora" licensed under the Open Font License.
* https://fonts.google.com/specimen/Lora
* https://www.google.com/fonts/attribution
* https://openfontlicense.org/
*/
/*
* "Shippori Mincho" licensed under the Open Font License.
* https://fonts.google.com/specimen/Shippori+Mincho
* https://www.google.com/fonts/attribution
* https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL
*/
/*
* "Zen Kaku Gothic Antique" licensed under the Open Font License.
* https://fonts.google.com/specimen/Zen+Kaku+Gothic+Antique
* https://www.google.com/fonts/attribution
* https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL
*/


/* ステラスreset
======================================== */
table {
	border-collapse: collapse;
}
dt, th {
	font-weight: normal !important;
}
em {
	font-style: normal;
	font-weight: bold;
}
html {
	font-size: 62.5%;
	}
	@media screen and (max-width: 320px) {
	html { font-size: 54.6875%; }
}
img {
	width: 100%;
}

/* サイト共通
======================================== */
body {
	font-size: 1.5rem;
	font-size: clamp(1.3rem, 2vw, 1.5rem);
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	color: #333;
	background: url("../images/bg.jpg") 0 0 repeat-y;
	background-size: 100%;
	letter-spacing: 0.05em;
}
section {
	padding-bottom: 110px;
}
.wrap {
	width: min(86%, 1400px);
	margin: 0 auto;
}
.wrap_s {
	width: min(86%, 900px);
	margin: 0 auto;
}
@media screen and (max-width:1024px) {
	.wrap,
	.wrap_s {
		width: 86%;
	}
	section {
		padding: 80px 0;
	}
}
a {
	transition: 0.3s;
}
a:hover {
	opacity: 0.6;
}
.mgnB1 {
	margin-bottom: 1em;
}

/* 電話番号リンク */
.pc a[href*="tel:"],
.tb a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
}

/* 見出し
------------------------------------------------- */
h2 {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 5rem;
	margin-bottom: 70px;
}
h2 span {
	display: block;
	font-family: "Lora", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 2rem;
	margin-top: 15px;
}
h3 {
	display: inline-block;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 2.4rem;
	border-bottom: solid 1px #999;
	margin-bottom: 10px;
}
@media screen and (max-width:1024px) {
	h2 {
		font-size: 3rem;
		margin-bottom: 30px;
	}
	h2 span {
		font-size: 1.5rem;
		margin-top: 10px;
	}
	h3 {
		font-size: 2rem;
		margin-bottom: 8px;
	}
}

/* テキスト
------------------------------------------------- */
p, table, dl, ul, ol {
	line-height: 2;
}
p {
	margin-top: 1em;
}
h2 + p:first-of-type {
	margin-top: 0;
}

/* header
======================================== */
header {
	height: 340px;
	background: url("../images/bg_pattern.jpg") top center;
	background-size: cover;
}
header .wrap {
	text-align: center;
}
header h1 {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 6rem;
	padding-top: 70px;
}
header h1 span {
	display: block;
	font-family: "Lora", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 2.4rem;
	margin-top: 15px;
}
@media screen and (max-width:1024px) {
	header {
		height: 180px;
	}
	header .wrap {
		text-align: center;
	}
	header h1 {
		font-size: 3.8rem;
		padding-top: 55px;
	}
	header h1 span {
		font-size: 1.6rem;
		margin-top: 8px;
	}
}

/* ハンバーガーメニュー
------------------------------------------------- */
.openbtn1 {
	display: none;
	}
	@media screen and (max-width:1024px) {
	.openbtn1{
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		cursor: pointer;
		width: 50px;
		height:50px;
		background: #222;
		margin-left: auto;
		z-index: 9999;
	}
	.openbtn1 span {
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 15px;
		height: 1px;
		background: #fff;
		width: 20px;
	}
	.openbtn1 span:nth-of-type(1) {
		top:18px; 
	}
	.openbtn1 span:nth-of-type(2) {
		top:25px;
	}
	.openbtn1 span:nth-of-type(3) {
		top:32px;
	}
	.openbtn1.active span {
		background: #fff;
	}
	.openbtn1.active span:nth-of-type(1) {
		top: 18px;
		left: 13px;
		transform: translateY(6px) rotate(-45deg);
		width: 25px;
	}
	.openbtn1.active span:nth-of-type(2) {
		opacity: 0;
	}
	.openbtn1.active span:nth-of-type(3){
		top: 30px;
		left: 13px;
		transform: translateY(-6px) rotate(45deg);
		width: 25px;
	}
}

/* navi
======================================== */
#g-nav {
	position: relative;
	z-index: 999;
	height: 100%;
	background: transparent;
	visibility: visible;
	overflow: hidden;
}
#g-nav ul {
	position: static;
	display: flex;
	align-items: center;
	font-family: "Lora", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 2rem;
	margin-top: 70px;
}
#g-nav #g-nav-list {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
/*リストのレイアウト設定*/
#g-nav li a {
	display: block;
	margin: 0 50px;
}
@media screen and (max-width:1024px) {
	/* 表示切替 */
	header #g-nav ul {
		display:none !important;
	}
	header #g-nav.panelactive ul {
		display:block !important;
	}
	#g-nav {
		top: 0;
		left: 0;
		position: fixed;
		width: 100%;
		height: 100vh;
		background: #222;
		color: #fff;
		visibility: hidden;
		opacity: 0;
		transition: 1s;
		margin-right: 0;
	}
	#g-nav.panelactive {
		visibility: visible;
		opacity: 1;
		transition: 1s;
	}
	#g-nav #g-nav-list {
		display: block;
		height: 100%;
	}
	/*ナビゲーションの縦スクロール（ナビの数が増えた場合）*/
	#g-nav.panelactive #g-nav-list {
		position: fixed;
		z-index: 999; 
		width: 100%;
		height: 100vh;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	#g-nav ul {
		position: static;
		display: block;
		transform: none;
		width: 65%;
		margin: 100px auto;
	}
	#g-nav ul li.btn {
		border-bottom: none;
		margin-top: 40px;
		position: static;
	}
	#g-nav li a {	
		display: block;
		font-size: 2rem;
		padding: 16px 0;
	}
	#g-nav li.btn a {
		width: 100%;
		max-width: 300px;
		background: url(../images/icon_calendar.svg) left 35px center no-repeat, linear-gradient(100deg, rgba(230, 185, 100, 1), rgba(203, 153, 80, 1));
		background-size: 40px auto, cover;
		padding-left: 30px;
		font-size: 1.6rem;
	}
	#g-nav li a:hover::before {
		display: none;
	}
	/* セカンドでは非表示 */
	.second #g-nav,
	.second .openbtn1 {
		display: none !important;
	}
}

/* footer
======================================== */
footer small {
	display: block;
	font-size: 1.2rem;
	margin-top: 20px;
}
@media screen and (max-width:1024px) {
	footer small {
		font-size: 1rem;
		margin-top: 10px;
	}
}

/* ページの先頭へ
======================================== */
#pageTop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 10;
}
#pageTop a {
	display: block;
	position: relative;
	width: 80px;
	height: 80px;
	z-index: 999;
	text-indent: -9999px;
	background: rgba(125, 110, 75, 0.7);
	border-radius: 50%;
	transition: 0.3s;
}
#pageTop a:hover {
	opacity: 0.6;
}
#pageTop a::after {
	display: block;
	content: "";
	position: absolute;
	top: 45%;
	left: 0;
	right: 0;
	margin: auto;
	vertical-align: middle;
	width: 14px;
	height: 14px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	}
	@media screen and (max-width:1024px) {
	#pageTop {
		bottom: 8px;
		right: 8px;
	}
	#pageTop a {
		width: 5rem;
		height: 5rem;
	}
	#pageTop a::after {
		width: 1.2rem;
		height: 1.2rem;
	}
}


/* parts
======================================== */
/* 箇条書き
------------------------------------------------- */
/* 黒丸リスト */
.disc li {
	list-style-type: disc;
	margin: 1em 0 0 20px;
	padding-left: 0.3em;
}

/* 数字リスト */
.decimal li {
	list-style-type: decimal;
	margin: 1em 0 0 20px;
	padding-left: 0.8em;
	}
	@media screen and (max-width:1024px) {
	.decimal li {
		padding-left: 0.4em;
	}
}

/* ※つきリスト */
.kome li {
	position: relative;
	margin: 1em 0 0;
	text-indent: -1em;
	padding-left: 1.5em;
}
.kome li::before {
	position: relative;
	content: "※";
	display: inline-block;
	margin-left: 0.5em;
	margin-right: 0.5em;
}

/* マージン調整 */
.disc li:first-child,
.decimal li:first-child,
.kome li:first-child {
	margin-top: 0;
}

/* 改行なし（.disc.noTurnなど重ね付けする） */
.noTurn li {
	margin-top: 0;
}

/* 表
------------------------------------------------- */
/* 【01】スマホ、PC：表 */
.table {
	width: 100%;
	background: #fff;
}
.table th, .table td {
	border: 1px solid #ddd;
	padding: 1em;
	display: table-cell;
}
.table th {
	width: 14em;
}
.table td {
	width: calc(100% - 14em);
}

/* 【02】スマホ、PC：罫線（table） */
table.list {
	width: 100%;
	border-top: 1px solid #ddd;
}
table.list th, table.list td {
	border-bottom: 1px solid #ddd;
	padding: 1em;
	display: table-cell;
}
table.list th {
	width: 14em;
}
table.list td {
	width: calc(100% - 14em);
}

/* 【02】スマホ、PC：罫線（dl） */
dl.list {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	border-bottom: 1px solid #ddd;
}
dl.list dt,
dl.list dd {
	display: block;
	padding: 1em;
	border-top: 1px solid #ddd;
}
dl.list dt {
	flex-basis: 14em;
}
dl.list dd {
	flex-basis: calc(100% - 14em);
}

/* 【03】スマホ、PC：罫線（table listB） */
table.listB {
	width: 100%;
	border-bottom: 1px solid #ddd;
}
table.listB th, table.listB td {
	display: table-cell;
	padding: 1em;
}
table.listB th {
	border-top: 1px solid #ddd;
	width: 14em;
	font-weight: normal;
}
table.listB td {
	border-top: 1px solid #ddd;
	width: calc(100% - 14em);
	}
	@media screen and (max-width:1024px) {
	table.listB th, table.listB td {
		display: block;
		width: 100%;
	}
	table.listB th {
		font-weight: bold;
		padding-bottom: 0;
	}
	table.listB td {
		border-top: none;
		padding-top: 0;
	}
}

/* 【03】スマホ、PC：罫線（dl listB） */
dl.listB {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	border-bottom: 1px solid #ddd;
}
dl.listB dt,
dl.listB dd {
	padding: 1em;
	border-top: 1px solid #ddd;
}
dl.listB dt {
	flex-basis: 14em;
	font-weight: normal;
}
dl.listB dd {
	flex-basis: calc(100% - 14em);
	}
	@media screen and (max-width:1024px) {
	dl.listB {
		display: block;
	}
	dl.listB dt,
	dl.listB dd {
		display: block;
		flex-basis: 100%;
	}
	dl.listB dt {
		padding: 1em 1em 0.2em;
		font-weight: bold;
	}
dl.listB dd {
		border-top: none;
		padding: 0 1em 1em;
	}
}

/* 【04】スマホ：罫線、PC：表（table） */
table.list-table {
	width: 100%;
	border-bottom: 1px solid #ddd;
}
table.list-table th, table.list-table td {
	border: 1px solid #ddd;
	padding: 1em;
	display: table-cell;
}
table.list-table th {
	width: 14em;
	font-weight: normal;
}
table.list-table td {
	border-top: 1px solid #ddd;
	width: calc(100% - 14em);
	}
	@media screen and (max-width:1024px) {
	table.list-table th, table.list-table td {
		display: block;
		width: 100%;
		padding: 1em;
		border: none;
	}
	table.list-table th {
		border-top: 1px solid #ddd;
		padding-bottom: 0;
		font-weight: bold;
	}
	table.list-table td {
		border-bottom: none;
		padding-top: 0;
	}
}

/* 【04】スマホ：罫線、PC：表（dl） */
dl.list-table {
	display: flex;
	flex-wrap: wrap;
	border-left: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}
dl.list-table dt,
dl.list-table dd {
	border-top: 1px solid #ddd;
	border-right: 1px solid #ddd;
	padding: 1em;
	display: table-cell;
}
dl.list-table dt {
	flex-basis: 14em;
	font-weight: normal;
}
dl.list-table dd {
	flex-basis: calc(100% - 14em);
	}
	@media screen and (max-width:1024px) {
	dl.list-table {
		display: block;
		width: 100%;
		border-left: none;
	}
	dl.list-table dt,
	dl.list-table dd {
		display: block;
		flex-basis: 100%;
		border-right: none;
	}
	dl.list-table dt {
		border-top: 1px solid #ddd;
		padding: 1em 1em 0.2em;
		font-weight: bold;
	}
	dl.list-table dd {
		border-top: none;
		padding: 0 1em 1em;
	}
}

/* 表スクロール */
@media screen and (max-width:1024px) {
	.table-scroll {
		overflow-x: scroll;
	}
	.table-scroll table {
		width: 1000px;
		margin-bottom: 8px;
	}
}

/* 改行
------------------------------------------------- */
/* スマホだけ改行 */
br.sp { 
	display: none;
	}
	@media screen and (max-width:1024px) {
	br.sp {
		display: block;
	}
}
/* PCだけ改行 */
br.pc { 
	display: block;
	}
	@media screen and (max-width:1024px) {
	br.pc {
		display: none;
	}
}

/* ピンチアウト（図の拡大をうながす）
------------------------------------------------- */
.sp .sp_atten {
	display: block;
	text-align: right;
	font-size: 1.1rem;
}
.pc .sp_atten {
	display: none;
}

/* 段組み
------------------------------------------------- */
.col {
	display: flex;
	justify-content: space-between;
	}
	@media screen and (max-width:1024px) {
	.col {
		display: block;
	}
}

/* テキスト文字揃え
------------------------------------------------- */
.txtC {
	text-align: center;
}
.txtR {
	text-align: right;
}


/* アニメーション
======================================== */
body {
	animation: fadein 3s forwards;
}
@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}


/* 404エラー
======================================== */
#contentsArea.error h1 {
	font-size: 3rem;
	padding-top: 100px;
}
#contentsArea.error .btn a {
	display: inline-block;
	width: 100%;
	max-width: 330px;
	font-size: 1.8rem;
	text-align: center;
	border: solid 1px #333;
	padding: 15px;
	margin-top: 30px;
}
.error404 header {
	height: 280px;
}
.error404 #g-nav {
	display: none;
}
@media screen and (max-width:1024px) {
	#contentsArea.error h1 {
		padding-top: 0;
	}
	#contentsArea.error .btn a {
		font-size: 1.5rem;
		padding: 15px;
	}
	.error404 header {
		height: 180px;
	}
}




