@charset "utf-8";
/* ===================================================
	Home CSS
====================================================== */

/* ---------------------------------------------------
	#main_img
------------------------------------------------------ */
.hero {
	background: linear-gradient(105deg, #fff 50%, var(--main-green) 50%);
	padding: 150px 0 60px;
	overflow: hidden;
}
.hero-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1600px;
	margin: 0 auto;
	font-weight: bold;
}
.hero-content {
	font-size: 24px;
}
.hero-content .border {
	font-size: clamp(24px,2.2vw,30px);
	position: relative;
	z-index: 1;
	display: inline-block;
}
.hero-content .border::before {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	content: '';
	display: block;
	width: 100%;
	height: 1rem;
	background-color: #fdee02;
	transform: scaleX(0) translateZ(0);
	transform-origin: left;
	transition: transform 0.5s 0.5s;
}
.hero-content .border.show::before {
	transform: scaleX(1);
}
.hero-content .hero_txt {
	margin-top: 40px;
	font-size: 66px;
	color: var(--main-green);
	line-height: 1.3;
	font-weight: bold;
}
.hero-content .hero_txt+p {
	max-width: 530px;
	margin-top: 20px;
	line-height: 1.8;
}
.hero-content .cmn_btn {
	margin-top: 65px;
	font-size: 26px;
}
.hero-content .cmn_btn.show {
	animation: hvr-pop 1s;
	animation-iteration-count: 2;
	animation-delay: 0.5s;
}
.hero-image img {
	max-width: 100%;
	height: auto;
	padding-left: 6%;
}
.hero-image ul {
	display: flex;
	margin-top: -180px;
}
.hero-image li {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 280px;
	height: 280px;
	max-width: 33.3%;
	aspect-ratio: 1/1;
	font-size: clamp(18px,2vw,26px);
	color: var(--main-green);
	background: url(../../img/hero_emblem.webp)no-repeat center/contain;
	letter-spacing: 0;
	line-height: 1.35;
}
.hero-image .col-or {
	color: var(--accent-orange);
}
.hero-image .lg {
	font-size: clamp(27px,3.5vw,46px);
}
.hero-image .md {
	font-size: clamp(21px,2.8vw,36px);
}
.hero-image .sm {
	font-size: clamp(14px,1.5vw,20px);
}
.hero-image .note {
	font-size: 14px;
	font-weight: normal;
	color: #fff;
}


@media screen and (min-width: 601px) {
	.hero-content {
		flex-shrink: 0;
		width: 42%;
		padding-left: min(6.2vw,100px);
	}
	.hero-image {
		width: 58%;
	}
	.hero-image .note {
		padding-right: 4%;
		text-align: right;
	}
	/* Safari */
	_::-webkit-full-page-media, _:future, :root .hero-content .border {
		font-size: clamp(24px,2vw,30px);
	}
}
@media screen and (max-width: 600px) {
	.hero-flex { flex-direction: column; text-align: center; }
	.hero { padding: 90px 8% 40px; background: linear-gradient(to bottom, transparent 64%, var(--main-green) 64%); }
	.hero-content { max-width: 380px; font-size: 18px; }
	.hero-content .border { font-size: clamp(15px,4vw,22px); }
	.hero-content .border::before { height: 0.5rem; }
	.hero-content .hero_txt { display: flex; justify-content: center; margin-top: 5vw; font-size: min(7.5vw,40px); text-align: left; }
	.hero-content .hero_txt+p { font-size: min(3.90625vw,15px); text-align: left; }
	.hero-content .cmn_btn { margin-top: 30px; font-size: min(4.6vw,18px); }
	.hero-image { max-width: 360px; margin-top: 40px; }
	.hero-image .pc_photo { width: calc(100% + 12%); margin-left: -6%; }
	.hero-image ul { flex-wrap: wrap; margin-top: -18vw; }
	.hero-image li { width: 33.3%; height: auto; font-size: min(3.3vw,14px); }
	.hero-image .lg { font-size: min(5vw,22px); }
	.hero-image .md { font-size: min(4vw,17px); }
	.hero-image .sm { font-size: min(2.2vw,10px); }
	.hero-image .note { margin-top: 1rem; text-align: left; }
}


