@charset "utf-8";

@font-face {
	font-display: swap;
	font-family: 'NotoSerifJP';
	font-style: normal;
	font-weight: 400;
	src: url("../font/NotoSerifJP-Regular.ttf") format("truetype"),
		url("../font/NotoSerifJP-Regular.woff") format("woff"),
		url("../font/NotoSerifJP-Regular.woff2") format("woff2");
}

@font-face {
	font-display: swap;
	font-family: 'NotoSerifJP';
	font-style: bold;
	font-weight: 700;
	src: url("../font/NotoSerifJP-Bold.ttf") format("truetype"),
		url("../font/NotoSerifJP-Bold.woff") format("woff"),
		url("../font/NotoSerifJP-Bold.woff2") format("woff2");
}


* {
	font-family: "NotoSerifJP", "serif";
	color: #000000;
	font-size: 16px;
	font-weight: normal;
	font-style: normal;
}

.mb10 {
	margin-bottom: 1em;
}

.mb20 {
	margin-bottom: 2em;
}

.mb30 {
	margin-bottom: 3em;
}

.mb40 {
	margin-bottom: 4em;
}

.mb50 {
	margin-bottom: 5em;
}

.mb60 {
	margin-bottom: 6em;
}

.mb70 {
	margin-bottom: 7em;
}

.mb80 {
	margin-bottom: 8em;
}

.mb90 {
	margin-bottom: 9em;
}

.mb100 {
	margin-bottom: 10em;
}

.left {
	text-align: left;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.btn {
	cursor: pointer;
	background: linear-gradient(90deg, rgba(204, 38, 28, 1) 0%, rgba(234, 44, 32, 1) 50%, rgba(227, 91, 37, 1) 100%);
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	color: #fff;
	display: inline-block;
	padding: 1em 1.5em;
	text-align: center;
	overflow: hidden;
	position: relative;
	z-index: 0;
	text-decoration: none !important;
	letter-spacing: 0.1em;
	line-height: 1;
}

.btn::after {
	background: linear-gradient(90deg, rgba(227, 91, 37, 1) 0%, rgba(234, 44, 32, 1) 50%, rgba(204, 38, 28, 1) 100%);
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	z-index: -1;
}

.btn:hover::after {
	transform: scale(1, 1);
}


.bnr,
.bnr::before,
.bnr::after {
	transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}

.bnr {
	cursor: pointer;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	display: inline-block;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.zoom-box {
	display: inline-block;
	overflow: hidden;
}

.bnr {
	display: block;
	transition-duration: .5s;
}

.bnr:hover {
	transform: scale(1.2);
}

.centering {
	width: 1280px;
	max-width: 100%;
	margin: 0 auto;
}

table{
	width: 100%;
	border-collapse: collapse;
}
table th{
	background: #e8e8e8;
	padding: 0.5em 1em;
	text-align: left;
	font-weight: bold;
	border: 1px solid #cccccc;
	white-space: nowrap;
}
table td{
	padding: 0.5em 1em;
	border: 1px solid #cccccc;
}

@media screen and (min-width:769px) {
	.sp_disp {
		display: none !important;
	}
}

@media screen and (max-width:768px) {
	.pc_disp {
		display: none !important;
	}
}

#site-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 1em;
}

#site-header #contact_area {
	background: #e8e8e8;
	padding: 1em 2em 0.5em;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	text-align: center;
}

#site-header #contact_area p {
	width: 100%;
	text-align: center;
}

p.tel a {
	display: inline-block;
	background: url(../img/common/tel.svg) no-repeat left center;
	background-size: 1em auto;
	font-size: 1.4em;
	letter-spacing: 0.1em;
	font-weight: bold;
	padding-left: 1.5em;
	text-decoration: none;
	cursor: default;
}

.contact a.btn {
	white-space: nowrap;
	box-sizing: border-box;
	padding: 1em 1.5em 1em 3em;
}

.contact a.btn span {
	position: relative;
}

