@charset "UTF-8";
/*----------------------------------------
	fonts
----------------------------------------*/
/*----------------------------------------
	Style sheet common
----------------------------------------*/
/*----------------------------------------
	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 {
	border: 0;
	font-size: 100%;
	font-style: normal;
	font-weight: normal;
	font: inherit;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

th, td {
	text-align: left;
	vertical-align: top;
}

img {
	border: none;
	vertical-align: top;
}

/*----------------------------------------
	Vars
----------------------------------------*/
/*----------------------------------------
	Mediaquery
----------------------------------------*/
/*----------------------------------------
	fonts
----------------------------------------*/
/*----------------------------------------
	fonts
----------------------------------------*/
/*----------------------------------------
	Base
----------------------------------------*/
html {
	font-size: 13px;
}
@media screen and (min-width: 821px) {
	html {
		font-size: 16px;
	}
}

body {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	line-height: 1.5;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	letter-spacing: 0.06em;
	background-color: #ffffff;
	color: #353535;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: 100%;
}

img {
	width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	-webkit-transition: opacity 0.6s ease;
	transition: opacity 0.6s ease;
}
a:link, a:visited {
	color: #353535;
}

sup {
	vertical-align: super;
	font-size: smaller;
}

small {
	font-size: 0.769rem;
	display: block;
}

a:hover {
	opacity: 0.8;
}

a[data-rel=external]:after {
	content: "";
	width: 1em;
	height: 1em;
	display: inline-block;
	vertical-align: middle;
	margin-left: 0.5em;
	background: transparent url("../image/icon-external.png") no-repeat scroll center center;
	background-size: contain;
	margin-right: 0.5em;
}

p {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	line-height: 24px;
}
@media screen and (min-width: 821px) {
	p {
		line-height: 30px;
	}
}

h3 {
	font-size: 1.769rem;
}
@media screen and (min-width: 821px) {
	h3 {
		font-size: 1.75rem;
	}
}

h3,
h4 {
	font-family: "Shippori Mincho", serif;
}

/*----------------------------------------
	Setting
----------------------------------------*/
/* background image*/
/*----------------------------------------
	Layout
----------------------------------------*/
#bg {
	height: 100vh;
	width: 100%;
	overflow: hidden;
	position: relative;
	position: fixed;
	z-index: -30;
}
#bg .l-pc-slider {
	height: 100vh;
}
@-webkit-keyframes zoomUp {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-webkit-transform: scale(1.02);
		transform: scale(1.02);
	}
}
@keyframes zoomUp {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-webkit-transform: scale(1.02);
		transform: scale(1.02);
	}
}
#bg .l-pc-slider .swiper-wrapper .swiper-slide-active .slide-img,
#bg .l-pc-slider .swiper-wrapper .swiper-slide-duplicate-active .slide-img,
#bg .l-pc-slider .swiper-wrapper .swiper-slide-prev .slide-img {
	-webkit-animation: zoomUp 10s linear 0s 1 normal both;
	animation: zoomUp 10s linear 0s 1 normal both;
}
#bg .l-pc-slider .swiper-wrapper .slide-img img {
	display: block;
	height: 100vh;
	width: auto;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
}
@media screen and (min-width: 640px) {
	#bg .l-pc-slider .swiper-wrapper .slide-img img {
		-o-object-position: 50% 50%;
		object-position: 50% 50%;
	}
}

.l-flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	position: relative;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
}

.l-main {
	width: 100%;
	height: 100%;
	margin: auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
}
@media screen and (min-width: 821px) {
	.l-main {
		width: 48%;
		right: 0;
		left: 0;
		margin: 0 auto;
	}
}
@media screen and (min-width: 1024px) {
	.l-main {
		width: 56%;
		max-width: 560px;
	}
}