/* ---------------------------------------------------
	Common
------------------------------------------------------ */
.sec_title {
	line-height: 1.4;
	margin-bottom: 50px;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	color: var(--main-green);
}
.sec_title span {
	display: block;
    font-size: 46px;
    color: #2fa438;
}
.sec_title .highlight-orange {
	color: var(--accent-orange);
	font-size: 46px;
}
.svg_pin {
	width: 25px;
	height: 32px;
    margin-right: 5px;
	margin-left: -25px;
}
#icon-pin {
    fill: var(--accent-orange);
}

@media screen and (max-width: 600px) {
	.sec_title {
		margin-bottom: 30px;
		font-size: 20px;
	}
	.sec_title span {
		font-size: 26px;
	}
	.svg_pin {
		width: 18px;
		height: 23px;
	}
}


/* ---------------------------------------------------
	.meo-section
------------------------------------------------------ */
.meo-section {
    background-color: #fff;
    padding: 100px 0;
}
.section-title .sub-title {
    font-size: 1rem;
    color: var(--accent-orange);
    display: block;
    margin-bottom: 10px;
}
.highlight-green {
    color: var(--main-green);
    text-decoration: underline;
}
.meo-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 50px;
    gap: 20px;
}
.bubble-group {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
}
.bubble {
    background: #f9f9f9;
    border: 2px solid var(--main-green);
    border-radius: 15px;
    padding: 20px;
    position: relative;
    text-align: center;
    font-weight: bold;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.group-left .bubble::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    border-left: 15px solid var(--main-green);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}
.group-right .bubble::after {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    border-right: 15px solid var(--main-green);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}
.center-illustration {
    flex: 1;
    display: flex;
    justify-content: center;
}
.illust-placeholder {
    width: 250px;
    height: 250px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 600px) {
    .meo-container {
        flex-direction: column;
    }
    .center-illustration {
        order: -1;
        margin-bottom: 30px;
    }
    .bubble::after {
        display: none;
    }
    .bubble-group {
        width: 100%;
    }
}


/* ---------------------------------------------------
	#sec_importance
------------------------------------------------------ */
#sec_importance {
  padding: 80px 0;
  background: url(../../img/importance_img.webp)no-repeat right top/auto #fffcec;
}
.importance-title {
  font-weight: bold;
  margin-bottom: 50px;
  line-height: 1.5;
  font-size: 36px;
  color: initial;
}
.importance-title span {
	display: inline-block;
}
.importance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.importance-card {
  background-color: var(--main-green);
  color: #fff;
  padding: 40px 25px;
  border-radius: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}
.importance-card h3 {
  font-size: 26px;
  font-weight: bold;
  color: #fff571;
  margin-bottom: 20px;
  line-height: 1.4;
  height: 3em;
  display: flex;
  align-items: center;
}
.importance-card p {
  font-weight: normal;
  line-height: 1.8;
  text-align: left;
}
.importance-card p span {
	font-size: 20px;
	font-weight: bold;
}

@media screen and (max-width: 600px) {
	.importance-grid {
		grid-template-columns: 1fr;
	}
	#sec_importance {
		padding: 60px 0;
		background-size: 50%;
	}
	.importance-title {
		margin-bottom: 30px;
		font-size: 1.4rem;
		text-shadow: 0px 0 6px #fffcec, 0px 0 6px #fffcec;
	}
	.sec_title .highlight-orange {
		font-size: 1.6rem;
	}
	.card-icon {
		width: 30px;
		height: 30px;
		margin-bottom: 10px;
	}
	.importance-card {
		width: min(100%,360px);
		margin: 0 auto;
		padding: 20px 6% 25px;
	}
	.importance-card h3 {
		font-size: 20px;
	}
	.importance-card p span {
		font-size: 17px;
	}
}


