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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

button {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	color: inherit;
	font-family: inherit;
}

html {
	line-height: 1;
}

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

ol,
ul {
	list-style: none;
}

li,
dd {
	list-style-type: none;
}

a {
	text-decoration: none;
	cursor: pointer;
}

img {
	border: none;
	vertical-align: bottom;
}

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

body {
	max-width: 390px;
	margin-inline: auto;
	padding-block-end: 60px;
	overflow-x: clip;
	box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.2);
	color: #32352D;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.4;
	font-family: "Noto Sans JP", serif;
}

body.inactive {
	height: 100%;
	overflow: hidden;
}

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

a {
	color: inherit;
	transition: opacity 0.3s ease 0s;
}

a:focus-visible {
	opacity: 0.7;
}

a[href^="tel:"] {
	text-decoration: none;
}

.l-inner {
	margin-inline: auto;
	padding-right: 15px;
	padding-left: 15px;
}

.l-inner--2 {
	padding-right: 20px;
	padding-left: 20px;
}

.l-inner--3 {
	padding-inline: 40px;
}

.l-inner--4 {
	padding-inline: 15px;
}

.l-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.l-bg::before,
.l-bg::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
}

.l-bg::before {
	z-index: -2;
	background: #1D1D1D;
}

.l-bg::after {
	z-index: -1;
	background: url("./../img/lg-bg.avif") no-repeat center center/cover;
}

.l-bg__header {
	display: none;
	width: 100%;
	max-width: 1472px;
	margin-inline: auto;
	padding-inline-start: 30px;
	padding-block-start: 20px;
}

.l-bg__inner {
	max-width: 1512px;
	margin-inline: auto;
	padding-right: 150px;
	padding-left: 150px;
}

.l-bg__nav {
	display: none;
	margin-top: 90px;
}

/*===================================
.l-bg-nav
====================================*/

.l-bg-nav__item {
	width: -moz-fit-content;
	width: fit-content;
}

.l-bg-nav__item:not(:first-child) {
	margin-top: 33px;
}

.l-bg-nav__item a {
	position: relative;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	line-height: 1; /* 18px */
	cursor: pointer;
	transition: color 0.3s ease 0s;
}

.l-bg-nav__item a span {
	margin-right: 14px;
	font-size: 20px;
	font-family: "Zen Kaku Gothic New", serif;
}

.l-bg-nav__item a::before {
	position: absolute;
	top: 50%;
	left: -10px;
	aspect-ratio: 1;
	width: 5px;
	height: auto;
	translate: 0 -50%;
	border-radius: 999px;
	background-color: rgba(255, 255, 255, 0.7);
	content: "";
	transition: background-color 0.3s ease 0s;
}

.l-bg-nav__item a::after {
	position: absolute;
	bottom: -20%;
	left: -10px;
	width: 0;
	height: 1px;
	background: #fff;
	content: "";
	transition: width 0.3s ease 0s;
}

.l-bg-nav__item a:hover {
	color: #fff;
	opacity: 1;
}

.l-bg-nav__item a:hover::before {
	background-color: #fff;
}

.l-bg-nav__item a:hover::after {
	width: calc(100% + 10px);
}

.l-bg-nav__item a.current {
	color: #fff;
}

.l-bg-nav__item a.current::after {
	position: absolute;
	bottom: -20%;
	left: -10px;
	width: calc(100% + 10px);
	height: 1px;
	background: #fff;
	content: "";
}

.l-main {
	z-index: 1;
	position: relative;
	max-width: 550px;
	margin-inline: auto;
	padding-block-end: 95px;
	background-color: #fff;
	box-shadow: 0px 0px 6px 3px rgba(255, 255, 255, 0.4);
}

.l-header {
	position: relative;
	width: 100%;
	height: 67px;
	background-color: #fff;
}

.l-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	padding-inline: 15px;
}

.l-header__logo {
	margin-inline-start: 4px;
	font-weight: 700;
	line-height: 1.222;
}

