@charset "utf-8";

/* =======================================

	CommonElements

======================================= */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 14px;
	font: inherit;
	line-height: 1.8;
	letter-spacing: 1px;
}

body {
	font-size: 100%;
	font-family: 'Roboto','Sawarabi Gothic', "ヒラギノ角ゴ Pro W3","メイリオ", "Meiryo", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS P Gothic", Verdana, Arial, Helvetica, sans-serif;
	color: #1b1b1b;
	background-color: #fff;
	background-size: 20%;
	position: relative;
	height: 100%;
}

a:link {
	transition: 0.5s;
	text-decoration:none; 
	color: #1d1d1d;
}
a:visited { text-decoration:none; color: #325454;}
a:active { text-decoration:none; color: #89c9d1;}
a:hover { text-decoration:none; color: #89c9d1; opacity: 0.8;}
a:hover span.arrow::after {
	transition: 0.5s;
	border-left-color: #89c9d1;
}

p {
	padding: 5px 5px;
	font-size: 14px;
}

h2{
	margin-bottom: 60px;
}
h2 .title_02 {
	font-size: 40px;
	fill: transparent;
	stroke-width: 2px;
	font-weight: 900;
	letter-spacing: 15px;
	stroke-dasharray: 1200;
	stroke-dashoffset: 1200;
	transition: 1s;
}
h2 .title_02.blue{
	stroke: #00AFD6;
}
h2 .title_02.red{
	stroke: #f00;
}
.bg_wht{
	background: #fff;
}
.fadeIn .title_02{
	-webkit-animation: stroke 3s 0.2s ease-in-out forwards; 
	animation: stroke 3s 0.2s ease-in-out forwards; 
	fill: #fff;
}
h3{
	font-size: 30px;
    padding: 13px 0;
	font-weight: 900;
	stroke: #fff;
	line-height: 1.4;
	letter-spacing: 9px;
	color: #00AFD6;
}
hr{
	border: none;
	border-top: solid 2px #00AFD6;
	margin: 10px 0 15px;
}
.name{
	font-size: 20px;
	letter-spacing: 14px;
}
.slider{
	opacity: 0;
}
.slick-initialized{
    opacity: 1
}
.h_max{
	height: 100%;
}
@media (min-width: 901px) {
	.sp_display{
		display: none;
	}
}
@media (max-width: 900px) {
	.pc_display{
		display: none;
	}
	h2 {
		margin-left: -40vw;
		width: 170vw;
		margin-bottom: 20px;
	}
	h3{
		font-size: 18px;
	}
	hr{
		border-top: solid 1px #00AFD6;
		margin: 5px 0 10px;
	}
	.name{
		text-align: center;
	}
}

/* nav
--------------------------- */

#navBtn{
	position: fixed;
	opacity: 0;
	top: 0;
	right: 0;
	height: 50px;
	width: 50px;
	z-index: 12;
	border: solid 2px #FF0000;
}
#navBtn div{
	position: absolute;
	top:22px;
    right: 8px;
	width: 30px;
	height: 2px;
	background-color: #FF0000;
	transition: 0.5s;
}
#navBtn div::before, #navBtn div::after{
	content: "";
	position: absolute;
	top: -10px;
	right: 0;
	width: 30px;
	height: 2px;
	background-color: #FF0000;
	transition: 0.5s;
}
#navBtn div::after{
	top: 10px;
}
#navBtn div.activ{
	transition: 0.5s;
	background-color: transparent;
}
#navBtn div.activ::before{
	transition: 0.5s;
	transform: rotate(405deg);
	top: 0;
}
#navBtn div.activ::after{
	transition: 0.5s;
	transform: rotate(-405deg);
	top: 0;
}
#navContents{
	box-sizing: border-box;
	position: fixed;
	text-align: center;
	top: -50px;
	height: 50px;
	padding: 4px;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.7);
	z-index: 10;
	transition: 0.5s;
	overflow: hidden;
	line-height: 20px;
	vertical-align: middle;
}
#navContents.activ{
	top: 0;
	transition: 0.5s;
}
#navContents a{
	position: relative;
	color: #FF0000;
	transition: 0.5s;
	display: inline-block;
	padding: 0 2px 0 8px;
	margin: 0 15px;
	height: 45px;
}
#navContents a:hover{
	color: #FF0000;
}
#navContents a.current {
	transition: 0.5s;
	color: #FF0000;
}
#navContents a::after {
	content: "";
	position: absolute;
	display: block;
	height: 2px;
	width: 0;
	bottom: 8px;
	left: 0;
	background: #FF0000;
	z-index: 12;
	transition: 0.5s;
}
#navContents a.current::after {
	content: "";
	width: 100%;
	transition: 0.5s;
}
#navContents a:hover::after {
	content: "";
	width: 100%;
	transition: 0.5s;
}
#navContents a p{
	font-size: 20px;
	letter-spacing: 7px;
	line-height: 1.4;
}
@media (max-width: 1430px) {

	#navContents{
		padding: 8px 8px 20px;;
		height: auto;
		top: -400px;
		background-color: rgba(255, 255, 255, 0.8);
	}
	#navContents a{
		display: block;
		padding: 10px 15px 0;
		height: 50px;
	}
	#navContents.activ .bg{
		position: fixed;
		margin: 2.5%;
		top: 0;
		left: 0;
		width: 95%;
		height: 95%;
	}
	#navContents a p{
		font-size: 15px;
	}
}
@media (max-width: 900px){
	#navBtn{
		border: solid 1px #FF0000;
	}
	#navContents{
		border-bottom: solid 1px #FF0000;
	}
	#navBtn div::before, #navBtn div::after{
		height: 1px;
	}
	#navBtn div {
		height: 1px;
	}
	#navContents a::after {
		height: 1px;
	}
}
.nav_contact_form p{
	color: #00AFD6
}
.nav_contact_form p img{
	margin: 0 12px 6px 0;
}
#navContents a.nav_contact_form::after{
	background: #00AFD6;
}

