﻿@charset "utf-8";


/* ----------------------------------------
	common
---------------------------------------- */
body {
	line-height:1.5;
	background: #000;
	color:#fff;
	font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	font-size: 18px;
}
img {
	width:100%;
	max-width: 100%;
	height: auto;
	display: block; //ブロック要素化
	margin: 0 auto; //中央寄せ
}

a {text-decoration:none;}

a:hover {
	text-decoration: transparent;
	opacity: 0.7;
}

.pc_area { display: block !important; }
.sp_area { display: none !important; }
@media only screen and (max-width: 800px) {
	.pc_area { display: none !important; }
	.sp_area { display: block !important; }
}
html{
	margin: 0;
	padding: 0;
}
body{
background: #000;
	margin: 0;
	padding: 0;
}
.logo{
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	bottom:51%;
	width:13vw;
}
.logo img{
	width:13vw;
}
.animation {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	position: relative;
	border: 1px solid #000;
	background: url(../img/line.svg);
	background-size: 100% auto;
	background-position: center;
	background-repeat: no-repeat;
	box-sizing: border-box;
}

.animation img {
	position: absolute;
	bottom:0;
	right: 100%;
	width:4vw;
	white-space: nowrap;
	animation: slideToLeft 8s linear infinite;
	transform: translate(0%, 50%);
}
.menu{
	width: 30vh;
	height: 30vh;
	position: absolute;
	bottom: 10vh;
	cursor: pointer;
	border-radius: 100%;
	background: #222;
	color:#fff;
	left: 50%;
	transform: translate(-50%, 0);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 3vh;
	text-align: center;
	transition: all 1s;
}
.menu.close{
	opacity: 0;
	pointer-events: none;
}
.menu-sec{
	pointer-events: none;
	opacity: 0;
	transition-duration: 2s;
transition-delay: 0.3s;
}
.menu-sec.active{
	pointer-events: auto;
	opacity: 1;
}
.menubox{
	width: 800px;
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	top:5vh;
	flex-wrap: wrap;
	display: flex;
	justify-content: space-between;
}
.menubox02{
	width: 800px;
	left: 50%;
	transform: translate(-50%, 0);
	position: absolute;
	bottom:5vh;
	flex-wrap: wrap;
	display: flex;
	justify-content: space-between;
}
.menubox-item{
		width: 25%;
		box-sizing: border-box;
		color:#fff;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 20px;
		text-align: center;
}
.menubox-item span{
		width: 180px;
		height: 180px;
		display: flex;
		justify-content: center;
		align-items: center;
		margin:  0 auto;
		color:#000;
		background: #fff;
		border-radius: 100%;
		transition: all .5s;
		cursor: pointer;
	}
