/*============================================
共通
===========================================*/
html{
	font-size: 62.5%;
}
body {
	font-size: 16px;
	font-size: 1.6rem;
	font-family: 'Noto Sans JP',"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	color: #333;
	line-height: 1.7;
}

iframe {
	vertical-align: bottom;
}

ul,ol{
	list-style: none;
	padding: 0;
}
/*webフォントちらつき対策*/
body {
	animation: fadeIn 3s ease 0s 1 normal;
	-webkit-animation: fadeIn 3s ease 0s 1 normal;
}

@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}
@media print,screen and (min-width: 961px) {
		body{min-width:1200px;
	}
}

@media screen and (max-width: 960px) {
	body{
		width: 100%;
	}
}
/*============================================
レイアウト
===========================================*/
.pc {
	display: block;
}
.sp {
	display: none;
}
.section-inner {
	padding: 80px 0;
}
@media screen and (max-width: 960px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.section-inner {
		padding: 60px 0;
	}
}
/*============================================
ショートコード
===========================================*/
.gothic{
	font-family: 'Noto Sans JP', sans-serif;
}
.mincho{
	font-family: 'Noto Serif JP', serif;
}
.oswald{
	font-family: 'Oswald', sans-serif;
}
.clearfix:after {
		content:" ";
		display:block;
		clear:both;
}
.anchor{
	display: block;
	padding-top: 100px;
	margin-top: -100px;
}
.row {
	display: flex;
	justify-content: space-between;
}
.color-blue {
	color: #03a9f4;
}

.color-yellow {
	color: #e2b42f;
}

.c_red{
	color:#e55100;
}
@media screen and (max-width: 960px) {
	.section-inner {
		width: 95%;
		margin: 0 auto;
	}

	.link-btn {
		min-width: 250px;
	}

	.row {
		flex-direction: column;
	}
}
/*============================================
ボタンスタイル
===========================================*/
.btn-wrapper {
	text-align: center;
}

.link-btn {
	display: inline-block;
	max-width: 290px;
	width:90%;
	text-align: center;
	padding: 10px;
	position: relative;
	transition: all .3s;
}
.link-btn::after {
	position: absolute;
	content: '';
	top: 17px;
	right: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	width: 8px;
	height: 8px;
}
.link-btn:hover {
	text-decoration: none;
}

.link-btn.grad {
	background: rgb(4,134,204);
	background: linear-gradient(90deg, rgba(4,134,204,1) 0%, rgba(68,176,236,1) 100%);
	color: #fff;
}
.link-btn.grad:hover {
	-webkit-transform: translate(0, -2px);
	transform: translate(0, -2px);
	color: #fff;
	-webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, .2);
	box-shadow: 0 8px 15px rgba(0, 0, 0, .2);
}
.link-btn.black {
	background-color: #000;
	border: 2px solid #000;
	color: #fff;
}
.link-btn.black:hover {
	color: #000;
	background-color: #fff;
}
.link-btn.black:hover:after{
	border-top: 2px solid #000;
	border-right: 2px solid #000;
}

.link-btn.white {
	background-color: transparent;
	border: 2px solid #fff;
	color: #fff;
}
.link-btn.white::after{
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}
.link-btn.white:hover {
	background-color: rgba(0,0,0,0.6);
	color: #fff;
}

/*============================================
タイトルスタイル
===========================================*/
.heading-1 {
	font-size: 3.8rem;
	margin: 0;
	text-align: center;
	position: relative;
	font-family: 'Noto Serif JP', serif;
	font-weight: bold;
}
.heading-2 {
	font-family: 'Noto Serif JP', serif;
	font-size: 2.4rem;
	font-weight: 700;
	margin: 0;
}
.heading-3{
	font-family: 'Oswald', sans-serif;
	font-weight: 300;
	font-size: 3.8rem;
	color: #0083c9;
	margin-bottom:30px;
	text-align: center;
}
.heading-3 span{
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: normal;
	font-size: 1.2rem;
	display: block;
	color:#333;
}
@media screen and (max-width:960px){
	.heading-1 {
		font-size: 2rem;
	}
	.heading-2 {
		-webkit-writing-mode: initial;
		-ms-writing-mode: initial;
		writing-mode: initial;
		text-align: center;
		font-size: 2rem;
	}
}
/*============================================
ヘッダー
===========================================*/
.header-sp {
	display: none;
}

.header .header-text {
	font-size: 1rem;
	font-weight: normal;
	background-color: #000;
	color: #fff;
	padding: 5px 30px;
	margin: 0;
}

.header .header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 30px;
}

.header .logo-wrapper {
	max-width: 370px;
}

.header .logo-wrapper img {
	width: 100%;
}

