@charset "utf-8";
/* CSS Document */
.contana {
	width: 80%;
	background: #fff;
	padding-top: 80px;
	margin: 10px auto 70px;
	border-radius: 10px;
}

.leftin {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 1s;
    z-index: -1;
}
.rightin {
	opacity: 0;
    transform: translateX(30px);
    transition: all 1s;
    z-index: -1;
}
.leftin.scrollin,.rightin.scrollin {
    opacity: 1;
    transform: translate(0);
    z-index: -1;
}
.title {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s;
    z-index: -1;
}
.title.scrollin {
    opacity: 1;
    transform: translateY(0);
    z-index: -1;
}
/**********************************************************************************************
ヘッダー部分
**********************************************************************************************/

.bottomHeader {
	margin: 50px auto 0;
	position: relative
}
header h1 {
	font-family: 'Rokkitt', serif;
	font-size: 2.5rem;
	text-align: center;
	width: 100%;
	color: #fff;
	position: absolute;
	top: 30%;
}
canvas {
	width: 100vw;
	height: 100vh;
	background: #0b0b0b;
  }
.ityped-cursor {
    font-size: 2.2rem;
    opacity: 1;
    animation: blink 0.3s infinite;
    animation-direction: alternate;
}
@keyframes blink {
    100% {
        opacity: 0;
    }
}
/**********************************************************************************************
common
**********************************************************************************************/
h2 {
	margin-bottom: 30px;
	font-family: 'Rokkitt', serif;
	font-size: 2rem;
}

section:last-child {
	margin-bottom: 0;
	padding-bottom: 80px;
}
#pagetop {
    z-index: 10;
    position: fixed;
    bottom: 50px;
    right: 30px;
}

/**********************************************************************************************
about me
**********************************************************************************************/
#about {
	padding-bottom: calc(10vw + 10px);  
    position: relative;
    overflow: hidden;
    background-color:#fff;
}
#about::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	border-bottom: 10vw solid #b83d3d;  /* 三角をグレーにする */ 
	border-left: 100vw solid transparent;
  }
.me {
	display: flex;
	margin: 30px;
}
.meimg {
	width: 25%;
}
.me img {
	width: 100%;
}
.mecomment {
	width: 70%;
    margin: 0px auto 30px;
	line-height: 2;
}
/**********************************************************************************************
メニュー
**********************************************************************************************/
#menu {
	padding-bottom: calc(10vw + 10px);  
    position: relative;
    overflow: hidden;
    background-color:#b83d3d;
}
/* #menu::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	border-bottom: 10vw solid #fff;  
	border-left: 100vw solid transparent;
  } */
.white {
	color: #fff;
}
.container {
    text-align: center;
}
.controls ul {
	margin-top: 15px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.controls li {
	width: 13%;
	background: #0b0b0b;
    color: #fff;
	margin-bottom: 15px; 
	padding: 5px;
	border-radius: 5px;
	border-style: outset;
	cursor: pointer;
	text-align: center;
	transition: 0.4s;
	box-shadow: 0px 5px 1px #ddd;
}
.controls li:hover {
	color: #0b0b0b;
	background-color: #fff;
	box-shadow: none;
	transform: translate3d(0, 5px, 0);
}
.container .mix,
.container .gap {
	width: 40%;
}
.container .mix {
	border-radius: 4px;
}
.container .mix:hover {
	box-shadow: 5px 5px 5px #ddd;
	transition: 0.4s;
	border-style: outset;
}
.container .mix:active {
	box-shadow: none;
	position: relative;
	top: 5px;
}
#Container .mix {
	display:none;
	width: 22%;
	margin: 30px 15px;
}

figure {
	display: block;
}
figure a {
	padding: 15px 10px;
}

figure img {
 width: 100%;	
}

figcaption {
	color: #fff;
	font-size: 15px;
	text-align: center;
}
.modal{
    display: none;
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
	left: 0;
	z-index: 20;
}
.bgblack{
    background: rgba(11,11,11,0.9);
	height: 100vh;
    width: 100%;
    position: absolute;
}
.modalContent{
	width: 85%;
    padding: 30px;
	display: flex;
	justify-content: space-between;
    position: absolute;
	left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	box-sizing: border-box;
}
.description {
	width: 80%;
    display: flex;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
}
.description img {
	max-width: 30%;
}
.desEx {
	display: block;
	position: relative;
}
.exTit {
	display: block;
	padding: 0 30px;
    font-size: 1.5em;
    font-weight: 900;
}
.plice {
	margin-left: 20%;
	font-weight: normal;
	font-size: 0.9em;
}
.explanation {
	padding: 30px 30px 20px;
    line-height: 1.6;
}
.worries {
	padding: 10px 0;
}
.reserve {
	width: 100%;
    position: absolute;
    bottom: 0;
    padding: 10px;
    text-align: center;
    border: 1px solid #222;
    border-radius: 5px;
    background: #b83d3d;
    color: #fff;
    box-shadow: 0px 3px 0px #7e7e7e;
    border-style: outset;
    transition: 0.4s;
}
.reserve:hover {
	color: #b83d3d;
	background: #fff;
}
.close {
	padding: 10px;
	border: 1px solid #222;
	border-radius: 5px;
	background: #fff;
	color: #0b0b0b;
	box-shadow: 0px 3px 0px #7e7e7e;
	border-style: outset;
	display: block;
	position: absolute;
	right: 2%;
    top: 2%;
	transition: 0.4s;
}
.close:hover {
	color: #fff;
	background: #0b0b0b;
	border: 1px solid #fff;
	box-shadow: none;
	transform: translate3d(0, 5px, 0);
}

