@charset "UTF-8";

@font-face {
  font-family: 'fontello';
  src: url('../font/fontello.eot?68482759');
  src: url('../font/fontello.eot?68482759#iefix') format('embedded-opentype'),
       url('../font/fontello.woff2?68482759') format('woff2'),
       url('../font/fontello.woff?68482759') format('woff'),
       url('../font/fontello.ttf?68482759') format('truetype'),
       url('../font/fontello.svg?68482759#fontello') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* /////////////////////////////////////////////// */

/* テンプレート用CSS */

/* /////////////////////////////////////////////// */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-repeat: no-repeat;
	font-feature-settings : "palt";
}
html,
body {
	width: 100%;
	height: 100%;
}
body {
	padding-top: 60px;
	font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", Meiryo, sans-serif;
	color: #333;
	font-size: 1em;
	line-height: 160%;
	background-color: #111;
	background-image: url(../img/bg.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	background-color: transparent;
}

a {
	color: #F90;
	text-decoration: none;
}

img {
	vertical-align: bottom;
}

.btn {
	display: inline-block;
	padding: 0.6875vh;
	background-color: rgba(0,0,0,0.2);
	box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.6) inset;
	border-radius: 0.75vh;
}
.btn span {
	width: 13.25vh;
	height: 5vh;
	line-height: 4.5vh;
	font-size: 3.3vh;
	font-weight: bold;
	text-align: center;
	text-shadow: 1px 1px 0 #FFF;
	font-feature-settings : "palt";
	display: block;
	background: linear-gradient(#FFF, rgba(255,255,255,0.5));
	border: 2px solid #FFF;
	border-radius: 0.375vh;
}
.btn.master span {
	background: linear-gradient(#FBB, rgba(255,187,187,0.65));
}
.btn:active {
	background-color: rgba(0,0,0,0.3);
}
.btn:active span {
	color: #000;
	text-shadow: none;
	background: linear-gradient(rgba(255,255,255,0.4), rgba(255,255,255,0.8));
	background: linear-gradient(rgba(255,187,187,0.65), rgba(255,187,187,1));
}

.w_max {
	width: 100% !important;
}

a {
	display: inline-block;
	position: relative;
}
a span {
	padding: 0.5em 1em;
	display: inline-block;
	transition: .5s;
	transform-origin: center;
}
a:hover span {
	color: #FB0;
}
.mincho {
	font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", "ＭＳ Ｐ明朝", "MS PMincho", Meiryo, serif;
}



/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* header */
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
header {
	width: 100%;
	padding: 20px;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #FFF;
	z-index: 9;
	transition: .5s;
}
header.min {
	padding: 10px 20px;
}
header::after {
	content: "";
	width: 100%;
	height: 4px;
	display: block;
	position: absolute;
	bottom: -4px;
	left: 0;
	background-color: rgba(0,0,0,0.15);
}
h1 img {
	height: 60px;
	transition: .5s;
}
.min h1 img {
	height: 50px;
}
nav {
	position: absolute;
	top: 20px;
	right: 20px;
	line-height: calc(60px - 1em);
	text-align: right;
	transition: .5s;
}
.min nav {
	top: 10px;
	line-height: calc(50px - 1em);
}
nav a {
	margin-right: calc(40px - 2em);
	display: inline-block;
	position: relative;
	color: #333;
}
nav a::before,
nav a::after {
	content: "";
	width: 0;
	height: 2px;
	display: block;
	position: absolute;
	bottom: 12px;
	left: 1em;
	background-color: #F90;
	opacity: 0.35;
	transition: .2s;
}
nav a:hover::before,
nav a:hover::after {
	width: calc(100% - 2em);
}
nav a::after {
	left: auto;
	right: 1em;
	bottom: 8px;
}
nav a.current::before,
nav a.current::after {
	width: calc(100% - 2em);
	opacity: 1;
}
#sp_memu {
	display: none;
}



/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* article */
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
article {
	padding-bottom: 1px;
	position: static;
	top: 0;
	left: 0;
	z-index: 1;
	background-color: rgba(0,0,0,0.3);
	background-color: rgba(255,255,255,0.6);
}
#home article {
	background-color: transparent;
}

