@charset "UTF-8";

/*--------------------------------------------------------------------
common
cssの初期化
--------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  outline: none;
  font-style: normal;
  font-weight: normal;
  zoom: 1;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { display: block; }
h1, h2, h3, h4, h5, h6 {
  line-height: 1.55;
  font-size: 100%;
  font-weight: normal;
}
table { border-collapse: collapse; }
table th, table td {
  text-align: left;
  vertical-align: top;
}
ul,ol { list-style: none; }
img {
  width /***/:auto;
  max-width: 100%;
  height: auto;
	object-fit: cover;
  vertical-align: bottom;
}
* { box-sizing: border-box; }
a { transition: .3s; }
/*a:hover {
	filter: alpha(opacity=85);
	-moz-opacity: 0.85;
	opacity: 0.85;
}*/


/*--------------------------------------------------------------------
common
ページ共通部分
--------------------------------------------------------------------*/
:root {
	--mincho: "游明朝" , "Yu Mincho" , "游明朝体" , "ヒラギノ明朝 Pro W3" , "HiraMinPro-W3" , Garamond , "Times New Roman" , "Sawarabi Mincho" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
	--gothic: "メイリオ", Meiryo, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, Roboto, Verdana, "Droid Sans", sans-serif;
	--co-black:    #2a2b2b;	   /*黒*/
	--co-white:    #ffffff;	   /*白*/
	--co-gold:     #918526;	   /*金*/
	--co-brown:    #664536;	   /*茶*/
	--co-orange:   #ff4a00;	   /*橙*/
	--co-grassG:   #5c8000;	   /*緑1*/
	--co-bottleG:  #00662b;	   /*緑2*/
	--co-forestG:  #00662b;	   /*緑3*/
	--co-gray80:   #555555;	   /*灰80%*/
	--co-gray30:   #bfbfbf;	   /*灰30%*/
	--co-gray10:   #eaeaea;	   /*灰10%*/
	--transformXY: translate(-50% , -50%);
	--transformX:  translateX(-50%);
	--transformY:  translateY(-50%);
	--parag-bet: 0.8em;	   /*段落の間*/
}

/*------------body---------------------------------------------------------------*/
html { height: 100%; }
body {
	height: 100%;
	background-color: var(--co-white);
	overflow-y: scroll;
	line-height: 1.6;
	font-family: var(--gothic);
	font-feature-settings: "palt" 1;
	font-size: 16px;
	font-weight: normal;
	color: var(--co-black);
}
.SpOnly { display: none; }
div#PageTop a {
	position: fixed;
	display: block;
	width: 30px;
	height: 30px;
	background: url("../img/pagetop.png") no-repeat left top / cover;
	right: 2%;
	bottom: 5%;
	overflow: hidden;
	line-height: 0;
	font-size: 0;
	z-index: 9999;
}

@media (max-width: 960px) {
	div#PageTop a {
		width: 20px;
		height: 20px;
	}
}

@media (max-width: 480px) {
	body { font-size: 14px; }
	.PcOnly { display: none; }
	.SpOnly { display: block; }
}


/*------------header---------------------------------------------------------------*/
#Header {
  position: fixed;
	width: 100%;
	z-index: 999;
	top: 0;
  left: 0;
  transition: 0.5s;
}
#Header.IsFixed { background-color: rgba(255,255,255,0.80); }
#InHeader {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 96%;
	max-width: 1100px;
	height: 80px;
	margin: 0 auto;
}
#InHeader h1 { width: 310px; }
#InHeader h1 a {
	display: block;
	width: 100%;
	padding-top: 19.35483870967742%;
	background: url("../img/header_logo.png") no-repeat left top / contain;
	overflow: hidden;
	line-height: 0;
	text-indent: -99999px;
	font-size: 0;
}
#InHeader ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	color: var(--co-black);
}
#InHeader ul li {
	display: flex;
	align-items: center;
}
#InHeader ul li:not(:first-of-type)::before {
	margin: 0 0.5em;
	content: "|";
}
#InHeader ul li a { color: var(--co-black); }
#InHeader ul li a:hover {
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	color: var(--co-gold);
}