/* ---------------------------------------------------
	#sec_solution
------------------------------------------------------ */
.problem-area {
    background: url(../img/pattern_bg.gif)repeat center;
    color: #fff;
    padding: 75px 0 0;
    text-align: center;
}
.problem-title {
	color: inherit;
}
.problem-title span {
	margin-top: 6px;
	font-size: 40px;
	color: inherit;
}
.problem-visual {
    position: relative;
    width: min(96%,930px);
    margin: 0 auto;
    height: 350px;
}
.problem-bubble {
    background: #fff;
    color: var(--text-color);
    padding: 40px;
    border-radius: 50%;
    position: absolute;
	z-index: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.problem-bubble .arrow {
	position: absolute;
	z-index: -1;
}
.problem-bubble .txt_green {
    display: block;
    color: #137645;
    font-size: 26px;
	font-weight: bold;
    margin-bottom: 5px;
}
.problem-person {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.solution-area {
    background: url(../../img/solution_bg.webp) center/cover no-repeat;
    padding: 130px 0 100px;
    position: relative;
}
.solution-area::before {
	position: absolute;
	left: 50%;
	top: -1px;
	z-index: 1;
	transform: translate(-50%,0);
	content: '';
	display: block;
	width: 800px;
	height: 100px;
	max-width: 92%;
	background-color: #77aff1;
	clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
	background: url(../img/pattern_bg.gif)repeat;
}
.solution-message {
    text-align: center;
}
.solution-title {
	font-size: 36px;
	color: inherit;
}
.solution-title span {
	display: inline-block;
}
.solution-title .brand-name { color: var(--main-green); }
.service-intro-box {
	position: relative;
    border: 2px solid var(--main-green);
    border-radius: 20px;
    padding: 30px 40px;
	padding-right: 270px;
    display: flex;
    align-items: center;
    background: rgba(255, 254, 238, 0.9);
    margin: 40px auto 0;
	font-weight: normal;
}
.service-q {
    color: var(--main-green);
    font-size: 36px;
	font-weight: bold;
    margin-bottom: 10px;
    display: inline-block;
}
.service-desc {
    font-size: 0.95rem;
    line-height: 2;
}
.service-desc .underline {
    text-decoration: underline;
    text-decoration-thickness: 0.5em;
    text-decoration-color: #fdee02;
    text-underline-offset: -0.2em;
    text-decoration-skip-ink: none;
	font-weight: bold;
}
.service-desc .md {
	font-size: 20px;
	font-weight: bold;
}
.service-device-img {
	position: absolute;
	right: 40px;
	bottom: 0;
}
.solution_arrow {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.solution_arrow svg {
	position: absolute;
	z-index: 1;
	width: 260px;
	height: 69px;
}
.solution_arrow .triangle_03 {
	bottom: -20px;
	fill: #137645;
}
.solution_arrow .triangle_02 {
	bottom: -40px;
	fill: #a5d7bc;
}
.solution_arrow .triangle_01 {
	bottom: -60px;
	fill: #fff;
}

@media screen and (min-width: 601px) {
	.b-left { left: 0; top: -40px; }
	.b-left .arrow { right: 10px; bottom: 30px; }
	.b-top-right { right: 0; top: -70px; }
	.b-top-right .arrow { bottom: 30px; left: -20px; }
	.b-bottom-right { right: -30px; bottom: 50px; }
	.b-bottom-right .arrow { top: 50%; left: -50px; transform: translateY(-50%); }
}
@media screen and (max-width: 600px) {
	.problem-area { padding: 50px 0 20px; }
	.problem-title { margin-bottom: 20px; }
	.problem-title span { font-size: 28px; }
    .problem-visual { height: auto; display: flex; flex-direction: column; align-items: center; gap: 10px; }
    .problem-bubble { position: static; width: min(100%,360px); border-radius: 15px; padding: 20px 4%; }
	.problem-bubble .txt_green { font-size: 20px; }
	.problem-bubble .arrow { display: none; }
    .problem-person { position: static; transform: none; order: -1; width: min(60vw,200px); }
	.solution-area { padding: 85px 0; background-size: 155%; background-position: center top; }
	.solution-area::before { width: 100%; height: 60px; }
	.solution-title { margin-bottom: 30px; font-size: 1.4rem; }
    .service-intro-box { flex-direction: column; padding: 25px 5% 0; }
	.service-q { width: 100%; font-size: 26px; text-align: center; }
    .service-device-img { position: static; width: 100%; height: 150px; margin: 30px 0 0; text-align: center; overflow: hidden; }
    .solution-message h3 { font-size: 1.4rem; }
	.service-desc .md { font-size: 18px; }
}


/* ---------------------------------------------------
	#sec_reasons
------------------------------------------------------ */
#sec_reasons {
    background-color: #dcebbd;
    padding: 100px 0;
    position: relative;
}
.section-title-green {
    font-size: 30px;
    margin-bottom: 50px;
    line-height: 1.4;
	color: var(--main-green);
}
.section-title-green .large-text {
    font-size: 46px;
	color: #2fa438;
}
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.reason-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.card-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 3px;
	padding: 15px;
    font-size: 30px;
    font-weight: bold;
    background-color: var(--main-green);
    color: #fff;
}
.card-body {
    padding: 30px 20px;
    flex-grow: 1;
}
.card-body .txt_grn {
    color: #137645;
    font-size: 24px;
	font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.5;
}
.card-body p {
    line-height: 1.8;
}

@media screen and (max-width: 600px) {
	#sec_reasons {
		padding: 90px 0 50px;
	}
	.section-title-green {
		margin-bottom: 30px;
		font-size: 1.4rem;
	}
	.section-title-green .large-text {
		font-size: 2rem;
	}
    .reasons-grid {
        grid-template-columns: 1fr;
    }
	.reason-card {
		width: min(100%,360px);
		margin: 0 auto;
	}
	.card-header {
		font-size: 20px;
	}
	.card-body {
		padding: 20px 5%;
	}
    .card-body h3 {
        min-height: auto;
    }
	.card-body .txt_grn {
		font-size: 18px;
	}
}