.l-main::before {
	content: "";
	width: 100%;
	background-color: #ffffff;
	position: absolute;
	z-index: -20;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.l-container {
	position: relative;
	width: 100%;
	margin: auto;
}

.l-img-container {
	width: 100%;
	margin: auto 0 auto auto;
	position: relative;
	height: clamp(422px, 247.294px + 46.588vw, 629.318px);
}
@media screen and (min-width: 821px) {
	.l-img-container {
		height: clamp(445.7188px, 49.531px + 48.316vw, 629.318px);
	}
}
.l-img-container .l-img__bg {
	position: absolute;
	border-radius: 40px 0 0 40px;
	z-index: 1;
	width: clamp(345px, 130.112px + 57.303vw, 600px);
	height: clamp(422px, 247.294px + 46.588vw, 629.318px);
	right: 0;
	overflow: hidden;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
@media screen and (min-width: 821px) {
	.l-img-container .l-img__bg {
		border-radius: 60px 0 0 60px;
		width: clamp(364px, 39.259px + 39.603vw, 514.4898px);
		height: clamp(445.7188px, 49.531px + 48.316vw, 629.318px);
	}
}
.l-img-container .l-img__bg img {
	width: 100%;
	height: auto;
}
.l-img-container .l-img-inner {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: auto 0 auto auto;
	position: relative;
	color: #ffffff;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	z-index: 1;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	padding: clamp(50px, -34.27px + 22.472vw, 150px) clamp(40px, -10.562px + 13.483vw, 100px);
	width: clamp(345px, 130.112px + 57.303vw, 600px);
	height: clamp(422px, 247.294px + 46.588vw, 629.318px);
	-webkit-column-gap: clamp(2.4rem, 1.894rem + 2.157vw, 3rem);
	-moz-column-gap: clamp(2.4rem, 1.894rem + 2.157vw, 3rem);
	column-gap: clamp(2.4rem, 1.894rem + 2.157vw, 3rem);
}
@media screen and (min-width: 821px) {
	.l-img-container .l-img-inner {
		width: clamp(364px, 39.259px + 39.603vw, 514.4898px);
		height: clamp(445.7188px, 49.531px + 48.316vw, 629.318px);
		padding: clamp(60px, -17.053px + 8.421vw, 92px) clamp(48px, 0.526px + 5.789vw, 62px);
		-webkit-column-gap: clamp(30px, -30.421px + 7.368vw, 58px);
		-moz-column-gap: clamp(30px, -30.421px + 7.368vw, 58px);
		column-gap: clamp(30px, -30.421px + 7.368vw, 58px);
	}
}
.l-img-container .l-img-inner p {
	font-size: clamp(1rem, 0.896rem + 0.442vw, 1.123rem);
	hanging-punctuation: allow-end;
}
@media screen and (min-width: 821px) {
	.l-img-container .l-img-inner p {
		font-size: clamp(0.8rem, 0.368rem + 0.842vw, 1rem);
		line-height: 30px;
	}
}
.l-img-container .l-img-inner h3 {
	text-wrap: nowrap;
	white-space: nowrap;
	line-height: 44px;
}
@media screen and (min-width: 821px) {
	.l-img-container .l-img-inner h3 {
		letter-spacing: 3.4px;
	}
}

.l-message {
	border-radius: 40px 40px 0 0;
	position: relative;
	background-color: #ffffff;
}
@media screen and (min-width: 821px) {
	.l-message {
		border-radius: 60px 60px 0 0;
	}
}
.l-message .c-ttl {
	margin: 0 auto;
	font-size: 0.846rem;
	text-align: center;
}
@media screen and (min-width: 821px) {
	.l-message .c-ttl span {
		font-size: 0.938rem;
	}
}
.l-message .c-ttl h2 {
	font-size: 1.769rem;
	text-align: center;
	margin: 22px auto 30px;
	line-height: 34px;
}
@media screen and (min-width: 821px) {
	.l-message .c-ttl h2 {
		font-size: 1.75rem;
		margin: 34px auto;
		line-height: 48px;
	}
}
.l-message .t-message-article {
	width: 84%;
	margin: auto;
}
.l-message .t-message-article p {
	margin-bottom: 1.6rem;
}
.l-message .l-flex {
	margin-top: 30px;
	-webkit-column-gap: 20px;
	-moz-column-gap: 20px;
	column-gap: 20px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
@media screen and (min-width: 821px) {
	.l-message .l-flex {
		margin-top: 32px;
	}
}
.l-message .l-flex .l-flex-1 {
	width: 32%;
}
.l-message .l-flex .l-flex-1 img {
	max-width: 130px;
}
.l-message .l-flex .l-flex-2 {
	width: 68%;
}
.l-message .l-flex .l-flex-2 small {
	letter-spacing: 0;
	margin-bottom: 2px;
}
@media screen and (min-width: 821px) {
	.l-message .l-flex .l-flex-2 small {
		margin-bottom: 8px;
	}
}
.l-message .l-flex .l-flex-2 p {
	font-size: 1.077rem;
	font-family: "Shippori Mincho", serif;
	margin-bottom: 0;
}

/*----------------------------------------
    Header
----------------------------------------*/
.l-header {
	position: fixed;
	z-index: 30;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	height: 40px;
	-webkit-transition: -webkit-transform 0.6s 0.3s;
	transition: -webkit-transform 0.6s 0.3s;
	transition: transform 0.6s 0.3s;
	transition: transform 0.6s 0.3s, -webkit-transform 0.6s 0.3s;
}
@media screen and (min-width: 821px) {
	.l-header {
		height: 100vh;
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		-ms-flex: 1;
		flex: 1;
		left: 0;
		top: 0;
		width: 26%;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		padding: 64px clamp(20px, -66.316px + 10.526vw, 60px) 46px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
}
@media screen and (min-width: 1024px) {
	.l-header {
		width: calc(50% - 280px);
	}
}
.l-header .l-hero__logo,
.l-header .l-logo__nav {
	width: clamp(120px, 79.955px + 5.345vw, 124px);
	height: auto;
	margin: 36px auto auto 30px;
	-webkit-transition: -webkit-transform 0.6s 0.3s;
	transition: -webkit-transform 0.6s 0.3s;
	transition: transform 0.6s 0.3s;
	transition: transform 0.6s 0.3s, -webkit-transform 0.6s 0.3s;
}
@media screen and (min-width: 821px) {
	.l-header .l-hero__logo,
	.l-header .l-logo__nav {
		margin: 0;
		width: clamp(160px, 116.842px + 5.263vw, 180px);
	}
}
.l-header .l-hero__logo span,
.l-header .l-logo__nav span {
	font-size: clamp(0.769rem, 0.708rem + 0.262vw, 0.937rem);
	margin-top: clamp(30px, 19.024px + 2.927vw, 50px);
	display: inline-block;
	font-family: "Shippori Mincho", serif;
}
.l-header .logo-hidden {
	-webkit-transform: translateY(-190px);
	transform: translateY(-190px);
}
.l-header > .l-header-container--sp .c-btn__buy span {
	background: transparent;
	color: #353535;
}
.l-header .l-header-container--sp {
	margin: 42px 30px 0 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
@media screen and (min-width: 821px) {
	.l-header .l-header-container--sp {
		display: none;
	}
}
.l-header .l-header-container--sp .l-btn--header {
	background-color: transparent;
	margin-right: 16px;
	font-size: clamp(0.769rem, 0.512rem + 1.098vw, 1.077rem);
	text-wrap: nowrap;
	white-space: nowrap;
	padding: 8px 0;
}
.l-header .l-header-container--sp .burger-btn {
	z-index: 11;
	right: 0;
	position: relative;
	width: clamp(34px, 27.318px + 1.782vw, 42px);
	height: clamp(34px, 27.318px + 1.782vw, 42px);
}
@media screen and (min-width: 1024px) {
	.l-header .l-header-container--sp .burger-btn {
		display: none;
	}
}
.l-header .l-header-container--sp .burger-btn span {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: clamp(12px, 4vw, 20px);
	background: #353535;
	-webkit-transition: background-color 0.4s ease 0s;
	transition: background-color 0.4s ease 0s;
}
.l-header .l-header-container--sp .burger-btn span::before {
	content: "";
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	top: -4px;
	width: clamp(34px, 4vw, 40px);
	height: 1px;
	background: #353535;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
.l-header .l-header-container--sp .burger-btn span::after {
	content: "";
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	top: 4px;
	width: clamp(34px, 4vw, 40px);
	height: 1px;
	background: #353535;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
.l-header .l-header-container--sp .burger-btn.is-active span {
	background-color: transparent;
}
.l-header .l-header-container--sp .burger-btn.is-active span::before {
	top: 0;
	-webkit-transform: translateX(-50%) rotate(13deg);
	transform: translateX(-50%) rotate(13deg);
}
.l-header .l-header-container--sp .burger-btn.is-active span::after {
	top: 0;
	-webkit-transform: translateX(-50%) rotate(-13deg);
	transform: translateX(-50%) rotate(-13deg);
}
.l-header .l-headerGnav {
	width: 100%;
	position: absolute;
	background: #E4E3E2;
	height: 100vh;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	opacity: 0;
	visibility: hidden;
}
@media screen and (min-width: 821px) {
	.l-header .l-headerGnav {
		display: none;
	}
}
.l-header .l-headerGnav .l-headerGnav-hero {
	background: url(../../image/nav-bg.webp) no-repeat scroll center center/cover;
	padding: 0 0 40px 0;
	width: 100%;
	height: 36vh;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.l-header .l-headerGnav .l-headerGnav-btns {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-column-gap: 10px;
	-moz-column-gap: 10px;
	column-gap: 10px;
	margin: auto auto 0;
}
.l-header .l-headerGnav .l-headerGnav-btns .c-btn--icon {
	margin: 0;
}
.l-header .l-headerGnav .l-headerGnav-btns .c-btn {
	width: 152px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.l-header .l-headerGnav .l-headerGnav-inner {
	width: 84%;
	margin: 14px auto;
}
.l-header .l-headerGnav .l-nav li {
	border-bottom: solid 1px #9c9c9c;
}
.l-header .l-headerGnav .l-nav li:last-child {
	border-bottom: none;
}
.l-header .l-headerGnav .l-nav a {
	padding: 26px 0;
	display: block;
}
.l-header .l-headerGnav .l-nav span {
	font-size: clamp(0.769rem, 0.574rem + 0.831vw, 1rem);
	margin-bottom: 1rem;
	font-family: "Shippori Mincho", serif;
}
.l-header .l-headerGnav .l-nav p {
	font-size: clamp(1.077rem, 0.805rem + 1.161vw, 1.4rem);
	font-family: "Shippori Mincho", serif;
}
.l-header .l-headerGnav .l-nav img {
	display: block;
	max-width: 180px;
	width: 100%;
	margin: 48px auto 24px auto;
}
.l-header .l-headerGnav .c-btn--icon {
	max-width: 200px;
	margin: auto;
}
.l-header .l-headerGnav .c-btn--icon img {
	margin: 0;
}
.l-header .u-vertical-text {
	margin-top: -36%;
	position: relative;
}
@media screen and (min-width: 821px) {
	.l-header .u-vertical-text {
		font-size: 0.625rem;
		padding-top: 0;
		text-indent: inherit;
		letter-spacing: 0;
	}
}
.l-header .u-vertical-text::before {
	position: absolute;
	content: "";
	top: 0;
	left: 1px;
	height: 100%;
	width: 1px;
	background-color: #888888;
	z-index: -10;
}

.l-headerCopyright small {
	display: none;
}
@media screen and (min-width: 821px) {
	.l-headerCopyright small {
		display: block;
		font-size: 0.625rem;
		text-wrap: nowrap;
		white-space: nowrap;
		letter-spacing: 0;
	}
}

body.nav-m-open {
	height: 100vh;
}

.l-headerGnav.menu-active {
	opacity: 1;
	visibility: visible;
}

.isVisible {
	visibility: visible !important;
}

.hidden {
	-webkit-transform: translateY(-190px);
	transform: translateY(-190px);
}

/*----------------------------------------
	Footer
----------------------------------------*/
@media screen and (min-width: 821px) {
	.l-footer {
		position: fixed;
		height: 100vh;
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		-ms-flex: 1;
		flex: 1;
		right: 0;
		top: 0;
		width: 26%;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		text-align: center;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.l-footer .l-footer-inner {
		margin: 80px 20px 60px;
	}
	.l-footer .l-footer-inner > img {
		display: block;
		max-width: 174px;
		width: 100%;
		margin: 30px auto 16px auto;
	}
	.l-footer .l-footer__nav li {
		margin-bottom: 24px;
	}
	.l-footer .l-footer__nav li:nth-child(3) {
		margin-bottom: 14px;
	}
	.l-footer .l-footer__nav li:nth-child(4) {
		margin-bottom: 28px;
	}
	.l-footer .l-footer__nav span {
		font-size: clamp(0.563rem, 0.429rem + 0.261vw, 0.625rem);
		display: block;
		font-family: "Shippori Mincho", serif;
	}
	.l-footer .l-footer__nav p {
		border-bottom: solid 1px transparent;
		-webkit-transition: 0.6s;
		transition: 0.6s;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		margin: auto;
		color: black;
		font-family: "Shippori Mincho", serif;
	}
	.l-footer .l-footer__nav p::after {
		content: "";
		margin-top: 0.2rem;
		display: block;
		opacity: 0;
		width: 0;
		height: 1px;
		background: #9c9c9c;
		-webkit-transition: all 0.6s;
		transition: all 0.6s;
	}
	.l-footer .l-footer__nav p:hover::after {
		width: 100%;
		opacity: 1;
	}
	.l-footer .l-footer__nav li p {
		font-size: clamp(0.75rem, 0.48rem + 0.526vw, 0.875rem);
	}
	.l-footer .c-btn {
		max-width: inherit;
		width: clamp(180px, 123.448px + 6.897vw, 220px);
		margin: auto;
	}
	.l-footer .c-btn__product {
		margin: 0 auto 10px;
	}
}
@media screen and (min-width: 1024px) {
	.l-footer {
		width: calc(50% - 280px);
	}
}
/*----------------------------------------
	Component
----------------------------------------*/
.c-btn {
	background: #ffffff;
	padding: 16px 14px;
	max-width: 180px;
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.c-btn span {
	color: #353535;
	text-wrap: nowrap;
	font-size: 0.846rem;
}
@media screen and (min-width: 821px) {
	.c-btn span {
		font-size: 0.75rem;
	}
}

.c-btn__buy {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: #353535;
	padding: 8.5px 14px;
}
.c-btn__buy .l-flex {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.c-btn__buy small {
	color: #ffffff;
	font-size: 10px;
}
.c-btn__buy span {
	margin-right: 4px;
	color: #ffffff;
}
.c-btn__buy img {
	width: 0.8rem;
	margin-bottom: 2px;
	height: auto;
}

.c-ttl {
	width: 84%;
	margin: 104px auto 86px;
	font-family: "Shippori Mincho", serif;
}
@media screen and (min-width: 821px) {
	.c-ttl {
		margin: 124px auto 100px;
	}
}
.c-ttl h2 {
	font-size: 2rem;
	text-align: left;
	letter-spacing: 1.2px;
}
@media screen and (min-width: 821px) {
	.c-ttl h2 {
		font-size: 2.125rem;
		line-height: 1.8;
	}
}
.c-ttl p {
	font-size: 0.769rem;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.c-ttl span {
	font-size: 0.846rem;
	margin-bottom: 10px;
	display: block;
}
@media screen and (min-width: 821px) {
	.c-ttl span {
		margin-bottom: 18px;
	}
}

/*----------------------------------------
	Utility
----------------------------------------*/
.u-hidden {
	display: none;
}

@media screen and (max-width: 820px) {
	.u-hidden-sp {
		display: none;
	}
}

@media screen and (min-width: 820px) {
	.u-hidden-md {
		display: none;
	}
}

@media screen and (min-width: 1024px) {
	.u-hidden-pc {
		display: none;
	}
}

.u-left {
	text-align: left;
}

.u-center {
	text-align: center;
}

.u-right {
	text-align: right;
}

.u-vertical-text {
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	font-family: "Shippori Mincho", serif;
	text-indent: -1em;
	padding-top: 0.2em;
}

/*----------------------------------------
	Page Home
----------------------------------------*/
#t-hero {
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
}
#t-hero .l-container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-webkit-justify-content: end;
	-ms-flex-pack: end;
	justify-content: end;
}
#t-hero .t-hero-slider {
	height: 100vh;
	height: 100lvh;
	width: 100%;
	position: relative;
}
#t-hero .t-hero-slider .swiper-wrapper {
	position: fixed;
	overflow: hidden;
	z-index: -10;
	width: 100%;
	height: 100vh;
	height: 100lvh;
}
@keyframes zoomUp {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	100% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
}
@media screen and (min-width: 821px) {
	#t-hero .t-hero-slider .swiper-wrapper {
		width: 48%;
		right: 0;
		left: 0;
		margin: 0 auto;
	}
}
@media screen and (min-width: 1024px) {
	#t-hero .t-hero-slider .swiper-wrapper {
		width: 56%;
		max-width: 560px;
	}
}
#t-hero .t-hero-slider .swiper-wrapper .swiper-slide-active .slide-img,
#t-hero .t-hero-slider .swiper-wrapper .swiper-slide-duplicate-active .slide-img,
#t-hero .t-hero-slider .swiper-wrapper .swiper-slide-prev .slide-img {
	-webkit-animation: zoomUp 10s linear 0s 1 normal both;
	animation: zoomUp 10s linear 0s 1 normal both;
}
#t-hero .t-hero-slider .swiper-wrapper .slide-img img {
	display: block;
	height: 100vh;
	height: 100lvh;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
}
@media screen and (min-width: 640px) {
	#t-hero .t-hero-slider .swiper-wrapper .slide-img img {
		-o-object-position: 36% 50%;
		object-position: 36% 50%;
	}
}
#t-hero .t-hero-slider .swiper-wrapper .slide-img img:nth-of-type(1) {
	display: block;
}
@media screen and (min-width: 640px) {
	#t-hero .t-hero-slider .swiper-wrapper .slide-img img:nth-of-type(1) {
		display: none;
	}
}
#t-hero .t-hero-slider .swiper-wrapper .slide-img img:nth-of-type(2) {
	display: none;
}
@media screen and (min-width: 640px) {
	#t-hero .t-hero-slider .swiper-wrapper .slide-img img:nth-of-type(2) {
		display: block;
	}
}
#t-hero .t-hero-overlay {
	position: absolute;
	z-index: 10;
	width: 100%;
	height: 100vh;
	height: 100svh;
	top: 0;
}
#t-hero .t-hero-overlay .t-hero-top {
	height: 100vh;
	height: 100svh;
}
@media screen and (min-width: 640px) {
	#t-hero .t-hero-overlay .t-hero-top {
		margin: auto auto 0;
	}
}
#t-hero .t-hero-overlay .t-hero-top .t-hero-top-inner {
	height: 100%;
	display: -ms-grid;
	display: grid;
	top: 0 !important;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
	-ms-grid-rows: 26% 48% 26%;
	grid-template-rows: 26% 48% 26%;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
	overflow-x: hidden;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
