@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-type: none; }
img {
  width: auto;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: cover;
	object-position: 50% 50%;
}
* {
	-webkit-box-sizing: border-box;
		 -moz-box-sizing: border-box;
			-ms-box-sizing: border-box;
			 -o-box-sizing: border-box;
					box-sizing: border-box;
}
.Clear { clear: both; }


/*--------------------------------------------------------------------
common
ページ共通部分
--------------------------------------------------------------------*/
:root {
	--mincho: "游明朝" , "Yu Mincho" , "游明朝体" , "ヒラギノ明朝 Pro W3" , "HiraMinPro-W3" , "Sawarabi Mincho" , Garamond , "Times New Roman" , serif;
	--meiryo:   "メイリオ", Meiryo, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, Roboto, Verdana, "Droid Sans", sans-serif;
		
	--co-black:    #2a2b2b;	/*黒*/
	--co-white:    #ffffff;	/*白*/
	--co-silv30:   #bfbfbf;	/*灰30％*/
	--co-red:      #ff0000;	/*赤*/
	--co-green:    #8fc700;	/*緑*/
	--co-sky:      #1f73ff;	/*青*/
	--co-navy:     #002457;	/*紺*/
	--co-orange:   #ff5900;	/*橙*/
	
	--tr-f-XY: translate(-50% , -50%);
	--tr-f-X:  translateX(-50%);
	--tr-f-Y:  translateY(-50%);
}

/*------------body---------------------------------------------------------------*/
html {
	height: 100%;
	scroll-behavior: smooth;
}
body {
	height: 100%;
	background-color: var(--co-white);
	overflow-y: scroll;
	line-height: 1.6;
	font-feature-settings: "palt" 1;
	font-family: var(--meiryo);
	font-size: 16px;
	font-weight: normal;
	color: var(--co-black);
}
.PcOnly { display: block; }
.SpOnly { display: none; }
div#PageTop a {
	position: fixed;
	display: block;
	width: 28px;
	height: 28px;
	background: url("../../img/pagetop.png") no-repeat left top / contain;
	right: 3%;
	bottom: 2%;
	overflow: hidden;
	line-height: 0;
	font-size: 0;
	z-index: 9999;
}

@media (max-width: 979px) {
	body { font-size: 14px; }
	.PcOnly { display: none; }
	.SpOnly { display: block; }
	.SpNo { display: none; }
	div#PageTop a {
		width: 20px;
		height: 20px;
	}
}

/*------------Header------------------------------------------------------------*/
header {
	position: fixed;
	width: 100%;
	background-color: rgba(255,255,255,0.85);
	top: 0;
	left: 0;
	z-index: 9999;
}
header #InHeader {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 96%;
	max-width: 980px;
	margin: 0 auto;
	padding: 10px 0;
}
header h1 { width: 266px; }
header h1 a {
	display: block;
	padding-top: 17.29323308270677%;
	background: url("../../img/header_logo.png") no-repeat left top / contain;
	overflow: hidden;
	line-height: 0;
	text-indent: -99999px;
	font-size: 0;
}
header ul {
	display: flex;
	justify-content: flex-end;
	text-align: right;
}
header ul li:not(:last-of-type)::after {
	display: inline-block;
	margin: 0 0.25em;
	content: "\00ff5c";
}
header ul li a {
	font-family: var(--mincho);
	font-size: 0.87em;
	font-weight: bold;
	color: var(--co-black);
	transition: opacity .3s;
}

@media (max-width: 979px) {
	header #InHeader { padding: 5px 0; 	}
	header #InHeader h1 {
		width: 50%;
		max-width: 266px;
	}
	header #InHeader h1 span {
		display: block;
		width: 100%;
	}
	header #InHeader ul { display: none; }
}

/*------------#Title---------------------------------------------------------------*/
#Title {
	position: relative;
	width: 100%;
	height: 350px;
	background: url("../../img/title_bg.jpg") no-repeat center center / cover;
	z-index: 0;
}
#Title h2 {
	position: absolute;
	padding: 0 0.5em;
	top: 60%;
	left: 50%;
	transform: var(--tr-f-XY);
	text-align: center;
	line-height: 1.2;
	font-family: var(--mincho);
	font-size: 2.25em;
	font-weight: bold;
	color: var(--co-black);
	text-shadow: 
		 1px  1px 6px var(--co-white),
		-1px  1px 6px var(--co-white),
		 1px -1px 6px var(--co-white),
		-1px -1px 6px var(--co-white),
		 1px  0px 6px var(--co-white),
		 0px  1px 6px var(--co-white),
		-1px  0px 6px var(--co-white),
		 0px -1px 6px var(--co-white);
}
#Title h2 span {
	display: block;
	line-height: 1.2;
	font-family: var(--meiryo);
	font-size: 0.45em;
	font-weight: normal;
}

