
/* ------------------------------
  Base
------------------------------ */
:root {
	--brand: #005945;
	--brand-2: #005945;
	--accent: #f7f7f7;
	--beige: #f7f7f7;
	--ink: #333;
	--muted: #6f6f6f;
	--radius: 10px;
	--max: 1070px;
	--bg-green: #005945;
}
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body{
	background-color: #fff !important;
	
}
/* layout */
.page__wrapper{
	width: 100%;
	max-width: 1070px;
	padding: 0 20px;
	margin: 40px auto 0;	
}

.page__wrapper__820{
	width: 100%;
	max-width: 860px;
	padding: 0 20px;
	margin: auto;	
}
@media screen and (max-width: 430px){
	.page__wrapper__820{
		padding: 0;
	}
}

.font-ryumin{
	font-family: "a-otf-ryumin-pr6n", serif;
	font-weight: 300;
	font-style: normal;
}

.wrap {
	width: min(90vw, var(--max));
	max-width: var(--max);
	margin: 0 auto;
	/*  padding: 0 16px;
	*/
}
@media (min-width: 768px) {
	.wrap {
		width: 90%;
	}
}

/*img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}
*/

a {
	/*  color: var(--brand);
	*/
	text-decoration: none;
}

.sp {
	display: none;
}

@media screen and (max-width: 640px) {
.sp {
   	display: inline;
  }
}



/* ------------------------------
  Hero
------------------------------ */
.hero {
	padding: 18px 0 8px;
}
.hero-logo {
	width: min(240px, 48%);
	margin: 0 auto 40px;
}
.lead {
	margin: 6px 0 0;
	text-align: center;
	font-weight: 700;
	letter-spacing: .1em;
	font-size: clamp(24px, 3vw, 28px);
	font-family: "a-otf-ryumin-pr6n", serif;
}
.lead-strong {
	display: inline-block;
	font-size: 1.5em;
	font-weight: 700;
	margin-top: 4px;
	line-height: 1;
	letter-spacing: .1em;
}
/* ------------------------------
  GreenObi-Tokuten
------------------------------ */
/* ===== Tokuten-Block ===== */
.benefits {
	padding: 18px 0 16px;
	border: none;
	margin: 0 auto;
}
.benefits > .wrap {
	background: var(--accent);
	padding: 18px 16px;
	border: none;
}
.benefits-title {
	margin: 20px 0 14px;
	text-align: center;
	color: var(--brand);
	font-weight: 600;
	letter-spacing: .2em;
	font-size: clamp(22px, 2.4vw, 24px);
}
/* Onecolumn→Twocolumn-Responsive */
.benefits-list {
	list-style: none;
	margin: 20px 0;
	padding: 0;
	display: grid;
	gap: 14px;
	grid-template-columns: 1fr;
}
@media (min-width: 640px) {
	.benefits-list {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 960px) {
	.benefits-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

.benefit {
	background: #fff;
	border: none;
	border-radius: 0;
	padding: 28px 24px;
	display: grid;
	grid-template-rows: auto 1fr;
	align-items: stretch;
	justify-items: center;
	text-align: center;
	min-height: 240px;
}
/* IconSize */
.benefit-ico {
	grid-row: 1;
	width: 80px;
	height: 80px;
	margin: 0 0 10px;
	display: grid;
	place-items: center;
}
.benefit-ico2 {
	grid-row: 1;
	width: 105px;
	height: 80px;
	margin: 0 0 10px;
	display: grid;
	place-items: center;
}
.benefit-ico img {
	max-width: 100%;
	max-height: 100%;
	display: block;
}

.benefit-t {
	grid-row: 2;
	align-self: center;
	margin: 0;
	color: var(--ink);
	font-weight: 500;
	line-height: 1.55;
	font-size: clamp(15px, 2.1vw, 18px);
	max-width: 30ch;
	text-wrap: balance;
}

/* ------------------------------
  Local-Nav（vertical-Tab・Arrow-Rigth）
------------------------------ */
.local-nav {
	background: transparent;
	position: sticky;
	top: 0;
	z-index: 20;
	margin: 20px auto 40px;
}
.tabs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	padding: 10px 0;
}
.tab {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--brand);
	color: #fff;
	font-weight: 500;
	letter-spacing: .02em;
	text-decoration: none;
	padding: 14px 40px;
	border-radius: 0;
	transition: background 0.2s ease;
}