.contact a.btn span::before {
	content: "";
	width: 1.5em;
	height: 1em;
	display: block;
	background: url(../img/common/mail.svg) no-repeat;
	position: absolute;
	left: -1.6em;
	top: 0.2em;
}

@media screen and (min-width:769px) {
	.outer-menu .checkbox-toggle {
		display: none;
	}


	#site-header h2 {
		width: 320px;
	}

	#site-header .outer-menu {
		flex: 1 1 auto;
	}

	#site-header .outer-menu .checkbox-toggle {
		display: none;
	}

	#site-header #globalnavi ul {
		display: flex;
		justify-content: space-between;
		padding: 0 2em;
	}

	#site-header #globalnavi ul li {
		width: 20%;
		padding: 0 0.5em;
		box-sizing: border-box;
		text-align: center;
		font-size: 1.4em;
		white-space: nowrap;
	}
}

@media screen and (min-width:769px) and (max-width:1319px){
	#site-header {
		flex-wrap: wrap;
	}
	#site-header h2 {
		width: 240px;
	}
	#site-header #contact_area {
		width: 100%;
		box-sizing: border-box;
	}
}


@media screen and (max-width:768px) {
	#site-header h2 {
		width: 240px;
	}
	#site-header #contact_area {
		display: none;
	}
	.outer-menu {
		position: fixed;
		top: 2px;
		right: 2px;
		z-index: 1;
	}

	.outer-menu .checkbox-toggle {
		position: absolute;
		top: 0;
		right: 0;
		z-index: 2;
		cursor: pointer;
		width: 60px;
		height: 60px;
		opacity: 0;
	}

	.outer-menu .checkbox-toggle:checked+.hamburger>div {
		transform: rotate(135deg);
	}

	.outer-menu .checkbox-toggle:checked+.hamburger>div:before,
	.outer-menu .checkbox-toggle:checked+.hamburger>div:after {
		top: 0;
		transform: rotate(90deg);
	}

	.outer-menu .checkbox-toggle:checked+.hamburger>div:after {
		opacity: 0;
	}

	.outer-menu .checkbox-toggle:checked~.menu {
		pointer-events: auto;
		visibility: visible;
	}

	.outer-menu .checkbox-toggle:checked~.menu>div {
		transform: scale(1);
		transition-duration: 0.75s;
	}

	.outer-menu .checkbox-toggle:checked~.menu>div>nav {
		opacity: 1;
		transition: opacity 0.4s ease 0.4s;
	}

	.outer-menu .checkbox-toggle:hover+.hamburger {
		box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
	}

	.outer-menu .checkbox-toggle:checked:hover+.hamburger>div {
		transform: rotate(225deg);
	}

	.outer-menu .hamburger {
		position: absolute;
		top: 0;
		right: 0;
		z-index: 1;
		width: 60px;
		height: 60px;
		padding: 0.5em 1em;
		background: rgba(204, 38, 28, 0.75);
		border-radius: 0 0.12em 0.12em 0;
		cursor: pointer;
		transition: box-shadow 0.4s ease;
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.outer-menu .hamburger>div {
		position: relative;
		flex: none;
		width: 100%;
		height: 2px;
		background: #FEFEFE;
		transition: all 0.4s ease;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.outer-menu .hamburger>div:before,
	.outer-menu .hamburger>div:after {
		content: '';
		position: absolute;
		z-index: 1;
		top: -10px;
		left: 0;
		width: 100%;
		height: 2px;
		background: inherit;
		transition: all 0.4s ease;
	}

	.outer-menu .hamburger>div:after {
		top: 10px;
	}

	.outer-menu .menu {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		pointer-events: none;
		visibility: hidden;
		overflow: hidden;
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		outline: 1px solid transparent;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.outer-menu .menu>div {
		width: 200vw;
		height: 200vw;
		color: #FEFEFE;
		background: rgba(0, 0, 0, 0.97);
		border-radius: 50%;
		transition: all 0.4s ease;
		flex: none;
		transform: scale(0);
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		overflow: hidden;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.outer-menu .menu>div>nav {
		text-align: center;
		max-width: 90vw;
		max-height: 100vh;
		opacity: 0;
		transition: opacity 0.4s ease;
		overflow-y: auto;
		flex: none;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.outer-menu .menu>div>nav>ul {
		list-style: none;
		padding: 0 1em;
		margin: 0;
		display: block;
		max-height: 100vh;
	}

	.outer-menu .menu>div>nav>ul>li {
		padding: 0;
		margin: 1em;
		font-size: 24px;
		display: block;
	}

	.outer-menu .menu>div>nav>ul>li.sp_disp {
		border-top: 1px solid #000000;
		margin: 1em 0;
	}
	.outer-menu .menu>div>nav>ul>li.sp_disp a{
		font-size: 24px;
	}
	.outer-menu .menu>div>nav>ul>li.sns{
		text-align: center;
	}
	.outer-menu .menu>div>nav>ul>li.sns a:hover:after{
		display: none !important;
	}
	.outer-menu .menu>div>nav>ul>li.sns img{
		display: inline !important;
		width: 32px;
	}

}
@media screen and (min-width:769px)  {
	.outer-menu .menu>div>nav>ul>li.sns{
		display: none;
	}
}

.outer-menu .menu>div>nav>ul>li>a {
	position: relative;
	display: inline;
	cursor: pointer;
	transition: color 0.4s ease;
	text-decoration: none;
}

.outer-menu .menu>div>nav>ul>li>a:hover {
	color: #e99994;
}

.outer-menu .menu>div>nav>ul>li>a:hover:after {
	width: 100%;
}

.outer-menu .menu>div>nav>ul>li>a:after {
	content: '';
	position: absolute;
	z-index: 1;
	bottom: -0.15em;
	left: 0;
	width: 0;
	height: 2px;
	background: #e99994;
	transition: width 0.2s ease;
}

.main-container {
	position: relative;
	top: 50px;
}
@media screen and (max-width:768px)  {
	.main-container {
		padding: 0 1em;
	}
}

.displayed {
	animation: fadeUp 2s forwards;
}

@keyframes fadeUp {
	0% {
		opacity: 0;
		transform: translateY(0);
	}

	100% {
		opacity: 1;
		transform: translateY(-50px);
	}
}

section {
	padding: 4em 0;
	max-width: 1920px;
	margin: 0 auto;
}


#footer_contents {
	padding: 4em 0;
}

#footer_contents h3{
	border-bottom: 2px solid #000000;
	padding: 0.2em 0.5em;
	display: inline-block;
	margin-bottom: 0.5em;
}
#footer_contents h3 + a{
	text-decoration: none;
	cursor: default;
}

#copyright {
	text-align: center;
	padding: 1em 0;
}

#pagetitle{
	background: #011e56;
	color: #ffffff;
	font-size: 2em;
	text-align: center;
	padding: 0.5em;
	margin-bottom: 1em;
}
#pagetitle + h1{
	width: 1280px;
	max-width: 100%;
	margin: 0 auto 4em;
	font-size: 1.6em;
	font-weight: bold;
}


.title1 {
	font-weight: bold;
	font-size: 3em;
	text-align: center;
	margin-bottom: 1em;

}

.title1 strong {
	display: block;
	font-size: 2rem;
	padding: 0.5em 0;

}

.title2 {
	font-weight: bold;
	font-size: 2em;
	margin-bottom: 1em;
}

.title2 small {
	display: block;
	font-size: 1.2rem;
	padding: 0.5em 0;
	text-indent: 2.4em;

}

.title3 {
	font-weight: bold;
	font-size: 1.2em;
	border-left: 5px solid #011e56;
	padding: 0.5em 0 0.5em 0.5em;
	line-height: 1;
}

#googlemap{
    width: 80%;
    max-width: calc(1920px * 0.8);
    margin: 0 auto 4em;
}
#googlemap iframe{
    width: 100%;
    height: 480px;
    max-height: 50vh;
}

