@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&family=Oswald:wght@400;700;900&display=swap');
/*! destyle.css v3.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*,::before,::after{box-sizing:border-box;border-style:solid;border-width:0}html{line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}body{margin:0}main{display:block}p,table,blockquote,address,pre,iframe,form,figure,dl{margin:0}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit;margin:0}ul,ol{margin:0;padding:0;list-style:none}dt{font-weight:700}dd{margin-left:0}hr{box-sizing:content-box;height:0;overflow:visible;border-top-width:1px;margin:0;clear:both;color:inherit}pre{font-family:monospace,monospace;font-size:inherit}address{font-style:inherit}a{background-color:transparent;text-decoration:none;color:inherit}abbr[title]{text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:inherit}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}svg,img,embed,object,iframe{vertical-align:bottom}button,input,optgroup,select,textarea{-webkit-appearance:none;appearance:none;vertical-align:middle;color:inherit;font:inherit;background:transparent;padding:0;margin:0;border-radius:0;text-align:inherit;text-transform:inherit}[type="checkbox"]{-webkit-appearance:checkbox;appearance:checkbox}[type="radio"]{-webkit-appearance:radio;appearance:radio}button,[type="button"],[type="reset"],[type="submit"]{cursor:pointer}button:disabled,[type="button"]:disabled,[type="reset"]:disabled,[type="submit"]:disabled{cursor:default}:-moz-focusring{outline:auto}select:disabled{opacity:inherit}option{padding:0}fieldset{margin:0;padding:0;min-width:0}legend{padding:0}progress{vertical-align:baseline}textarea{overflow:auto}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}label[for]{cursor:pointer}details{display:block}summary{display:list-item}[contenteditable]:focus{outline:auto}table{border-color:inherit}caption{text-align:left}td,th{vertical-align:top;padding:0}th{text-align:left;font-weight:700}
/* -----------------------------------------------
 [Base(ベース)]
-------------------------------------------------- */
html,body {
	width: 100%;
	height: 100%;
}
html {
  font-size: 62.5%; /* sets the base font to 10px for easier math */
  -webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-overflow-scrolling: touch;
}
body {
	font-family: 'Noto Sans JP', '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', sans-serif;
  font-size: 1.6rem;   /* sets the default sizing to make sure nothing is actually 10px */
  line-height: 1.6;
  color: #000;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}
@media screen and (min-width: 741px) {
	body {
		min-width: 980px;
		margin: auto;
	}
}	
img {
	line-height: 1.0;
}
a {
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.clearfix:after {
	display: block;
	clear: both;
	content: "";
}
/* clear
-------------------------------------------------- */
.clearB { clear: both; }
.clearL { clear: left; }
.clearR { clear: right; }

/* -----------------------------------------------
 [Layout(レイアウト)]
-------------------------------------------------- */
.warp {
	width: 1024px;
	margin: 0 auto;

}
@media screen and (max-width:740px) {
	.warp {
		width: 90%;
		margin: 0 5%;
	}
}
a[href^="tel:"] {
	color: #333;
	text-decoration: none;
	 cursor: text;
	 pointer-events: none;
}
a.linkImg.hover:after {
	content:"";
	background: rgba(0,85,157,0.5);
	top: 0;
	left: 0;
	position: absolute;
	width: 100%;
}

/* header
-------------------------------------------------- */
header {
	width: 100%;
	height: 90px;
	padding: 0 30px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media screen and (max-width:740px) {
	header {
		position: fixed;
		z-index: 1;
		top: 0;
		width: 100%;
		height: 56px;
		padding: 0 20px;
		border-bottom: solid 1px #b7b7b7;
	} 
}
header p:first-of-type {
	width: auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 3rem;
	line-height: 1.2;
}
@media screen and (max-width:740px) {
	header p:first-of-type {
		font-size: 1.8rem;
	} 
}
header p:first-of-type a {
	height: 70px;
}

@media screen and (max-width:740px) {
	header p:first-of-type a {
		height: 44px;
	} 
}
header p:first-of-type img {
	width: auto;
	height: 100%;
	margin-right: 1.5em;
}
@media screen and (max-width:740px) {
	header p:first-of-type img {
		margin-right: 1em;
	}  
}
header p a {
	position: ;
	color: #736d71;
	font-size: 2rem;
	padding-right: 2rem;
}
header p a.hover {
	color: #ffedab;
}
header p a::after {
	position: absolute;
	content: "";
	top: 6px;
	right: 0;
	width: 8px;
	height: 8px;
	border-top: 1px solid #939393;
	border-right: 1px solid #939393;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
header p a.hover::after  {
	border-color: #00559d;
}
@media screen and (max-width:740px) {
	header p {
		display: none;
	}
}
/* footer
-------------------------------------------------- */
footer {
	display: flex;
	justify-content: space-between;
	width: 100%;
  padding: 30px 50px 40px;
	border-top: #c5c5c5 solid 1px;
}
@media screen and (max-width:740px) {
	footer {
		display: inline-block;
		padding: 20px 5% 70px;
	}
}
footer #footNav {
	display: flex;
	justify-content: flex-start;
	font-size: 1.1rem;
}
@media screen and (max-width:740px) {
	footer #footNav {
		justify-content: center;
		margin-bottom: 10px;
	}
}
footer #footNav li a {
	color: #333;
	line-height: 1.2;
	text-decoration: none;
	margin-bottom: 1em;
}
footer #footNav li:first-child a {
	padding-right: 15px;
	margin-right: 15px;
	border-right: #333 solid 1px;
}
footer #footNav li a.hover {
	text-decoration: underline;
}
footer #copyright {
	font-size: 1.2rem;
}
@media screen and (max-width:740px) {
	footer #copyright {
		text-align: center;
		margin-bottom: 30px;
	}
}