@media (max-width: 960px) {
	#InHeader {
		width: 96%;
		height: 60px;
	}
	#InHeader h1 {
		width: 80%;
		max-width: 310px;
	}
	#InHeader ul { display: none; }
}


/*------------title---------------------------------------------------------------*/
#title {
	position: relative;
	margin-bottom: 30px;
	z-index: 0;
}
#titleBg {
	position: relative;
	min-height: 400px;
	background: url("../img/mv_p.jpg") no-repeat center center / cover;
	clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
	z-index: 5;
}
#titleBg::before {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.50);
	clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%);
}
#title h2 {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: var(--transformXY);
	text-align: center;
	font: bold 2.2em / 1.2 var(--mincho);
	color: var(--co-gold);
	text-shadow: 
		 3px  3px 3px var(--co-white),
		-3px  3px 3px var(--co-white),
		 3px -3px 3px var(--co-white),
		-3px -3px 3px var(--co-white),
		 3px  0px 3px var(--co-white),
		 0px  3px 3px var(--co-white),
		-3px  0px 3px var(--co-white),
		 0px -3px 3px var(--co-white);
	z-index: 5;
}

@media (max-width: 960px) {
	#titleBg { min-height: 30vh; }
}

/*------------main---------------------------------------------------------------*/
main {
	width: 100%;
	margin: auto;
}


/*------------topNav------------------------*/
#topNav ul {
	display: flex;
	justify-content: center;
	gap: 10px;
	width: 96%;
	max-width: 1100px;
	margin: 0 auto 50px;
}
#topNav ul li {
	width: 190px;
	background-color: var(--co-gold);
}
#topNav ul li a {
	position: relative;
	display: block;
	padding: 0.5em 1.5em;
	transition: .3s;
	text-align: center;
	font: bold 1em / 1.2 var(--mincho);
	color: var(--co-white);
}
#topNav ul li a::before {
	position: absolute;
	content: "";
	display: block;
	width: 8px;
	height: 9px;
	background-color: var(--co-white);
	clip-path: polygon(100% 50%, 0 0, 0 100%);
	top: 50%;
	right: 0.5em;
	transform: var(--transformY);
	transition: .3s;
}
#topNav ul li a:hover { color: var(--co-black); }
#topNav ul li a:hover::before { background-color: var(--co-black); }

@media (max-width: 500px) {
	#topNav ul {
		flex-wrap: wrap;
		gap: 5px 10px;
	}
	#topNav ul li { width: calc((100% - 10px) / 2); }
}

/*------------Btn------------------------*/
.Btn {
	background-color: var(--co-gold);
	transition: opacity .3s cubic-bezier(0.45, 0, 0.55, 1);
}
.Btn.slide {
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.Btn.slide::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 180%;
	background: var(--co-white);
	top: 0;
	left: 0;
	transform: skewY(-10deg) scale(1, 0);
	transform-origin: left top;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	z-index: -1;
}
.Btn.slide:hover::after { transform: skewY(-10deg) scale(1, 1); }


/*------------flashBtn------------------------------------*/
.flashBtn a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.flashBtn a::after {
	position: absolute;
	content: "";
	top: 0;
	left: -85%;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	transform: skewX(-25deg);
}
.flashBtn a:hover::after {
	animation: shine 0.9s;
	animation-iteration-count: infinite;
}
@keyframes shine { 100% { left: 125%; } }

