html {
	scroll-padding-top: 120px;
}

body {
	color: #5F5F5F;
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 2.2;
	scroll-padding-top: 80px;
}

html.is-locked,
body.is-locked {
	overflow: hidden;
}

.u-pc {
	display: block;
}

.u-sp {
	display: none;
}

/* リキッドレイアウト対応 */

html {
	font-size: 16px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	line-height: 1.5;
	min-height: 100vh;
	text-rendering: optimizeLegibility;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	display: block;
	max-width: 100%;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

/* ホバー */

a {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s;
}

.inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1150px;
	padding-left: 25px;
	padding-right: 25px;
	width: 100%;
}

.section-gap {
	margin-top: 13.75rem;
}

.about__title {
	text-align: center;
}

.about__texts {
	margin-top: 2.5rem;
}

.about__text {
	text-align: center;
}

.about__text + .about__text {
	margin-top: 1lh;
}

.button {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}

.button::after {
	-webkit-mask-image: url(../images/icon_arrow.svg);
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	background-color: #fff;
	content: "";
	display: block;
	height: 0.5rem;
	mask-image: url(../images/icon_arrow.svg);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	right: 0.625rem;
	top: 50%;
	transform: translateY(-50%) rotate(-90deg);
	width: 1.1875rem;
}

.button span {
	-webkit-text-decoration: none;
	background-color: #3C4D50;
	background-image: none;
	border: none;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	line-height: 1.5;
	padding: 1.25rem 5rem;
	text-decoration: none;
	transition: 0.3s;
}

.company__contents {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.company__title {
	text-align: center;
}

.company__list-wrap {
	margin-top: 4rem;
}

.company__list {
	grid-column-gap: 2.5rem;
	-moz-column-gap: 2.5rem;
	border-bottom: 1px solid #5F5F5F;
	column-gap: 2.5rem;
	display: grid;
	grid-template-columns: 5rem 1fr;
	padding-bottom: 1.5rem;
	padding-left: 1rem;
	padding-right: 1rem;
}

.company__list + .company__list {
	margin-top: 1.5rem;
}

.company__img {
	margin-left: min(5.5555555556vw, 5rem);
	margin-right: auto;
	width: 25.75rem;
}

.company__img img,
.company__img picture {
	aspect-ratio: 380/423;
	height: auto;
	width: 100%;
}

.company-list__title.text,
.company-list__text.text {
	line-height: 1.5;
}

.contact {
	background-image: -webkit-image-set(url(../images/contact_bg.avif) type("image/avif"), url(../images/contact_bg.jpg) type("image/jpg"));
	background-image: image-set(url(../images/contact_bg.avif) type("image/avif"), url(../images/contact_bg.jpg) type("image/jpg"));
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 13.75rem;
	padding-top: 13.75rem;
}

.contact__title {
	text-align: center;
}

.contact__text {
	margin-top: 2.5rem;
	text-align: center;
}

.contact__form {
	margin-left: auto;
	margin-right: auto;
	margin-top: 5rem;
	max-width: 43.75rem;
}

.drawer {
	background: #fff;
	height: 100vh;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(100%);
	transition: transform 0.4s ease;
	width: min(80%, 400px);
	z-index: 110;
}

.drawer.is-open {
	transform: translateX(0);
}

.drawer__inner {
	height: 100%;
	overflow-y: auto;
	padding: 11.25rem 1.5rem 2.5rem;
}

.drawer__item + .drawer__item {
	margin-top: 3rem;
}

.drawer__item a {
	display: flex;
	flex-direction: column;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.5rem;
	font-weight: 500;
	gap: 0.5rem;
	letter-spacing: 0.1em;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
}

.drawer__item a span {
	font-family: "Noto Serif JP", serif;
	font-size: 0.8125rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1;
}

.drawer-overlay {
	background: rgba(95, 95, 95, 0.8);
	bottom: 0;
	left: 0;
	opacity: 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	visibility: hidden;
	z-index: 105;
}

.drawer-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.footer {
	background-color: #3C4D50;
	padding-bottom: 2.5rem;
	padding-top: 2.5rem;
}

.footer__copy {
	color: #fff;
	display: block;
	font-size: 0.8125rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.5;
	text-align: right;
}

.form-input input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #fff;
	background-image: none;
	border: 1px solid #5F5F5F;
	border-radius: 0;
	color: #5F5F5F;
	font-size: 1rem;
	line-height: 1.5;
	padding: 0.5rem;
	width: 100%;
}

