/*
Theme Name: わんぱくふぉれすと
*/
.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.oswald-<uniquifier> {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}
html {
	font-size: 62.5%;
	scroll-behavior: smooth; /* スムーススクロール */
	scroll-padding-top: 130px; /* ヘッダー固定でのアンカーリンク調整 */
}
html,
body,
.entry-body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	letter-spacing: 0.07em;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	overflow-x: hidden;
}
b, strong {
    font-weight: bold;
}
h1, h2, h3, h4 {
	font-weight: bold;
}
img {
	max-width: 100%;
	height: auto;
}

/* ベース */
.site__header {
    position: relative;
    z-index: 10;
    background: #fff;
    color: #fff;
	margin: auto;
	height: 100px;
}
/* 固定化状態 */
.site__header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
	width: 100%;
    z-index: 1000;
    /* 必要なら影など */
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

/* 固定時の押し下げ用スペーサー（JSで高さを入れる） */
#header-spacer {
    height: 0;
}
.site__header--inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}
.site__header--logo {
	width: 290px;
	height: auto;
}
.site__header--logo img {
	max-width: 290px;
	height: auto;
}

/* ハンバーガー */
/* ボタン本体 */
.hamburger {
    position: relative;
    width: 80px;
    height: 80px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

/* 3本線を絶対中央に配置 */
.hamburger__bar {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 48px;
    height: 3px;
    background: #754c2e;
    transform: translate(-50%, -50%); /* 中央基準 */
    transition: transform .25s ease, opacity .2s ease;
    transform-origin: center center;   /* 念押し */
}

/* 初期並び（上・中・下）：中央から上下にだけずらす */
.hamburger__bar:nth-child(1) {
    transform: translate(-50%, calc(-50% - 18px));
}
.hamburger__bar:nth-child(2) {
    opacity: 1;
}
.hamburger__bar:nth-child(3) {
    transform: translate(-50%, calc(-50% + 18px));
}

/* 開いたとき：中央に集合してからクロスに回転 */
.hamburger.is-active .hamburger__bar:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger.is-active .hamburger__bar:nth-child(2) {
    opacity: 0;
}
.hamburger.is-active .hamburger__bar:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* モーション配慮（任意） */
@media (prefers-reduced-motion: reduce) {
    .hamburger__bar { transition: none; }
}

/* ナビ（モバイル：オフキャンバス） */
.global-nav {
    position: fixed;
    inset: 0 0 0 auto; /* 右側からスライド */
    width: 100%;
    background: rgba(255, 255, 255, .9);
    translate: 100% 0;
    transition: translate .28s ease;
    padding: 24px 20px 40px;
    overflow-y: auto;
	z-index: 1000;
}
.global-nav.is-open {
    translate: 0 0;
	margin-top: 100px;
}
.global-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.global-nav__list > li > a {
    display: block;
    padding: 14px 8px;
	font-size: 12px;
    color: #666666;
    text-decoration: none;
    position: relative;
    padding: 0 0 0 16px;	
}
.global-nav__list > li > a:hover,
.global-nav__list > li > a:focus {
    text-decoration: underline;
    outline: none;
}
.global-nav__list > li.main a::before,
.global-nav__list > li.inquiry a::before {
    content: "";
    position: absolute;
    top: 50%;   /* 縦軸をセンタリングする */ 
    left: 0;
    transform: translateY(-50%);   /* 縦軸をセンタリングする */  
    border: 5px solid transparent;
    border-left: 8px solid #006837;   /* 好みで色を変えてください */  
}

@media screen and (max-width: 899px) {
	.global-nav__list > li {
		padding: 20px;
		border-bottom: thin solid #ccc;
	}
	.global-nav__list > li:last-child {
		border-bottom: none;
	}
	.global-nav__list > li a {
		font-weight: 700;
	}
}

/* オーバーレイ */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(166, 180, 122, .2);
	z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
	margin-top: 100px;
}
.nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* デスクトップ（例：900px以上で横並び） */
@media (min-width: 900px) {
    .hamburger { display: none; }
    .global-nav {
        position: static;
        translate: 0 0 !important;
        width: auto;
        background: transparent;
        padding: 0;
        overflow: visible;
    }
    .global-nav__list {
        display: flex;
        gap: 20px;
    }
    .global-nav__list > li > a {
        padding: 8px 10px;
        border-radius: 6px;
    }
    .nav-overlay { display: none !important; }

	.global-nav__list > li.inquiry a::before {
		content: "";
		position: absolute;
		top: 50%;   /* 縦軸をセンタリングする */ 
		left: 0;
		transform: translateY(-50%);   /* 縦軸をセンタリングする */  
		border: 5px solid transparent;
		border-left: 8px solid #006837;   /* 好みで色を変えてください */  
	}	
	.global-nav__list > li > a:hover,
	.global-nav__list > li > a:focus {
		text-decoration: none;
	}	
	/* 横並びのナビ（既にflexなら不要） */
	.global-nav__list {
		display: flex;
		align-items: center;
		list-style: none;
		padding: 0;
		margin: 0;
	}

	/* 「お問い合わせフォーム」を右端へ寄せる */
	.global-nav__list > li.inquiry {
		margin-left: auto;
	}

	/* ボタン化 */
	.global-nav__list > li.inquiry > a {
		display: inline-block;
		padding: 16px 36px;
		border-radius: 9999px;
		background: #006837;
		color: #fff !important;
		text-decoration: none;
		font-weight: 800;
		font-size: 16px;
		line-height: 1.1;
		letter-spacing: 0.02em;

		/* 柔らかい影（2段） */
		box-shadow:
			0 14px 36px rgba(0, 0, 0, 0.16),
			0 2px  8px rgba(0, 0, 0, 0.10);

		transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
	}

	/* ホバー & フォーカス */
	.global-nav__list > li.inquiry > a:hover {
		transform: translateY(-1px);
		box-shadow:
			0 18px 40px rgba(0, 0, 0, 0.20),
			0 4px 10px rgba(0, 0, 0, 0.12);
	}
	.global-nav__list > li.inquiry > a:focus-visible {
		outline: 3px solid #9bd0ff;
		outline-offset: 3px;
	}

	/* クリック時に軽く沈む */
	.global-nav__list > li.inquiry > a:active {
		transform: translateY(0);
		filter: brightness(0.98);
	}

	/* もし他のメニューで緑の「▶」などの擬似要素を付けている場合は、問い合わせだけ消す */
	.global-nav__list > li.inquiry > a::before {
		content: none;
	}
		
}

