@charset "UTF-8";

:root {
	--basic: #444444;
	--title: #666666;
	--border: #707070;
	--bg: #ECF2E9;
	--green: #8FC321;
	--en: "Jost", sans-serif;
}
body {
	font-family: "Noto Serif JP", serif;
	color: var(--basic);
}
a,
a:hover {
	color: var(--basic);
	text-decoration: none;
	transition: 0.3s;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	line-height: 1.6;
	font-weight: 600;
}
strong, .strong {
	font-weight: 600;
}
dl, dt, dd {
	font-weight: 400;
	margin: 0;
}
.relative {
	position: relative;
}
.en {
	font-family: "Jost", sans-serif;
	font-weight: 400;
	letter-spacing: 0.02em;
}
.container {
	max-width: 1100px;
	padding-left: 50px;
	padding-right: 50px;
}
@media (min-width: 768px) {
	.row-wide {
		margin: 0 -30px;
	}
	.row-wide > * {
		padding: 0 30px;
	}
}
@media (max-width: 767px) {
	.container {
		max-width: 575px;
		padding-left: 20px;
		padding-right: 20px;
	}
	.container-fluid {
		padding-left: 20px;
		padding-right: 20px;
	}
}

/* ------------------------------ */
/* p, ul, ol, img 他 */
/* ------------------------------ */

.green {
	color: var(--green);
}
p.indent {
	text-indent: -1em;
	padding-left: 1em;
}
ul.none,
ul.indent {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
ul.indent li {
	text-indent: -1em;
	padding-left: 1em;
}
.img-layer {
	position: relative;
	display: block;
}
.img-layer::after {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	width: 100%;
	height: 100%;
	background-color: #2F1E0B;
	opacity: 0.1;
}
.img-layer img {
	width: 100%;
}
.img-cover {
	overflow: hidden;
}
.img-cover img {
	object-fit: cover;
	object-position: 50% 50%;
	width: 100%;
	height: 100%;
}
.img-shadow {
	box-shadow: 0 0 50px rgba(0,0,0,0.1);
}

/* ------------------------------ */
/* a, .btn */
/* ------------------------------ */

a.blank::after {
	display: inline-block;
	font-family: "Material Symbols Sharp";
	content: "\e89e";
	font-size: 120%;
	font-weight: 200;
	line-height: 1;
	vertical-align: middle;
	margin: 0 0 0.15em 0.2em;
}
.btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
	max-width: 240px;
	height: 55px;
	border: none;
	border-radius: 55px;
	background-color: #ffffff;
	border: 1px solid #707070;
	font-size: 15px;
	line-height: 1.4;
	padding: 10px 20px;
}
.btn span {
	position: relative;
	display: inline-block;
	padding-right: 1em;
}
.btn span::after {
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
	font-family: "Material Symbols Sharp";
	content: "\e941";
	font-size: 150%;
	font-weight: 100;
	transition: 0.3s;
}
.btn-blank span::after {
	content: "\e89e";
	font-size: 140%;
}
.btn-shop {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 240px;
	height: 55px;
	border: none;
	border-radius: 40px;
	background-color: #ffffff;
	border: 1px solid #707070;
	font-size: 12px;
	line-height: 1;
	padding: 10px 20px;
}
.btn-shop::before {
	font-family: "Material Symbols Sharp";
	content: "\f1cc";
	font-size: 160%;
	font-weight: 200;
	margin: 0 0.1em 0.1em -0.2em;
}
.btn-wrap {
	margin-top: 2.5em;
}
@media (min-width: 768px) {
	.btn:hover span::after {
		right: -15px;
	}
}
@media (max-width: 767px) {
	.btn-wrap {
		margin-top: 2em;
	}
	.btn-wrap .btn {
		margin: 0 auto;
	}
}

/*----------------------------------------*/
/* .header */
/*----------------------------------------*/

.header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 100;
	transition: 0.3s;
}
.header::after {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	z-index: -1;
	transition: 0.3s;
}
.header .container {
	width: 100%;
	max-width: 100%;
	padding: 0 40px;
}
.header .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 140px;
	transition: 0.3s;
}

/* .site-logo */
.header .site-logo {
	font-size: 100%;
	font-weight: 700;
	line-height: 1;
	margin: 0;
}
.header .site-logo img {
	transition: width 0.3s;
}

/* .header.narrow */
.header.narrow::after {
	background-color: rgba(255,255,255,0.5);
	backdrop-filter: blur(15px);
}
.header.narrow .inner {
	height: 80px;
}
.header.narrow .site-logo img {
	width: 50px;
}