.tab::after {
	content: "";
	position: absolute;
	width: 7px;
	height: 7px;
	border-right: 1.5px solid #fff;
	border-bottom: 1.5px solid #fff;
	right: 20px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	opacity: 0.9;
}

.tab:hover,
.tab[aria-current="true"] {
	background: var(--brand-2);

}

@media (max-width: 767px) {
	.tabs {
		grid-template-columns: 1fr;
		gap: 10px;
	}
}
/* ------------------------------
 Section
------------------------------ */
.center {
	text-align: center;
	margin: 0 0 16px;
	width: 100%;
	display: block;
}

.section-step .step-wrap{
	position: relative;
	background: var(--accent);
	padding: 34px 30px 38px;
}

.section-step .step-wrap::before{
	content:"";
	position:absolute;
	left:0;
	right:0;
	top:0;
	height:2px;
	background: var(--brand);

}

.section-step .step-badge{
	position:absolute;
	left:50%;
	top:0;
	transform: translate(-50%, -50%);
	width: 48px;
	height: 48px;
	border-radius:50%;
	background: var(--brand);
	color:#fff;
	border:none;
	display:grid;
	place-items:center;
	font-weight: 400;
	font-size: 1.3em;
}

.section-step .step-title.heading-line::after{
	display:none;
}
.section-step .step-title.heading-line{
	padding-left:0;
}
.section-step .step-title{
	margin:20px auto;
	font-size:clamp(18px,2.6vw,22px)!important;
	font-weight:500;
	text-align:center;
}
/* ===== LINE_Bun：#06c755 ＋ Icon-Left ===== */
.line-btn{
	display:inline-flex;
	align-items:center;
	gap:20px;
	padding:12px 62px;
	background:#06c755;
	color:#fff;
	font-weight:600;
	text-decoration:none;
	box-shadow:0 2px 0 rgba(0,0,0,.05);
	margin-bottom:40px;
}
.line-btn:focus-visible{
	outline: none;
	box-shadow: 0 0 0 3px rgba(255,255,255,.9),
              0 0 0 5px rgba(6,199,85,.6);
}
.line-btn:hover{
	filter:brightness(.96);
}
.line-ico{
	width:32px;
	height:32px;
	display:block;
}
@media (max-width: 769px){
	.line-btn{
		padding:12px 42px;
	}
}

.qr-card{
	background:#fff;
	border:none;
	padding:34px 24px;
	display:grid;
	grid-template-columns:1fr;
	gap:20px;
}

.qr-img{
	justify-self: center;
}
.qr-img img{
	max-width: clamp(160px, 40vw, 260px);
	width: 100%;
	height: auto;
}
.qr-card-text h4{
	margin: 0 0 16px 0;
	font-weight: 600;
}
.qr-card-text p{
	margin: 0 0 20px 0;
}
.qr-notes{
	margin: 8px 0 0 0;
	padding: 0;
	list-style: none;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.7;
}

.qr-notes li{
	position: relative;
	padding-left: 1em;
	text-indent: -1em;
}
.qr-notes li::before{
	content: "※";
	margin-right: .25em;
}
.qr-img img{
	margin-right: 0;
}

@media (min-width: 768px){
	.qr-card{
		grid-template-columns: 1.4fr .6fr;
		align-items: center;
		gap: 28px;
		padding:44px 44px;
	}
	.qr-card-text h4{
		margin: 0 0 20px 30px;
	}
	.qr-card-text p{
		margin: 0 20px 0 30px;
	}
	.qr-notes{
		margin: 20px 0 0 30px;
	}
	.qr-img{
		justify-self: end;
	}
	.qr-img img{
		margin-right: 40px;
	}
}
/* =============================
   FAQ
============================= */
.faq {
	display: grid;
	gap: 32px;
	margin-top: 20px;
	margin-bottom: 100px;
}

.qa {
	position: relative;
	background: var(--accent);
	border-radius: 0;
	padding: 38px 44px;
	border: none;
}

.qa::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--brand);
}

.qa > summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 500;
	color: var(--ink);
	font-size: clamp(15px, 2.5vw, 17px);
	padding-right: 28px;
	position: relative;
}

