﻿@charset "utf-8";
/*************** loading ***********/
html, body{
  overflow: hidden;
}
html.active, body.active{
  overflow:auto;
}
.loading{
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .1s 1.0s cubic-bezier(.72,.01,0,1);
}
.loading:before{
    content: "";
    position: absolute;
    top: 210px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 210px);
    background: #FFF;
    transition: all 1.1s cubic-bezier(.72,.01,0,1);
}
.loading:after{
    content: "";
    position: absolute;
    top: 0;
    left: 120px;
    width: calc(100vw - 120px);
    height: 100vh;
    background: #FFF;
    transition: all 1.1s cubic-bezier(.72,.01,0,1);
}
body.active .loading{
    z-index: -10;
    opacity: 0;
}
body.active .loading:before{
    height: 0px;
}
body.active .loading:after{
    width: 0px;
}

.loading .logo{
    display: block;
    width: 200px;
    height: 208px;
    transition: all 1s cubic-bezier(.27,.26,.44,.99);
    position: absolute;
    top: calc(50% - 100px);
    left: calc(50% - 104px);
    background: url(../img/common/cat.svg) no-repeat center center;
    background-size: contain;
    text-indent: -999px;
    z-index: 101;
    opacity: 0;
}
.loading .logo.active{
    opacity: 1;
}
body.active .loading .logo {
    opacity: 0;
}
@media screen and (max-width:800px) {
    .loading{
        height: 100vh;
        height: -webkit-fill-available;
    }
    .loading .logo{
        width: 100px;
        height: 104px;
        top: calc(50% - 50px);
        left: calc(50% - 52px);
    }
    .loading:before{
        top: 111px;
        height: calc(100vh - 111px);
    }
    .loading:after{
        left: 60px;
        width: calc(100vw - 60px);
        height: 100vh;
        height: -webkit-fill-available;
    }
}
/*************** loading END ***********/


#container:after{
    content: "";
    position: fixed;
    top: -12vw;
    right: -12vw;
    width: 70vw;
    height: 70vw;
    background: url("../img/common/vinyl4.svg") no-repeat center center;
    background-size: 100%;
    z-index: -2;
    animation: rotate-anime 25s linear infinite;
    opacity: 0;
}
#container:before{
    content: "";
    position: fixed;
    top: 46vw;
    right: -12vw;
    width: 52vw;
    height: 15vw;
    background: url("../img/common/arm.svg") no-repeat center center;
    background-size: contain;
    z-index: -1;
    opacity: 0;
}
#container.gobg:after,
#container.gobg:before{
    opacity: 1;
}
@media screen and (max-width:800px) {
    #container{
        background: none;
    }
    #container:after{
        width: 85vw;
        height: 85vw;
        top: -10vw;
        right: -10vw;
    }
    #container:before{
        top: 62vw;
        right: -5vw;
        width: 52vw;
        height: 15vw;
    }
}

/************************* MAIN *************/
main {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100vw;
	position: relative;
}
main > .pic{
    width: calc(100vw - 120px);
    margin-left: auto;
}

@media screen and (max-width:1300px) {
	main > .inr{
		max-width: 100%;
		padding-left: calc(25/1300 * 100vw);
	}
}
@media screen and (max-width:767px){
	main > .inr{
		max-width: calc(100% - 20px);
		padding-left:0;
		padding-bottom: 5vw;
	}
}
@media screen and (max-width:800px) {
    main > .pic{
        width: calc(100vw - 60px);
        margin-left: auto;
    }
}
/************************* MAIN END *************/