footer  #sns {
	display: flex;
	justify-content: space-between;
}
footer #sns li {
	display: block;
	margin-left: 15px;
}
@media screen and (max-width:740px) {
	footer #sns li {
    width: 10%;
    margin-left: 2.8%;
	}
	footer #sns li:first-of-type {
    margin-left: 0;
	}
}
footer #sns li img {
	width: 34px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
@media screen and (max-width:740px) {
	footer #sns li img {
		width: 100%;
	}
}
footer #sns li a.hover img {
	opacity: 0.65;
	filter: brightness(115%);
}
/* #pagetop
-------------------------------------------------- */
#pagetop {
	cursor: pointer;
	position: fixed;
	right: 50px;
	bottom: 107px;
	z-index: 1;
	width: 80px;
	height: 80px;
	padding-bottom: 10px;
	background-color: #f3981d;
	border: 1px solid #f3981d;
	color: #fff;
	font-size: 1.3rem;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}
@media screen and (max-width:740px) {
	#pagetop {
		right: 0;
		bottom: 0;
		width: 100%;
		height: 45px;
		padding-bottom: 11px;
		font-size: 1.2rem;
	}
}
#pagetop::before {
	position: absolute;
	content: "";
	top: 26px;
	left: 39%;
	width: 20px;
	height: 20px;
	border-top: 4px solid #fff;
	border-right: 4px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}
@media screen and (max-width:740px) {
	#pagetop::before {
    top: 21px;
    left: calc(40% - 2em);
		width: 12px;
		height: 12px;
		border-top-width: 2px;
		border-right-width: 2px;
	}
}
#pagetop.hover {
	background-color: #fff;
	color: #2d62a1;
}
#pagetop.hover::before {
	border-top-color: #2d62a1;
	border-right-color: #2d62a1;
}
/* #visual
-------------------------------------------------- */
#visual {
	position: relative;
  height: 560px;
  padding: 120px 0;
	background: url("../images/2342867.jpg")  center / cover no-repeat #fff;
}
@media screen and (max-width:740px) {
	#visual {
		height: 60vh;
    min-height: 320px;
    padding: 90px 0 0;
    width: 100%;
    background-size: auto 100%;
    background-position: center left 30%;
	}
	#en #visual {
		height: 80vh;
	}
}
#visual h1 {
	width: 1000px;
	margin: 0 auto 30px;
	font-size: 5.0rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	color: #fff;
	text-shadow: 0px 1px 3px rgba(0,0,0,0.7);
}
@media screen and (max-width:740px) {
	#visual h1 {
		width: 100%;
		font-size: 2.8rem;
		margin-bottom: 1em;
	}
}
#visual .copy {
	width: 1000px;
	margin: 0 auto 1em;
	font-size: 2.8rem;
	font-weight: 700;
	text-align: center;
	color: #fff;
	text-shadow: 0px 1px 3px rgba(0,0,0,0.7);
}
@media screen and (max-width:740px) {
	#visual .copy {
		width: 100%;
		margin: 0 auto 1em;
		font-size: 1.6rem;
		line-height: 1.4;
	}
}
#visual .sentence {
	width: 1000px;
	margin: auto;
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	color: #fff;
	text-shadow: 0px 1px 3px rgba(0,0,0,0.7);
}
@media screen and (max-width:740px) {
	#visual .sentence {
		width: 100%;
		margin: auto;
		font-size: 1.4rem;
		line-height: 1.4;
	}
	#visual .sentence br {
		display: none;
	}
}
/* nav
-------------------------------------------------- */
nav {
	padding: 20px 0;
	background-color: #F0F0F0;
}
@media screen and (max-width:740px) {
	nav {
		padding: 12px 0;
	}
}

