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

html {
	font-size: 16px;
	height: 100%;
}

body {
	color: #595757;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	line-height: 1.7;
}

img,
video,
object {
	border: none;
	display: block;
	height: auto;
	max-width: 100%;
}

a {
	color: #595757;
	text-decoration: none;
	transition: opacity 0.3s;
}

a:hover {
	opacity: 0.7;
}

/*===================================================================
# ヘッダー
===================================================================*/

.header {
	background-color: #fff;
	height: 90px;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}

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

.header__logo a img {
	height: auto;
	vertical-align: middle;
	width: 109px;
}

.header__nav {
	align-items: center;
	display: none;
	justify-content: end;
}

.header__list {
	display: flex;
	-moz-column-gap: 20px;
	column-gap: 20px;
}

.header__list li a {
	color: #595757;
	font-size: 14px;
}

/*===================================================================
# フッター
===================================================================*/

.footer {
	padding-block: 0 27px;
	text-align: center;
}

.footer__copyright {
	display: inline-block;
	font-family: "Open Sans", "Noto Sans JP", sans-serif;
	font-size: 8px;
	line-height: 0.8;
}

.footer__list {
	display: flex;
	justify-content: center;
	-moz-column-gap: 10px;
	column-gap: 10px;
	margin-block-end: -5px;
}

.footer__item {
	font-family: "Open Sans", "Noto Sans JP", sans-serif;
	font-size: 8px;
	line-height: 0.8;
}

.footer__item:not(:first-child) {
	position: relative;
}

.footer__item:not(:first-child)::before {
	background-color: #595757;
	content: "";
	height: 0.8em;
	left: -5px;
	opacity: 0.8;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	width: 1px;
}

.footer__mail {
	font-family: "Open Sans", "Noto Sans JP", sans-serif;
	font-size: 8px;
	line-height: 0.8;
}

/*===================================================================
# Button
===================================================================*/

/* 端からの余白をビューポート基準で管理 */

:root {
	--cta-gutter: 20px;
}

.reserve-btn {
	bottom: clamp(10px, 2vh, 40px);
	height: auto;
	opacity: 0;
	pointer-events: none;
	position: fixed; /* 右端からの距離をビューポート基準に。セーフエリア＞指定余白＞最低16px */
	right: max(env(safe-area-inset-right), var(--cta-gutter), 16px);
	transform: translateY(10px) scale(0.96);
	transition: opacity 0.28s ease, transform 0.28s ease;
	width: 90px;
	will-change: opacity, transform;
	z-index: 100;
}

.reserve-btn.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

/*===================================================================
# Drawer
===================================================================*/

.drawer {
	background: #e8d7da;
	height: 100vh; /* svhに対応しないスマホ用 */
	height: 100svh; /* 画面下のメニューを考慮する */
	overflow-y: scroll;
	position: fixed;
	right: 0;
	top: 0;
	transition: translate 0.5s ease;
	translate: 101%;
	width: 100%;
	z-index: 101;
}

.drawer.js-show {
	translate: 0%;
}

.drawer__body {
	height: -moz-fit-content;
	height: fit-content;
	padding-block: 88px 40px;
	width: 100%;
}

.drawer__list {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin-bottom: 40px;
	row-gap: 32px;
}

.drawer__list li a {
	color: #595757;
	font-size: 16px;
	line-height: normal;
}

.drawer__icon {
	display: flex;
	flex-direction: column;
	height: 25px;
	justify-content: space-between;
	left: 25px;
	position: fixed;
	top: 32.5px;
	width: 30px;
	z-index: 102;
}

.drawer__icon--bar {
	background-color: #666464;
	border-radius: 2px;
	height: 2px;
	transform-origin: center;
	transition: all 0.5s ease;
	width: 100%;
}

/* メニューが開いている時 */

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
	rotate: 45deg;
	translate: 0 11.5px;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
	display: none;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
	rotate: -45deg;
	translate: 0 -11.5px;
}

/*===================================================================
# インナー幅
===================================================================*/

.inner {
	margin-inline: auto;
	max-width: 480px;
	padding-inline: 20px;
}

/*===================================================================
# Animation
===================================================================*/

/* 出現アニメーション：ふわっと表示 */

.js-fadein {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.5s ease, transform 0.5s ease;
	will-change: opacity, transform;
}

.js-fadein.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/*===================================================================
# Fv
===================================================================*/

.fv {
	background-color: #e8d7da;
	padding-block: 90px 0;
}

.fv__category-text {
	line-height: 1.45;
	padding-block: 17px 21px;
	text-align: right;
}