/* container
--------------------------- */
#container{
	height: 100%;
	overflow: hidden;
	position: relative;
	background-image: url("/common/img/wave_bg.png");
	background-size: cover;
}
#container::before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin-top: -35px;
	background-color: rgb(255, 255, 255, 1);
	-webkit-animation: bgc 4s ease-in-out forwards; 
	animation: bgc 4s ease-in-out forwards; 
}
@-webkit-keyframes bgc {
  100% {
	background-color: rgb(255, 255, 255, 0);
  }
}
@keyframes bgc {
  100% {
	background-color: rgb(255, 255, 255, 0);
  }
}
section{
	position: relative;
	padding: 90px 0 0;
	overflow: hidden;
	width: 100%;
}
section .inner > *{
	opacity: 0;
	position: relative;
	top: 15px;
	transition: 2s 0s;
}
section .inner > .fadeIn{
	top: 0;
	opacity: 1;
}
section#cover > *,section .wave2{
	opacity: 1;
}
svg.wave{
	height: 150vh;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	margin-top: -50vh;
	transform: scale(1,-1);
}
@media (max-width: 900px) {
	section .inner{
		width: 100%!important;
	}
	section{
		padding: 30px 0 0;
	}
	section .inner{
		width: 90%!important;
		padding: 30px 0 0;
		margin-left: 5%;
		margin-right: 5%;
	}
}


