html {
	font-size: 10px;
}

body {
	background: #fff;
	color: #725954;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.4rem;
	font-weight: 400;
}

body.noscroll {
	overflow: hidden;
}

a {
	display: block;
	transition: 0.2s;
}

a:hover {
	opacity: 0.8;
	transition: 0.2s;
}

dt {
	font-weight: normal;
}

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

*,
*::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;
}

th,
td {
	padding: 0;
}

/* Set core root defaults */

/* Set core body defaults */

body {
	text-rendering: optimizeSpeed;
}

/* 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%;
}

/* Inherit fonts for inputs and buttons */

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

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

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;
}

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

.footer {
	background: #e3d7ac;
	padding: 0.9rem 0 0.5rem;
}

.footer__logo {
	max-width: 7.5rem;
}

.footer__copyright {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-align: center;
}

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

.header {
	background: transparent;
	height: 4.5rem;
	left: 50%;
	max-width: 45rem;
	position: fixed;
	top: 0;
	transform: translateX(-50%);
	transition: height 0.6s background 0.6s;
	width: 100%;
	z-index: 10;
}

.header.is-active {
	background: #E3D7AC;
	height: 5.3rem;
}

.header__inner {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: space-between;
	padding: 0 1.7rem;
}

.header__logo {
	max-width: 4.9rem;
}

.header__logo.is-active {
	opacity: 0;
}

.header__nav {
	align-items: center;
	display: flex;
	flex: 1;
	gap: 1.2rem;
	justify-content: flex-end;
}

.header__btn {
	background: #e37210;
	color: #FFFFFF;
	line-height: 1.43;
	padding: 0.3rem 1.3rem;
	text-align: center;
}

.header__btn.is-active {
	opacity: 0;
}

.header__btn:hover {
	filter: brightness(110%);
	opacity: 1;
}

/*
 * l-inner
 * -------------------------------------------------------------
 */

.l-inner {
	margin: auto;
	padding: 0 1.6rem 1.6rem;
}

/*
 * l-main
 * -------------------------------------------------------------
 */

.l-main {
	overflow: hidden;
}

/*
 * l-wrap
 * -------------------------------------------------------------
 */

.l-wrap {
	margin: 0 auto;
	max-width: 45rem;
}

/*
 * burger
 * -------------------------------------------------------------
 */

.burger {
	height: 1.3rem;
	position: relative;
	width: 3.8rem;
	z-index: 10;
}

.burger span {
	background: #76440e;
	display: block;
	height: 1px;
	position: absolute;
	transition: all 0.2s;
	width: 100%;
}

.burger span:nth-child(1) {
	top: 0;
}

.burger span:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}

.burger span:nth-child(3) {
	bottom: 0;
	max-width: 2.5rem;
	right: 0;
}

.burger span.is-active {
	background: #000;
}

.burger span.is-active:nth-child(1) {
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}

.burger span.is-active:nth-child(2) {
	opacity: 0;
}