/* ---------------------------------------------------
	#sec_service
------------------------------------------------------ */
#sec_service {
    padding: 90px 0 100px;
}
.service-box {
    background: #fffeee;
    border: 3px solid var(--main-green);
    border-radius: 15px;
    margin-bottom: 30px;
	padding: 40px 35px;
    overflow: hidden;
}
.box-header {
	display: inline-flex;
	align-items: center;
    color: #137645;
    padding: 0 35px 0 25px;
    font-size: 32px;
    font-weight: bold;
}
.box-body .desc-text {
    font-size: 24px;
	font-weight: bold;
    margin: 10px 0 15px;
}
.intro-text {
	line-height: 1.8;
    margin-bottom: 30px;
}
.tool-content-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
}
.feature_item_wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.feature-item h4 {
    color: #2D8C4E;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
	font-size: 24px;
	font-weight: bold;
}
.feature-item h4 .mini-icon {
	width: min(4vw,50px);
}
.feature-item ul {
    list-style: none;
    padding-left: min(5vw,65px);
    margin-bottom: 20px;
}
.feature-item ul li {
	position: relative;
	padding-left: 24px;
}
.feature-item ul li::before {
	position: absolute;
	left: 0;
    content: "●";
    font-size: 0.8rem;
}
.feature-item ul li span {
	display: inline-block;
	min-width: 100px;
}
.service-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.split-body {
    display: flex;
	flex-wrap: wrap;
    gap: 15px;
	position: relative;
}
.service-sub-grid .img-side {
	flex-shrink: 0;
}
.service-box.item02 .text-side {
	padding-right: clamp(140px,13.5vw,190px);
}
.service-box.item02 .img-side {
	position: absolute;
	top: -70px;
	right: 0;
	width: clamp(140px,13.5vw,190px);
}
.service-box.item03 .text-side {
	width: 100%;
}
.footer-support .box-body {
	display: flex;
	gap: 0 3%;
}
.support-icons {
    display: flex;
    margin-top: 30px;
}
.s-icon {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 0 12px;
	line-height: 1.33;
    font-size: 20px;
	color: #137645;
    font-weight: bold;
	width: 33.3%;
}
.s-icon .sm {
	font-size: 13px;
	font-weight: normal;
	color: #000;
	vertical-align: text-bottom;
}
.s-icon .full {
	width: 100%;
	margin-top: 5px;
}