/* cover
--------------------------- */
section#cover{
	position: relative;
	width: 800px;
	margin: auto;
	padding: 90px 0 0;
	overflow: hidden;
}
#cover{
	height: 100vh;
}
#cover svg.title{
	position: absolute;
	width: 800px;
	height: 378px;
	top: 47vh;
	margin-top: -180px;
}
#logo{
	fill: #fff;
	stroke :#f00;
	stroke-width: 2px;
	stroke-dasharray: 1200;
	stroke-dashoffset: 1200;
	-webkit-animation: stroke 2.5s 0.5s ease-in-out forwards; 
	animation: stroke 2.5s 0.5s ease-in-out forwards; 
}
#logo_bg{
	fill: #fff;
	stroke :#00AFD6;
	stroke-width: 2px;
	stroke-dasharray: 1200;
	stroke-dashoffset: 1200;
	-webkit-animation: stroke 2.5s ease-in-out forwards; 
	animation: stroke 2.5s ease-in-out forwards; 
}
#LeadText_01,#LeadText_02{
	font-size: 26px;
	letter-spacing: 10px;
	fill: #00AFD6;
	opacity: 0;
	-webkit-animation: lead 1.5s 2.7s ease-in-out forwards; 
	animation: lead 1.5s 2.7s ease-in-out forwards; 
}
#Line_01,#Line_03,#Line_05,#Line_07{
	stroke-dasharray: 1200;
	stroke-dashoffset: 1200;
	-webkit-animation: stroke 2s 1s ease-in-out forwards; 
	animation: stroke 2s 1s ease-in-out forwards; 
}
#Line_02,#Line_04,#Line_06,#Line_08{
	stroke-dasharray: 1200;
	stroke-dashoffset: 1200;
	-webkit-animation: stroke 2s 1.2s ease-in-out forwards; 
	animation: stroke 2s 1.2s ease-in-out forwards; 
}
#Line_01_bg,#Line_03_bg,#Line_05_bg,#Line_07_bg{
	stroke-dasharray: 1200;
	stroke-dashoffset: 1200;
	-webkit-animation: stroke 2s 0.5s ease-in-out forwards; 
	animation: stroke 2s 0.5s ease-in-out forwards; 
}
#Line_02_bg,#Line_04_bg,#Line_06_bg,#Line_08_bg{
	stroke-dasharray: 1200;
	stroke-dashoffset: 1200;
	-webkit-animation: stroke 2s 0.7s ease-in-out forwards; 
	animation: stroke 2s 0.7s ease-in-out forwards; 
}
@-webkit-keyframes stroke {
	0% {
    stroke-dashoffset: 1200;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes stroke {
	0% {
    stroke-dashoffset: 1200;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes lead {
  100% {
    opacity: 1;
  }
}
@keyframes lead {
  100% {
    opacity: 1;
  }
}

@media (max-width: 900px) {
	section#cover{
		width: 100%;
		max-height: 100%;
	}
	#cover svg.title{
		width: 80vw;
		margin: 0 10vw 0;
		max-height: 90%;
		top: 25vh;
	}
	#LeadText_01,#LeadText_02{
		font-size: 33px;
		letter-spacing: 13px;
		-webkit-animation: lead 1.5s 2s ease-in-out forwards; 
		animation: lead 1.5s 2s ease-in-out forwards; 
	}
}

/* PHILOSOPHY
--------------------------- */
section#philosophy .inner{
	position: relative;
	width: 900px;
	margin: auto;
	padding: 0;
}
.center_img {
	max-width: 80%;
	display: block;
	margin: auto;
}
.hand {
	width: 250px;
	height: auto;
}
.skill{
	position: relative;
	width: auto;
    height: 100px;
    margin-top: -60px;
}
#philosophy .slider .modal{
	display: flex;
	align-items: center;
	overflow: hidden;
	width: 270px;
	height: 270px;
	margin: 15px;
	padding: 15px;
	opacity: 0.7;
}
#philosophy .slider .modal.slick-center{
	opacity: 1;
	padding: 0;
}
#philosophy .slider .modal img{
	/* box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.05); */
	max-width: 100%;
	max-height: 100%;
}
#philosophy .slick-prev, #philosophy .slick-next{
	top: 57%;
}
#philosophy .slick-next{
	right: -60px;
}
#philosophy .slick-prev{
	left: -60px;
}

#philosophy .slick-prev,#philosophy .slick-next{
	background: transparent;
}
@media (max-width: 900px) {
	section#philosophy .inner{
		padding: 0;
	}
	.hand {
		width: 50%;
	}
	#philosophy .slider .modal{
		width: 70vw;
		height: auto;
		padding: 0;
	}
	#philosophy .slick-prev{
		left: 0px;
	}
	#philosophy .slick-next{
		right: 0;
	}
}

/* PROFILE
--------------------------- */

section#profile::before{
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 650px;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: #fff;
}
section#profile .inner{
	position: relative;
	width: 1200px;
	margin: 100px auto 0;
	padding: 0 150px 60px;
	background: #fff;
	border: solid 2px #00AFD6;
}
.profile_title_block{
	margin-top: -130px;
}
.profile_title_02{
	width: 570px;
	margin-bottom: 0;
}
.profile_img{
	width: 300px;
	height: 300px;
	border-radius: 50%;
	border: solid 2px #00AFD6;
	background-image: url("/common/img/profile_img.png");
	background-size: cover;
}
.profile_text{
	padding-left: 30px;
}
.job_category{
	color: #00AFD6;
}
section#profile .icon{
	width: auto;
	height: 50px;
}
.skill_list .item{
	display: inline-block;
	padding: 0px 15px;
    margin: 0 5px 10px 0;
	border: solid 2px #ccc;
	border-radius: 10px;
}

