@charset "UTF-8";

*,
*::before,
*::after {
	box-sizing: border-box;
}

:root {
	--ls-base: 0.08em;
	--ls-heading: 0.18em;
	--or: #ff5a00;
	--gn1: #0a8b38;
	--gn2: #1b732b;
	--br-section:clamp(24px, -9.333px + 8.889vw, 140px);
}
::selection{
  background: #ffd800;
  color: #1f7a4a;
}
html {
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}

@media screen and (min-width:769px) {

	/* PC 769px以上 */
	html {
		font-size: 18px;
	}
}

@media screen and (max-width:768px) {

	/* タブレット 768px以下 */
	html {
		font-size: 2vw;
	}
}

@media screen and (max-width:480px) {

	/* スマートフォン 480px以下 */
	html {
		font-size: 14px;
	}
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	background: #faf9f2;
	font-family:
		YakuHanJP,
		"Zen Kaku Gothic New",
		sans-serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-wrap: break-word;
}


article,
aside,
footer,
header,
nav,
section,
main {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.2;
	font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	margin: 0;
	padding: 0;
	border: 0;
}

a,
a::after,
a::before {
	color: inherit;
	outline: none;
	text-decoration: none;
	position: relative;
	display: inline-block;
	transition: all .3s;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	-moz-transition: all .3s
}
a:hover {
	opacity: .8
}

img {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: top;
}

video {
	max-width: 100%;
	height: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, sans-serif;
	font-size: inherit;
}

