@charset "UTF-8";


/*========================================

  Elements

========================================*/


body {
	/*
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	*/
	font-family: "Roboto", sans-serif;
	font-weight: 300;

	position: relative;
	min-width: 1100px;
	margin: 0;
	padding: 0;
	color: #000;
	background: #fff;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
}



html,
body {
	height: 100%;
}

body.overflowhidden {
	overflow: hidden;
	height: 100%;
}

@media screen and (max-width: 767px) {
	body {
		width: 100vw;
		min-width: auto;
	}
}

p,
h1,
h2,
h3,
h4,
h5,
dt,
dd,
th,
td,
ul,
li {
	margin: 0;
	padding: 0;
}

p,
dd {
	line-height: 1.7em;
}

/* Link ---------------*/
a {
	overflow: hidden;
	text-decoration: none;
	color: #222;
}

a:visited {
	text-decoration: none;
	color: #222;
}

a:hover {
	text-decoration: none;
	color: #808080;
}

a:focus,
textarea:focus,
input:focus {
	border: none;
	outline: none;
}

a:active {
	border: none;
	outline: none;
}


.robot {
	font-family: "Roboto", sans-serif;
	font-weight: 500;
}

.robotB {
	font-family: "Roboto", sans-serif;
	font-weight: 900;
}



/*========================================

  main

========================================*/

main {
	text-align: center;
}

.ancher {
	display: block;
}

@media screen and (max-width: 767px) {
	.ancher {
		display: inline;
	}
}


.anckerlink {
	position: relative;
	z-index: -1;
	display: block;
	margin-top: -50px;
	padding-top: 50px;
}

@media screen and (max-width: 767px) {
	.anckerlink {
		display: block;
		margin-top: 0;
		padding-top: 0;
	}
}

img {
	max-width: 100%;
	height: auto;
	transition: .3s;
	vertical-align: bottom;
}

a:hover img {
	opacity: .7;
	filter: alpha(opacity=70);
	-moz-opacity: .7;
}

.spblock {
	display: none !important;
}

.pcblock {
	display: block !important;
}

.pcinlineblock {
	display: inline-block !important;
}

@media screen and (max-width: 767px) {
	.spblock {
		display: block !important;
	}

	.pcblock {
		display: none !important;
	}

	.pcinlineblock {
		display: none !important;
	}
}


.blocklink {
	cursor: pointer;
	transition: .3s;
}

.blocklink:hover {
	opacity: .7;
	filter: alpha(opacity=70);
	-moz-opacity: .7;
}


#page .com_sub_h1 {
	background-color: #f1f1f1;
	font-size: 40px;
	letter-spacing: 5px;
	font-family: "Roboto", sans-serif;
	font-weight: 900;
	padding: .5em 0;
}

@media screen and (max-width: 767px) {
	#page .com_sub_h1 {
		font-size: 8vw;
		letter-spacing: 2px;
		margin-top: 1em;
	}
}

/*===== 画像スクロールアニメーション =====*/
.img-animation {
	animation: img-opacity 2s cubic-bezier(.4, 0, .2, 1);
	overflow: hidden;
	position: relative;
}

