html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	  margin: 0;
	  padding: 0;
	  border: 0;
	  outline: 0;
	  vertical-align: baseline;
	  background: transparent;
}
html {
	  font-size: 62.5%;
	  overflow-x: hidden;
	scroll-behavior: smooth;
}
body {
	  line-height: 1.8;
	  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	  font-weight: 500;
	  font-size: 1.2rem;
	  color: #0e1f25;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	  display: block;
}
ul, ol {
	  list-style: none;
}
a {
	  margin: 0;
	  padding: 0;
	  vertical-align: baseline;
	  background: transparent;
	  text-decoration: none;
	color: #0075C1;
}

table {
	  border-collapse: collapse;
	  border-spacing: 0;
}
input, select {
	  vertical-align: middle;
}
address {
	font-style: normal;
}

header {
	  background-color: #be1e2d;
	  color: #FFF;
	  width: 100%;
	  height: 60px;
	  position: fixed;
	  top: 30px;
	  left: 0;
	  right: 0;
	  z-index: 999;
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
}
header.active {
	top: 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}
header h1 {
	  padding: 10px;
	  background-color: #FFF;
}
header h1 img {
	  display: block;
	  width: auto;
	  height: 40px;
}

.header__nav {
	position: absolute;
	right: 0;
	left: 0;
	top: -30px;
	width: 100%;
	height: 100vh;
	transform: translateX(100%);
	background-color: #fff;
	transition: ease .4s;
}
.nav-items {
	padding: 80px 20px 0;
	font-weight: 500;
	font-style: normal;
}
.nav-items__item {
	/*border-bottom: solid 1px #0075C1;*/
	text-align: center;
	margin-bottom: 20px;
}
.nav-items__item a {
	color: #be1e2d;
	display: block;
	margin: 5px 15px;
	font-size: 1.6rem;
	font-weight: 700;
}
.header__hamburger {
	width: 40px;
	height: 100%;
}
.hamburger {
	background-color: transparent;
	border-color: transparent;
	z-index: 9999;
}
.hamburger span {
	width: 100%;
	height: 2px;
	background-color: #FFF;
	position: relative;
	transition: ease .4s;
	display: block;
}
.hamburger span:nth-child(1) {
	top: 0;
}
.hamburger span:nth-child(2) {
	margin: 6px 0;
}
.hamburger span:nth-child(3) {
	top: 0;
}
.header__nav.active {
	transform: translateX(0);
	position: fixed;
	padding-top: 30px;
}
.hamburger.active span {
	background-color: #be1e2d;
}
.hamburger.active span:nth-child(1) {
	top: 5px;
	transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	top: -11px;
	transform: rotate(-45deg);
}

footer {
	background-color: #be1e2d;
	color: #fff;
}
footer #footer {
	width: calc(100% - 30px);
	max-width: 1400px;
	margin: auto;
	padding-top: 30px;
	padding-bottom: 30px;
}
footer #footer .contact {
	background-color: #fff;
	border-radius: 5px;
	color: #be1e2d;
	display: block;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	width: 100%;
	height: 60px;
	line-height: 60px;
	margin-bottom: 30px;
}
footer #footer .contact img {
	vertical-align: middle;
}
footer #footer #info {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
footer #footer #info p {
	line-height: 1.5;
}
footer #map {
    position: relative;
	max-width: 1400px;
	margin: auto;
}
footer #map::before {
    content: "";
    display: block;
    padding-top: calc(500 / 1400 * 100%);
}
footer #map iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
footer small {
	display: block;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
}

.inner {
	width: 100%;
	max-width: 1400px;
	margin: auto;
	padding-top: 30px;
	padding-bottom: 30px;
}
.inner p {
	width: calc(100% - 30px);
	margin: auto;
}
.s12 {
	font-size: 1.2em;
}
.s15 {
	font-size: 1.5em;
}
.red {
	color: #be1e2d;
}
.gr {
	background-color: #f2f2f2;
}
@media screen and (min-width: 768px) {
	footer #footer {
		display: flex;
		justify-content: space-between;
		flex-direction: row-reverse;
		align-items: center;
	}
	footer #footer .contact {
		width: calc(3 / 7 * 100%);
		margin-bottom: 0;
	}
	footer #footer #info {
		width: calc(4 / 7 * 100% - 30px);
		justify-content: flex-start;
	}
	footer #footer #info img {
		height: 60px;
		width: auto;
		margin-right: 20px;
	}
}
@media screen and (min-width: 960px) {
	.sp {
		display: none;
	}
	body {
	  	line-height: 1.8;
	}
	header {
	  	height: 120px;
	  	top: 60px;
	}
	header h1 {
	  	padding: 20px;
	}
	header h1 img {
	  	height: 80px;
	}
	.header__nav {
    	position: static;
    	transform: initial;
    	background-color: transparent;
    	height: inherit;
    	display: flex;
		order: 2;
		width: auto;
  	}
	.header__nav.active {
	position: static;
	padding-top: 0;
}
    .nav__items {
    	width: 100%;
    	display: flex;
    	align-items: center;
    	height: initial;
		padding: 0;
  	}
  .nav-items__item {
  		margin-left: 1.5em;
	  	margin-bottom: 0;
  	}
  .nav-items__item a {
	  	color: #fff;
    	margin-bottom: 0;
		font-size: 1.8rem;
		margin: 0;
  	}
	.nav-items__item:hover {
	}
	.nav-items__item.btm img {
		display: inline-block;
		vertical-align: middle;
	}
	.nav-items__item.btm .w12 {
		display: none;
	}
	.nav-items__item.btm  a {
		color: #FFF;
		margin-top: 0;
		letter-spacing: 0.2em;
	}
	.nav-items__item.btm :hover {
		border-bottom: none;
	}
  	.hamburger {
    	display: none;
  	}
	.mail a{
		padding: 20px 20px 20px 60px;
		margin-right: 30px;
		background: #FFF url("../img/mail.svg") no-repeat 20px center / 30px auto;
		border-radius: 5px;
		color: #be1e2d;
		display: block;
	}
	footer #footer {
		padding-top: 60px;
		padding-bottom: 50px;
	}
	footer #footer .contact {
		font-size: 3rem;
		height: 80px;
		line-height: 80px;
	}
	footer #footer .contact img {
		height: 30px;
		width: auto;
	}
	footer #footer #info {
		width: calc(4 / 7 * 100% - 40px);
	}
	footer #footer #info p {
		font-size: 1.6rem;
		line-height: 1.8;
	}
	footer #footer #info img {
		height: 80px;
		width: auto;
		margin-right: 30px;
	}
	footer small {
		padding-top: 30px;
		padding-bottom: 30px;
	}

}
@media screen and (min-width: 1500px) {
	header {
		width: calc(100% - 60px);
	}
	header.active {
		width: 100%;
	}
	.nav-items__item {
  		margin-left: 3em;
  	}
	footer #footer .contact {
		font-size: 4rem;
		height: 120px;
		line-height: 120px;
	}
	footer #footer .contact img {
		height: 40px;
		width: auto;
	}
	footer #footer #info {
		width: calc(4 / 7 * 100% - 80px);
	}
	footer #footer #info p {
		font-size: 2.1rem;
		line-height: 1.8;
	}
	footer #footer #info img {
		height: 120px;
		width: auto;
	}
}