@media screen and (max-width: 952px) {
	.global-nav__list > li.inquiry > a {
		padding: 12px 18px;
		font-weight: 600;
		font-size: 14px;
		line-height: 1;
		letter-spacing: 0;
	}	
}
/* スクロールロック（メニュー表示中にbodyへ付与） */
.body-lock {
    overflow: hidden;
    touch-action: none;
}
main.site-main {
	max-width: 1100px;
    margin: auto;
    padding: 50px 20px 50px;
}
.page .page-id-13 main.site-main {
    text-align: center;
	padding: 0 20px 50px;

}
#main__header {
	width: 100vw;
	min-height: 100px;
	background-image: url(images/header_bg.svg); 
	background-repeat: repeat;
	background-size: contain;
	background-position: top center;
	padding: 40px 0 20px;
}
.main__header--wrppaer {
	max-width: 1100px;
	margin: auto;
	text-align: center;
	background-image: url(images/header_leaf_1.svg), url(images/header_leaf_2.svg); 
	background-repeat: no-repeat;
	background-size: 167px 142px, 222px 252px;
	background-position: bottom left, bottom right;	
}
.main__header--wrppaer h2.hero-title {
    margin: 40px auto;
    display: grid;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
    font-weight: 700;
	justify-items: center;
}
.main__header--wrppaer .hero-title__line {
    display: inline-block;
    background: #fff;
    padding: 0.25em 0.7em;
    border-radius: 6px;
    letter-spacing: 0.04em;
    font-size: 30px;
	width: max-content;
}
.main__header--wrppaer .hero-title__line + .hero-title__line {
    margin-top: 18px; 
	padding: 0.25em 0.5em;
    justify-self: center; 
}
.main__header--wrppaer .hero-title__line--primary {
    color: #754c2e;
    font-weight: 700;
}
.main__header--wrppaer .hero-title__line--accent {
    color: #006837;
    font-weight: 800;
}
.main__header--bottom {
	width: 100vw;
	min-height: 50px;
	background-image: url(images/bg_bottom.svg); 
	background-repeat: repeat-x;
	background-size: contain;
	background-position: top center;
	margin-top: -10px;
}
#main__copy {
	max-width: 1100px;
	margin: auto;
	text-align: center;	
}
#main__copy h2 {
	font-size: 45px;
	color: #754c2e;
}
#main__copy .main__copy--wrapper {
	max-width: 1100px;
	margin: auto;
	text-align: center;	
	background-image: url(images/tree_1.svg), url(images/tree_2.svg), url(images/tree_3.svg); 
	background-repeat: no-repeat;
	background-size: 141px 170px, 128px 196px, 81px 105px;
	background-position: center left, top right, bottom right;
}
#main__copy .main__copy--wrapper p {
	font-size: 16px;
	color: #666;
	letter-spacing: 0.16em;
	line-height: 37.6px;
	margin-bottom: 30px;
}
#main__copy .main__copy--wrapper p:last-of-type {
	margin-bottom: 70px;
}
#service {
	width: 100vw;
	padding: 40px 0 100px;
	background-color: #a3d165;
}
#service .service__title {
	max-width: 450px;
	margin: auto;
	height: 81px;
	background-image: url(images/laurel_1.svg), url(images/laurel_2.svg);
	background-repeat: no-repeat;
	background-size: 48px 81px, 48px 81px;
	background-position: center left, center right;
	position: relative;
	color: #fff;
}
#service .service__title h2 {
	font-size: 40px;
	text-align: center;
	margin: 0;
	padding: 0;
}
#service .service__title p {
	font-family: "Oswald", sans-serif;
	font-weight: 500;	
	font-size: 16px;
	text-align: center;
	line-height: 37.6px;
	letter-spacing: 0.16em;
	margin: 0;
}
.service__wrpper--1,
.service__wrpper--2,
.service__wrpper--3,
.service__wrpper--4 {
	max-width: 1100px;
	margin: 30px auto;
	display: flex;
	align-items: center;
	background: #fff;
	padding: 20px 40px 40px;
	border-radius: 20px;
	position: relative;
}

