@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: inherit;
  font-weight: inherit;
  zoom: 1;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { display: block; }
h1, h2, h3, h4, h5, h6 {
  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;
}
img , iframe { vertical-align: bottom; }
* { box-sizing: border-box; }
a {
	transition: 0.5s;
	color: inherit;
}
a:hover {
	transition: 0.5s;
}


/*--------------------------------------------------------------------
common
ページ共通部分
--------------------------------------------------------------------*/
:root {
	--gothic: "メイリオ", Meiryo, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, Roboto, Verdana, "Droid Sans", sans-serif;
	--mincho: "游明朝" , "Yu Mincho" , "游明朝体" , "ヒラギノ明朝 Pro W3" , "HiraMinPro-W3" , Garamond , "Times New Roman" , "Sawarabi Mincho" , serif;
	--co-black:     #2a2b2b;	   /*黒*/
	--co-white:     #ffffff;	   /*白*/
	--co-gray30:    #bfbfbf;	   /*灰30%*/
	--co-gray20:    #d4d5d5;	   /*灰20%*/
	--co-gray10:    #e6e6e5;	   /*灰10%*/
	--co-main:      #004f8a;	   /*青*/
	--co-sub:       #00abc7;	   /*水*/
	--co-darkbrown: #ab1c24;	   /*焦げ茶*/
	--transformXY: translate(-50% , -50%);
	--transformX:  translateX(-50%);
	--transformY:  translateY(-50%);
	--parag-bet: 1em;	   /*段落の間*/
}



/*------------body---------------------------------------------------------------*/
html {
	height: 100%;
	background-color: var(--co-white);
	line-height: 1.4;
	font-family: var(--gothic);
	font-feature-settings: "palt" 1;
	font-size: 18px;
	font-weight: normal;
	color: var(--co-black);
}
body {
	height: 100%;
	overflow-y: scroll;
}
.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;
}
.pctel {
	cursor: text;
	pointer-events: none;
}
.noTxt {
	text-align: center;
	font-size: 2em;
	color: var(--co-main);
}


@media (max-width: 960px) {
	html { font-size: 16px; }
	div#PageTop a {
		width: 20px;
		height: 20px;
	}
	.pctel {
		cursor: pointer;
		pointer-events: auto;
	}
}

@media (max-width: 680px) {
	html { 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;
	background-color: rgba(0,79,138,0.60);
}
#header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1100px;
	height: 70px;
	margin: 0 auto;
	padding: 0 1em;
}
#header h1 a {
	display: flex;
	gap: 0 1em;
	align-items: center;
}
#header h1 a span {
	width: 291px;
	height: 35px;
	background: url("../img/header_logo.png") no-repeat left center / contain;
	overflow: hidden;
	text-indent: -99999px;
	line-height: 0;
	font-size: 0;
}
#header h1 a em {
	font: bold 0.89em / 1.2 var(--mincho);
	font-feature-settings: "palt" 1;
	color: var(--co-white);
}
#header ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	font: bold 0.89em / 1.2 var(--mincho);
	font-feature-settings: "palt" 1;
	color: var(--co-white);
}
#header ul li {
	display: flex;
	align-items: center;
}
#header ul li:not(:first-of-type)::before {
	margin: 0 1em;
	content: "|";
}
#header ul li a:hover { color: var(--co-sub); }

@media (max-width: 960px) {
	#header {
		width: 96%;
		height: 50px;
	}
	#header h1 {
		width: 80%;
		max-width: 291px;
	}
	#header h1 span {
		display: block;
		width: 100%;
	}
	#header h1 a em,
	#header ul { display: none; }
}


/*------------title---------------------------------------------------------------*/
#title {
	position: relative;
	min-height: 385px;
	margin-bottom: 50px;
}
#title::after {
	position: absolute;
	display: block;
	content: "";
	width: 30%;
	height: 100%;
	background-color: var(--co-gray20);
	clip-path: polygon(100% 0, 100% 85%, 65% 100%, 0 85%, 0 0);
	bottom: 0;
	right: 0;
	z-index: -1;
}
#title > div {
	position: relative;
	min-height: 370px;
	background: url("../img/mv_p05.jpg") no-repeat center top / cover;
	clip-path: polygon(100% 0, 100% 94%, 25% 100%, 0 90%, 0 0);
	margin-bottom: 50px;
	overflow: hidden;
	z-index: 0;
}
#title > div::before {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background: #5c8eb4;
	mix-blend-mode: multiply;
	bottom: 0;
	left: 0;
	z-index: 1;
}
#title h2 {
	position: absolute;
	width: 100%;
	padding: 0 0.5em;
	top: 55%;
	left: 50%;
	transform: var(--transformXY);
	text-align: center;
	font: bold 2em / 1.2 var(--mincho);
	font-feature-settings: "palt" 1;
	color: var(--co-white);
	text-shadow: 
		 5px  5px 6px var(--co-main),
		-5px  5px 6px var(--co-main),
		 5px -5px 6px var(--co-main),
		-5px -5px 6px var(--co-main),
		 5px  0px 6px var(--co-main),
		 0px  5px 6px var(--co-main),
		-5px  0px 6px var(--co-main),
		 0px -5px 6px var(--co-main);
	z-index: 5;
}
#title h2 span { display: inline-block; }