.img-animation:before {
	animation: img-animation 2s cubic-bezier(.4, 0, .2, 1) forwards;
	background: #fff;
	bottom: 0;
	content: "";
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

@keyframes img-opacity {
	0% {
		opacity: 0;
	}
}

@keyframes img-animation {
	100% {
		transform: translateX(100%);
	}
}


/*========================================

  header

========================================*/
header {
	position: relative;
	width: 100%;
	z-index: 50;
}

header ul,
header li {
	margin: 0;
	padding: 0;
}

header img {
	max-width: 100%;
	vertical-align: bottom;
}

header .innr {
	display: flex;
	position: relative;
	justify-content: space-between;
	align-items: center;
	width: 90%;
	margin: 0 auto;
	padding-top: 20px;
	padding-bottom: 20px;
}

header .innr .logo a {
	display: inline-block;
	display: flex;
	align-items: center;
}

header .innr .logo .mrk {
	width: 120px;
}

header .innr .logo .name {
	display: block;
	width: 400px;
	margin-left: 10px;
}



@media screen and (max-width: 767px) {
	header .innr {
		width: 94%;
		margin: 0 auto;
		padding-top: 3vw;
		padding-bottom: 3vw;
	}

	header .innr .logo {
		margin-top: 1vw;
	}

	header .innr .logo .mrk {
		width: 12vw;
	}

	header .innr .logo .name {
		width: 40vw;
		margin-left: 2vw;
	}


}


header nav {
	position: fixed;
	z-index: 10;
	top: 0;
	right: -105vw;
	bottom: 0;
	overflow-y: auto;
	box-sizing: border-box;
	width: 100vw;
	margin: 0;
	padding: 0;
	transition: .5s;
	text-align: left;
	border: none;
	background-color: rgba(255, 255, 255, 0.9);
	z-index: 999;
	padding-top: 15vh;
	font-family: "Roboto", sans-serif;
	font-weight: 900;
}

nav.active {
	right: 0;
}


header nav ul {
	margin: 0 auto;
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
}

header nav ul li {
	display: block;
	margin-top: 1.5em;
}

header nav ul li a {
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 1px;
}


@media screen and (max-width: 767px) {
	header nav {
		position: fixed;
		z-index: 10;
		top: 0;
		right: -105vw;
		bottom: 0;
		overflow-y: auto;
		box-sizing: border-box;
		width: 100vw;
		margin: 0;
		padding: 0;
		transition: .5s;
		text-align: left;
		border: none;
		background-color: #fff;
		z-index: 999;
		padding-top: 30vw;
	}

	nav.active {
		right: 0;
	}

	header nav ul li {
		margin-top: 2em;
	}

	header nav ul li a {
		font-size: 5.4vw;
	}


}


/* #panel-btn */
.panel-wrap {
	position: absolute;
	z-index: 99999;
	top: 60px;
	right: 20px;
	display: inline-block;
	padding: 0;
	transition: .5s;
	color: #000;
	width: 55px;
	height: 50px;
	border-radius: 1.5vw;
	cursor: pointer;
}

.panel-wrap span {
	position: absolute;
	bottom: 0;
	display: block;
	width: 100%;
	text-align: center;
	font-size: 14px;
	letter-spacing: 2px;
	font-family: "Roboto", sans-serif;
	font-weight: 500;
}

#panel-btn {
	position: relative;
	width: 55px;
	height: 55px;
	margin: 0;
	padding: 0;
	list-style: none;
}

#panel-btn li {
	margin: 0;
	padding: 0;
}

#panel-btn-icon {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 55px;
	height: 55px;
	margin: 0;
	transition: .4s;
}

#panel-btn-icon:before,
#panel-btn-icon:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 55px;
	height: 8px;
	content: "";
	transition: .3s;
	background: #000;
}

#panel-btn-icon:before {
	margin-top: 0px;
}

#panel-btn-icon:after {
	margin-top: 15px;
}

#panel-btn.closepanel #panel-btn-icon {
	background: transparent;
}

#panel-btn.closepanel #panel-btn-icon:before,
#panel-btn.closepanel #panel-btn-icon:after {
	margin-top: 0;
}

#panel-btn.closepanel #panel-btn-icon:before {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	background: #000;
}

#panel-btn.closepanel #panel-btn-icon:after {
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	background: #000;
}

@media screen and (max-width: 767px) {

	/* #panel-btn */
	.panel-wrap {
		position: fixed;
		z-index: 99999;
		top: 6vw;
		right: 4vw;
		color: #000;
		width: 9vw;
		height: 8.5vw;
	}

	.panel-wrap span {
		font-size: 3vw;
		letter-spacing: 1px;
	}

	#panel-btn {
		position: relative;
		width: 9vw;
		height: 9vw;
		margin: 0;
	}


	#panel-btn-icon {
		width: 9vw;
		height: 4px;
	}

	#panel-btn-icon:before,
	#panel-btn-icon:after {
		width: 9vw;
		height: 3px;
	}

	#panel-btn-icon:before {
		margin-top: 0;
	}

	#panel-btn-icon:after {
		margin-top: 10px;
	}

}