@keyframes slideToLeft {
	0% {
		bottom:calc(50%);
		right: 100%;
	}
	17% {
		bottom:calc(50%);
		right: 79.7%;
	}
	17.5% {
		bottom:calc(50% + 1.5vw);
		right: 79.45%;
	}
	18.4% {
		bottom:calc(50% - 2.4vw);
		right: 77.6%;
	}
	19.5% {
		bottom:calc(50% + 6.6vw);
		right: 76.7%;
	}
	20.3% {
		bottom:calc(50% - 0.1vw);
		right: 75.4%;
	}
	21.3% {
		bottom:calc(50% + 3.5vw);
		right: 74.45%;
	}
	21.9% {
		bottom:calc(50%);
		right: 74%;
	}
	62.9% {
		bottom:calc(50%);
		right: 28%;
	}
	63.4% {
		bottom:calc(50% + 1.5vw);
		right: 27.75%;
	}
	64.3% {
		bottom:calc(50% - 2.4vw);
		right: 25.9%;
	}
	65.4% {
		bottom:calc(50% + 6.6vw);
		right: 25%;
	}
	66.2% {
		bottom:calc(50% - 0.1vw);
		right: 23.7%;
	}
	67.2% {
		bottom:calc(50% + 3.5vw);
		right: 22.75%;
	}
	67.8% {
		bottom:calc(50%);
		right: 22.3%;
	}
	90%{
		bottom:calc(50%);
		right: -2%;
	}
	100% {
		bottom:calc(50%);
		right: -20%;
	}
}
@media only screen and (max-width: 800px) {
	.menubox{
		max-width: 600px;
		width:100%;
		top: 2vh;
	}
	.menubox02{
		max-width: 600px;
		width:100%;
		bottom: 2vh;
	}
	.menubox-item span{
			width: 100px;
			height: 100px;
			font-size: 12px;
			display: flex;
			justify-content: center;
			align-items: center;
			margin: 10px 10px 10px auto;
			color:#000;
			background: #fff;
			border-radius: 100%;
			transition: all .5s;
		}
		.menubox-item:nth-child(2n + 2) a{
		margin: 10px auto 10px 10px ;
		}

}
.sec-contact,
.sec-about,
.sec-hiyou,
.sec-hosyu,
.sec-privacy,
.sec-tiiki,
.sec-faq{
	top: 0;
	position: fixed;
	right: 0;
	width: 100%;
	height: 100vh;
	opacity: 0;
	pointer-events: none;
}
.sec-contact.open,
.sec-about.open,
.sec-hiyou.open,
.sec-hosyu.open,
.sec-privacy.open,
.sec-tiiki.open,
.sec-faq.open{
	opacity: 1;
	pointer-events: auto;
}
.sec-contact-close,
.sec-about-close,
.sec-hiyou-close,
.sec-hosyu-close,
.sec-privacy-close,
.sec-tiiki-close,
.sec-faq-close{
	width: 100%;
  display: block;
  height: 100vh;
  position: absolute;
  z-index: -1;
}
.mw_wp_form{
	overflow: auto;
	max-height: 80vh;
	max-width: 1000px;
	width: calc(100% - 20px);
	margin: 10vh auto;
	background: #fff;
	padding: 30px;
	color:#000;
  box-sizing: border-box;
}
.item{
	font-size: 18px;
	display: flex;
	align-items: center;
	margin: 15px 5px 0;
}
.item .hissu{
	font-size: 14px;
	margin: 0 5px;
	background: #ff0000;
	color:#fff;
	padding: 5px;
	border-radius: 3px;
}
.sec-contact input[type="text"],
.sec-contact input[type="email"],
.sec-contact textarea{
	width: 100%;
	box-sizing: border-box;
	padding: 5px;
	margin: 5px 0 10px 0;
}
.mwform-tel-field input[type="text"]{
	width: 80px;
}
.mwform-checkbox-field-text,
.mwform-radio-field-text{
	font-size: 14px;
}


.sec-news{
	top: 0;
	position: fixed;
	right: 0;
	width: 100%;
	height: 100vh;
	opacity: 0;
	pointer-events: none;
}
.sec-news.open{
	opacity: 1;
	pointer-events: auto;
}
.sec-news-close{
	width: 100%;
    display: block;
    height: 100vh;
    position: absolute;
    z-index: -1;
}
.news__title{
	padding: 15px 5px;
	font-weight: bold;
	color:#000;
	box-sizing: border-box;
	display: block;
	width: 100%;
	box-sizing: border-box;
	border-bottom: solid 1px #000;
}
.news__title a{
	color:#000;
}
.news__title:hover{
	opacity: 0.8;
}
.news__title:first-child{
	border-top: solid 1px #000;
}
.sec-news-box,
.sec-hiyou-box,
.sec-hosyu-box,
.sec-privacy-box,
.sec-tiiki-box,
.sec-faq-box{
	overflow: auto;
	max-height: 80vh;
	height: 100%;
	max-width: 1000px;
	width: calc(100% - 20px);
	margin: 10vh auto;
	background: #fff;
	padding: 30px;
	color:#000;
  box-sizing: border-box;
}

@media only screen and (max-width: 600px) {
	.menubox{
		max-width: 600px;
		width:100%;
		top: 2vh;
	}
	.menubox02{
		max-width: 600px;
		width:100%;
		bottom: 2vh;
	}
	.menubox-item{
		width: 50%;
	}
	.menubox-item span{
			width: 18vh;
			height: 18vh;
			font-size: 12px;
			display: flex;
			justify-content: center;
			align-items: center;
			margin: 10px 10px 10px auto;
			color:#000;
			background: #fff;
			border-radius: 100%;
			transition: all .5s;
		}
		.menubox-item:nth-child(2n + 2) span{
		margin: 10px auto 10px 10px ;
		}

}