#effect{
	margin-bottom: 2rem;
	font-family: GulimChe;
	font-size: 2.5rem;
	font-weight: bold;
	text-decoration: underline;

}
nav ul {
	width: 1024px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width:740px) {
	nav ul {
		width: 90%;
		margin: 0 5%;
		flex-wrap: wrap;
	}
}
nav ul li {
	width: 192px;
}
@media screen and (max-width:740px) {
	nav ul li {
		width: 18.5%;
	}
}
nav ul li a {
	position: relative;
	flex-wrap: wrap;
  display: flex;
	justify-content: center;
	width: 100%;
	height: 150px;
	background-color: #fff;
	padding: 20px 0;
}
nav ul li a.hover {
	background-color: #ffedab;
}
@media screen and (max-width:740px) {
	nav ul li a {
		height: 94px;
		padding: 6px 0;
	}
}
nav ul li a img {
	width: 70px;
	height: 70px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
nav ul li a.hover img {
	filter: brightness(105%) contrast(135%);
	transform:rotate(180deg);
}
@media screen and (max-width:740px) {
	nav ul li a img {
		width: 37px;
		height: 37px;
	}
}
nav ul li a span {
	width: 100%;
	color: #000;
	font-weight: 700;
	font-size: 1.5rem;
	text-align: center;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
nav ul li a.hover span {
	color: #000;
}
@media screen and (max-width:740px) {
	nav ul li a span {
		font-weight: 400;
		font-size: 1.1rem;
		line-height: 1.2;
		margin-top: -1em;
	}
}
nav ul li a::after {
	position: absolute;
	content: "";
	bottom: 12px;
	left: 48%;
	width: 10px;
	height: 10px;
	border-top: 2px solid #727272;
	border-right: 2px solid #727272;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
nav ul li a.hover::after {
	border-color: #fff;
}
/* main
-------------------------------------------------- */
main {
	padding: 50px 0 50px;
	background-color: #ffe9a9;
}
@media screen and (max-width:740px) {
	main {
		padding: 40px 0 50px;
	}
}
main h2 {
  display: flex;
	align-items: center;
	height: 125px;
	padding-left: 30px;
	margin-bottom: 15px;
	color: #626063;
	font-size: 3.2rem;
	font-weight: 700;
	background-color: #fff;
	border-bottom: 10px solid #abb1b5;
}
@media screen and (max-width:740px) {
	main h2 {
		height: 75px;
		padding-left: 10px;
		margin-bottom: 10px;
		font-size: 2.4rem;
		border-bottom-width: 6px;
	}
}
main h2 img {
	width: 80px;
	height: 80px;
	margin-right: 1em;
}
@media screen and (max-width:740px) {
	main h2 img {
		width: 50px;
		height: 50px;
		margin-right: 0.6em;
	}
}
main article {
	height: auto;
	/*min-height: 400px;*/
	background-color: #fff;
	margin-bottom: 30px;
}
@media screen and (max-width:740px) {
	main article {
		height: auto;
		min-height: auto;
	}
}
main article.period {
	margin-bottom: 100px;
}
@media screen and (max-width:740px) {
	main article.period {
		margin-bottom: 60px;
	}
}
main article h3 {
	position: relative;
	color: #626063;
	font-size: 2.8rem;
	font-weight: 700;
	padding: 21px 0 21px 60px;
	border-bottom: 1px solid #D1D1D1;
	line-height: 1.2;
}
@media screen and (max-width:740px) {
	main article h3 {
		font-size: 2rem;
		padding: 12px 0 12px 33px;
	}
}
main article h3::before {
	content: "";
	position: absolute;
	width: 15px;
	height: 2px;
	background-color: #0B458D;
	display: block;
	top: 50%;
	left: 30px;
}
@media screen and (max-width:740px) {
	main article h3::before {
		width: 12px;
		height: 2px;
		top: 50%;
		left: 10px;
	}
}
main article .item {
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 27px 30px;
}
@media screen and (max-width:740px) {
	main article .item {
		display: inline-block;
		padding: 15px 15px 20px;
	}
}
main article .item img {
	width: 432px;
}
@media screen and (max-width:740px) {
	main article .item img {
		width: 100%;
		margin-bottom: 10px;
	}
}
main article .item div {
	position: relative;
	width: 492px;
}
@media screen and (max-width:740px) {
	main article .item div {
		width: 100%;
	}
}
main article .item div .sub {
	color: #333;
	font-size: 1.3rem;
	line-height: 1.3;
}
main article .item div h4 {
	color: #626063;
	font-size: 3.3rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
}
@media screen and (max-width:740px) {
	main article .item div h4 {
		font-size: 3.0rem;
		margin-bottom: 10px;
	}
}
main article .item div h4 span {
	display: inline-block;
	color: #333;
	font-size: 1.3rem;
	font-weight: 400;
	margin-left: 1em;
}
@media screen and (max-width:740px) {
	main article .item div h4 span {
		font-size: 1.1rem;
	}
}
main article .item div h4 strong {
	display: inline-block;
	color: #707070;
	font-size: 1.8rem;
	font-weight: 400;
	margin-left: 1em;
	padding: 5px 1em;
	border: 1px solid #707070;
	transform: translateY(-5px);
}
@media screen and (max-width:740px) {
	main article .item div h4 strong {
		display: block;
		font-size: 1.5rem;
		width: fit-content;
		transform: none;
		margin: 10px 0 0;

	}
}

main article .item div ul {
	position: absolute;
	width: 100%;
	bottom: 0;
	display: flex;
	justify-content: space-between;
}
main article .item div .txt {
	font-size: 1.5rem;
}
@media screen and (max-width:740px) {
	main article .item div ul {
		position: relative;
		bottom: inherit;
		display: inline-block;
		margin-top: 10px;
	}
}
main article .item div ul li {
	width: 240px;
}
@media screen and (max-width:740px) {
	main article .item div ul li {
		width: 100%;
		margin-top: 12px;
	}
}
main article .item div ul li a {
	position: relative;
	width: 100%;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #245896;
	border: 1px solid #245896;
	color: #fff;
	font-size: 1.8rem;
}
@media screen and (max-width:740px) {
	main article .item div ul li a {
		height: 40px;
		font-size: 1.5rem;
	}
}
main article .item div ul li a::after {
	position: absolute;
	content: "";
	top: 42%;
	right: 12px;
	width: 9px;
	height: 9px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all .3s linear;
	transition: all .3s linear;
}
main article .item div ul li a.hover {
	background-color: #fff;
	color: #245896;
}
main article .item div ul li a.hover::after {
	right: 8px;
	border-color: #245896;
}
main .link {
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding-bottom: 15px;
}
@media screen and (max-width:740px) {
	main .link {
		display: inline-block;
	}
}
main .link li a {
  display: flex;
	align-items: center;
	height: 125px;
	width: 500px;
	padding-left: 30px;
	color: #626063;
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.2;
	background-color: #fff;
	border-bottom: 10px solid #626063;
	margin-bottom: 30px;
	margin-top: auto;
}
@media screen and (max-width:740px) {
	main .link li a {
		height: 75px;
		width: 100%;
	}
}
@media screen and (max-width:740px) {
	main .link li a {
		height: 75px;
		padding-left: 10px;
		margin-bottom: 20px;
		font-size: 2.4rem;
		border-bottom-width: 6px;
	}
	main .link li:last-of-type a {
		margin-bottom: 0;
	}
}
main .link li a.hover {
	color: #fff;
	background-color: #626063;
	border-color: #fff;
}
main .link li a img {
	width: 80px;
	height: 80px;
	margin-right: 1em;
	-webkit-transition: all .3s linear;
	transition: all .3s linear;
}
main .link li a.hover img {
	filter: brightness(105%) contrast(135%);
}
@media screen and (max-width:740px) {
	main .link li a img {
		width: 50px;
		height: 50px;
		margin-right: 0.6em;
	}
}

main .mushou {
	/*display: flex;*/
	justify-content: center;
	width: 100%;
	padding-bottom: 15px;
}
@media screen and (max-width:740px) {
	main .mushou {
		display: inline-block;
	}
}
main .mushou li a {
  display: flex;
	align-items: center;
	text-align: center;
	height: 160px;
	width: 1025px;
	padding-left: 40px;
	color: #000;
	font-size: 4.2rem;
	font-weight: 1000;
	line-height: 1.2;
	background-color: #fff;
	border-bottom: 20px solid #faac05;
	margin-bottom: 30px;
	margin-top: auto;
}
@media screen and (max-width:740px) {
	main .mushou li a {
		height: 75px;
		width: 100%;
	}
}
@media screen and (max-width:740px) {
	main .mushou li a {
		height: 75px;
		padding-left: 10px;
		margin-bottom: 20px;
		font-size: 2.4rem;
		border-bottom-width: 6px;
	}
	main .mushou li:last-of-type a {
		margin-bottom: 0;
	}
}
main .mushou li a.hover {
	color: #fff;
	background-color: #626063;
	border-color: #fff;
}
main .mushou li a img {
	width: 80px;
	height: 80px;
	margin-right: 1em;
	-webkit-transition: all .3s linear;
	transition: all .3s linear;
}
main .mushou li a.hover img {
	filter: brightness(105%) contrast(135%);
}
@media screen and (max-width:740px) {
	main .mushou li a img {
		width: 50px;
		height: 50px;
		margin-right: 0.6em;
	}
}


.kaisha {
width: 100%;
height: auto;
}

.kaisha th,
.kaisha td {
border: 1px solid #ccc;
padding: 20px;
}

.kaisha th {
font-weight: bold;
background-color: #dedede; 
text-align: center;
}

@media screen and (max-width: 740px){
	.kaisha{
		font-size: 1.8rem;


	}
}
/* #banner
-------------------------------------------------- */
#banner {
	padding: 80px 0 50px;
	background-color: #F0F0F0;
}
@media screen and (max-width:740px) {
	#banner {
		padding: 50px 0 30px;
	}
}
#banner ul {
	width: 1024px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
@media screen and (max-width:740px) {
	#banner ul {
		width: 90%;
		margin: 0 5%;
		flex-wrap: wrap;
	}
}
#banner ul li {
	width: 500px;
	height: 360px;
	margin-bottom: 30px;
}
@media screen and (max-width:740px) {
	#banner ul li {
		width: 100%;
		height: auto;
		margin-bottom: 20px;
	}
	#banner ul li img {
		width: 100%;
	}
}
#banner ul li a {
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
	font-size: 3.2rem;
	font-weight: 700;
	background-color: #245896;
}
@media screen and (max-width:740px) {
	#banner ul li a {
		font-size: 1.8rem;
	}
}
#banner ul li span {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 120px;
	line-height: 1.2;
}
@media screen and (max-width:740px) {
	#banner ul li span {
		height: 50px;
		padding: 0 1em;
	}
}
#banner ul li span::after {
	position: absolute;
	content: "";
	top: 42%;
	right: 22px;
	width: 20px;
	height: 20px;
	border-top: 4px solid #fff;
	border-right: 4px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all .3s linear;
	transition: all .3s linear;
}
@media screen and (max-width:740px) {
	#banner ul li span::after {
		width: 10px;
		height: 10px;
		border-top-width: 2px;
		border-right-width: 2px;
	}
}
#banner ul li a.hover {
	color: #0B458D;
	background-color: #fff;
}
#banner ul li a.hover img {
	filter: brightness(105%) contrast(135%);
}
#banner ul li a.hover span::after {
	right: 16px;
	border-color: #0B458D;
}
/* #inquiry
-------------------------------------------------- */
#inquiry {
	padding: 100px 0;
	background-color: #fff;
}
@media screen and (max-width:740px) {
	#inquiry {
		padding: 50px 0;
	}
}
#inquiry h2 {
	color: #0B458D;
	font-size: 3.2rem;
	font-weight: 700;
	text-align: center;
	padding-bottom: 1em;
	margin-bottom: 60px;
	border-bottom: 10px solid #0B458D;
}
@media screen and (max-width:740px) {
	#inquiry h2 {
		font-size: 2.1rem;
		padding-bottom: 10px;
		margin-bottom: 20px;
		border-bottom-width: 5px;
	}
}
#inquiry section {
	width: 880px;
	margin: 0 auto;
}
@media screen and (max-width:740px) {
	#inquiry section {
		width: 100%;
		margin: 0 auto;
	}
}
#inquiry .contactNotes {
	width: 100%;
	padding: 25px 20px;
	line-height: 1.4;
	border: #c5c5c5 solid 1px;
}
#inquiry .contactNotes li {
	text-indent: -1em;
	padding-left: 1em;
	margin-bottom: 4px;
}
#inquiry .contactNotes li:last-child {
	margin-bottom: 0;
}
#inquiry .contactNotes li a {
	color: #0B458D;
	text-decoration: underline;
}
#inquiry .contactNotes li a.hover {
	text-decoration: none;
}