ul,
ol {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

th,
td {
	text-align: left;
	vertical-align: top;
}


blockquote,
q {
	quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
	content: "";
	content: none;
}

address {
	font-style: normal;
}

input,
textarea,
select {
	max-width: 100%;
}

.sp {
	display: none
}

/*-----------------------
/*clearfix
---------------------------------*/
/* For modern browsers */
.cf:before,
.cf:after {
	content: " ";
	display: table;
}

.cf:after {
	clear: both;
}

/* For IE 6/7 only */
.cf {
	*zoom: 1;
}


.l-row {
	display: flex;
	flex-wrap: wrap;
}
/* 初期状態（画面外・透明） */
.fadein{
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity .6s ease,
    transform .6s ease;
}

/* 画面に入ったら */
.fadein.is-anim{
  opacity: 1;
  transform: translateY(0);
}

/* =========================
  Split layout (Flex)
  - SP: stacked (100%)
  - >=768: row
  - ratio via modifier class
========================= */

.l-split {
	--gap: 24px;
	/* 余白はここだけ触る */
	--bp: 768px;
	/* 768以上で横並び */
	--left: 50%;
	/* デフォルト比率 */
	--right: 50%;

	display: flex;
	flex-direction: column;
	/* SPは縦 */
	gap: var(--gap);
}

/* 子要素の基本：SPは100% */
.l-split__col {
	min-width: 0;
	/* これ超重要：長文で横はみ出し防止 */
}

/* 768以上で横並び＋比率適用 */
@media (min-width: 768px) {
	.l-split {
		flex-direction: row;
		align-items: center;
		/* 必要なければ消してOK */
	}

	/* 比率は basis で固定（gapがあっても破綻しにくい） */
	.l-split__col:first-child {
		flex: 0 0 var(--left);
	}

	.l-split__col:last-child {
		flex: 0 0 var(--right);
	}
}

/* ===== 比率プリセット（増やしやすい） ===== */
@media (min-width: 768px) {
	.l-split--50-50 {
		--left: 50%;
		--right: 50%;
	}

	.l-split--45-55 {
		--left: 45%;
		--right: 55%;
	}

	.l-split--40-60 {
		--left: 40%;
		--right: 60%;
	}

	.l-split--60-40 {
		--left: 60%;
		--right: 40%;
	}

	.l-split--35-65 {
		--left: 35%;
		--right: 65%;
	}
}

.dot-em {
	position: relative;
	display: inline-block;
}

.dot-em::before {
	content: "";
	position: absolute;
	top: -0.5em;
	left: 0;
	width: 100%;
	height: 0.78em;
	background-image: radial-gradient(circle, #ff7a00 13%, transparent 15%);
	background-size: 1.17em 1em;
	background-repeat: repeat-x;
}

.l-inner {
	width: min(1680px, 90%);
	margin: 0 auto
}

.l-inner_s {
	width: min(980px, 90%);
	margin: 0 auto
}

.p-phone {
	justify-content: center;
	flex-direction: column;
	align-items: center
}

.p-phone a {
	align-items: baseline;
}

.p-phone .icon {
	height: 1em;
	margin-right: 8px
}

.p-phone .icon img {
	height: 100%;
	width: auto
}

.p-phone a {
	color: var(--gn1);
	font-size: clamp(20px, 17.573px + 0.647vw, 30px);
	font-weight: 900;
	letter-spacing: 0.04em;
	line-height: 1;
	align-items: center;
	justify-content: center
}

.p-phone p {
	font-size: clamp(0.625rem, 0.581rem + 0.188vw, 0.75rem);
	padding-left: 12px;
}

.p-phone .txt {
	color: var(--gn1);
	font-size: clamp(12px, 10.544px + 0.388vw, 18px);
	width: min(300px, 100%);
	text-align: center;
	display: block;
	padding: 5px;
	border: 1px solid #258b38;
	border-radius: 3em;
	margin-bottom: 8px
}

.linetll span {
	align-items: center;
	display: flex;
	justify-content: center;
	/*	font-size: clamp(22px, 11.806px + 2.718vw, 64px);*/
}

.linetll span::before,
.linetll span::after {
	background-color: #000;
	content: "";
	height: 2px;
	width: 1em;
}

@media (max-width: 768px) {

	.linetll span::before,
	.linetll span::after {
		height: 2px;
	}
}

.linetll span::before {
	margin-right: 10px;
	transform: rotate(60deg);
}

@media (max-width: 768px) {
	.linetll span::before {
		margin-right: 5px;
	}
}

.linetll span::after {
	margin-left: 10px;
	transform: rotate(-60deg);
}

@media (max-width: 768px) {
	.linetll span::after {
		margin-left: 5px;
	}
}
.btn._small{
	width: 320px;
	margin: 0 auto;
}
.btn a {
	background: var(--or);
	color: #fff;
	text-align: center;
	font-weight: 700;
	letter-spacing: var(--ls-base);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 3em;
	box-shadow: 0 7px 0 0px #bf4400;
	padding: 5px;
	font-size: clamp(18px, 15.087px + 0.777vw, 30px);
}

.btn .icon {
	margin-top: 0.3em;
	width: 1.3em;
}
.btn._bl a{
	background: #365ea4;
	box-shadow: 0 7px 0 0px #072964;
}
/*-----------------------
/*header
---------------------------------*/
header {
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 2
}

.h-inner {

	background: #fff;
	border-radius: 0 0 40px 40px;
	height: clamp(70px, 66.359px + 0.971vw, 85px);
	align-items: center;
	justify-content: space-between;
	padding: 0 2.67%
}
@media (max-width: 768px) {
	.h-inner {
    background: #fff;
    border-radius: 0 0 20px 20px;
    height: 50px;
    align-items: center;
    /* justify-content: center; */
    padding: 0 2.67%;
}
}

.h-logowrap {
	width: min(420px, 25%);
	flex-wrap: nowrap;
	column-gap: 10px;
	align-items: center
}

@media (max-width: 1220px) {
	.h-logowrap {
		width: 50%;
		flex-wrap: wrap
	}
}

.h-logo {
	width: clamp(150px, 137.864px + 3.236vw, 200px);
}
@media (max-width: 768px) {
	.h-logo{
		    width: 124px;
		margin-top: -10px
	}
}

.h-logo__txt {
	font-size: clamp(10px, 9.515px + 0.129vw, 12px);
	width: 260px
}

@media (max-width: 1220px) {
	.h-logo__txt_br {
		display: none
	}
}

.h-copy {
	font-size: clamp(16px, 14.058px + 0.518vw, 24px);
	font-weight: 700;
	letter-spacing: var(--ls-heading);
}

@media (max-width: 1220px) {
	.h-copy {
		display: none
	}
}

.h-copy strong {
	font-weight: 700;
	color: var(--or);
}

.h-cta__btn {
	width: clamp(80px, 60.583px + 5.178vw, 160px);
}

.h-ctawrap {
	column-gap: 15px
}
header .p-phone{
	    justify-content: center;
    flex-direction: column;
    align-items: center;
}

/*-----------------------
/*mv
---------------------------------*/
.mv {
	background:
		url(../images/ill_mountain_l.png) no-repeat left bottom -30px/ clamp(200px, 25vw, 450px) auto,
		url(../images/ill_mountain_r.png) no-repeat right bottom -50px/ clamp(200px, 55vw, 900px) auto,
		var(--gn1);
	width: 100%;
	position: relative;
	padding: clamp(100px, 71.068px + 5.049vw, 168px) 0 clamp(50px, 15vw, 180px);
}

@media (max-width: 768px) {
	.mv {
		background: var(--gn1);
	}
}

.mv_txt_1 {
	text-align: center;
	margin-bottom: 20px;
	padding: 0 13%
}

@media (max-width: 768px) {
	.mv_txt_1 {
		padding: 0
	}
}

.mv_content {
	position: relative;
	margin: 0 auto;
	padding: clamp(10px, 5vw, 50px) 0;
}

.mv_content::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: min(950px, 60%);
	aspect-ratio: 16 / 9;
	/* 画像比率に合わせる */
	background: url(../images/mv_img.png) no-repeat right bottom / contain;
	pointer-events: none;
}

@media (max-width: 768px) {
	.mv_content::after {
		display: none
	}
}

.mv_txt_wrap {
	width: 50%;
	gap: 20px;
	position: relative;
	z-index: 2
}

@media (max-width: 768px) {
	.mv_txt_wrap {
		width: 100%;
		gap: 0;
	}

	.mv_txt_3 {
		order: 3;
	}

	.mv_txt_2 {
		order: 1;
	}

	.mv_img.sp {
		order: 2;
	}
}

/*-----------------------
/*introduction
---------------------------------*/
.introduction {
	position: relative;
	padding: 0 5% 100px;
	background-color: #b4d445;
	background-image: url(../images/pattern.png);
	background-repeat: repeat;
	background-size: 3.4%;
	border-radius: 0 0 var(--br-section) var(--br-section);
}

@media (max-width: 768px) {
	.introduction {
		padding: 40px 0%;
	}
}

.introduction:before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	width: 100%;
	height: 200px;
	background-image: url(../images/ill_mountain_lightgreen.png);
	background-size: cover;
	top: clamp(-200px, -133.333px + -8.681vw, -300px);
	background-position: center top;
}

@media (max-width: 768px) {
	.introduction:before {
		top: -90px;
	}
}

.ctabox_01 {
	background: #fff;
	border-radius: 14px;
	padding: 18px 3%;
	top: -130px;
	position: relative;
	box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.25);
	align-items: center
}

@media (max-width: 768px) {
	.ctabox_01 {
		flex-direction: column;
		grid-row-gap: 18px;
		top: 0;
	}
}

.ctabox_01 .btn {
	width: 53.57%;
	padding-right: 3%
}

