@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500&display=swap');

/*reset----------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	text-decoration: none;
	list-style-type: none;
	font-style: inherit;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}
body {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	font-weight: normal;
	line-height: 1;
	overflow-x: hidden;
	min-height: 100%;
	-webkit-text-size-adjust: 100%;
	color: #333;
	background: #fff;
 }
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
img {
	border-style: none;
	width: 100%;
	display: block;
	border-radius: 4px;
}
a {
	display: block;
}
a,
button {
	outline: none;
}
button::-moz-focus-inner {
  border: 0;
}
a,
a img {
	transition: 0.3s;
}
.sp {
	display:none;
}
span.group {
	display: inline-block;
}
@media screen and (max-width:750px) and (orientation: portrait){
	html {
		scroll-padding-top: 50px;
	}
	#contents a {
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	}
	.pc {
		display:none;
	}
	.sp {
		display:block;
	}
}

/* header--------------------------------------------------------- */

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 350px;
  height: 100dvh;
	background-color: #ecf5eb;
	z-index: 2000;
}
header .logo {
	width: 80px;
	margin: 50px auto 40px;
}
header .btn_shop {
	display: flex;
	justify-content: space-between;
	width: 270px;
	margin: 0 auto 40px;
}
header .btn_shop a {
	width: 130px;
	height: 40px;
	background-color: #f5fbf5;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #2f542e;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.1em;
}
header .btn_shop a:hover {
	background-color: #fff;
}
header nav {
	background-color: #f5fbf5;
	position: relative;
	z-index: 5;
}
.menu-btn {
  display: none;
}
.menu-icon {
	position: relative;
	width: 100%;
	height: 50px;
	display: block;
	margin: 0 auto;
	cursor: pointer;
	padding: 50px 0;
	transition: 0.3s;
}
.menu-icon:hover {
	background-color: #fff;
}
.menu-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 30px;
  background: #2f542e;
  border-radius: 2px;
  transition: 0.3s;
	transform: translateX(-50%);
	margin-left: 50%;
}
.menu-icon span:nth-child(1) { top: 35px; }
.menu-icon span:nth-child(2) { top: 49px; }
.menu-icon span:nth-child(3) { top: 63px; }
.menu-btn:checked ~ label span:nth-child(1),
.menu-btn:checked ~ label span:nth-child(3) {
  top: 49px;
}
header nav ul {
	width: 100%;
	max-height: 0;
	overflow-y: hidden;
	transition: max-height 0.5s ease;
	position: absolute;
	top: 100px;
	background-color: #f5fbf5;
	height: 70vh;
}
header nav ul a {
	padding: 15px 25%;
	color: #2f542e;
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.1em;
}
header nav ul a:hover {
	background-color: #fff;
}
header nav ul a.active {
	background-color: #fff;
}
header nav .menu-btn:checked ~ ul {
	max-height: 800px;
	padding-bottom: 30px;
}
.sp-icon {
	display: none;
}
header .bottom {
	position: absolute;
	width: 100%;
	bottom: 20px;
}
header .bottom .sns {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
}
header .bottom .sns a {
	width: 60px;
}
footer {
	border-top: solid 1px #ecf5eb;
	padding-top: 50px;
	width: calc(100% - 380px);
	margin-left: auto;
	margin-right: 0;
}
footer small {
	display: block;
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-align: center;
	padding-bottom: 50px;
}
header h2 {
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	color: #2f542e;
	letter-spacing: 0.1em;
	padding: 20px 0 30px;
	background-color: #f5fbf5;
}
header h2 span {
	margin-top: 10px;
	display: block;
	font-size: 11px;
}
.subnav {
	position: relative;
	z-index: 2;
	text-align: center;
	background-color: #f5fbf5;
}
.subnav ul {
	display: inline-block;
	margin-bottom: 30px;
}
.subnav ul li {
	text-align: left;
	display: block;
}
.subnav ul a {
	padding: 12px 0;
	color: #2f542e;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.1em;
}
.subnav ul a:hover {
	opacity: 0.7;
}
@media screen and (max-width:1080px){
	header h2 {
		display: none;
	}
	.subnav {
		display: none;
	}
}
@media screen and (max-width:1080px){
	header {
		overflow-y: scroll;
		width: 100%;
		transform: translateX(100%);
		opacity: 0;
		transition: 0.5s;
	}
	.sp-btn:checked ~ header {
		opacity: 1;
		transform: translateX(0);
	}
	header .menu-icon {
		display: none;
	}
	.sp-btn {
		display: none;
	}
	.sp-icon {
		position: fixed;
		right: 15px;
		width: 50px;
		height: 50px;
		display: block;
		cursor: pointer;
		padding: 40px 0;
		transition: 0.3s;
		z-index: 5000;
	}
	.sp-icon span {
		display: block;
		position: absolute;
		height: 2px;
		width: 30px;
		background: #2f542e;
		border-radius: 2px;
		transition: 0.3s;
		transform: translateX(-50%);
		margin-left: 50%;
	}
	.sp-icon span:nth-child(1) { top: 25px; }
	.sp-icon span:nth-child(2) { top: 39px; }
	.sp-icon span:nth-child(3) { top: 53px; }
	.sp-btn:checked ~ label span:nth-child(1),
	.sp-btn:checked ~ label span:nth-child(3) {
		top: 39px;
	}
	header nav ul {
		max-height: 800px;
		position: static;
		padding-top: 20px;
		padding-bottom: 20px;
		height: auto;
	}
	.sp-btn {
		position: fixed;
		top: 0;
	}
	header .bottom {
		position: static;
		margin-top: 20px;
	}
	footer {
		width: 100%;
		margin-right: auto;
	}
}

