﻿@charset "utf-8";

/* =================================================================
		Reset Styles
================================================================= */
html, body, div, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, address,
ul, ol, li, dl, dt, dd,
table, th, td,
form, fieldset {
	color: #2D2D2D;
	font-weight: normal;
	font-family: "Hiragino Kaku Gothic Pro W3","ヒラギノ角ゴ Pro W3",Meiryo,"メイリオ","MS P Gothic","ＭＳ Ｐゴシック";
	font-size: 14px;
	font-weight: 300;
	line-height: 1.5;
	margin: 0;
	padding: 0;
}

/* HTML5 */
article, aside, figure, figcaption, footer, header,
hgroup, nav, section, summary{
	display: block;
}

/* Base Styles */
body{
}

img {
	border: none;
	vertical-align: bottom;
}

table {
	border: none;
	border-collapse: collapse;
	border-spacing: 0;
}

label{
	cursor: pointer;
}

input,
select,
textarea{
	padding: 2px;
}

ol,ul {
	list-style: none;
}

/* form */
select,input,button,textarea{
}
select option {
	padding : 0 5px 0 5px;
}
form label{
	cursor : pointer;
}

a,
input{
	outline: none;
}

/*	Basic Text Link	*/
a {
	color: #333333;	text-decoration: underline;
}

a:link {
	color: #333333;	text-decoration: underline;
}
a:visited {
	color: #333333;	text-decoration: underline;
}
a:hover {
	color: #333333;	text-decoration: none;
}
a:focus {
	color: #333333;	text-decoration: underline;
}
a:active {
	color: #333333;	text-decoration: underline;
}


/* =================================================================
		共通スタイル
================================================================= */

/*  PCのみ ================ */
@media (min-width:640px){
}

/*  スマホのみ ================ */
@media (max-width:640px){
}

/* hover-style01 アンダーライン */
.hover-style01{
	display: inline-block;
	position: relative;
	cursor: pointer;
}
.hover-style01::after{
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #000000;
	transform-origin: bottom right;
	transition: transform .3s cubic-bezier(.86,0,.07,1);
}
.hover-style01:hover::after{
	transform: scaleX(1);
	transform-origin: bottom left;
}

/* Fadein */
.fadestyle01{	/* 下から上*/
  opacity : 0;
  transform: translateY(30px);
  transition: all 1.0s;
}
.fadestyle02{
  opacity : 0;
  transform: translateY(-50px);
  transition: all 1.0s;
}
.fadestyle03{
  opacity : 0;
  transform: translateX(80px);
  transition: all 0.5s;
}
.fadestyle04{
  opacity : 0;
  transform: translateX(-50px);
  transition: all 1.0s;
}

.fadestyle05{	/* 下から上にゆっくり*/
  opacity : 0;
  transform: translateY(100px);
  transition: all 2.0s;
}


/* more */
.more-link{
	font-family: "Montserrat", sans-serif,"Hiragino Kaku Gothic Pro W3","ヒラギノ角ゴ Pro W3",Meiryo,"メイリオ","MS P Gothic","ＭＳ Ｐゴシック";
	font-weight: 400;
	text-transform: uppercase;
}
.more-link a{
	text-decoration: none;
	font-size: 12px;
	letter-spacing: 2px;
	padding: 10px 25px;
}
.more-link a:hover{
	border: #000 1px solid;
	transition: all 0.5s;
}

/* 黒 */
.more-link.bk a{
	background-color: #000;
	color: #fff;
	border: #fff 1px solid;
}
.more-link.bk a:hover{
	background-color: #fff;
	color: #000;
	border: #000 1px solid;
}
/* 白 */
.more-link.wh a{
	background-color: #fff;
	color: #000;
	border: #000 1px solid;
}
.more-link.wh a:hover{
	background-color: #000;
	color: #fff;
	border: #fff 1px solid;
}





/* =================================================================
		Body
================================================================= */
body{
	box-sizing: border-box;
}


/* =================================================================
		header
================================================================= */
#header{
	background:rgba(255,255,255,0.9);
	position: sticky;
	left: 0;
	top: 0;
	width: 100%;
	box-sizing: border-box;
	padding: 30px 0px 20px 0px;
	z-index: 500;
	border-bottom: #E5E5E5 1px solid;
}
#header #g-nav{
	display: flex;
	width: 96%;
	margin: 0 auto;
}
#header #g-nav li{
	width: 20%;
	font-family: "Montserrat", sans-serif,"Hiragino Kaku Gothic Pro W3","ヒラギノ角ゴ Pro W3",Meiryo,"メイリオ","MS P Gothic","ＭＳ Ｐゴシック";
	text-transform: uppercase;
	text-align: center;
}
#header #g-nav li a{
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-align: center;
	text-decoration: none;
	padding: 10px 0 10px 0;
}

#header #g-nav #logo img{
	width: 100px;
}

/*  スマホのみ ================ */
@media (max-width:640px){
#header{
	padding: 15px 0;
}
#g-nav li:nth-child(-n+2),
#g-nav li:nth-last-child(-n+2){
	display: none;
}
#g-nav li#logo{
width: 100%;
text-align: center;	
}
}




/* =================================================================
		ハンバーガーメニュー
================================================================= */
.hamburger-fade {
  position: fixed;
  top: 0px;
  right: 5px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-fade__wrapper {
  position: relative;
  width: 30px;
  height: 20px;
  margin: 20px auto;
}

.hamburger-fade__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-fade__line:nth-child(1) { top: 0; }
.hamburger-fade__line:nth-child(2) { top: 9px; }
.hamburger-fade__line:nth-child(3) { top: 18px; }

.hamburger-fade.active .hamburger-fade__line {
  background-color: #fff;
}
.hamburger-fade.active .hamburger-fade__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger-fade.active .hamburger-fade__line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}
.hamburger-fade.active .hamburger-fade__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  z-index: 900;
}