@media screen and (min-width: 821px) {
	#t-hero .t-hero-overlay .t-hero-top .t-hero-top-inner {
		-ms-grid-rows: 32% 36% 32%;
		grid-template-rows: 32% 36% 32%;
		margin: auto auto 0;
	}
}
#t-hero .t-hero-overlay .t-hero-top .t-hero-top-inner::-webkit-scrollbar {
	display: none;
}
#t-hero .t-hero-overlay .t-hero-top .t-hero-top-inner__frame {
	-ms-grid-row: 3;
	-ms-grid-row-span: 1;
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-area: 3/1/4/2;
	margin-bottom: 0;
	padding-bottom: 46px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
#t-hero .t-hero-overlay .t-hero-top__h1 {
	font-family: "Shippori Mincho", serif;
	width: 74%;
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	margin: auto;
	font-size: clamp(1.692rem, 1.204rem + 2.081vw, 3.077rem);
}
@media screen and (min-width: 821px) {
	#t-hero .t-hero-overlay .t-hero-top__h1 {
		font-size: clamp(1.8rem, 1.511rem + 0.564vw, 1.934rem);
	}
}
#t-hero .t-hero-overlay .t-hero-top__h1 img {
	height: clamp(20px, 13.258px + 1.798vw, 28px);
}
@media screen and (min-width: 821px) {
	#t-hero .t-hero-overlay .t-hero-top__h1 img {
		height: 24px;
	}
}
#t-hero .t-hero-overlay .t-hero-top__h1 .left-anime {
	margin-bottom: 26px;
	margin-left: -20px;
}
@media screen and (min-width: 821px) {
	#t-hero .t-hero-overlay .t-hero-top__h1 .left-anime {
		margin-bottom: 34px;
		margin-left: -30px;
	}
}
#t-hero .t-hero-overlay .t-hero-top__h1 .right-anime {
	margin-right: 0px;
	margin-left: 24px;
}
@media screen and (min-width: 821px) {
	#t-hero .t-hero-overlay .t-hero-top__h1 .right-anime {
		margin-right: 0px;
		margin-left: 52px;
	}
}
#t-hero .t-hero-overlay .t-hero-top h1 {
	opacity: 0;
	display: block;
}
#t-hero .t-hero-overlay .t-hero-top .fadeup {
	-webkit-animation-name: fadeUpAnime;
	animation-name: fadeUpAnime;
	-webkit-animation-duration: 1.6s;
	animation-duration: 1.6s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	opacity: 0;
}
@-webkit-keyframes fadeUpAnime {
	from {
		opacity: 0;
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
		-webkit-filter: blur(4px);
		filter: blur(4px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
		-webkit-filter: blur(0);
		filter: blur(0);
	}
}
@keyframes fadeUpAnime {
	from {
		opacity: 0;
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
		-webkit-filter: blur(4px);
		filter: blur(4px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
		-webkit-filter: blur(0);
		filter: blur(0);
	}
}
#t-hero .t-hero-overlay .t-hero-top__scroll {
	-webkit-align-self: flex-end;
	-ms-flex-item-align: end;
	align-self: flex-end;
	margin-right: 30px;
	margin-bottom: 0;
}
@media screen and (min-width: 640px) {
	#t-hero .t-hero-overlay .t-hero-top__scroll {
		-webkit-align-self: center;
		-ms-flex-item-align: center;
		-ms-grid-row-align: center;
		align-self: center;
		margin-right: 0px;
	}
}
#t-hero .t-hero-overlay .t-hero-top__scroll span {
	display: block;
	font-size: 10px;
	letter-spacing: 0;
}
#t-hero .t-hero-overlay .t-hero-top__scroll span::after {
	content: "";
	display: block;
	width: 0;
	border-bottom: 1px solid #888888;
	opacity: 0;
	-webkit-animation: underlineAnimation 4.2s linear infinite;
	animation: underlineAnimation 4.2s linear infinite;
}
@-webkit-keyframes underlineAnimation {
	0% {
		width: 0%;
		opacity: 0;
	}
	20% {
		opacity: 1;
	}
	70% {
		opacity: 1;
		width: 100%;
	}
	80% {
		opacity: 0;
	}
	100% {
		width: 100%;
	}
}
@keyframes underlineAnimation {
	0% {
		width: 0%;
		opacity: 0;
	}
	20% {
		opacity: 1;
	}
	70% {
		opacity: 1;
		width: 100%;
	}
	80% {
		opacity: 0;
	}
	100% {
		width: 100%;
	}
}
#t-hero .t-hero-overlay .u-vertical-text {
	-ms-grid-row: 2;
	-ms-grid-row-span: 1;
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-area: 2/1/3/2;
	position: relative;
	-ms-grid-row-align: center;
	align-self: center;
	justify-self: flex-start;
	margin-left: 30px;
	font-size: 0.82rem;
	padding-top: 0;
	text-indent: inherit;
	letter-spacing: 0;
}
#t-hero .t-hero-overlay .u-vertical-text::before {
	position: absolute;
	content: "";
	top: 0;
	left: 1px;
	height: 100%;
	width: 1px;
	background-color: #888888;
	z-index: -10;
}
#t-hero .t-hero-overlay .t-hero-hotpetter {
	margin: auto;
	padding: 60px 0 0;
}
@media screen and (min-width: 821px) {
	#t-hero .t-hero-overlay .t-hero-hotpetter {
		padding: 120px 0 0;
	}
}
#t-hero .t-hero-overlay .t-hero-hotpetter .t-hero-hotpepper-inner {
	margin: auto;
	width: 62%;
	text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#t-hero .t-hero-overlay .t-hero-hotpetter .t-hero-hotpepper-inner p {
	margin-bottom: 30px;
	line-height: 2.4em;
	letter-spacing: 2px;
	text-wrap: nowrap;
	white-space: nowrap;
	margin: 0 auto 54px;
}
@media screen and (min-width: 821px) {
	#t-hero .t-hero-overlay .t-hero-hotpetter .t-hero-hotpepper-inner p {
		line-height: 2.6em;
	}
}
#t-hero .t-hero-overlay .t-hero-hotpetter .t-hero-hotpepper-inner img {
	width: 84%;
	max-width: 328px;
	margin: auto;
}