@media screen and (max-width: 1250px) {
	.service-box.item03 .box-body .desc-text br {
		display: none;
	}
}
@media screen and (min-width: 601px) {
	.service-box.item03 .yext-logo-area {
		position: relative;
		width: 100%;
		padding-right: 140px;
	}
	.service-box.item03 .yext-logo {
		position: absolute;
		bottom: 1rem;
		right: 0;
	}
	.yext-logo-area {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	.yext-logo {
		flex-shrink: 0;
	}
	.feature-item:nth-of-type(1) {
		width: 50%;
	}
	.feature-item:nth-of-type(2) {
		width: 45%;
	}
}
@media screen and (max-width: 600px) {
	#sec_service {
		padding: 50px 0;
	}
	.service-box {
		padding: 30px 5%;
	}
	.box-header {
		width: 100%;
		font-size: 20px;
	}
	.box-body .desc-text {
		font-size: 18px;
	}
	.feature_item_wrap {
		flex-direction: column;
	}
	.feature-item h4 {
		font-size: 18px;
	}
	.feature-item h4 .mini-icon {
		margin-top: 5px;
	}
	.service-box.item02 .img-side,
	.service-box.item03 .yext-logo {
		position: static;
		display: block;
		margin: 0 auto;
	}
	.service-box.item02 .text-side {
		padding-right: 0;
	}
	.service-box.item03 .yext-logo {
		width: 100px;
	}
	.footer-support .box-body {
		flex-direction: column;
	}
	.footer-support .img-side {
		width: 60vw;
		margin: 20px auto 0;
	}
	.support-icons {
		flex-direction: column;
		gap: 15px 0;
	}
	.s-icon {
		align-items: center;
		flex-wrap: wrap;
		width: auto;
		font-size: 16px;
	}
    .tool-content-grid, .service-sub-grid, .split-body {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
	.service-sub-grid {
		gap: 0;
	}
    .tool-visual {
		order: -1;
		width: 60vw;
		margin: 0 auto;
    }
}


/* ---------------------------------------------------
	#sec_price
------------------------------------------------------ */
#sec_price {
	background: url(../../img/illust_bg.webp)no-repeat right top/auto #dcebbd;
    padding: 100px 0;
}
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 3%;
    margin-bottom: 50px;
}
.price-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	letter-spacing: 0.04em;
}
.price-card.recommended {
	position: relative;
    border: 3px solid #2D8C4E;
	border-radius: 0 0 10px 10px;
}
.recommend-badge {
	position: absolute;
    top: -40px;
    left: -3px;
    width: 100%;
    border: 3px solid #2D8C4E;
	border-radius: 10px 10px 0 0;
    box-sizing: content-box;
    font-size: 24px;
    background: #2D8C4E;
    color: #fff;
    width: 100%;
    margin: 0 auto;
    font-weight: bold;
}
.plan-name {
    font-size: 36px;
    font-weight: bold;
    color: #137645;
    margin-bottom: 10px;
}
.plan-target {
    margin-bottom: 10px;
}
.plan-price .amount {
    font-size: 40px;
    font-weight: bold;
}
.initial-cost {
    font-size: 18px;
	font-weight: bold;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #aaa;
}
.plan-features {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 0.9rem;
}

.plan-features li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.plan-features li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #333;
}
.strong-feature {
    font-weight: bold;
}
.option-box {
    background: #fff;
    border-radius: 15px;
    padding: 30px 40px 35px;
}
.option-title {
	font-size: 20px;
	font-weight: bold;
    color: #137645;
    margin-bottom: 20px;
}
.option-title::before {
	content: '■';
	color: var(--accent-orange);
}
.option-table {
    width: 100%;
    border-collapse: collapse;
}
.option-table td {
    padding: 20px 10px;
    border-bottom: 1px solid #aaa;
}
.opt-name {
    width: 30%;
	font-size: 20px;
    font-weight: bold;
	color: #137645;
}
.opt-price {
    font-weight: bold;
    white-space: nowrap;
}
.opt-price span {
	font-size: 26px;
}