@media (max-width: 979px) {
	#Title { height: 200px; }
	#Title h2 { width: 100%; }
}


/*------------Contents---------------------------------------------------------------*/
#Contents {
	position: relative;
	width: 100%;
	padding-top: 50px;
	z-index: 1;
}


/*------------txtNav---------------------------------------------------------------*/
.txtNav ul a { position: relative; }
.txtNav ul a:hover { color: var(--co-red); }
.txtNav ul a::before {
	position: absolute;
	display: block;
	content: "";
	background-color: var(--co-red);
	width: 100%;
	height: 1px;
	left: 0;
	bottom: 0;
	margin: auto;
	transform-origin: center top;
	transform: scale(0, 1);
	transition: transform .3s;
}
.txtNav ul a:hover::before {
	transform-origin: center top;
	transform: scale(1, 1);
}
/*------------TopNav---------------------------------------------------------------*/
.nav {
	position: relative;
	width: 94%;
	max-width: 980px;
	margin: 0 auto 60px;
	z-index: 5;
}
.nav ul {
  display: flex;
	flex-wrap: wrap;
  justify-content: center;
	gap: 10px 20px;
}
.nav ul li {
	position: relative;
	display: flex;
  justify-content: center;
	transition: .5s;
	width: calc((100% - 20px * 3) / 4);
}
#compNav ul li { width: calc((100% - 20px * 4) / 5); }
.nav ul li a {
	position: relative;
  display: flex;
	flex-wrap: wrap;
  justify-content: flex-start;
	align-items: center;
	z-index: 1;
	width: 100%;
	padding: 0.5em 20px 0.5em 10px;
	transition: 1s;
	line-height: 1.2;
	font-family: var(--mincho);
	font-weight: bold;
	color: var(--co-white);
}
.nav ul li a::before {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: var(--co-navy);
	clip-path: polygon(0 0, 90% 0%, 100% 100%, 0% 100%);
	z-index: -1;
	border-radius: 5px;
}
.nav ul li a::after {
	position: absolute;
	display: block;
	content: "";
	width: 20px;
	height: 20px;
	top: 50%;
	right: 0;
	transform: var(--tr-f-Y);
	background: url("../../img/nav_a.png") no-repeat left top / cover;
	z-index: 5;
}
.nav ul li:hover {
	text-decoration: none;
	filter: alpha(opacity=75);
	-moz-opacity: 0.75;
	opacity: 0.75;
}
.nav ul li a:hover { color: #ff0; }

@media (max-width: 730px) {
	.nav ul { gap: 10px; }
	.nav ul li,
	#compNav ul li { width: calc((100% - 10px * 2) / 3); }
	.nav ul li a::after {
		width: 15px;
		height: 15px;
	}
}

@media (max-width: 440px) {
	.nav ul li,
	#compNav ul li { width: calc((100% - 10px) / 2); }
}

/*------------InBox------------------------------------*/
main article {
	position: relative;
	margin: 0 auto 100px;
	overflow: hidden;
	z-index: 0;
}
main article:last-of-type { margin-bottom: 0; }
main article section {
	position: relative;
	width: 94%;
	max-width: 980px;
	margin: 0 auto;
	overflow: hidden;
	z-index: 0;
}
main article section:not(:first-of-type) { margin-top: 40px; }
main article p:not(:first-of-type) { margin-top: 1em; }
main article h3 {
	position: relative;
	margin-bottom: 40px;
	padding-bottom: 0.25em;
	text-align: center;
	line-height: 1.2;
	font-family: var(--mincho);
	font-size: 1.875em;
	font-weight: bold;
}
main article h3::before {
	position: absolute;
	display: block;
	content: "";
	width: 150px;
	height: 3px;
	background-color: var(--co-silv30);
	bottom: 0;
	left: 50%;
	transform: var(--tr-f-X);
	z-index: 0;
}
main article h3 span {
	display: inline-block;
	font-weight: bold;
}
main article h4 {
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 0.25em;
	text-align: center;
	line-height: 1.2;
	font-family: var(--mincho);
	font-size: 1.5625em;
	font-weight: bold;
}
main article h4::before,
main article h4::after {
	position: absolute;
	display: block;
	content: "";
	height: 3px;
	bottom: 0;
	left: 50%;
	transform: var(--tr-f-X);
	z-index: 0;
}
main article h4::before {
	width: 40%;
	max-width: 400px;
	background-color: var(--co-silv30);
}
main article h4::after {
	width: 15%;
	max-width: 150px;
	background-color: var(--co-red);
}
main article h4 span {
	display: inline-block;
	font-family: var(--mincho);
	font-weight: bold;
}
main article table {
	width: 100%;
	border-collapse: collapse;
	border-top: 1px solid var(--co-silv30);
}
main article table tr th,
main article table tr td {
	width: auto;
	padding: 15px 20px;
	border-bottom: 1px solid var(--co-silv30);
	text-align: left;
	vertical-align: top;
}
main article table tr th {
	min-width: 15%;
	white-space: nowrap;
	font-weight: bold;
}
main article .Inner:not(:first-of-type) { margin-top: 40px; }

@media (max-width: 979px) {
	main article table tr th,
	main article table tr td {
		display: block;
		width: auto;
		padding: 5px 15px;
		border-bottom: 1px solid var(--co-silv30);
		text-align: left;
		vertical-align: top;
	}
	main article table tr th {
		min-width: 100%;
		padding: 5px;
	}
}


/*------------footer---------------------------------------------------------------*/
footer {
	position: relative;
	width: 100%;
	padding-top: 80px;
}


/*------------LogoTel------------------------*/
footer #LogoTel {
	width: 100%;
	padding-bottom: 5px;
	background: url("../../img/footer_bg.png") repeat-x center bottom;
}
footer #LogoTel h2 {
	width: 80%;
	max-width: 208px;
	margin: 0 auto 5px;
}
footer #LogoTel h2 a {
	display: block;
	padding-top: 62.98076923076923%;
	background: url("../../img/footer_logo.png") no-repeat left top / contain;
	overflow: hidden;
	line-height: 0;
	text-indent: -99999px;
	font-size: 0;
}
footer #LogoTel #fTel {
	width: 186px;
	margin: 0 auto 30px;
}
footer #LogoTel #fTel dt { display: none; }
footer #LogoTel #fTel span,
footer #LogoTel #fTel a {
	display: block;
	padding-top: 11.82795698924731%;
	background: url("../../img/footer_tel.png") no-repeat left top / contain;
	overflow: hidden;
	line-height: 0;
	text-indent: -99999px;
	font-size: 0;
}
footer #LogoTel div,
footer #LogoTel div dl {
	display: flex;
	justify-content: center;
	font-family: var(--mincho);
}
footer #LogoTel div p,
footer #LogoTel div dl + dl { margin-left: 1em; }
footer #LogoTel div dl dt::after { content: "："; }

