@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-green:   #00993d;	/*緑*/
	--co-orange:  #ff5900;	/*オレンジ*/
	--co-red:     #ff0000;	/*赤*/
	--co-gray30:  #bfbfbf;	/*灰30*/

	--transformXY: translate(-50% , -50%);
	--transformX:  translateX(-50%);
	--transformY:  translateY(-50%);
}

/*------------body---------------------------------------------------------------*/
html {
	height: 100%;
	scroll-behavior: smooth;
}
body {
	height: 100%;
	background-color: var(--co-white);
	overflow-y: scroll;
	line-height: 1.4;
	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: 30px;
	height: 30px;
	background: url("../../img/pagetop.png") no-repeat left top / cover;
	right: 0;
	bottom: 10%;
	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;
	max-width: 980px;
	margin: 0 auto;
	padding: 10px 0;
}
header h1 { width: 200px; }
header h1 a {
	display: block;
	padding-top: 23.33333333333333%;
	background: url("../../img/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;
	font-family: var(--mincho);
	font-size: 0.875em;
}
header ul li:not(:nth-last-of-type(1))::after {
	display: inline-block;
	margin: 0 0.25em;
	content: "\00ff5c";
}
header ul li a {
	transition: opacity .3s;
	color: var(--co-black);
}

@media (max-width: 979px) {
	header #InHeader {
		display: block;
		max-width: 96%;
		padding: 5px 0;
	}
	header #InHeader h1 {
		width: 70%;
		margin: 0 0 5px;
	}
	header #InHeader h1 span {
		display: block;
		width: 100%;
	}
	header #InHeader ul { display: none; }
}


/*------------Contents---------------------------------------------------------------*/
#Contents {
	position: relative;
	width: 100%;
	z-index: 1;
}
@media (max-width: 979px) {
}


/*------------#Title------------------------------------*/
#Title {
	position: relative;
	width: 100%;
	height: 330px;
	margin-bottom: 60px;
	background: url("../../img/header_bg.jpg") no-repeat center top / cover;
	z-index: 0;
}
#Title h2 {
	position: absolute;
	max-width: 100%;
	padding: 0 1em;
	top: 65%;
	left: 50%;
	transform: var(--transformXY);
	text-align: center;
	line-height: 1;
	font-family: var(--mincho);
	font-size: 3.125em;
	font-weight: bold;
	color: var(--co-white);
	text-shadow:
		 2px  2px 4px var(--co-black),
		-2px  2px 4px var(--co-black),
		 2px -2px 4px var(--co-black),
		-2px -2px 4px var(--co-black),
		 2px  0px 4px var(--co-black),
		 0px  2px 4px var(--co-black),
		-2px  0px 4px var(--co-black),
		 0px -2px 4px var(--co-black);
	z-index: 2;
}
#Title h2 span {
	display: block;
	line-height: 1.2;
	font-size: 0.4em;
	color: var(--co-white);
	text-shadow: none;
}

@media (max-width: 979px) {
	#Title h2 {
		width: 100%;
		font-size: 2.5em;
	}
}