.header .link-wrapper {
	width: 100%;
	display: flex;
	justify-content: flex-end;
}
.header .link-wrapper nav{
	margin-right: 2vw;
}
.header .header-nav {
	list-style: none;
	padding: 0;
	margin: 15px 0 0 0;
}

.header .header-nav li {
	display:inline-block;
	padding:0 2vw;
}

.header .header-nav a {
	color: #000;
	text-align: center;
	text-decoration: none;
	position: relative;
	display: inline-block;
}

.header .header-nav a::after {
	position: absolute;
	bottom: 2px;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #513e39;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
}

.header .header-nav a:hover::after {
	bottom: -2px;
	opacity: 1;
	visibility: visible;
}

@media screen and (max-width: 960px) {
	.header-pc {
		display: none;
	}

	.header-sp {
		display: block;
		padding: 15px 0;
		background-color: #fff;
		position: fixed;
		width: 100%;
		height: 60px;
		top: 0;
		left: 0;
		z-index: 98;
	}
	.header .header-text {
		background-color: #006296;
	}
	.header .header-inner {
		padding: 0;
		position: relative;
	}

	.header .logo-wrapper {
		max-width: 270px;
		margin-left: 2%;
	}

	.menu-btn{
		height: 30px;
		width: 45px;
		position: relative;
		padding: 0 8px;
		cursor: pointer;
		display: inline-block;
		user-select: none;
		z-index: 99;
	}

	.menu__line{
		background: #0083c9;
		display: block;
		height: 3px;
		position: absolute;
		transition:transform .5s;
		width: 30px;
	}

	.menu__line--top {
		top: 4px;
	}

	.menu__line--center{
		top: 13px;
	}

	.menu__line--bottom{
		bottom: 4px;
	}

	.active .menu__line{
		background: #0083c9;
	}

	.active .menu__line--top{
		top: 13px;
		transform: rotate(45deg);
	}

	.active .menu__line--center{
		transform:scaleX(0);
	}

	.active .menu__line--bottom{
		bottom: 14px;
		transform: rotate(135deg);
	}

	.menu-wrapper {
		position: absolute;
		top: 0px;
		right: 10px;
	}

	.menu-area {
		display: none;
		position: fixed;
		top: 60px;
		left: 0;
		width: 100%;
		background-color: #fff;
	}

	.menu-nav {
		list-style: none;
		padding: 0;
		margin: 0;
		height: 100vh;
		background: rgb(4,134,204);
		background: linear-gradient(90deg, rgba(4,134,204,1) 0%, rgba(68,176,236,1) 100%);
	}

	.menu-nav li {
		border-bottom: 1px dotted #8fd8ff;
	}

	.menu-nav a {
		color: #fff;
		font-size: 1.6rem;
		text-align: center;
		display: block;
		padding: 15px 0;
	}

	.menu-nav li h1{
		word-break: break-all;
		color: #fff;
		font-weight: normal;
	}
}
/*============================================
パンくず
===========================================*/
.breadcrumbs {
	border-bottom: 1px solid #ccc;
}

.breadcrumbs ol {
	display: flex;
	align-items: center;
	list-style: none;
	padding: 5px 0;
	max-width: 1200px;
	margin: 0 auto;
}

.breadcrumbs li {
	display: flex;
	align-items: center;
	font-size: .7rem;
	margin: 0 10px 0 0;
}

.breadcrumbs li::before {
	content: '';
	width: 7px;
	height: 7px;
	margin: 0 15px 0 0;
	border-top: 1px solid #8e8e8e;
	border-right: 1px solid #8e8e8e;
	transform: rotate(45deg);
}

.breadcrumbs a {
	color: #000;
}

.breadcrumbs li:first-of-type::before {
	content: '';
	display: inline-block;
	width: 15px;
	height: 15px;
	margin: 0 5px 0 0;
	border-top: none;
	border-right: none;
	transform: rotate(0deg);
	background-image: url('../img/common/bread.jpg');
	background-repeat: no-repeat;
	background-size: cover;
}

/*============================================
フッター
===========================================*/
.footer {
	background-color: #0083c9;
	padding: 50px 0 0;
}

.footer .logo-wrapper {
	max-width:370px;
	margin: 0 auto 20px;
}

.footer .logo-wrapper img {
	width: 100%;
}

.footer .address {
	text-align: center;
	color: #fff;
}

.footer .address p {
	margin: 0;
	color: #fff;
}

.footer .nav-wrapper {
	padding: 30px 0 0;
}

.footer .footer-nav {
	list-style: none;
	padding: 0;
	display: flex;
	justify-content: center;
	width: 1000px;
	margin: 0 auto;
}