.qa > summary .icon {
	position: absolute;
	right: 0;
	width: 16px;
	height: 16px;
}
.qa > summary .icon::before,
.qa > summary .icon::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 12px;
	height: 2px;
	background: var(--brand);
	transform: translate(-50%, -50%);
	transition: 0.2s ease;
}
.qa > summary .icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.qa[open] > summary .icon::after {
	opacity: 0;
}

.qa-a {
	background: #fff;
	padding: 20px 44px;
	/*  border-radius: 6px;
	*/
	line-height: 1.8;
	color: var(--ink);
	font-size: 15px;
	margin-top: 16px;
}

.qa-a strong {
	font-weight: 600;
	color: var(--ink);
}
.qa-a small {
	color: var(--muted);
	font-size: 13px;
	line-height: 1.3;
}

@media (max-width: 768px) {
	.qa {
		padding: 24px 26px;
	}
	.qa-a {
		padding: 36px 38px;
	}
}
/* ------------------------------
  Buttons
------------------------------ */
.btn-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin: 18px auto 0;
}
.btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 12px 16px;
	border-radius: 999px;
	font-weight: 700;
	border: 1px solid var(--brand);
	transition: .15s ease;
}
.btn.primary {
	background: var(--brand);
	color: #fff;
}
.btn.primary:hover {
	background: var(--brand-2);
}
.btn.outline {
	background: #fff;
	color: var(--brand);
}
.btn.outline:hover {
	background: #fdf3f3;
}
@media (min-width: 768px) {
	.btn-row {
		grid-template-columns: repeat(2, 1fr);
		max-width: 700px;
	}
}

.heading-line {
	position: relative;
	margin: 0 0 18px;
	padding: 0 0 10px 0px;
	line-height: 1.4;
	width: 100%;
	max-width: none;
	box-sizing: border-box;
}
.heading-line::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: currentColor;
}



.heading-line--h3{
	color: #2b2b2b;
	font-weight: 500;
	font-size: clamp(24px, 2vw, 28px);
	margin: 80px 0 40px;
}
.heading-line--h3::after{
	height: 1px;
	background: #2b2b2b;
}
/* ======================================================
   ID
====================================================== */
.id-step {
	position: relative;
	background: var(--accent);
	padding: 38px 20px 28px;
	margin-bottom: 40px;
}

.id-step::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--brand);
}

.id-step::after {
	content: attr(data-step);
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--brand);
	color: #fff;
	font-weight: 400;
	font-size: 1.3em;
	display: grid;
	place-items: center;
}

.id-step-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: center;
}

.id-step-text {
	text-align: center;
}
.id-step-text h4 {
	/*  font-size: clamp(16px, 2vw, 20px);
	*/
	font-weight: 500;
	margin: 0 0 10px;
}
@media (min-width: 768px) {
	.id-step-text h4 {
		margin: 0 0 10px 30px;
	}
}
.id-step-text p {
	margin: 0;
}

.id-step-img {
	justify-self: center;
}
.id-step-img img {
	max-width: clamp(200px, 45vw, 420px);
	width: 100%;
	height: auto;
	display: block;
}

@media (min-width: 768px) {
	.id-step-inner {
		grid-template-columns: 1.3fr .7fr;
		gap: 40px;
	}
	.id-step-text {
		text-align: left;
	}
	.id-step-img {
		justify-self: end;
	}
}

.id-step-left{
	display: grid;
	gap: 16px;
	justify-items: center;
}

.id-step-cta{
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	width: 100%;
	justify-items: center;
}
@media (min-width: 768px) {
	.id-step-cta{
		margin-left: 30px;
	}
}
.btn-green {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	background: var(--brand);
	color: #fff;
	font-weight: 500;
	text-decoration: none;
	min-width: 260px;
	overflow: hidden;
}

.btn-green::after {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	border-right: 1.5px solid #fff;
	border-bottom: 1.5px solid #fff;
	right: 20px;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	opacity: 0.9;
}

@media (min-width: 768px){
	.id-step-inner{
		grid-template-columns: 1.3fr .7fr;
	}
	.id-step-left{
		justify-items: start;
	}
	.id-step-text{
		text-align: left;
	}
	.id-step-cta{
		justify-items: start;
	}
	.btn-green{
		min-width: 300px;
	}
}

@media (min-width: 769px) {
	.spOnly {
		display: none;
	}
}

@media (min-width: 768px) {
	.pcOnly {
		display: none;
	}
}

a,
a:hover,
a:focus,
a:active {
	text-decoration: none !important;
}