.service__wrpper--1 .num,
.service__wrpper--3 .num {
	font-family: "Oswald", sans-serif;
	font-weight: 500;	
	font-size: 155.57px;
	color: rgba(163, 209, 101, .1);
	position: absolute;
	top: -45px;
	left: 20px;
}
.service__wrpper--2 .num,
.service__wrpper--4 .num {
	font-family: "Oswald", sans-serif;
	font-weight: 500;	
	font-size: 155.57px;
	color: rgba(163, 209, 101, .1);
	position: absolute;
	top: -45px;
	right: 20px;
}
.service__wrpper--1,
.service__wrpper--3 {
	flex-direction: row-reverse;
}
.service__wrpper--img {
	max-width: 448px;
	border-radius: 50px;
	flex-shrink: 0;
	padding-top: 80px
}
.service__wrpper--1 .service__wrpper--img,
.service__wrpper--3 .service__wrpper--img {
	margin-left: 40px;
}
.service__wrpper--2 .service__wrpper--img,
.service__wrpper--4 .service__wrpper--img {
	margin-right: 40px;
}
.service__wrpper--inner {
	display:flex;
	flex-flow: column;	
	padding-top: 80px
}
.service__wrpper--title h2 {
	font-size: 35px;
	color: #754c2e;
	line-height: 67.39px;
	margin: 0;
	
}
.service__wrpper--cont {
	font-size: 16px;
	color: #666;
	line-height: 37.6px;
	/*letter-spacing: .16em;*/
	padding-top: 10px
}

#faq,
#access {
	width: 100%;
	min-height: 200px;
	background-image: url(images/bg.svg);
	background-repeat: repeat;
	background-size: contain;
	background-position: center;	
}
.wrapper {
	max-width: 1100px;
	margin: auto;	
}