/**********************************************************************************************
タブレット
**********************************************************************************************/

@media (max-width: 1020px) and (min-width: 768px) { 

/**********************************************************************************************
タブレット about
**********************************************************************************************/

	.mecomment {
		width: 70%;
		margin: 0px auto 30px;
		font-size: 15px;
	}

/**********************************************************************************************
タブレット menu
**********************************************************************************************/

	.controls ul {
		margin-top: 5%;
	}
	.controls li {
		width: 30%;
		margin: 0 1% 3%;
		padding: 5px;
	}
	#Container .mix {
		width: 44%;
	}
	.modalContent {
		width: 95%;
		top: 34%;
	}
	.description {
		display: block;
	}
	.description img {
		max-width: 55%;
	}
	.desEx {
		position: static;
	}
	.exTit {
		display: flex;
		padding: 0 5px;
		font-size: 1.3rem;
	}
	.plice {
		margin: 3% 0 0 10%;
		font-size: 1rem;
	}
	.explanation {
		padding: 10px;
		font-size: 15px;
		text-align: left;
	}
	.reserve {
		position: static;
		margin-top: 9%;
	}
	.close {
		padding: 10px;
		font-size: 13px;
		top: 0%;
		right: 4%;
	}
	.close:active {
		top: -19%;
	} 

}
/**********************************************************************************************
スマホ
**********************************************************************************************/
@media screen and (max-width:480px) {
	.pc{
		display: none;
	}
	/* .contana {
		width: 90%;
		background: #fff;
	} */
	.wrapper {
		width: 90%;
		box-sizing: border-box;
	}
/**********************************************************************************************
スマホheader
**********************************************************************************************/
	.upperHeader {
		margin: 0 auto;
		padding: 0 15px;
		width: 100%
	}
	header nav {
		display: none;
	}
	.burger_btn {
		width: 100%;
		z-index: 15;
	}
	.trigger,.trigger span {
		display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
	}
    .trigger {
        width: 100%;
        height: 100%;
    }
	.trigger span {
		position: absolute;
		right: 5%;
		width: 35px;
		height: 2px;
		background-color: #fff;
		border-radius: 4px;
		margin-top: 25px;
	}
    .trigger a:hover {
        opacity: 1;
    }
    .trigger span:nth-of-type(1) {
        top: 0;
    }
    .trigger span:nth-of-type(2) {
        top: 15%;
    }
    .trigger span:nth-of-type(3) {
        top: 30%;
    }
    .trigger.down span:nth-of-type(1) {
        transform: translateY(12px) rotate(-315deg);
    }
    .trigger.down span:nth-of-type(2) {
        opacity: 0;
    }
    .trigger.down span:nth-of-type(3) {
        transform: translateY(-10px) rotate(315deg);
    }

	nav ul.slide-in{
        transform: translate(-45%);
        transition: .5s;
		background: #0b0b0b;
		opacity: 1;
    }
	header nav ul {
		display: block;
		position: fixed;
        left: 45%;
        transform: translateX(120%);
        transition: .5s;
        text-align: center;
        width: 100%;
        margin-top: 70px;
		background: #0b0b0b;
		opacity: 0;
		z-index: 10;
	}
    header nav li {
        flex-grow: 1;
        flex-basis: auto;
        border-bottom: 1px solid #fff;
		margin: 0;
		padding: 1rem 0;
		width: 100%;
		height: 70px;
    }
    header nav li:first-child {
        border-top: 1px solid #fff;
    }
	header nav li a{
	 display: block;
	}
/**********************************************************************************************
スマホcommon
**********************************************************************************************/
	body.fixed {
		position: fixed;
	}

/**********************************************************************************************
スマホヘッダー
**********************************************************************************************/
	.upperHeader img {
		width: 55%;
		padding: 18px 0 0 10px;
	}

/**********************************************************************************************
スマホabout
**********************************************************************************************/
	.me {
		display: block;
		width:100%;
		margin: 0;
	}
	.meimg {
		width: 100%;
		text-align: center;
	}
	.me img {
		width:75%;
	}
	.mecomment {
		width: 100%;
		margin: 30px 0 0;
		box-sizing: border-box;
		font-size: 15px;
	}
	
/**********************************************************************************************
スマホmenu
**********************************************************************************************/
	.controls li {
		width: 30%;
	}
	.container .mix {
		width:100%;
		padding: 15px;
		border-style: outset;
		box-shadow: 5px 5px 5px #ddd;
	}
	#Container .mix {
		width: 100%;
		margin: 30px 0;
	}

	.modalContent {
		width: 100%;
		padding: 7px 0;
		text-align: center;
	}
	.description {
		display: block;
	}
	.description img {
		max-width: 100%;
	}
	.desEx {
		position: static;
	}
	.exTit {
		display: flex;
		padding: 0 5px;
		font-size: 1.3rem;
	}
	.plice {
		margin: 3% 0 0 10%;
		font-size: 1rem;
	}
	.explanation {
		padding: 10px;
		font-size: 15px;
		text-align: left;
	}
	.reserve {
		position: static;
		margin-top: 9%;
	}
	.close {
		padding: 5px;
		font-size: 12px;
		top: 0%;
		right: 5%;
	}
	.close:active {
		top: -19%;
	} 

}
