*,
*::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 {
	border: 0;
	font: inherit;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	line-height: 1;
}

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

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

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

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

/*
 * メディアクエリ用mixin
 */

/*=============== VARIABLES CSS ===============*/

:root { /*======= Colors ========*/
	--text-color: #292929;
	--first-color: #1EAA39;
	--accent-color: #FFF000;
	--white-color: #FFFFFF; /*======= Fonts and typography ========*/ /*.5rem = 8px | 1rem = 16px ...*/
	--body-font: "Noto Sans JP", sans-serif;
	--second-font: "Poppins", sans-serif;
	--normal-font-size: 1rem; /*======= Fonts weight ========*/
	--font-regular: 400; /*======= Line height ========*/
	--font-light: 1.6; /*======= z index ========*/
}

body {
	background-color: var(--white-color);
	background-size: contain;
	color: var(--text-color);
	font-family: var(--body-font);
	font-size: var(--normal-font-size);
	line-height: var(--font-light);
	overflow-x: hidden;
}

body.no-scroll {
	overflow-y: hidden;
}

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

a {
	color: inherit;
}

body {
	overflow-y: scroll;
}

.l-header {
	height: 5.125rem;
	position: relative;
	width: 100%;
	z-index: 100;
}

.l-header__inner {
	align-items: center;
	display: flex;
	height: inherit;
	justify-content: space-between;
	padding: 0 1.25rem;
}

.l-inner {
	margin-inline: auto;
	max-width: 70rem;
	padding: 0 1.25rem;
	width: 100%;
}

.l-top-news {
	margin-right: auto;
	max-width: 62.5rem;
	width: 100%;
}

.l-top-service {
	margin-inline: auto;
	max-width: 62.5rem;
	width: 100%;
}

.l-contact {
	margin-left: 2.986vw;
}

.l-contact__inner {
	margin-inline: auto;
	max-width: 100%;
	padding: 0 1.875rem 3.75rem;
	width: 70.625rem;
}

.l-drawer {
	height: 100vh;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	width: min(720px, 80%);
	z-index: 200;
}

.l-drawer.show-menu {
	transform: translateX(0);
}

.l-drawer::after {
	background-image: url(../img/common/drawer-pic.webp);
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0;
	content: "";
	height: min(300px, 38vw);
	position: absolute;
	right: 0;
	width: min(440px, 61.11vw);
	z-index: -1;
}

.l-drawer__inner {
	height: inherit;
	padding: 7.5rem 5.625rem 0 5.625rem;
}

.l-head {
	margin-inline: auto;
	max-width: 90rem;
	padding: 0.625rem 6.25rem;
	width: 100%;
}

.l-breadcrumb__inner {
	margin: 0 auto;
	max-width: 70rem;
	padding: 0 1.25rem;
	width: 100%;
}

.l-service {
	padding: 6.25rem 0 10rem;
}

.l-company {
	padding: 5rem 0 10rem;
}

.l-message {
	padding: 6.25rem 0 14.375rem;
}

.l-privacy {
	padding: 6.25rem 0;
}

.l-top-fv {
	margin-inline: auto;
	max-width: 82.5rem;
	padding: 0 1.25rem;
	width: 100%;
}

.c-btn {
	background-color: var(--accent-color);
	border: 1px solid var(--accent-color);
	border-radius: 0.25rem;
	display: inline-block;
	font-weight: bold;
	padding: 1rem 5.1875rem;
	position: relative;
	transition: background-color 0.3s ease;
	white-space: nowrap;
}

.c-btn::after {
	background-image: url(../img/common/arrow.svg);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 0.8125rem;
	position: absolute;
	right: 1.0625rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0.5rem;
}

.c-btn:hover {
	background-color: #f8ffc1;
	border: 1px solid var(--accent-color);
}

.c-btn.fv-btn {
	padding: 1rem 3.6875rem;
}

.c-btn__contact {
	background-color: var(--accent-color);
	border: 1px solid var(--accent-color);
	border-radius: 0.25rem;
	display: inline-block;
	padding: 0.5rem 1rem;
	transition: background-color 0.3s ease;
}

.c-btn__contact:hover {
	background-color: #f8ffc1;
	border: 1px solid var(--accent-color);
}

.c-title__jp {
	font-size: 1.5rem;
	font-weight: bold;
}

.c-title__jp.contact {
	color: #ffffff;
}