#faq .faq__title {
	max-width: 406px;
	margin: 130px auto 60px;
	height: 73px;
	background-image: url(images/qp_tree_1.svg), url(images/qp_tree_2.svg);
	background-repeat: no-repeat;
	background-size: 46px 73px, 46px 73px;
	background-position: center left, center right;
	position: relative;
}
#faq .faq__title h2 {
	color: #754c2e;
	font-size: 40px;
	text-align: center;
	margin: auto;
	padding: 0;
}
#faq .faq__title p {
	font-family: "Oswald", sans-serif;
	color: #006837;	
	font-weight: 500;	
	font-size: 16px;
	text-align: center;
	line-height: 37.6px;
	letter-spacing: 0.16em;
	margin: 0;
}
/* リストリセット */
.faq__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.faq__item {
    background: #f9ecee;;
    border-radius: 15px;
    overflow: hidden;
}
.faq__item + .faq__item {
    margin-top: 16px;
}
.faq__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
    padding: 20px 24px;
    border: 0;
    color: #754c2e;
    font-size: 25px;
    font-weight: 700;
	letter-spacing: .1em;
    text-align: left;	
    background: transparent;
    cursor: pointer;
}
h3.faq__q {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 25px;
    font-weight: 700;	
}
.faq__icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    border-right: 3px solid #cd6273;
    border-bottom: 3px solid #cd6273;
    border-radius: 1px;
    transform: rotate(45deg);
    transition: transform .25s ease;
}
.faq__button[aria-expanded="true"] .faq__icon {
    transform: rotate(225deg);
}
.faq__panel {
    overflow: hidden;
    padding: 0;
    height: 0;
}
.faq__a {
    padding: 0 24px;
    color: #666;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
    letter-spacing: .16em;
	margin-top: -1em;
}
/* フォーカス可視 */
.faq__button:focus-visible {
    outline: 3px solid #9bd0ff;
    outline-offset: 2px;
}

#access .access__title {
	max-width: 529px;
	margin: 130px auto 60px;
	height: auto;
	background-image: url(images/bird.svg), url(images/acorns.svg);
	background-repeat: no-repeat;
	background-size: 73px 55px, 48px 35px;
	background-position: top left, top 10px right;
	position: relative;
}
#access .access__title h2 {
	color: #754c2e;
	font-size: 40px;
	text-align: center;
	margin: auto;
	padding-left: 20px;
}
#access .access__title p {
	font-family: "Oswald", sans-serif;
	color: #006837;	
	font-weight: 500;	
	font-size: 16px;
	text-align: center;
	line-height: 37.6px;
	letter-spacing: 0.16em;
	margin: 0;
}
/* アクセシビリティ用に見出しを隠す */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
}
.facility {
    margin: 24px 0;
}
.facility-list {
    margin: 0;
    padding: 0;
}
.facility-row {
    display: grid;
    grid-template-columns: 260px 1fr;
    align-items: center;
    background: #A6D86A;
    color: #ffffff;
    border-top: 1px solid #7CC04A;
    border-left: 1px solid #7CC04A;
    border-bottom: 1px solid #fff; 
}
.facility-row > dt {
    margin: 0;
    padding: 18px 24px;
    font-weight: 700;
        letter-spacing: .1em;
    white-space: nowrap;
}
.facility-row > dd {
    margin: 0;
    padding: 18px 24px;
    background: #fff;
    color: #666;
    line-height: 1.8;
	letter-spacing: .16em;
	border-right: 1px solid #7CC04A;
}
.facility-row:last-of-type {
	border-bottom: 1px solid #7CC04A;
}
.facility-row > dd a {
	color: #666;
    text-decoration: none;
}
.facility-row > dd a:hover {
    text-decoration: underline;
}

/* --- レスポンシブ（スマホ：縦積み） --- */
@media (max-width: 640px) {
    .facility-row {
        grid-template-columns: 1fr;  /* 1カラム化 */
        row-gap: 0;
    }
    .facility-row > dt,
    .facility-row > dd {
        padding: 14px 16px;
    }
    .facility-row > dt {
        border-bottom: 1px solid rgba(255,255,255,0.35);
    }
	.facility-row > dd a {
		color: #666;
		text-decoration: none;
	}	
}

#access .map {
	max-width: 100%;
	height: 600px;
	margin: 60px auto;
}

#slider {
	width: 100vw;
	margin: 30px auto;
}