article > section {
	width: 100%;
	padding: 5vh 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
article > section + section {
	padding-top: 0;
}



/*--------------------------------------------------------- top ---------------------------------------------------------*/
#top {
	padding: 300px 0 400px;
	position: relative;
	color: #FFF;
	text-align: center;
	background-image: url(../img/top_bg.jpg);
	background-size: cover;
	background-position: center top;
}
#top ul {
	margin: 0;
	padding: 0;
	opacity: 0.25;
}
#top ul li {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	position: absolute;
	top: 0;
	left: 0;
	background-size: cover;
	background-position: center;
	z-index: -1;
}
#top h2 {
	margin-bottom: 40px;
	padding: 0;
	position: relative;
	font-size: 70px;
	text-shadow: 0 3px 10px #000;
}
#top h2 + div {
	width: 100%;
	height: 180px;
	padding: 0px 0;
	position: relative;
	background-color: rgba(0,0,0,0.25);
	background-image: url(../img/top_pc.png);
	background-position: center;
}
#top p {
	padding-top: 30px;
	position: relative;
	line-height: 180%;
	font-size: 1.4em;
	text-shadow: 0 3px 10px #000;
}



/*--------------------------------------------------------- pr ---------------------------------------------------------*/
#pr {
	height: 1078px;
	margin: -308px 0;
	position: relative;
	background-image: url(../img/pr.png);
	background-position: left center;
	background-repeat: repeat-x;
	z-index: 1;
}
#pr h2 {
	min-width: 600px;
	margin: 0 0 25px;
	padding: 0 0 25px;
	line-height: 100%;
	border-bottom: 3px solid #333;
}
#pr p {
	line-height: 180%;
	font-size: 1.3em;
	text-align: center;
}



/*--------------------------------------------------------- history ---------------------------------------------------------*/
#history {
	width: 1240px;
	margin: 0 auto;
	padding: 400px 0 110px;
	flex-direction: inherit;
	justify-content: flex-end;
}
#history > div {
	padding: 50px 50px calc(50px - 1em);
	position: relative;
	color: #FFF;
	background-color: rgba(0,0,0,0.65);
	border-radius: 3px;
}
#history h2 {
	margin: 0 0 25px;
	padding: 0 0 25px;
	border-bottom: 2px solid #FFF;
}
#history dt {
	width: 12em;
	margin-right: -12em;
	margin-bottom: 1em;
	float: left;
	clear: both;
	font-weight: bold;
}
#history dd {
	margin-bottom: 1em;
	padding-left: 12em;
}



/*--------------------------------------------------------- outline ---------------------------------------------------------*/
#outline {
	padding-top: 5vh;
	color: #FFF;
	flex-direction: inherit;
	justify-content: flex-start;
	background-color: #F90;
	background-image: url(../img/top_bg.jpg);
	background-position: right top;
}
#outline > div {
	width: 1240px;
	margin: 0 auto;
	display: flex;
	text-align: left;
	flex-direction: inherit;
	justify-content: flex-start;
}
#outline h2 {
	margin-bottom: 25px;
	padding: 0 0 25px;
	border-bottom: 2px solid #FFF;
}
#outline dt {
	width: 8em;
	margin-right: -8em;
	margin-bottom: 1em;
	float: left;
	clear: both;
	font-weight: bold;
}
#outline dd {
	margin-bottom: 1em;
	padding-left: 8em;
}
#outline dd dt {
	clear: inherit;
}