.fv__category-text--jp {
	font-size: 14px;
}

.fv__category-text--en,
.fv__category-text--slash {
	display: inline-block;
	font-size: 13px;
	line-height: 1;
}

.fv__category-text--en {
	letter-spacing: -0.05em;
}

.fv__category-text--slash-en {
	padding-inline: 0.3em;
}

.fv__img-container {
	display: block;
	margin-inline: auto;
	max-width: 480px;
	position: relative;
}

.fv__img-container::before {
	background: #fff;
	content: "";
	inset: 0;
	position: absolute;
	z-index: 0;
}

.fv__img {
	animation: fvImgIn 5s ease-out forwards;
	animation-delay: 0.2s;
	margin-inline: auto;
	opacity: 0;
	position: relative;
	width: 100%;
	z-index: 1;
}

.fv__about {
	background-color: #fff;
	margin-block-start: 25px;
	padding: 19px 17px 22px;
}

.fv__about-title {
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.08;
	text-align: center;
}

.fv__about-text-container {
	margin-block-start: 18px;
}

.fv__about-text {
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.5;
}

.fv__about-text + .fv__about-text {
	margin-block-start: 13px;
}

/* 画像のフェードインアニメーション */

/*===================================================================
# Profile
===================================================================*/

.profile {
	background-color: #e8d7da;
	padding-block: 35px 15px;
}

.profile__inner {
	padding-inline: 18px;
}

.profile__content-container {
	display: flex;
	justify-content: center;
	-moz-column-gap: 17.5px;
	column-gap: 17.5px;
}

.profile__img {
	flex: 1 1 auto;
}

.profile__texts {
	flex: 0 0 160px;
	padding-block-start: 33px;
}

.profile__role {
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 11px;
	font-weight: 700;
}

.profile__name-wrapper {
	align-items: flex-end;
	display: flex;
	justify-content: space-between;
	margin-block-start: 12px;
}

.profile__name-jp {
	font-family: "Kiwi Maru", serif;
	font-size: 15px;
}

.profile__name-en {
	font-family: "Open Sans", sans-serif;
	font-size: 10px;
	font-weight: 300;
	letter-spacing: 0.36em;
	padding-block-end: 1px;
}

.profile__list {
	margin-block-start: 15px;
}

.profile__item {
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 10px;
	font-weight: 500;
	line-height: 1.55;
	padding-inline-start: 8px;
	position: relative;
}

.profile__item::before {
	content: "■";
	font-size: 3.5px;
	left: 0;
	position: absolute;
	top: 5px;
}

.profile__item:first-child {
	line-height: 1.2;
}

.profile__item--second {
	padding-inline-start: 0.4em;
}

.profile__message {
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 12px;
	letter-spacing: -0.04em;
	line-height: 2.08;
	margin-block-start: 31px;
	text-align: center;
}

/*===================================================================
# Service
===================================================================*/

.service {
	background-color: #fff;
	position: relative;
}

.service__inner {
	margin-inline: auto;
	max-width: 480px;
}

.service__curve {
	height: auto;
	left: 50%;
	position: absolute;
	top: -1px;
	translate: -50%;
	width: 100%;
}

.service__upper {
	padding-block: 34px 20px;
}

.service__upper-list {
	text-align: center;
}

.service__upper-item {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.89;
}

.service__upper-galleries {
	display: flex;
	margin-block-start: 17px;
}

.service__upper-instagram {
	display: flex;
	justify-content: center;
	margin-block-start: 30px;
}

.service__upper-instagram-link span {
	font-family: "Open Sans", "Noto Sans JP", sans-serif;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.75;
	transition: color 0.3s ease;
}

.service__upper-instagram-icon {
	height: 29px;
	margin-inline: auto;
	transition: opacity 0.7s ease;
	width: 29px;
}

.service__lower {
	border-top: 1px solid rgba(232, 215, 218, 0.9);
	padding-block: 12px 10px;
}

.service__lower-title {
	color: #a66276;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	line-height: 1.42;
	text-align: center;
}

.service__lower-content-wrapper {
	display: flex;
	justify-content: space-between;
	margin-block: 15px 19px;
}

.service__lower-list {
	flex: 0 0 216px;
	margin-inline-start: 19px;
	max-width: 216px;
}

.service__lower-item + .service__lower-item {
	margin-block-start: 8px;
}

.service__lower-item-title {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 2.13;
}

.service__lower-item-text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 12px;
	font-weight: 500;
	line-height: 2;
}

