*,
*::before,
*::after{
  box-sizing: border-box;
	}
:root{
	--header-h: 72px;
	}
.site-header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header-h);
	z-index: 9999;
	background: rgba(250, 248, 244, 0.96);
	border-bottom: 1px solid #e9e2d8;
	backdrop-filter: blur(6px);
	}
.site-brand{
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	text-decoration: none;
	color: #333;
	line-height: 1.1;
	}
.site-brand__jp{
	font-weight: 700;
	letter-spacing: .06em;
	font-size: 18px;
	white-space: nowrap;
	}
.site-brand__en{
	font-family:"Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	letter-spacing: .22em;
	font-size: 11px;
	color: #a48f74;
	margin-top: 4px;
	}
.site-nav{
	display: flex;
	align-items: center;
	gap: 18px;
	}
.site-nav__link{
	text-decoration: none;
	color: #444;
	font-size: 14px;
	letter-spacing: .08em;
	padding: 6px 2px;
	border-bottom: 2px solid transparent;
	}
.site-nav__link:hover,
.site-nav__link:focus-visible{
	border-bottom-color: #d8c0a0;
	}
.site-nav__cta{
	text-decoration: none;
	font-size: 14px;
	letter-spacing: .08em;
	padding: 8px 14px;
	border-radius: 999px;
	background: #d8c0a0;
	color: #fff;
	transition: .2s ease;
	}
.site-nav__cta:hover{
	background: #c9ae8a;
	}
.site-header__inner{
	height: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	}
.site-header{
	transition: height .2s ease, background .2s ease, box-shadow .2s ease;
	}
.site-header.is-compact{
	height: 56px;
	background: rgba(250, 248, 244, 0.98);
	box-shadow: 0 10px 26px rgba(0,0,0,.06);
	}
.site-header.is-compact .site-header__inner{
	padding-top: 0;
	padding-bottom: 0;
	}
.site-header.is-compact .site-brand__en{
	display: none;
	}
.menu-btn{
	display: none;
	appearance: none;
	border: 0;
	background: transparent;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	cursor: pointer;
	}
.menu-btn:focus-visible{
	outline: 2px solid #d8c0a0;
	outline-offset: 2px;
	}
.menu-btn__bars{
	display: block;
	width: 22px;
	height: 2px;
	background: #444;
	position: relative;
	margin: 0 auto;
	}
.menu-btn__bars::before,
.menu-btn__bars::after{
	content:"";
	position: absolute;
	left: 0;
	width: 22px;
	height: 2px;
	background: #444;
	}
.menu-btn__bars::before{ top: -7px; }
.menu-btn__bars::after{ top: 7px; }
.sp-menu{
	position: fixed;
	inset: 0;
	z-index: 9998;
	background: rgba(250, 248, 244, 0.98);
	display: none;
	}
.sp-menu.is-open{
	display: block;
	}
.sp-menu__inner{
	height: 100%;
	display: grid;
	grid-template-rows: auto 1fr;
	padding: 18px 16px 30px;
	}
.sp-menu__close{
	justify-self: end;
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	color: #444;
	}
.sp-menu__nav{
	display: grid;
	align-content: center;
	gap: 14px;
	}
.sp-menu__link{
	display: block;
	padding: 18px 12px 5px;
	line-height: 1.15;
	text-decoration: none;
	color: #333;
	font-weight: 700;
	letter-spacing: .12em;
	font-size: 18px;
	border-top: 1px solid #efe6db;
	}
.sp-menu__link:last-child{
	border-bottom: 1px solid #efe6db;
	padding: 18px 12px 20px;
	}
.mobile-cta{
	display: none;
	}
html{
	scroll-behavior: smooth;
	}

body{
	text-align: center;
	line-height: 1.6em;
	margin:0;
	padding-top: calc(var(--header-h) + 10px);
	font-size: clamp(12px, 1vw, 16px);
	color: #444444;
    font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight:500;
	letter-spacing:0.04em;
	}
img{
	max-width: 100%;
	height: auto;
	}
.visually-hidden{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
    }
.hero{
	display:block; margin: 0 auto 16px;
	}