@media (max-width: 1200px) {
	.profile_title_block{
		width: 900px;
	}

	section#profile .inner{
		width: 100%;
	}
}
@media (max-width: 900px) {
	section#profile .inner{
		padding: 0 20px 60px;
		margin: 160px auto 0;
		border: solid 1px #00AFD6;
	}
	.profile_title_block{
		width: auto;
	}
	.profile_img{
		width: 60vw;
		height: 60vw;
		border: solid 1px #00AFD6;
		margin: 0 auto 40px;
	}
	.profile_text{
		padding-left: 0;
	}
	.profile_title_02 {
		margin-left: -10vw;
		width: 100vw;
	}
	.profile_title_02 svg {
		margin-left: -20px;
	}
	.skill_list .item{
		font-size: 11px;
		border: solid 1px #ccc;
		margin: 0 3px 5px 0;
	}
}
.skill_list .skill_icon{
	border-color: #00AFD6;
}

/* WORKS
--------------------------- */
section#works{
	background: #fff;
}
section#works .inner{
	/* background-color: rgb(245, 245, 245); */
	position: relative;
	width: 900px;
	margin: 0 auto;
	padding: 0 0 120px;
}
#works_list > div a{
	margin: 25px;
	padding: 20px;
    width: 250px;
    height: 250px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	/* background: rgb(236, 239, 240); */
	border: solid 2px rgb(240, 240, 240);
}
#works_list > div a:hover{
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
#works_list > div a img{
	max-width: 100%;
    max-height: 100%;
}
@media (max-width: 900px) {
	section#works{
		padding-top: 90px;
	}
	#works_list > div a{
		margin: 30px auto;
		width: 60vw;
		height: 60vw;
		align-items: center;
		border: solid 1px rgb(233, 233, 233);
	}
}

/* CONTACT
--------------------------- */
section#contact{
	background-color: #B6E5E6;
}
section#contact .inner{
	position: relative;
	width: 900px;
	margin: 0 auto;
	padding: 120px 0 200px;
}
.wave2{
	height: 120px;
	width: 100%;
	position: absolute;
	top: -1px;
	left: 0;
	transform: scale(1,-1);
}
@media (max-width: 900px) {
	section#contact .inner{
		padding: 120px 0 100px;
	}
}
/* creative
--------------------------- */
#creative .slick-track{
	translate: 3d(-690px, 0px, 0px);
}
#creative.modalWindow.activ .modalInner{
	padding: 40px 40px 70px;
	overflow: auto;
}
.modalWindow .control_btn{
	display: none;
}
.modalWindow.activ .control_btn{
	display: block;
	position: fixed;
	top: 50%;
	margin-top: -70px;
    left: 10%;
    width: 80%;
}
#creative .prev,#creative .next{
	position: absolute;
    width: 100px;
    height: 150px;
    cursor: pointer;
	opacity: 0.3;
	transition: 0.2s;
}
#creative .prev {
	left: 0;
}
#creative .next {
    right: 0;
}
#creative .prev::before,#creative .next::before,#creative .prev::after,#creative .next::after{
	content: "";
	position: absolute;
	width: 40px;
    height: 40px;
    border: solid 2px #fff;
    top: 45px;
}
.creative_item{
	opacity: 0;
	position: relative;
	top: 15px;
	transition: 2s 0s !important;
}
.creative_item.fadeIn{
	top: 0;
	opacity: 1;
}
@media (max-width: 900px) {
	#creative .prev, #creative .next{
		width: 50px;
		height: 120px;
		opacity: 1;
	}
	#creative .prev::before,#creative .next::before,#creative .prev::after,#creative .next::after{
		width: 20px;
		height: 20px;
		border: solid 2px #999;
		z-index: 1;
	}
}
#creative .prev::before ,#creative .prev::after  {
	left: 0;
    border-right: none;
    border-bottom: none;
	transform: rotate(-45deg);
}
#creative .next::before ,#creative .next::after {
    right: 0;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
}
#creative .prev::after {
	left: 20px;
}
#creative .next::after {
    right: 20px;
}