.service__lower-img {
	flex: 1 1 auto;
	margin-block-start: 8px;
	max-width: 200px;
}

.service__lower-message {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.74;
	text-align: center;
}

/*===================================================================
# Access
===================================================================*/

.access {
	background-color: #e8d7da;
	padding-block: 20px 53px;
}

.access__title {
	font-family: "Open Sans", sans-serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.75;
	text-align: center;
}

.access__map-wrapper {
	padding-top: 50.625%;
	position: relative;
	width: 100%;
}

.access__map-wrapper iframe {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.access__salon-name-wrapper {
	align-items: center;
	display: flex;
}

.access__salon-name-wrapper--1 {
	-moz-column-gap: 10px;
	column-gap: 10px;
	margin-block-start: 23px;
}

.access__salon-name {
	flex: 0 0 auto;
	font-family: "Open Sans", "Noto Sans JP", sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.458;
}

.access__salon-name-line {
	background-color: #666464;
	height: 0.7px;
	width: 100%;
}

.access__salon-address,
.access__salon-tel {
	font-family: "Open Sans", "Noto Sans JP", sans-serif;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.667;
}

.access__salon-address {
	margin-block-start: 5px;
}

.access__salon-name-wrapper--2 {
	margin-block-start: 16px;
	-moz-column-gap: 20px;
	column-gap: 20px;
}

.access__salon-tel--2 {
	margin-block-start: 6px;
}

.access__line-link {
	display: block;
	margin-block-start: 12px;
	text-align: center;
}

.access__line-link span {
	color: #00b900;
	font-size: 10px;
	font-weight: 500;
	line-height: 1.749;
}

.access__line-link img {
	height: auto;
	margin: -3px auto 0;
	width: 96px;
}

/*===================================================================
# Company
===================================================================*/

.company {
	padding-block: 0 34px;
	position: relative;
}

.company__curve {
	left: 50%;
	position: absolute;
	top: 17px;
	translate: -50%;
	width: 100%;
	z-index: 1;
}

.company__galleries {
	display: grid;
	gap: 13px;
	grid-template-columns: repeat(2, 1fr);
	margin-block-start: -19px;
	position: relative;
	z-index: 2;
}

.company__info {
	margin-block: 81px 0;
}

.company__name {
	font-family: "Open Sans", "Noto Sans JP", sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.75;
	text-align: center;
}

.company__info-list {
	margin-block-start: 10px;
}

.company__info-row {
	align-items: baseline;
	display: flex;
	-moz-column-gap: 10px;
	column-gap: 10px;
}

.company__info-term,
.company__info-desc {
	font-family: "Open Sans", "Noto Sans JP", sans-serif;
	font-size: 10px;
	line-height: 1.98;
}

.company__info-service-list {
	display: flex;
	flex-direction: column;
}

.company__info-term {
	flex-shrink: 0;
	width: 4em;
}

.company__info-desc {
	flex-shrink: 1;
}

/*===================================================================
# ブレークポイントによる表示 / 非表示
===================================================================*/

.show__sp {
	display: block; /* spのみ表示 */
}

.show__tab {
	display: none; /* tabのみ表示 */
}

.show__tab-pc {
	display: none; /* tab～pc間のみ表示 */
}

@media (any-hover: hover) {

.reserve-btn:hover {
	opacity: 0.7;
}

.service__upper-instagram-link:hover {
	opacity: 1;
}

.service__upper-instagram-link:hover span {
	color: #a66276;
	opacity: 1;
}

.service__upper-instagram-link:hover .service__upper-instagram-icon {
	opacity: 0.7;
}

}

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

.header__inner {
	justify-content: flex-end;
	position: relative;
}

.header__logo {
	left: 50%;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
}

.header__nav {
	display: flex;
}

.header__list {
	-moz-column-gap: clamp(10px, -20.1176470588px + 3.9215686275vw, 20px);
	column-gap: clamp(10px, -20.1176470588px + 3.9215686275vw, 20px);
}

.header__list li a {
	font-size: clamp(13px, 3.9647058824px + 1.1764705882vw, 16px);
}

.footer__copyright {
	font-size: 12px;
}

.footer__item {
	font-size: 12px;
}

.footer__mail {
	font-size: 12px;
}

:root {
	--cta-gutter: 28px;
}

.reserve-btn {
	width: 150px;
}

.drawer__icon {
	display: none;
}

.inner {
	max-width: 1060px;
	padding-inline: 30px;
}

.fv__category-text {
	margin-inline: auto;
	max-width: 800px;
}

.fv__category-text--jp {
	font-size: 16px;
}

.fv__category-text--en,
.fv__category-text--slash {
	font-size: 15px;
}

.fv__img-container {
	max-width: 800px;
}

.fv__about {
	margin-block-start: 40px;
	margin-inline: auto;
	max-width: 700px;
	padding: 25px;
}

.fv__about-title {
	font-size: 18px;
}

.fv__about-text-container {
	margin-block-start: 25px;
}

.fv__about-text {
	font-size: 16px;
	line-height: 1.8;
}

.profile {
	padding-block: 50px 23px;
}

.profile__content-container {
	-moz-column-gap: 30px;
	column-gap: 30px;
	margin-inline: auto;
	max-width: 700px;
}

.profile__texts {
	flex: 0 0 335px;
	padding-block-start: 37px;
}

.profile__role {
	font-size: 16px;
}

.profile__name-wrapper {
	justify-content: center;
	-moz-column-gap: 18px;
	column-gap: 18px;
	margin-block-start: 8px;
}

.profile__name-jp {
	font-size: 20px;
}

.profile__name-en {
	font-size: 15px;
}

.profile__list {
	margin-block-start: 25px;
}

.profile__item {
	font-size: 16px;
	line-height: 2;
	padding-inline-start: 11px;
}

.profile__item::before {
	font-size: 6px;
	top: 12px;
}

.profile__item:first-child {
	line-height: 1.6;
}

.profile__item:first-child::before {
	top: 9px;
}

.profile__message {
	font-size: clamp(13px, 0.9529411765px + 1.568627451vw, 17px);
}

.service__inner {
	max-width: 840px;
	padding-inline: 20px;
}

.service__upper {
	padding-block: 50px 30px;
}

.service__upper-item {
	font-size: 16px;
}

.service__upper-galleries {
	margin-block-start: 25px;
}

.service__upper-instagram {
	margin-block-start: 35px;
}

.service__upper-instagram-link span {
	font-size: 14px;
}

.service__upper-instagram-icon {
	height: 40px;
	width: 40px;
}

.service__lower {
	padding-block: 30px;
}

.service__lower-title {
	font-size: 18px;
}

.service__lower-content-wrapper {
	justify-content: center;
	-moz-column-gap: 30px;
	column-gap: 30px;
	margin: 30px auto 30px;
	max-width: 700px;
}

.service__lower-list {
	flex: 0 0 335px;
	margin-block-start: 20px;
	margin-inline-start: 0;
	max-width: none;
	padding-inline-start: 50px;
}

.service__lower-item + .service__lower-item {
	margin-block-start: 15px;
}

.service__lower-item-title {
	font-size: 16px;
}

.service__lower-item-text {
	font-size: 14px;
}

.service__lower-img {
	margin-block-start: 0;
	max-width: none;
}

.service__lower-message {
	font-size: 16px;
}

.access {
	padding-block-end: clamp(60px, -0.2352941176px + 7.8431372549vw, 80px);
	padding-block-start: 30px;
}

.access__inner {
	max-width: 760px;
}

.access__title {
	font-size: 18px;
}

.access__map-wrapper {
	margin-block-start: 20px;
}

.access__salon-name-wrapper--1 {
	margin-block-start: 25px;
}

.access__salon-name {
	font-size: 16px;
}

.access__salon-name-line {
	height: 1px;
}

.access__salon-address,
.access__salon-tel {
	font-size: 14px;
}

.access__line-link {
	margin-block-start: 20px;
}

.access__line-link span {
	font-size: 12px;
}

.access__line-link img {
	width: 120px;
}

.company {
	padding-block-end: 50px;
}

.company__inner {
	max-width: 760px;
}

.company__galleries {
	gap: 16px;
}

.company__info {
	margin-inline: auto;
	max-width: 550px;
}

.company__name {
	font-size: 16px;
}

.company__info-list {
	margin-block-start: 20px;
}

.company__info-row {
	-moz-column-gap: 15px;
	column-gap: 15px;
}

.company__info-term,
.company__info-desc {
	font-size: 14px;
}

.show__sp {
	display: none;
}

.show__tab {
	display: block;
}

.show__tab-pc {
	display: block;
}

}

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