@media (max-width: 960px) {
	#title { min-height: 35vh; }
}

/*------------main---------------------------------------------------------------*/
main {
	width: 100%;
	margin: auto;
}

/*------------topNav------------------------*/
#topNav ul {
	display: flex;
	justify-content: center;
	gap: 10px 20px;
	width: 96%;
	max-width: 1100px;
	margin: 0 auto 50px;
}
#topNav ul li { width: 190px; }
#topNav ul li a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 0.25em 1.5em;
	background-color: var(--co-main);
	border: 1px solid var(--co-main);
	border-radius: 10px;
	text-align: center;
	font: bold 1rem / 1.2 var(--mincho);
	font-feature-settings: "palt" 1;
	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: 48%;
	right: 0.5em;
	transform: var(--transformY);
	transition: 0.5s;
}
#topNav ul li a:hover {
	background-color: var(--co-white);
	color: var(--co-main);
}
#topNav ul li a:hover::before { background-color: var(--co-main); }

@media (max-width: 960px) {
	#topNav ul { display: none; }
}

/*------------article------------------------------------*/
article {
	position: relative;
	width: 96%;
	margin: 0 auto;
	padding-bottom: 90px;
}
main article:not(:last-of-type) { margin-bottom: 90px; }
article::after {
	position: absolute;
	content: "";
	display: block;
	width: 80%;
	max-width: 800px;
	height: 1px;
  background-image: linear-gradient(to right, var(--co-black) 15px, transparent 15px);
  background-size: 30px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
	bottom: 0;
	left: 50%;
	transform: var(--transformX);
}
article p:not(:first-of-type) { 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;
	background: url("../img/title_line.png") no-repeat center bottom;
	text-align: center;
	font: bold 1.78em / 1.2 var(--mincho);
	font-feature-settings: "palt" 1;
	color: var(--co-main);
}
article h4 {
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 0.25em;
	border-bottom: 1px solid var(--co-gray30);
	font: bold 1.5em / 1.2 var(--mincho);
	font-feature-settings: "palt" 1;
	color: var(--co-sub);
}
article h4::before {
	display: inline-block;
	margin-right: 0.25em;
	content: "■";
}
article h4::after {
	position: absolute;
	display: block;
	content: "";
	width: 20%;
	max-width: 180px;
	border-bottom: 2px solid var(--co-sub);
	bottom: -1px;
	right: 0;
}
article h3 span,
article h4 span { display: inline-block; }
article table {
	width: 100%;
	border-collapse: collapse;
}
article table tr th,
article table tr td {
	width: auto;
	padding: 15px 20px;
	border: 1px solid var(--co-gray30);
	text-align: left;
	vertical-align: top;
}
article table tr th {
	min-width: 14%;
	background-color: var(--co-gray10);
	white-space: nowrap;
}
article table tr th:first-of-type { border-left: 0 none; }
article table tr td:last-of-type { border-right: 0 none; }

@media (max-width: 580px) {
	article table tr th,
	article table tr td {
		display: block;
		width: 100%;
	}
	article table tr td {
		border-top: 0 none;
		border-left: 0 none;
		border-right: 0 none;
	}
	article table tr th {
		padding: 5px;
		border-left: 0 none;
		border-right: 0 none;
	}
	article table tr:not(:first-of-type) th { margin-top: 1em; }
	article table tr td { padding: 10px; }
	article .ScrollBar {
		width: 100%;
		white-space: nowrap;
		overflow: auto;
	}
	article .ScrollBar::before {
		display: block;
		margin-bottom: 0.5em;
		content: "横へタップして全体を確認できます。";
		font-weight: bold;
		color: #f00;
	}
	article .ScrollBar .SpOnly {
		font-weight: bold;
		color: var(--co-main);
	}
	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);
	}
}

/*------------TEL・FAX横並び--------------*/
.number { flex-wrap: wrap; }
.number,
.number dl { display: flex; }
.number dl dt::after { content: "："; }
.number dl:not(:last-of-type) { margin-right: 3em; }