.c-title__en {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(65deg, #196228 0%, #1eaa39 100%);
	background-clip: text;
	color: transparent;
	display: inline-block;
	font-family: var(--second-font);
	font-size: 3.5rem;
	font-weight: bold;
}

.c-title__en.contact {
	-webkit-background-clip: initial;
	-webkit-text-fill-color: initial;
	background: none;
	background-clip: initial;
	color: #ffffff;
}

.p-main {
	position: relative;
}

.p-header__logo span {
	display: block;
	font-size: 0.75rem;
	letter-spacing: -0.03em;
	text-align: center;
}

.p-header__logo a {
	display: inline-block;
	width: 9.5625rem;
}

.p-header__content {
	align-items: center;
	display: flex;
}

.p-header__list {
	-moz-column-gap: 1.5rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.5rem;
	column-gap: 1.25rem;
	display: flex;
}

.p-header__link {
	display: inline-block;
	padding: 0.3125rem 0.4375rem;
	padding-bottom: 0.3125rem;
	position: relative;
}

.p-header__link::before {
	background-color: var(--first-color);
	bottom: 0;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	position: absolute;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.3s;
	width: 100%;
}

.p-header__link:hover::before {
	transform: scale(1, 1);
	transform-origin: left top;
}

.p-header__link.prepare {
	pointer-events: none;
	position: relative;
}

.p-header__link.prepare::after {
	bottom: -0.5rem;
	color: red;
	content: "準備中";
	font-size: 0.625rem;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
}

.p-header__btn {
	margin: 0 1.5rem;
}

.p-header__line {
	display: inline-block;
	width: 2.5rem;
}

.p-top-fv {
	background-color: #f1fcf2;
	padding: 6.25rem 2.5rem;
}

.p-top-fv__content {
	display: flex;
	flex-direction: column;
	row-gap: 2.5rem;
}

.p-top-fv__top {
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	display: flex;
}

.p-top-fv__top-title {
	flex: 0 0 33.125rem;
	font-size: 1.875rem;
	font-weight: bold;
}

.p-top-fv__top-title .color {
	color: #197c2d;
	font-size: 3.125rem;
	margin-left: -1.625rem;
}

.p-top-fv__top-title .size {
	font-size: 2.375rem;
}

.p-top-fv__top-fv {
	flex: 0 1 100%;
}

.p-top-fv__bottom {
	-moz-column-gap: 2.5rem;
	column-gap: 2.5rem;
	display: flex;
}

.p-top-fv__btn {
	flex: 0 0 22.5rem;
	position: relative;
	z-index: 2;
}

.p-top-fv__bottom-fv {
	-moz-column-gap: 1.875rem;
	column-gap: 1.875rem;
	display: flex;
}

.p-top-fv__bottom-fv1 {
	display: block;
	flex: 0 1 25rem;
	position: relative;
	top: -4.0625rem;
}

.p-top-fv__bottom-fv2 {
	display: block;
	flex: 0 1 22.1875rem;
}

.p-top-title {
	position: relative;
}

.p-top-info__item {
	-moz-column-gap: 2.5rem;
	align-items: center;
	border-bottom: 1px solid #bdbdbd;
	column-gap: 2.5rem;
	display: flex;
	padding: 2.1875rem 1.25rem 0.5rem 1.25rem;
	pointer-events: none;
	row-gap: 0.5rem;
}

.p-top-info__date {
	flex: 0 0 5.3125rem;
}

.p-top-info__tag {
	align-items: center;
	background-color: #ddfbe2;
	color: #196228;
	display: flex;
	flex: 0 0 7.1875rem;
	font-size: 0.875rem;
	font-weight: 500;
	height: 2rem;
	justify-content: center;
	white-space: nowrap;
	width: 7.1875rem;
}

.p-top-info__title {
	flex: 0 1 100%;
}

.p-top-info__btn {
	margin-top: 3.75rem;
	text-align: center;
}

.p-top-service {
	background-color: rgba(239, 239, 239, 0.3);
}

.p-top-service__lead {
	margin-top: 3.125rem;
}

.p-top-service__swiper {
	position: relative;
}

.p-top-service__swiper .swiper-wrapper {
	align-items: stretch;
	margin-top: 3.75rem;
}

.p-top-service__swiper .swiper-slide {
	height: auto !important;
}

.p-top-service__swiper .swiper-button-prev,
.p-top-service__swiper .swiper-button-next {
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	height: 2.8125rem;
	width: 2.8125rem;
}

.p-top-service__swiper .swiper-button-prev::after,
.p-top-service__swiper .swiper-button-next::after {
	border: solid var(--white-color);
	content: "";
	height: 0.5625rem;
	position: absolute;
	transform: rotate(45deg);
	width: 0.5625rem;
}

.p-top-service__swiper .swiper-button-prev {
	left: 0;
}

.p-top-service__swiper .swiper-button-prev::after {
	border-width: 0 0 3px 3px;
}

.p-top-service__swiper .swiper-button-next {
	right: 0;
}

.p-top-service__swiper .swiper-button-next::after {
	border-width: 3px 3px 0 0;
}

.p-top-service__item {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.p-top-service__img {
	text-align: center;
}

.p-top-service__title {
	color: #197c2d;
	font-size: 1.25rem;
	font-weight: bold;
	margin-top: 0.3125rem;
	text-align: center;
}

.p-top-service__text {
	margin-top: 0.5rem;
}

.p-top-service__btn {
	margin-top: 3.75rem;
	text-align: center;
}

.p-card {
	-moz-column-gap: 3.75rem;
	column-gap: 3.75rem;
	cursor: pointer;
	display: flex;
}

.p-card:hover .c-btn__link {
	background-color: rgba(0, 57, 47, 0.7);
}

.p-card__content {
	color: var(--white-color);
	width: 38%;
}

.p-card__title {
	font-size: 1.5rem;
	font-weight: bold;
}

.p-card__text {
	line-height: 2.2;
	margin-top: 2.1875rem;
}

.p-card__btn {
	margin-top: 4.375rem;
}

.p-card__img {
	position: relative;
	width: 56%;
}

.p-card__img picture,
.p-card__img img {
	display: block;
	width: 100%;
}

.p-card__img.card-num::after {
	color: var(--white-color);
	content: "";
	font-family: "Oswald", sans-serif;
	font-size: 3.75rem;
	font-weight: bold;
	left: 0.9375rem;
	line-height: 1;
	position: absolute;
	top: 0.9375rem;
}

.p-card__img.card-num.card-1::after {
	content: "01";
}

.p-card__img.card-num.card-2::after {
	content: "02";
}

.p-card__img.card-num.card-3::after {
	content: "03";
}

.p-card__img.card-num.card-4::after {
	content: "04";
}

.p-card__img.card-num.card-5::after {
	content: "05";
}

.p-card__img-content {
	display: block;
	height: auto;
	position: relative;
	width: 100%;
}

.p-card__img-content::before {
	background: rgba(0, 0, 0, 0.3);
	border-radius: 0.625rem;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-card__head {
	background: var(--white-color);
	color: var(--first-color);
	font-weight: bold;
	padding: 0.0625rem 0.3125rem;
	position: absolute;
	right: 0;
	top: 1.875rem;
	z-index: 1;
}

.p-card__head-title {
	font-size: 1.5rem;
}

.p-card__subtitle-wrap {
	bottom: 0;
	display: flex;
	flex-direction: column;
	left: 0;
	position: absolute;
	row-gap: 0.3125rem;
	z-index: 1;
}

.p-card__subtitle {
	background: var(--white-color);
	color: var(--first-color);
	display: inline-block;
	font-size: 1.125rem;
	font-weight: bold;
	padding: 0.125rem 0.625rem;
	width: -moz-fit-content;
	width: fit-content;
}

.p-footer {
	position: relative;
}

.p-footer__inner {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	padding: 6.25rem 1.25rem;
	position: relative;
}

.p-footer__nav-wrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	row-gap: 4.375rem;
}

.p-footer__nav {
	-moz-column-gap: 6.875rem;
	column-gap: 6.875rem;
	display: flex;
}

.p-footer__list {
	display: flex;
	flex-direction: column;
	row-gap: 0.75rem;
}

.p-footer__link {
	padding: 0.3125rem 0.25rem;
	padding-bottom: 0.3125rem;
	position: relative;
}

.p-footer__link::before {
	background-color: var(--first-color);
	bottom: 0;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	position: absolute;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.3s;
	width: 100%;
}

.p-footer__link:hover::before {
	transform: scale(1, 1);
	transform-origin: left top;
}

.p-footer__link.prep {
	pointer-events: none;
}

.p-footer__sns-wrap {
	-moz-column-gap: 1.5rem;
	column-gap: 1.5rem;
	display: flex;
}

.p-footer__sns-link {
	display: inline-block;
	height: 2.5rem;
	width: 2.5rem;
}

.p-footer__logo .name {
	display: block;
	font-size: 0.875rem;
	line-height: 1;
	text-align: center;
}

.p-footer__logo-link {
	display: inline-block;
}

.p-footer__logo-link > img {
	width: 12.5rem;
}

.p-footer__address-wrap {
	font-size: 0.875rem;
	margin-top: 1.875rem;
}

.p-footer__address {
	margin-top: 0.3125rem;
}

.p-footer__address-link {
	display: inline-block;
	margin-top: 0.3125rem;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.p-footer__tel-wrap {
	margin-top: 1.625rem;
}

.p-footer__tel {
	padding-left: 1.5rem;
	pointer-events: none;
	position: relative;
}

.p-footer__tel::after {
	background-image: url(../img/common/tel.svg);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 1.25rem;
	left: 0;
	position: absolute;
	top: calc(50% + 2px);
	transform: translateY(-50%);
	width: 1.25rem;
}

.p-footer__mail {
	margin-top: 0.3125rem;
	padding-left: 1.5rem;
	position: relative;
}

.p-footer__mail::after {
	background-image: url(../img/common/mail.svg);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 1.25rem;
	left: 0;
	position: absolute;
	top: calc(50% + 2px);
	transform: translateY(-50%);
	width: 1.25rem;
}

.p-contact {
	background-image: url(../img/common/contact-bg.webp);
	background-position: center center;
	background-size: cover;
	padding: 3.75rem 0 6.25rem;
}

.p-contact__head {
	height: 4.166vw;
	position: relative;
	width: 100%;
}

.p-contact__head::before {
	background-image: url(../img/common/contact-point.webp);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: inherit;
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: inherit;
}

.p-contact__content {
	background-color: #ffffff;
	border-radius: 0.625rem;
	display: flex;
	padding: 1.5625rem 1rem;
}

.p-contact__body {
	flex: 0 0 45%;
}

.p-contact__body-items {
	display: flex;
	gap: 0.9375rem;
	padding: 0 0.5rem;
}

.p-contact__body-item {
	background-color: #196228;
	border-radius: 50%;
	color: #ffffff;
	display: grid;
	height: 8.3125rem;
	place-items: center;
	text-align: center;
	width: 8.3125rem;
}

.p-contact__body-item-box {
	font-size: 0.9375rem;
	line-height: 1.4;
	padding-bottom: 3.125rem;
	position: relative;
}

.p-contact__body-item-box::after {
	background-repeat: no-repeat;
	background-size: contain;
	bottom: 0;
	content: "";
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
}

.p-contact__body-item-box.item1::after {
	background-image: url(../img/common/contact1.svg);
	height: 2.875rem;
	width: 2.875rem;
}

.p-contact__body-item-box.item2::after {
	background-image: url(../img/common/contact2.svg);
	height: 2.625rem;
	width: 2.625rem;
}

.p-contact__body-item-box.item3::after {
	background-image: url(../img/common/contact3.svg);
	height: 2.75rem;
	width: 2.25rem;
}

.p-contact__body-item-box .bold {
	font-weight: bold;
}

.p-contact__body-item-box .size {
	font-size: 1.4375rem;
	font-weight: bold;
	line-height: 1;
	padding: 0 2px;
}

.p-contact__body-text {
	margin-top: 0.875rem;
}

.p-contact__list {
	border-left: 1px solid #525252;
	display: grid;
	flex: 0 1 55%;
	gap: 1.5rem;
	grid-template-areas: "area1 area1" "area2 area3";
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 5rem 5rem;
	margin: 0.625rem 0;
	padding-left: 1.75rem;
}

.p-contact__list-item.contact1 {
	grid-area: area1;
	grid-column: 1/3;
	grid-row: 1/2;
}

.p-contact__list-item.contact2 {
	grid-area: area2;
	grid-column: 1/2;
	grid-row: 2/3;
}

.p-contact__list-item.contact3 {
	grid-area: area3;
	grid-column: 2/3;
	grid-row: 2/3;
}

.p-contact__list-link {
	align-items: center;
	background-color: var(--accent-color);
	display: flex;
	font-weight: bold;
	height: 5rem;
	justify-content: center;
	padding: 0rem 0.625rem;
	text-align: center;
}

.p-contact__list-link span {
	position: relative;
}

.p-contact__list-link span::after {
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.p-contact__list-link .link1 {
	padding-left: 2.8125rem;
}

.p-contact__list-link .link1::after {
	background-image: url(../img/common/contact-mail.svg);
	height: 1.6875rem;
	width: 2.125rem;
}

.p-contact__list-link .link2 {
	padding-left: 2.9375rem;
}

.p-contact__list-link .link2::after {
	background-image: url(../img/common/line.webp);
	height: 2.5rem;
	width: 2.5rem;
}

.p-contact__list-link .link3 {
	padding-left: 2.9375rem;
}

.p-contact__list-link .link3::after {
	background-image: url(../img/common/contact-tel.svg);
	height: 2.3125rem;
	width: 2.125rem;
}

.p-contact__list-link .adjust {
	display: none;
}

.p-contact__list-link.tel {
	pointer-events: none;
}

.p-drawer__button {
	background-color: #196228;
	border-radius: 0 0 0 3.125rem;
	color: #f1fcf2;
	cursor: pointer;
	font-size: 0.875rem;
	height: 7.1875rem;
	opacity: 0;
	position: fixed;
	right: 0;
	top: 0;
	visibility: hidden;
	width: 5rem;
	z-index: 300;
}

.p-drawer__button::after {
	bottom: 1.25rem;
	color: #f1fcf2;
	content: "Menu";
	font-family: var(--second-font);
	font-size: 0.875rem;
	left: 50%;
	position: absolute;
	text-align: center;
	transform: translate(-50%, -50%);
	white-space: nowrap;
}

.p-drawer__button.js-open .p-drawer__bars {
	justify-content: initial;
}

.p-drawer__button.js-open .p-drawer__bar1 {
	position: relative;
	top: 6px;
	transform: rotate(30deg);
}

.p-drawer__button.js-open .p-drawer__bar2 {
	opacity: 0;
}

.p-drawer__button.js-open .p-drawer__bar3 {
	position: relative;
	top: 2px;
	transform: rotate(-30deg);
}

.p-drawer__button.js-open::after {
	content: "Close";
}

.p-drawer__bars {
	display: flex;
	flex-direction: column;
	height: 18px;
	justify-content: space-between;
	left: 50%;
	position: relative;
	top: -16px;
	transform: translateX(-50%);
	width: 30px;
}

.p-drawer__bar1,
.p-drawer__bar2,
.p-drawer__bar3 {
	background-color: #f1fcf2;
	border-radius: 1px;
	height: 2px;
	transition: transform 0.3s;
	width: 30px;
}

.p-drawer {
	background-color: #196228;
	border-radius: 0 0 0 6.25rem;
}

.p-drawer__list-wrap {
	-moz-column-gap: 4.375rem;
	column-gap: 4.375rem;
	display: flex;
}

.p-drawer__item-wrap {
	display: flex;
	flex-direction: column;
	row-gap: 1.875rem;
}

.p-drawer__item-link {
	color: #ffffff;
	font-weight: bold;
	transition: opacity 0.3s ease;
}

.p-drawer__item-link span {
	display: block;
}

.p-drawer__item-link .jp {
	font-size: 1.25rem;
}

.p-drawer__item-link .en {
	font-family: var(--second-font);
	font-size: 3rem;
	line-height: 1.3;
}

.p-drawer__item-link:hover {
	opacity: 0.8;
}

.p-drawer__item-link.prep {
	color: rgba(41, 41, 41, 0.8);
	pointer-events: none;
}

.p-drawer__sns-wrap {
	-moz-column-gap: 1rem;
	column-gap: 1rem;
	display: flex;
	margin-top: 3.125rem;
}

.p-drawer__sns-link {
	display: inline-block;
	height: 2.5rem;
	width: 2.5rem;
}

.breadcrumb {
	font-size: 0.875rem;
	overflow-x: auto;
	padding: 0.4375rem 0;
	position: relative;
	white-space: nowrap;
}

.breadcrumb .home {
	color: #989898;
}

.breadcrumb .current-item {
	color: #292929;
}

.breadcrumb .post-page {
	padding-left: 1.875rem;
	position: relative;
}

.breadcrumb .post-page::after {
	background-image: url(../img/common/arrow-b.svg);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 0.6875rem;
	left: 0.75rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0.375rem;
}

.breadcrumb a {
	color: #989898;
}

.p-service {
	padding-top: 3.75rem;
}

.p-service__lead {
	text-align: center;
}

.p-service__title {
	color: var(--first-color);
	font-size: 2.1875rem;
	font-weight: bold;
	margin-top: 3.125rem;
}

.p-service__list {
	-moz-column-gap: 1.5625rem;
	align-items: stretch;
	column-gap: 1.5625rem;
	display: flex;
	margin: 2.5rem 0 3.75rem;
}

.p-service__item {
	width: calc((100% - 3.125rem) / 3);
}

.p-service__item-link {
	border: 1px solid var(--first-color);
	border-radius: 0.625rem;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1rem 1rem 3.125rem 1rem;
	position: relative;
}

.p-service__item-link::after {
	background-image: url(../img/service/arrow.svg);
	background-repeat: no-repeat;
	background-size: contain;
	bottom: 1rem;
	content: "";
	height: 0.875rem;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 1.75rem;
}

.p-service__item-title {
	font-size: 1.125rem;
	font-weight: bold;
	margin-top: 0.625rem;
	text-align: center;
}

.p-service__item-text {
	margin-top: 0.5rem;
}

.p-service__content {
	padding-top: 6.25rem;
}

.p-service__content.content3 {
	padding-bottom: 4.375rem;
}

.p-service__content-title {
	color: var(--first-color);
	font-size: 1.5rem;
	font-weight: bold;
	margin-inline: auto;
	padding: 0 2.5rem;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}

.p-service__content-title::before {
	background-image: url(../img/service/title-deco.svg);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 0.5rem;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2rem;
}

.p-service__content-title::after {
	background-image: url(../img/service/title-deco.svg);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 0.5rem;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 2rem;
}

.p-service__content__wrap {
	-moz-column-gap: 2.5rem;
	align-items: center;
	column-gap: 2.5rem;
	display: flex;
	flex-direction: row-reverse;
	margin-top: 2.5rem;
}

.p-service__content__body {
	flex: 0 1 37.5rem;
}

.p-service__content__body ul {
	display: grid;
	margin-top: 1.5rem;
	row-gap: 0.5rem;
}

.p-service__content__body li span {
	font-weight: bold;
}

.p-service__content__body-title {
	font-size: 1.25rem;
	font-weight: bold;
}

.p-service__content__body-text {
	font-size: 1.25rem;
	margin-top: 0.5rem;
	position: relative;
}

.p-service__content__body-text.content3-text {
	margin-top: 0;
}

.p-service__content__body-text.content3-img {
	position: relative;
}

.p-service__content__img {
	flex: 0 1 25rem;
}

.p-service__content__img.content1-img {
	position: relative;
}

.p-service__content__img.content1-img::before {
	background-image: url(../img/service/deco1.webp);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 18.75rem;
	left: 0;
	position: absolute;
	top: -8.125rem;
	width: 20rem;
	z-index: -1;
}

.p-service__content__img.content2-img {
	position: relative;
}

.p-service__content__img.content2-img::before {
	background-image: url(../img/service/deco1.webp);
	background-repeat: no-repeat;
	background-size: contain;
	bottom: -7.5rem;
	content: "";
	height: 18.75rem;
	left: 0;
	position: absolute;
	width: 20rem;
	z-index: -1;
}

.p-service__content__banner {
	background-color: #f1fcf2;
	border-radius: 0.625rem;
	margin-top: 2.5rem;
	padding: 1.5625rem;
	position: relative;
}

.p-service__content__banner::after {
	background-image: url(../img/service/deco2.webp);
	background-repeat: no-repeat;
	background-size: contain;
	bottom: -7.5rem;
	content: "";
	height: 16.25rem;
	position: absolute;
	right: 0;
	width: 15.625rem;
	z-index: -1;
}

.p-service__content__banner-content {
	-moz-column-gap: 4.875rem;
	align-items: center;
	column-gap: 4.875rem;
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
}

.p-service__content__banner-text {
	flex: 0 0 28rem;
	padding-left: 10rem;
	position: relative;
}

.p-service__content__banner-text::after {
	background-image: url(../img/service/banner2.webp);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 10.5rem;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 8.4375rem;
}

.p-service__content__banner-text span {
	color: var(--first-color);
	font-weight: bold;
}

.p-service__content__banner-img {
	flex: 0 1 15.625rem;
}

.p-copyright {
	background-color: #175024;
	color: #ffffff;
	font-size: 0.75rem;
	padding: 1.875rem 0;
	text-align: center;
}

.p-head {
	height: 27.77vw;
	position: relative;
	width: 100%;
}

.p-head::before {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: inherit;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.p-head.notfound::before {
	background-image: url(../img/404/404.webp);
}

.p-head.contact::before {
	background-image: url(../img/contact/contact.webp);
}

.p-head.price::before {
	background-image: url(../img/price/price.webp);
}

.p-head.office::before {
	background-image: url(../img/office/office.webp);
}

.p-head.service::before {
	background-image: url(../img/service/service.webp);
}

.p-head__title {
	color: #ffffff;
	padding-top: 6.944vw;
}

.p-head__title-jp {
	font-size: 1.5rem;
	font-weight: bold;
}

.p-head__title-en {
	font-family: var(--second-font);
	font-size: 3.5rem;
	font-weight: bold;
}

.p-404_text {
	text-align: center;
}

.p-404__img {
	margin-top: 3.75rem;
	text-align: center;
}

.p-404__img > img {
	width: 16.25rem;
}

.p-404__btn {
	margin-top: 3.75rem;
	text-align: center;
}

.p-company__img {
	height: 34.93vw;
	position: relative;
	width: 100%;
}

.p-company__img::after {
	background-image: url(../img/company/company-img.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: inherit;
	left: 50%;
	position: absolute;
	top: 1px;
	transform: translateX(-50%);
	width: inherit;
}

.p-company {
	position: relative;
}

.p-company::after {
	background-image: url(../img/common/point2.png);
	background-repeat: no-repeat;
	background-size: contain;
	bottom: 0;
	content: "";
	height: 9.6875rem;
	left: 3.125rem;
	position: absolute;
	width: 9.6875rem;
}

.p-company__inner {
	-moz-column-gap: 1.875rem;
	column-gap: 1.875rem;
	display: flex;
}

.p-company__title-en {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(65deg, #005842 0%, #478b21 70%, #7ba500 100%);
	background-clip: text;
	color: transparent;
	display: inline-block;
	font-family: var(--second-font);
	font-size: 5rem;
	line-height: 0.9;
	padding-right: 1.25rem;
}

.p-company__title-jp {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(65deg, #005842 0%, #478b21 70%, #7ba500 100%);
	background-clip: text;
	color: transparent;
	display: inline-block;
	font-family: var(--second-font);
	font-size: 1.5rem;
	font-weight: bold;
}

.p-company__title-wrap {
	flex: 0 1 23.75rem;
}

.p-company__content {
	flex: 0 1 37.1875rem;
}

.p-company__table {
	background: var(--white-color);
	border-bottom: 1px solid var(--text-color);
	border-collapse: collapse;
	border-top: 1px solid var(--text-color);
	font-weight: 500;
	table-layout: fixed;
	width: 100%;
}

.p-company__table th {
	-moz-text-align-last: justify;
	border-top: 1px solid var(--text-color);
	padding: 1.25rem 3.125rem;
	text-align-last: justify;
	width: 11.25rem;
}

.p-company__table td {
	border-top: 1px solid var(--text-color);
	padding: 1.25rem 0;
}

.p-toTop {
	bottom: 2.5rem;
	height: 3.75rem;
	opacity: 0;
	position: fixed;
	right: 1.25rem;
	visibility: hidden;
	width: 3.75rem;
	z-index: 3;
}

.p-toTop.is-active {
	opacity: 1;
	transition: opacity 0.3s ease;
	visibility: visible;
}

.p-privacy__list {
	display: flex;
	flex-direction: column;
	margin-top: 1.5625rem;
	row-gap: 1.5625rem;
}

.p-privacy__item-list {
	counter-reset: privacy-counter;
}

.p-privacy__item-list li {
	counter-increment: privacy-counter;
	list-style: none;
	padding-left: 1.875rem;
	position: relative;
}

.p-privacy__item-list li::before {
	content: "(" counter(privacy-counter) ") ";
	left: 0;
	position: absolute;
	top: 0;
}

.p-privacy__info {
	margin-top: 1.5625rem;
}

.p-top-greeting {
	padding: 3.75rem 0;
	position: relative;
}

.p-top-greeting::before {
	background-image: url(../img/top/greeting1.webp);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 24.5625rem;
	left: 0;
	position: absolute;
	top: -6.5rem;
	width: 16.625rem;
}

.p-top-greeting::after {
	background-image: url(../img/top/greeting2.webp);
	background-repeat: no-repeat;
	background-size: contain;
	bottom: 0;
	content: "";
	height: 17.5rem;
	position: absolute;
	right: 0;
	width: 15.25rem;
}

.p-top-greeting__content {
	-moz-column-gap: 2.5rem;
	column-gap: 2.5rem;
	display: flex;
	position: relative;
	z-index: 2;
}

.p-top-greeting__body {
	flex: 0 0 59%;
	line-height: 1.6;
}

.p-top-greeting__body .width {
	display: block;
	height: 2.1875rem;
	width: 100%;
}

.p-top-greeting__body .note {
	color: #656565;
	display: block;
	font-size: 0.75rem;
}

.p-top-greeting__body .color {
	color: var(--first-color);
	font-weight: bold;
}

.p-top-greeting__body .size {
	font-size: 1.25rem;
	font-weight: bold;
}

.p-top-greeting__img .name {
	display: block;
	margin-top: 0.4375rem;
	text-align: center;
}

.p-top-features__swiper {
	position: relative;
}

.p-top-features__swiper .swiper-wrapper {
	align-items: stretch;
}

.p-top-features__swiper .swiper-slide {
	height: auto !important;
}

.p-top-features__swiper .swiper-button-prev,
.p-top-features__swiper .swiper-button-next {
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	height: 2.8125rem;
	width: 2.8125rem;
}

.p-top-features__swiper .swiper-button-prev::after,
.p-top-features__swiper .swiper-button-next::after {
	border: solid var(--white-color);
	content: "";
	height: 0.5625rem;
	position: absolute;
	transform: rotate(45deg);
	width: 0.5625rem;
}

.p-top-features__swiper .swiper-button-prev {
	left: 0;
}

.p-top-features__swiper .swiper-button-prev::after {
	border-width: 0 0 3px 3px;
}

.p-top-features__swiper .swiper-button-next {
	right: 0;
}

.p-top-features__swiper .swiper-button-next::after {
	border-width: 3px 3px 0 0;
}

.p-top-features__item {
	border: 2px solid var(--first-color);
	border-radius: 0.75rem;
	display: flex;
	flex-direction: column;
	padding: 0.875rem;
}

.p-top-features__head {
	-moz-column-gap: 0.9375rem;
	align-items: center;
	column-gap: 0.9375rem;
	display: flex;
}

.p-top-features__num {
	color: var(--first-color);
	font-family: var(--second-font);
	font-size: 2.0625rem;
	font-weight: bold;
}

.p-top-features__title {
	font-size: 1.25rem;
	font-weight: bold;
}

.p-top-features__img {
	margin-top: 0.5rem;
	text-align: center;
}

.p-top-features__text {
	flex-grow: 1;
	margin-top: 0.4375rem;
}

.p-section {
	padding: 6.25rem 0;
}

.p-top-images {
	display: flex;
}

.p-top-image {
	position: relative;
}

.p-top-image::after {
	background-color: rgba(61, 61, 61, 0.4);
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-util {
	padding: 3.4375rem 0 7.5rem;
}

.p-contact-page__text {
	text-align: center;
}

.p-contact-page__policy {
	margin-top: 2.5rem;
	text-align: center;
}

.p-contact-page__policy a {
	border-bottom: 1px solid var(--text-color);
}

.p-contact-page__btn-wrap {
	-moz-column-gap: 2.5rem;
	column-gap: 2.5rem;
	display: flex;
	margin-top: 3.75rem;
}

.p-contact-page__btn {
	align-items: center;
	background-color: var(--accent-color);
	border-radius: 1.25rem;
	box-shadow: 4px 4px 4px 0 rgba(41, 41, 41, 0.2);
	display: flex;
	flex-direction: column;
	height: 8.375rem;
	justify-content: center;
	row-gap: 0.375rem;
	width: 50%;
}

.p-contact-page__btn.tel {
	pointer-events: none;
}

.p-contact-page__btn span {
	display: block;
	text-align: center;
}

.p-contact-page__btn .number {
	font-size: 1.5rem;
	font-weight: bold;
	padding-left: 2.125rem;
	position: relative;
}

.p-contact-page__btn .number::after {
	background-image: url(../img/common/tel.svg);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 2rem;
	left: 0;
	position: absolute;
	top: calc(50% + 3px);
	transform: translateY(-50%);
	width: 1.8125rem;
}

.p-contact-page__btn .time {
	font-size: 0.875rem;
}

.p-contact-page__btn-img {
	margin-top: 0.3125rem;
	text-align: center;
}

.p-contact-page__btn-img > img {
	width: 3rem;
}

.p-contact-page__form {
	empty-cells: 100%;
	margin-top: 3.75rem;
	text-align: center;
}

.p-contact-page__form .gform-iframe {
	height: 125rem;
	width: 100%;
}

.p-price__lead {
	text-align: center;
}

.p-price__point {
	-moz-column-gap: 2.5rem;
	align-items: center;
	background-color: #f1fcf2;
	border: 2px solid var(--first-color);
	border-radius: 0.625rem;
	column-gap: 2.5rem;
	display: flex;
	justify-content: center;
	margin-top: 3.75rem;
	padding: 1.5rem 1.25rem;
}

.p-price__point-img {
	width: 7.5rem;
}

.p-price__point-list {
	display: flex;
	flex-direction: column;
	row-gap: 1.125rem;
}

.p-price__point-item {
	padding-left: 1.75rem;
	position: relative;
}

.p-price__point-item::before {
	background-image: url(../img/price/check.svg);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 1.25rem;
	left: 0;
	position: absolute;
	top: 0.3125rem;
	width: 1.25rem;
}

.p-price__chart {
	margin-top: 3.75rem;
}

.p-office {
	background-color: rgba(239, 239, 239, 0.3);
	padding: 3.75rem 0;
}

.p-office__table-wrap {
	background-color: #fff;
	border: 1px solid #bdbdbd;
	border-radius: 1.25rem;
	margin-top: 2.5rem;
	padding: 3rem 3.75rem;
}

.p-office__table {
	border-collapse: collapse;
	border-radius: 1.25rem;
	width: 100%;
}

.p-office__table th,
.p-office__table td {
	vertical-align: middle;
}

.p-office__table th {
	border-bottom: 1px solid #bdbdbd;
	padding: 1rem 1.5rem;
	text-align: left;
	width: 7.5rem;
}

.p-office__table td {
	border-bottom: 1px solid #bdbdbd;
	padding: 1rem 1.25rem 1rem 4.375rem;
}

.p-office__table tbody tr:last-child th {
	border-bottom: none;
}

.p-office__table tbody tr:last-child td {
	border-bottom: none;
}

.p-office__table ul {
	display: flex;
	flex-direction: column;
}

.p-office__table li {
	padding: 0.3125rem 0;
}

.p-office__table-link {
	display: inline-block;
	transition: color 0.3s;
}

.p-office__table-link:hover {
	color: var(--first-color);
}

.p-movie {
	padding-bottom: 3.75rem;
}

.p-movie__content {
	background-color: #f1fcf2;
	border-radius: 2.5rem;
	padding: 2.5rem;
}

.p-movie-title {
	font-size: 1.25rem;
	font-weight: bold;
	text-align: center;
}

.p-movie-wrap {
	margin-inline: auto;
	margin-top: 1.875rem;
	max-width: 100%;
	width: 43.75rem;
}

.p-movie-inner {
	aspect-ratio: 700/430;
	position: relative;
	width: 100%;
}

.p-movie-inner iframe {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-greeting {
	position: relative;
}

.p-greeting__title {
	color: var(--first-color);
	font-size: 2.1875rem;
	font-weight: bold;
}

.p-greeting__content {
	-moz-column-gap: 2.5rem;
	column-gap: 2.5rem;
	display: flex;
	flex-direction: row-reverse;
	margin-top: 1.25rem;
	position: relative;
}

.p-greeting__content::before {
	background-image: url(../img/office/treat1.webp);
	background-repeat: no-repeat;
	background-size: contain;
	bottom: -6.25rem;
	content: "";
	height: 21.875rem;
	left: 0;
	position: absolute;
	width: 21.875rem;
	z-index: -1;
}

.p-greeting__content::after {
	background-image: url(../img/office/treat2.webp);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 20rem;
	position: absolute;
	right: 0;
	top: -6.25rem;
	width: 20rem;
	z-index: -1;
}

.p-greeting__text {
	flex: 0 0 50%;
}

.p-greeting__text .is-gap {
	margin-top: 0.9375rem;
}

.p-greeting__img {
	flex: 0 1 48%;
}

.p-access {
	background-color: rgba(239, 239, 239, 0.3);
	padding-bottom: 3.75rem;
}

.p-access__detail {
	-moz-column-gap: 2.5rem;
	align-items: center;
	column-gap: 2.5rem;
	display: flex;
	flex-direction: row-reverse;
	margin-top: 2.5rem;
}

.p-access__body {
	padding: 1.875rem 0;
}

.p-access__text span {
	font-weight: bold;
}

.p-access__text.is-gap {
	margin-top: 1.25rem;
}

.p-access__img {
	flex: 0 0 18.1875rem;
}

.p-access__map {
	margin-top: 2.5rem;
}

.p-access__map-inner {
	aspect-ratio: 1080/303;
	border: 1px solid #bdbdbd;
	border-radius: 0.625rem;
	position: relative;
	width: 100%;
}

.p-access__map-inner iframe {
	border-radius: 0.625rem;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.test-inner {
	text-align: center;
}

@media (min-width: 501px) {

.p-top-service__swiper .swiper-wrapper {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 1.875rem !important;
	justify-content: center !important;
}

.p-top-service__swiper .swiper-slide {
	width: calc((100% - 1.875rem) / 2) !important;
}

.p-top-service__swiper .swiper-button-prev,
.p-top-service__swiper .swiper-button-next {
	display: none;
}

.p-top-features__swiper .swiper-wrapper {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 0.625rem !important;
	justify-content: center !important;
	margin-top: 3.75rem;
}

.p-top-features__swiper .swiper-slide {
	width: calc((100% - 0.625rem) / 2) !important;
}

.p-top-features__swiper .swiper-button-prev,
.p-top-features__swiper .swiper-button-next {
	display: none;
}

}

@media (min-width: 768px) {

.u-sp {
	display: none;
}

}

@media (min-width: 900px) {

.p-top-service__swiper .swiper-wrapper {
	gap: 2.0625rem !important;
}

.p-top-service__swiper .swiper-slide {
	width: calc((100% - 4.125rem) / 3) !important;
}

}

@media (min-width: 1000px) {

.p-top-features__swiper .swiper-wrapper {
	gap: 1.875rem !important;
}

.p-top-features__swiper .swiper-slide {
	width: calc((100% - 1.875rem) / 2) !important;
}

}

@media (min-width: 1001px) {

.p-drawer__button.is-show {
	opacity: 1;
	position: fixed;
	transition: opacity 0.5s ease;
	visibility: visible;
}

}

@media (min-width: 1100px) {

.p-top-features__swiper .swiper-wrapper {
	gap: 2.0625rem !important;
}

.p-top-features__swiper .swiper-slide {
	width: calc((100% - 4.125rem) / 3) !important;
}

}

@media (min-width: 1200px) {

.p-contact__list-link .adjust {
	display: block;
}

}

@media (min-width: 1280px) {

.p-top-fv__top-title {
	flex: 0 0 41.25rem;
	font-size: 2.5rem;
}

.p-top-fv__top-title .color {
	font-size: 3.75rem;
}

.p-top-fv__top-title .size {
	font-size: 3rem;
}

.p-top-service__swiper .swiper-wrapper {
	gap: 4.0625rem !important;
}

.p-top-service__swiper .swiper-slide {
	width: calc((100% - 8.125rem) / 3) !important;
}

.p-contact__list-link.tel {
	padding: 0 1.25rem 0 0.625rem;
}

.p-service__list {
	-moz-column-gap: 2.5rem;
	column-gap: 2.5rem;
	margin-top: 1.5rem;
}

.p-service__item {
	width: calc((100% - 5rem) / 3);
}

.p-service__content__wrap {
	-moz-column-gap: 5rem;
	column-gap: 5rem;
}

.p-service__content__img.content1-img::before {
	left: -3.125rem;
}

.p-service__content__img.content2-img::before {
	left: -3.125rem;
}

.p-service__content__banner::after {
	right: -6.25rem;
}

.p-top-features__num {
	font-size: 2.3125rem;
}

.p-top-features__title {
	font-size: 1.5rem;
}

.p-greeting__content::before {
	left: -7.5rem;
}

.p-greeting__content::after {
	right: -6.25rem;
}

}

@media (min-width: 1440px) {

.p-service__content__img.content1-img::before {
	left: -8.125rem;
}

.p-service__content__img.content2-img::before {
	left: -6.25rem;
}

}

@media (max-width: 1000px) {

.p-header__content {
	display: none;
}

.p-top-fv {
	padding: 3.75rem 0 2.5rem;
}

.p-top-fv__top {
	display: block;
}

.p-top-fv__top-fv {
	margin-top: 1.25rem;
	max-width: 100%;
	width: 62.5rem;
}

.p-top-fv__bottom {
	display: block;
}

.p-top-fv__btn {
	text-align: center;
}

.p-top-fv__bottom-fv1 {
	display: none;
}

.p-top-fv__bottom-fv2 {
	display: none;
}

.p-contact__content {
	flex-direction: column;
}

.p-contact__body {
	width: 100%;
}

.p-contact__body-items {
	justify-content: center;
	padding: 0;
}

.p-contact__list {
	border-left: none;
	margin-top: 1.5625rem;
	padding-left: 0;
}

.p-drawer__button {
	opacity: 1;
	visibility: visible;
}

}

@media (max-width: 900px) {

.l-contact__inner {
	padding: 0 1.25rem 3.75rem;
}

.l-head {
	padding: 0.625rem 1rem;
}

.l-service {
	padding: 1.875rem 0 8.75rem;
}

.l-message {
	padding: 3.75rem 0 8.75rem;
}

.l-privacy {
	padding: 4.375rem 0;
}

.p-top-service__title {
	font-size: 1.125rem;
}

.p-company::after {
	bottom: 0;
	height: 4.375rem;
	left: 1.25rem;
	width: 4.375rem;
}

.p-top-greeting__content {
	flex-direction: column;
}

.p-top-greeting__body .width {
	height: 1.25rem;
}

.p-top-greeting__img {
	margin-top: 1.875rem;
}

.p-greeting::before {
	background-image: url(../img/sp/office/treat2.webp);
	background-repeat: no-repeat;
	background-size: contain;
	bottom: -6.25rem;
	content: "";
	height: 26.875rem;
	left: 0;
	position: absolute;
	width: 20.1875rem;
	z-index: -1;
}

.p-greeting::after {
	background-image: url(../img/sp/office/treat1.webp);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 31.25rem;
	position: absolute;
	right: 0;
	top: 0;
	width: 23.125rem;
	z-index: -1;
}

.p-greeting__content {
	flex-direction: column-reverse;
	row-gap: 2.5rem;
}

.p-greeting__content::before {
	display: none;
}

.p-greeting__content::after {
	display: none;
}

}

@media (max-width: 850px) {

.p-service {
	padding-top: 2.5rem;
}

.p-service__list {
	flex-direction: column;
	margin: 1.5rem 0 1.25rem;
	row-gap: 1.5rem;
}

.p-service__item {
	width: 100%;
}

.p-service__item-link {
	padding: 1rem 1rem 2.5rem 1rem;
}

.p-service__item-img {
	text-align: center;
}

.p-service__content {
	padding-top: 2.5rem;
}

.p-service__content.content3 {
	padding-bottom: 0;
}

.p-service__content__wrap {
	flex-direction: column-reverse;
	margin-top: 1.5rem;
	row-gap: 1.5rem;
}

.p-service__content__body {
	flex: 0 1 100%;
}

.p-service__content__body-text.content3-text {
	padding-bottom: 3.75rem;
}

.p-service__content__body-text.content3-img::before {
	background-image: url(../img/sp/service/deco1.webp);
	background-repeat: no-repeat;
	background-size: contain;
	bottom: -3.125rem;
	content: "";
	height: 25.4375rem;
	position: absolute;
	right: -1.25rem;
	width: 16.5625rem;
	z-index: -1;
}

.p-service__content__img.content1-img::before {
	background-image: url(../img/sp/service/deco1.webp);
	bottom: -8.125rem;
	height: 25.4375rem;
	left: initial;
	right: -1.25rem;
	top: initial;
	width: 16.5625rem;
}

.p-service__content__img.content2-img::before {
	background-image: url(../img/sp/service/deco2.webp);
	bottom: -12.5rem;
	height: 22.9375rem;
	left: -1.25rem;
	width: 16rem;
}

.p-service__content__img {
	flex: 0 1 100%;
}

.p-service__content__banner::after {
	display: none;
}

.p-service__content__banner-content {
	flex-direction: column-reverse;
	row-gap: 1.375rem;
}

.p-service__content__banner-text {
	flex: 0 1 100%;
	padding-left: 0;
}

.p-service__content__banner-text::after {
	display: none;
}

.p-service__content__banner-img {
	flex: 0 1 100%;
}

}

@media (max-width: 767px) {

.u-pc {
	display: none;
}

}

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

.l-header__inner {
	padding: 0 1rem;
}

.l-inner {
	padding: 0 1rem;
}

.l-contact__inner {
	padding: 0 0.9375rem 3.75rem;
}

.l-drawer {
	width: 100%;
}

.l-drawer__inner {
	padding: 3.75rem 1.875rem 0 3.75rem;
}

.l-head {
	padding: 0.625rem 1rem 0.9375rem;
}

.l-top-fv {
	padding: 0 1rem;
}

.c-title__jp {
	font-size: 1.25rem;
}

.c-title__en {
	font-size: 3rem;
}

.p-header__logo span {
	font-size: 0.625rem;
}

.p-header__logo a {
	width: 8.125rem;
}

.p-top-title {
	padding-bottom: 1.8125rem;
}

.p-top-info__item {
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	flex-wrap: wrap;
	padding: 2.1875rem 0.5rem 0.5rem 0.5rem;
}

.p-top-info__date {
	font-size: 0.875rem;
}

.p-top-info__tag {
	font-size: 0.75rem;
	height: 1.5625rem;
	width: 6.25rem;
}

.p-card {
	flex-direction: column-reverse;
}

.p-card__content {
	margin-top: 1.25rem;
	width: 100%;
}

.p-card__title {
	font-size: 1.375rem;
}

.p-card__text {
	font-size: 0.875rem;
	margin-top: 0.9375rem;
}

.p-card__btn {
	margin-top: 2.5rem;
	text-align: center;
}

.p-card__img {
	width: 100%;
}

.p-card__head-title {
	font-size: 1.25rem;
}

.p-card__subtitle {
	font-size: 0.875rem;
}

.p-footer__inner {
	flex-direction: column;
	padding: 3.75rem 0.9375rem 6.5625rem;
}

.p-footer__nav {
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	justify-content: space-between;
}

.p-footer__sns-wrap {
	bottom: 2.5rem;
	position: absolute;
}

.p-footer__info {
	margin-top: 3.75rem;
}

.p-footer__logo .name {
	font-size: 0.75rem;
}

.p-footer__logo-link > img {
	width: 8.125rem;
}

.p-footer__address-wrap {
	margin-top: 0.9375rem;
}

.p-footer__tel {
	pointer-events: auto;
}

.p-contact__list {
	grid-template-areas: "area1 area1" "area2 area2" "area3 area3";
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 4.5rem 4.5rem 4.5rem;
}

.p-contact__list-item.contact1 {
	grid-column: 1/4;
	grid-row: 1/2;
}

.p-contact__list-item.contact2 {
	grid-column: 1/4;
	grid-row: 2/3;
}

.p-contact__list-item.contact3 {
	grid-column: 1/4;
	grid-row: 3/4;
}

.p-contact__list-link .adjust {
	display: block;
}

.p-contact__list-link.tel {
	pointer-events: auto;
}

.p-drawer__button {
	border-radius: 0 0 0 2.5rem;
	height: 5.625rem;
	width: 4.375rem;
}

.p-drawer__button::after {
	bottom: 0.875rem;
	font-size: 0.8125rem;
}

.p-drawer__bars {
	top: -14px;
}

.p-drawer__list-wrap {
	flex-direction: column;
	row-gap: 1.25rem;
}

.p-drawer__item-wrap {
	flex-direction: column;
	row-gap: 1.25rem;
}

.p-drawer__item-link .jp {
	font-size: 1rem;
}

.p-drawer__item-link .en {
	font-size: 2.25rem;
}

.p-drawer__sns-wrap {
	margin-top: 2.5rem;
}

.p-service__title {
	font-size: 1.5rem;
	margin-top: 1.875rem;
}

.p-service__content-title {
	font-size: 1.25rem;
}

.p-service__content__body ul {
	margin-top: 1rem;
}

.p-service__content__body-title {
	font-size: 1rem;
}

.p-service__content__body-text.content3-img::before {
	right: -1rem;
}

.p-service__content__body-text {
	font-size: 1rem;
}

.p-service__content__img.content1-img::before {
	right: -1rem;
}

.p-service__content__img.content2-img::before {
	left: -1rem;
}

.p-service__content__banner {
	margin-top: 1.5rem;
	padding: 1rem;
}

.p-head {
	height: 53.33vw;
}

.p-head.notfound::before {
	background-image: url(../img/sp/404/404.webp);
}

.p-head.contact::before {
	background-image: url(../img/sp/contact/contact.webp);
}

.p-head.price::before {
	background-image: url(../img/sp/price/price.webp);
}

.p-head.office::before {
	background-image: url(../img/sp/office/office.webp);
}

.p-head.service::before {
	background-image: url(../img/sp/service/service.webp);
}

.p-head__title {
	padding-top: 13.33vw;
}

.p-head__title-jp {
	font-size: 1rem;
}

.p-head__title-en {
	font-size: 2.25rem;
}

.p-404__btn {
	margin-top: 2.5rem;
}

.p-company__inner {
	display: block;
}

.p-company__title-en {
	font-size: 3.75rem;
}

.p-company__title-jp {
	font-size: 1.125rem;
}

.p-company__content {
	margin-top: 2.1875rem;
}

.p-company__table th {
	padding: 1.25rem;
	width: 8.125rem;
}

.p-toTop {
	bottom: 1.25rem;
	height: 3.125rem;
	right: 0.75rem;
	width: 3.125rem;
}

.p-section {
	padding: 3.75rem 0;
}

.p-util {
	padding: 2.5rem 0 3.75rem;
}

.p-contact-page__btn-wrap {
	flex-direction: column;
	row-gap: 1.5rem;
}

.p-contact-page__btn.tel {
	pointer-events: auto;
}

.p-contact-page__btn {
	height: 7.375rem;
	width: 100%;
}

.p-contact-page__form .gform-iframe {
	height: 137.5rem;
}

.p-price__point {
	flex-direction: column;
	padding: 1rem;
}

.p-price__point-list {
	margin-top: 1.5rem;
}

.p-office__table-wrap {
	margin-top: 1.5rem;
	padding: 1.5rem 0.3125rem;
}

.p-office__table th,
.p-office__table td {
	display: block;
}

.p-office__table th {
	border-bottom: none;
	padding: 0.9375rem 0.3125rem 0;
	width: 100%;
}

.p-office__table td {
	padding: 0.375rem 0.3125rem 0.9375rem 0.3125rem;
	width: 100%;
}

.p-office__table li {
	padding: 0.125rem 0;
}

.p-movie__content {
	padding: 1.875rem 1.25rem;
}

.p-movie-title {
	font-size: 1rem;
}

.p-movie-wrap {
	margin-top: 1.25rem;
}

.p-greeting__title {
	font-size: 1.5rem;
}

.p-access__detail {
	flex-direction: column-reverse;
	margin-top: 1.5rem;
	row-gap: 1.5rem;
}

.p-access__body {
	padding: 0;
}

.p-access__img {
	flex: 0 0 100%;
}

.p-access__map {
	margin-top: 1.5rem;
}

.p-access__map-inner {
	aspect-ratio: 335/252;
}

}

@media (max-width: 630px) {

.p-top-features__head {
	-moz-column-gap: 0.625rem;
	column-gap: 0.625rem;
}

.p-top-features__num {
	font-size: 1.25rem;
}

}

@media (max-width: 600px) {

.p-top-fv__top-title {
	font-size: 1.25rem;
}

.p-top-fv__top-title .color {
	font-size: 1.5rem;
	margin-left: -0.625rem;
}

.p-top-fv__top-title .size {
	font-size: 1.5rem;
}

.p-top-features__title {
	font-size: 1rem;
}

}

@media (max-width: 500px) {

.p-top-service__swiper.swiper {
	padding: 0rem 0.9375rem;
}

.p-top-service__swiper .swiper-wrapper {
	margin-top: 2.5rem;
}

.p-top-service__title {
	font-size: 1.25rem;
}

.p-contact__body-items {
	gap: 0.5rem;
}

.p-contact__body-item {
	height: 6.125rem;
	width: 6.125rem;
}

.p-contact__body-item-box {
	font-size: 0.6875rem;
	padding-bottom: 2.3125rem;
}

.p-contact__body-item-box.item1::after {
	height: 2.125rem;
	width: 2.125rem;
}

.p-contact__body-item-box.item2::after {
	height: 1.9375rem;
	width: 1.875rem;
}

.p-contact__body-item-box.item3::after {
	height: 2.0625rem;
	width: 1.5625rem;
}

.p-contact__body-item-box .size {
	font-size: 1.125rem;
}

.p-top-greeting::before {
	background-image: url(../img/sp/top/greeting1.webp);
	height: 19.1875rem;
	width: 10.8125rem;
}

.p-top-greeting::after {
	background-image: url(../img/sp/top/greeting2.webp);
	height: 14.3125rem;
	width: 8.25rem;
}

.p-top-features__swiper.swiper {
	padding: 0rem 0.9375rem;
}

.p-top-features__swiper .swiper-wrapper {
	margin-top: 2.5rem;
}

.p-top-features__num {
	font-size: 2.0625rem;
}

.p-top-features__title {
	font-size: 1.25rem;
}

.p-top-images {
	flex-direction: column;
}

}

@media (max-width: 400px) {

.l-drawer__inner {
	padding: 2.5rem 1.875rem 0 3.75rem;
}

.c-btn.fv-btn {
	padding: 1rem 2.1875rem 1rem 1.25rem;
}

.c-btn.fv-btn::after {
	right: 0.9375rem;
}

.p-drawer__list-wrap {
	row-gap: 0.9375rem;
}

.p-drawer__item-wrap {
	row-gap: 0.9375rem;
}

.p-drawer__item-link .jp {
	font-size: 0.875rem;
}

.p-drawer__item-link .en {
	font-size: 1.5rem;
}

.p-drawer__sns-wrap {
	margin-top: 1.875rem;
}

.p-drawer__sns-link {
	height: 2.1875rem;
	width: 2.1875rem;
}

}

@media (max-width: 350px) {

.p-service__content-title {
	font-size: 1.125rem;
}

}