.form-input input:focus {
	border: 1px solid #5F5F5F;
	box-shadow: none;
	outline: none;
}

.form-radio {
	display: flex;
	gap: 1.25rem;
}

.form-radio label {
	display: block;
}

.form-radio input {
	display: none;
}

.form-radio input + span {
	cursor: pointer;
	display: block;
	font-size: 1.125rem;
	letter-spacing: 0.05em;
	line-height: 1.5;
	padding: 0 0 0 1.5625rem;
	position: relative;
}

.form-radio input + span::before {
	background: #fff;
	border: 1px solid #5F5F5F;
	border-radius: 50%;
	content: "";
	display: block;
	height: 1rem;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1rem;
}

.form-radio input + span::after {
	background: #3C4D50;
	border: 1px solid transparent;
	border-radius: 50%;
	content: "";
	height: 0.625rem;
	left: 0.1875rem;
	opacity: 0;
	padding: 0.125rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.3s;
	width: 0.625rem;
}

.form-radio input:checked + span::after {
	opacity: 1;
}

.form-select {
	position: relative;
}

.form-select::after {
	-webkit-mask-image: url(../images/icon_arrow.svg);
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	background-color: #5F5F5F;
	content: "";
	display: block;
	height: 0.5rem;
	mask-image: url(../images/icon_arrow.svg);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	right: 0.625rem;
	top: 50%;
	transform: translateY(-50%);
	width: 1.1875rem;
}

.form-select select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #fff;
	border: 1px solid #5F5F5F;
	border-radius: 0;
	color: #5F5F5F;
	cursor: pointer;
	font-size: 1rem;
	line-height: 1.5;
	padding-bottom: 0.5rem;
	padding-left: 0.5rem;
	padding-right: 1.25rem;
	padding-top: 0.5rem;
	width: 100%;
}

.form-select select::-ms-expand {
	display: none;
}

.form-select select:focus {
	border: 1px solid #5F5F5F;
	box-shadow: none;
	outline: none;
}

.form-submit__button {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}

.form-submit__button::after {
	-webkit-mask-image: url(../images/icon_arrow.svg);
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	background-color: #fff;
	content: "";
	display: block;
	height: 0.5rem;
	mask-image: url(../images/icon_arrow.svg);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	right: 0.625rem;
	top: 50%;
	transform: translateY(-50%) rotate(-90deg);
	width: 1.1875rem;
}

.form-submit input {
	-webkit-text-decoration: none;
	background-color: #3C4D50;
	background-image: none;
	border: none;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	line-height: 1.5;
	padding: 1.25rem 5rem;
	text-decoration: none;
	transition: 0.3s;
}

.form-submit input:hover,
.form-submit input:focus {
	outline: none;
}

.form-submit input:hover {
	opacity: 0.8;
}

.form-submit input::-moz-foucus-inner {
	border: none;
	padding: 0;
}

.form-textarea textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #fff;
	background-image: none;
	border: 1px solid #5F5F5F;
	border-radius: 0;
	color: #5F5F5F;
	font-size: 1rem;
	height: 18.75rem;
	letter-spacing: 0.05em;
	line-height: 1.5;
	padding: 0.5rem;
	width: 100%;
}

.form-textarea textarea:focus {
	border: 1px solid #5F5F5F;
	box-shadow: none;
	outline: none;
}

.form__wrap + .form__wrap {
	margin-top: 2.5rem;
}

.form__label.text {
	font-size: 1.125rem;
	line-height: 1.5;
}

.form__input,
.form__select,
.form__textarea,
.form__privacy-content {
	margin-top: 0.25rem;
}

.form__privacy {
	margin-top: 2.5rem;
	text-align: center;
}

.form__privacy input {
	display: none;
}

.form__privacy input + span {
	cursor: pointer;
	display: inline-block;
	font-size: 1.125rem;
	letter-spacing: 0.05em;
	line-height: 1.5;
	padding: 0 0 0 2.5rem;
	position: relative;
}

.form__privacy input + span::before {
	background: #fff;
	border: 1px solid #5F5F5F;
	content: "";
	display: block;
	height: 1.25rem;
	left: 0;
	position: absolute;
	top: 0.1875rem;
	width: 1.25rem;
}