.l-header__btn {
	z-index: 2;
	position: relative;
	top: 2px;
	width: 187px;
	height: auto;
	padding-inline-start: 5%;
	padding-block: 3px 5px;
	border-radius: 3px;
	background-color: #D57300;
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.3333; /* 133.333% */
	text-align: center;
}

.l-header__btn::before,
.l-header__btn::after {
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	content: "";
}

.l-header__btn::before {
	left: 12px;
	aspect-ratio: 27/27.636;
	width: 27px;
	height: auto;
	background: url("./../img/btn-tel.webp") no-repeat center center/cover;
}

.l-header__btn::after {
	aspect-ratio: 10/14;
	width: 8px;
	height: auto;
	-webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
	right: 11px;
	background-color: #fff;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.l-header__btn span {
	z-index: -1;
	position: absolute;
	top: -2px;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 3px;
	background-color: #FD8900;
}

.l-header__btn.--line {
	background-color: #29961B;
}

.l-footer {
	padding-block: 30px;
	background-color: #32352D;
}

.l-footer__copyright {
	color: #fff;
	font-size: 12px; /* 18px */
	font-family: "Zen Kaku Gothic New", serif;
	letter-spacing: 0.02em;
	text-align: center;
}

.l-footer-btn {
	display: none;
	z-index: 100;
	position: fixed;
	bottom: 0;
	left: 50%;
	width: 100%;
	max-width: 550px;
	padding-inline: 15px;
	padding-block: 20px;
	translate: -50% 0;
	background-color: rgba(255, 255, 255, 0.8);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.l-footer-btn a {
	display: block;
	position: relative;
	padding-inline-end: 40px;
	padding-block: 17px 20px;
	border-radius: 5px;
	background: #CF6D16;
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	line-height: 1; /* 18px */
	letter-spacing: 0.04em;
	text-align: center;
}

.l-footer-btn a::after {
	position: absolute;
	top: 50%;
	right: calc(50% - 100px);
	aspect-ratio: 1;
	width: 20px;
	height: auto;
	translate: 0 -50%;
	background: url("./../img/btn-arrow.webp") no-repeat center center/cover;
	content: "";
}

.c-cta {
	padding-block: 29px 35px;
}

.c-cta__title {
	position: relative;
	width: calc(100% + 12px);
	margin-inline-start: -6px;
	padding-block-end: 4px;
	background-color: #29961B;
	color: #fff;
	font-weight: 700;
	font-size: 28px;
	line-height: 1.4;
	text-align: center;
}

.c-cta__title .--small {
	font-size: 24px;
}

.c-cta__title .--large {
	font-size: 31px;
}

.c-cta__title .--box {
	display: inline-block;
	margin-inline-start: 5px;
	padding-inline: 5px;
	border-radius: 3px;
	background-color: #fff;
	color: #29961B;
	line-height: 1.3;
}

.c-cta__title .--letter-spacing {
	letter-spacing: -0.17em;
}

.c-cta__title .--box.--last {
	margin-inline-end: 6px;
}

.c-cta__title::before,
.c-cta__title::after {
	position: absolute;
	top: calc(100% - 0.5px);
	aspect-ratio: 1/1;
	width: 6px;
	height: auto;
	content: "";
}

.c-cta__title::before {
	background-color: #195D10;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
	z-index: 1;
	left: 0;
	clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.c-cta__title::after {
	background-color: #195D10;
	-webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
	z-index: 1;
	right: 0;
	clip-path: polygon(0 0, 100% 0, 0 100%);
}

.c-cta__contents {
	padding-inline: 16px;
	padding-block: 18px 24px;
	box-shadow: 0px 0px 12px 0px rgba(50, 53, 45, 0.2);
}

.c-cta__top-img {
	width: 100%;
	height: auto;
	padding-inline: 6px;
}

.c-cta__top-img img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
}

.c-cta__text1 {
	margin-block-start: 12px;
	color: #29961B;
	font-weight: 700;
	font-size: 20px;
	text-align: center;
}

.c-cta__text2 {
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
	margin-block-start: 14px;
	padding-inline: 12px;
	color: #29961B;
	font-weight: 700;
	text-align: center;
}

.c-cta__text2::before,
.c-cta__text2::after {
	position: absolute;
	bottom: 0;
	width: 1px;
	height: 75%;
	background-color: #29961B;
	content: "";
}

.c-cta__text2::before {
	left: 0;
	rotate: -25deg;
}

.c-cta__text2::after {
	right: 0;
	rotate: 25deg;
}

.c-cta__btn {
	display: block;
	z-index: 2;
	position: relative;
	width: 100%;
	height: auto;
	margin-block-start: 10px;
	padding-inline-start: 6%;
	padding-block: 16px 20px;
	border-radius: 3px;
	background-color: #D57300;
	color: #fff;
	font-weight: 700;
	font-size: 21px;
	line-height: 1.3333; /* 133.333% */
	text-align: center;
}

.c-cta__btn::before,
.c-cta__btn::after {
	position: absolute;
	top: 50%;
	translate: 0 -60%;
	content: "";
}

.c-cta__btn::before {
	left: 20px;
	aspect-ratio: 33/33.981;
	width: 33px;
	height: auto;
	translate: 0 -60%;
	background: url("./../img/btn-tel.webp") no-repeat center center/cover;
}

.c-cta__btn::after {
	aspect-ratio: 10/14;
	width: 10px;
	height: auto;
	-webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
	right: 14px;
	background-color: #fff;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.c-cta__btn span {
	z-index: -1;
	position: absolute;
	top: -4px;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 3px;
	background-color: #FD8900;
}

/*===================================
.c-cta-flex
====================================*/

.c-cta-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-block-start: 4px;
}

