@charset "UTF-8";

/* ---------------------------------------------------------
	CSS Document load
--------------------------------------------------------- */

#load {
	width: 100%;
	height: 100vh;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}

.wf-active #load {
	display: none;
}

/* ---------------------------------------------------------
	CSS Document Common
--------------------------------------------------------- */

html, body {
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust: none;
	-ms-text-size-adjust: none;
	text-align: center;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-size: 3.5vw;
	letter-spacing: 0.1em;
	line-height: 1.9;
	word-break: normal;
	word-wrap: break-word;
	color: #231815;
}

* {
	outline: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-collapse: collapse;
	font-style: normal;
	list-style: none;
}

form {
	text-align: left;
}

input, textarea, select {
	width: 100%;
	outline: 0;
	margin: 0.5rem 0;
	padding: 0.5rem;
	border-radius: 0;
	border: solid 1px;
	box-shadow: none;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	letter-spacing: 0.06em;
	color: #231815;
}

button {
	width: 100%;
}

::-webkit-input-placeholder {
	color: #ccc;
}

::-moz-placeholder {
	opacity: 1;
	color: #ccc;
}

:-ms-input-placeholder {
	color: #ccc;
}

img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
	border: 0;
}

a {
	color: #DC1716;
}

.tel {
	text-decoration: none;
	color: #231815;
}

/* ---------------------------------------------------------
	CSS Document layout
--------------------------------------------------------- */

#wrapper {
	overflow: hidden;
	padding-top: 60px;
}

.target {
	margin-top: -80px;
	padding-top: 80px;
}

.pc {
	display: none;
}

.clearfix:after {
	content: '';
	display: block;
	clear: both;
	height: 1px;
	overflow: hidden;
}

.lazyloaded {
	opacity: 0;
	animation: lazyload .9s 0s forwards ease;
}

@keyframes lazyload {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.h2 {
	margin-bottom: 5vw;
	position: relative;
	z-index: 0;
}

.h2 figure {
	height: 24vw;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.h2 figure img {
	max-width: 400%;
	height: 24vw;
}

.h2 h2 {
	font-weight: 700;
	font-size: 7vw;
	line-height: 24vw;
	color: #fff;
}

.h3 {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 8vw;
	padding-bottom: 4vw;
	border-bottom: solid 3px #DC1716;
	text-align: left;
	line-height: 1;
}

.h3 .ja {
	font-weight: 700;
	font-size: 5vw;
}

.h3 .en {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 3vw;
	letter-spacing: 0;
}

.h4 {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 5vw;
	padding-bottom: 3vw;
	border-bottom: solid 2px #DC1716;
	text-align: left;
	line-height: 1;
}

.h4 .ja {
	font-weight: 700;
	font-size: 4vw;
}

.h4 .en {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 2.5vw;
	letter-spacing: 0;
}

/* ---------------------------------------------------------
	CSS Document header
--------------------------------------------------------- */

#header {
	width: 100%;
	background: #575554;
	font-size: 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
}

#header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 60px;
	font-size: 0;
	position: relative;
}

#header h1 {
	margin: 3px 0 0 4vw;
}

#header h1 img {
	height: 46px;
}

/* ---------------------------------------------------------
	CSS Document swicth
--------------------------------------------------------- */

#swicth {
	width: 60px;
	height: 60px;
	padding-top: 38px;
	background: #DC1716;
	font-size: 9px;
	letter-spacing: 0.1em;
	line-height: 1;
	white-space: nowrap;
	color: #fff;
	position: relative;
	z-index: 9;
}

#swicth span {
	width: 25px;
	height: 3px;
	background: #fff;
	position: absolute;
	left: 17px;
	transition: all .4s;
}

#swicth span:nth-of-type(1) {
	top: 14px;
}

#swicth span:nth-of-type(2) {
	top: 22px;
}

#swicth span:nth-of-type(3) {
	top: 30px;
}

#swicth.active span:nth-of-type(1) {
	background: #fff;
	transform: translateY(12px) rotate(-45deg);
}

#swicth.active span:nth-of-type(2) {
	left: 50%;
	opacity: 0;
	animation: swicth 0.8s forwards;
	animation-fill-mode: both;
}

@keyframes swicth {
	100% {
		height: 0;
	}
}

#swicth.active span:nth-of-type(3) {
	background: #fff;
	transform: translateY(-4px) rotate(45deg);
}