/* .pc-nav */
.header .pc-nav > ul {
	display: flex;
	align-items: center;
}
.header .pc-nav > ul > li {
	font-size: 14px;
	margin-left: 30px;
}
.header .pc-nav > ul > li .btn-shop {
	width: 160px;
	height: 40px;
}
@media (min-width: 768px) {
	.header .pc-nav a {
		transition: opacity 0.3s;
	}
	.header .pc-nav a:hover {
		opacity: 0.6;
	}
}

/* レスポンシブ対応 */
@media (max-width: 1199px) {
	.header .container {
		padding: 0 20px;
	}
	.header .inner {
		height: 100px;
	}
	.header .pc-nav > ul > li {
		font-size: 13px;
		margin-left: 20px;
	}
	.header .site-logo img {
		width: 70px;
	}
}
@media (max-width: 991px) {
	.header .inner {
		height: 80px;
	}
	.header .site-logo img {
		width: 50px;
	}
	.header .pc-nav > ul > :not(li:last-child) {
		display: none;
	}
	.header .pc-nav > ul > li:last-child {
		padding-right: 50px;
		margin: 0;
	}
	.header .pc-nav .btn-shop {
		width: 150px;
		height: 40px;
	}
}
@media (max-width: 767px) {
	
}

/* ------------------------------ */
/* .hamburger */
/* ------------------------------ */

@media (min-width: 992px) {
	.hamburger {
		display: none !important;
	}
}
.hamburger {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	border: 0;
	width: 30px;
	height: 21px;
	z-index: 200;
}
.hamburger .navbar-toggler-icon {
	display: block;
	width: 30px;
	height: 1px;
	border-radius: 0;
	background-color: #707070;
	position: absolute;
	transition: 0.5s;
	transform: translate(-50%,-50%) rotate(0);
	top: 50%;
	left: 50%;
}
.hamburger .navbar-toggler-icon::before,
.hamburger .navbar-toggler-icon::after {
	position: absolute;
	content: "";
	display: block;
	width: 30px;
	height: 1px;
	border-radius: 0;
	background-color: #707070;
	transform-origin: center;
	transition: 0.3s;
}
.hamburger .navbar-toggler-icon::before {
	transform: translate(0,-10px) rotate(0deg);
}
.hamburger .navbar-toggler-icon::after {
	transform: translate(0,10px) rotate(0deg);
}
/*オープン*/
.hamburger.open .navbar-toggler-icon {
	transform: translate(-50%,-50%) rotate(30deg);
}
.hamburger.open .navbar-toggler-icon::before {
	transform: translate(0,0) rotate(120deg);
}
.hamburger.open .navbar-toggler-icon::after {
	transform: translate(0,0) rotate(120deg);
	opacity: 0;
}
/*
@media (max-width: 991px) {
	body.fixed {
		position: relative;
		overflow: hidden;
		position: fixed;
		width: 100%;
		height: 100%;
	}
}
*/

/* ------------------------------ */
/* SPメニュー */
/* ------------------------------ */

.sp-nav {
	position: fixed;
	top: 0;
	right: -290px;
	bottom: 0;
	width: 290px;
	background-color: #ffffff;
	z-index: 100;
	overflow: auto;
	padding: 30px 20px 80px 20px;
	transition: 0.3s;
}
.sp-nav.open {
	right: 0;
}
.sp-nav dl dt {
	font-size: 16px;
	margin-bottom: 20px;
}
.sp-nav .nav-wrap ul {
	border-top: 1px solid #707070;
}
.sp-nav .nav-wrap ul li {
	border-bottom: 1px solid #707070;
}
.sp-nav .nav-wrap ul li a {
	position: relative;
	display: block;
	font-size: 15px;
	padding: 10px 0;
}
.sp-nav .nav-wrap ul li a::after {
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	font-family: "Material Symbols Sharp";
	content: "\e941";
	font-size: 150%;
	font-weight: 100;
}
.sp-nav .nav-wrap ul li a.blank::after {
	right: 7px;
	content: "\e89e";
	font-size: 120%;
}
.sp-nav .btn-wrap {
	margin: 30px 0 50px 0;
}
.sp-nav .btn-wrap .btn-shop {
	width: 100%;
	height: 60px;
}
.sp-nav .sns-wrap ul {
	display: flex;
	justify-content: center;
}
.sp-nav .sns-wrap ul li {
	padding: 0 15px;
}
.sp-nav .sns-wrap ul li a img {
	filter: brightness(0.3);
}
@media (min-width: 992px) {
	.sp-nav {
		display: none !important;
	}
}

/*----------------------------------------*/
/* .footer */
/*----------------------------------------*/