/*--------------------------------------------------------- pr ---------------------------------------------------------*/
#point {
	padding: 80px 0 90px;
	background-color: rgba(0,0,0,0.25); 
}
#point > div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}
#point h2 {
	margin: 0;
	padding: 0 0 80px;
	color: #FFF;
	line-height: 100%;
	text-shadow: 0 3px 10px #000;
}
#point > div > div {
	width: 1240px;
	display: flex;
	justify-content: left;
	align-items: center;
}
#point > div > div section {
	width: 30em;
	margin: 0 10px;
	padding: 15px;
	background-color: #FFF;
	text-align: left;
	transform: translate(0, 50px);
	opacity: 0;
	box-shadow: 0px 2px 3px 0 rgba(0,0,0,0.25);
}
#point > div > div section h3 {
	padding: 0 20px;
	font-size: 30px;
	line-height: 60px;
	color: #FFF;
	font-weight: normal;
	background-color: #F90;
	background-image: url(../img/point_h2.gif);
	background-position: right top;
	background-repeat: repeat-y;
}
#point > div > div section p {
	margin-bottom: 20px;
}
#point > div > div section p a:before {
	content: '\e806';
	margin-right: -0.5em;
	display: inline-block;
	font-family: "fontello";
}
#point > div > div section p span {
	
}
#point > div > div section iframe {
	width: 100%;
	vertical-align: bottom;
}

#point > div > div.active section {
	animation: showup 1.3s ease 0s forwards;
}
#point > div > div.active section + section {
	animation-delay: 0.2s;
}
#point > div > div.active section + section + section {
	animation-delay: 0.4s;
}
@keyframes showup {
0% {transform: translate(0, 50px); opacity: 0;}
100% {transform: translate(0, 0); opacity: 1;}
}



/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* works */
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
#work_point {
	width: 1220px;
	justify-content: space-between;
}
#work_point h3 {
	padding: 0 20px;
	font-size: 30px;
	line-height: 60px;
	color: #FFF;
	text-align: center;
	font-weight: normal;
	background-color: #F90;
	background-image: url(../img/point_h2.gif);
	background-position: right top;
	background-repeat: repeat-y;
}

#flow {
	padding: 6vh 0;
	background-color: #FFF;
}
#flow > section {
	width: 1220px;
	margin: 0 auto;
	position: relative;
}
#flow h3 {
	font-size: 3em;
	font-weight: normal;
	line-height: 100%;
	text-align: center;
}
#flow .fix::after {
	content: "";
	height: 0;
	display: block;
	clear: both;
}
#flow .fix section {
	width: 540px;
	padding-top: 50px;
	float: right;
}
#flow .fix section:first-child {
	float: left;
}
#flow h4 {
	margin-bottom: 50px;
	padding: 0.6em 0;
	position: relative;
	line-height: 100%;
	color: #FFF;
	font-size: 1.5em;
	text-align: center;
	background-color: #F90;
	border-radius: 3px;
}
#flow ol {
	padding: 0;
}
#flow ol li {
	margin: 0 0 50px;
	padding: 0;
	position: relative;
	line-height: 100%;
	list-style: none;
	font-size: 2em;
}
#flow ol li span {
	width: 100%;
	padding: 1em 0 0.5em;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	color: #FFF;
	text-align: center;
	background: linear-gradient(transparent, rgba(0,0,0,0.5));
	text-shadow: 0 2px 10px #000, 0 2px 4px #000;
}
#flow ol li span::before {
	margin-right: 0.2em;
	display: inline-block;
	font-size: 1.3em;
	vertical-align: bottom;
}
#flow ol li:nth-of-type(1) span::before { content: "1."; }
#flow ol li:nth-of-type(2) span::before { content: "2."; }
#flow ol li:nth-of-type(3) span::before { content: "3."; }
#flow ol li:nth-of-type(4) span::before { content: "4."; }
#flow ol li:nth-of-type(5) span::before { content: "5."; }
#flow ol li:nth-of-type(6) span::before { content: "6."; }
#flow h4::after,
#flow ol li::after {
	content: "";
	width: 2px;
	height: 50px;
	display: block;
	position: absolute;
	top: 100%;
	right: calc(50% - 1px);
	background-color: #F90;
}
#flow ol li:last-child {
	padding-top: 35px;
	text-align: center;
}
#flow ol li:last-child::after {
	width: 0;
	height: 0;
	top: 0;
	left: 50%;
	background-color: transparent;
	border: 16px solid transparent;
	border-top: 25px solid #F90;
	transform: translate(-50%, 0);
}

#flow ol li img {
	width: 540px;
}

article table thead th {
	padding-left: 1em;
	padding-right: 1em;
}



