@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Imbue:opsz,wght@10..100,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Imbue:opsz,wght@10..100,100..900&family=Shippori+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Gothic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1+Code:wght@100..700&family=Noto+Serif+JP:wght@200..900&display=swap');

/* ALL Setting */
body {
	margin: 0;
	padding: 0;
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 1rem;
	color: #1a1a1b;
	background-color: #e4e4e4;
	box-sizing: border-box;
	user-select: none;
	-webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
}
#footer {
	margin-top: 15vh;
	padding: 0;
	z-index: 10;
}
h1, h2, h3, h4, h5 {
	font-family: 'Imbue', 'Noto Serif JP', serif;
}
h2 {
	font-size: 6em;
	margin: 40px 0 0 0;
}
.jp h2 { font-size: 2.5em;}
h3 {
	font-size: 3.0rem;
	margin-top: 30px;
}
.jp h3 { font-size: 1.8em;}
h4 {
	font-size: 1.2rem;
	margin: 20px 0 0 0;
}
p {
	font-size: 0.9rem;
	font-weight: 500;
	margin: 10px 0;
	letter-spacing: 1.2;
	line-height: 1.5;
}
.jp p {font-size: 1.0rem;}
ul {list-style: none;}
li {
	margin: 8px 0;
}
a {
	text-decoration: none;
	color: #ffffff;
	cursor: pointer;
}
a:visited {color: #a2d6ce;}
.button {
	position: relative;
	display: block;
	width: 100%;
	margin: 20px 0 0 0;
	overflow: hidden;
}
.button p {margin-bottom: 10px;}
.button a {
	font-family: 'League Gothic', 'Noto Sans JP', sans-serif;
	font-size: 1.8em;
	letter-spacing: 1.2;
	position: relative;
	overflow: hidden;
	display: inline-block;
	width: 100%;
	max-width: 350px;
	padding: 5px 10px;
	text-align: center;
	text-decoration: none;
	border: 1px solid #49a497;
    outline: none;
    transition: ease .2s;
}
.button a span {
	position: relative;
	color: #49a497;
	z-index: 3;
}
.button a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background-color:#a2d6ce;
	width: 100%;
	height: 100%;
	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transform: scale(0, 1);
	transform-origin: right top;
}
.button a:hover::before {
	transform-origin:left top;
	transform:scale(1, 1);
}
img {
	border: none;
	pointer-events: none;
}
/* ALL Setting */