/*********************************** sec01 ***********/
.contents section.sec01{
    padding-top: 250px;
    text-align: center;
}
.contents section.sec01 h2{
    margin-bottom: 65px;
}
.contents section.sec01 h2 img{
    margin: 0 auto;
}
.contents section.sec01 h3{
    font-weight: bold;
    font-size: 30px;
    line-height: 150%;
    letter-spacing: 4px;
}
.contents section.sec01 h4{
    font-weight: bold;
    font-size: 25px;
    line-height: 150%;
    letter-spacing: 3.3px;
    text-align: left;
    padding-left: 200px;
}
.contents section.sec01 h5{
    font-size: 15px;
    line-height: 180%;
    letter-spacing: 3.3px;
    margin: 70px 0 80px;
    text-align: left;
    padding-left: 300px;
}
.contents section.sec01 .link{
    display: flex;
    justify-content: center;
    margin-bottom: 300px;
}
.contents section.sec01 .link li{
    width: 200px;
    height: 80px;
}
.contents section.sec01 .link li{
    margin-right: 20px;
}
.contents section.sec01 .link li:last-child{
    margin-right: 0px;
}
.contents section.sec01 .link li a{
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border: 2px solid #000;
    text-decoration: none;
    font-size: 30px;
    line-height: calc(100% - 4px);
    transition: all 0.3s 0s ease-in-out;
    background: #FFF;
}
.contents section.sec01 .link li a:hover{
    background: #000;
    color: #FFF;
}
.contents section.sec01 .picarea{
    display: flex;
    justify-content: center;
    margin: 250px 0;
}
.contents section.sec01 .picarea > div{
    width: 600px;
}
.contents section.sec01 .picarea > div.pic01{
    margin-right: 40px;
}
.contents section.sec01 .picarea > div.pic02{
    margin-top: 30px;
}
@media screen and (max-width:1180px) {
    .contents section.sec01 {
        padding-top: calc(250/1180 * 100vw);
    }
    .contents section.sec01 h2 {
        width: calc(100vw - 200px);
        margin: 0 auto calc(65/1180 * 100vw);
    }
    .contents section.sec01 h3 {
        font-size: calc(30/1180 * 100vw);
    }
    .contents section.sec01 .picarea {
        margin: calc(250/1180 * 100vw) 0;
    }
    .contents section.sec01 h4{
        font-size: calc(25/1180 * 100vw);
        padding-left: 150px;
    }
    .contents section.sec01 h5{
        font-size: 15px;
        margin: calc(70/1180 * 100vw) 0 calc(80/1180 * 100vw);
        text-align: left;
        padding-left: 200px;
    }
    .contents section.sec01 .link{
        margin-bottom: calc(300/1180 * 100vw);
    }
}
@media screen and (max-width:900px) {
    .contents section.sec01 h4{
        padding-left: 120px;
    }
    .contents section.sec01 h5{
        font-size: 14px;
        padding-left: 160px;
    }
}
@media screen and (max-width:800px) {
    .contents section.sec01{
        padding-top: 50vw;
    }
    .contents section.sec01 h2 {
        width: calc(100vw - 50px);
        margin: 0 auto 10vw;
    }
    .contents section.sec01 h3 {
        font-size: 5.2vw;
        letter-spacing: 2px;
    }
    .contents section.sec01 .picarea {
        display: block;
        margin: 30vw 0;
    }
    .contents section.sec01 .picarea > div{
        width: 88vw;
    }
    .contents section.sec01 .picarea > div.pic01{
        margin-right: 0px;
        margin-left: auto;
    }
    .contents section.sec01 .picarea > div.pic02{
        margin-top: 0px;
    }
    .contents section.sec01 h4 {
        font-size: 4.5vw;
        line-height: 150%;
        letter-spacing: 1px;
        text-align: left;
        padding-left: 63px;
    }
    .contents section.sec01 h5 {
        font-size: 3.6vw;
        line-height: 170%;
        letter-spacing: 1px;
        margin: 14vw 0 14vw;
        text-align: left;
        padding:0 40px 0 40px;
    }
    .contents section.sec01 .link{
        margin-bottom: 30vw
    }
    .contents section.sec01 .link li{
        width: 26vw;
        height: 50px;
    }
    .contents section.sec01 .link li{
        margin-right: 2vw;
    }
    .contents section.sec01 .link li a{
        font-size: 5vw;
        box-sizing: border-box;
    }
}
/*********************************** sec01 END ***********/



.caution{
	position: absolute;
	top: 0;
	left: 0;
	background: #FFF;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	box-sizing: border-box;
	z-index: -10;
	transition: all .6s;
}
body.active .caution{
	z-index: 99;
	border: 10px solid #000;
}
.caution span{
	background: #000;
	position: absolute;
	top: 0;
	right: 0;
	width: 80px;
	height: 80px;
	cursor: pointer;
}
.caution span::before{
	content: "";
	width: 50px;
	height: 1px;
	background: #FFF;
	position: absolute;
	top: 50%;
	left: calc(50% - 25px);
	transform: rotate(45deg);
}
.caution span::after{
	content: "";
	width: 1px;
	height: 50px;
	background: #FFF;
	position: absolute;
	top: calc(50% - 25px);
	left: 50%;
	transform: rotate(45deg);
}
.caution.none{
	display: none;
}
.caution p{
	text-align: center;
}
.caution a{
	color: #000;
}
@media screen and (max-width:800px) {
	.caution span{
		width: 60px;
		height: 60px;
	}
	.caution span::before{
		width: 40px;
		left: calc(50% - 20px);
	}
	.caution span::after{
		height: 40px;
		top: calc(50% - 20px);
	}
	.caution p{
		text-align: left;
		width: 80vw;
		font-size: 3.2vw;
		line-height: 180%;
	}
}