.seo-lead{
	max-width: 980px;
	margin: 0 auto 12px;
	line-height: 1.7em;
	padding: 0 10px;
	text-align: center;
	font-size: clamp(10px, 1.1vw, 14px);
	}
	
.heading{
	width:90%;
	max-width:1100px;
	margin:30px auto 10px;
	border-top: 1px solid #9a9a9a;
	border-bottom: 1px solid #9a9a9a;
	padding: 12px 0 14px;
	text-align:center;
	}
.heading-jp{
	font-family:"Zen Maru Gothic", sans-serif;
	font-weight:600;
	font-size:clamp(22px,3.2vw,34px);
	letter-spacing:0.65em;
	line-height:1.05;
	color:#333333;
	padding-left:0.65em;
	margin:auto;
	}
.heading-en{
	font-weight:500;
	font-size:clamp(10px,1.7vw,14px);
	letter-spacing:0.22em;
	color:#444444;
	margin:5px auto -3px;
	}
	
.plan-title{
	max-width: 1000px;
	margin: 2px auto 10px;
	padding: 15px 15px;
	display:flex;
	align-items:center;
	justify-content:center;
	gap: 28px;
	flex-wrap: wrap;
	border: 2px solid #f38c8c;
	border-radius: 6px;
	text-align:center;
	}
.plan-main{
	font-weight:600;
	letter-spacing:.25em;
	font-size: clamp(22px, 4vw, 34px);
	color:#f38c8c;
	}
.plan-sub{
	font-weight:500;
	letter-spacing:.12em;
	font-size: clamp(10.5px, 2.2vw, 15px);
	color:#f38c8c;
	white-space:nowrap;
	}
	
.intro{
	max-width: 980px;
	margin: 0 auto 12px;
	line-height: 1.9em;
	padding: 0 10px;
	text-align: center;
	}
.intro__lead{
	font-weight: 700;
	font-size: clamp(13px, 2.2vw, 16px);
	}
.intro__text{
	font-weight: 400;
	font-size: clamp(12px, 2.0vw, 14px);
	}
	
.price-grid{
	max-width: 980px;
	margin: 15px auto;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	align-items: stretch;
	}