#inquiry form {
	border-top: #c5c5c5 solid 1px;
}
#inquiry form input,
#inquiry form textarea,
#inquiry form select {
	border: #00559d solid 2px;
	padding: 4px 6px;
	line-height: 1.3;
}
#inquiry form select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-right: none;
	padding: 4px 50px 4px 6px;
	background: #fff url(../images/btn_select.svg) no-repeat right center;
	background-size: inherit;
	width: auto;
}
@media all and (-ms-high-contrast:none){
  *::-ms-backdrop, #inquiry form select {/*IE11*/
	padding: 2px 50px 2px 6px;
  }
}
#inquiry form select::-ms-expand {/*IE*/
  display: none;
}
#inquiry form select,
#inquiry form textarea,
#inquiry form input[type="button"],
#inquiry form input[type="text"],
#inquiry form input[type="email"],
#inquiry form input[type="tel"],
#inquiry form input[type="url"],
#inquiry form input[type="submit"] {
   -webkit-appearance: none;
   border-radius: 0;
}
#inquiry form textarea,
#inquiry form input[type="text"],
#inquiry form input[type="email"] {
	width: 100%;
}
#inquiry form input.aform-zipcode,
#inquiry form input.fax,
#inquiry form input[type="tel"],
#inquiry form input[type="url"] {
	width: 60%;
}
#inquiry form input.aform-zipcode {
	width: 40%;
}
#inquiry form .aform-hdln {
	float: left;
	width: 100%;
	color: #00559D;
	font-size: 1.8rem;
	font-weight: normal;
	border-top:1px solid #00559D;
	border-bottom: 1px solid #00559D;
	padding: 10px 15px;
	margin: 30px 0 0;
	background-color: #F5F6F9;
	box-sizing: border-box;
}
#inquiry form dl {
	float: left;
	display: table;
	width: 100%;
	margin: 0;
	padding: 0;
	border-bottom: #c5c5c5 solid 1px;
}
#inquiry form dl:first-child {
	border-top: #c5c5c5 solid 1px;
}
#inquiry form dl dt {
	float: none;
	display: table-cell;
	color: #00559d;
	font-weight: normal;
	width: 210px;
	padding: 22px 20px;
	margin: 0;
	background-color: #ededed;
}
#inquiry form dl dt .required {
	position: relative;
	font-size: 1.2rem;
	color: #fff;
	padding: 4px 8px;
	margin-left: 8px;
	background-color: #00559d;
	border-radius: 0;
	display: inline;
}
#inquiry form dl dt span.aform-validation.comment {
	display: none;
}
#inquiry form dl dd .validation-advice {
	clear: both;
}
#inquiry form dl dd {
	display: table-cell;
	width: 510px;
	background-color: #fff;
	padding: 20px 0 20px 25px;
	margin: 0;
}
#inquiry form dl dd .aform-confirm {
	font-size: 1.4rem;
}
#inquiry form dl dd .parts-99 {
	padding-bottom: 20px;
}
#inquiry form dl dd .mailmagazine {
	padding-bottom: 20px;
}
#inquiry form dl dd ul.aform-name-ul li,
#inquiry form dl dd ul.aform-kana-ul li {
	float: left;
}
#inquiry form dl dd ul.aform-name-ul li input[type="text"],
#inquiry form dl dd ul.aform-kana-ul li input[type="text"] {
	width: 110px;
	margin: 0 20px 0 10px;
}	
#inquiry form dl dd ul.aform-checkbox-ul li,
#inquiry form dl dd ul.aform-radio-ul li {
	padding: 5px 0;
}	
#inquiry form dl dd input[type=radio],
#inquiry form dl dd input[type=checkbox] {
	display: inline-block;
	margin-right: 8px;
	line-height: 1.3;
}
#inquiry form dl dd input[type=radio] + label,
#inquiry form dl dd input[type=checkbox] + label {
	position: relative;
	display: inline-block;
	margin-right: 12px;
	font-size: 14px;
	cursor: pointer;
	line-height: 1.3;
}
#inquiry form dl dd input[type=radio],
#inquiry form dl dd input[type=checkbox] {
	display: none;
	margin: 0;
}
#inquiry form dl dd input[type=radio] + label,
#inquiry form dl dd input[type=checkbox] + label {
	padding: 0 0 0 28px;
}
#inquiry form dl dd input[type=radio] + label::before,
#inquiry form dl dd input[type=checkbox] + label::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 18px;
	height: 18px;
	margin-top: -10px;
	background: #FFF;
}
#inquiry form dl dd input[type=radio] + label::before {
	border: 2px solid #00559d;
	border-radius: 30px;
}
#inquiry form dl dd input[type=checkbox] + label::before {
	border: 2px solid #00559d;
}
#inquiry form dl dd input[type=radio]:checked + label::after,
#inquiry form dl dd input[type=checkbox]:checked + label::after {
	content: "";
	position: absolute;
	top: 50%;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
}
#inquiry form dl dd input[type=radio]:checked + label::after {
	left: 4px;
	width: 11px;
	height: 11px;
	margin-top: -6px;
	background: #00559d;
	border-radius: 11px;
}
#inquiry form dl dd input[type=checkbox]:checked + label::after {
	left: 3px;
	width: 16px;
	height: 8px;
	margin-top: -8px;
	border-left: 3px solid #00559d;
	border-bottom: 3px solid #00559d;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#inquiry form dl dd select.aform-calendar {
	margin: 0 10px 0 20px;
}
#inquiry form dl dd select:first-child.aform-calendar {
	margin: 0 10px 0 0;
}
#inquiry form dl dd .aform-input-example {
	clear: both;
	margin-bottom: 6px;
}
#inquiry form #aform_confirm_msg {
	float: left;
	width:100%;
	text-align: center;
	margin: 30px 0 10px;
}
#inquiry form .aform-twice-note {
	margin-top: 10px;
	font-size: 90%;
	color: #595959;
}
#inquiry form .submit {
	clear: both;
	width: 30%;
	margin: auto;
	background-color: transparent;
	padding: 20px 0 30px;
}
#inquiry form .submit input[type="submit"] {
	width: 100%;
	border: none;
	color: #fff;
	padding: 15px;
	background: #00559d url(../images/arrow_white.svg) no-repeat 90% center;
	background-size: 9px;
}
#inquiry form .submit input[type="button"] {
	width: 100%;
	border: none;
	color: #fff;
	padding: 15px;
	background: #00559d url(../images/arrow_white_return.svg) no-repeat 10% center;
	background-size: 9px;
}
#inquiry form#aform-confirm-form .submit {
	clear: both;
	width: 70%;
	margin: auto;
	background-color: transparent;
	padding: 20px 0 30px;
}
#inquiry form#aform-confirm-form .submit input[type="submit"] {
	float: right;
	width: 48%;
	margin: 0;
}
#inquiry form#aform-confirm-form .submit input[type="button"] {
	float: left;
	width: 48%;
	margin: 0;
}
#inquiry .mktoForm {
	width: 100%!important;
	font-family: 'Noto Sans JP', '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', sans-serif;
}
#inquiry .mktoForm .mktoError {
	position: absolute;
	z-index: 99;
	color: #D92B00;
	bottom: -6px!important;
}
#inquiry .mktoForm .mktoError .mktoErrorArrowWrap {
	width: 15px;
	height: 9px;
	overflow: hidden;
	position: absolute;
	top: -8px;
	left: 20px;
	z-index: 100;
}
#inquiry .mktoForm .mktoError .mktoErrorArrow {
	background-color: #D92B00;
	border: none;
	border-right: none;
	border-bottom: none;
	display: inline-block;
	height: 12px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	width: 12px;
	margin-top: 0;
	position: absolute;
	top: 4px;
}
#inquiry .mktoForm .mktoError .mktoErrorMsg {
	font-weight: bold;
	display: block;
	margin-top: 0;
	padding: 8px 10px;
	background-color: #D92B00;
	background-image: none;
	border: none;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #ffffff;
	line-height: 1.2;
	max-width: none;
	text-shadow: none;
	letter-spacing: .1385090909em;
}
#inquiry .mktoForm .mktoButtonRow {
	width: 100%;
	text-align: center;
	clear: both;
	margin: 20px auto 30px;
}
#inquiry .mktoForm .mktoButtonRow .mktoButtonWrap {
	margin: 0!important;
}
#inquiry .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton {
	width: 30%;
	border: none;
	color: #fff;
	padding: 15px;
	background: #00559d url(../images/arrow_white.svg) no-repeat 90% center;
	background-size: 9px;
	border-radius: 0;
	font-weight: normal;
	box-shadow: none;
	font-size: 1.6rem;
}
#inquiry .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton:hover {
	background-color: #00296f;
}
#inquiry .mktoForm .mktoAsterix {
	font-size: 20px;
	font-weight: bold;
	padding-left: 12px;
}
#inquiry .mktoForm .mktoFormRow {
	display: flex;
	width: 100%;
	margin: 0;
	padding: 0;
}
#inquiry .mktoForm .mktoFormCol {
	width: 100%;
	margin: 0!important;
}
#inquiry .mktoForm .mktoFieldWrap {
	width: 100%;
	display: flex;
	border-bottom: #c5c5c5 solid 1px;
}
#inquiry .mktoForm .mktoOffset {
	width: 0 !important;
	height: 0;
}
#inquiry .mktoForm .mktoGutter {
	display: none;
}
#inquiry .mktoForm .mktoLabel {
	float: left;
	display: inline-block;
	color: #00559d;
	font-weight: normal;
	width: 180px!important;
	padding: 24px 20px;
	font-size: 1.4rem;
	margin: 0;
	background-color: #ededed;
}
#inquiry .mktoForm input,
#inquiry .mktoForm textarea,
#inquiry .mktoForm select {
	padding: 5px 6px 3px;
}
#inquiry .mktoForm input[type=text],
#inquiry .mktoForm input[type=url],
#inquiry .mktoForm input[type=email],
#inquiry .mktoForm input[type=tel],
#inquiry .mktoForm input[type=number],
#inquiry .mktoForm input[type=date],
#inquiry .mktoForm textarea {
	display: inline-block;
	font-size: 1.6rem;
	margin: 15px 0 15px 15px;
	width: calc(100% - 210px)!important;
}
#inquiry .mktoForm textarea {
	min-height: 5em;
}