@media (min-width: 601px) {
	#sec_price .sec_title {
		margin-bottom: 90px;
	}
	.option-table tbody {
		border-top: 1px solid #aaa;
	}
}
@media screen and (max-width: 600px) {
	#sec_price {
		padding: 50px 0;
		background-size: 42%;
	}
    .price-grid {
        grid-template-columns: 1fr;
    }
	.plan-name {
		font-size: 24px;
	}
	.price-card {
		padding: 25px 5%;
	}
	.plan-price .amount {
		font-size: 2rem;
	}
	.initial-cost {
		font-size: 16px;
	}
	.price-card.recommended {
		margin-top: 40px;
	}
	.recommend-badge {
		line-height: 40px;
		font-size: 20px;
	}
	.option-box {
		padding: 30px 5% 35px;
	}
    .option-table td {
		border-bottom: none;
        display: block;
        width: 100%;
        text-align: left;
        padding: 5px 0;
    }
	.option-table tbody {
		border-top: none;
	}
    .option-table tr {
		border-top: 1px solid #aaa;
        display: block;
        padding: 15px 0;
    }
	.opt-name {
		font-size: 18px;
	}
}


/* ---------------------------------------------------
	#sec_case
------------------------------------------------------ */
#sec_case {
    background: url(../../img/case_bg.webp) no-repeat center/cover;
    background-size: cover;
    padding: 100px 0;
}
#sec_case .sec_title {
	margin-bottom: 35px;
}
.section-lead {
    font-weight: bold;
    margin-bottom: 50px;
    font-size: 20px;
	text-align: center;
}
.case-slider-container {
    position: relative;
    padding: 0 50px;
}
.case-card {
    background: #fffeee;
    border: 3px solid var(--main-green);
    border-radius: 15px;
    padding: 20px 30px;
}
.case-client {
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 15px;
	text-align: center;
}
.case-image img {
    aspect-ratio: 3 / 2;
	width: 100%;
    margin-bottom: 15px;
}
.case-text {
    line-height: 1.6;
    letter-spacing: 0.1em;
}
.swiper-button-prev,
.swiper-button-next {
    color: #2D8C4E;
    top: 50%;
    transform: translateY(-50%);
}
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 30px;
    font-weight: bold;
}

@media screen and (max-width: 600px) {
	#sec_case {
		padding: 50px 0;
	}
	.section-lead {
		font-size: 16px;
	}
	.case-slider-container {
        padding: 0 30px;
    }
	.swiper-button-prev svg,
	.swiper-button-next svg {
		width: 45%;
	}
	.swiper-button-prev {
		justify-content: flex-start;
	}
	.swiper-button-next {
		justify-content: flex-end;
	}
}


/* ---------------------------------------------------
	#sec_flow
------------------------------------------------------ */
.flow-section {
	background: url(../../img/illust_bg.webp)no-repeat right top/auto #dcebbd;
    padding: 100px 0;
}
.flow-section .sec_title {
	margin-bottom: 30px;
}
.flow-container {
    position: relative;
}
.flow-item {
    display: flex;
	align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}
.flow-item::before {
	content: "";
    position: absolute;
    bottom: -25px;
    left: 48px;
    width: 5px;
	height: calc(100% - 80px);
    background-color: #87c291;
    z-index: 1;
}
.flow-item:last-child::before {
	content: none;
}
.step-badge {
	position: relative;
	z-index: 1;
    background-color: var(--main-green);
    color: #fff;
    width: 100px;
    height: 100px;
	margin-right: -20px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.step-label {
    font-weight: bold;
    line-height: 1;
}
.step-num {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.2;
}
.flow-content {
    background: #fff;
    border-radius: 10px;
    padding: 25px 35px;
    flex-grow: 1;
}
.flow-content h3 {
    color: #2D8C4E;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
}
.flow-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #333;
}