#t-parallax {
	width: 100%;
	margin-top: clamp(450px, 374.157px + 20.225vw, 540px);
}
@media screen and (min-width: 821px) {
	#t-parallax {
		margin-top: clamp(540px, 324.211px + 26.316vw, 640px);
	}
}
#t-parallax .t-parallax-inner {
	position: relative;
	width: 84%;
	margin: auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
#t-parallax .t-parallax__bg {
	overflow: hidden;
	width: 100%;
	height: clamp(440px, -116.18px + 148.315vw, 1100px);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
}
@media screen and (min-width: 821px) {
	#t-parallax .t-parallax__bg {
		height: clamp(520px, 225.393px + 35.884vw, 656px);
	}
}
#t-parallax .t-parallax__bg img {
	width: 100%;
}
#t-parallax .t-parallax__front {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 50%;
	min-width: 160px;
	height: clamp(180px, 78.876px + 26.966vw, 300px);
	overflow: hidden;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
@media screen and (min-width: 821px) {
	#t-parallax .t-parallax__front {
		height: clamp(252px, 206.509px + 5.541vw, 273px);
	}
}
#t-parallax .t-parallax__front img {
	width: 100%;
}

#t-point01 {
	padding: 104px 0 0;
	background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(30%, #E4E3E2), to(#ffffff));
	background: linear-gradient(transparent 0%, #E4E3E2 30%, #ffffff);
}
#t-point01 .c-ttl {
	margin: 0px auto 86px;
}
@media screen and (min-width: 821px) {
	#t-point01 {
		border-radius: 60px 60px 0 0;
		padding: 114px 0 70px;
	}
}
#t-point01 .l-img-inner {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}
#t-point01 .t-point01-video {
	z-index: 20;
	position: relative;
	width: 73%;
	margin: -70px auto 0;
	display: -ms-grid;
	display: grid;
	place-content: center;
	gap: 1.2rem;
	text-align: center;
}
@media screen and (min-width: 821px) {
	#t-point01 .t-point01-video {
		margin: -90px auto 0;
		width: 73%;
	}
}
#t-point01 .t-point01-video .t-point01-video__media {
	width: 100%;
}
#t-point01 .t-point01-container {
	width: 84%;
	margin: 80px auto 60px;
}
#t-point01 .t-point01-container h3 {
	margin-bottom: 30px;
	letter-spacing: 1.2px;
}
@media screen and (min-width: 821px) {
	#t-point01 .t-point01-container {
		margin: 100px auto 100px;
	}
}
#t-point01 .t-point01-detail {
	background: #dddbd9;
	border-radius: 40px;
	color: #353535;
	text-align: left;
	padding: 70px 0 80px;
}
@media screen and (min-width: 821px) {
	#t-point01 .t-point01-detail {
		border-radius: 60px;
		padding: 80px 0 100px;
	}
}
#t-point01 .t-point01-detail h4 {
	font-size: 1.385rem;
	border-bottom: solid 1px #9c9c9c;
	padding-bottom: 30px;
	text-align: center;
	text-wrap: balance;
}
@media screen and (min-width: 821px) {
	#t-point01 .t-point01-detail h4 {
		padding-bottom: 52px;
	}
}
#t-point01 .t-point01-detail-inner {
	width: 84%;
	margin: auto;
	row-gap: 40px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