#creative .prev:hover,#creative .next:hover{
	opacity: 0.7;
	transition: 0.2s;
}
#creative .slider {
	margin-bottom: 50px;
	opacity: 0;
}
#creative .slider .item{
	height: 500px;
	display: flex;
	align-items: center;
}
#creative .slider .item img{
	max-height: 500px;
	max-width: 700px;
	width: auto;

}
#creative .slider .slick-dots{
	bottom: -40px;
}
@media (max-width: 900px) {
	#creative .slider .item img{
		max-height: 80vw;
		max-width: 80vw;
		width: auto;
		height: auto;
	}
	#creative .slider .item{
		height: 80vw;
	}
	#creative.modalWindow.activ .modalInner{
		padding: 10px 20px 20px;
	}
	#creative .slick-prev,#creative .slick-next{
		display: none!important;
	}
	.modalWindow.activ .control_btn{
		left: 0;
		margin-top: -35px;
		width: 100%;
		opacity: 1;
	}
	#creative .prev:hover,#creative .next:hover{
		opacity: 1;
	}
	#creative .prev::before {
		left: 10px;
	}
	#creative .next::before {
		right: 10px;
	}
	#creative .prev::after {
		left: 20px;
	}
	#creative .next::after {
		right: 20px;
	}

}
#creative .prev.off, #creative .next.off{
	display: none;
}

/* FOOTER
--------------------------- */
footer{
	position: relative;
	width: 100%;
	background: #1b1b1b;
	color: #fff;
	height: 38px;
}
@media (max-width: 900px) {
	footer p{
		font-size: 2vw;
	}
}

/* contactForm
--------------------------- */
#contactForm h2{
	margin-bottom: 30px;
}
#contactForm label{
	display: block;
	line-height: 25px;
	font-size: 16px;
	border-left: solid 2px #FF0000;
	padding-left: 10px;
	margin-bottom: 15px;
}
#contactForm input{
	box-sizing: border-box;
	display: block;
	margin-bottom: 20px;
	line-height: 25px;
	width: 100%;
    border: solid 2px #ddd;
}
#contactForm textarea{
    border: solid 2px #ddd;
	width: 100%;
	height: 200px;
}
#contactForm input[type="submit"],#contactForm input[type="reset"]{
	display: inline-block;
    width: 40%;
    margin: 30px 10px 0;
    border: solid 2px #00AFD6;
    font-size: 18px;
    padding: 9px;
    background: #fff;
	cursor: pointer;
}
@media (max-width: 900px) {
	#contactForm input{
		border: solid 1px #ddd;
	}
	#contactForm textarea{
		border: solid 1px #ddd;
	}
	#contactForm input[type="submit"],#contactForm input[type="reset"]{
		border: solid 1px #00AFD6;
		font-size: 14px;
	}
}
#contactForm input[type="reset"]{
	border-color: #aaa;
	color: #999;
}
/* =======================================

	Component

======================================= */

/* layout
--------------------------- */

.l-flex.space-around{
	justify-content:space-around;
}

@media (min-width: 901px) {

	/*カラムレイアウト*/
	.l-flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-wrap: nowrap;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	}
	.l-flex.wrap{
	flex-wrap: wrap;
	}
	/*左右揃え*/
	.l-flex.left {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	}
	.l-flex.right {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	}
	.l-flex.center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	}
	/*上下揃え*/
	.col1_2, .col1_3, .col1_4, .col2_3, .col3_4, .col {
	padding: 5px;
	margin: auto;
	}
	.l-flex.align_center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	}
	.l-flex.align_top {
	-webkit-box-align: start;
	-ms-flex-align: start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	}
	.l-flex.align_bottom {
	-webkit-box-align: end;
	-ms-flex-align: end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
	}
	/*カラム幅*/
	.l-flex .col1_2 {
	width: 50%;
	}
	.l-flex .col1_3 {
	width: 33.3%;
	}
	.l-flex .col1_3_space {
	width: 32%;
	}
	.l-flex .col1_4 {
	width: 25%;
	}
	.l-flex .col2_3 {
	width: 66.6%;
	}
	.l-flex .col3_4 {
	width: 75%;
	}
}