@media (max-width: 979px) {
	footer #LogoTel h2 span {
		display: block;
		width: 100%;
	}
	footer #LogoTel div {
		display: block;
		text-align: center;
	}
	footer #LogoTel div p,
	footer #LogoTel div dl + dl { margin-left: 0; }
}

/*------------footer nav------------------------*/
footer #FNav h2 { display: none; }
footer nav {
	margin-top: 0;
	padding: 0.5em 1em;
	background-color: #f0f0f0;
}
footer nav ul {
  display: flex;
	flex-wrap: wrap;
  justify-content: center;
	font-family: var(--mincho);
}
footer nav ul li:not(:last-of-type)::after {
	display: inline-block;
	margin: 0 0.5em;
	content: "｜";
}
footer nav ul li a {
	color: var(--co-black);
	transition: opacity .3s;
}

@media (max-width: 979px) {
	footer #FNav h2 {
		display: block;
		width: 80%;
		max-width: 208px;
		margin: 50px auto 0;
	}
	footer #FNav h2 span {
		display: block;
		width: 100%;
	}
	footer #FNav h2 a {
		display: block;
		padding-top: 62.98076923076923%;
		background: url("../../img/footer_logo.png") no-repeat left top / contain;
		overflow: hidden;
		line-height: 0;
		text-indent: -99999px;
		font-size: 0;
	}
	footer nav {
		margin-top: 1em;
		padding: 1em;
		background-color: transparent;
	}
	footer nav ul {
		display: block;
		color: var(--co-black);
	}
	footer nav ul li:not(:last-of-type)::after { display: none; }
	footer nav ul li + li { margin-top: 0.5em; }
	footer nav ul li a {
		color: var(--co-black);
		transition: opacity .3s;
	}
	footer nav ul li::before {
		display: inline-block;
		padding-right: 0.2em;
		content: "■";
	}
	/* hamburger(ハンバーガーアイコン) =================================== */
	.hamburger {
		position: fixed;
		top: 1em;
		right: 1em;
		width: 20px;
		height: 20px;
		background: var(--co-sky);
		cursor: pointer;
		z-index: 29999;
	}
	.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: 19999;
		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: #000;
		opacity: 0;
		visibility: hidden;
		transition: all 0.5s;
		cursor: pointer;
	}
	/*ハンバーガーメニューが開いたら表示*/
	.open .black-bg {
		opacity: 0.3;
		visibility: visible;
	}
}
/*------------address------------------------*/
footer address {
	width: 100%;
	padding: 15px 0 60px;
	text-align: center;
}
footer small {
	font-family: var(--mincho);
	font-size: 1rem;
	color: var(--co-black);
}

@media (max-width: 979px) {
	footer small {
		display: block;
		padding: 0 1em;
		font-size: 1em;
		color: var(--co-black);
	}
}