@media screen and (min-width: 821px) {
	#t-point01 .t-point01-detail-inner {
		row-gap: 58px;
	}
}
#t-point01 .t-point01-detail-inner .l-container p:first-child {
	margin-bottom: 1rem;
}
#t-point01 .t-point01-detail-inner img {
	width: 88%;
	height: auto;
	margin: auto;
}
#t-point01 .t-point01-detail__img {
	text-align: center;
}
#t-point01 .t-point01-detail__img img {
	width: 100%;
	height: auto;
	max-width: 210px;
}
@media screen and (min-width: 821px) {
	#t-point01 .t-point01-detail__img img {
		width: 100%;
		max-width: 310px;
	}
}

#t-point02 {
	background-color: #ffffff;
}
#t-point02 .t-point02-container {
	width: 84%;
	margin: 80px auto 0;
}
#t-point02 .t-point02-container h3 {
	margin-bottom: 18px;
	letter-spacing: 1.2px;
}
@media screen and (min-width: 821px) {
	#t-point02 .t-point02-container h3 {
		margin-bottom: 30px;
		line-height: 1.6;
	}
}
#t-point02 .t-point02-container__img {
	width: clamp(228px, -7.955px + 62.921vw, 508px);
	margin: auto;
	padding: 40px 10px;
}
@media screen and (min-width: 821px) {
	#t-point02 .t-point02-container__img {
		width: clamp(245px, 22.737px + 27.105vw, 348px);
	}
}
#t-point02 .t-point02-container .l-container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	row-gap: 30px;
}
#t-point02 .t-point02-container__txt h4 {
	font-size: 1.231rem;
	margin-bottom: 8px;
	display: inline-block;
}
#t-point02 .t-point02-container__txt p {
	font-size: 0.875rem;
	line-height: 22px;
}
@media screen and (min-width: 821px) {
	#t-point02 .t-point02-container__txt p {
		line-height: 28px;
	}
}