/* Setting:menulist*/
#menu {
	position: relative;
	z-index: 20;
}
#menu .menulist h2 {
	font-size: 3em;
	text-align: center;
}
#menu .menulist ul { margin-left: -5vh;}
#menu .menulist .snslist { justify-content: center;}
.menubtn {
	position: relative;
	display: block;
	width: 220px;
	margin: 15px auto;
    padding: 5px 30px;
	color: #49a497;
	border:1px solid #49a497;
	font-family: 'Imbue', 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 1.8em;
    text-decoration: none;
    outline: none;
	overflow: hidden;
}
.menubtn:visited {color: #49a497;}
.menubtn:hover {
	color:#ffffff;
	border-color: transparent;
	transition: 0.3s;
	transition-delay: .6s;
}
.menubtn span {
    display: block;
    z-index: 2;
}
.btngmk1 span::before, .btngmk1 span::after {
    content: '';
    position: absolute;
    width:0;
    height:1px;
	color: #ffffff;
    background-color: #49a497;
	transition: .3s;
}
.btngmk1 span::before {
    left:0;
    top:0;
	color: #ffffff;
}
.btngmk1 span::after {
    left:0;
    bottom:0;
	color: #ffffff;
}
.btngmk1:hover span::before, .btngmk1:hover span::after { 
	width: 100%;
	color: #ffffff;
}
.btngmk1::before {
	content: '';
	position: absolute;
	left: 0;
    bottom:0;
	z-index: -1;
	height: 100%;
	width: 0;
	color: #ffffff;
	background-color: #49a497;
	transition: all .3s;
}
.btngmk1:hover::before {
	width: 100%;
	transition-delay: .4s;
}
.menulist {
	position: fixed;
	top: 0;
	left: -100%;
	width: 30%;
	height: 100vh;
	padding: 10vh 0;
	color: #ffffff;
	background-color: rgba(0, 0, 0, 0.95);
	transition: 0.5s;
	z-index: 15;
}
.menulist.open { left: 0;}
.openbtn { /* ボタン外側 */
	position: fixed;
	top: 50;
	left: 50;
	width: 50px;
	height: 50px;
	cursor: pointer;
	border-radius: 50%;
	background-color: #1a1a1b;
	z-index: 30;
}
.openbtn span { /* ボタン内側 */
	position: absolute;
	display: inline-block;
	width: 45%;
	right: 14px;
	height: 3px;
	background-color: #ffffff;
	transition: all .4s;
}
.openbtn span:nth-of-type(1) {top:15px;}
.openbtn span:nth-of-type(2) {top:23px;}
.openbtn span:nth-of-type(3) {top:31px;}

/* activeクラスが付与されるとlineからx変形 */
.openbtn.active span:nth-of-type(1) {
	width: 30%;
	top: 18px;
	right: 18px;
	transform: translateY(6px) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {opacity:0;}
.openbtn.active span:nth-of-type(3) {
	width: 30%;
	top: 30px;
	right: 18px;
	transform: translateY(-6px) rotate(45deg);
}
/* Setting:menulist*/

/* Setting:ALL */
.column {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: flex-start;
	gap: 30px 20px;
}
.col2 {
	flex: 0 1 calc(50% - 8px);
}
.col3 {
	flex: 0 1 calc(33.3333% - 8px);
}
.col2 div, .col3 div {
	display: flex;
	width: 100%;
	flex-direction: column;
}
.reverse {
	flex-direction: row-reverse;
}
/* Setting:ALL */

/* Setting:grid_container */
#grid_container {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 50px;
	height: 100vh;
}
.grid1, .grid2 {
	width: 100%;
	text-align: center;
	overflow: visible;
	overflow-y: hidden;
	box-sizing: border-box;
}
/* Setting:grid_container */

/* Setting:grid > works */
.works {
	cursor: pointer;
	width: 100%;
	max-width: 500px;
	overflow: hidden;
	position: relative;
}
.works h2 {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	width: 80%;
	margin: auto;
	justify-content: center;
	align-items: center;
	color: #ffffff;
	pointer-events: none;
	z-index: 5;
}
.works-bg_roku {
	width: 100%;
	height: 100vh;
	background-image: url(../images/img-rock.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: transform .6s ease;
}
.works-bg_chiku {
	width: 100%;
	height: 100vh;
	background-image: url(../images/img-chikurin.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: transform .6s ease;
}
.works-bg_roku:before, .works-bg_chiku:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: auto;
	background-color: rgba(0, 0, 0, .8);
	opacity: 0.6;
	z-index: 1;
}
.works a:hover .works-bg_roku, .works a:hover .works-bg_chiku {
	transform: scale(1.2);
}

/* Setting:grid > works */

/* Setting: section */
#main_container {
	display: block;
	margin-top: 20vh;
	width: 100%;
	padding: 0 6vh;
	overflow: auto;
	scrollbar-width: none;
	z-index: 10;
}
#news { margin: 5vh 0 0 0;}
#about { margin: 5vh 0 0 0;}
#items { margin: 10vh 0 0 0;}
#contact { margin: 10vh 0 0 0;}
/* Setting: section */

/* Setting:newslist */
.newslist {
	font-family: 'League Gothic', 'Noto Sans JP', sans-serif;
	cursor: pointer;
}
.newslist ul li {
	display: flex;
	margin-left: -4.5vh;
	margin-bottom: 10px;
	flex-flow: row wrap;
	justify-content: flex-start;
	align-items: center;
}
.newslist ul li a:hover {
	opacity: 0.7;
	transform: 1.2s;
}
.newslist ul li div {
	display: inline-block;
	vertical-align: bottom;
}
.newslist ul li .day {
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 2px;
}
.newslist ul li .information {
	width: 160px;
	margin: 5px 15px 2px;
	padding: 0 5px;
	text-align: center;
	font-size: 1.4rem;
	letter-spacing: 1.5;
	color: #ffffff;
	background-color: #49a497;
	border-radius: 30px;
}
.newslist ul li .note {
	font-size: 1rem;
	font-weight: 600;
	vertical-align: super;
}

/* Setting:footer */
#footer h3 { font-size: 1.8rem;}
#footer p { font-size: 0.9rem;}
.snslist {
	display: flex;
	gap: 10px;
	margin-left: -4.0vh;
	flex-flow: row wrap;
	align-items: center;
}
/* Setting:footer */

#items ul, #contact ul { list-style: disc;}
#contact ol li::marker {
	font-weight: 600;
	padding-right: 30px;
}

/* --- SP --- */
@media screen and (max-width:1024px) {
	.grid1, .grid2 {
		width: 100%;
		height: 40vh;
		text-align: center;
		overflow: visible;
		overflow-y: hidden;
		box-sizing: border-box;
	}
	.grid1 { grid-area: g1;}
	.grid2 { grid-area: g2;}
	.works-bg_roku, .works-bg_chiku { height: 50vh;}
	.works h2 {
		top: -10vh;
		font-size: 3em;
	}
	#main_container {
		width: 75%;
		max-height: inherit;
		margin: 40px 0 0 40px;
		padding: 0;
		grid-area: main;
	}
	#grid_container {
		grid-template-columns: 1fr 1fr;
		grid-template-areas:
		"g1 g2"
		"main main";
		gap: 0;
	}
	.column, .col2 .col3 {
		display: block;
		width: 100%;
		margin: 0 auto;
		gap: 15px;
	}
	.openbtn {
		top: inherit;
		left: inherit;
		right: 4vh;
		bottom: 5vh;
	}
	.menulist {
		display: flex;
		width:100%;
		padding: 20px 0;
		flex-flow: column;
		align-items: center;
	}
	h2 {
		font-size: 4em;
		margin-top: 20px;
	}
	.jp h2 { font-size: 2em;}
	h3 {
		font-size: 2.5em;
		margin-top: 20px;
	}
	.jp h3 { font-size: 1.5em;}
	h4 {
		font-size: 1.1rem;
		margin-top: 20px;
	}
	.newslist ul li .note {
		font-size: 1.4rem;
		margin-top: 15px;
	}
}