.burger span.is-active:nth-child(3) {
	max-width: 100%;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

/*
 * nav
 * -------------------------------------------------------------
 */

.nav {
	background: rgba(227, 215, 172, 0.8);
	height: 100vh;
	left: 50%;
	max-width: 45rem;
	opacity: 0;
	padding: 1.6rem 4.4rem 3rem;
	position: fixed;
	top: 5.3rem;
	transform: translateX(-50%);
	transition: all 0.5s;
	visibility: hidden;
	width: 100%;
}

.nav.is-active {
	opacity: 1;
	overflow: auto;
	transition: all 0.6s;
	visibility: visible;
	z-index: 10;
}

.nav__items {
	display: flex;
	flex-direction: column;
	gap: 2.3rem;
	margin: 0 auto;
	max-width: 27.7rem;
}

.nav__link {
	background: #e3d7ac;
	color: #76440E;
	font-family: "Noto Serif JP", serif;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.2;
	padding: 1.9rem 2.2rem 2.3rem;
}

.nav__link:hover {
	opacity: 1;
}

/*
 * about
 * -------------------------------------------------------------
 */

.about {
	position: relative;
}

.about__text {
	position: absolute;
	top: -5rem;
	width: 100%;
}

.about__Body {
	margin-top: 0.3rem;
}

/*
 * about02
 * -------------------------------------------------------------
 */

.about02__head {
	margin-left: 0.8rem;
	max-width: 34.7rem;
}

.about__body {
	margin-top: 0.6rem;
}

/*
 * benefits
 * -------------------------------------------------------------
 */

.benefits {
	background: url(./../images/benefits_bg.webp) no-repeat top/cover;
	margin-top: -4.6rem;
	padding: 7.4rem 0 1.9rem;
}

.benefits__head {
	margin: 0 auto;
	max-width: 30.5rem;
}

.benefits__head::after {
	background: url(./../images/benefits_arrow.webp) no-repeat center/100%;
	content: "";
	display: block;
	height: 5.1rem;
	margin: 0.6rem auto 0;
	width: 8.3rem;
}

.benefits__head-text {
	line-height: 1.89;
	margin-top: 2.1rem;
	padding: 0 1rem;
}

.benefits__body {
	background: #fff;
	border-radius: 1rem;
	padding: 3rem 1.5rem 2rem;
}

.benefits__body-text {
	line-height: 1.93;
	margin: 0 auto;
	max-width: 27.3rem;
	position: relative;
	z-index: 1;
}

.benefits__body-text .underline {
	position: relative;
}

.benefits__body-text .underline:after {
	background: #faff6e;
	border-radius: 1rem;
	bottom: -0.3rem;
	content: "";
	display: block;
	height: 1.4rem;
	margin-top: -3rem;
	position: absolute;
	width: 100%;
	z-index: -1;
}

.benefits__head-ttl02 {
	margin: 3.6rem auto 0;
	max-width: 26.8rem;
}

.benefits__items {
	display: flex;
	flex-direction: column;
	gap: 2.4rem;
	margin-top: 1rem;
}

.benefits__item {
	position: relative;
}

.benefits__ttl {
	height: -moz-fit-content;
	height: fit-content;
	left: -0.2rem;
	max-width: 30rem;
	position: absolute;
	top: 0;
}

.benefits__img {
	border-radius: 1rem;
}

.benefits03 .benefits__ttl {
	bottom: 1.2rem;
	left: -0.4rem;
	top: auto;
}

.benefits__bottom {
	margin-top: 0.8rem;
}

/*
 * cta
 * -------------------------------------------------------------
 */

.cta {
	padding-bottom: 2rem;
}

.cta__btn {
	margin: -8rem auto 0;
	max-width: 24.5rem;
}

.cta__btn:hover {
	filter: brightness(120%);
	opacity: 1;
	transform: translateY(-0.3rem);
}

/*
 * faq
 * -------------------------------------------------------------
 */

.faq {
	background: #fff;
	padding: 5rem 0 5.8rem;
}

.faq__head {
	color: #76440E;
	font-family: "Noto Serif JP", serif;
	font-size: 2.5rem;
	font-weight: 600;
	text-align: center;
}

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 2.2rem;
	margin-top: 2.7rem;
}

.faq__question {
	align-items: center;
	background: #fff;
	border-radius: 1rem 1rem 0 0;
	cursor: pointer;
	display: flex;
	gap: 1.2rem;
	padding: 1.6rem 1rem 1.6rem 1.6rem;
	transition: background 0.2s;
}

.faq__question.open {
	background: #e37210;
}

.faq__eng {
	align-items: center;
	background: #E37210;
	border-radius: 50%;
	color: #fff;
	display: inline-block;
	display: grid;
	font-family: "Montserrat", sans-serif;
	font-size: 1.6rem;
	font-weight: 600;
	height: 3.6rem;
	justify-items: center;
	min-width: 3.6rem;
	place-items: center;
	transition: background 0.2s color 0.2s;
	width: 3.6rem;
}

.faq__q.open {
	background: #fff;
	color: #e37210;
}

.faq__ttl {
	color: #E37210;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.2;
	transition: all 0.2s;
}

.faq__ttl.open {
	color: #fff;
}