@media (max-width: 768px) {
	.ctabox_01 .btn {
		padding-right: 0;
		width: 100%;
		border-bottom: 1px dotted #000;
		padding-bottom: 20px
	}
}

.ctabox_01 .p-phone {
	width: 45.982%;
	padding-left: 3%;
	border-left: 1px dotted #000;
}

@media (max-width: 768px) {
	.ctabox_01 .p-phone {
		padding-left: 0;
		width: 100%;
		border-left: none;
	}
}

.ctabox_01 .p-phone a {
	font-size: clamp(24px, 16.718px + 1.942vw, 54px);
}

@media (max-width: 768px) {
	.ctabox_01 .p-phone a {
		font-size: 30px
	}
}

.compatiblearea {
	border: 2px solid #fff;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 40px;
	padding: 40px 80px;
	position: relative;
	margin: 0 auto clamp(80px, 65.437px + 3.883vw, 40px);
}

@media (max-width: 768px) {
	.compatiblearea {
		padding: 30px 10px 20px;
		margin: clamp(80px, 65.437px + 3.883vw, 40px) auto;
	}
}

.yamagatamap {
	position: absolute;
	left: 30px;
	top: 80px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	width: min(250px, 40%);
}

@media (max-width: 768px) {
	.yamagatamap {
		left: 6px;
		width: min(250px, 28%);
		top: 58px
	}
}

.yamagatamap img {
	width: 100%;
	display: block;
}

.map-pin {
	position: absolute;
	left: 70%;
	/* ← 地図上のX位置 */
	top: 60%;
	/* ← 地図上のY位置 */
	transform: translate(-50%, -100%);
	width: 40px;
	height: 40px;
	pointer-events: none;
}

@media (max-width: 768px) {
	.map-pin {
		width: 20px;
		height: 20px;
	}
}

.map-pin img {
	position: relative;
	z-index: 3;
	width: 100%;
	height: auto;
}

.pulse {
	position: absolute;
	left: 50%;
	top: calc(50% + 34px);
	width: 30px;
	height: 30px;
	background: rgba(255, 255, 255, 1);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	animation: pulse 2.4s ease-out infinite;
	z-index: 1;
}

@media (max-width: 768px) {
	.pulse {
		top: calc(50% + 15px);
		width: 10px;
		height: 10px;
	}
}

.pulse2 {
	animation-delay: 1.2s;
}

@keyframes pulse {
	0% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 1;
	}

	70% {
		opacity: 0.5;
	}

	100% {
		transform: translate(-50%, -50%) scale(7);
		opacity: 0;
	}
}

.compatiblearea_txtarea {
	margin-left: min(250px, 43%);
}

@media (max-width: 768px) {
	.compatiblearea_txtarea {
		margin-left: min(250px, 30%);
	}
}

.compatiblearea_txtarea .ttl {
	font-size: clamp(18px, 12.417px + 1.489vw, 41px);
	background: #fee600;
	border-radius: 3em;
	padding: 5px 1em;
	text-align: center;
	font-weight: 700;
	position: absolute;
	top: -.7em
}

.compatiblearea_txtarea .txt {
	font-size: clamp(17px, 13.874px + 1.1vw, 30px);
	letter-spacing: var(--ls-base);
	font-weight: 500;
	line-height: 1.6
}
@media (max-width: 768px) {
	.compatiblearea_txtarea .txt {
		letter-spacing: 0;
	}
}
.compatiblearea_txtarea .txt strong {
	font-size: 1.36em;
	color: var(--or);
	background: #fff;
}

.compatiblearea_txtarea .txt span {
	font-size: min(16px, .7em);
	line-height: 1.2
}

@media (max-width: 768px) {
	.compatiblearea_txtarea .txt span {
		font-size: 10px
	}
}

.introduction_cont {
	background: #fff;
	border-radius: 14px;
	padding: 18px clamp(18px, -4.330px + 5.955vw, 110px) 40px;
	position: relative;
	margin: clamp(80px, 65.437px + 3.883vw, 140px) auto 40px
}

.introduction_cont .ttlwrap {
	background: #3d424a;
	border-radius: 14px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(416px, 50%);
	aspect-ratio: 2 / 1;
	margin: -40px auto 30px;
	position: relative;
	line-height: 1.3
}

.introduction_cont .ttlwrap:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -10px;
	border: 10px solid transparent;
	border-top: 15px solid #3d424a;
}

.introduction_cont .ttlwrap .icon {
	position: absolute;
	top: clamp(-30px, -10.291px + -2.589vw, -60px);
	left: -30px;
	width: clamp(49px, 26.01px + 7.531vw, 80px);
	height: clamp(40px, 23.010px + 4.531vw, 60px);
}

.introduction_cont .ttlwrap .ttl {
	font-size: clamp(16px, 7.718px + 1.842vw, 40px);
	font-weight: 700;
	letter-spacing: var(--ls-heading)
}

.introduction_cont .ttlwrap .ttl span {
	color: #fee600
}

.introduction_cont .ttlwrap .ttl strong {
	color: #fee600;
	font-size: 1.2em;
	font-weight: 700
}

.introduction_cont .subttl {
	font-size: clamp(20px, 14.660px + 1.424vw, 31px);
	letter-spacing: var(--ls-heading);
	color: #3d424a;
	text-align: center;
	margin-bottom: 30px
}

.introduction_cont .subttl strong {
	background: #ecf4d1
}