/*------------txtNav---------------------------------------------------------------*/
.txtNav ul a { position: relative; }
.txtNav ul a:hover { color: var(--co-green); }
.txtNav ul a::before {
	position: absolute;
	display: block;
	content: "";
	background-color: var(--co-green);
	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: 100%;
	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: 230px;
	background-color: var(--co-green);
}
.nav ul li::after {
	position: absolute;
	display: block;
	content: "";
	width: 12px;
	height: 12px;
	background: url("../../img/business_a.png") no-repeat left top / cover;
	top: 50%;
	right: 10px;
	transform: var(--transformY);
	transition: .5s;
}
.nav ul li a {
	position: relative;
	z-index: 1;
	width: 100%;
	display: flex;
  align-items: center;
  justify-content: center;
	padding: 0.5em 1em;
	transition: .5s;
	line-height: 1.2;
	text-align: center;
	font-family: var(--mincho);
	font-weight: bold;
	color: var(--co-white);
}
.nav ul li a:hover { color: #ff0; }

@media (max-width: 979px) {
	.nav { width: 94%; }
	.nav ul {
	  justify-content: space-between;
		gap: 5px 10px;
	}
	.nav ul li {
		width: calc( (100% - 10px) / 2);
	}
}

/*------------InBox------------------------------------*/
main article {
	position: relative;
	margin: 0 auto 80px;
	padding-bottom: 80px;
	overflow: hidden;
	z-index: 0;
}
main article::after {
	position: absolute;
	display: block;
	content: "";
	width: 800px;
	border-bottom: 1px dashed var(--co-gray30);
	bottom: 0;
	left: 50%;
	transform: var(--transformX);
	z-index: 0;
}
main article section {
	position: relative;
	max-width: 980px;
	margin: 0 auto;
	overflow: hidden;
	z-index: 0;
}
main article section + section { margin-top: 30px; }
main article p + p { margin-top: 1em; }
main article h3 {
	position: relative;
	margin-bottom: 40px;
	padding: 0 1em;
	line-height: 1.2;
	text-align: center;
	font-family: var(--mincho);
	font-size: 2.1875em;
	font-weight: bold;
}
main article h4 {
	position: relative;
	margin-bottom: 20px;
	padding: 0 0.45em 0.35em;
	border-bottom: 1px solid var(--co-gray30);
	line-height: 1.2;
	font-family: var(--mincho);
	font-size: 1.5625em;
	font-weight: bold;
	color: var(--co-green);
}
main article h4::before {
	position: absolute;
	display: block;
	content: "";
	width: 220px;
	border-bottom: 3px solid var(--co-green);
	bottom: -1px;
	left: 0;
}
main article table {
	width: 100%;
	border-top: 1px solid var(--co-gray30);
	border-collapse: collapse;
}
main article table tr th,
main article table tr td {
	width: auto;
	padding: 15px 10px;
	border-bottom: 1px solid var(--co-gray30);
	text-align: left;
	vertical-align: top;
}
main article table tr th {
	min-width: 15%;
	border-bottom: 3px solid var(--co-green);
	white-space: nowrap;
	font-weight: bold;
	color: var(--co-green);
}
.Inner {
	width: 100%;
	margin: 30px auto 40px;
	overflow: hidden;
}
.Inner:nth-last-of-type(1) { margin-bottom: 0; }

@media (max-width: 979px) {
	main article::after { width: 80%; }
	main article section {
		position: relative;
		max-width: 94%;
		margin: 0 auto;
		overflow: hidden;
		z-index: 0;
	}
	main article table tr th,
	main article table tr td {
		display: block;
		width: auto;
		padding: 5px 15px;
		border-bottom: 1px solid var(--co-green);
		text-align: left;
		vertical-align: top;
	}
	main article table tr th {
		min-width: 100%;
		padding: 5px;
		border-bottom: 1px solid var(--co-gray30);
	}
	main article table tr:not(:first-of-type) th {
		margin-top: 1em;
		border-top: 1px solid var(--co-gray30);
	}
}


/*------------footer---------------------------------------------------------------*/
footer {
	width: 100%;
	margin-top: 80px;
	font-family: var(--mincho);
}

/*------------LogoTel------------------------*/
footer #LogoTel h2 {
	max-width: 270px;
	margin: 0 auto;
}
footer #LogoTel h2 a {
	display: block;
	padding-top: 23.33333333333333%;
	background: url("../../img/logo.png") no-repeat left top / contain;
	overflow: hidden;
	line-height: 0;
	text-indent: -99999px;
	font-size: 0;
}

@media (max-width: 979px) {
	footer #LogoTel h2 {
		width: 90%;
		margin-top: 30px;
	}
	footer #LogoTel h2 span {
		display: block;
		width: 100%;
	}
}

/*------------footer fAdd------------------------*/
footer #fAdd {
	margin-top: 10px;
	text-align: center;
}
footer #fNumTxt {
	display: flex;
	justify-content: center;
}
footer #fAdd dl { display: flex; }
footer #fNumTxt dl { margin-left: 1em; }
footer #fNumTxt dl dt::after { content: "："; }
footer #fNumTxt a { color: var(--co-black); }

@media (max-width: 979px) {
	footer #fNumTxt {
		display: block;
		width: 100%;
		padding: 0 1em;
		text-align: center;
	}
	footer #fNumTxt dl {
		display: flex;
		justify-content: center;
	}
	footer #fNumTxt dl { margin-left: 0; }
	footer #fNumTxt a { color: var(--co-black); }
}

/*------------footer nav------------------------*/
footer #FNav h2 { display: none; }
footer nav {
	margin-top: 20px;
	padding: 0.5em 1em;
	background-color: var(--co-black);
	color: var(--co-white);
}
footer nav ul {
  display: flex;
  justify-content: center;
}
footer nav ul li:not(:nth-last-of-type(1))::after {
	display: inline-block;
	margin: 0 0.5em;
	content: "\00ff5c";
}
footer nav ul li a {
	color: var(--co-white);
	transition: opacity .3s;
}

@media (max-width: 979px) {
	footer #FNav h2 {
		display: block;
		width: 80%;
		margin: 50px auto 0;
	}
	footer #FNav h2 a {
		display: block;
		padding-top: 23.33333333333333%;
		background: url("../../img/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;
		color: var(--co-green);
	}
	footer nav ul {
		display: block;
		width: 70%;
		margin: 0 auto;
	}
	footer nav ul li:not(:nth-last-of-type(1))::after { display: none; }
	footer nav ul li { margin-top: 1em; }
	footer nav ul li a {
		color: var(--co-green);
		transition: opacity .3s;
	}
	/* hamburger(ハンバーガーアイコン) =================================== */
	.hamburger {
		position: fixed;
		top: 1.5em;
		right: 1em;
		width: 20px;
		height: 20px;
		background: var(--co-green);
		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: #000;
		opacity: 0;
		visibility: hidden;
		transition: all 0.5s;
		cursor: pointer;
	}
	/*ハンバーガーメニューが開いたら表示*/
	.open .black-bg {
		opacity: 0.3;
		visibility: visible;
	}
}
/*------------address------------------------*/
footer address {
	width: 100%;
	margin-top: 30px;
	padding: 0 0 30px;
	text-align: center;
}

@media (max-width: 979px) {
	footer small {
		display: block;
		padding: 0 1em;
	}
}