#contact {
	width: 100%;
	margin: 100px auto 50px;
}
#contact .contact__wrapper {
	max-width: 1100px;
	margin: auto;
	background: rgba(209, 177, 44, .1);
	border-radius: 30px;
	padding: 30px;
	background-image: url(images/contact_leaf_1.svg), url(images/contact_leaf_2.svg);
	background-repeat: no-repeat;
	background-size: 177px 138px, 139px 109px;
	background-position: top 20px left 20px, bottom 20px right 20px;		
}
.contact__title h2 {
	color: #754c2e;
	font-size: 40px;
	text-align: center;
	margin: 30px auto 0;
	padding-left: 20px;
}
.contact__title p {
	font-family: "Oswald", sans-serif;
	color: #006837;	
	font-weight: 500;	
	font-size: 16px;
	text-align: center;
	line-height: 37.6px;
	letter-spacing: 0.16em;
	margin: 0;
}
.message {
	font-size: 16px;
	color: #666;
	line-height: 37.6px;
	letter-spacing: 0.16em;
	text-align: center;
}
#contact .phone__num {
	text-align: center;	
}
#contact .phone__num a {
	font-family: "Oswald", sans-serif;
	color: #006837;	
	font-weight: 500;	
	font-size: 60px;
	letter-spacing: 0.1em;
	text-decoration: none;
}
#contact .footer__form--btn {
	width: 100%;
	margin: 30px auto;
	text-align: center;
}
/* ボタン本体 */
.cta__btn {
    display: inline-block;
    padding: 18px 50px;                 /* 縦/横の厚み */
    border-radius: 9999px;              /* 大きな角丸＝丸カプセル */
    background: #006837;                /* 深い緑 */
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 0.01em;

    /* 柔らかい落ち影（2段） */
    box-shadow:
        0 14px 36px rgba(0, 0, 0, 0.16),
        0 2px 8px rgba(0, 0, 0, 0.10);

    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

/* ホバー：少しだけ持ち上げる＆影を強く */
.cta__btn:hover {
    transform: translateY(-1px);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.20),
        0 4px 10px rgba(0, 0, 0, 0.12);
}

/* クリック：沈ませる */
.cta__btn:active {
    transform: translateY(0);
    filter: brightness(0.98);
}

/* キーボードフォーカスの可視化 */
.cta__btn:focus-visible {
    outline: 3px solid #9bd0ff;
    outline-offset: 3px;
}
#footer__logo {
	width: 100%;
	margin: 50px auto;
	text-align: center;
}

footer.site-footer {
	background: #754c2e;
	margin: auto;
	height: 40px;
	text-align: center;
}
footer.site-footer .container p {
	font-size: 12px;
	color: #fff;
	line-height: 40px;
}

/* トップに戻る：浮動ボタン */
.back-to-top {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent; /* 画像のみ表示 */
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    /* フッター手前で持ち上げるオフセット（JSで更新） */
    transform: translateY(calc(var(--bt-offset, 0px) * -1));
}
.back-to-top img {
    display: block;
    width: 60px;
    height: 60px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.back-to-top:hover img {
    transform: scale(1.06);
    opacity: 0.9;
}

/* 表示状態 */
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
}

/* 低速回線・ユーザー設定配慮 */
@media (prefers-reduced-motion: reduce) {
    .back-to-top,
    .back-to-top img {
        transition: none;
    }
}

@media screen and (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}	
}

.post-13 .entry {
	max-width: 1100px;
}
.post-13 .entry .cform-table p {
    padding: 0;	
}

/* ===== 基本レイアウト（テーブル） ===== */
.wpcf7 form .cform-table {
    border-collapse: separate;
    border-spacing: 0 22px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    color: #555;
    font-size: 16px;
}
.wpcf7 form .cform-th {
    width: 220px;
    padding: 0 16px 0 0;
    white-space: nowrap;
    vertical-align: middle;
	text-align: left;
}
.wpcf7 form .cform-td {
	vertical-align: middle;
}

/* ===== 見出しバッジ／タイトル ===== */
.cform__badge {
    display: inline-grid;
    place-items: center;
    min-width: 50px;
    height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    line-height: 1;
}
.cform__badge--req {
	background: #cd4040;
}
.cform__badge--opt {
	background: #bdbdbd;
}
.cform__title {
	font-weight: 700;
	font-size: 18px;
	margin-left: 12px;
}

