@charset "utf-8";


/* --------------------------------------------------------------------------------
html & body
-------------------------------------------------------------------------------- */
html {
	font-size: 62.5%;
}
body {
	margin: 0;
	padding: 0;
	line-height: 1.5;
	font-size: 1em;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	
	color: #222222;
	background: #fff;
	
	min-width: 1200px;
}


/* --------------------------------------------------------------------------------
共通 リセット タグ等
-------------------------------------------------------------------------------- */
.common * {
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	box-sizing: border-box;
}

.common h1,
.common h2,
.common h3,
.common h4,
.common h5,
.common h6 {
	font-size: 1em;
}
.common ol,
.common ul {
	list-style: none;
}
.common table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 1em;
}
.common a,
.common a:link,
.common a:visited {
	text-decoration: none;
	color: #222222;
	-webkit-tap-highlight-color:rgba(0,0,0,0.1);
	tap-highlight-color:rgba(0,0,0,0.8);
}
.common a:hover,
.common a:active {
	text-decoration: none;
}
.common input,
.common select,
.common textarea {
	outline: none !important;
	box-shadow: none !important;
	font-size: 1em;
}
.common small {
	font-size: 1em;
}
.common img {
	display: block;
	max-width: 100%;
	height: auto;
}
.common address {
	font-style: normal;
}

.font-oswald {
	font-family: 'Oswald';
}
.font-oswald * {
	font-family: 'Oswald';
}


.common .bold {
	font-weight: bold;
}
.common .font-white {
	color: #ffffff;
}
.common .text-center{
	text-align: center;
}
.common .text-left{
	text-align: left;
}
.common .text-right{
	text-align: right;
}

/* --------------------------------------------------------------------------------
共通クラス
-------------------------------------------------------------------------------- */
.clear {
	clear: both;
}
br.clear {
	display: block;
	margin: 0;
	padding: 0;
	clear: both;
	height: 0;
	border: none;
	visibility: hidden;
	font-size: 0;
}
.clearfix::after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {
	min-height: 1%;
}
* html .clearfix {
	height: 1%;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}



/********** プレースホルダー **********/
::-webkit-input-placeholder,
::placeholder {
	color: #333;
}

/********** inner **********/
.inner {
	width: 1080px;
	margin: 0 auto;
}

/* --------------------------------------------------------------------------------
	デバイスごとの表示・非表示
-------------------------------------------------------------------------------- */
.device-sp {
	display: none;
}
.device-sp-inline {
	display: none;
}
.device-pc {
	display: block;
}
.device-pc-inline {
	display: inline;
}


/* --------------------------------------------------------------------------------
container
-------------------------------------------------------------------------------- */
#container {
}


/* --------------------------------------------------------------------------------
header
-------------------------------------------------------------------------------- */
#header {
	z-index: 10;
	position: relative;
}

/********** logo-nav **********/
#header .logo-nav {
	display: flex;
	justify-content: space-between;
}

/********** h-logo **********/
#header .h-logo {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	
	width: 407px;
	margin : 0 0 0 50px;
}
#header .h-logo a {
	display: block;
}

/********** h-nav **********/
#header .h-nav {
}
#header .h-nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	max-width: 900px;
}
#header .h-nav ul li {
	margin: 0 0 0 19px;
}
#header .h-nav ul li a {
	display: block;
	padding: 29px 6px;
	font-weight: 500;
	font-size: 15px;
}
#header .h-nav ul li.h-menu-contact {
	margin: 0 0 0 25px;
}
#header .h-nav ul li.h-menu-contact a {
	padding: 29px 36px;
	color: #fff;
	background: #002864;
}


/* --------------------------------------------------------------------------------
wrapper
-------------------------------------------------------------------------------- */
#wrapper {
}




/* --------------------------------------------------------------------------------
コンテンツページ
-------------------------------------------------------------------------------- */

/* ----------------------------------------
ページタイトル
---------------------------------------- */
.page-heading-1 {
	position: relative;
	overflow: hidden;
}

/********** 背景画像 **********/
.page-heading-1 .bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	
	width: 100%;
}
.page-heading-1 .bg img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 320px;
}

/********** ページタイトル **********/
.page-heading-1 h1.heading-1 {
	position: relative;
	z-index: 1;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	
	height: 320px;
	margin: 0 auto;
	text-align: center;
	line-height: 1.3;
	font-weight: 400;
	font-size: 32px;
	
	color: #fff;
}
.page-heading-1 h1.heading-1 .heading-en {
	display: block;
	font-weight: 700;
	font-size: 50px;
}
.page-heading-1 h1.heading-1 .heading-ja {
	display: block;
	font-size: 20px;
}


/* --------------------------------------------------------------------------------
footer
-------------------------------------------------------------------------------- */
#footer {
	padding: 45px 20px 40px;
}
#footer .footer-outer {
	max-width: 1240px;
	margin: 0 auto;
}

/********** f-fix **********/
#footer .f-fix {
	position: fixed;
	z-index: 10;
	
	right: 30px;
	bottom: 30px;
}
#footer .f-fix .btn-pagetop {
}
#footer .f-fix .btn-pagetop a {
	display: flex;
}
#footer .f-fix .btn-pagetop a img {
	display: block;
	width: 60px;
}


/********** copyright **********/
#footer .copyright {
	text-align: right;
	letter-spacing: -0.04em;
	font-size: 12px;
}