.c-cta-flex__child {
	width: 47%;
	padding: 9px 8px 7px;
	background-color: #F6FAF0;
}

.c-cta-flex__title {
	color: #29961B;
	font-weight: 700;
	text-align: center;
}

.c-cta-flex__img {
	width: 100%;
	height: auto;
}

.c-cta-flex__img img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
}

.c-section-title {
	margin-block-start: 6px;
	font-weight: 600;
	font-size: 26px;
	line-height: 1.3; /* 33.8px */
	text-align: center;
}

.c-section-sub-title {
	font-style: italic;
	font-weight: 600;
	line-height: 1.3; /* 20.8px */
	font-family: "Zen Kaku Gothic New", serif;
	letter-spacing: 0.04em;
	text-align: center;
	text-transform: capitalize;
}

.p-fv {
	width: 100%;
	height: auto;
}

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

.p-worry {
	padding-block: 22px 70px;
	background-color: #F5F5F5;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 94%, 50% 100%, 0 94%);
	clip-path: polygon(0 0, 100% 0, 100% 94%, 50% 100%, 0 94%);
}

.p-worry__title {
	position: relative;
	width: 95.8333333333%;
	margin-inline: auto;
}

.p-worry__title img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-worry__img1 {
	width: 91.3888888889%;
	height: auto;
	margin-inline: auto;
	margin-block-start: -15px;
}

.p-worry__img1 img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-worry__lists {
	margin-block-start: 13px;
}

.p-worry__img2 {
	width: 91.3888888889%;
	height: auto;
	margin-inline: auto;
	margin-block-start: 28px;
}

.p-worry__img2 img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
}

/*===================================
.p-worry-list
====================================*/

.p-worry-list {
	display: flex;
	justify-content: space-between;
	padding-inline: 9px 3px;
	padding-block: 9px;
	border-bottom: dashed 1px #CCC9C9;
}

.p-worry-list__icon {
	aspect-ratio: 24.058/19.125;
	width: 24.058px;
	height: auto;
}

.p-worry-list__icon img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-worry-list__text {
	width: calc(100% - 24.058px - 18.94px);
	font-weight: 500;
	font-size: 19px;
}