/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* case */
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
.column {
	width: 1190px;
	margin: 0 auto 5vh;
}
.case {
	width: 100%;
	margin-bottom: 40px;
	padding: 0 10px;
	text-align: center;
	background-color: #FFF;
	box-shadow: 0 2px 4px 0 rgba(0,0,0,0.9);
}
.case h2 {
	margin: 0 -10px 10px;
	padding: 20px 0;
	color: #FFF;
	font-size: 40px;
	background-color: #F90;
	background-image: url(../img/point_h2.gif);
	background-image: url(../img/top_bg.jpg);
	background-position: right top;
	background-repeat: repeat-y;
}
.case h2 + div {
	column-count: 2;
	column-width: 580px;
	column-gap: 10px;
}
.case img {
	width: 580px;
	margin-bottom: 10px;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
	.case img {
		float: left;
	}
}
.case table {
	text-align: left;
}




/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* recruit */
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */




/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* contact */
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
#contact {
}
#contact h2 {
	padding-top: 0;
	color: #FFF;
}

#thanks {
	min-height: calc(95vh - 420px - 1.8rem);
	padding: 
}
#thanks > div {
	min-width: 38vw;
	min-height: 38vh;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: #FFF;
	background-image: url(../img/thanks.png);
	background-size: cover;
	background-position: center;
	box-shadow: 0 3px 10px rgba(0,0,0,0.3);
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.75);
	border-radius: 3px;
}
#thanks h3 {
	width: 100%;
	line-height: 70px;
	color: #FFF;
	font-size: 2em;
	font-weight: normal;
	background-color: #F90;
}
#thanks p {
	padding: 0 50px;
	flex-grow: 1;
	display: flex;
	align-items: center;
}



/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* footer */
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
footer {
	line-height: 60px;
	color: #FFF;
	text-align: center;
	background-color: #F90;
}
footer span {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	color: #FFF;
	transform: translate(-50%, -50%);
}



/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* loader */
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
#loader {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.8);
	background-color: #000;
	transition: 0.5s;
}
#loader.end {
	opacity: 0;
	pointer-events: none;
}
#loader span,
#loader span:after {
	width: 10em;
	height: 10em;
	display: block;
	border-radius: 50%;
}
#loader span {
	font-size: 10px;
	position: absolute;
	top: calc(50% - 5em);
	left: calc(50% - 5em);
	text-indent: -9999em;
	border-top: 0.9em solid rgba(255, 255, 255, 0.2);
	border-right: 0.9em solid rgba(255, 255, 255, 0.2);
	border-bottom: 0.9em solid rgba(255, 255, 255, 0.2);
	border-left: 0.9em solid #ffffff;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: load8 1.1s infinite linear;
	animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}



/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* article */
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
h2 {
	padding: 140px 0 80px;
	text-align: center;
	line-height: 120%;
	font-size: 46px;
	font-weight: normal;
	line-height: 100%;
}
#page_title {
	margin-bottom: 5vh;
	padding: 80px 0;
	position: relative;
	color: #FFF;
	text-align: center;
	background-color: #F90;
	background-image: url(../img/top_bg.jpg);
	background-size: cover;
	background-position: center top;
}
#page_title:after {
	content: "";
	width: 100%;
	height: 2px;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,0.25);
}
#page_title h2 {
	margin-bottom: 25px;
	padding: 40px 0 25px;
	font-size: 50px;
	font-weight: normal;
	line-height: 100%;
	border-bottom: 2px solid #FFF;
}
#page_title h3 {
	margin: 0 0 0.5em;
	padding: 0.5em 1em;
	background-color: rgba(255,255,255,0.2);
}
#page_title ul {
	margin: 0;
	padding: 0 20px;
	text-align: left;
}
#page_title ul li {
	margin: 0;
	padding: 0;
	list-style: circle;
}
#page_title .flex {
	margin-bottom: 0;
}
#page_title .flex > div {
	margin: 0 10px;
}