.form__privacy input + span::after {
	border-bottom: 0.1875rem solid #3C4D50;
	border-left: 0.1875rem solid #3C4D50;
	content: "";
	display: block;
	height: 0.5rem;
	left: 0.125rem;
	margin-top: -0.125rem;
	opacity: 0;
	position: absolute;
	top: 0.625rem;
	transform: rotate(-45deg);
	transition: 0.3s;
	width: 0.9375rem;
}

.form__privacy input + span a {
	-webkit-text-decoration: underline;
	text-decoration: underline;
}

.form__privacy input:checked + span::after {
	opacity: 1;
}

.form__submit {
	margin-top: 5rem;
}

.form__privacy-text {
	margin-top: 5rem;
}

.form__privacy-content {
	background-color: #fff;
	border: 1px solid #5F5F5F;
	height: 9.375rem;
	overflow-y: scroll;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.form__error {
	color: #A64B4B;
	font-size: 0.8125rem;
	letter-spacing: 0.05em;
	line-height: 1.5;
}

.fv {
	background-image: -webkit-image-set(url(../images/mv_bg.avif) type("image/avif"), url(../images/mv_bg.jpg) type("image/jpg"));
	background-image: image-set(url(../images/mv_bg.avif) type("image/avif"), url(../images/mv_bg.jpg) type("image/jpg"));
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 15rem;
	padding-top: 15rem;
}

.hamburger {
	height: 2.5rem;
	opacity: 0;
	position: fixed;
	right: 1.5625rem;
	top: 1rem;
	transform: translateY(-1rem);
	transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
	visibility: hidden;
	width: 2.5rem;
	z-index: 120;
}

.hamburger.is-show {
	opacity: 1;
	transform: translateY(0rem);
	visibility: visible;
}

.hamburger span {
	background: #5F5F5F;
	height: 2px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
	width: 1.875rem;
}

.hamburger span:nth-child(1) {
	top: 0.75rem;
}

.hamburger span:nth-child(2) {
	top: 1.1875rem;
}

.hamburger span:nth-child(3) {
	top: 1.625rem;
}

.hamburger.is-open span:nth-child(1) {
	top: 1.1875rem;
	transform: translateX(-50%) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
	opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
	top: 1.1875rem;
	transform: translateX(-50%) rotate(-45deg);
}

.header {
	-webkit-backdrop-filter: blur(0.3125rem);
	backdrop-filter: blur(0.3125rem);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 80%, transparent 100%);
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	transform: translateY(-1rem);
	transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease, filter 0.5s ease;
	visibility: hidden;
	width: 100%;
	z-index: 100;
}

.header.is-show {
	opacity: 1;
	transform: translateY(0px);
	visibility: visible;
}

.header__inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding-bottom: 1rem;
	padding-left: 1.5625rem;
	padding-right: 1.5625rem;
	padding-top: 1rem;
}

.header__logo {
	margin: 0;
	width: 4.875rem;
}

.mv {
	background-image: -webkit-image-set(url(../images/mv_bg.avif) type("image/avif"), url(../images/mv_bg.jpg) type("image/jpg"));
	background-image: image-set(url(../images/mv_bg.avif) type("image/avif"), url(../images/mv_bg.jpg) type("image/jpg"));
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100lvh;
	max-height: 50rem;
	min-height: 31.25rem;
}

.mv__inner.mv__inner {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
	text-align: center;
}

.mv__title {
	font-family: "Cormorant Garamond", serif;
	font-size: 7.5rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1;
}

.mv__subtitle {
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1;
	margin-top: 1.25rem;
}

.mv__title,
.mv__subtitle {
	opacity: 0;
	will-change: opacity, transform;
}

.privacy__inner {
	padding-bottom: 1.25rem;
}

.privacy__title {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5;
	margin-top: 1rem;
}

.privacy__text {
	font-size: max(10px, 0.8125rem);
	font-weight: 400;
	margin-top: 0.5rem;
	padding-left: 1.5em;
}

.product {
	background-image: -webkit-image-set(url(../images/product_bg.avif) type("image/avif"), url(../images/product_bg.jpg) type("image/jpg"));
	background-image: image-set(url(../images/product_bg.avif) type("image/avif"), url(../images/product_bg.jpg) type("image/jpg"));
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 7.5rem;
	padding-top: 7.5rem;
}