#t-animation {
	position: relative;
	height: 3200px;
	z-index: 0;
	background-color: #ffffff;
}
#t-animation .t-animation-inner {
	width: 100%;
	height: 100vh;
	height: 100lvh;
}
#t-animation p {
	text-align: center;
	width: 100%;
	font-family: "Shippori Mincho", serif;
	font-size: clamp(1rem, 0.805rem + 0.831vw, 1.231rem);
	line-height: 30px;
}
@media screen and (min-width: 821px) {
	#t-animation p {
		font-size: 1rem;
		line-height: 32px;
	}
}
#t-animation p span {
	display: inline-block;
}
#t-animation .animeItem {
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#t-animation .animeItem-img {
	z-index: -1;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center center;
	object-position: center center;
}
#t-animation .circle {
	display: block;
	width: clamp(198px, -2.562px + 53.483vw, 436px);
	height: clamp(198px, -2.562px + 53.483vw, 436px);
	border: 1px solid #9c9c9c;
	border-radius: 50%;
	-webkit-transform: scale(0.3) translate3d(-50%, -50%, 0);
	transform: scale(0.3) translate3d(-50%, -50%, 0);
	-webkit-transform-origin: top left;
	transform-origin: top left;
	-webkit-animation: gradientAnimation 5s infinite alternate;
	animation: gradientAnimation 5s infinite alternate;
}
@media screen and (min-width: 821px) {
	#t-animation .circle {
		width: clamp(210px, 19.372px + 23.219vw, 298px);
		height: clamp(210px, 19.372px + 23.219vw, 298px);
	}
}
@-webkit-keyframes gradientAnimation {
	0% {
		border-color: #9c9c9c;
	}
	60% {
		border-color: #e8eaf4;
	}
	100% {
		border-color: #c2becb;
	}
}
@keyframes gradientAnimation {
	0% {
		border-color: #9c9c9c;
	}
	60% {
		border-color: #e8eaf4;
	}
	100% {
		border-color: #c2becb;
	}
}