.footer {
	background-color: #666666;
	color: #ffffff;
	font-size: 14px;
	padding: 80px 0;
}
.footer .col-logo .logo-wrap {
	display: flex;
	align-items: center;
	margin: 0 -15px;
}
.footer .col-logo .logo-wrap > * {
	display: block;
	padding: 0 15px;
}
.footer .nav-wrap ul {
	display: flex;
	flex-wrap: wrap;
}
.footer .nav-wrap ul li a {
	color: #ffffff;
}
.footer .btn-wrap .btn-shop {
	background-color: transparent;
	border-color: #ffffff;
	color: #ffffff;
}
.footer .btn-wrap .col-sns ul {
	display: flex;
	align-items: center;
}
.footer .copyright {
	font-size: 12px;
}
@media (min-width: 768px) {
	.footer .container {
		max-width: 1300px;
	}
	.footer .inner {
		position: relative;
		display: flex;
		justify-content: space-between;
		width: 100%;
	}
	.footer .copyright {
		position: absolute;
		left: 0;
		bottom: 0;
	}
	.footer .col-nav {
		width: 100%;
		max-width: 360px;
	}
	.footer .nav-wrap > ul {
		flex-direction: column;
		align-content: space-between;
		height: 220px;
	}
	.footer .nav-wrap > ul > li {
		padding-bottom: 20px;
	}
	.footer .btn-wrap {
		display: flex;
		justify-content: flex-end;
		/* justify-content: space-between; */
		align-items: center;
		width: 100%;
	}
	.footer .btn-wrap .col-btn {
		order: 1;
	}
	.footer .btn-wrap .col-sns ul {
		margin-right: 20px;
	}
	.footer .btn-wrap .col-sns ul li {
		margin-right: 20px;
	}
}
@media (min-width: 992px) {
	.footer .col-logo {
		width: fit-content;
	}
	.footer .nav-wrap > ul {
		height: 150px;
	}
	.footer .col-nav {
		flex: 1;
		max-width: 565px;
	}
}
@media (max-width: 767px) {
	.footer {
		padding: 60px 0;
	}
	.footer .container {
		max-width: 360px;
	}
	.footer .col-logo {
		text-align: center;
		margin-bottom: 60px;
	}
	.footer .col-logo .logo-wrap {
		justify-content: center;
	}
	.footer .nav-wrap ul {
		margin: 0 -5px;
	}
	.footer .nav-wrap ul li {
		width: 55%;
		margin-bottom: 30px;
		padding: 0 5px;
	}
	.footer .nav-wrap ul li:nth-child(even) {
		width: 45%;
	}
	.footer .nav-wrap ul li a::after {
		content: none;
	}
	.footer .btn-wrap {
		margin: 10px 0 50px 0;
	}
	.footer .btn-wrap .btn-shop {
		margin: 0 auto;
	}
	.footer .btn-wrap .col-sns {
		margin-top: 50px;
	}
	.footer .btn-wrap .col-sns ul {
		/* justify-content: space-between; */
		justify-content: center;
		max-width: 270px;
		margin: 0 auto;
	}
	.footer .copyright {
		text-align: center;
	}
}

/* ------------------------------ */
/* .to-top */
/* ------------------------------ */

.to-top {
	visibility: hidden;
	padding: 0;
	position: fixed;
	bottom: 30px;
	right: 30px;
	transition: 0.5s;
	transform: translateY(20px);
	filter: blur(10px);
	opacity: 0;
	z-index: 100;
}
.to-top.visible {
	visibility: visible;
	transform: translateY(0px);
	filter: blur(0);
	opacity: 1;
}
.to-top a {
	position: relative;
	display: block;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: rgba(0,0,0,0.5);
	color: #ffffff;
}
.to-top a::after {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: "Material Symbols Sharp";
	content: "\f1e0";
	font-size: 150%;
	font-weight: 100;
	color: #ffffff;
}
@media (max-width: 767px) {
	.to-top {
		bottom: 15px;
		right: 15px;
	}
	.to-top a {
		width: 50px;
		height: 50px;
	}
	.to-top a::after {
		font-size: 130%;
	}
}

/*----------------------------------------*/
/* スクロールエフェクト */
/*----------------------------------------*/

/* sa-fadeup */
.sa-fadeup {
  opacity: 0; /* 初期表示は非表示 */
  transform: translateY(50px) scale(0.9); /* 下に配置し、縮小状態にする */
  transition: transform 1s ease, opacity 1s ease; /* アニメーションを設定 */
}

.sa-fadeup.active {
  opacity: 1; /* 表示する */
  transform: translateY(0) scale(1); /* 元の位置・サイズに戻す */
}