/*------------横並び写真右--------------*/
.fleBox {
	display: flex;
	flex-flow: row-reverse;
	gap: 1em 20px;
}
.fleBox .fle35 {
	width: 100%;
	max-width: 350px;
	margin: 0 auto;
}
.fleBox .fle40 {
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
}
.fleBox .fle68 {
	width: 100%;
	max-width: 680px;
	margin: 0 auto;
}
.fleBox .fle73 {
	width: 100%;
	max-width: 730px;
	margin: 0 auto;
}

@media (max-width: 680px) {
	.fleBox { flex-direction: column; }
	.fleBox .fle35,
	.fleBox .fle40,
	.fleBox .fle68,
	.fleBox .fle73 { max-width: inherit; }
}

/*------------footer---------------------------------------------------------------*/
footer {
	margin-top: 90px;
	font-size: 0.89em;
}
/*------------fLogo------------------------*/
#fLogo {
	width: 215px;
	margin: 0 auto 55px;
}
#fLogo h2 {
	width: 100%;
	margin: 0 auto;
}
#fLogo h2 a {
	display: block;
	height: 85px;
	background: url("../img/footer_logo.png") no-repeat left top;
	overflow: hidden;
	text-indent: -99999px;
	line-height: 0;
	font-size: 0;
}
#fLogo dl {
	width: 200px;
	margin: 25px auto 0;
}
#fLogo dl dt { display: none; }
#fLogo dl dd a {
	display: block;
	height: 20px;
	background: url("../img/footer_tel.png") no-repeat left top;
	overflow: hidden;
	text-indent: -99999px;
	line-height: 0;
	font-size: 0;
}
/*------------nav------------------------*/
footer #fNavAdd {
	width: 100%;
}
footer #FNav h2 { display: none; }
footer nav ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	font-weight: bold;
	color: var(--co-black);
}
footer nav ul ul { display: none; }
footer nav ul li:not(:last-of-type)::after {
	margin: 0 0.5em;
	content: "|";
}
footer nav ul li a { font-weight: bold; }
footer nav ul li a:hover { color: var(--co-sub); }

@media (max-width: 960px) {
	footer #FNav h2 {
		display: block;
		max-width: 215px;
		margin: 50px auto 0;
	}
	footer #FNav h2 a {
		display: block;
		height: 85px;
		background: url("../img/footer_logo.png") no-repeat left top;
		overflow: hidden;
		text-indent: -99999px;
		line-height: 0;
		font-size: 0;
	}
	footer nav ul {
		display: block;
		width: 100%;
		margin: 25px auto 0;
		color: var(--co-black);
	}
	footer nav ul ul {
		display: block;
		margin-top: 0;
	}
	footer nav ul li:not(:nth-last-of-type(1))::after { display: none; }
	footer nav ul li {
		padding: 0.5em 1em;
		border-bottom: 1px solid var(--co-gray30);
	}
	footer nav ul ul li {
		padding: 0.25em 1em;
		border-bottom: 0 none;
	}
	footer nav ul li a {
		position: relative;
		display: flex;
		align-items: center;
		color: var(--co-black);
	}
	footer nav ul li a::before {
		display: inline-block;
		margin-right: 0.25em;
		content: "▲";
		transform: rotate(90deg);
		font-size: 0.5em;
		color: var(--co-main);
	}
	footer nav ul ul li a::before {
		content: "●";
		color: var(--co-sky);
	}
	/* hamburger(ハンバーガーアイコン) =================================== */
	.hamburger {
		position: fixed;
		top: 1.25em;
		right: 1em;
		width: 20px;
		height: 20px;
		background: var(--co-white);
		cursor: pointer;
		z-index: 299999;
	}
	.BurgerLine {
		position: absolute;
		width: 16px;
		height: 2px;
		left: 2px;
		background-color: var(--co-main);
		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;
	}
}
/*------------fAdd------------------------*/
#fAdd {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.15em 1em;
	margin-top: 15px;
	padding: 10px 1em;
	background-color: var(--co-main);
	text-align: center;
	color: var(--co-white);
}
#fAdd dl { display: flex; }
#fAdd dl dt::after { content: "："; }
#fAdd span { display: inline-block; }
#fAdd span:not(:last-of-type) { margin-right: 0.5em; }
#fAdd span,
#fAdd a { color: var(--co-white); }
/*------------address------------------------*/
footer address small {
	display: block;
	padding: 10px 1em 100px;
	background-color: var(--co-black);
	text-align: center;
	font-size: 0.87em;
	color: var(--co-white);
}