.p-worry-list__text span {
	color: #29961B;
	font-weight: 700;
}

.p-worry__text {
	font-weight: 700;
	font-size: 20px;
	text-align: center;
}

.p-worry__text span {
	color: #29961B;
}

.p-worry__text.--1 {
	margin-block-start: 33px;
}

.p-worry__text.--2 {
	margin-block-start: 26px;
}

.p-worry__text.--3 {
	margin-block-start: 18px;
}

.p-solve {
	padding-block-end: 40px;
}

.p-solve__text1 {
	margin-block-start: 10px;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.8; /* 180% */
	text-align: center;
}

.p-solve__text2 {
	margin-block-start: 16px;
	line-height: 1.77778; /* 177.778% */
}

.p-solve__text2 span {
	color: #FD8900;
	font-weight: 700;
}

.p-solve__text3 {
	margin-block-start: 20px;
	font-weight: 700;
	font-size: 20px;
	text-align: center;
}

.p-solve__text4 {
	margin-block-start: 30px;
	font-weight: 700;
	font-size: 20px;
	text-align: center;
}

.p-solve__title {
	width: 100vw;
	margin-inline: calc(50% - 50vw);
	margin-block-start: 8px;
	font-weight: 700;
	font-size: 19px;
	line-height: 1.8947368421;
	text-align: center;
}

.p-solve__title span {
	color: #FD8900;
	font-size: 24px;
	line-height: 1.5; /* 150% */
}

.p-solve__flex {
	margin-block-start: 28px;
}

/*===================================
.p-solve-flex
====================================*/

.p-solve-flex {
	display: flex;
	justify-content: space-between;
	width: 88.0555555556%;
	margin-inline: auto;
}

.p-solve-flex__child {
	width: 46.3722397476%;
	height: auto;
}

.p-solve-flex__text {
	padding-block: 3px;
	background-color: #F6FAF0;
	color: #29961B;
	font-weight: 700;
	text-align: center;
}

.p-close__contents {
	padding-inline: 18px;
	padding-block: 24px 32px;
	background-color: #F6FAF0;
}

.p-close__title {
	color: #29961B;
	font-weight: 700;
	font-size: 26px;
	text-align: center;
}

.p-close__img {
	width: 90.7407407407%;
	margin-inline: auto;
	margin-block-start: 18px;
}

.p-close__img img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-close__textarea {
	margin-block-start: 26px;
}

.p-close__text2 {
	margin-block-start: 18px;
	line-height: 1.77778;
}

.p-deal {
	padding-block: 37px 48px;
}

.p-deal__title {
	color: #29961B;
	font-weight: 700;
	font-size: 26px;
	text-align: center;
}

.p-deal__contents {
	position: relative;
	margin-block-start: 37px;
	padding-inline: 10px;
	padding-block: 12px 14px;
	border-radius: 18px;
	background-color: #B28E66;
}

.p-deal__img {
	position: absolute;
	top: -10px;
	left: 50%;
	width: 158px;
	height: auto;
	translate: -50% 0;
}

.p-deal__img img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-deal__box {
	padding-inline: 10px;
	padding-block: 42px 26px;
	background-color: #fff;
}

/*===================================
.p-deal-list
====================================*/

.p-deal-list {
	display: flex;
	justify-content: space-between;
	padding-inline-start: 6px;
	padding-block: 7px;
}

.p-deal-list:not(:last-child) {
	border-bottom: dashed 1px #CCC9C9;
}

.p-deal-list__icon {
	aspect-ratio: 24.058/19.125;
	width: 24px;
	height: auto;
}

.p-deal-list__icon img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-deal-list__text {
	width: calc(100% - 24px - 7px);
	font-weight: 500;
}

.p-reason__title {
	position: relative;
	padding-inline-start: 20%;
	padding-block: 10px 20px;
	background-color: #29961B;
	color: #fff;
	font-weight: 700;
	font-size: 26px;
	text-align: center;
}