@media (max-width: 900px) {
	/* layout
	--------------------------- */
	.l-flex {
	display: block;
	}
	.l-flex.sp {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-wrap: nowrap;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	}
	/*左右揃え*/
	.l-flex.left.sp {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	}
	.l-flex.right.sp {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	}
	.l-flex.center.sp {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	}
	/*上下揃え*/
	.col1_2, .col1_3, .col1_4, .col2_3, .col3_4, .col {
	padding: 5px;
	margin: auto;
	}
	.l-flex.align_center.sp {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	}
	.l-flex.align_top.sp {
	-webkit-box-align: start;
	-ms-flex-align: start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	}
	.l-flex.align_bottom.sp {
	-webkit-box-align: end;
	-ms-flex-align: end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
	}
	/*カラム幅*/
	.l-flex.sp .col1_2,.wide1_2 {
	width: 50%;
	}
	.l-flex.sp .col1_3,.wide1_3 {
	width: 33.3%;
	}
	.l-flex.sp .col1_4,.wide1_4 {
	width: 25%;
	}
	.l-flex.sp .col2_3,.wide2_3 {
	width: 66.6%;
	}
	.l-flex.sp .col3_4,.wide3_4 {
	width: 75%;
	}
}

/* link
--------------------------- */
a span.arrow::after{
	content: "";
	display: inline-block;
	margin-left: 6px;
	margin-right: -6px;
	border: solid 7px transparent;
	border-left-color: #1b1b1b;
	transition: 0.5s;
}