.header__inner {
	justify-content: flex-end;
	position: relative;
}

.header__logo {
	left: 50%;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
}

.header__nav {
	display: flex;
}

.header__list li a {
	font-size: 16px;
}

.footer__copyright {
	font-size: 12px;
}

.footer__item {
	font-size: 12px;
}

.footer__mail {
	font-size: 12px;
}

:root {
	--cta-gutter: 40px;
}

.reserve-btn {
	width: 200px;
}

.drawer__icon {
	display: none;
}

.inner {
	max-width: 1080px;
	padding-inline: 40px;
}

.fv__category-text {
	margin-inline: auto;
	max-width: 800px;
}

.fv__category-text--jp {
	font-size: 16px;
}

.fv__category-text--en,
.fv__category-text--slash {
	font-size: 15px;
}

.fv__img-container {
	max-width: 800px;
}

.fv__about {
	margin-block-start: 40px;
	margin-inline: auto;
	max-width: 700px;
	padding: 25px;
}

.fv__about-title {
	font-size: 18px;
}

.fv__about-text-container {
	margin-block-start: 25px;
}

.fv__about-text {
	font-size: 16px;
	line-height: 2;
}

.profile {
	padding-block: 60px 30px;
}

.profile__content-container {
	-moz-column-gap: 40px;
	column-gap: 40px;
	margin-inline: auto;
	max-width: 840px;
}