/*------------article------------------------------------*/
article {
	position: relative;
	width: 96%;
	margin: 0 auto;
	padding-bottom: 70px;
}
main article:not(:last-of-type) { margin-bottom: 70px; }
article::after {
	position: absolute;
	content: "";
	display: block;
	width: 80%;
	max-width: 880px;
	border-bottom: 1px dashed var(--co-gray30);
	bottom: 0;
	left: 50%;
	transform: var(--transformX);
}
article p + p { margin-top: var(--parag-bet); }
article section {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}
article section:not(:first-of-type) { margin-top: 30px; }
article h3 {
	position: relative;
	margin-bottom: 40px;
	padding: 0 1em 0.45em;
	text-align: center;
	font: bold 1.9em / 1.2 var(--mincho);
	color: var(--co-gray80);
}
article h3::before {
	position: absolute;
	display: block;
	content: "";
	width: 170px;
	border-bottom: 3px solid var(--co-gold);
	left: 50%;
	bottom: 0;
	transform: var(--transformX);
}
article h3 span {
	display: inline-block;
	font-weight: bold;
}
article h4 {
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 0.25em;
	border-bottom: 1px solid var(--co-gray30);
	font-size: 1.5em;
	font-weight: bold;
	color: var(--co-gold);
}
article h4::before {
	position: absolute;
	content: "";
	display: block;
	width: 20%;
	max-width: 220px;
	border-bottom: 2px solid var(--co-gold);
	right: 0;
	bottom: -1px;
}
article table {
	width: 100%;
	border-collapse: collapse;
}
article table tr th,
article table tr td {
	width: auto;
	padding: 10px 20px;
	border-top: 1px solid var(--co-gray30);
	border-bottom: 1px solid var(--co-gray30);
	text-align: left;
	vertical-align: top;
}
article table tr th {
	width: 14%;
	background-color: var(--co-gray10);
	border: 1px solid var(--co-gray30);
	border-left: 0 none;
	white-space: nowrap;
}

/*------------横並び写真右--------------*/
.flePR {
	display: flex;
	flex-flow: row-reverse;
	gap: 1em 30px;
}
.flePR .flePho {
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
}
.flePR .fleTxt {
	width: 100%;
	max-width: 670px;
	margin: 0 auto;
}

@media (max-width: 680px) {
	.flePR { flex-direction: column; }
}

@media (max-width: 480px) {
	article table tr th,
	article table tr td {
		display: block;
		width: 100%;
	}
	article table tr td { border-top: 0 none; }
	article table tr th {
		padding: 5px;
		margin-top: 1em;
		border-right: 0 none;
	}
	article table tr td { padding: 10px; }
	article .ScrollBar {
		width: 100%;
		white-space: nowrap;
		overflow: auto;
	}
	article .ScrollBar .SpOnly {
		font-weight: bold;
		color: var(--co-orange);
	}
	article .ScrollBar table tr th,
	article .ScrollBar table tr td {
		display: table-cell;
		width: auto;
		margin: 0;
		border-top: 1px solid var(--co-gray30);
		border-bottom: 1px solid var(--co-gray30);
	}
}

/*------------footer---------------------------------------------------------------*/
footer { margin-top: 65px; }
/*------------fLogoTel------------------------*/
#fLogoTel {
	width: 80%;
	max-width: 325px;
	margin: 0 auto;
}
#fLogoTel h2 a {
	display: block;
	padding-top: 52.30769230769231%;
	background: url("../img/footer_logo.png") no-repeat left top / cover;
	overflow: hidden;
	line-height: 0;
	text-indent: -99999px;
	font-size: 0;
}
#fLogoTel dl {
	width: 100%;
	max-width: 204px;
	margin: 20px auto 0;
}
#fLogoTel dl dt { display: none; }
#fLogoTel dl dd span,
#fLogoTel dl dd a {
	display: block;
	padding-top: 9.803921568627451%;
	background: url("../img/tel.png") no-repeat left top / contain;
	overflow: hidden;
	line-height: 0;
	text-indent: -99999px;
	font-size: 0;
}
/*------------nav------------------------*/
footer #FNav h2 { display: none; }
footer #fNavAdd { width: 100%; }
footer nav ul {
	display: flex;
	justify-content: center;
	padding: 1em 1em 0;
	background-color: var(--co-black);
	font-weight: bold;
	color: var(--co-white);
}
footer nav ul ul { display: none; }
footer nav ul li:not(:last-of-type)::after {
	margin: 0 0.25em;
	content: "|";
}
footer nav ul li a {
	font-weight: bold;
	color: var(--co-white);
}
footer nav ul li a:hover {
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	color: var(--co-gold);
}