/* button
--------------------------- */
.btn {
	display: block;
	margin: 30px auto 0;
	width: 350px;
	text-align: center;
	background: #fff;
	border: solid 2px #FF0000;
	padding: 10px 0;
	font-size: 20px;
	letter-spacing: 7px;
	cursor: pointer;
}
@media (max-width: 900px) {
	.btn {
		width: 100%;
		font-size: 16px;
		border: solid 1px #FF0000;
	}
}
/* modal
--------------------------- */
.modalWindow{
	position: fixed;
	width: 95%;
	height: 0;
	left: 2.5%;
	top: 50%;
	transition: 0.5s;
	opacity: 0;
	overflow: hidden;
	z-index: 99;
}
.modalWindow .modalInner{
	max-width: 1000px;
	margin: auto;
	overflow: auto;
	height: 100%;
	color: #000
}
.modalWindow h3 span{
	line-height: 1.4;
	font-size: 22px;
}
.modalWindow.activ {
	overflow: auto;
	position: fixed;
	width: 70%;
	height: auto;
	max-height: 95%;
	left: 15%;
	top: 2.5%;
	background: #fff;
	transition: 0.2s;
	opacity: 1;
}
.modalWindow.activ .modalInner{
	padding: 60px 60px 90px;
}
.modalWindow.activ .closeBtn{
	position: fixed;
	right: 15%;
    top: 2.5%;
    margin-right: -45px;
	width: 40px;
	height: 40px;
	overflow: hidden;
	cursor : pointer;
	z-index: 16;
}
.modalWindow.activ .closeBtn::after {
	content: "";
	position: absolute;
	width: 40px;
	height: 2px;
	top: 20px;
	background-color: #FF0000;
	transform: rotate(-45deg);
}
.modalWindow.activ .closeBtn::before {
	content: "";
	position: absolute;
	width: 40px;
	height: 2px;
	top: 20px;
	background-color: #FF0000;
	transform: rotate(45deg);
}
body.blur{
}
body.blur #container{
	-ms-filter: blur(6px) brightness(300%);
	filter: blur(6px) brightness(70%);
}
body.blur{
	background-color: #999;
}
@media (max-width: 900px) {
	.modalWindow.activ .closeBtn{
		right: 4%;
		top: 2%;
		margin-right: 0;
	}
	.modalWindow h2{
		margin-left: -25vw;
		width: 130vw;
	}
	.modalWindow.activ{
		width: 90%;
		left: 5%;
		height: 85%;
		top: 10%;
	}
	.modalWindow.activ .modalInner{
		padding: 10px 20px 20px;
	}
	#contactForm input[type="submit"], #contactForm input[type="reset"]{
		width: 45%;
		margin: 30px 1% 0;
	}
}
/* BackToTOP
--------------------------- */
#BackToTOP{
	display: block;
	width: 50px;
	height: 50px;
	border: solid 2px #FF0000;
	right: 0;
	opacity: 0;
	transition: 0.5s;
}
#BackToTOP.show{
	transition: 0.5s;
	opacity: 1;
}
#BackToTOP::before{
	content: "";
    position: absolute;
    display: block;
    border: solid 2px #FF0000;
    border-bottom-color: transparent;
    border-left-color: transparent;
    transform: rotate(-45deg);
	width: 15px;
    height: 15px;
    top: 20px;
    left: 14px;
}
#BackToTOP.absolute{
	position: absolute;
	bottom: 38px;
}
#BackToTOP.fixd{
	position: fixed;
	bottom: 0;
}
@media (max-width: 900px) {
	#BackToTOP{
		border: solid 1px #FF0000;
	}
	#BackToTOP::before{
		border: solid 1px #FF0000;
		border-bottom-color: transparent;
		border-left-color: transparent;
		left: 16px;
	}
}
/*--------------------
* Spacing Utilities
* -------------------*/
.pdT0 { padding-top: 0px !important; }
.pdR0 { padding-right: 0px !important; }
.pdB0 { padding-bottom: 0px !important; }
.pdL0 { padding-left: 0px !important; }
.pdT5 { padding-top: 5px !important; }
.pdR5 { padding-right: 5px !important; }
.pdB5 { padding-bottom: 5px !important; }
.pdL5 { padding-left: 5px !important; }
.pdT10 { padding-top: 10px !important; }
.pdR10 { padding-right: 10px !important; }
.pdB10 { padding-bottom: 10px !important; }
.pdL10 { padding-left: 10px !important; }
.pdT15 { padding-top: 15px !important; }
.pdR15 { padding-right: 15px !important; }
.pdB15 { padding-bottom: 15px !important; }
.pdL15 { padding-left: 15px !important; }
.pdT20 { padding-top: 20px !important; }
.pdR20 { padding-right: 20px !important; }
.pdB20 { padding-bottom: 20px !important; }
.pdL20 { padding-left: 20px !important; }
.pdT25 { padding-top: 25px !important; }
.pdR25 { padding-right: 25px !important; }
.pdB25 { padding-bottom: 25px !important; }
.pdL25 { padding-left: 25px !important; }
.pdT30 { padding-top: 30px !important; }
.pdR30 { padding-right: 30px !important; }
.pdB30 { padding-bottom: 30px !important; }
.pdL30 { padding-left: 30px !important; }
.pdT35 { padding-top: 35px !important; }
.pdR35 { padding-right: 35px !important; }
.pdB35 { padding-bottom: 35px !important; }
.pdL35 { padding-left: 35px !important; }
.pdT40 { padding-top: 40px !important; }
.pdR40 { padding-right: 40px !important; }
.pdB40 { padding-bottom: 40px !important; }
.pdL40 { padding-left: 40px !important; }
.pdT45 { padding-top: 45px !important; }
.pdR45 { padding-right: 45px !important; }
.pdB45 { padding-bottom: 45px !important; }
.pdL45 { padding-left: 45px !important; }
.pdT50 { padding-top: 50px !important; }
.pdR50 { padding-right: 50px !important; }
.pdB50 { padding-bottom: 50px !important; }
.pdL50 { padding-left: 50px !important; }
.pdT60 { padding-top: 60px !important; }
.pdR60 { padding-right: 60px !important; }
.pdB60 { padding-bottom: 60px !important; }
.pdL60 { padding-left: 60px !important; }