/* ===== 入力共通 ===== */
.wpcf7 form .cform-td input[type="text"],
.wpcf7 form .cform-td input[type="email"],
.wpcf7 form .cform-td input[type="tel"],
.wpcf7 form .cform-td textarea,
.wpcf7 form .cform-subtd input[type="text"] {
    width: 100%;
    height: 52px;
    padding: 12px 14px;
    border: 1px solid #d6d6d6;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.5;
    background: #fff;
}
.wpcf7 form .cform-td textarea {
    min-height: 240px;
    height: auto;
    resize: vertical;
}
.wpcf7 form .cform-td input:focus,
.wpcf7 form .cform-td textarea:focus {
    outline: none;
    border-color: #9bd0ff;
    box-shadow: 0 0 0 3px rgba(155,208,255,.35);
}

/* ===== お名前／フリガナ（内側テーブル） ===== */
.wpcf7 form .cform-subtable {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.wpcf7 form .cform-subth {
    width: 3em;                 /* 「姓/名/セイ/メイ」幅 */
    padding: 0 6px 0 12px;
    white-space: nowrap;
    vertical-align: middle;
    text-align: right;
    font-weight: 700;
    color: #555;
}
.wpcf7 form .cform-subtd {
    padding: 0 24px 0 0;
    vertical-align: middle;
}
.wpcf7 form .cform-subtd:last-child { padding-right: 0; }

/* ===== 郵便番号（〒｜123｜–｜4567 を1行） ===== */
.wpcf7 form .cform-ziptable { border-collapse: collapse; }
.wpcf7 form .zipmark {
    width: 2em;
    text-align: center;
    vertical-align: middle;
    font-weight: 700;
    color: #555;
}
.wpcf7 form .zipdash {
    width: 18px;
    text-align: center;
    vertical-align: middle;
    color: #999;
}
.wpcf7 form .zip1 { width: 160px; }
.wpcf7 form .zip2 { width: 200px; }
.wpcf7 form .zipbox {
    width: 100%;
    height: 52px;
    padding: 12px 10px;
    text-align: center;
    border: 1px solid #d6d6d6;
    border-radius: 6px;
}
.cform__note {
	margin: 0 0 10px;
	color: #777;
	font-size: 14px;
	text-align: left;
}

/* ===== 送信ボタン ===== */
.cform__submit {
	text-align: center;
	margin: 26px 0 0;
}
.cform__btn {
    display: inline-block;
    padding: 14px 42px;
    border: 0;
    border-radius: 9999px;
    background: #0b6e3d;
    color: #fff;
    font-weight: 800;
    font-size: clamp(16px, 2.4vw, 22px);
    letter-spacing: .04em;
    line-height: 1.1;
    cursor: pointer;
	margin-left: 60px;
}

/* ===== スマホ ===== */
@media (max-width: 640px) {
    .wpcf7 form .cform-table { border-spacing: 0 16px; }
    .wpcf7 form .cform-th {
        width: 1%;
        display: block;
        padding: 0;
        margin-bottom: 8px;
    }
    .wpcf7 form .cform-td { display: block; }
    .wpcf7 form .cform-subth { width: auto; padding-right: 8px; }
    .wpcf7 form .cform-subtd { padding-right: 0; }
    .wpcf7 form .zip1 { width: 120px; }
    .wpcf7 form .zip2 { width: 160px; }
    .cform__btn { width: 50%; }
}


.cform__agree {
	margin: 20px auto;
	text-align: center;
    margin-top:14px; color:#555;
}
.cform__agree .wpcf7-form-control-wrap input[type="checkbox"]{
    width:18px; height:18px; vertical-align:-3px;
}
.cform__agree-text a {
	text-decoration: underline;
}
span.wpcf7-list-item-label {
	display: none;
}
a.agree {
	padding-left: 1em;
}

h1.page__title {
	margin: 0 auto 50px;
	text-align: center;
	color: #754c2e;
	font-size: 40px;
}
@media screen and (max-width: 1120px) {
	#main__copy,
	#faq,
	#access,
	#contact {
		padding: 0 20px;
	}	
	.service__wrpper--1,
	.service__wrpper--2,
	.service__wrpper--3,
	.service__wrpper--4 {
		max-width: 98%;
	}	
}