.introduction_cont .txtwrap .txt {
	display: inline;
	font-size: clamp(19px, 13.66px + 1.424vw, 31px);
	color: var(--gn1);
	letter-spacing: var(--ls-heading);
	line-height: 1.7;
	background: linear-gradient(currentColor, currentColor) left bottom / 100% 2px no-repeat;
	padding-bottom: .2em;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.introduction_cont .txt strong {
	color: var(--or);
}

.introduction_cont .memo {
	color: var(--gn1);
	margin-top: 1em
}

.persona {
	padding: clamp(50px, 33.010px + 4.531vw, 120px) 0 0
}

.persona > .mainttl {
	font-size: clamp(28px, 22.66px + 1.424vw, 54px);
	letter-spacing: var(--ls-heading);
	text-align: center;
	font-weight: 700;
	margin-bottom: 1em
}

.persona > .mainttl span {
	color: #839e9c
}

.fukidasiwrap {
	justify-content: space-between;
}

.fukidasi {
	background: #839e9c;
	border-radius: 40px;
	padding: 1em;
	position: relative;
	color: #fff;
	font-size: clamp(14px, 10.117px + 1.036vw, 30px);
	line-height: 1.5
}

.fukidasi:before {
	content: '';
	position: absolute;
	bottom: -20px;

	width: 40px;
	height: 23px;
}

.fukidasi.left:before {
	background: url(../images/icon_fukidashi_bl_l.svg)no-repeat;
	background-size: cover;
	right: 50px;
}

.fukidasi.right:before {
	background: url(../images/icon_fukidashi_bl_r.svg)no-repeat;
	background-size: cover;
	left: 50px;
}
@media (max-width: 768px) {
	.fukidasi.right.sp {
    width: 60%;
    margin: -50px 0 20px auto;
}
	.fukidasi.right.sp:before {
    background: url(../images/icon_fukidashi_bl_l.svg) no-repeat;
    background-size: cover;
    left: 100px;
    top: -14px;
    transform: rotate(174deg);
}
}
.persona_1{
	width: min(880px, 100%);
	margin: 0 auto;
}
@media (max-width: 1280px) {
	.persona_1 {
    width: min(650px, 100%);
}
}
.persona_1 .img {
	width: min(320px, 50%);
	margin: clamp(0px, 9.709px + -2.589vw, -40px) auto 40px
}
@media (max-width: 1280px) {
	.persona_1 .img {
		width: min(210px, 50%);
	}
}
.persona_1_conte {
	background: #fff;
	border: 5px solid #d6ded8;
	border-radius: 40px;
	position: relative;
	padding: 65px 5% 30px;
	margin-bottom: 30px
}
@media (max-width: 768px) {
	.persona_1_conte{
		    padding: 25px 5% 10px;
	}
	ul.l-row.persona_list{
		justify-content: center
	}
}
.persona_1_conte .ttl {
	background: #3d424a;
	border-radius: 3em;
	text-align: center;
	color: #fff;
	font-size: clamp(16px, 13.087px + 0.777vw, 28px);
	font-weight: 500;
	display: inline-block;
	padding: .2em 2em;
	position: absolute;
	top: -.8em;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	    width: min(500px, 77%);
}

.persona_list > li {
	width: 25%;
	padding: 0 10px
}
@media (max-width: 768px) {
	.persona_list > li {
    width: min(70px, 38%);
    padding: 0;
}
	
}
.persona_list > li:nth-child(even) {
	margin-top: 2em
}
@media (max-width: 768px) {
	.persona_list > li:nth-child(even) {
	margin-top: 1em
}
}
.arrow_down01,.arrow_down02{
	width: min(800px,90%);
	margin: 0 auto;
	position: relative;
    z-index: 1;
}

.persona_1_txt {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	font-size:clamp(30px, 13.718px + 2.742vw, 44px);
	color: var(--or);
	font-weight: 700;
	letter-spacing: var(--ls-heading);
}

/* アイコン */
.persona_1_txt__icon {
	width: 1em;
	height: auto;
	flex: 0 0 auto;
}

.persona_1_txt__label {
	display: inline;
	line-height: 1.5;
	background:
		repeating-linear-gradient(-45deg,
   #ffd800 0 3px,
   transparent 3px 6px) left bottom / 100% 20px no-repeat;
	padding-bottom: .25em;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}
.ill_demo{
	width: min(220px,30%);
	margin: clamp(50px, 33.010px + 4.531vw, 80px)  auto 0;
}
@media (max-width: 768px) {
	.ill_demo{
		margin-bottom: 10px
	}
}
.persona_2_list{
	margin-bottom: 40px
}
.persona_2_list >div{
	padding:  0 5%
}
.persona_2_list .img{
	margin-bottom: 20px
}
@media (max-width: 768px) {
	.persona_2_list .img{
		    width: min(200px, 80%);
    margin: 0 auto 10px;
	}
}
.persona_2_list p{
	font-size: clamp(14px, 11.573px + 0.647vw, 24px);
	letter-spacing: var(--ls-heading);
}
.content_main{
	background: #fff2af;
	border-radius: var(--br-section);
	padding: clamp(50px, 33.010px + 4.531vw, 120px) 0;
	margin-top: -50px;
	position: relative
}
@media (max-width: 768px) {
	.content_main{
		margin-top: -20px
	}
}
.content_main:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -50px;
    border: 50px solid transparent;
    border-top: 65px solid #fff2af;
}
@media (max-width: 768px) {
	.content_main:before {
		 border-top: 35px solid #fff2af;
	}
}
.content_main .mainttlwrap{
	display: flex;
    letter-spacing: var(--ls-heading);
    text-align: center;
    margin-bottom: 1em;
	justify-content: center;
	    align-items: center;
	margin-bottom: 40px
}
.content_main .mainttlwrap::before, .content_main .mainttlwrap::after {
    background-color: var(--or);
    content: "";
    height: 2px;
    width: 9em;
}
.content_main .mainttlwrap::before {
	margin-right: -3em;
	transform: rotate(60deg);
}
@media (max-width: 768px) {
	.content_main .mainttlwrap::before {
	margin-right: -1em;
}
}
.content_main .mainttlwrap::after {
    margin-left: -3em;
    transform: rotate(-60deg);
}
@media (max-width: 768px) {
	.content_main .mainttlwrap::after {
	margin-left: -1em;
}
}
.content_main .mainttlwrap h2{
	font-size: clamp(20px, 11.718px + 1.742vw, 54px);
	 font-weight: 700;
	   line-height: 1.5
}
.content_main .mainttlwrap h2 span{
	background:linear-gradient(transparent 60%, #fff 60%);
}
.content_main .mainttlwrap strong{
	font-size: 1.8em;
	color: var(--or);
	 font-weight: 900;
	font-style: italic;
}
.emblemwrap{
	width: min(740px,70%);
	margin: 0 auto clamp(20px, 5.437px + 3.883vw, 80px);
	display: flex;
	gap:2%
}
.checklist{
	margin-bottom: clamp(50px, 33.010px + 4.531vw, 120px);
}
.checklist li{
	font-size: clamp(16px, 10.146px + 1.194vw, 36px);
	font-weight: 500;
	margin-bottom: .2em;
	position: relative;
	padding-left: 1.3em
}
.checklist li:before{
	content: '';
	background: url(../images/icon_check_or.svg)no-repeat;
	width: 1em;
	height: 1em;
	background-size: cover;
	position: absolute;
	left: 0;
	top: .4em
}
.workswrap{
	width: min(1460px,100%);
	margin: 0 auto;
	background: #fff;
	padding: 80px 5%;
	border-radius: var(--br-section);
	    box-shadow: 0 10px 30px 0px rgba(100, 39, 2, 0.2);
}
@media (max-width: 768px) {
	.workswrap{
		    padding: 40px 5% 100px;
		border-radius: 40px;
	}
}
.workswrap .ttlwrap{
	    text-align: center;
	margin-bottom: 3em
}
.workswrap .ttlwrap .ttl{
	font-size: clamp(20px, 11.718px + 1.742vw, 54px);
	color: #365ea4;
	text-align: center;
	font-weight: 600;
	position: relative;
	display: inline;
	letter-spacing: var(--ls-heading);
}
.workswrap .ttlwrap .ttl:after{
	content: '';
	background: url(../images/ill_02.png)no-repeat;
	background-size: cover;
	width: 5em;
    aspect-ratio: 2.4 / 1;
	    position: absolute;
    right: -4.5em;
    top: -20px;
}
@media (max-width: 768px) {
	.workswrap .ttlwrap .ttl:after{
		    right: -1.5em;
    top: -60px;
	}
}
.workswrap .worklist{
	display: flex;
	flex-direction: column;
	grid-row-gap: 20px;
	width: min(1020px,100%);
	margin: 0 auto 40px
}
.workswrap .workcard{
	background: #f6fffe;
	border: 1px solid #365ea4;
	border-radius: 30px;
	padding: 30px 5%;
	position: relative
}
.workswrap .workcard_label{
	background: #365ea4;
	color: #fff;
	letter-spacing: var(--ls-base);
	font-weight: 800;
	    position: absolute;
    padding: 3px 9px 5px;
	line-height: 1;
    top: -.7em;
	 left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	border-radius: 3px
}
.workswrap .workcard_place{
	text-align: center;
}
.workswrap .workcard_place span{
	font-size: clamp(14px, 13.029px + 0.259vw, 18px);
	position: relative;
	padding-left: 1.2em;
	text-align: center;
    display: inline-block;
}
.workswrap .workcard_place span:after{
	content: '';
	background: url(../images/icon_pin_bl.svg)no-repeat;
	background-size: cover;
	width: 1em;
    aspect-ratio: 1.4 / 2;
	    position: absolute;
    left: 0;
    top: 2px;
}
.workswrap .workcard_ttl{
	font-size: clamp(17px, 13.359px + 0.971vw, 32px);
	font-weight: 700;
	letter-spacing: var(--ls-base);
	text-align: center;
	margin-bottom: 1em
}
.workswrap .workcard_thumbnail img{
	border-radius: 10px
}
.workswrap .workcard .txtarea .info{
	color: #365ea4;
	gap:8px;
	margin-bottom: 1em;
	font-weight: 700
}
@media (max-width: 768px) {
	.workswrap .workcard .txtarea .info{
		    align-items: center;
    justify-content: center;
	}
}
.workswrap .workcard .txtarea .info dt{
	border: 1px solid #365ea4;
	    padding: 0 5px;
	font-size: clamp(14px, 12.544px + 0.388vw, 20px);
	
}
.workswrap .workcard .txtarea .info dd{
	position: relative;
	padding-left: 1.2em;
	   font-size: clamp(14px, 12.544px + 0.388vw, 20px);
	letter-spacing: var(--ls-base);
}
.workswrap .workcard .txtarea .info dd:after{
	content: '';
	background: url(../images/icon_check_bl.svg)no-repeat;
	background-size: cover;
	width: 1em;
    aspect-ratio: 1 / 1;
	    position: absolute;
    left: 0;
    top: .43em;
}
.workswrap .workcard_voice{
	background: #fff;
	border-radius: 10px;
	padding: 20px 5%;
	    box-shadow: 0 0 10px -4px rgba(54, 92, 164, 0.22);
}
.workswrap .workcard_voice .ttl{
	font-size: clamp(14px, 12.544px + 0.388vw, 20px);
	color: #365ea4;
	text-align: center;
	margin-bottom: 1em;
	font-weight: 900;
	letter-spacing: var(--ls-base);
	align-items: center;
  display: flex;
  justify-content: center;
	    justify-content: center;
}

.workswrap .workcard_voice .ttl::before,
.workswrap .workcard_voice .ttl::after {
  background-color: #365ea4;
  content: "";
  height: 1px;
  width: 2em;
}
.workswrap .workcard_voice .ttl::before {
  margin-right: 15px;
}
.workswrap .workcard_voice .ttl::after {
  margin-left: 15px;
}
.workswrap .workcard_voice .workcard_icon{
	width: min(110px, 14%);
	margin-right: 10px
}
.workswrap .workcard_voice .txt{
	width: calc(100% - min(120px, 19%));
	font-size: clamp(13px, 11.786px + 0.324vw, 18px);
}
.workcard_cont{
	align-items: flex-start
}
.pointarea{
	padding: 80px 0;
}
@media (max-width: 768px) {
	.pointarea{
	padding: 80px 0 0;
}
}
.pointarea .ttl_point{
	width: min(690px,80%);
	margin: 0 auto 160px
}
@media (max-width: 768px) {
	.pointarea .ttl_point{
	width:100%;
	margin: 0 auto 100px
}
}
.pointarea .pointlist{
	display: flex;
	--gap: 80px;
    --left: 50%;
    --right: 50%;
    display: flex;
    flex-direction: column;
    column-gap: var(--gap);
	grid-row-gap: clamp(90px, 73.010px + 4.531vw, 160px);
	flex-direction: row;
	    justify-content: center;
	flex-wrap: wrap;
}
.pointarea .pointcard{
	    min-width: 0;
	width: 45%;
	box-shadow: 0 10px 30px 0px rgba(100, 39, 2, 0.2);
	border-radius: 40px
}
@media (max-width: 768px) {
	.pointarea .pointcard{
	  width: 100%
}
}
.pointarea .pointcard .imgarea{
	background: var(--or);
	border-radius: 30px 30px 0 0;
	position: relative;
	    width: 100%;
    height: 110px;
}
@media (max-width: 768px) {
	.pointarea .pointcard .imgarea{
    height: 60px;
}
}
.pointarea .pointcard .img{
	position: absolute;
	 left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	    bottom: 21%;
    width: min(190px, 35%);
}
.pointarea .pointcard:nth-child(2) .img{
	 width: min(290px, 55%);
}
.pointarea .pointcard .txtarea{
	background: #fff;
	border-radius: 0 0 30px 30px;
	    padding: 20px clamp(20px, 15.146px + 1.294vw, 40px);
	text-align: center;
}
.pointarea .pointcard .ttl{
	color: #f85903;
	font-weight: 700;
	text-align: center;
	margin-bottom: .6em;
	font-size: clamp(24px, 20.117px + 1.036vw, 40px);
	letter-spacing: var(--ls-base)
}
.pointarea .pointcard .txtarea .numwrap{
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #f85903;
    font-weight: 900;
	margin-bottom: 10px
}
.pointarea .pointcard .txtarea .numwrap .txt{
	line-height: 1;
    margin-bottom: -0.8em;
}
.pointarea .pointcard .txtarea .numwrap .num{
	   font-size: clamp(50px, 37.864px + 3.236vw, 100px);
    line-height: 1.2;
}
.pointarea .pointcard .txtarea p{
	min-height: 5.5em
}
@media (max-width: 768px) {
	.pointarea .pointcard .txtarea p{
	font-size: 14px;
		min-height: inherit
}
}
.merit{
	padding: clamp(50px, 33.010px + 4.531vw, 120px) 0 180px;
}
@media (max-width: 768px) {
	.merit{
		padding-bottom: 100px
	}
}
.merit .icon_check{
	text-align: center;
	margin-bottom: 10px;
	position: relative
}
@media (max-width: 768px) {
	.merit .icon_check{
		    width: 140px;
    margin: 0 auto;
	}
}
.merittitle{
	font-size: clamp(24px, 12.793px + 2.989vw, 50px);
	font-weight: 900;
	letter-spacing: var(--ls-base);
	margin-left: 440px;
	    padding-bottom: 30px;
}
@media (max-width: 768px) {
	.merittitle{
		margin-left: 240px;
	}
}
@media (max-width: 520px) {
	.merittitle{
		margin-left: 0;
        margin-bottom: 100px;
        text-align: center;
		letter-spacing: var(--ls-heading);
	}
	.merittitle .pc{
		display: block
	}
}
.merittitle strong{
	background: var(--or);
	color: #fff;
	    border-radius: 3px;
	    letter-spacing: -0.03em;
	padding: 0 7px;
}
.merit .box_or{
	background: var(--or);
	border-radius: clamp(16px, 11.977px + 1.073vw, 30px);
	padding: 75px 5%;
	    margin-top: -10px;
	position: relative;
	    box-shadow: 0 10px 30px 0px rgba(100, 39, 2, 0.2);
	margin-bottom: 56px
}
@media (max-width: 520px) {
	.merit .box_or{
		padding: 20px 5%;
		margin-bottom: 16px
	}
}
.merit .box_or .img{
	position: absolute;
	top: -293px;
	width: 340px;
	left: 80px
}
@media (max-width: 768px) {
	.merit .box_or .img{
	position: absolute;
	top: -163px;
	width: 190px;
		left: 40px
}
}
@media (max-width: 520px) {
	.merit .box_or .img{
	        top: -121px;
        width: 140px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
}
}
.meritlist{
	width: min(870px,100%);
	margin: 0 auto;
}
.meritlist li{
	background: #fff;
	border-radius: 3px;
	font-size: clamp(16px, 9.103px + 1.839vw, 40px);
	color: var(--or);
	font-weight: 900;
	letter-spacing: var(--ls-base);
	padding: 5px 10px 5px 2.45em;
	position: relative
}
.meritlist li:not(:last-child){
	margin-bottom: 10px;
}
.meritlist li:before{
	content: '';
    background: url(../images/icon_check_or.svg) no-repeat;
    background-size: cover;
    width: 1.1em;
    aspect-ratio: 1 / 1;
    position: absolute;
    left: 1em;
    top: .53em;
	
}
.ctabtnarea .ttl {
    font-size: clamp(20px, 11.718px + 1.442vw, 54px);
    text-align: center;
    font-weight: 600;
    position: relative;
    display: inline;
    letter-spacing: var(--ls-heading);
	margin-bottom: 1em
}
.ctabtnarea .ctabtn{
	width: min(890px,90%);
	margin: 0 auto
}
.btn_cta_1{
	width:min(200px,calc((100% - 1000px)/2));
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 10
}
@media (max-width: 1280px) {
	.btn_cta_1{
		width: 130px
	}
}
.message{
	background: #eff3ee;
	padding: 180px 0 170px;
	border-radius: var(--br-section);
	position: relative;
	overflow: hidden;
}
@media (max-width: 768px) {
	.message{
		padding: 110px 0 60px;
	}
}
.message__inner{
  position: relative;
  z-index: 2;
	padding: 0 5%
}
.message__rings{
  position: absolute;
  left: 50%;
  top: -380px;                 /* ←全体の出具合を調整 */
  transform: translateX(-50%);
  width: 760px;                /* ←最大円のサイズ */
  height: 760px;
  pointer-events: none;
  z-index: 1;
}
/* 共通：円 */
.message__rings .ring{
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;                  /* 最初は非表示 */
}

/* ---- サイズと色（画像に合わせて調整） ---- */
/* 黄色小（中心） */
.ring--1{
  width: 60px;
  height: 60px;
  background: rgba(255, 235, 80, 1);
	z-index: 5
}

/* 黄色大（薄いハイライト） */
.ring--2{
  width: 200px;
  height: 200px;
  background: rgba(245, 255, 0, 0.48);
	z-index: 4
}

/* 外円（白〜薄グレー） */
.ring--3{
  width: 480px;
  height: 480px;
  background: rgba(254, 244, 0, 0.25);
	z-index: 3
}

.ring--4{
  width: 760px;
  height: 760px;
  background: rgba(255, 255, 255, .45);
	z-index: 1
}

/* ---- アニメ：ふわっと無し（段階的にON） ---- */
/* is-anim で順番にopacityを上げる */
.light.is-anim .ring--1{ animation: ringOn .001s linear forwards; animation-delay: 0s; }
.light.is-anim .ring--2{ animation: ringOn .001s linear forwards; animation-delay: .15s; }
.light.is-anim .ring--3{ animation: ringOn .001s linear forwards; animation-delay: .30s; }
.light.is-anim .ring--4{ animation: ringOn .001s linear forwards; animation-delay: .45s; }


@keyframes ringOn{
  to{ opacity: 1; }
}

.light.is-anim .ring{
   transform: translate(-50%, -50%) scale(.98); 
   animation-duration: .12s; 
}

@media (max-width: 768px) {
	.message__rings{
		width: 320px;
		height: 320px;
		    top: -162px;

	}
	.ring--1{
		width: 40px;
		height: 40px
	}
	.ring--2{
		width: 120px;
		height: 120px
	}
	.ring--3{
		width: 220px;
		height: 220px
	}
	.ring--4{
		width: 320px;
		height: 320px
	}
}
.message .ttl {
   font-size: clamp(20px, 13.103px + 1.839vw, 44px);
    letter-spacing: var(--ls-heading);
    text-align: center;
    font-weight: 700;
    margin-bottom: 3em;
	color: var(--gn2);
}
@media (max-width: 768px) {
	.message .ttl {
		margin-bottom: 1em
	}
}
.message .txt{
	font-size: clamp(14px, 9.402px + 1.226vw, 28px);
	line-height: 2;
	
}
@media (max-width: 768px) {
	.message .txt{
	line-height: 1.6;
	
}
}
.message .imgarea{
	text-align: center;
	display: flex;
	flex-direction: column;
	gap:20px
}
.message .imgarea p span{
	font-size: .8em
}
.message_cont{
	align-items: flex-start;
	width: min(1310px,100%);
	margin: 0 auto
}
@media (max-width: 768px) {
	.message_cont{
		align-items: center
	}
}
.faq{
	padding: 130px 0 0;
}
@media (max-width: 768px) {
	.faq{
	padding: 60px 0;
}
}
.ttl_check{
	font-size: clamp(20px, 13.103px + 1.839vw, 44px);
    letter-spacing: var(--ls-heading);
    text-align: center;
    font-weight: 700;
    margin-bottom: 1em;
    color: var(--gn2);
	position: relative;
	padding-left: 2.3em;
	margin-left: -2.3em;
    display: flex;
	justify-content: center;
}
.ttl_check .icon {
    width: 1.35em;
    margin-right: 8px;
}
.box_line_gn{
    border: 4px solid var(--gn1);
    border-radius: 30px;
    padding: 64px 10%;
    position: relative;
	    background: #fff;
}
@media (max-width: 768px) {
	.box_line_gn{
		 padding: 32px 5%;
	}
}
.faqlist li:not(:last-child){
	padding-bottom: 1.5em;
	border-bottom: 2px dotted var(--gn1);
	margin-bottom: 1.5em
}
.faq .q_ttl{
	letter-spacing: var(--ls-heading);
	color: var(--gn2);
	padding-left: 1.8em;
	position: relative;
	font-weight: 700;
	font-size: clamp(16px, 10.828px + 1.379vw, 34px);
	margin-bottom: .5em
}
.faq .q_ttl:before{
	content: 'Q.';
    position: absolute;
    left: 0;
    top: -5px;
    font-weight: 900;
    font-size: clamp(16px, 6.805px + 2.452vw, 48px);
}
@media (max-width: 768px) {
	.faq .q_ttl:before{
		font-size: 22px
	}
}
.faq .a_txt{
	padding-left: 2.1em;
	letter-spacing: var(--ls-base);
}
.flow{
	padding: 130px 0;
}
@media (max-width: 768px) {
	.flow{
	padding: 0 0 60px;
}
}
.flowlist{
	display: flex;
    flex-direction: column;
    gap: 46px;
	position: relative
}
@media (max-width: 768px) {
	.flowlist{
		gap:6px
	}
}
.flowlist:before{
	width: 2px;
	height: 100%;
	content: '';
	background: var(--gn1);
	left: 30px;
	top: 0;
	position: absolute
}
@media (max-width: 768px) {
	.flowlist:before{
		left: 20px;
	}
}
.flowlist li{
	display: flex;
	gap:24px
}
.flowlist li .num{
	width: 60px;
	min-width: 60px;
	position: relative;
	z-index: 2
}
@media (max-width: 768px) {
	.flowlist li .num{
		width: 40px;
		min-width: 40px;
	}
}
.flowlist li .num img{
	    border-top: 10px solid #fff;
	    border-bottom: 10px solid #fff;
}
.flowlist li .imgwrap{
	gap:24px
}
@media (max-width: 768px) {
	.flowlist li .imgwrap{
	    gap: 4px;
    flex-direction: column-reverse;
		padding-top: 10px
}
	}
.flowlist li .img{
	width: min(163px,30%);
}
@media (max-width: 768px) {
	.flowlist li .img{
	   width: 200px
}
	}
.flowlist li .img img{
	    aspect-ratio: 163 / 120;
    object-fit: cover;
}
.flowlist li .txtarea{
	width: calc(100% - min(200px,36%));
}
@media (max-width: 768px) {
	.flowlist li .txtarea{
		width: 100%
	}
}
.flowlist li .txtarea .ttl{
	    letter-spacing: var(--ls-heading);
    color: var(--gn2);
    position: relative;
    font-weight: 700;
    font-size: clamp(16px, 10.828px + 1.379vw, 34px);
    margin-bottom: .5em;
}
.footer{
	background: url(../images/footer_bk.png) var(--gn1);
    background-position: bottom -20vw center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: var(--br-section) var(--br-section) 0 0;
    padding: clamp(50px, 33.010px + 4.531vw, 120px) 0 0;
}
.footer_ttl {
    font-size: clamp(24px, 19.66px + 1.424vw, 54px);
    letter-spacing: var(--ls-heading);
    text-align: center;
    font-weight: 900;
    margin-bottom: 1em;
	color: #fff;
	line-height: 2;
	
    padding: 0 5%;
}
.footer_ttl span{
	display: inline-block;
}
.footer_ttl .img{
	width: 6em;
	margin:0 10px 0 0;
}
.footer .read{
	color: #fff;
	text-align: center;
	line-height: 1.65;
	font-size: clamp(1rem, 0.780rem + 0.939vw, 1.625rem);
	letter-spacing: var(--ls-base);
	font-weight: 700;
	margin-bottom: 40px;
	padding: 0 5%
}
.footer .read strong{
	color: #ffcd54;
}
.footer_ctabox {
    background: #ffffff;
    padding: 20px 5%;
    width: min(1120px, 90%);
    border-radius: 14px;
    margin: 0 auto;
	position: relative;
	    box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.25);
}