#contact > div {
	padding: 50px;
	background-color: #FFF;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.75);
}
table {
	width: 500px;
	border-collapse: collapse;
	border-top: 1px solid #CCC;
}
caption {
	display: none;
}
thead {
	background-color: #F9F9F9;
}
thead th {
	padding: 0.5em 0;
}
thead th:last-child {
	text-align: right;
}
th,
td {
	padding: 1em 0;
	border-bottom: 1px solid #CCC;
}
th {
	padding-right: 1em;
	text-align: left;
	white-space: nowrap;
}
.works td:last-child {
	text-align: right;
}

.select_wrapper {
	padding: 0;
	overflow: hidden;
	position: relative;
	line-height: 100%;
	font-size: 1em;
	background-image: linear-gradient(#FFF 50%, #DDD 100%);
	border: 1px solid #06C;
	border: 1px solid rgba(0,0,0,0.5);
	border-radius: 3px;
	display: inline-block;
	vertical-align: bottom;
	box-shadow: 0 0 0 2px #FFF inset;
}
.select_wrapper:after {
	content: "";
	width: 0;
	height: 0;
	margin-top: -0.2em;
	display: block;
	position: absolute;
	top: 50%;
	right: 0.7em;
	border: 0.4em solid transparent;
	border-top: 0.5em solid #06C;
}
.select_wrapper select {
	width: 150%;
	height: 2.4em;
	padding: 0 1.5em 0 0.5em;
	background-color: transparent;
	border: none;
	font-size: 1em;
}

input,
button,
textarea {
	height: 2.4em;
	padding: 0.7em;
	line-height: 100%;
	font-size: 1em;
	background-color: #F9F9F9;
	border: 1px solid rgba(0,0,0,0.3);
	box-shadow: 2px 2px 0 0 rgba(0,0,0,0.1) inset;
	border-radius: 3px;
}
br + .select_wrapper,
br + input {
	margin-top: 0.5em;
}
textarea {
	height: 8.4em !important;
}
.center {
	padding: 40px 0 0;
	text-align: center;
}
input[type="reset"],
input[type="submit"],
button {
	width: 8em;
	margin: 0 0.5em;
	background-color: #DDD;
	border-top-color: transparent;
	border-left-color: transparent;
	box-shadow: 2px 2px 0 0 rgba(0,0,0,0.2);
}
input[type="submit"],
#mfp_button_send {
	color: #FFF;
	background-color: #06C;
}
.p-postal-code,
#zip-code {
    width: auto !important;
}
.p-country-name {
	display: none;
}

.flex {
	max-width: 1240px;
	margin: 0 auto 5vh;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.flex > section {
	margin: 0 10px;
	padding: 50px;
	background-color: #FFF;
	box-shadow: 5px 5px 0 0 rgba(0,0,0,0.25);
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.75);
}
.flex > section h2 {
	height: 250px;
	height: 300px;
	margin: -45px -45px 50px;
	padding: 0;
	display: flex;
	color: #FFF;
	justify-content: center;
	align-items: center;
	background-color: #666;
	text-shadow: 0 1px 3px #000, 0 2px 15px #000;
}

.isahaya,
.isahaya2,
.sasebo,
.oshima {
	background-size: cover;
	background-position: center;
}
.isahaya { background-image: url(../img/point1.jpg); }
.isahaya2 { background-image: url(../img/point4.jpg); }
.sasebo { background-image: url(../img/point2.jpg); }
.sasebo2 { background-image: url(../img/point5.jpg); }
.oshima { background-image: url(../img/point3.jpg); }
