.product__contents {
	align-items: center;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.product__img-wrap {
	margin-right: min(5.5555555556vw, 5rem);
}

.product__texts {
	margin-top: 2.5rem;
}

.product__text + .product__text {
	margin-top: 1lh;
}

.recaptcha-note.text {
	font-size: max(10px, 0.8125rem);
	letter-spacing: 0.05em;
	line-height: 1.5;
	margin-top: 1.5rem;
	text-align: center;
}

.recaptcha-note a {
	-webkit-text-decoration: underline;
	text-decoration: underline;
}

.grecaptcha-badge {
	visibility: hidden;
}

.text {
	word-wrap: anywhere;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 2.2;
	word-break: keep-all;
}

.thanks {
	padding-bottom: 13.75rem;
}

.thanks__text {
	text-align: center;
}

.thanks__text + .thanks__text {
	margin-top: 1lh;
}

.thanks__link {
	margin-top: 5rem;
	text-align: center;
}

.title {
	font-family: "Cormorant Garamond", serif;
	font-size: 5rem;
	font-weight: 500;
	line-height: 1;
	list-style: 0.05em;
	text-transform: uppercase;
}

.blur-text > * {
	filter: blur(0.625rem);
	opacity: 0;
	transform: translateY(1.25rem);
}

.skew-mask {
	overflow: hidden;
}

.skew-mask__inner {
	display: inline-block;
	will-change: transform, filter, opacity;
}

@media (any-hover: hover) {

.button:hover {
	opacity: 0.8;
}

}

@media (max-width: 1100px) {

html {
	font-size: 1.4545454545vw;
}

}

@media screen and (max-width: 787px) {

html {
	scroll-padding-top: 100px;
}

}

@media screen and (max-width: 767px) {

.u-pc {
	display: none;
}

.u-sp {
	display: block;
}

html {
	font-size: 16px;
}

.inner {
	padding-left: 20px;
	padding-right: 20px;
}

.section-gap {
	margin-top: 10rem;
}

.company__contents {
	grid-template-columns: 1fr;
}

.company__list {
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	grid-template-columns: 3.75rem 1fr;
}

.company__img-wrap {
	margin-top: 2.5rem;
}

.company__img {
	margin: 0;
	width: 100%;
}

.contact {
	padding-bottom: 7.5rem;
	padding-top: 7.5rem;
}

.contact__form {
	margin-top: 2.5rem;
}

.drawer__inner {
	padding-top: 6.25rem;
}

.form-input input {
	font-size: 0.8125rem;
	padding: 0.25rem;
}

.form-radio input + span {
	font-size: 0.8125rem;
}

.form-select select {
	font-size: 0.8125rem;
	padding: 0.25rem;
}

.form-textarea textarea {
	font-size: 0.8125rem;
	height: 12.5rem;
}

.form__wrap + .form__wrap {
	margin-top: 2rem;
}

.form__label.text {
	font-size: 0.8125rem;
}

.form__privacy input + span {
	font-size: 1rem;
}

.form__submit {
	margin-top: 2.5rem;
}

.form__privacy-text {
	margin-top: 2.5rem;
}

.form__privacy-content {
	padding-left: 1rem;
	padding-right: 1rem;
}

.fv {
	padding-bottom: 11.25rem;
	padding-top: 11.25rem;
}

.hamburger {
	right: 1.25rem;
	top: 0.5rem;
}

.header__inner {
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.header__logo {
	width: 3.75rem;
}

.mv {
	height: 100dvh;
	max-height: 50rem;
	min-height: 25rem;
}

.mv__title {
	font-size: 5rem;
}

.mv__subtitle {
	font-size: max(10px, 0.8125rem);
}

.privacy__title {
	font-size: 0.8125rem;
}

.privacy__text {
	font-size: max(10px, 0.75rem);
	padding-left: 1em;
}

.product__contents {
	grid-template-columns: 1fr;
}

.product__img-wrap {
	margin-right: 0;
	margin-top: 2.5rem;
}

.product__text-area {
	display: contents;
}

.product__title {
	order: -1;
}

.recaptcha-note.text {
	font-size: 10px;
}

.text {
	font-size: 0.8125rem;
}

.title {
	font-size: 3.125rem;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}


/*# sourceMappingURL=style.css.map */