@media screen and (max-width: 600px) {
	.flow-section {
		padding: 50px 0;
		background-size: 42%;
	}
    .step-badge {
        width: 70px;
        height: 70px;
		padding-top: 5px;
		font-size: 12px;
    }
    .step-num {
        font-size: 24px;
    }
	.flow-item::before {
		left: 32px;
		height: calc(100% - 50px);
	}
    .flow-content {
        padding: 15px 20px;
        margin-left: 15px;
    }
    .flow-content h3 {
        font-size: 1rem;
    }
}


/* ---------------------------------------------------
	#sec_faq
------------------------------------------------------ */
.faq-section {
	background: url(../img/pattern_bg.gif)repeat center;
    padding: 80px 0;
}
.faq-main-title {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    font-weight: bold;
}
.faq-item {
    margin-bottom: 20px;
	border-radius: 10px;
	background-color: #fff;
}
.acc_tit {
    color: #2D8C4E;
    padding: 25px 60px 25px 40px;
	font-size: 24px;
    font-weight: bold;
    position: relative;
    line-height: 1.4;
    transition: background-color 0.3s;
}
.acc_tit::after {
    content: "+";
    position: absolute;
    right: 25px;
    top: 35px;
	line-height: 0;
    font-size: 35px;
    font-weight: bold;
    transition: transform 0.3s;
}
.acc_tit.active::after {
    content: "−";
}
.acc_contents {
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    display: none;
}
.faq-answer {
    padding: 0 40px 30px 40px;
    line-height: 1.8;
}
.faq-answer p {
	line-height: 1.8;
}
.faq-answer p+p {
	margin-top: 1rem;
}
.faq-answer p .bold {
	font-weight: bold;
}

@media screen and (min-width: 601px) {
	.faq-main-title {
		font-size: 46px;
	}
}
@media screen and (max-width: 600px) {
	.faq-section { padding: 50px 0; }
    .faq-main-title { margin-bottom: 30px; font-size: 1.6rem; }
    .acc_tit { padding: 20px 50px 20px 20px; font-size: 1rem; }
	.acc_tit::after { top: 30px; font-size: 1.35rem; }
}


/* ---------------------------------------------------
	#sec_contact
------------------------------------------------------ */
.contact-section {
    padding: 100px 0;
}
.contact-title {
    text-align: center;
    color: #137645;
    font-size: 46px;
    margin-bottom: 20px;
    font-weight: bold;
}
.contact-lead {
    text-align: center;
    line-height: 1.8;
    margin-bottom: 60px;
}
.contact-section .red {
	color: #e63932;
}

@media screen and (max-width: 600px) {
	.contact-section {
		padding: 50px 0;
	}
	.contact-title {
		font-size: 26px;
	}
	.contact-lead {
		margin-bottom: 40px;
		text-align: left;
	}
}

#mailformpro {
	width: 650px;
    margin: 0 auto;
    max-width: 90%;
}
#mailformpro .mfp_area dl dt::before { content: '■'; color: #137645; }

/* ▼ mailform PRO のCSS上書き ▼ */
body { overflow-x: auto !important; }
#mailformpro .mfp_area dl dt,
#mailformpro .mfp_area dl dd { font-size: 16px; border: none; float: none; padding: 0; }
#mailformpro .mfp_area dl dt { width: auto; margin-bottom: 10px; font-weight: bold; text-align: left; }
#mailformpro label { white-space: normal; border-radius: 0; margin: 0; display: inline; }
#mailformpro .mfp_area .mfp_colored { background-color: none !important;}
#mailformpro .mfp_area .mfp_not_checked,
#mailformpro .mfp_area .mfp_checked,
#mailformpro .mfp_area .mfp_colored { margin: 7px 10px 0 0 !important; padding: 0; background: none !important; box-shadow: none; border: none;}
.mfp_element_button { text-shadow: none !important; }
div.mfp_buttons { text-align: center;}
form div.mfp_buttons button { margin: 50px auto 0; border: none; transition: 0.3s ease-in-out; text-shadow: none;}

form#mailformpro label{ border: none; display: block; white-space: normal !important;}
form#mailformpro label.mfp_checked{ background-color: transparent !important;}
form#mailformpro label.mfp_not_checked,
form#mailformpro label.mfp_checked { border: none !important; box-shadow: none !important; }
/* ▲ mailform PRO のCSS上書き ▲ */

