﻿@charset "utf-8";
.pc{display: block !important;}
.sp{display: none !important;}
@media screen and (max-width:767px) {
	.pc{display: none !important;}
	.sp{display: block !important;}
}
img{
	max-width: 100%;
}
body{
	width: 100%;
	color: #000;
    -webkit-font-smoothing: antialiased;
}
#container{
	margin: 0 auto;
    padding-top: 210px;
}
.inr{
	max-width: 1000px;
	margin: 0 auto;
}
a{
	color: #FFF;
	text-decoration: underline;
	outline: none;
	transition: all 0.5s cubic-bezier(0.155, 0.91, 0.695, 0.95);
}
.inr a{
	/*text-decoration:underline;*/
}
/***** animation *****/
.js-scroll-fade {
  position: relative;
  opacity: 0;
  transform: translate(-140px, 0px);
  transition: all 1s cubic-bezier(0.155, 0.91, 0.695, 0.95);
}
.js-scroll-fade.is-animation {
  opacity: 1;
  transform: translate(0, 0);
}
.din{
    font-family: din-condensed,sans-serif;
    font-weight: 400;
    font-style: normal;
}
/************************* NAV *************/
.sidebar h1{
    width: 100vw;
    position: relative;
    transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}
.sidebar h1 a{
    display: block;
    width: 313px;
    height: 140px;
    padding: 30px 0 40px;
    transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
    position: absolute;
    left: calc(50% - 156px);
    background: url("../img/common/logo.png") no-repeat center center;
    background-size: contain;
    text-indent: -999px;
    z-index: 3;
}
.sidebar.active h1 a{
    left: 20px;
    background: url("../img/common/logo2.png") no-repeat center center;
    background-size: contain;
    width: 89px;
    height: 140px;
}
body .sidebar h1:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 210px;
    transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
    z-index: 1;
}
body.nav-opened .sidebar h1:after{
    width: 100vw;
    background: #FFF;
}
body.nav-opened .sidebar h1 a{
    left: calc(50% - 156px);
    background: url("../img/common/logo.png") no-repeat center center;
    background-size: contain;
    width: 313px;
    height: 140px;
    position: relative;
    z-index: 3;
}
.sidebar{
    position: fixed;
    left: 0;
    top: 0;
    width: 120px;
    height: 100vh;
    z-index: 10;
}
.sidebar:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100vh;
    transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}
body.nav-opened .sidebar:after{
    width: 120px;
    background: #FFF;
}
.sidebar .site-nav-toggle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit- transform: translateY(-50%);
    z-index: 2;
    display: block;
    background: none;
    border: none;
    padding: 0;
    width: 100%;
    outline: none;
    cursor: pointer;
}
.sidebar .site-nav-toggle .icon {
    position: relative;
    display: block;
    height: 90px;
}
.sidebar .site-nav-toggle .icon .bar {
    position: absolute;
    left: calc(50% - 22px);
    display: block;
    width: 44px;
    height: 5px;
    background: #000;
    transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1),background-color 0.8s linear;
}
.sidebar .site-nav-toggle .icon .bar:nth-child(1) {
    top: calc(50% - 9px);
    left: calc(50% - 19px);
}
.sidebar .site-nav-toggle .icon .bar:nth-child(2) {
    top: calc(50% + 4px);
    left: calc(50% - 25px);
}
body.nav-opened .sidebar .site-nav-toggle .icon .bar:nth-child(1) {
    transform: translateY(1px) translateX(-3px) rotate(45deg);
}
body.nav-opened .sidebar .site-nav-toggle .icon .bar:nth-child(2) {
    transform: translateY(-12.5px) translateX(3px) rotate(135deg);
}
.sidebar .site-nav-toggle .label-group {
    position: relative;
    padding-top: 90px;
}
.sidebar .site-nav-toggle .label {
    position: absolute;
    top: 0px;
    left: 50%;
    display: block;
    width: 90px;
    font-family: din-condensed,sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 2px;
    font-size: 26px;
    transform: translate(-50%, 0px) rotate(-90deg);
    white-space: nowrap;
    transition: all 0.8s linear 0s;
    color: #000;
}
.sidebar .site-nav-toggle .label.menu {
    opacity: 1;
    pointer-events: all;
}
.sidebar .site-nav-toggle .label.close {
    opacity: 0;
    pointer-events: none;
}
body.nav-opened .sidebar .site-nav-toggle .label.close {
    opacity: 1;
    pointer-events: all;
    color: #000;
}
body.nav-opened .sidebar .site-nav-toggle .label.menu {
    opacity: 0;
    pointer-events: none;
}
.site-nav {
    position: fixed;
    top: 210px;
    left: 120px;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    justify-content: stretch;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}