#inquiry .mktoForm select {
	display: inline-block;
	font-size: 1.6rem;
	margin: 15px 0 15px 15px;
}
#inquiry .mktoForm input[type=radio],
#inquiry .mktoForm input[type=checkbox] {
	display: none;
	margin: 0;
}
#inquiry .mktoForm input[type=radio] + label,
#inquiry .mktoForm input[type=checkbox] + label {
	position: relative;
	display: inline-block;
	margin: 0 16px 15px 0;
	font-size: 1.4rem;
	cursor: pointer;
	padding: 0 0 0 28px;
}
#inquiry .mktoForm input[type=radio] + label::before,
#inquiry .mktoForm input[type=checkbox] + label::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 18px;
	height: 18px;
	margin-top: -11px;
	background: #FFF;
	border: 2px solid #00559d;
}
#inquiry .mktoForm input[type=radio]:checked + label::after,
#inquiry .mktoForm input[type=checkbox]:checked + label::after {
	content: "";
	position: absolute;
	top: 50%;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
}
#inquiry .mktoForm input[type=checkbox]:checked + label::after {
	left: 3px;
	width: 16px;
	height: 8px;
	margin-top: -8px;
	border-left: 3px solid #00559d;
	border-bottom: 3px solid #00559d;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#inquiry .mktoForm input[type=radio] + label::before {
	border: 2px solid #00559d;
	border-radius: 30px;
}
#inquiry .mktoForm input[type=radio]:checked + label::after {
	left: 2px;
	width: 14px;
	height: 14px;
	margin-top: -9px;
	background: #00559d;
	border-radius: 11px;
}
#inquiry .mktoForm .mktoRadioList,
#inquiry .mktoForm .mktoCheckboxList {
	width: calc(100% - 260px)!important;
	margin: 22px 0 0 25px;
	float: left;
}
#inquiry .mktoForm .mktoRadioList label,
#inquiry .mktoForm .mktoCheckboxList label {
	float: left;
}
#inquiry .mktoForm .mktoHtmlText {
	width: 100%!important;
}
#inquiry .mktoForm .mktoHtmlText h4 {
	float: left;
	width: 100%!important;
	color: #00559D;
	font-size: 1.4rem;
	font-weight: normal;
	border-top: 1px solid #00559D;
	border-bottom: 1px solid #00559D;
	padding: 10px;
	margin: 30px 0 0;
	background-color: #F5F6F9;
	box-sizing: border-box;
}
#inquiry .mktoForm .mktoFormRow:first-of-type .mktoHtmlText h4 {
	margin: -1px 0 0;
}
#inquiry .mktoForm .mktoHtmlText span {
	display: inline-block;
	padding: 10px;
}
#inquiry .mktoForm .mktoHtmlText h4 span {
	padding: 0;
}