.mgR0 { margin-right: 0px !important; }
.mgB0 { margin-bottom: 0px !important; }
.mgL0 { margin-left: 0px !important; }
.mgT5 { margin-top: 5px !important; }
.mgR5 { margin-right: 5px !important; }
.mgB5 { margin-bottom: 5px !important; }
.mgL5 { margin-left: 5px !important; }
.mgT10 { margin-top: 10px !important; }
.mgR10 { margin-right: 10px !important; }
.mgB10 { margin-bottom: 10px !important; }
.mgL10 { margin-left: 10px !important; }
.mgT15 { margin-top: 15px !important; }
.mgR15 { margin-right: 15px !important; }
.mgB15 { margin-bottom: 15px !important; }
.mgL15 { margin-left: 15px !important; }
.mgT20 { margin-top: 20px !important; }
.mgR20 { margin-right: 20px !important; }
.mgB20 { margin-bottom: 20px !important; }
.mgL20 { margin-left: 20px !important; }
.mgT25 { margin-top: 25px !important; }
.mgR25 { margin-right: 25px !important; }
.mgB25 { margin-bottom: 25px !important; }
.mgL25 { margin-left: 25px !important; }
.mgT30 { margin-top: 30px !important; }
.mgR30 { margin-right: 30px !important; }
.mgB30 { margin-bottom: 30px !important; }
.mgL30 { margin-left: 30px !important; }
.mgT35 { margin-top: 35px !important; }
.mgR35 { margin-right: 35px !important; }
.mgB35 { margin-bottom: 35px !important; }
.mgL35 { margin-left: 35px !important; }
.mgT40 { margin-top: 40px !important; }
.mgR40 { margin-right: 40px !important; }
.mgB40 { margin-bottom: 40px !important; }
.mgL40 { margin-left: 40px !important; }
.mgT45 { margin-top: 45px !important; }
.mgR45 { margin-right: 45px !important; }
.mgB45 { margin-bottom: 45px !important; }
.mgL45 { margin-left: 45px !important; }
.mgT50 { margin-top: 50px !important; }
.mgR50 { margin-right: 50px !important; }
.mgB50 { margin-bottom: 50px !important; }
.mgL50 { margin-left: 50px !important; }
.mgT60 { margin-top: 60px !important; }
.mgR60 { margin-right: 60px !important; }
.mgB60 { margin-bottom: 60px !important; }
.mgL60 { margin-left: 60px !important; }

.pd0 { padding: 0px !important; }
.pd5 { padding: 5px !important; }
.pd10 { padding: 10px !important; }
.pd15 { padding: 15px !important; }
.pd20 { padding: 20px !important; }
.pd25 { padding: 25px !important; }
.pd30 { padding: 30px !important; }
.pd35 { padding: 35px !important; }
.pd40 { padding: 40px !important; }
.pd45 { padding: 45px !important; }
.pd50 { padding: 50px !important; }
.pd60 { padding: 60px !important; }

.mg5 { margin: 5px !important; }
.mg10 { margin: 10px !important; }
.mg15 { margin: 15px !important; }
.mg20 { margin: 20px !important; }
.mg25 { margin: 25px !important; }
.mg30 { margin: 30px !important; }
.mg35 { margin: 35px !important; }
.mg40 { margin: 40px !important; }
.mg45 { margin: 45px !important; }
.mg50 { margin: 50px !important; }
.mg60 { margin: 60px !important; }

/*--------------------
* Texts Utilities
* -------------------*/
.text10 { font-size: 10px !important; }
.text11 { font-size: 11px !important; }
.text12 { font-size: 12px !important; }
.text13 { font-size: 13px !important; }
.text14 { font-size: 14px !important; }
.text15 { font-size: 15px !important; }
.text16 { font-size: 16px !important; }
.text17 { font-size: 17px !important; }
.text18 { font-size: 18px !important; }
.text19 { font-size: 19px !important; }
.text20 { font-size: 20px !important; }
.text21 { font-size: 21px !important; }
.text22 { font-size: 22px !important; }
.text23 { font-size: 23px !important; }
.text24 { font-size: 24px !important; }
.text25 { font-size: 25px !important; }
.text26 { font-size: 26px !important; }
.text27 { font-size: 27px !important; }
.text28 { font-size: 28px !important; }
.text29 { font-size: 29px !important; }
.text30 { font-size: 30px !important; }
.text31 { font-size: 31px !important; }
.text32 { font-size: 32px !important; }
.text33 { font-size: 33px !important; }
.text34 { font-size: 34px !important; }
.text35 { font-size: 35px !important; }
.text36 { font-size: 36px !important; }
.text37 { font-size: 37px !important; }
.text38 { font-size: 38px !important; }
.text39 { font-size: 39px !important; }
.text40 { font-size: 40px !important; }

.textCenter{ text-align: center; }
.textRight{ text-align: right; }
.textLeft{ text-align: left; }