.footer .btnwrap{
	gap:24px
}
@media (max-width: 768px) {
	.footer .btnwrap{
	gap:8px
}
}
.footer .btnwrap > div{
	width: calc(100% / 2 - 18px)
}
@media (max-width: 768px) {
	.footer .btnwrap > div{
		width: 240px;
		margin: 0 auto
	}
}
.footer .p-phone{
	margin-bottom: 20px
}
.footer .p-phone a {
    font-size: clamp(34px, 20.207px + 3.678vw, 82px);
}
.footer .p-phone p{
	font-size: clamp(12px, 9.701px + 0.613vw, 20px);
}
.footer_bottom{
	gap:24px;
	justify-content: center;
	    align-items: end;
}
@media (max-width: 768px) {
	.footer_bottom{
		gap: 0;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
    padding: 40px 0 0;}
}
.footer_bottom .footer_img{
	width: min(340px,50%);
}
.footer_bottom .logo{
	width: 200px
}
@media (max-width: 768px) {
	.footer_bottom .logo {
    width: 150px;
    margin: 0 auto;
}
}
.footer .footer_txt{
	padding-bottom: 30px
}
@media (max-width: 768px) {
	.footer .footer_txt {
    padding-bottom: 30px;
    text-align: center;
}
}
.footer_floating{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #fff;
	padding: 10px;
	z-index: 999;
	    font-size: 10px;
    text-align: center;
}
.footer_floating .btnwrap >div{
	width: 50%
}
.footer_floating .btnwrap >div img{
	width: 100%;
}
.footer_floating .read{
	margin-bottom: 8px
}
.footer_floating{
  transition: opacity .25s ease, transform .25s ease;
  opacity: 1;
  transform: translateY(0);
}

.footer_floating.is-hide{
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none; /* 消えてる間クリックも無効 */
}
#primary{
	padding: clamp(100px, 71.068px + 5.049vw, 168px) 0 clamp(50px, 15vw, 180px);
}
#primary .page-title{
	margin-bottom: 2em
}
/*---*/
@media (max-width: 768px) {
	.sp {
		display: block
	}

	.pc {
		display: none
	}
}