.t-message01 {
	padding: 80px 0;
}
@media screen and (min-width: 821px) {
	.t-message01 {
		padding: 100px 0;
	}
}

.t-message02 {
	margin: 20px auto 100px;
	z-index: 20;
}

#t-product {
	position: relative;
	background-color: #ffffff;
	width: 100%;
}
#t-product .t-product-hero {
	color: #ffffff;
	position: relative;
	height: clamp(278px, 208.899px + 18.427vw, 360px);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	overflow: hidden;
}
@media screen and (min-width: 821px) {
	#t-product .t-product-hero {
		height: clamp(280px, -11.316px + 35.526vw, 415px);
	}
}
#t-product .t-product__bg {
	position: absolute;
	z-index: 0;
	overflow: hidden;
	width: 100%;
	height: auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
#t-product .t-product__bg img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	margin-top: -34px;
}
#t-product .c-ttl {
	width: 84%;
	margin: auto;
	z-index: 10;
}
#t-product .c-ttl h2 {
	margin-bottom: 6px;
	letter-spacing: 0.1em;
}
@media screen and (min-width: 821px) {
	#t-product .c-ttl h2 {
		margin-bottom: 4px;
	}
}
#t-product .c-ttl p {
	font-size: 0.846rem;
}
@media screen and (min-width: 821px) {
	#t-product .c-ttl p {
		font-size: 0.875rem;
	}
}
#t-product .t-product-grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
}
#t-product .t-product-grid__row {
	display: contents;
}
#t-product .grid-item {
	border-bottom: solid 1px #9c9c9c;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	padding: 54px 0 33px;
}
@media screen and (min-width: 821px) {
	#t-product .grid-item {
		padding: 72px 0 52px;
	}
}
#t-product .grid-item > small {
	line-height: 1.4;
	margin-bottom: 18px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (min-width: 821px) {
	#t-product .grid-item > small {
		font-size: 0.938rem;
		margin-bottom: 24px;
	}
}
#t-product .grid-item h3 {
	font-size: 1rem;
	margin-bottom: 20px;
	line-height: 1.2;
}
@media screen and (min-width: 821px) {
	#t-product .grid-item h3 {
		line-height: 1.6;
		margin-bottom: 36px;
		letter-spacing: initial;
	}
}
#t-product .grid-item h3 small {
	margin-top: 4px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