body.nav-opened .site-nav {
    opacity: 1;
    pointer-events: all;
}
.site-nav:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    background: rgba(0,0,0,0.75);
    transform: scale(0, 0);
    transform-origin: bottom right;
    transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
    box-shadow: 0px 5px 25px 0px rgb(0 0 0 / 50%);
}
body.nav-opened .site-nav:after {
    transform: scale(1, 1);
}
.site-nav .content {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    color: #FFF;
}
.site-nav .content > ul{
    display: flex;
    flex-wrap: wrap;
}
.site-nav .content > ul > li{
    width: 50%;
}
.site-nav .content > ul > li:nth-of-type(1),
.site-nav .content > ul > li:nth-of-type(2){
    margin-bottom: 40px;
}
.site-nav .content > ul > li a{
    font-size: 80px;
    text-decoration: none;
    line-height: 100%;
    display: block;
}
.site-nav .content > ul > li a span{
    display: block;
    font-size: 14px;
    line-height: 100%;
}
@media screen and (max-width:1000px) {
    .site-nav .content > ul > li{
        text-align: center;
    }
}
@media screen and (max-width:800px) {
    #container {
        padding-top: 111px;
    }
    .sidebar h1 a{
        width: 50vw;
        height: 25vw;
        padding: 2vw 0 0vw;
        left: calc(50% - 25vw);
    }
    body.nav-opened .sidebar h1 a {
        width: 50vw;
        height: 25vw;
        padding: 2vw 0 0vw;
        left: calc(50% - 25vw);
    }
    .sidebar.active h1 a {
        left: 3vw;
        width: 12vw;
        height: 21vw;
    }
    body .sidebar h1:after{
        height: 111px;
    }
    .sidebar{
        width: 60px;
    }
    body.nav-opened .sidebar:after{
        width: 60px;
    }
    .sidebar .site-nav-toggle {
        top: 34vw;
        transform: translateY(0%);
        -webkit- transform: translateY(0%);
    }
    .sidebar .site-nav-toggle .icon .bar {
        left: calc(50% - 12px);
        width: 24px;
        height: 3px;
    }
    .sidebar .site-nav-toggle .icon .bar:nth-child(1) {
        top: calc(50% - 7px);
        left: calc(50% - 9px);
    }
    .sidebar .site-nav-toggle .icon .bar:nth-child(2) {
        top: calc(50% + 2px);
        left: calc(50% - 15px);
    }
    body.nav-opened .sidebar .site-nav-toggle .icon .bar:nth-child(2) {
        transform: translateY(-8px) translateX(3px) rotate(135deg);
    }
    .sidebar .site-nav-toggle .label-group {
        padding-top: 18vw;
    }
    .sidebar .site-nav-toggle .label {
        width: 18vw;
        font-size: 5vw;
    }
    .sidebar .site-nav-toggle .icon {
        height: 15vw;
    }
    .site-nav {
        top: 111px;
        left: 60px;
    }
    .site-nav .content > ul {
        display: block;
    }
    .site-nav .content > ul > li {
        width: 100%;
        margin-bottom: 7vw;
        text-align: left;
    }
    .site-nav .content > ul > li:nth-of-type(1), .site-nav .content > ul > li:nth-of-type(2) {
        margin-bottom: 7vw;
    }
    .site-nav .content > ul > li a {
        font-size: 12vw;
        letter-spacing: 5px;
    }
    .site-nav .content > ul > li a span {
        font-size: 3.5vw;
        letter-spacing: 1px;
    }
}
/************************* NAV END *************/



/************************* COMMON *************/
.contents{
	max-width: calc(100vw - 0px);
    margin-left: auto;
	position: relative;
	z-index: 1;
}
.inr{
	max-width: 1000px;
	margin: 0 auto;
}
.contents > p{
	font-size: 23px;
	font-weight: bold;
	text-align: center;
}
.contents section{
	position: relative;
	letter-spacing: 0.02em;
	font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
}
.contents section .inr{
	max-width: 1000px;
}

@media screen and (max-width:1100px) {
	.contents section{
	}
	.contents section .inr{
		max-width: calc(100% - 100px);
	}
}
@media screen and (max-width:767px) {
	.contents section{
	}
	.contents section .inr {
		max-width: calc(100% - 30px);
	}
}
/************************* COMMON END *************/





/*********************************** footer ***********/
footer{
    background: #000;
    color: #FFF;
    padding-top: 100px;
}
footer .linkarea{
    display: flex;
    justify-content: space-between;
    align-content: center;
}
footer ul.pt1,
footer ul.pt2{
    display: flex;
    justify-content: flex-start;
    margin-left: 100px;
}
footer ul.pt2{
    margin-left: auto;
    margin-right: 100px;
}
footer ul.pt1 li{
    margin-right: 80px;
}
footer ul.pt1 li:last-child{
    margin-right: 0px;
}
footer ul.pt1 li a{
    text-decoration: none;
    font-family: din-condensed,sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    letter-spacing: 2px;
}
footer ul.pt2 li{
    margin-right: 34px;
    display: flex;
    align-items: center;
}
footer ul.pt2 li:last-child{
    margin-right: 0px;
}
footer p.copy{
    text-align: center;
    font-size: 13px;
    margin-top: 100px;
    padding-bottom: 10px;
}
@media screen and (max-width:1200px) {
    footer ul.pt1,
    footer ul.pt2{
        margin-left: 50px;
    }
    footer ul.pt2{
        margin-right: 50px;
    }
    footer ul.pt1 li{
        margin-right: 40px;
    }
}
@media screen and (max-width:800px) {
    footer {
        padding-top: 12vw;
    }
    footer .linkarea {
        display: block;
    }
    footer ul.pt1, footer ul.pt2 {
        margin-left: 0vw;
    }
    footer ul.pt1{
        display: block;
    }
    footer ul.pt1 li {
        margin-right: 0px;
        text-align: center;
        padding: 2vw 0;
    }
    footer ul.pt2 {
        margin-right: 0vw;
        justify-content: center;
        margin-top: 4vw;
    }
    footer ul.pt2 li {
        margin-right: 8vw;
    }
    footer p.copy {
        font-size: 2vw;
        margin-top: 10vw;
        padding-bottom: 10px;
    }
}
/*********************************** footer END ***********/