.faq__btn {
	display: inline-block;
	height: 1.6rem;
	margin-left: auto;
	min-width: 1.6rem;
	position: relative;
	width: 1.6rem;
}

.faq__btn::before,
.faq__btn::after {
	background: #99837c;
	content: "";
	display: block;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

/* | */

.faq__btn::before {
	height: 100%;
	transition: transform 0.2s;
	width: 0.2rem;
}

/* - */

.faq__btn::after {
	height: 0.2rem;
	width: 100%;
}

.faq__btn.open::before {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq__btn.open::before,
.faq__btn.open::after {
	background: #fff;
}

.faq__answer {
	display: none;
	padding: 1.6rem 1rem 1.6rem 1.6rem;
}

.faq__content {
	align-items: center;
	display: flex;
	gap: 1.2rem;
}

.faq__text {
	color: #76440E;
	letter-spacing: 0.04em;
	line-height: 1.8;
}

/*
 * flow
 * -------------------------------------------------------------
 */

.flow {
	background: #fff;
	padding: 2rem 0 2.3rem;
}

.flow__inner {
	background: url(./../images/flow_bg.webp) no-repeat top/cover;
	margin: 0 auto;
	max-width: calc(100% - 3.2rem);
	padding: 2rem 1.6rem 4.5rem;
}

.flow__head {
	background: #fff;
	border-radius: 0.5rem;
	color: #000000;
	font-family: "Noto Serif JP", serif;
	font-size: 2.5rem;
	font-weight: 600;
	padding: 0.9rem 1.8rem 0.9rem 1.3rem;
	text-align: center;
}

.flow__items {
	margin-top: 4rem;
}

.flow__item:not(:last-child)::after {
	background: #725954;
	content: "";
	display: block;
	height: 3.5rem;
	margin: 1rem auto;
	width: 0.3rem;
}

.flow__item-head {
	align-items: center;
	background: #99837c;
	border-radius: 0.5rem 0.5rem 0 0;
	display: grid;
	height: 6.9rem;
	justify-items: center;
	place-items: center;
	position: relative;
}

.flow__num {
	display: block;
	left: -1.3rem;
	max-width: 7.3rem;
	position: absolute;
	top: -3.1rem;
	width: 100%;
}

.flow__ttl {
	color: #FFFFFF;
	font-family: "Noto Serif JP", serif;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.2;
}

.flow__item-body {
	background: #fff;
	border-radius: 0 0 0.5rem 0.5rem;
	padding: 2.2rem 3.3rem;
	position: relative;
}

.flow__img {
	border-radius: 0.5rem;
}

/* flow01
---------------------------------------- */

.flow__cta {
	margin-top: 0;
}

.flow01 .flow__item-body {
	padding-bottom: 3rem;
	padding-top: 2.7rem;
}

.flow01 .flow__item-body::after {
	background: url(./../images/flow_click.webp) no-repeat center/100%;
	bottom: -0.7rem;
	content: "";
	display: block;
	height: 4.8rem;
	max-width: 7rem;
	position: absolute;
	right: 0.7rem;
	width: 100%;
}

/*
 * fv
 * -------------------------------------------------------------
 */

.fv__body {
	aspect-ratio: 375/677;
}

/*期間限定デザイン追加用CSS*/
.fv_wrap {
	position: relative;
}

.cta-wrap {
	position: relative;
}

.fv_text {
	position: absolute;
	top: 10%;
	left: 10%;
	transform: translate(-75%, -75%);
	text-align: center;
	color: #fff;
	font-size: 1.2em;
	font-weight: 400;
	z-index: 2;
	font-style: italic;
}

.cta-text {
	position: absolute;
	top: 0%;
	left: 30%;
	transform: translate(-70%, 85%);
	text-align: center;
	color: #fff;
	font-size: 1.6em;
	font-weight: 400;
	z-index: 2;
}



.fv__hidden {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

/*
 * message
 * -------------------------------------------------------------
 */

.message {
	background: url(./../images/message_bg.webp) no-repeat top/cover;
	padding: 2.2rem 0;
}

.message__head {
	margin: 0 auto;
	max-width: 26.8rem;
}

.message__img {
	border-radius: 1rem;
	margin: 1.3rem auto 0;
	max-width: 16.7rem;
	overflow: hidden;
}

.message__body {
	background: #fff;
	border-radius: 1rem;
	margin-top: -7.3rem;
	padding: 9.2rem 2rem 5rem;
}

.message__text {
	color: #76440E;
	font-family: "Noto Serif JP", serif;
	font-weight: 600;
	line-height: 1.2;
}

/*
 * problem
 * -------------------------------------------------------------
 */

.problem {
	margin-top: -1.2rem;
}

/*
 * reason
 * -------------------------------------------------------------
 */

.reason {
	background: #F6F3E9;
	padding-bottom: 2rem;
}

.reason__body {
	margin-top: 0.5rem;
}

.reason__item {
	background: #fff;
	border-radius: 1rem;
	padding: 3.6rem 2.4rem 2.6rem;
	position: relative;
}

.reason__num {
	display: block;
	left: 1.1rem;
	max-width: 4.6rem;
	position: absolute;
	top: -1rem;
	width: 100%;
}

.reason__dl {
	color: #915310;
	line-height: 1.2;
	margin-right: calc(50% - 50vw);
	margin-top: 0.8rem;
}

.reason__dl-item {
	display: flex;
}

.reason__dl-item.underline {
	background: linear-gradient(transparent 60%, #FAFF6E 0%);
	max-width: -moz-fit-content;
	max-width: fit-content;
	padding-bottom: 0.6rem;
	padding-right: 0.5rem;
}

.reason__img {
	border-radius: 0.5rem;
	margin-top: 2.9rem;
	overflow: hidden;
}

.reason__text {
	color: #915310;
	line-height: 1.2;
	margin-top: 2.1rem;
}

/* 01
-------------------------------------- */

.reason01 {
	position: relative;
	z-index: 1;
}

.reason01 .reason__item-head {
	margin-left: 1rem;
}

.reason01 .reason__ttl {
	max-width: 24rem;
}

.reason01 .reason__text {
	line-height: 1.86;
}

/* 02
-------------------------------------- */

.reason02 {
	margin-top: 3rem;
}

.reason02::before {
	background: url(./../images/reason02_obj.webp) no-repeat center/100%;
	content: "";
	display: block;
	height: 6.7rem;
	position: absolute;
	right: 1.3rem;
	top: -3.3rem;
	width: 4.8rem;
}

.reason02 .reason__img {
	display: flex;
	justify-content: center;
	margin: 0 calc(50% - 50vw);
}

.reason02 .reason__img img {
	max-width: 34.8rem;
}

.reason02 .reason__text {
	margin-top: 2.5rem;
}

.reason__lead {
	background: linear-gradient(187.87deg, rgba(255, 219, 87, 0.5) 32.18%, rgba(251, 174, 92, 0.5) 87.86%), #FFFFFF;
	border-radius: 1rem;
	color: #915310;
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 auto;
	max-width: 27rem;
	padding: 1.2rem 4rem 1.7rem 3.4rem;
}

/* 03
-------------------------------------- */

.reason03 {
	margin-top: 4.7rem;
	padding: 4.2rem 0 2.6rem;
}

.reason03 .reason__ttl {
	padding: 0 0.2rem 0 1.5rem;
}

.reason03__guide {
	position: relative;
	z-index: 1;
}

.reason03__bottom {
	margin-top: -4.3rem;
}

.reason03 .reason__img {
	margin-top: 4.7rem;
	padding: 0 0.2rem 0 1.1rem;
}

.reason03__bottom-imgWrap {
	margin-top: -2.4rem;
	padding: 0 2.3rem;
}

.reason03__lead-wrap {
	font-family: "Noto Serif JP", serif;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-top: 3rem;
	padding: 0 0.2rem 0 1.2rem;
}

.reason03__lead-lg {
	color: #76440E;
	position: relative;
	z-index: 1;
}

.reason03__lead-lg .underline {
	position: relative;
}

.reason03__lead-lg .underline::after {
	background: #FAFF6E;
	bottom: -0.6rem;
	content: "";
	display: block;
	height: 1.9rem;
	left: 0.6rem;
	max-width: 30.6rem;
	position: absolute;
	width: 100%;
	z-index: -1;
}

.reason__fs25-color {
	color: #E37210;
	font-family: "Noto Serif JP", serif;
	font-size: 2.5rem;
	font-weight: 700;
}

.reason03__lead-sm {
	color: #E37210;
	margin: 3.5rem auto 0;
	width: -moz-fit-content;
	width: fit-content;
}

/* 04
-------------------------------------- */

.reason04 {
	margin-top: 3.5rem;
}

.reason04 .reason__img {
	border-radius: 0;
	margin-top: 2rem;
}

.reason04 .reason__text {
	color: #76440E;
	line-height: 1.79;
	margin-top: 0.8rem;
	padding-left: 0.2rem;
}

.reason04 .reason__text .underline {
	background: linear-gradient(transparent 55%, #FAFF6E 0%);
	padding-bottom: 0.1rem;
	padding-left: 0.2rem;
}

/*
 * review
 * -------------------------------------------------------------
 */

.review {
	position: relative;
	z-index: 1;
}

.review::after {
	background: url(./../images/review_wave.webp) no-repeat center/100%;
	content: "";
	display: block;
	height: 4.6rem;
	margin-top: -0.3rem;
	width: 100%;
}

.review__body {
	background: url(./../images/review_bg.webp) no-repeat top/cover;
	background-position-y: 1.5rem;
	padding-bottom: 3rem;
}

.review__top {
	position: relative;
	z-index: 1;
}

.review__head {
	margin-top: -6.8rem;
	position: relative;
}

.review__items {
	display: flex;
	flex-direction: column;
	gap: 3.7rem;
	margin-top: -1rem;
}

.review__item {
	background: rgba(255, 255, 255, 0.7);
	border-radius: 1rem;
	padding: 4.3rem 2.7rem 4rem;
}

.review__img {
	border-radius: 50%;
	margin: 0 auto;
	max-width: 22rem;
	overflow: hidden;
}

.review__person {
	margin-top: 1rem;
	text-align: center;
}

.review__ttl {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.2;
	margin-top: 1.7rem;
	text-align: center;
}

.review__text {
	font-size: 1.6rem;
	line-height: 1.3;
	margin-top: 2.4rem;
	padding-right: 1.7rem;
}

.review01 {
	padding-top: 6rem;
}

.review03 {
	padding-top: 5rem;
}

/*
 * studios
 * -------------------------------------------------------------
 */

.studio {
	background: #fff;
	padding: 3.8rem 0 6rem;
}

.studio__head {
	color: #000000;
	font-family: "Noto Serif JP", serif;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.6;
}

.studio__area {
	border-bottom: 1px solid #CACACA;
	color: #76440E;
}

.studio__area-head {
	align-items: center;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	padding: 3.2rem 1.3rem 3.2rem 0;
}

.studio__area:nth-of-type(1) .studio__area-head {
	margin-top: 5rem;
	padding: 0 1.3rem 2.3rem 0;
}

.studio__area-name {
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.7;
}

.studio__area-btn {
	display: inline-block;
	height: 2rem;
	position: relative;
	width: 2rem;
}

.studio__area-btn::before,
.studio__area-btn::after {
	background: #76440e;
	content: "";
	display: block;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.studio__area-btn::before {
	height: 100%;
	transition: transform 0.2s;
	width: 1px;
}

.studio__area-btn::after {
	height: 1px;
	width: 100%;
}

.studio__area-btn.open::before {
	transform: translate(-50%, -50%) rotate(90deg);
}

.studio__group {
	display: none;
}

.studio__card {
	font-size: 1.6rem;
	line-height: 1.6;
	padding-bottom: 5rem;
}

.studio__card:first-child {
	padding-top: 1.5rem;
}

.studio__card:last-child {
	padding-bottom: 3.2rem;
}

.studio__name {
	font-weight: 700;
}

.studio__addr {
	margin-top: 1rem;
}

.studio__img {
	aspect-ratio: 338/230;
	border-radius: 1rem;
	margin-top: 5rem;
	overflow: hidden;
}

.studio__img img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
}

.studio__btns {
	margin-top: 1.7rem;
}

.studio__btn {
	align-items: center;
	border-radius: 0.5rem;
	display: grid;
	font-family: "Noto Serif JP", serif;
	font-size: 1.6rem;
	font-weight: 700;
	height: 5.5rem;
	justify-items: center;
	line-height: 1.6;
	margin-top: 1.7rem;
	place-items: center;
	width: 100%;
}

.studio__btn:hover {
	filter: brightness(110%);
	opacity: 1;
	transform: translateY(-0.3rem);
}

.studio__btn-beige {
	background: #e3d7ac;
	color: #76440E;
}

.studio__btn-red {
	background: #e37210;
	color: #fff;
}

/* 追加
------------------------------------------------ */

.studio__pref:not(:nth-child(1)) {
	margin-top: 0.7rem;
}

.studio__pref:last-child {
	margin-bottom: 3.2rem;
}

.studio__pref.open:last-child {
	margin-bottom: 0;
}

.studio__pref .studio__group {
	display: none;
}

.studio__area.is-open>.studio__pref {
	display: block;
}

.studio__pref.is-open>.studio__group {
	display: block;
}

.studio__pref-head {
	align-items: center;
	border: 1px solid #E3D7AC;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 1.5rem 0.5rem 0.5rem;
}

.studio__pref-name {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.7;
}

.studio__pref-btn {
	display: inline-block;
	height: 1.3rem;
	position: relative;
	width: 1.3rem;
}

.studio__pref-btn::before,
.studio__pref-btn::after {
	background: #76440e;
	content: "";
	display: block;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.studio__pref-btn::before {
	height: 100%;
	transition: transform 0.2s;
	width: 1px;
}

.studio__pref-btn::after {
	height: 1px;
	width: 100%;
}

.studio__pref-btn.open::before {
	transform: translate(-50%, -50%) rotate(90deg);
}

.studio__pref-wrap {
	display: none;
}

/*
 * u-pc
 * -------------------------------------------------------------
 */

.u-pc {
	display: block;
}

/*
 * u-sp
 * -------------------------------------------------------------
 */

.u-sp {
	display: none;
}

.footer_links_wrap {
	padding: 0 1.6rem 6rem;
}

.footer__links {
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
	/* 左寄せ */
}

.footer__links a {
	color: #666;
	font-size: 1.5em;
	text-decoration: none;
	transition: color 0.3s;
}

.footer__links a:hover {
	color: #000;
	text-decoration: underline;
}

@media screen and (min-width: 1025px) {

	a[href^="tel:"] {
		pointer-events: none;
	}
}

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

	.u-pc {
		display: none;
	}

	.u-sp {
		display: block;
	}

	.fv_text {
		position: absolute;
		top: 10%;
		left: 10%;
		transform: translate(-75%, -80%);
		text-align: center;
		color: #fff;
		font-size: 1em;
		font-weight: 400;
		z-index: 2;
		font-style: italic;
	}

	.cta-text {
		position: absolute;
		top: 0%;
		left: 30%;
		transform: translate(-70%, 82%);
		text-align: center;
		color: #fff;
		font-size: 1.6em;
		font-weight: 400;
		z-index: 2;
	}
}

@media screen and (min-width:376px) and (max-width:430px) {
	.cta-text {
		position: absolute;
		top: 0%;
		left: 30%;
		transform: translate(-70%, 80%);
		text-align: center;
		color: #fff;
		font-size: 1.5em;
		font-weight: 400;
		z-index: 2;
	}
}

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

	html {
		font-size: 2.67vw;
	}

	.fv_text {
		position: absolute;
		top: 10%;
		left: 10%;
		transform: translate(-75%, -80%);
		text-align: center;
		color: #fff;
		font-size: 1em;
		font-weight: 400;
		z-index: 2;
		font-style: italic;
	}

	.cta-text {
		position: absolute;
		top: 0%;
		left: 30%;
		transform: translate(-70%, 69%);
		text-align: center;
		color: #fff;
		font-size: 1.5em;
		font-weight: 400;
		z-index: 2;
	}
}


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