header .lang {
	position: absolute;
	top: 60px;
	right: 13vw;
}

header .lang a {
	display: inline-block;
	padding: .6em 1.2em .7em;
	font-size: 16px;
	background-color: #000;
	color: #fff;
	border-radius: 5px;
	letter-spacing: 1px;
	font-family: "Roboto", sans-serif;
	font-weight: 500;
}

header .lang a:hover {
	opacity: .7;
}

header .lang span::before {
	content: "\f0ac";
	font-family: FontAwesome;
	margin-right: 0.5em;
}

@media screen and (max-width: 767px) {
	header .lang {
		position: absolute;
		top: 6vw;
		right: 17vw;
	}

	header .lang a {
		padding: .7em .8em;
		font-size: 3.2vw;
		letter-spacing: 0px;
	}

}


/*========================================

 下層ページの共通

========================================*/
.com_pagettl {
	position: relative;
}

.com_pagettl .bg {
	display: block;
	margin-left: 70px;
	margin-right: 70px;
}

.com_pagettl .bg img {
	width: 100%;
}

.com_pagettl h1 {
	position: absolute;
	top: 14vw;
	left: 0;
	right: 0;
	margin: 0 auto;
	color: #fff;
	font-size: 30px;
	letter-spacing: 1px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	text-align: center;
}

.com_pagettl h1 span {
	display: block;
	font-size: 80px;
	letter-spacing: 6px;
	font-family: "Roboto", sans-serif;
	font-weight: 900;
}

@media screen and (max-width: 767px) {
	.com_pagettl {
		height: 46vw;
	}

	.com_pagettl .bg {
		margin-left: 3vw;
		margin-right: 3vw;
	}

	.com_pagettl .bg img {
		width: 100%;
	}

	.com_pagettl h1 {
		position: absolute;
		top: 14vw;
		left: 0;
		right: 0;
		margin: 0 auto;
		font-size: 3.5vw;
		letter-spacing: 1px;
	}

	.com_pagettl h1 span {
		font-size: 8vw;
		letter-spacing: 4px;
	}
}



/*========================================

  footer

========================================*/
footer {
	text-align: center;
	padding-top: 250px;
	padding-bottom: 100px;
}

footer .stxt {
	display: block;
	font-size: 11px;
	margin-top: 5em;
	color: #666;
}

footer ul {
	display: flex;
	justify-content: center;
}

footer ul li {
	list-style: none;
}

footer ul li a {
	display: block;
	font-size: 18px;
	letter-spacing: 1px;
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	padding: 0 2em;
}

footer .logo a {
	display: inline-block;
	width: 180px;
	margin-top: 70px;
}

footer .logo span {
	display: block;
	width: 320px;
	margin: 0 auto;
	margin-top: 40px;
}

@media screen and (max-width: 767px) {
	footer {
		padding-top: 20vw;
		padding-bottom: 10vw;
	}

	footer .stxt {
		font-size: 3vw
	}


	footer ul {
		width: 90%;
		margin: 0 auto;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	footer ul li {
		width: 48%;
		border-top: 1px solid #ddd;
		padding: .6em 0;
	}

	footer ul li:last-child,
	footer ul li:nth-last-child(2) {
		border-bottom: 1px solid #ddd;
	}

	footer ul li a {
		font-size: 4vw;
		padding: .3em 0;
	}

	footer .logo a {
		width: 20vw;
		margin-top: 10vw;
	}

	footer .logo span {
		width: 55vw;
		margin: 0 auto;
		margin-top: 3vw;
	}
}