@media (max-width: 960px) {
	footer #FNav h2 {
		display: block;
		width: 70%;
		max-width: 325px;
		margin: 50px auto 0;
	}
	footer #FNav h2 span {
		display: block;
		width: 100%;
	}
	footer #FNav h2 a {
		display: block;
		padding-top: 52.30769230769231%;
		background: url("../img/footer_logo.png") no-repeat left top / cover;
		overflow: hidden;
		line-height: 0;
		text-indent: -99999px;
		font-size: 0;
	}
	footer nav {
		margin-top: 1em;
		padding: 1em;
		background-color: transparent;
		color: var(--co-black);
	}
	footer nav ul {
		display: block;
		width: 80%;
		margin: 0 auto;
		background-color: var(--co-white);
	}
	footer nav ul ul {
		display: block;
		width: 100%;
		margin: 0 1em;
		padding: 0;
	}
	footer nav ul li:not(:nth-last-of-type(1))::after { display: none; }
	footer nav ul li + li { margin-top: 0.25em; }
	footer nav ul li a { color: var(--co-black); }
	footer nav ul li a::before {
		display: inline-block;
		padding-right: 0.2em;
		content: "■";
	}
	footer nav ul ul li a::before {
		display: inline-block;
		padding-right: 0.2em;
		content: "・";
	}
	/* hamburger(ハンバーガーアイコン) =================================== */
	.hamburger {
		position: fixed;
		top: 1.25em;
		right: 1em;
		width: 20px;
		height: 20px;
		background: var(--co-gold);
		cursor: pointer;
		z-index: 299999;
	}
	.BurgerLine {
		position: absolute;
		width: 16px;
		height: 2px;
		left: 2px;
		background-color: var(--co-white);
		transition: all 0.5s;
	}
	.BurgerLine1 { top: 4px; }
	.BurgerLine2 { top: 9px; }
	.BurgerLine3 { top: 14px; }

	/*ハンバーガーがクリックされたら*/
	.open .BurgerLine1 {
		transform: rotate(-45deg);
		top: 9px;
	}
	.open .BurgerLine2 { opacity: 0; }
	.open .BurgerLine3 {
		transform: rotate(45deg);
		top: 9px;
	}

	/* sp-nav(ナビ) =================================== */
	.sp-nav {
		position: fixed;
		right: -100%;
		top: 0;
		width: 80%;
		height: 100vh;
		background-color: var(--co-white);
		transition: all 0.5s;
		z-index: 199999;
		overflow-y: auto;
	}
	/*ハンバーガーがクリックされたら右からスライド*/
	.open .sp-nav { right: 0; }

	/* black-bg(ハンバーガーメニュー解除用bg) =================================== */
	.black-bg {
		position: fixed;
		left: 0;
		top: 0;
		width: 100vw;
		height: 100vh;
		z-index: 5;
		background-color: var(--co-black);
		opacity: 0;
		visibility: hidden;
		transition: all 0.5s;
		cursor: pointer;
	}
	/*ハンバーガーメニューが開いたら表示*/
	.open .black-bg {
		opacity: 0.3;
		visibility: visible;
	}
}
/*------------address------------------------*/
footer #fAdd {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: 50px;
	padding: 0.5em 1em;
	background-color: var(--co-gold);
	color: var(--co-white);
}
footer #fAdd dl { display: flex; }
footer #fAdd dl dt::after { content: "："; }
footer #fAdd h3,
footer #fAdd p,
footer #fAdd p span:not(:first-of-type) { margin-left: 0.5em; }
footer #fAdd dl { margin-left: 1em; }
footer #fAdd p span { display: inline-block; }
footer #fAdd a { color: var(--co-white); }
address {
	display: block;
	padding: 1em 1em 100px;
	background-color: var(--co-black);
	text-align: center;
	font-size: 1rem;
	color: var(--co-white);
}

@media (max-width: 960px) {
	footer #fAdd {
		display: block;
		text-align: center;
	}
	footer #fAdd dl { justify-content: center; }
	footer #fAdd h3,
	footer #fAdd p,
	footer #fAdd p span:not(:first-of-type),
	footer #fAdd dl { margin-left: 0; }
	footer #fAdd p span:not(:last-of-type) { margin-right: 0.5em; }
	address { font-size: 0.89rem; }
}