#t-product .grid-item > img {
	margin-bottom: 1.8rem;
	width: clamp(50px, 24.005px + 3.166vw, 62px);
	height: auto;
}
#t-product .grid-item .c-btn__buy {
	width: 68%;
}
#t-product .grid-item:not(:first-of-type) {
	border-left: solid 1px #9c9c9c;
}

#t-faq {
	position: relative;
	z-index: 10;
	width: 100%;
	background-color: #ffffff;
	margin-bottom: 100lvh;
	border-radius: 0 0 40px 40px;
}
@media screen and (min-width: 821px) {
	#t-faq {
		border-radius: 0 0 60px 60px;
	}
}
#t-faq .t-faq-inner {
	width: 84%;
	margin: 0 auto;
	padding-bottom: 110px;
}
@media screen and (min-width: 821px) {
	#t-faq .t-faq-inner {
		padding-bottom: 140px;
	}
}
#t-faq .c-ttl {
	padding: 100px 0 60px;
	margin: 0;
	width: 100%;
}
@media screen and (min-width: 821px) {
	#t-faq .c-ttl {
		padding: 110px 0 70px;
	}
}
#t-faq .l-container {
	border-bottom: solid 1px #9c9c9c;
}
#t-faq .t-faq-accordion__btn {
	position: relative;
	border-top: solid 1px #9c9c9c;
	border-bottom: solid 0px #9c9c9c;
	border-left: none;
	border-right: none;
	letter-spacing: 0.05rem;
	cursor: pointer;
	padding: 20px 28px;
	width: 100%;
	font-size: 1rem;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	color: #353535;
	text-align: left;
	background-color: transparent;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
@media screen and (min-width: 821px) {
	#t-faq .t-faq-accordion__btn {
		line-height: 30px;
		padding: 30px 28px;
	}
}
#t-faq .t-faq-accordion__btn:before {
	content: "Q";
	position: absolute;
	left: 5px;
	margin-top: -2px;
	display: inline-block;
	font-family: "Shippori Mincho", serif;
	font-size: 0.99rem;
}
#t-faq .t-faq-accordion__btn:after {
	content: "";
	position: absolute;
	top: 22px;
	right: 5px;
	width: 0.9em;
	height: 0.9em;
	background-image: url("../../image/arrow.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-size: contain;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}
@media screen and (min-width: 821px) {
	#t-faq .t-faq-accordion__btn:after {
		top: 36px;
	}
}
#t-faq .active:after {
	content: "";
	position: absolute;
	right: 5px;
	display: inline-block;
	width: 0.9em;
	height: 0.9em;
	background-image: url("../../image/arrow.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-size: contain;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
#t-faq .panel {
	padding: 0 18px 0 0;
	max-height: 0;
	overflow: hidden;
	-webkit-transition: max-height 0.4s ease-out;
	transition: max-height 0.4s ease-out;
}
#t-faq .panel p {
	margin: 0 auto 40px auto;
	line-height: 26px;
}
@media screen and (min-width: 821px) {
	#t-faq .panel p {
		line-height: 30px;
	}
}

#t-footer-hero {
	width: 100%;
	height: 100vh;
	height: 100lvh;
	overflow: hidden;
	margin-top: auto;
	position: fixed;
	left: 50%;
	bottom: 0;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: -10;
	visibility: hidden;
}
#t-footer-hero .t-footer-inner {
	height: 100%;
	width: 100%;
	background-image: url("../../image/footer-bg.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
	margin: auto;
}
@media screen and (min-width: 821px) {
	#t-footer-hero .t-footer-inner {
		width: 48%;
		right: 0;
		left: 0;
		margin: 0 auto;
	}
}
@media screen and (min-width: 1024px) {
	#t-footer-hero .t-footer-inner {
		width: 56%;
		max-width: 560px;
	}
}
#t-footer-hero .t-footer-inner__frame {
	height: 100%;
	width: 84%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-bottom: 20px;
	margin: auto;
	text-align: center;
}
#t-footer-hero .t-footer-inner__frame .l-footerCopyright {
	margin: 24px auto;
}
#t-footer-hero .t-footer-inner__frame .l-footerCopyright small {
	font-size: 0.769rem;
	letter-spacing: 0;
}
#t-footer-hero .t-footer-inner__frame .l-footerCopyright small span {
	font-size: 0.8rem;
}
#t-footer-hero .t-footer-inner__frame img {
	width: 136px;
	height: auto;
	margin-top: 60px;
}
@media screen and (min-width: 821px) {
	#t-footer-hero .t-footer-inner__frame img {
		display: none;
	}
}