.nav-fade__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-fade.active {
  visibility: visible;
}

.nav-fade.active .nav-fade__bg {
  opacity: 1;
	overflow: scroll;
}

.nav-fade__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 5vh 5vw;
}

/* ロゴ */
.fade-menu-logo{
	width: 120px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) ;
	margin: 0 0 36px 0;
}
.nav-fade.active .fade-menu-logo {
  opacity: 1;
  transform: translateY(0);
}
.fade-menu-logo img{
	width: 100%;
}

/* リスト */
.nav-fade__list {
	margin: 0 0 25px 0;
}
.nav-fade__item {
  position: relative;
  margin-bottom: 5px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-fade.active .nav-fade__item {
  opacity: 1;
  transform: translateY(0);
}
.nav-fade.active .nav-fade__item:nth-child(1) { transition-delay: 0.2s; }
.nav-fade.active .nav-fade__item:nth-child(2) { transition-delay: 0.3s; }
.nav-fade.active .nav-fade__item:nth-child(3) { transition-delay: 0.4s; }
.nav-fade.active .nav-fade__item:nth-child(4) { transition-delay: 0.5s; }
.nav-fade.active .nav-fade__item:nth-child(5) { transition-delay: 0.6s; }
.nav-fade.active .nav-fade__item:nth-child(6) { transition-delay: 0.7s; }
a.nav-fade__link {
  display: inline-block;
	font-family: "Montserrat", sans-serif,"Hiragino Kaku Gothic Pro W3","ヒラギノ角ゴ Pro W3",Meiryo,"メイリオ","MS P Gothic","ＭＳ Ｐゴシック";
  color: #fff;
  font-size: 20px;
	font-weight: 400;
	letter-spacing: 2px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-fade__link a:visited{
  color: #fff;
}
.nav-fade__link:hover {
  color: #94989d;
}

/* SNS */
.gnav-sns {
	display: flex;
	color: #fff;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) ;
	margin: 0 0 15px 0;
}
.nav-fade.active .gnav-sns {
  opacity: 1;
  transform: translateY(0);
	transition-delay: 0.2s;
}
.gnav-sns a{
  font-size: 18px;
	color: #fff;
	margin: 0 15px 0 0;
}
.gnav-sns a:hover{
	color: #94989d;
}

.gnav-company{
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) ;
}
.nav-fade.active .gnav-company {
  opacity: 1;
  transform: translateY(0);
	transition-delay: 0.3s;
}

.gnav-company p{
	color: #fff;
}
.gnav-company p a{
	color: #fff;
	text-decoration: none;
}



/*  PCのみ ================ */
@media (min-width:640px){
.hamburger-fade {
  top: 15px;
  right: 10px;
}
}

/*  スマホのみ ================ */
@media (max-width:640px){
}




/* =================================================================
		company
================================================================= */
.common-company{
	border-top: #ccc 1px solid;
	padding: 130px 0 130px 0;
}

.common-company .more-link{
	margin: 50px auto 0 auto;
}
.common-company h2{
	font-family: "Montserrat", sans-serif,"Hiragino Kaku Gothic Pro W3","ヒラギノ角ゴ Pro W3",Meiryo,"メイリオ","MS P Gothic","ＭＳ Ｐゴシック";
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-align: center;
	margin: 0 0 50px 0;
}
.common-company p{
	max-width: 800px;
	text-align: center;
	line-height: 1.8;
	padding: 0 15px;
	margin: 0 auto 20px auto;
}


/*  スマホのみ ================ */
@media (max-width:640px){
.common-company{
	padding: 80px 0 80px 0;
}
}


/* =================================================================
		PageTOP
================================================================= */
#page_top{
	position: fixed;
	right: 20px;
	bottom: 20px;
}
#page_top a{
	position: relative;
}
#page_top a img{
	width: 60px;
}

/*  スマホのみ ================ */
@media (max-width:640px){
	#page_top{
		right: 10px;
		bottom: 10px;
	}
}


/* =================================================================
		footer
================================================================= */
#footer{
	background-color: #000;
	color: #fff;
	padding: 80px 30px 60px 30px;
}
#footer a{
	color: #fff;
	text-decoration: none;
}
#footer a:hover{
  transition: all 0.5s;
	color: #94989d;
}

.footer-content{
	display: flex;
}
.footer-menu{
	margin: 0 100px 0 0;
}
.footer-menu h3,
.footer-sns h3{
	font-family: "Montserrat", sans-serif,"Hiragino Kaku Gothic Pro W3","ヒラギノ角ゴ Pro W3",Meiryo,"メイリオ","MS P Gothic","ＭＳ Ｐゴシック";
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	margin: 0 0 15px;
}
.footer-menu ul{
}
.footer-menu ul li{
	font-size: 12px;
	letter-spacing: 2px;
	margin: 0 0 5px 0;
}

.footer-sns{
}
.footer-sns ul{
	display: flex;
}
.footer-sns ul li{
	font-size: 18px;
	margin: 0 15px 0 0;
}

.footer-award{
	display: flex;
	justify-content: flex-end;
}
.footer-award a{
	width: 25%;
	text-align: right;
}
.footer-award img{
	width: 100%;
}


/*  スマホのみ ================ */
@media (max-width:640px){
#footer{
	padding: 60px 15px 20px 20px;
}

.footer-award a{
	width: 50%;
	margin: 0 0 20px 0;
}

}