/* /////////////////////////////////////////////////////////////////////////////////////// */
/* スマホ */
/* /////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (max-width: 641px) {
body {
	font-size: 3.6vw;
}

h2 {
	padding-top: 90px;
}

img {
	max-width: 100%;
}



/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* header */
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
header {
	width: 100%;
	padding: 1vh 0;
	text-align: center;
}
header.min {
	padding: 1vh 0;
}
header h1 {
	max-width: calc(100% - 120px);
	display: inline-block;
	vertical-align: bottom;
}
header h1 img {
	width: 100%;
	height: auto !important;
}
header.min h1 img {
	width: 80%;
}
nav {
	padding: 1em 0;
	position: fixed;
	top: 50%;
	left: 50%;
	right: auto;
	background-color: #FFF;
	border-radius: 4px;
	opacity: 0;
	pointer-events: none;
	box-shadow: 5px 5px 0 0 rgba(0,0,0,0.3);
	transform: translate(-50%, -50%) scale(0.8);
	transition: 0.3s;
}
nav.active {
	opacity: 1;
	pointer-events: all;
	transform: translate(-50%, -50%) scale(1);
}
nav a {
	width: 70vw;
	margin-right: 0;
	padding: 0;
	display: block;
	text-align: center;
	color: #333;
	text-shadow: none;
}
nav a::before,
nav a::after {
	width: 3px;
	height: 0;
	top: auto;
	bottom: 25%;
	left: 1em;
}
nav a:hover::before,
nav a:hover::after,
nav a.current::before,
nav a.current::after {
	width: 3px;
	height: 50%;
}
nav a::after {
	left: auto;
	right: 1em;
}
#sp_menu {
	width: 60px;
	height: 60px;
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	cursor: pointer;
	transition: 0.5s;
}
.min #sp_menu {
	width: 54px;
	height: 54px;
}
#sp_menu span {
	width: 40%;
	height: 2px;
	margin-top: -1px;
	display: block;
	position: absolute;
	top: 50%;
	left: 30%;
	background-color: #999;
	transition: 0.4s;
}
#sp_menu:before,
#sp_menu:after {
	content: "";
	width: 40%;
	height: 2px;
	margin-top: -16%;
	display: block;
	position: absolute;
	top: 50%;
	left: 30%;
	background-color: #999;
	transition: 0.4s;
}
#sp_menu:after {
	margin-top: calc(16% - 2px);
}
#sp_menu.active span {
	opacity: 0;
}
#sp_menu.active:before,
#sp_menu.active:after {
	width: 50%;
	margin-top: -1px;
	left: 25%;
	transform: rotate(225deg);
}
#sp_menu.active:after {
	transform: rotate(315deg);
}



/*--------------------------------------------------------- top ---------------------------------------------------------*/
#top {
	padding: 20vh 0 30vh;
}
#top h2 {
	font-size: 14vw;
}
#top h2 + div {
	width: 100%;
	height: 28vw;
	background-image: url(../img/top_sp.png);
	background-size: 100% auto;
}
#top p {
	font-size: 3.6vw;
}



/*--------------------------------------------------------- pr ---------------------------------------------------------*/
#pr {
	height: 80vh;
	margin: -20vh 0;
	background-size: auto 100%;
	z-index: 1;
}
#pr h2 {
	min-width: 90vw;
	font-size: 8vw;
}
#pr p {
	line-height: 180%;
	font-size: 3.6vw;
	text-align: center;
}



/*--------------------------------------------------------- history ---------------------------------------------------------*/
#history {
	width: 100%;
	margin: 0 auto;
	padding: 30vh 5vw 10vh;
	flex-direction: inherit;
	justify-content: flex-end;
}
#history > div {
	margin: 0 auto;
	padding: 8vw 8vw calc(8vw - 1.5em);
	position: relative;
	color: #FFF;
	background-color: rgba(0,0,0,0.65);
	border-radius: 3px;
}
#history h2 {
	margin: 0 0 8vw;
	padding: 0 0 8vw;
	font-size: 10vw;
	line-height: 100%;
	border-bottom: 2px solid #FFF;
}
#history dt {
	width: 100%;
	margin-right: 0;
	margin-bottom: 0.1em;
	float: none;
}
#history dd {
	margin-bottom: 1.5em;
	padding-left: 0;
}



/*--------------------------------------------------------- outline ---------------------------------------------------------*/
#outline {
	padding-top: 8vw;
}
#outline > div {
	width: 100%;
	padding-top: 0;
	display: block;
}
#outline > div > div {
}
#outline h2 {
	width: 100%;
	height: auto;
	margin-bottom: 8vw;
	padding-bottom: 8vw;
	font-size: 10vw;
}
#outline > div > div {
	width: 100%;
	padding: 0 8vw;
}