.p-reason__title .--small {
	font-size: 16px;
}

.p-reason__title .--medium {
	font-size: 20px;
}

.p-reason__title img {
	vertical-align: -40%;
}

.p-reason__title::before,
.p-reason__title::after {
	position: absolute;
	content: "";
}

.p-reason__title::before {
	bottom: 0;
	left: 7px;
	aspect-ratio: 91/118;
	width: 91px;
	height: auto;
	background: url("./../img/reason-title-man.webp") no-repeat center center/cover;
}

.p-reason__title::after {
	bottom: -14px;
	left: 50%;
	aspect-ratio: 33/21;
	width: 33px;
	height: auto;
	translate: -50% 0;
	background-color: #29961B;
	-webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.p-reason__contents {
	padding-block: 59px 36px;
	background-color: #F6FAF0;
}

.p-reason__item:not(:first-child) {
	margin-block-start: 58px;
}

/*===================================
.p-reason-item
====================================*/

.p-reason-item {
	position: relative;
	padding-inline: 15px;
	padding-block: 30px 20px;
	border-top: solid 3px #BDDB97;
	border-bottom: solid 3px #BDDB97;
	background-color: #fff;
}

.p-reason-item__head {
	position: absolute;
	top: -20px;
	left: 50%;
	padding-inline: 5px;
	padding-block: 2px;
	translate: -50% 0;
	background-color: #29961B;
	color: #fff;
	font-weight: 700;
	font-size: 20px;
	text-align: center;
}

.p-reason-item__title {
	width: 100vw;
	margin-inline-start: calc(50% - 50vw);
	font-weight: 700;
	font-size: 19px;
	text-align: center;
}

.p-reason-item__title span {
	color: #FD8900;
}

.p-reason-item__img {
	aspect-ratio: 284/180;
	width: 94.6666666667%;
	height: auto;
	margin-inline: auto;
	margin-block-start: 18px;
}

.p-reason-item__img img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-reason-item__text {
	margin-block-start: 18px;
	line-height: 1.77778;
}

.p-flow {
	padding-block: 23px 40px;
	background-color: #FFFCF5;
}

.p-flow__title {
	color: #29961B;
	font-weight: 700;
	font-size: 28px;
	text-align: center;
}

.p-flow__items {
	margin-block-start: 30px;
}

.p-flow__item {
	margin-inline-start: 28px;
}

/*===================================
.p-flow-item
====================================*/

.p-flow-item__title {
	position: relative;
	padding-inline-start: 50px;
	border: solid 1px #29961B;
	background: #fff;
	color: #29961B;
	font-weight: 700;
	line-height: 56px;
}

.p-flow-item__title.--1 {
	font-size: 22px;
}

.p-flow-item__title.--2 {
	font-size: 18px;
}

.p-flow-item__title.--3 {
	font-size: 20px;
}

.p-flow-item__title img {
	position: absolute;
	top: 50%;
	left: -28px;
	aspect-ratio: 1;
	width: 57px;
	height: auto;
	translate: 0 -50%;
}

.p-flow-item__contents {
	padding-inline-start: 44px;
	padding-block-start: 28px;
	border-left: solid 2px #29961B;
}

.p-flow-item__contents.--1 {
	padding-block-end: 33px;
}

.p-flow-item__contents.--2 {
	padding-block-end: 20px;
}

.p-flow-item__contents.--3 {
	padding-block-end: 9px;
}

.p-flow-item__text {
	line-height: 1.77778;
}

.p-flow-item__text.--2 {
	margin-block-start: 18px;
}

.p-flow-item__btn {
	display: block;
	z-index: 2;
	position: relative;
	width: 100%;
	height: auto;
	margin-block-start: 13px;
	padding-inline-start: 6%;
	padding-block: 16px 20px;
	border-radius: 3px;
	background-color: #D57300;
	color: #fff;
	font-weight: 700;
	line-height: 1.1111; /* 133.333% */
	text-align: center;
}

.p-flow-item__btn::before,
.p-flow-item__btn::after {
	position: absolute;
	top: 50%;
	translate: 0 -60%;
	content: "";
}

.p-flow-item__btn::before {
	left: 23px;
	aspect-ratio: 33/33.981;
	width: 27px;
	height: auto;
	translate: 0 -60%;
	background: url("./../img/btn-tel.webp") no-repeat center center/cover;
}

.p-flow-item__btn::after {
	aspect-ratio: 10/14;
	width: 10px;
	height: auto;
	-webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
	right: 14px;
	background-color: #fff;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.p-flow-item__btn span {
	z-index: -1;
	position: absolute;
	top: -4px;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 3px;
	background-color: #FD8900;
}

.p-qa__title {
	padding-block: 22px 27px;
	background-color: #29961B;
	color: #fff;
	font-weight: 700;
	font-size: 30px;
	text-align: center;
}

.p-qa__contents {
	padding-block: 33px 32px;
	background-color: #F6FAF0;
}

.p-qa__item:not(:first-child) {
	margin-block-start: 30px;
}

/*===================================
.p-qa-item
====================================*/

/*===================================
.p-qa-item-flex
====================================*/

.p-qa-item-flex {
	display: flex;
	justify-content: space-between;
}

.p-qa-item-flex.--a {
	margin-block-start: 18px;
}

.p-qa-item-flex__icon {
	width: 43px;
	height: auto;
}

.p-qa-item-flex__icon img {
	width: 100%;
	height: auto;
}

.p-qa-item-flex__text {
	width: calc(100% - 43px - 20px);
	margin-block-start: 7px;
}

.p-qa-item-flex__text.--q {
	font-weight: 500;
	font-size: 20px;
}

.p-qa-item-flex__text.--a {
	margin-block-start: 2px;
	line-height: 1.77778;
}

.p-footer {
	display: none;
	z-index: 10;
	position: fixed;
	bottom: 0;
	left: 50%;
	width: 100%;
	max-width: 390px;
	translate: -50% 0;
}

/*===================================
.p-footer-btn
====================================*/

.p-footer-btn {
	display: block;
	padding-inline-start: 20px;
	padding-block: 12px;
	background-color: #FD8900;
	box-shadow: 0 0px 10px 0px rgba(0, 0, 0, 0.3);
}

.p-footer-btn__text {
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
	color: #fff;
	font-weight: 700;
	font-size: 20px;
}

.p-footer-btn__text::before,
.p-footer-btn__text::after {
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	content: "";
}

.p-footer-btn__text::before {
	left: -39px;
	aspect-ratio: 33/33.981;
	width: 27px;
	height: auto;
	background: url("./../img/btn-tel.webp") no-repeat center center/cover;
}

.p-footer-btn__text::after {
	aspect-ratio: 10/14;
	width: 10px;
	height: auto;
	-webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
	right: -30px;
	background-color: #fff;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.p-area {
	padding-block: 26px 47px;
}

.p-area__title {
	color: #29961B;
	font-weight: 700;
	font-size: 28px;
	text-align: center;
}

.p-area__map {
	aspect-ratio: 360/225;
	width: 100%;
	height: auto;
	margin-block-start: 20px;
	overflow: hidden;
}

.p-area__map iframe {
	width: 100%;
	height: calc(100% + 70px);
	margin-block-start: -70px;
	border: none;
}

.p-area__flex {
	display: flex;
	justify-content: center;
	gap: 12px;
}

.p-area__name {
	margin-block-start: 22px;
	padding-inline: 30px;
	padding-block: 4px;
	background-color: #FECA53;
	font-weight: 700;
	font-size: 22px;
}

.p-staff {
	padding-block: 60px;
	background-color: #FFFCF5;
}

.p-staff__title {
	color: #29961B;
	font-weight: 700;
	font-size: 28px;
	text-align: center;
}

.p-staff__img {
	width: 89.3548387097%;
	margin-inline: auto;
	margin-block-start: 30px;
}

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

.p-staff__name {
	margin-block-start: 30px;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.6; /* 160% */
}

.p-staff__text1 {
	margin-block-start: 13px;
	line-height: 1.77778;
}

.p-staff__text2 {
	margin-block-start: 23px;
	line-height: 1.77778;
}

.u-sm2 {
	display: none;
}

.u-md2 {
	display: none;
}

.u-md3 {
	display: none;
}

.u-dots {
	padding-top: 0.25em; /* 縦方向の位置調整 */
	background-image: radial-gradient(circle at center, #fff 22%, transparent 22%); /* 点の色とサイズ調整 */
	background-position: top right; /* 点の位置 */
	background-size: 1em 0.4em; /* 点の間隔とサイズ調整 */
	background-repeat: repeat-x; /* 横方向に繰り返し */
}

.u-dots.--black {
	background-image: radial-gradient(circle at center, #32352D 22%, transparent 22%); /* 点の色とサイズ調整 */
}

.u-dots.--2 {
	padding-top: 0.1em;
	background-image: radial-gradient(circle at center, #32352D 20%, transparent 20%); /* 点の色とサイズ調整 */
	background-size: 1em 0.2em; /* 点の間隔とサイズ調整 */
}

.u-shake {
	animation: u-shake 2s infinite;
}

.u-shake-2 {
	animation: u-shake-2 1.9s infinite;
}

.u-connection {
	width: -moz-fit-content;
	width: fit-content;
	padding: 8px 18px 16px 20px;
	-webkit-clip-path: polygon(0 0, 100% 10%, 100% 80%, 57% 80%, 45% 100%, 45% 80%, 7% 80%);
	clip-path: polygon(0 0, 100% 10%, 100% 80%, 57% 80%, 45% 100%, 45% 80%, 7% 80%);
}

.u-connection.--2 {
	-webkit-clip-path: polygon(0 0, 100% 10%, 100% 80%, 57% 80%, 57% 100%, 45% 80%, 7% 80%);
	clip-path: polygon(0 0, 100% 10%, 100% 80%, 57% 80%, 57% 100%, 45% 80%, 7% 80%);
}

@media (any-hover: hover) {

a:hover {
	opacity: 0.7;
}

}

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

.p-reason-item__title {
	font-size: 20px;
}

.p-flow-item__title.--2 {
	font-size: 19px;
}

}

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

.u-sm3 {
	display: none;
}

}

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

.u-sm {
	display: none;
}

.u-sm2 {
	display: block;
}

.u-md3 {
	display: block;
}

}

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

.u-md {
	display: none;
}

.u-md2 {
	display: block;
}

}

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

.l-bg__header {
	display: block;
}

.l-bg__nav {
	display: block;
}

.l-main {
	position: absolute;
	top: 0;
	right: 13.8888888889%;
}

.l-footer-btn {
	right: 13.8888888889%;
	left: auto;
	translate: 0;
}

}

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

.l-main {
	right: 22.9166666667%;
}

.l-footer-btn {
	right: 22.9166666667%;
	left: auto;
}

}

@keyframes u-shake {

0% {
	transform: translate(0px, 2px);
}

5% {
	transform: translate(0px, -2px);
}

10% {
	transform: translate(0px, 2px);
}

15% {
	transform: translate(0px, -2px);
}

20% {
	transform: translate(0px, 2px);
}

25% {
	transform: translate(0px, -2px);
}

30% {
	transform: translate(0px, 0px);
}

}

@keyframes u-shake-2 {

0% {
	transform: translate(0px, 2px);
}

5% {
	transform: translate(0px, -2px);
}

10% {
	transform: translate(0px, 2px);
}

15% {
	transform: translate(0px, -2px);
}

20% {
	transform: translate(0px, 2px);
}

25% {
	transform: translate(0px, -2px);
}

30% {
	transform: translate(0px, 0px);
}

}

