*,
*::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 #a69887;
	border-radius: 6px;
	text-align:center;
	}
.plan-main{
	font-weight:600;
	letter-spacing:.25em;
	font-size: clamp(22px, 4vw, 34px);
	color:#a69887;
	}
.plan-sub{
	font-weight:500;
	letter-spacing:.12em;
	font-size: clamp(10.5px, 2.2vw, 15px);
	color:#a69887;
	white-space:nowrap;
	}
	
.intro{
	max-width: 980px;
	margin: 0 auto 25px;
	line-height: 2.1em;
	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 40px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 460px));
	justify-content: center;
	column-gap: 12px;
	row-gap: 32px;
	align-items: stretch;
	}
.price-card{
	display:flex;
	flex-direction: column;
	height: 100%;
	padding: 15px 15px 25px;
	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__meta{
	margin: 2px 0 10px;
	font-weight: 600;
	font-size: clamp(13px, 2.1vw, 18px);
	letter-spacing: .06em;
	color: #555;
	}
.price-card__prices{
	margin-top: 12px;
	display: grid;
	gap: 20px;
	}
.price-card__priceRow{
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	column-gap: 14px;
	padding-top: 16px;
	border-top: 1px solid rgba(0,0,0,.10);
	}
.price-card__priceRow:first-child{
	border-top: 0;
	padding-top: 0;
	}
.price-card__label{
	text-align: right;
	font-size: clamp(12px, 2.0vw, 14px);
	line-height: 1.45;
	color: #555;
	}
.price-card__value{
	font-weight: 800;
	font-size: clamp(28px, 5.8vw, 40px);
	letter-spacing: .04em;
	white-space: nowrap;
	color: #555;
	}

.price-card{
	--card-border: #e8e8e8;
	--label-top: #e8cfa3;
	--label-bottom: #d8b882;
	}
.price-card--a{
	--card-border: #8ec9e6;
	--label-top:   #7fc6ea;
	--label-bottom:#56add7;
	}
.price-card--b{
	--card-border: #f1a2b7;
	--label-top:   #f3a9bf;
	--label-bottom:#d987a0;
	}
.price-card--c{
	--card-border: #7fd1b7;
	--label-top:   #7ad9bb;
	--label-bottom:#4fba9b;
	}
.price-card--d{
	--card-border: #e4cd78;
	--label-top:   #eadfa3;
	--label-bottom:#d6c16b;
	}
	
.em{ color:#ff3a45; font-weight:700; }

.deliver{
	max-width: 980px;
	margin: 2px auto 40px;
	padding: 0 10px;
	}
.deliver__grid{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	align-items: stretch;
	}
.deliver__item{
	border: 2px solid #e8e8e8;
	border-radius: 14px;
	background: #fff;
	padding: 10px 14px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	}
.deliver__text{
	margin: 0;
	font-size: clamp(14px, 1.9vw, 14.5px);
	line-height: 1.7;
	color: #555;
	}

.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;
	}
.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;
	}

.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;
	}
.plan-title{
    gap:8px;
    padding:12px 10px;
	}
.plan-sub{
    white-space:nowrap;
    }
.price-card__priceRow{
	grid-template-columns: 1fr auto;
	align-items: center;
	column-gap: 12px;
	}
.price-card__label{
	text-align: right;
	}
.price-card__value{
	text-align: right;
	justify-self: end;
	}
.deliver{
	margin: 16px auto 6px;
	}
.deliver__grid{
	grid-template-columns: 1fr;
	gap: 10px;
	}
.deliver__item{
	padding: 12px 12px 10px;
	min-height: 58px;
	}
.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;
	}
	}