.profile__texts {
	flex: 0 0 400px;
	padding-block-start: 40px;
}

.profile__role {
	font-size: 18px;
}

.profile__name-wrapper {
	justify-content: center;
	-moz-column-gap: 20px;
	column-gap: 20px;
}

.profile__name-jp {
	font-size: 24px;
}

.profile__name-en {
	font-size: 16px;
	padding-block-end: 2px;
}

.profile__list {
	margin-block-start: 35px;
}

.profile__item {
	font-size: 16px;
	line-height: 2;
	padding-inline-start: 11px;
}

.profile__item::before {
	font-size: 6px;
	top: 12px;
}

.profile__item:first-child {
	line-height: 1.6;
}

.profile__item:first-child::before {
	top: 9px;
}

.profile__message {
	font-size: 17.5px;
	margin-block-start: 50px;
}

.service__inner {
	max-width: 880px;
	padding-inline: 40px;
}

.service__upper {
	padding-block-end: 40px;
	padding-block-start: clamp(60px, 60px + 60 * (100vw - 1040px) / 2460, 120px);
}

.service__upper-item {
	font-size: 18px;
}

.service__upper-galleries {
	margin-block-start: 40px;
}

.service__upper-instagram {
	margin-block-start: 40px;
}

.service__upper-instagram-link span {
	font-size: 16px;
}

.service__upper-instagram-icon {
	height: 45px;
	width: 45px;
}

.service__lower {
	padding-block: 40px 60px;
}

.service__lower-title {
	font-size: 20px;
}

.service__lower-content-wrapper {
	justify-content: center;
	-moz-column-gap: 40px;
	column-gap: 40px;
	margin: 40px auto 40px;
	max-width: 840px;
}

.service__lower-list {
	flex: 0 0 380px;
	margin-block-start: 30px;
	margin-inline-start: 0;
	max-width: none;
	padding-inline-start: 60px;
}

.service__lower-item + .service__lower-item {
	margin-block-start: 25px;
}

.service__lower-item-title {
	font-size: 18px;
}

.service__lower-item-text {
	font-size: 16px;
}

.service__lower-img {
	margin-block-start: 0;
	max-width: none;
}

.service__lower-message {
	font-size: 18px;
}

.access {
	padding-block: 40px 80px;
}

.access__inner {
	max-width: 880px;
}

.access__title {
	font-size: 20px;
}

.access__map-wrapper {
	margin-block-start: 30px;
}

.access__salon-name-wrapper--1 {
	margin-block-start: 30px;
}

.access__salon-name {
	font-size: 18px;
}

.access__salon-name-line {
	height: 1px;
}

.access__salon-address,
.access__salon-tel {
	font-size: 16px;
}

.access__line-link {
	margin-block-start: 30px;
}

.access__line-link span {
	font-size: 14px;
}

.access__line-link img {
	margin-block-start: 0;
	width: 140px;
}

.company {
	padding-block-end: 60px;
}

.company__inner {
	max-width: 880px;
}

.company__galleries {
	gap: 20px;
}

.company__info {
	margin-inline: auto;
	max-width: 600px;
}

.company__name {
	font-size: 18px;
}

.company__info-list {
	margin-block-start: 30px;
}

.company__info-row {
	-moz-column-gap: 20px;
	column-gap: 20px;
}

.company__info-term,
.company__info-desc {
	font-size: 16px;
}

.show__sp {
	display: none;
}

.show__tab-pc {
	display: block;
}

}

@keyframes fvImgIn {

to {
	opacity: 1;
}

}