#swicth i {
	transition: .4s;
}

#swicth.active i {
	opacity: 0;
}

/* ---------------------------------------------------------
	CSS Document navi
--------------------------------------------------------- */

#navi {
	display: none;
	width: 100vw;
	height: calc(100vh - 60px);
	overflow: auto;
	-webkit-overflow-scrolling: auto;
	background: #f1f1f1;
	position: fixed;
	top: 60px;
	right: 0;
	z-index: 8;
}

/* ---------------------------------------------------------
	CSS Document menu
--------------------------------------------------------- */

#menu {
	margin: 0 5vw 10vw;
	padding-top: 8vw;
}

#menu .row {
	display: flex;
	margin-bottom: 5vw;
}

#menu figure {
	width: 9vw;
	height: 9vw;
	margin-right: 5vw;
}

#menu figure img {
	width: 9vw;
}

#menu li {
	margin: 1vw 0 5vw;
}

#menu li a {
	display: block;
	text-align: left;
	text-decoration: none;
	line-height: 1.4;
	color: #231815;
}

#menu li a .en {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 4.5vw;
	letter-spacing: 0;
}

#menu li a .ja {
	display: block;
	font-size: 3.5vw;
	color: #666;
}

/* ---------------------------------------------------------
	CSS Document info
--------------------------------------------------------- */

#info {
	margin: 0 5vw 15vw;
}

#info .find {
	display: flex;
	margin-bottom: 5vw;
	padding-bottom: 5vw;
	border-bottom: dashed 2px #ccc;
}

#info .find:hover {
	opacity: 0.6;
}

#info figure {
	width: 25vw;
	height: 20vw;
	overflow: hidden;
	margin-right: 3vw;
}

#info dl {
	flex: 1;
	text-align: left;
	font-size: 3.5vw;
	line-height: 1.5;
}

#info dt {
	margin-bottom: 10px;
	font-size: 3vw;
	line-height: 1;
	color: #666;
}

#info dd a {
	text-decoration: none;
	color: #231815;
	opacity: 1;
}

/* ---------------------------------------------------------
	CSS Document related
--------------------------------------------------------- */

#related {
	margin: 0 5vw 10vw;
}

#related h2 {
	letter-spacing: 0;
}

#related li {
	margin-bottom: 5vw;
}

#related li img {
	height: 20vw;
}

/* ---------------------------------------------------------
	CSS Document sns
--------------------------------------------------------- */

#sns {
	margin-bottom: 15vw;
}

#sns h2 {
	margin-bottom: 5vw;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 4vw;
}

#sns ul {
	display: flex;
	justify-content: center;
}

#sns li {
	margin: 0 3vw;
}

#sns li img {
	height: 30px;
}

/* ---------------------------------------------------------
	CSS Document footer
--------------------------------------------------------- */

#footer {
	margin-top: 20vw;
	background: #9FA0A0;
}

#footer .flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 8vw 5vw;
}

#footer .row {
	text-align: left;
	font-size: 3vw;
}

#footer .row:nth-of-type(1) {
	display: none;
}

#footer .row:nth-of-type(5) {
	width: 100%;
}

#footer .name {
	font-weight: 700;
	font-size: 3.5vw;
}

#footer a {
	text-decoration: none;
	color: #231815;
}

#footer ol {
	display: flex;
	justify-content: center;
	margin-top: 5vw;
}

#footer ol li {
	margin: 0 3vw;
}

#footer ol img {
	height: 30px;
}

#footer address {
	background: #575554;
	font-size: 2.8vw;
	line-height: 14vw;
	color: #fff;
}

/* ---------------------------------------------------------
	CSS Document pagetop
--------------------------------------------------------- */

#pagetop {
	display: none;
	width: 40px;
	height: 40px;
	overflow: hidden;
	border-radius: 100%;
	background: #DC1716;
	font-size: 20px;
	line-height: 40px;
	color: #fff;
	position: fixed;
	right: 5vw;
	bottom: 5vw;
}

/* ---------------------------------------------------------
	CSS Document contact
--------------------------------------------------------- */

#privacy {
	margin: 0 5vw;
	text-align: left;
}

#contact {
	margin: 0 5vw;
}

.page-numbers li {
    display: inline-block;
    font-size: 4.5vw;
	margin: 1rem;
}