@media screen and (max-width: 1000px) {
	.service__wrpper--1,
	.service__wrpper--2,
	.service__wrpper--3,
	.service__wrpper--4 {
		display: block;
	}
	.service__wrpper--1 .num,
	.service__wrpper--3 .num,
	.service__wrpper--2 .num,
	.service__wrpper--4 .num {
		left: 20px;
	}	
	.service__wrpper--1 .service__wrpper--img,
	.service__wrpper--3 .service__wrpper--img,
	.service__wrpper--2 .service__wrpper--img,
	.service__wrpper--4 .service__wrpper--img {
		margin-left: auto;
		margin-right: auto;
	}	
	.service__wrpper--title h2 {
		font-size: 35px;
		color: #754c2e;
		line-height: 67.39px;
		margin: 0;
		position: absolute;
		top: 20px;
		right: 0;
		left: 0;
		text-align: center;
	}	
	#service .service__title h2 {
		font-size: clamp(36px, 33.600px + 0.64vw, 40px);
	}
	.service__wrpper--inner {
		padding-top: 20px
	}
	.main__header--wrppaer .hero-title__line {
		font-size: clamp(22px, 17.200px + 1.28vw, 30px);
	}
	#main__copy h2 {
		font-size: clamp(28px, 17.800px + 2.72vw, 45px);
	}
	.service__wrpper--title h2 {
		font-size: clamp(26px, 20.600px + 1.44vw, 35px);
	}
	#faq .faq__title h2 {
		font-size: clamp(36px, 33.600px + 0.64vw, 40px);
	}
	.faq__button {
		font-size: clamp(16px, 10.600px + 1.44vw, 25px);
	}
	.faq__a {
		font-size: clamp(15px, 14.400px + 0.16vw, 16px);
	}
	#access .access__title h2,
	.contact__title h2 {
		font-size: clamp(30px, 24.000px + 1.6vw, 40px);
	}
	#contact .phone__num a {
		font-size: clamp(30px, 12.000px + 4.8vw, 60px);
	}
	.cta__btn {
		font-size: clamp(16px, 7.600px + 2.24vw, 30px);
	}
	h1.page__title {
		font-size: clamp(32px, 27.200px + 1.28vw, 40px);
	}
}

@media screen and (min-width: 601px) {
	.sp_only {
		display: none;
	}
}

@media screen and (max-width: 600px) {
	.pc_only {
		display: none;
	}
	.main__header--bottom {
		margin-top: 0;
	}
	#main__copy {
		margin-top: -50px;
        padding: 0 20px;
        background-image: url(images/tree_1.svg), url(images/tree_3.svg);
        background-repeat: no-repeat;
        background-size: 70.5px 85px, 42px 525.5px;
        background-position: top 30px left, bottom -230px right;
    }
	#main__copy .main__copy--wrapper {
		background: none;
	}
	#service {
		padding: 40px 10px;
	}
	.service__wrpper--1,
	.service__wrpper--2,
	.service__wrpper--3,
	.service__wrpper--4 {
		padding: 50px 20px 20px;
	}
	.service__wrpper--1 .num,
	.service__wrpper--3 .num,
	.service__wrpper--2 .num,
	.service__wrpper--4 .num {
		font-family: "Oswald", sans-serif;
		font-weight: 500;
		font-size: 60px;
		color: rgba(163, 209, 101, .3);
		position: absolute;
		top: -10px;
		left: 10px;
	}
	.service__wrpper--title h2 {
		top:60px;
	}
	#faq .faq__title {
		margin: 60px auto 60px;
	}
	#slider {
		margin: 0 auto;
	}
	#access .access__title {
		background-size: 58.4px 44px, 38.4px 28px;
		background-position: top left, top 10px right;
		margin: 60px auto -10px;
	}
	#access .map {
		width: 100%;
		aspect-ratio: 16 / 9;
	}
	#access .map iframe {
		width: 100%;
		height: 100%;
	}	
	#contact {
		margin: 50px auto 50px;
	}
	#contact .contact__wrapper {
		background-size: 88.5px 69px, 69.6px 54.5px;
		background-position: top 10px left 10px, bottom 10px right 10px;
	}
	main.site-main {
		padding: 20px;
	}	
	.wpcf7 form .cform-subtable {
		table-layout: auto;
	}
	input::placeholder {
		font-size: 14px;
	}
	.back-to-top {
		right: 8px;
		bottom: 0;
	}
	.back-to-top img {
		width: 40px;
		height: 40px;
	}
}