.price-card{
	display:flex;
	flex-direction: column;
	height: 100%;
	padding: 15px 15px 2px;
	border: 2px solid var(--card-border, #e8e8e8);
	border-radius: 14px;
	text-decoration:none;
	text-align:center;
	color: inherit;
	box-shadow: 0 6px 18px rgba(0,0,0,.04);
	}
.price-card__title{
	display:block;
	margin: 0 0 14px;
	padding: 20px 10px;
	text-align:center;
	font-weight:700;
	font-size: 26px;
	letter-spacing:0.08em;
	text-indent:0.08em;
	color:#ffffff;
	background: linear-gradient(var(--label-top, #e8cfa3), var(--label-bottom, #d8b882));
	text-shadow: 0 2px 3px rgba(0,0,0,.32);
	border-radius: 10px;
	}
.price-card__list{
	flex: 0 0 auto;
	margin: 0 0 0;
	padding-left: 1.3em;
	text-align:left;
	font-size: 16px;
	}
.price-card__list small{
	margin: -10px 0 5px;
	display:block;
	line-height:1.8em;
	font-size:14px;
	font-weight:500;
	}
.price-card__price{
	margin: 20px auto 12px;
	font-weight: 700;
	font-size: 40px;
	line-height:0.65em;
	letter-spacing:0.06em;
	}
.price-card__price small{
	margin: -10px 0 3px;
	display:block;
	font-size:18px;
	color:#666;
	font-weight:400;
	text-indent:0.04em;
	}
.price-card__price small + small{
	margin-top: 15px;
	}
.price-card__note{
	margin-bottom: 10px;
	line-height:0.7em;
	list-style: none;
	margin-left: -0.5em;
	font-size: 13px;
	}

.price-card--cp{
	--card-border: #e7d7bb;
	--label-top:   #ead7b2;
	--label-bottom:#d8b882;
	}
.price-card--cp .price-card__list{
	line-height: 2.1;
	}
.price-card--cp .price-card__price{
	margin-top: 44px;
	}
.price-card--sp{
	--card-border: #b9df8f;
	--label-top:   #cbeea2;
	--label-bottom:#a6d97a;
	}
.price-card--sp .price-card__list{
	line-height: 2.6;
	}
.price-card--full{
	--card-border: #f2a4c9;
	--label-top:   #f3b2d4;
	--label-bottom:#da8fbd;
	}
.price-card--full .price-card__list{
	line-height: 1.8;
	}
	
.em{ color:#ff3a45; font-weight:700; }

.retouch{
	max-width:800px;
	margin:60px auto 40px;
	padding: 2px 26px 5px;
	text-align:center;
	border:2px solid #e8e8e8;
	}
.retouch__img{
	display:block;
	margin:12px auto 4px;
	max-width:100%;
	height:auto;
	}
.retouch__title{
	font-size:26px;
	letter-spacing:0.18em;
	margin:20px auto 10px;
	}
.retouch__text{
	font-size: clamp(14px, 2.2vw, 16px);
	color:#555;
	line-height:1.8;
	margin:	5px auto 10px;
	}

.faq{
	max-width: 900px;
	margin: 18px auto 0;
	padding: 0 10px;
	text-align: left;
}
.faq__item{
	display: grid;
	grid-template-columns: 18px 1fr;
	column-gap: 6px;
	row-gap: 8px;
	padding: 10px 0 16px;
	border-bottom: 1px solid #e5e5e5;
	}
.faq__item:last-child{
	border-bottom: none;
	}
.faq__dot{
	margin-top: 6px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #666;
	}
.faq__q{
	margin: 0;
	font-weight: 700;
	font-size: clamp(14px, 2.2vw, 18px);
	letter-spacing: .08em;
	color: #333;
	}
.faq__a{
	grid-column: 2 / -1;
	margin: 0;
	font-size: clamp(12px, 2.0vw, 15px);
	line-height: 1.95;
	color: #444;
	}
.faq__note{
	color: #ff3a45;
	font-weight: 700;
	}
.faq__places{
	display: inline-block;
	margin-top: 4px;
	font-size: 0.88em;
	line-height: 1.65;
	color: #555;
	}
.faq__places strong{
	font-weight: 700;
	color: #444;
	}

.contact-text{
	text-align: center;
	line-height: 1.7;
	margin: auto;
	max-width: 1000px;
	}
.contact-main{
	font-size: clamp(11.5px, 1.8vw, 18px);
	margin-bottom: 1.0em;
	}
.contact-note{
	color: #e60033;
	font-size: clamp(10px, 1.8vw, 16px);
	}

.row{
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content:center;
	margin-bottom:0.8em;
	}
.row a{
	display:inline-block;
	border-radius: 10px;
	transition: .25s;
	}
.row a:hover{
	transform: translateY(-6px);
	box-shadow: 0 10px 22px rgba(0,0,0,.10);
	}
.row > *{
	flex: 0 1 auto;
	min-width: 0;
	}
.row img{
	display: block;
	max-width: 100%;
	height: auto;
	}

@media (max-width: 800px){
.price-grid{
	grid-template-columns: 1fr;
	gap: 28px;
	}
.price-card{
	padding: 15px 15px 20px;
	}
.price-card--cp .price-card__price{
	margin-top: 20px;
	}
.plan-title{
    gap:8px;
    padding:12px 10px;
	}
.plan-sub{
    white-space:nowrap;
    }
	.mobile-cta{
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9997;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(250, 248, 244, 0.96);
    border-top: 1px solid #e9e2d8;
    backdrop-filter: blur(6px);
	}
.mobile-cta__btn{
    display: block;
    width: 100%;
    text-decoration: none;
    text-align: center;
    padding: 14px 16px;
    border-radius: 999px;
    background: #d8c0a0;
    color: #fff;
    font-weight: 700;
    letter-spacing: .12em;
	}
:root{ --header-h: 64px; }
.site-nav{ display:none; }
.menu-btn{ display:inline-flex; align-items:center; justify-content:center; }
.site-brand__jp{
    font-size: 16px;
	}
body{
    padding-bottom: 84px;
	}
:root{ --header-h: 64px; }
.site-nav{ display:none; }
.menu-btn{ display:inline-flex; align-items:center; justify-content:center; }
.site-brand__jp{
    font-size: 16px;
	}
	}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
	}
	}