#inquiry .mktoForm #FirstName,
#inquiry .mktoForm #LastName,
#inquiry .mktoForm #kanaFirstName,
#inquiry .mktoForm #kanaLastName {
	width: 9.5em!important;
}
#inquiry .mktoForm #PostalCode {
	width: 50%!important;
}
#inquiry .mktoForm #LblemailClubMember,
#inquiry .mktoForm #LblprivacyPolicy02,
#inquiry .mktoForm #LblprivacyPolicy {
	background-color: transparent;
	width: auto!important;
	white-space: nowrap;
	font-weight: bold;
	margin: auto!important;
	padding: 24px 10px;
}




@media screen and (max-width:740px) {
	#inquiry form {
		border-top: none;
	}
	#inquiry form input.aform-zipcode,
	#inquiry form input.fax,
	#inquiry form input[type="tel"],
	#inquiry form input[type="url"] {
		width: 100%;
		margin-bottom: 10px;
	}
	#inquiry form input[type="email"] {
		width: 100%;
		margin-bottom: 10px;
	}
	#inquiry form input.aform-zipcode {
		width: 100%;
		margin-bottom: 10px;
	}
	#inquiry form .aform-hdln {
		float: left;
		width: 100%;
		color: #00559D;
		font-size: 1.6rem;
		font-weight: normal;
		border-top:1px solid #00559D;
		border-bottom: 1px solid #00559D;
		padding: 10px 15px;
		margin: 15px 0 0;
		background-color: #F5F6F9;
		box-sizing: border-box;
	}
	#inquiry form dl {
		width: 100%;
		display: inherit;
		border-bottom: none;
	}
	#inquiry form dl:first-child {
		border-top: none;
	}
	#inquiry form dl dt {
		float: none;
		display: inherit;
		width: 100%;
		padding: 10px;
	}
	#inquiry form dl dt .required {
		position: absolute;
		padding: 5px 8px;
	}
	#inquiry form dl dd {
		display: inherit;
		width: 100%;
		padding: 10px 0 30px;
	}
	#inquiry form dl dd .parts-99 {
		padding-bottom: 0;
	}
	#inquiry form dl dd .mailmagazine {
		padding-bottom: 0;
	}
	#inquiry form dl dd img {
		width: auto;
	}
	#inquiry form dl dd ul.aform-name-ul li,
	#inquiry form dl dd ul.aform-kana-ul li {
		float: none;
		width: 100%;
	}
	#inquiry form dl dd ul.aform-name-ul li input[type="text"] {
		width: 90%;
		margin: 0 0 10px 3%;
	}	
	#inquiry form dl dd ul.aform-kana-ul li input[type="text"] {
		width: 85%;
		margin: 0 0 10px 3%;
	}	
	#inquiry form dl dd ul.aform-checkbox-ul li,
	#inquiry form dl dd ul.aform-radio-ul li {
		padding: 5px 0;
	}	
	#inquiry form dl dd input[type=radio] + label::before,
	#inquiry form dl dd input[type=checkbox] + label::before {
		top: 10px;
	}
	#inquiry form dl dd input[type=radio]:checked + label::after,
	#inquiry form dl dd input[type=checkbox]:checked + label::after {
		top: 10px;
	}
	#inquiry form dl dd select.aform-calendar {
		width: 80%;
		margin: 0 10px 10px 0;
	}
	#inquiry form dl dd select:first-child.aform-calendar {
		margin: 0 10px 10px 0;
	}
	#inquiry form #aform_confirm_msg {
		float: left;
		text-align: left;
		margin: 30px 0 40px;
	}
	#inquiry form .aform-twice-note {
		margin-top: 5px;
	}
	#inquiry form .submit {
		width: 100%;
		padding: 0 0 20px;
	}
	#inquiry form .submit input[type="submit"] {
		text-align: left;
		background: #00559d url(../images/arrow_white.svg) no-repeat 95% center;
		background-size: 9px;
		margin: 0;
	}
	#inquiry form .submit input[type="button"] {
		text-align: left;
		background: #00559d url(../images/arrow_white_return.svg) no-repeat 95% center;
		background-size: 9px;
		margin: 0;
	}
	#inquiry form#aform-confirm-form .submit {
		width: 100%;
		margin: auto;
		background-color: transparent;
		padding: 0;
	}
	#inquiry form#aform-confirm-form .submit input[type="submit"] {
		float: none;
		width: 100%;
		margin: 0;
	}
	#inquiry form#aform-confirm-form .submit input[type="button"] {
		float: none;
		width: 100%;
		margin: 0 0 20px;
	}
	#inquiry .mktoForm {
		padding: 0;
	}
	#inquiry .mktoForm .mktoButtonRow {
		margin: 0 auto 20px;
	}
	#inquiry .mktoForm .mktoButtonRow .mktoButtonWrap .mktoButton {
		width: 100%;
		text-align: left;
		background: #00559d url(../images/arrow_white.svg) no-repeat 95% center;
		background-size: 9px;
		margin: 0;
	}
	#inquiry .mktoForm .mktoAsterix {
		padding-left: 0;
	}
	#inquiry .mktoForm .mktoFieldWrap {
		display: inline-block;
		border-bottom: none;
	}
	#inquiry .mktoForm .mktoLabel {
		width: 100%!important;
		padding: 10px;
		font-size: 1.5rem;
	}
	#inquiry .mktoForm input[type=text],
	#inquiry .mktoForm input[type=url],
	#inquiry .mktoForm input[type=email],
	#inquiry .mktoForm input[type=tel],
	#inquiry .mktoForm input[type=number],
	#inquiry .mktoForm input[type=date],
	#inquiry .mktoForm textarea {
		font-size: 1.8rem;
		margin: 15px 0 30px;
		width: 100%!important;
		height: auto;
	}
	#inquiry .mktoForm select {
		margin: 15px 0 30px;
		width: 100%!important;
	}
	#inquiry .mktoForm .mktoRadioList,
	#inquiry .mktoForm .mktoCheckboxList {
		width: auto!important;
		margin: 15px 0 15px 20px;
		float: left;
	}
	#inquiry .mktoForm #LblFirstName,
	#inquiry .mktoForm #LblLastName,
	#inquiry .mktoForm #LblkanaFirstName,
	#inquiry .mktoForm #LblkanaLastName {
		width: calc(100% - 5px)!important;
	}
	#inquiry .mktoForm #LblFirstName,
	#inquiry .mktoForm #LblkanaFirstName {
		margin-left: 5px;
	}
	#inquiry .mktoForm #LblLastName,
	#inquiry .mktoForm #LblkanaLastName {
		margin-right: 5px;
	}

	#inquiry .mktoForm #FirstName,
	#inquiry .mktoForm #LastName,
	#inquiry .mktoForm #kanaFirstName,
	#inquiry .mktoForm #kanaLastName {
		width: calc(100% - 5px)!important;
	}
	#inquiry .mktoForm #FirstName,
	#inquiry .mktoForm #kanaFirstName {
		margin-left: 5px;
	}
	#inquiry .mktoForm #LastName,
	#inquiry .mktoForm #kanaLastName {
		margin-right: 5px;
	}
	#inquiry .mktoForm #PostalCode {
		width: 100%!important;
	}

	#inquiry .mktoForm #LblemailClubMember,
	#inquiry .mktoForm #LblprivacyPolicy02,
	#inquiry .mktoForm #LblprivacyPolicy {
		white-space: normal;
		padding: 0;
		width: 100%!important;
	}
}