/* ▼ 共通スタイル※消さないで ▼ */
form#mailformpro .mfp_area > dl input,
form#mailformpro .mfp_area > dl select,
form#mailformpro .mfp_area > dl textarea { font-size: 15px; font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif; box-shadow: none; }

form#mailformpro .mfp_area > dl input:focus,
form#mailformpro .mfp_area > dl select:focus,
form#mailformpro .mfp_area > dl textarea:focus,
form#mailformpro .mfp_area .add_box dd > div select:focus { outline: none; border: 2px solid #aaa; }

form#mailformpro .mfp_area > dl input { max-width: 100%; height: 50px; padding: 5px 3px; border: 1px solid #aaa; box-sizing: border-box; }

form#mailformpro .mfp_area > dl input:not(input[type=checkbox],input[type=radio]),
form#mailformpro .mfp_area > dl select,
form#mailformpro .mfp_area > dl textarea { width: 100%; max-width: 100%; box-sizing: border-box; border: 1px solid #aaa; border-radius: 5px;}
form#mailformpro .mfp_area select::-ms-expand { display: none; }

form#mailformpro .mfp_area > dl { margin: 0 0 20px;}
form#mailformpro .mfp_area > dl:last-of-type { margin: 0;}
form#mailformpro .policy_col iframe { width: 100%; height: 250px; margin: 50px 0 20px; border: 1px solid #aaa;}

@media screen and (max-width: 600px) {
	form#mailformpro .policy_col iframe { margin: 30px 0 10px;}
}

/* チェックボックス */
form#mailformpro input[type="checkbox"] { margin: 0 3px 0 0; -webkit-appearance: none; -moz-appearance: none; appearance: none; border: 1px solid #aaa; position: relative; vertical-align: text-bottom; border-radius: 0; height: 15px; width: 15px; background: #fff; }
form#mailformpro input[type="checkbox"]:checked::after { content: ""; display: block; position: absolute; top: -2px; left: 3px; width: 5px; height: 10px; transform: rotate(40deg); border-bottom: 3px solid var(--main-green);
    border-right: 3px solid var(--main-green); }
form#mailformpro input[type="checkbox"]:checked { border: 1px solid #aaa; }
form#mailformpro .check_box dd div.mfp_err { margin: 5px 0 0 0 !important;}

/* 個人情報ボックス */
.mfp_buttons .submit-btn {
    background: var(--accent-orange) !important;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 20px;
    font-weight: normal;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}
.mfp_buttons .submit-btn .line::before {
	bottom: -2px;
}
@media screen and (hover: hover) and (min-width: 601px) {
	.mfp_buttons .submit-btn:hover {
		animation: none;
		box-shadow: none;
	}
}
@media screen and (max-width: 600px) {
	.mfp_buttons .submit-btn {
		margin-top: 30px;
		font-size: 18px;
	}
}


/* ---------------------------------------------------
	.thanks
------------------------------------------------------ */
.thanks #sec_lead {
	display: flex;
    align-items: center;
    letter-spacing: 2px;
	font-weight: bold;
	text-align: center;
	height: calc(100vh - 466px);
}
.thanks #sec_lead .tit {
	font-size: 26px;
	font-weight: bold;
}
.thanks #sec_lead .tit+p {
	margin-top: 40px;
	line-height: 1.8;
}
.thanks #sec_lead a {
	display: inline-block;
	margin-top: 100px;
	text-decoration: underline;
}
.thanks #sec_lead a::after {
	content: ' >';
}

@media screen and (hover: hover) and (min-width: 601px) {
	.thanks #sec_lead a:hover {
		text-decoration: none;
	}
}
@media screen and (min-width: 601px) {
	.thanks #sec_lead {
		height: calc(100vh - 190px);
		min-height: 600px;
	}
}
@media screen and (max-width: 600px) {
	.thanks #sec_lead .tit {
		font-size: 20px;
	}
	.thanks #sec_lead .tit+p {
		text-align: left;
	}
	.thanks #sec_lead a {
		margin-top: 60px;
	}
}