/*--------------------------------------------------------- point ---------------------------------------------------------*/
#point {
	padding: 8vw 0 0;
}
#point h2 {
	margin-bottom: 8vw;
	padding-bottom: 0;
	font-size: 10vw;
}
#point > div {
	width: 84vw;
}
#point > div > div {
	width: 100%;
	display: block;
}
#point > div > div section {
	width: 100%;
	margin: 0 0 5vw;
	transform: translate(50px, 0);
}
#point > div > div section h3 {
	padding: 3vw 5vw;
	font-size: 7vw;
	line-height: 100%;
}
#point > div > div section p {
	margin-bottom: 20px;
}
#point > div > div section iframe {
	height: 60vh;
}



/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* case */
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
.column {
	width: calc(100% - 10vw);
	margin: 0 auto 0;
	column-count: 1;
	column-width: 100%;
	column-gap: 5vw;
}
.case {
	margin-bottom: 5vw;
}
.case h2 {
	padding: 4vw 0;
	font-size: 6vw;
	background-size: 100% auto;
}
.case img {
	width: calc(100% - 10px);
	margin-bottom: 10px;
}



/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* article */
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
#page_title {
	margin-bottom: 5vw;
	padding: 10vh 0;
}
#page_title h2 {
	padding-top: 0;
}
h2 {
	font-size: 10vw;
}
.flex {
	margin-bottom: 5vw;
	padding: 0 5vw;
	display: block;
}
.flex > section {
	margin: 0 0 5vw;
	padding: 6vw;
	background-color: #FFF;
}
.flex > section h2 {
	height: 50vw;
	margin: -5vw -5vw 6vw;
}
table {
	width: 100%;
}



/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* works */
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
#work_point {
	width: 100%;
	justify-content: space-between;
}
#flow {
	padding: 10vw 5vw;
}
#flow > section {
	width: 100%;
}
#flow .fix section {
	width: 100%;
	padding-top: 10vw;
	float: none;
}
#flow .fix section:first-child {
	float: none;
}
#flow h4,
#flow ol li {
	margin-bottom: 5vw;
}
#flow h4::after,
#flow ol li::after {
	height: 5vw;
}



/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* recruit */
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
#recruit {
	margin: 0 auto;
	padding: 0;
	display: block;
}
#recruit h2 {
	margin: 60px 30px 0;
	padding: 10vw 0;
	color: #FFF;
	font-size: 10vw;
}
#recruit section {
	width: 100%;
	padding: 50px;
	background-color: #FFF;
}
#recruit div.flex {
	width: calc(100% - 60px);
	margin: 0 auto 20px;
	padding: 30px 0;
	display: block;
}
#recruit table {
	width: 100%;
	border-collapse: collapse;
	border-top: none;
}
#recruit caption {
	padding: 0 15px;
	margin-bottom: 30px;
}
#recruit th,
#recruit td {
	width: 100%;
	padding: 1em;
	display: block;
}
#recruit th {
	white-space: normal;
	background-color: #EEE;
}
#recruit td {
	padding-bottom: 2em;
	border-bottom: none;
}



/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* contact */
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
#contact {
	margin: 0 auto;
	padding: 0 0 5vw;
}
#contact h2 {
	padding: 20px 0 40px;
	font-size: 10vw;
}
#contact > div {
	width: calc(100% - 10vw);
	margin: 0 auto;
	padding: 0;
}
#contact table {
	width: 100%;
	min-width: auto;
}
#contact th,
#contact td {
	padding: 1em;
	display: block;
}
#contact th {
	white-space: normal;
	background-color: #EEE;
}
#contact td {
	padding-bottom: 2em;
	border-bottom: none;
}
input,
textarea {
	width: 100%;
}
#contact .center {
	padding: 0 0 30px;
}

div#mfp_overlay_inner {
	width: calc(100% - 60px);
	padding: 20px 0 !important;
	position: fixed !important;
	overflow: auto;
}
table#mfp_confirm_table tr.mfp_achroma {
	background-color: #F6F7F9;
}
table#mfp_confirm_table tr.mfp_colored {
	background-color: #FFF;
}
table#mfp_confirm_table tr th {
	white-space: normal !important;
}



/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* footer */
/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
footer {
	height: 60px;
	overflow: hidden;
	position: relative;
}
footer span {
	font-size: 3vw;
	white-space: nowrap;
}


}