.footer .footer-nav li {
	border-right: 1px solid #fff;
	padding: 0 20px;
}

.footer .footer-nav li:first-of-type {
	border-left: 1px solid #fff;
}

.footer .footer-nav a {
	color: #fff;
	position: relative;
	display: inline-block;
	text-decoration: none;
}

.footer .footer-nav a::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #fff;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}

.footer .footer-nav a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}

.copyright {
	background-color: #000;
	padding: 5px 0;
	margin: 30px 0 0;
}

.copyright p {
	color: #fff;
	font-size: .7rem;
	text-align: center;
	margin: 0;
}


@media screen and (max-width: 960px) {
	.footer .logo-wrapper{
		max-width:270px;
	}
	.footer .footer-nav {
		width: initial;
		flex-direction: column;
		padding: 0 10px;
	}

	.footer .footer-nav li {
		border-bottom: 1px solid #fff;
		border-right: initial;
		padding: 15px;
		position: relative;
	}

	.footer .footer-nav li::after {
		position: absolute;
		content: '';
		top: 20px;
		right: 10px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		width: 8px;
		height: 8px;
	}

	.footer .footer-nav li:first-of-type {
		border-top: 1px solid #fff;
		border-left: initial;
	}
}
/*============================================
下層共通
===========================================*/
/*メインビジュアル*/
.ud_layer .main-visual {
		width: 100%;
		height: 0;
		background-repeat:no-repeat;
		background-size: cover;
		background-position:center;
		position:relative;
		padding-bottom:350px;
}
.ud_layer .main-visual .main_ttl {
		width:100%;
		position:absolute;
		top:50%;
		left:0;
		transform: translateY(-50%);
		color: #fff;
		font-size: 3.8rem;
		font-family: 'Noto Serif JP', serif;
		font-weight: bold;
		text-shadow: 0px 1px 2px rgb(35 24 21 / 54%);
		text-align: center;
}
@media screen and (max-width: 480px) {
		.ud_layer .main-visual {
				height: 0;
				margin-top:60px;
				padding-bottom: 52%;
		}
}
/*パンくず*/
@media screen and (max-width: 480px) {
	.ud_layer .breadcrumbs ol {
		padding: 5px;
	}
}
/*その他*/
.ud_layer .section-inner {
		max-width: 1200px;
		margin: 0px auto;
		padding-bottom: 100px;
}
.ud_layer .heading-wrapper {
	margin: 0 auto 50px;
	text-align: center;
}
@media screen and (max-width: 480px){
	.ud_layer .section-inner {
			padding-bottom: 50px;
}
	.ud_layer .heading-wrapper{
		margin: 0 auto 30px;
	}
}
/*テーブルスタイル*/
.ud_layer .table-wrapper{
		width: 80%;
		margin: 0 auto;
}
.ud_layer table {
		width: 960px;
		border-collapse: collapse;
		margin:0 auto;
}
.ud_layer table th,
.ud_layer table td{
	border-top:1px dotted #b5b0b0;
	border-bottom: 1px dotted #b5b0b0;
	padding: 20px;
}
.ud_layer table th {
		width: 30%;
}
@media screen and (max-width: 480px){
		.ud_layer .table-wrapper{
				width: 100%;
		}
		.ud_layer table{
			width: 100%;
		}
		.ud_layer table th,
		.ud_layer table td {
				display: block;
				width: 100%;
				padding:20px 10px;
				text-align: center;
				border-top: 0 none;
				border-bottom:0 none;
		}
		.ud_layer table th {
			background-color: #f3f3f3;
		}
		.ud_layer table td{
			text-align: left;
	}
}
/*コンタクトエリア*/
.contact_area{
	background-color: #000;
	color:#fff;
}
.contact_area .section-inner{
	padding:35px 0;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.contact_area h2{
	font-size: 6rem;
	font-family: 'Oswald', sans-serif;
}
.contact_area .contact_btn{
	color: #fff;
	border: 2px solid #fff;
	width: 20%;
	display: inline-block;
	height: 45px;
	line-height: 45px;
	text-align: center;
}
.contact_area .contact_btn:hover{
	text-decoration: none;
}
@media screen and (max-width:960px){
	.contact_area .section-inner{
		display: block;
		text-align: center;
	}
	.contact_area .contact_btn{
		width: 80%;
	}
}
/*============================================
404ページスタイルここから
===========================================*/
#notfound .main-visual {
		background-image: url('../img/common/404_main.jpg');
}
#notfound .section-inner{
	padding-top: 100px;
	text-align: center;
}
@media screen and (max-width: 960px) {
		#notfound .main-visual {
				background-image: url('../img/common/sp/404_main.jpg');
		}
		#notfound .section-inner{
			padding-top: 50px;
		}
}