@charset "UTF-8";

/* ============================================================
 * Atomic CSS / ユーティリティ
 * ============================================================ */
.container-lg,
.container-md,
.container-sm { position: relative; width: 100%; margin: 0 auto; }
.container-lg { max-width: 1400px; }
.container-md { max-width: 1200px; }
.container-sm { max-width: 600px; }


/* Background Color
------------------------------------------- */
.bg-green { background-color: #d1eae6; }
.bg-yellow { background-color: #fbfcd2; }
.bg-gray { background-color: #222; }


/* Supplement Area / 補足エリア（背景グレー）
------------------------------------------- */
.supplement-area { background: #fafafa; padding: 50px; }
.supplement-area--spacious { margin-top: 30px; }


/* SVG
------------------------------------------- */
.svg { display: none; fill: #333; }

.icon-phone { aspect-ratio: 11 / 15; }
.icon-house { aspect-ratio: 19 / 18; }
.icon-train { aspect-ratio: 1 / 1; }
.icon-mail { aspect-ratio: 9 / 7; }
.icon-card { aspect-ratio: 19 / 14; }


/* Padding
------------------------------------------- */
.section-padding { padding: 130px 5%; }


/* Text Size
------------------------------------------- */
.text-small { font-size: var(--font-small); line-height: 1.8; letter-spacing: .15em; }
.text-large { font-weight: 500; font-size: var(--font-large); line-height: 2; letter-spacing: .12em; }


/* Text Group
------------------------------------------- */
.text-group { margin-top: 15px; }
.text-group--spacious { margin-top: 30px; }
.text-group :where(p) + :where(p) { margin-top: 15px; }

/* 注釈 */
.note-group { margin-top: 15px; }
.note-group--spacious { margin-top: 30px; }
.note-group p { font-size: var(--font-small); line-height: 1.8; letter-spacing: .15em; }
.note-group p + p { margin-top: 8px; }


/* Text Block
------------------------------------------- */
br.sp-block { display: none; }


/* Images Caption
------------------------------------------- */
.comparison-col2,
.comparison-col3 {
	display: grid;
	max-width: 100%;
	margin-top: 10px;
	font-size: var(--font-small);
	line-height: 1.8;
	text-align: center;
}
.comparison-col2 { grid-template-columns: repeat(2, 1fr); }
.comparison-col3 { grid-template-columns: repeat(3, 1fr); }

.photo-caption {
	margin-top: 10px;
	font-size: var(--font-small);
	line-height: 1.8;
	text-align: center;
}

@media (max-width: 768px) {	
	/* Padding */
	.section-padding { padding: 60px 3%; }

	/* Text Group */
	.text-group--spacious { margin-top: 15px; }

	/* Supplement Area / 補足エリア（背景グレー） */
	.supplement-area { padding: 6%; }
	.supplement-area--spacious { margin-top: 15px; }

	/* Text Size */
	.text-large { font-size: 16px; letter-spacing: .05em; font-weight: 500; }
	
	/* Text Block */
	br.sp-block { display: block; }
	br.pc-block { display: none; }
}

/* ============================================================
 * Gallery / 左右変動のブロック
 * ============================================================ */
.gallery + .gallery { margin-top: 80px; }

.gallery__item { display: flex; justify-content: flex-start; align-items: flex-start; position: relative; }

.gallery__image { flex: 0 0 40%; z-index: 1; margin-top: -15px; }
.gallery__text { flex: 0 0 65%; z-index: 0; margin-top: 100px; background: #fff; }

/* **** Left **** */
.gallery__item--left { flex-direction: row; }
.gallery__item--left .gallery__text { margin-left: -5%; padding: 80px 80px 80px 10%; }

/* **** Right **** */
.gallery__item--right { flex-direction: row-reverse; }
.gallery__item--right .gallery__text { margin-right: -5%; padding: 80px 10% 80px 80px; }

@media (max-width: 768px) {
	.gallery + .gallery { margin-top: 40px; }
	.gallery__item { flex-direction: column; }
	
	.gallery__text {
		flex: 1 1 100%;
		top: 0;
		width: 100%;
		margin: 0;
		padding: 30px 8%;
	}
	
	.gallery__item--left .gallery__text { margin-left: 0; padding: 6%; }
	.gallery__item--right .gallery__text { margin-right: 0; padding: 6%; }
}


/* ============================================================
 * 2column Box / 左に画像,右にテキスト
 * ============================================================ */
.media {
	display: flex;
	align-items: flex-start;
	gap: 5%;
	margin-top: 30px;
}
.media__image { flex: 0 0 40%; position: relative; }
.media__content { flex: 1; padding-left: 0; }

@media (max-width: 768px) {
	.media { flex-direction: column; margin-top: 15px; }
	.media__image { flex: none; width: 100%; }
	.media__content { width: 100%; padding: 30px 0 0; }
}

/* **** Text Group **** */
.media__content.text-group,
.media__content.text-group--spacious { margin-top: 0; }


/* ============================================================
 * Check List / 黄色い◯のチェックマーク
 * ============================================================ */
.check__list > * + * { margin-top: 15px; }
.check__list--spacious { margin-top: 30px; }

.check__item { position: relative; padding-left: 30px; line-height: 2; }
.check__item--large { font-size: var(--font-large); line-height: 1.8; letter-spacing: .12em; }

.check__item::before {
	position: absolute;
	top: .33em;
	left: 0;
	content: "";
	width: 20px;
	height: 20px;
	background: #fbfcd6;
	border-radius: 50%;
}
.check__item::after {
	position: absolute;
	top: .7em;
	left: .22em;
	content: "";
	width: 13px;
	height: 5px;
	border-left: 1px solid #333;
	border-bottom: 1px solid #333;
	transform: rotate(-45deg);
}

.check__item > .check__sublist { margin: 5px 0 0 15px; }
.check__subitem { list-style: disc; line-height: 2; margin-left: 15px; }

.check__item--note {
	display: block;
	font-size: var(--font-small);
	line-height: 1.8;
	letter-spacing: .15em;
	margin-top: 8px;
}

@media (max-width: 768px) {
	.check__item { padding-left: 25px; line-height: 1.8; }
	.check__item::before { top: .35em; width: 15px; height: 15px; }
	.check__item::after { top: .65em; width: 10px; height: 5px; }
}

/* **** Supplement Area / 補足エリア（背景グレー）**** */
.supplement-area .check__list > * + * { margin-top: 8px; }


/* ============================================================
 * Number List Box / 黄色い◯の中の数字
 * ============================================================ */
.number-box--outer > * + * { margin-top: 15px; }

.number-box { display: flex; align-items: flex-start; }
.number-box--large { font-size: var(--font-large); line-height: 2.3; letter-spacing: .12em; }

.number-box__circle {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	aspect-ratio: 1 / 1;
	padding-left: 3px;
	margin-right: 12px;
	border-radius: 50%;
	background: #fbfcd2;
	font-weight: 500;
	line-height: 40px;
}

@media (max-width: 768px) {
	.number-box__circle { width: 35px; }
}


/* ============================================================
 * Decoration Background / 装飾（背景）
 * ============================================================ */
/* 背景：斜め2色
------------------------------------------- */
.bg-split-diagonal { position: relative; }

.bg-split-diagonal::after {
	position: absolute;
	top: 0;
	right: -5.5%;
	bottom: 0;
	left: -5.5%;
	z-index: -1;
	content: "";
	background: #d1eae6;
	background-image: linear-gradient(50.3deg, #d1eae6 50%, #fbfcd2 50%);
	background-image:-webkit-linear-gradient(50.3deg, #d1eae6 50%, #fbfcd2 50%);
	background-image: -moz-linear-gradient(50.3deg, #d1eae6 50%, #fbfcd2 50%);
	background-image:-ms-linear-gradient(50.3deg, #d1eae6 50%, #fbfcd2 50%);
}

/* 背景：中央2色
------------------------------------------- */
.bg-2colors-half { position: relative; }

.bg-2colors-half:before,
.bg-2colors-half:after { position: absolute; top: 0; bottom: 0; z-index: -1; content: ""; }
.bg-2colors-half:before { right: 50%; left: 0; background: #d1eae6; }
.bg-2colors-half:after { right: 0; left: 50%; background: #fbfcd2; }


/* ボーダー：中央2色
------------------------------------------- */
.border-2colors,
.border-2colors--spacious { position: relative; background: #fff; border-left: 2px #d1eae6 solid; border-right: 2px #fbfcd2 solid; }

.border-2colors { padding: 80px; }
.border-2colors--spacious { padding: 100px; }

.border-2colors:before,
.border-2colors:after { position: absolute; top: 0; bottom: 0; z-index: 0; content: ""; }

.border-2colors:before { right: 50%; left:0; border-top: 2px #d1eae6 solid; border-bottom: 2px #d1eae6 solid; }
.border-2colors:after { right: 0; left:50%; border-top: 2px #fbfcd2 solid; border-bottom: 2px #fbfcd2 solid; }

@media (max-width: 768px) {
	.border-2colors,
	.border-2colors--spacious { padding: 6%; }
}

/* ボーダー：角装飾
------------------------------------------- */
.border-corner,
.border-corner--spacious { position: relative; background: #fff; }
.border-corner { padding: 50px; }
.border-corner--spacious { padding: 80px; }

.border-corner-deco {
	position: absolute;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	z-index: 0;
	border: 1px #666 solid;
}

.border-corner-deco span { position: absolute; z-index: 5; width: 15px; height: 15px; }
.border-corner-deco span:nth-of-type(1) { top: 0; left: 0; border-top: 5px #666 solid; border-left: 5px #666 solid; }
.border-corner-deco span:nth-of-type(2) { top: 0; right: 0; border-top: 5px #666 solid; border-right: 5px #666 solid; }
.border-corner-deco span:nth-of-type(3) { bottom: 0; right: 0; border-bottom: 5px #666 solid; border-right: 5px #666 solid; }
.border-corner-deco span:nth-of-type(4) { bottom: 0;  left: 0; border-bottom: 5px #666 solid; border-left: 5px #666 solid; }

@media (max-width: 768px) {
	.border-corner,
	.border-corner--spacious { padding: 6%; }
}

/* ボーダー：吹き出し
------------------------------------------- */
.speech-bubble {
	display: block;
	width: fit-content;
	margin: 15px auto 40px;
	position: relative;
	padding: 15px;
	border-bottom: 1px dotted #333;
	font-weight: 400;
	text-align: center;
	line-height: 1.8;
}
.speech-bubble::before {
	position: absolute;
	bottom: 0;
	left: 50%;
	content: "";
	border-style: solid;
	border-width: 15px 10px 0 10px;
	border-color: #333 transparent transparent;
	translate: -50% 100%;
}

@media (max-width: 768px) {
	.speech-bubble { margin: 8px auto 30px; padding: 10px 0 15px; }
}


/* ============================================================
 * Title / タイトル
 * ============================================================ */
/* **** Base Title（共通部分） **** */
.title-base { text-align: center; line-height: 1.5; margin: 0; }


/* Modifier: 英文タイトル
------------------------------------------- */
.title--en {
	display: inline-block;
	font-weight: 300;
	font-size: var(--font-title-en);
	letter-spacing: .1em;
	line-height: 1;
}


/* Modifier: 和文タイトル
------------------------------------------- */
.title--jp {
	margin-top: 20px;
	font-size: var(--font-title-jp);
	letter-spacing: .2em;
}


/* Modifier: 大きめタイトル
------------------------------------------- */
.title--large {
	font-weight: 300;
	font-size: var(--font-title-medium);
	letter-spacing: .13em;
	padding-bottom: 20px;
}


/* Modifier: アイコン付きタイトル
------------------------------------------- */
.title--icon {
	position: relative;
	font-weight: 300;
	font-size: var(--font-title-medium);
	letter-spacing: .13em;
	margin-top: 60px;
}
.title--icon::before {
	content: "";
	display: block;
	position: absolute;
	top: -60px;
	left: 0;
	right: 0;
	width: 50px;
	height: 50px;
	margin: 0 auto;
}


/* Modifier: 丸背景付きポイントタイトル
------------------------------------------- */
.title--point { position: relative; }

.title--point::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 70px;
	height: 70px;
	margin: 0 auto;
	background: #fbfcd2;
	border-radius: 50%;
}

.title--point-text {
	margin-top: 30px;
	font-weight: 300;
	font-size: var(--font-title-point-text);
	letter-spacing: .13em;
	line-height: 1.8;
}

.title--point-circle {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	margin: 0 auto;
	border-radius: 50%;
	background: #fbfcd2;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.2;
	padding-top: 5px;
}
.title--point-circle span { font-size: var(--font-title-point-circle); }


/* Modifier: ボーダー付きタイトル
------------------------------------------- */
.title--border-black,
.title--border-white {
	position: relative;
	z-index: 2;
	width: 300px;
	margin: 0 auto;
	font-weight: 300;
	font-size: var(--font-title-border);
	line-height: 3;
	letter-spacing: .1em;
}
.title--border-black { background: #fff; border: 1px #666 solid; }
.title--border-white { color: #fff; border: 1px #fff solid; }


/* Modifier: 丸型ラベル
------------------------------------------- */
.title--round {
	display: inline-block;
	font-weight: 400;
	font-size: var(--font-title-round);
	letter-spacing: .1em;
	background: #d1eae6;
	padding: 8px 30px;
	border-radius: 50px;
}


/* Modifier: 背景色タイトル 共通プロパティ
------------------------------------------- */
.title--gray,
.title--black {
	padding: 15px 3%;
	font-weight: 400;
	font-size: var(--font-title-bg);
	line-height: 1.8;
	letter-spacing: .15em;
}
.title--gray { background: #f0f0f0; }
.title--black { background: #333; color: #fff; }

.title--gray--subtitle,
.title--black--subtitle {
	display: block;
	font-size: var(--font-small);
	line-height: 1.8;
	letter-spacing: .15em;
}


/* Modifier: 上下ボーダー・共通
------------------------------------------- */
.title--border-tb,
.title--border-green {
	font-size: var(--font-title-round);
	line-height: 2;
	letter-spacing: .12em;
}
.title--border-tb { border-top: #f0f0f0 double; border-bottom: #f0f0f0 double; padding: 20px 0; }
.title--border-green { border: #d1eae6 double; padding: 15px 0; }

@media (max-width: 768px) {
	/* Modifier: 英文タイトル */
	.title--en { font-size: 35px; line-height: 1.2; letter-spacing: .05em; }
	
	/* Modifier: 和文タイトル */
	.title--jp { font-size: 13px; }
	
	/* Modifier: 大きめタイトル */
	.title--large { margin-top: 25px; font-weight: 400; font-size: 19px; line-height: 1.7; }
	.title--large--en { font-weight: 400; }
	
	/* Modifier: アイコン付きタイトル */
	.title--icon { margin-top: 60px; font-weight: 400; font-size: 19px; line-height: 1.7; }
	.title--icon::before { top: -45px; width: 40px; height: 40px; }
	.title--icon--en { font-weight: 400; }
	
	/* Modifier: 丸背景付きポイントタイトル */
	.title--point::before { width: 65px; height: 65px; }
	.title--point-text { margin-top: 15px; font-weight: 400; line-height: 1.8; }
	
	/* Modifier: ボーダー付きタイトル */
	.title--border-black,
	.title--border-white { width: 250px; font-weight: 400; font-size: 18px; }
	
	/* Modifier: 上下ボーダー・共通 */
	.title--border-tb { font-weight: 500; font-size: 15px; }
	.title--border-green { font-weight: 500; font-size: 16px; }
}


/* ============================================================
 * Link Button / 全ページ共通リンクボタン
 * ============================================================ */
.link { text-align: center; margin-top: 40px; }
.link > * + * { margin-top: 10px; }

.link .btn {
	display: inline-block;
	position: relative;
	max-width: 300px;
	width: 100%;
	font-size: var(--font-title-round);
	line-height: 60px;
	letter-spacing: .1em;
	color: #fff;
	background: #222;
}

.link .btn::before {
	display: inline-block;
	position: absolute;
	top: 27px;
	right: 13px;
	vertical-align: middle;
	width: 8px;
	height: 8px;
	box-sizing: border-box;
	line-height: 1;
	color: #fff;
	content: "";
	border: 1px solid currentColor;
	border-left: 0;
	border-bottom: 0;
	transform: translateX(-25%) rotate(45deg);
	transition: all 0.5s;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

.link .btn:hover { color: #333; background: #f9faa4; }
.link .btn:hover::before { right: 8px; color: #333; }

@media (max-width: 768px) {
	.link { margin-top: 40px; }
	.link .btn:hover { color: #fff; background: #222; border: 1px #333 solid; }
	.link .btn:hover::before { right: 13px; color: #fff; }
}


/* ==========================================================================
   
   下層ページ

   ========================================================================== */
/* ============================================================
 * Subpage Header base style（全下層ページ共通）
 * ============================================================ */
.subpage-header {
	position: relative;
	width: 94%;
	margin: 0 auto;
	padding: 90px 5%;
	background: #fff;
	text-align: center;
	border: none;
	border-left: 2px #d1eae6 solid;
	border-right: 2px #fbfcd2 solid;
}

.subpage-header::before,
.subpage-header::after { position: absolute; top: 0; bottom: 0; z-index: 0; content: ""; }

.subpage-header::before {
	left: 0;
	right: 50%;
	border-top: 2px #d1eae6 solid;
	border-bottom: 2px #d1eae6 solid;
}
.subpage-header::after {
	left: 50%;
	right: 0;
	border-top: 2px #fbfcd2 solid;
	border-bottom: 2px #fbfcd2 solid;
}

/* 英文タイトル */
.subpage-header__en {
	display: inline-block;
	position: relative;
	font-weight: 300;
	font-size: var(--font-subpage-en);
	line-height: 1;
	letter-spacing: .2em;
}

.subpage-header__en::before {
	position: absolute;
	right: 0;
	bottom: -30px;
	left: 0;
	content: "";
	width: 50px;
	height: 17px;
	margin: 0 auto;
	background: no-repeat center/contain
    url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 467.7 170.1'%3E%3Cstyle%3E .st0 %7B fill: none; stroke: %23a3d6cd; stroke-miterlimit: 10; stroke-width: 20px; %7D %3C/style%3E%3Cpath class='st0' d='M454.4,6.1c-34.7,87.7-120.5,149.9-220.6,149.9S48.2,93.8,13.3,6.1'/%3E%3C/svg%3E");
}

/* 和文タイトル */
.subpage-header__jp {
	margin-top: 40px;
	font-size: 14px;
	letter-spacing: .2em;
}

@media (max-width: 1200px) {
	.subpage-header { width: 100%; margin-top: 55px; }
}

@media (max-width: 768px) {
	.subpage-header { padding: 45px 5%; }
	
	.subpage-header__en { line-height: 1.2; letter-spacing: .05em; }
	.subpage-header__en::before {
		bottom: -20px;
		width: 35px;
		height: 12px;
		background-size: 35px 12px;
	}
	
	.subpage-header__jp { margin-top: 25px; font-size: 12px; }
}


/* ============================================================
 * Subpage Tagline / ページの説明文
 * ============================================================ */
.subpage__tagline { padding: 80px 5%; text-align: center; }

.subpage__tagline-text {
	font-weight: 300;
	font-size: var(--font-subpage-tagline);
	line-height: 2;
	letter-spacing: .15em;
}

@media (max-width: 768px) {
	.subpage__tagline { padding: 40px 5%; text-align: left; }
	
	.subpage__tagline-text {
		font-weight: 400;
		line-height: 2.3;
		letter-spacing: .08em;
	}
}


/* ============================================================
 * Breadcrumb / パンくずリスト
 * ============================================================ */
.breadcrumb {
	display: flex;
	width: 94%;
	margin: 0 auto;
	padding: 20px 0;
	border-bottom: #f0f0f0 1px solid;
}

.breadcrumb__item { font-weight: 400; font-size: var(--font-breadcrumb); line-height: 2; margin-right: 25px; }
.breadcrumb__item a { position: relative; border-bottom: 1px #666 dotted; }
.breadcrumb__item a::after {
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	top: .4em;
	right: -15px;
	content: "";
	width: 6px;
	height: 6px;
	color: #333;
	border: .08em solid currentColor;
	border-left: 0;
	border-bottom: 0;
	line-height: 1;
	box-sizing: border-box;
	transform: translateX(-25%) rotate(45deg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.breadcrumb__item a .icon-house {
	display: inline-block;
	width: 16px;
	height: auto;
	margin-right: 5px;
	fill: #333;
}
.breadcrumb__item a:hover { background: #f9faa4; }

@media (max-width: 768px) {
	.breadcrumb__item { font-weight: 500; }
	.breadcrumb__item a:hover { background: none; }
}


/* ============================================================
 * Intro / 他ページへの導線
 * ============================================================ */
.intro { display: flex; position: relative; background: #fff; margin-top: 80px; }

.intro .border-corner-deco { border: 1px #a3d6cd solid; inset: 0; pointer-events: none; }

/* 左：画像 , 右：テキスト */
.intro__image,
.intro__text { flex: 0 0 50%; }
.intro__text { border-left: 1px #a3d6cd solid; padding: 50px; }

/* **** サロン情報 **** */
.salon-name { font-weight: 500; font-size: var(--font-large); }
.salon-name__note { font-size: var(--font-small); line-height: 0; letter-spacing: .15em; }

/* dl */
.salon-info {
	display: grid;
	grid-template-columns: 6em 1fr;
	margin-top: 20px;
	padding: 15px 0;
	border-top: 1px #666 dotted;
	border-bottom: 1px #666 dotted;
}
.salon-info dt { font-weight: 400; font-size: var(--font-small); line-height: 2.8; }
.salon-info dd { line-height: 2.5; letter-spacing: 2px; }

/* **** background / 他ページへの導線の画像 **** */
.intro-shortnails { background: url("../images/bg-hand.jpg") center center / cover no-repeat; }
.intro-designart { background: url("../images/bg-nailtips.jpg") center center / cover no-repeat; }
.intro-quality { background: url("../images/bg-treatment.jpg") center center / cover no-repeat; }
.intro-access { background: url("../images/bg-access.jpg") right center / cover no-repeat; }
.intro-about { background: url("../images/bg-rifare.jpg") center center / cover no-repeat; }
.intro-salon { background: url("../images/bg-salon.jpg") center center / cover no-repeat; }
.intro-bio { background: url("../images/bg-bio.jpg") center center / cover no-repeat; }

@media (max-width: 768px) {
	.intro { flex-direction: column; margin-top: 40px; }
	.intro__image { flex: none; width: 100%; height: 250px; }
	.intro__text { width: 100%; border-left: none; padding: 30px 8%; }
	
	/* **** サロン情報 **** */
	.salon-info { display: block; }
	.salon-info dt,
	.salon-info dd { display: block; line-height: 1.8; }
	.salon-info dt { margin-top: 10px; }
	.salon-info dt:first-child { margin-top: 0; }
}