/* contents--------------------------------------------------------- */
#contents {
	width: calc(100% - 350px);
	margin-left: auto;
	margin-right: 0;
	padding: 120px 7% 30px;
	background: url(/common/images/sign.png) no-repeat right top 20px;
	background-size: 220px auto;
}
#contents .inr {
	width: 90%;
	margin: 0 auto 150px;
}
#contents h2 {
	color: #2f542e;
	font-size: 36px;
	letter-spacing: 0.1em;
	line-height: 1;
	font-weight: 500;
	margin-bottom: 100px;
}
#contents h2 span {
	display: block;
	font-size: 12px;
	margin-top: 20px;
}
#contents h3 {
	color: #2f542e;
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.5;
	font-weight: 500;
	margin-bottom: 15px;
}
#contents p {
	font-size: 14px;
	line-height: 2;
	font-weight: 500;
}
#contents p a {
	text-decoration: underline;
	color: #2f542e;
	display: inline;
}
#contents p a:hover {
	text-decoration: none;
}
section a.btn-bottom {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2f542e;
  background-color: #ecf5eb;
  border-radius: 4px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 500;
}
section a.btn-bottom:hover {
  background-color: #f5fbf5;
}
@media screen and (max-width:1080px){
	#contents {
		width: 100%;
		background: none;
	}
	#contents .inr {
		width: 100%;
		margin: 0 auto 100px;
	}
}
@media screen and (max-width:740px){
	#contents {
		padding-top: 100px;
	}
	#contents h2 {
		font-size: 28px;
		margin-bottom: 60px;
	}
	#contents h2 span {
		margin-top: 15px;
	}
	#contents h3 {
		font-size: 15px;
		margin-bottom: 10px;
	}
	#contents p {
		font-size: 13px;
		line-height: 1.8;
	}
}
.column3 {
	display: flex;
	flex-wrap: wrap;
	gap: 70px 10%;
	margin-bottom: 70px;
}
.column3 .box {
	width: calc(80% / 3);
	display: flex;
  flex-direction: column;
  align-items: center;
	text-align: center;
}
.column3 .box h3 {
	flex-grow: 1;
}
.column3 .box a {
	margin-bottom: 25px;
}
.column3 .box.cup {
	margin-top: -20px;
}
.column3 .box.cup a {
	margin-bottom: -15px;
}
.column3 .box a:hover {
	opacity: 0.7;
}
.column3 .box .text {
	position: relative;
	z-index: 2;
}
.column2 {
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
	margin-bottom: 70px;
}
.column2 .box {
	width: calc(100% / 2 - 40px);
	display: flex;
  flex-direction: column;
}
.column2 ~ a.btn-bottom {
	margin-top: -10px;
}
.column2 .box .list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.column2 .box .list li a {
	display: inline-block;
	line-height: 1.5;
	font-size: 14px;
	color: #2f542e;
	font-weight: 500;
	letter-spacing: 0.1em;
	position: relative;
	padding-left: 1.5em;
}
.column2 .box .list li a:before {
	position: absolute;
	left: 0;
	content: "◎";
	color: #333;
}
.column2 .box .list li a:hover {
	opacity: 0.7;
}
.column2 .box .list li a:before:hover {
	opacity: 1;
}
.column2 .box.text-half {
	margin-top: -10px;
}
.column2 .box.text-full {
	width: 100%;
	margin-top: -10px;
}
.column2 .box .irodama {
	display: flex;
	flex-wrap: wrap;
	font-size: 40px;
	gap: 20px;
}
.column2 .box .irodama li {
	text-align: center;
}
@media screen and (max-width:1080px){
	.column2 .box .irodama {
		font-size: 40px;
	}
}
@media screen and (max-width:740px){
	.column3 {	
		display: flex;
		flex-direction: column;
		gap: 50px 10%;
		margin-bottom: 40px;
	}
	.column3 .box {
		width: 100%;
		flex-direction: row;
		align-items: center;
		justify-content: start;
		gap: 20px;
		text-align: left;
	}
	.column3 .box a {
		margin-bottom: 0;
		flex: 1.5;
		max-width: 170px;
	}
	.column3 .box .text {
		flex: 2;
	}
	.column3 .box.cup {
		margin-bottom: -15px;
	}
	.column2 {
		flex-direction: column;
		gap: 20px;
		margin-bottom: 70px;
	}
	.column2 .box {
		width: 100%;
	}
	.column2 .box .list li a {
		text-decoration: underline;
	}
	.column2 ~ a.btn-bottom {
		margin-top: -35px;
	}
	.column2 .box.text-half {
		margin-top: 10px;
	}
	.column2 .box.text-full {
		margin-top: 10px;
	}
	.column2 .box .irodama {
		font-size: 8vw;
		gap: 10px;
	}
	.column2 .box img {
		width: 76%;
		margin: auto;
	}
}