/*/*btnの設定
---------------------------------------------------------------------------*/
/*ボタンを囲むブロック*/
/*/*/*.btn {
	text-align: center;	/*内容をセンタリング*/
}

/*ボタン*/
.btn a,
.btn input {
	display: inline-block;text-decoration: none;border: none;
	border-radius: 3px;		/*角丸のサイズ。ほんの少しだけ角が丸くなります。*/
	padding: 10px 40px;	/*上下、左右への余白。*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅の順。0,0,0は黒の事で0.2は色が20%出た状態。*/
	font-size: 1rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	background: #111;	/*背景色*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くする指定*/
	color: #fff;			/*文字色*/
	transition: 0.3s;
}

/*ボタンのマウスオン時（inputタグ使用時）*/
.btn input:hover {
	cursor: pointer;
	opacity: 0.6;	/*冒頭のリンクテキストのhoverと合わせました*/
}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;			/*太字に*/
	padding: 10px 5px;			上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。
	background: #666;			/*背景色*/
	color: #fff;				/*文字色*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	border-top: 1px solid #ccc;	/*テーブルの一番上の線。幅、線種、色*/
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 30px;		/*最後の「30px」がテーブルの下に空けるスペースです*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #ccc;	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 10px 5px;		/*上下、左右へのボックス内の余白*。基本的に数行上の「.ta1 caption」のpaddingと揃えておけばOKです。*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;			/*幅*/
	text-align: left;	/*左よせにする*/
	background: #f7f7f7;	/*背景色*/
}
.ta1 caption {
	padding: 5px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 20px 15px;		/*上下、左右へのボックス内の余白*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 20%;		/*幅*/
}
*/
*/*/*/