/* リキッドレイアウト対応 */

body {
	color: #111;
	font-family: "Noto Sans JP", serif;
	font-weight: 500;
}

.u-mobile {
	display: none;
}

.sm2-none {
	display: block;
}

html {
	font-size: 62.5%;
}

/* pcの電話番号発信対応 */

a[href^="tel:"] {
	pointer-events: none;
}

/* ホバー */

a {
	color: inherit;
	position: relative;
	text-decoration: none;
	top: 0;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

a:hover {
	top: -3px;
}

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

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	line-height: 1.5;
	min-height: 100vh;
	text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	display: block;
	max-width: 100%;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	-webkit-filter: none;
	filter: none;
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

.accordion {
	width: 100%;
}

.accordion__item:not(:first-child) {
	margin-top: 20px;
	margin-top: 2rem;
}

.accordion__title {
	background-color: #F0DC42;
	border-radius: 1rem;
	cursor: pointer;
	padding: 17px 50px 17px 36px;
	padding: 1.7rem 5rem 1.7rem 3.6rem;
	position: relative;
}

.accordion__title::before,
.accordion__title::after {
	background-color: #111;
	content: "";
	height: 3px;
	position: absolute;
	right: 25px;
	right: 2.5rem;
	top: 50%;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	width: 21px;
	width: 2.1rem;
}

.accordion__title::after {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.accordion__title.is-open {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.accordion__title.is-open::after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.accordion__title.is-open::before {
	opacity: 0;
}

.accordion__title-text {
	color: #111;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.444;
}

.accordion__content {
	border: 1px solid #F0DC42;
	border-bottom-left-radius: 10px;
	border-bottom-left-radius: 1rem;
	border-bottom-right-radius: 10px;
	border-bottom-right-radius: 1rem;
	display: none;
	padding: 23px 50px 26px 36px;
	padding: 2.3rem 5rem 2.6rem 3.6rem;
}

.accordion__text {
	color: #111;
	font-size: 18px;
	font-size: 1.8rem;
	letter-spacing: normal;
	line-height: 1.556;
}

.block {
	background: #fff;
	border: 3px solid #F0DC42;
	border-radius: 3rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 200px;
	height: 20rem;
	max-width: 800px;
	max-width: 80rem;
	width: 100%;
}

.block:not(:first-child) {
	margin-top: 40px;
	margin-top: 4rem;
}

.block:nth-child(2) {
	margin-left: 70px;
	margin-left: 7rem;
}

.block:nth-child(3) {
	margin-left: 140px;
	margin-left: 14rem;
}

.block:nth-child(4) {
	margin-left: 210px;
	margin-left: 21rem;
}

.block:nth-child(5) {
	margin-left: 280px;
	margin-left: 28rem;
}

.block:nth-child(6) {
	margin-left: 350px;
	margin-left: 35rem;
}

.block__icon {
	width: 24%;
}

.block__icon img {
	width: 100%;
}

.block__text-block {
	padding: 28px 32px 0;
	padding: 2.8rem 3.2rem 0;
	width: 76%;
}

.block__lead {
	font-size: 25px;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.44;
}

.block__text {
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.56;
	margin-top: 15px;
	margin-top: 1.5rem;
}

.block__text span {
	color: #FF244E;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.56;
}

.breadcrumbs {
	padding-top: 20px;
	padding-top: 2rem;
}

.breadcrumbs.breadcrumbs-gray {
	background-color: #F0F0F0;
	padding-top: 100px;
	padding-top: 10rem;
	position: relative;
	z-index: -3;
}

.breadcrumbs__inner span {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 400;
}

.breadcrumbs__inner span a {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 400;
}

.button {
	background-color: #FF244E;
	border-radius: 9999px;
	color: #fff;
	display: inline-block;
	font-size: 16px;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	line-height: 1.5;
	max-width: 360px;
	max-width: 36rem;
	padding: 13px;
	padding: 1.3rem;
	position: relative;
	text-align: center;
	width: 100%;
}

.button::after {
	background-image: url(../img/button-arrow.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 22px;
	height: 2.2rem;
	position: absolute;
	right: 13px;
	right: 1.3rem;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	width: 22px;
	width: 2.2rem;
}

.button.button--small {
	max-width: 240px;
	max-width: 24rem;
}

.card {
	gap: 20px;
	gap: 2rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #F0DC42;
	border-radius: 2rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 40px 15px 34px;
	padding: 4rem 1.5rem 3.4rem;
}

.card__img img {
	margin-left: auto;
	margin-right: auto;
	max-width: 250px;
	max-width: 25rem;
}

.card__img01 img {
	width: 75%;
}

.card__img02 img {
	width: 84%;
}

.card__img03 img {
	width: 86%;
}

.card__img04 img {
	width: 48%;
}

.card__title {
	background-color: #F7EA8B;
	border-radius: 1rem;
	font-size: 30px;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
	margin-top: 14px;
	margin-top: 1.4rem;
	padding: 15px;
	padding: 1.5rem;
	text-align: center;
	width: 100%;
}

.card__text {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.56;
	margin-top: auto;
	text-align: center;
}

.card__price-block {
	gap: 8px;
	gap: 0.8rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-top: 1px solid #111;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: auto;
	padding-top: 17px;
	padding-top: 1.7rem;
	width: 100%;
}

.card__left {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #111;
	border-radius: 50%;
	color: #fff;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	height: 50px;
	height: 5rem;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 50px;
	width: 5rem;
}

.card__price {
	font-family: "Montserrat", serif;
	font-size: 35px;
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1;
}

.card__price-small {
	font-family: "Noto Sans JP", serif;
	font-size: 25px;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1;
}

.card__button-block {
	text-align: center;
	width: 100%;
}

.card02 {
	gap: 20px;
	gap: 2rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #F0DC42;
	border-radius: 2rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 45px 15px 25px;
	padding: 4.5rem 1.5rem 2.5rem;
	position: relative;
}

.card02 span {
	color: rgba(255, 255, 255, .35);
	font-family: "Montserrat", serif;
	font-size: 160px;
	font-size: 16rem;
	font-weight: 700;
	line-height: 1;
	position: absolute;
	right: 0;
	top: -30px;
	top: -3rem;
}

.card02__img01 {
	width: 56%;
}

.card02__img02 {
	width: 100%;
}

.card02__img03 {
	width: 54%;
}

.card02__title {
	background-color: #F7EA8B;
	border-radius: 1rem;
	font-size: 30px;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
	padding: 15px;
	padding: 1.5rem;
	text-align: center;
	width: 100%;
}

.card02__text {
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 1.55;
}

.card03 {
	background: #fff;
	border-radius: 2rem;
	padding: 20px 40px 35px;
	padding: 2rem 4rem 3.5rem;
}

.card03__flex {
	gap: 33px;
	gap: 3.3rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.card03__left {
	width: calc(100% - 22.3rem);
}

.card03__title-flex {
	gap: 85px;
	gap: 8.5rem;
	border-bottom: 1px solid #111;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-bottom: 17px;
	padding-bottom: 1.7rem;
	padding-top: 50px;
	padding-top: 5rem;
	position: relative;
}

.card03__title-flex::before {
	background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(50%, transparent), color-stop(50%, #111), to(#111));
	background: linear-gradient(90deg, transparent 0%, transparent 50%, #111 50%, #111 100%);
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	top: 22px;
	top: 2.2rem;
	width: 100%;
}

.card03__number {
	color: #111;
	display: inline-block;
	font-family: "Montserrat", serif;
	font-size: 30px;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
	position: relative;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
	z-index: 2;
}

.card03__number span {
	color: #F0DC42;
	font-family: "Montserrat", serif;
	font-size: 100px;
	font-size: 10rem;
	font-weight: 700;
	line-height: 1;
	position: absolute;
	right: -80px;
	right: -8rem;
	top: -50px;
	top: -5rem;
	z-index: -1;
}

.card03__title {
	font-size: 17px;
	font-size: 1.7rem;
	font-weight: 500;
	line-height: 1.5;
}

.card03__title span {
	font-size: 30px;
	font-size: 3rem;
	font-weight: 700;
}

.card03__sub-title {
	background-color: #111;
	border-radius: 9999px;
	color: #fff;
	display: inline-block;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1;
	margin-top: 22px;
	margin-top: 2.2rem;
	padding: 5px 46px;
	padding: 0.5rem 4.6rem;
}

.card03__text {
	color: #111;
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 1.555;
	margin-top: 12px;
	margin-top: 1.2rem;
}

.card03__effect {
	background-color: #29A7A7;
	border-radius: 1rem;
	color: #fff;
	margin-top: 12px;
	margin-top: 1.2rem;
	padding: 24px 12px 20px;
	padding: 2.4rem 1.2rem 2rem;
}

.card03__effect-title {
	color: #fff;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.555;
}

.card03__effect-title span {
	color: #fff;
	font-size: 26px;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1;
}

.card03__effect-text {
	color: #fff;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.562;
	margin-top: 20px;
	margin-top: 2rem;
}

.card03__img {
	width: 190px;
	width: 19rem;
}

.card03__button-block {
	margin-top: 34px;
	margin-top: 3.4rem;
	text-align: center;
}

.case {
	margin-top: -300px;
	margin-top: -30rem;
	padding-bottom: 88px;
	padding-bottom: 8.8rem;
	padding-top: 426px;
	padding-top: 42.6rem;
	position: relative;
}

.case::after {
	background-color: #F0F0F0;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -4;
}

.case__flex {
	gap: 30px;
	gap: 3rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}

.case__left {
	width: 240px;
	width: 24rem;
}

.case__sticky {
	background-color: #F0F0F0;
	left: 0;
	position: sticky;
	top: 140px;
	top: 14rem;
	z-index: 2;
}

.case__modify {
	background-color: #F0DC42;
	border-radius: 9999px;
	height: 14px;
	height: 1.4rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: 60px;
	margin-top: 6rem;
	position: relative;
	width: 14px;
	width: 1.4rem;
	z-index: -3;
}

.case__modify::after {
	background-color: #F0DC42;
	content: "";
	height: 200px;
	height: 20rem;
	left: 50%;
	position: absolute;
	top: 150px;
	top: 15rem;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	width: 2px;
}

.case__button-block {
	margin-top: 80px;
	margin-top: 8rem;
}

.case__cards {
	width: calc(100% - 27rem);
}

.case__card:not(:first-child) {
	margin-top: 30px;
	margin-top: 3rem;
}

.caseStudy {
	margin-top: 43px;
	margin-top: 4.3rem;
}

.caseStudy__cards {
	margin-left: auto;
	margin-right: auto;
	max-width: 890px;
	max-width: 89rem;
	width: 100%;
}

.caseStudy__card + .caseStudy__card {
	margin-top: 50px;
	margin-top: 5rem;
}

.caseStudy__button-block {
	margin-top: 30px;
	margin-top: 3rem;
	text-align: center;
}

.caseStudy__button {
	background-color: #FF244E;
	border-radius: 9999px;
	color: #fff;
	display: inline-block;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
	padding: 17px 53px;
	padding: 1.7rem 5.3rem;
}

.choose {
	margin-top: 50px;
	margin-top: 5rem;
	overflow-x: clip;
	position: relative;
}

.choose::after {
	background: url(../img/choose-bg.png) no-repeat center/contain;
	background-size: 100% 100%;
	content: "";
	height: 700px;
	height: 70rem;
	left: 50%;
	position: absolute;
	top: 0;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	width: 110%;
	z-index: -2;
}

.choose__cards {
	gap: 20px;
	gap: 2rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 60px;
	margin-top: 6rem;
	overflow-x: clip;
}

.column {
	background: #F0F0F0;
	margin-top: -100px;
	margin-top: -10rem;
	padding-bottom: 110px;
	padding-bottom: 11rem;
	padding-top: 180px;
	padding-top: 18rem;
	position: relative;
	z-index: 1;
}

.column__flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.column__right {
	margin-left: auto;
	max-width: 770px;
	max-width: 77rem;
}

.column__title .section-title__sub {
	font-family: "Noto Sans JP", serif;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
}

.column__category-block {
	gap: 20px;
	gap: 2rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.column__category {
	background: #fff;
	border-radius: 9999px;
	color: #111;
	display: inline-block;
	font-size: 20px;
	font-size: 2rem;
	line-height: 1;
	padding: 15px 60px;
	padding: 1.5rem 6rem;
	text-align: center;
}

.column__button-block {
	margin-top: 40px;
	margin-top: 4rem;
	text-align: right;
}

.column__block {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-top: 56px;
	margin-top: 5.6rem;
	width: 100vw;
}

.column__content {
	aspect-ratio: 500/328;
	border-radius: 1rem;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.column__content:hover {
	opacity: 0.7;
	top: 0;
}

.column__content img {
	-o-object-fit: cover;
	aspect-ratio: 500/328;
	border-radius: 1rem;
	display: block;
	height: 100%;
	max-width: 100%;
	object-fit: cover;
	width: 100%;
}

.company {
	margin-top: 60px;
	margin-top: 6rem;
	padding-bottom: 63px;
	padding-bottom: 6.3rem;
}

.company__content {
	border-bottom: 1px solid #F0F0F0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-bottom: 12px;
	padding-bottom: 1.2rem;
}

.company__content:not(:first-child) {
	padding-top: 12px;
	padding-top: 1.2rem;
}

.company__content dt {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 2.5;
	text-align: center;
	width: 22%;
}

.company__content dd {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 2.5;
	width: 78%;
}

.company__address {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 52px;
	margin-top: 5.2rem;
}

.company__office-title {
	color: #F0DC42;
	font-family: "Montserrat", serif;
	font-size: 45px;
	font-size: 4.5rem;
	font-weight: 600;
	line-height: 1;
}

.company__office-text {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1.875;
	margin-top: 195px;
	margin-top: 19.5rem;
}

.company__address-map {
	aspect-ratio: 2/1;
	max-width: 820px;
	max-width: 82rem;
	width: 70%;
}

.company__address-map iframe {
	-o-object-fit: cover;
	aspect-ratio: 2/1;
	display: block;
	height: 100%;
	max-width: 100%;
	object-fit: cover;
	width: 100%;
}

.cta {
	background-color: #FFFCE5;
	padding-bottom: 78px;
	padding-bottom: 7.8rem;
	padding-top: 60px;
	padding-top: 6rem;
	text-align: center;
}

.cta__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
	max-width: 120rem;
	padding-left: 25px;
	padding-left: 2.5rem;
	padding-right: 25px;
	padding-right: 2.5rem;
	width: 100%;
}

.cta__lead {
	font-size: 25px;
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.6;
}

.cta__button-block {
	margin-top: 36px;
	margin-top: 3.6rem;
	text-align: center;
}

.cta__button {
	background-color: #FF244E;
	border-radius: 9999px;
	color: #fff;
	display: inline-block;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
	padding: 17px 53px;
	padding: 1.7rem 5.3rem;
}

.cta02 {
	background-color: #29A7A7;
	border-bottom-left-radius: 100px;
	border-bottom-left-radius: 10rem;
	border-bottom-right-radius: 100px;
	border-bottom-right-radius: 10rem;
	padding-bottom: 33px;
	padding-bottom: 3.3rem;
	padding-top: 74px;
	padding-top: 7.4rem;
	position: relative;
	z-index: 1;
}

.cta02__button-block {
	text-align: center;
}

.cta02__button span {
	background-color: #F0DC42;
	border-radius: 5rem;
	display: block;
	font-size: 45px;
	font-size: 4.5rem;
	font-weight: 900;
	line-height: 1.444;
	padding: 30px 20px 55px;
	padding: 3rem 2rem 5.5rem;
}

.cta02__button img {
	margin-left: auto;
	margin-right: auto;
	margin-top: -45px;
	margin-top: -4.5rem;
	max-width: 442px;
	max-width: 44.2rem;
	width: 100%;
}

.drawer-menu {
	background-color: #FFFCE5;
	display: none;
	height: 100vh;
	left: -20px;
	left: -2rem;
	position: absolute;
	top: -20px;
	top: -2rem;
	width: 102vw;
	z-index: 5000;
}

.drawer-menu__inner {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: inherit;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0 20px;
	padding: 0 2rem;
	width: 100%;
}

.drawer-menu__items {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
}

.drawer-menu__item {
	display: inline-block;
	width: 100%;
}

.drawer-menu__item:not(:first-child) {
	margin-top: 17px;
	margin-top: 1.7rem;
}

.drawer-menu__link {
	border-bottom: 1px solid #F0F0F0;
	color: #111;
	display: inline-block;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 500;
	padding-bottom: 17px;
	padding-bottom: 1.7rem;
	text-align: center;
	width: 100%;
}

.drawer-menu__link.drawer-menu__link--contact {
	background-color: #FF244E;
	border-radius: 9999px;
	bottom: none;
	color: #fff;
	padding: 14px 0;
	padding: 1.4rem 0;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.faq {
	margin-top: 60px;
	margin-top: 6rem;
}

.faq__accordion {
	margin-left: auto;
	margin-top: 50px;
	margin-top: 5rem;
	max-width: 1000px;
	max-width: 100rem;
	width: 100%;
}

.faq__button-block {
	margin-top: 56px;
	margin-top: 5.6rem;
	text-align: center;
}

.faq__button {
	display: inline-block;
}

.faq__button img {
	max-width: 442px;
	max-width: 44.2rem;
	quotes: 100%;
}

.footer {
	margin-top: 74px;
	margin-top: 7.4rem;
}

.footer__inner {
	position: relative;
}

.footer__page-top-button-block {
	position: absolute;
	right: 20px;
	right: 2rem;
	top: 0;
}

.footer__page-top-button {
	gap: 12px;
	gap: 1.2rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.footer__page-top-button img {
	width: 12px;
	width: 1.2rem;
}

.footer__page-top-button span {
	color: #111;
	font-family: "Lato", serif;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: 0.08em;
	line-height: 1;
}

.footer__flex {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 84px;
	padding-top: 8.4rem;
}

.footer__name {
	width: 358px;
	width: 35.8rem;
}

.footer__text-large {
	font-size: 20px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	margin-top: 60px;
	margin-top: 6rem;
}

.footer__address {
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.667;
	margin-top: 30px;
	margin-top: 3rem;
}

.footer__right {
	margin-left: auto;
}

.footer__button-block {
	text-align: right;
}

.footer__button {
	background: #FF244E;
	border-radius: 9999px;
	color: #fff;
	display: inline-block;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
	padding: 17px 53px;
	padding: 1.7rem 5.3rem;
	text-align: center;
}

.footer__nav {
	margin-top: 94px;
	margin-top: 9.4rem;
	max-width: 382px;
	max-width: 38.2rem;
	width: 100%;
}

.footer__items {
	gap: 26px;
	gap: 2.6rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.footer__link {
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.428;
	padding-left: 30px;
	padding-left: 3rem;
	position: relative;
}

.footer__link::before {
	background: url(../img/footer_link-icon.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 22px;
	height: 2.2rem;
	left: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	width: 22px;
	width: 2.2rem;
}

.footer__site-block {
	border: 1px solid #707070;
	border-radius: 3rem;
	margin-top: 45px;
	margin-top: 4.5rem;
	padding: 26px 10px;
	padding: 2.6rem 1rem;
	text-align: center;
}

.footer__site-lead {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}

.footer__site-items {
	gap: 8px 30px;
	gap: 0.8rem 3rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
	margin-top: 3rem;
	max-width: 816px;
	max-width: 81.6rem;
	width: 100%;
}

.footer__site-item {
	position: relative;
}

.footer__site-item::after {
	content: "|";
	position: absolute;
	right: -15px;
	right: -1.5rem;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.footer__site-item:last-of-type::after,
.footer__site-item:nth-of-type(4):after {
	display: none;
}

.footer__site-link {
	font-size: 14px;
	font-size: 1.4rem;
}

.footer__last-link-block {
	gap: 30px;
	gap: 3rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	margin-top: 30px;
	margin-top: 3rem;
}

.footer__last-link {
	font-size: 14px;
	font-size: 1.4rem;
	position: relative;
}

.footer__last-link::after {
	content: "|";
	position: absolute;
	right: -15px;
	right: -1.5rem;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.footer__last-link:last-of-type::after {
	display: none;
}

.footer__copyright {
	background-color: #111;
	margin-top: 50px;
	margin-top: 5rem;
	padding: 40px;
	padding: 4rem;
	text-align: center;
}

.footer__copyright small {
	color: #fff;
	font-family: "Lato", serif;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: 0.08em;
	text-align: center;
}

.form {
	letter-spacing: 0.05em;
}

.form__item + .form__item {
	margin-top: 30px;
	margin-top: 3rem;
}

.form__item dt {
	color: #111;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1;
}

.form__item dt span {
	background-color: #DE5F5F;
	color: white;
	display: block;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1;
	margin-top: 5px;
	margin-top: 0.5rem;
	max-width: 40px;
	max-width: 4rem;
	padding: 5px 0;
	padding: 0.5rem 0;
	text-align: center;
}

.form__item dt span.p-form__tel-info {
	color: #111;
	font-weight: 400;
	margin-left: 0;
}

.form__radio {
	margin-top: 15px;
	margin-top: 1.5rem;
}

.form__radio label {
	display: inline-block;
}

.form__radio label:not(:first-child) {
	margin-top: 5px;
	margin-top: 0.5rem;
}

.form__privacy-policy {
	margin-top: 40px;
	margin-top: 4rem;
	text-align: center;
}

.form__underline {
	text-decoration: underline;
}

.form__btn {
	margin-top: 50px;
	margin-top: 5rem;
	text-align: center;
}

.form__button::after {
	background-image: url(../img/button-arrow.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 22px;
	height: 2.2rem;
	position: absolute;
	right: 13px;
	right: 1.3rem;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	width: 22px;
	width: 2.2rem;
}

.form__submit {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	text-align: center;
	width: 240px;
	width: 24rem;
}

.form__submit::after {
	background-image: url(../img/button-arrow.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 22px;
	height: 2.2rem;
	position: absolute;
	right: 13px;
	right: 1.3rem;
	top: 60%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	width: 22px;
	width: 2.2rem;
}

.wpcf7-spinner {
	display: none;
}

/*デフォルト色の指定*/

/*サイズ等の指定*/

/*ボタン系の指定*/

/*ラジオボタンの指定*/

/*チェックボックスの指定*/

/*テキストエリアの指定*/

[type=text],
[type=search],
[type=tel],
[type=url],
[type=email],
[type=password],
[type=date],
textarea {
	background: #fff;
	background-image: none; /*↓リセットCSS */
	border: none;
	border: 1px solid #707070;
	border-radius: 0;
	border-radius: 1rem;
	font-family: inherit;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 400; /*↓カスタム */
	margin-top: 10px;
	margin-top: 1rem;
	padding: 18px 18px;
	padding: 1.8rem 1.8rem;
	width: 100%; /*↓↓↓↓不要ならコメントアウト or 削除 */ /*↓↓選択されているときの色*/
}

[type=text]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=url]:focus,
[type=email]:focus,
[type=password]:focus,
[type=date]:focus,
textarea:focus {
	border: 1px solid #F0DC42;
}

[type=tel] {
	width: 100%;
}

button,
[type=button],
[type=submit] {
	background: #FF244E;
	background-image: none;
	border: none;
	border-radius: 0;
	border-radius: 9999px;
	color: white;
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1; /*↓リセットCSS */
	margin: 0; /*↓カスタム */
	padding: 18px 92px;
	padding: 1.8rem 9.2rem;
	text-decoration: none;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
	width: auto;
}

[type=radio] {
	display: none;
}

[type=radio] + span {
	color: #111;
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1;
	margin: 0 35px 0 0;
	margin: 0 3.5rem 0 0;
	padding: 0 0 0 22px;
	padding: 0 0 0 2.2rem;
	position: relative;
}

[type=radio] + span::before {
	background: #fff;
	border: 1px solid #707070;
	border-radius: 50%;
	content: "";
	display: block;
	height: 18px;
	height: 1.8rem;
	left: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 18px;
	width: 1.8rem;
}

[type=radio] + span::after {
	opacity: 0;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
}

[type=radio]:checked + span::after {
	background: #FF244E;
	border-radius: 50%;
	content: "";
	display: block;
	height: 12px;
	height: 1.2rem;
	left: 3px;
	left: 0.3rem;
	opacity: 1;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 12px;
	width: 1.2rem;
}

[type=checkbox] {
	display: none;
}

[type=checkbox] + span {
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1;
	margin: 0 20px 0 0;
	margin: 0 2rem 0 0;
	padding: 0 0 0 21px;
	padding: 0 0 0 2.1rem;
	position: relative;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
}

[type=checkbox] + span::before {
	background: #fff;
	border: 1px solid #111;
	content: "";
	display: block;
	height: 16px;
	height: 1.6rem;
	left: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 16px;
	width: 1.6rem;
}

[type=checkbox] + span::after {
	opacity: 0;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
}

[type=checkbox]:checked + span::after {
	border-bottom: 3px solid #FF244E;
	border-left: 3px solid #FF244E;
	content: "";
	display: block;
	height: 8px;
	height: 0.8rem;
	left: 0;
	margin-left: 0.1em;
	margin-top: -0.1em;
	opacity: 1;
	position: absolute;
	top: 50%; /*チェックマークじゃない場合は以下を変更する*/
	-webkit-transform: translateY(-50%) rotate(-45deg);
	transform: translateY(-50%) rotate(-45deg);
	width: 14.399px;
	width: 1.44rem;
}

select { /*↓デフォルトのアイコンを消す場合はコメントアウト（noneにする）*/
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #fff;
	border: none;
	border: 1px solid #707070; /*↓リセットCSS */
	border-radius: 0;
	border-radius: 1rem;
	color: inherit;
	color: #111;
	cursor: pointer;
	font-family: inherit;
	font-size: 14px;
	font-size: 1.4rem; /*↓カスタム */
	margin-top: 10px;
	margin-top: 1rem;
	padding: 18px 18px;
	padding: 1.8rem 1.8rem;
	width: 100%; /*↓デフォルトではないアイコンを使う場合は入力する*/
}

select:focus {
	border: 1px solid #F0DC42;
}

[type=date] { /*↓デフォルトのアイコンを消す場合はコメントアウト（noneにする）*/
	-webkit-appearance: auto;
	-moz-appearance: auto;
	appearance: auto;
	position: relative; /*↓デフォルトではないアイコンを使う場合は入力する*/
}

[type=date]:focus {
	border-color: 1px solid #F0DC42;
}

input[type=date]::-webkit-calendar-picker-indicator {
	height: 100%;
	opacity: 0;
	position: absolute;
	width: 100%;
}

textarea {
	height: 180px;
	height: 18rem;
	max-width: 600px;
	max-width: 60rem;
	resize: none;
	width: 100%;
}

.fv {
	background: #FFFCE5;
	padding-bottom: 164px;
	padding-bottom: 16.4rem;
	padding-top: 134px;
	padding-top: 13.4rem;
	position: relative;
	z-index: 1;
}

.fv__title-block {
	margin-top: 37px;
	margin-top: 3.7rem;
}

.fv__text-items {
	gap: 30px;
	gap: 3rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.fv__text-item {
	background-color: #F0DC42;
	border-radius: 0.5rem;
	color: #111;
	font-size: 26px;
	font-size: 2.6rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
	padding: 10px 26px;
	padding: 1rem 2.6rem;
}

.fv__title {
	font-size: 45px;
	font-size: 4.5rem;
	font-weight: 700;
	line-height: 1.444;
	text-align: center;
}

.fv__text {
	display: inline-block;
	font-size: 30px;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.5;
	margin-right: 10px;
	margin-right: 1rem;
}

.fv__text-number {
	font-family: "Montserrat", serif;
	font-size: 50px;
	font-size: 5rem;
	line-height: 1.2;
}

.fv__text-small {
	font-size: 35px;
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.428;
}

.underline {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(45%, #F0DC42));
	background: linear-gradient(transparent 60%, #F0DC42 45%);
	display: inline-block;
}

.fv__button-block {
	margin-top: 10px;
	margin-top: 1rem;
	text-align: center;
}

.fv__button img {
	margin-left: auto;
	margin-right: auto;
	max-width: 442px;
	max-width: 44.2rem;
	width: 100%;
}

.fv__loop {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-top: 30px;
	margin-top: 3rem;
	width: 100vw;
}

.hamburger {
	cursor: pointer;
	height: 16px;
	height: 1.6rem;
	position: fixed;
	right: 20px;
	right: 2rem;
	top: 20px;
	top: 2rem;
	width: 25px;
	width: 2.5rem;
	z-index: 9999;
}

.hamburger.is-active {
	right: 20px;
	right: 2rem;
	top: 12px;
	top: 1.2rem;
}

.hamburger span {
	background-color: #111;
	display: inline-block;
	height: 2px;
	left: 0;
	position: absolute;
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
	width: 100%;
}

.hamburger span:nth-child(1) {
	top: 0;
}

.hamburger span:nth-child(2) {
	top: 8px;
	top: 0.8rem;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.hamburger span:nth-child(3) {
	top: 16px;
	top: 1.6rem;
}

.hamburger.is-active span:nth-child(1) {
	top: 15px;
	top: 1.5rem;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.hamburger.is-active span:nth-child(2) {
	opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
	top: 15px;
	top: 1.5rem;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

.header {
	background-color: #fff;
	border-radius: 9999px;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	height: 77px;
	height: 7.7rem;
	left: 50%;
	max-width: 1232px;
	max-width: 123.2rem;
	position: fixed;
	top: 20px;
	top: 2rem;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	width: 94%;
	z-index: 1000;
}

.header__inner {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: inherit;
	padding-left: 50px;
	padding-left: 5rem;
	padding-right: 27px;
	padding-right: 2.7rem;
}

.header__name {
	margin-right: auto;
}

.header__logo {
	width: 160px;
	width: 16rem;
}

.header__nav {
	height: inherit;
}

.header__items {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: inherit;
}

.header__item {
	height: inherit;
}

.header__item:not(:first-child) {
	margin-left: 42px;
	margin-left: 4.2rem;
}

.header__item:last-child {
	height: auto;
	margin-left: 32px;
	margin-left: 3.2rem;
}

.header__link {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #111;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 500;
	height: inherit;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	line-height: 1;
}

.header__link.header__link--contact {
	background-color: #FF244E;
	border-radius: 9999px;
	color: #fff;
	font-size: 16px;
	font-size: 1.6rem;
	height: auto;
	line-height: 1;
	padding: 17px 56px;
	padding: 1.7rem 5.6rem;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.header__button-block {
	cursor: pointer;
	height: 16px;
	height: 1.6rem;
	position: fixed;
	right: 60px;
	right: 6rem;
	top: 8px;
	top: 0.8rem;
	width: 200px;
	width: 20rem;
	z-index: 3000;
}

.inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1230px;
	padding-left: 25px;
	padding-right: 25px;
	width: 100%;
}

.inquiry {
	padding-bottom: 90px;
	padding-bottom: 9rem;
	padding-top: 63px;
	padding-top: 6.3rem;
	position: relative;
	z-index: 2;
}

.inquiry::before {
	background-color: #F0F0F0;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.inquiry__lead {
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.667;
	text-align: center;
}

.inquiry-contact__content {
	margin-left: auto;
	margin-right: auto;
	margin-top: 70px;
	margin-top: 7rem;
	max-width: 600px;
	max-width: 60rem;
	width: 100%;
}

.item {
	background-color: #F0DC42;
	border-radius: 2rem;
	padding: 33px 40px 43px;
	padding: 3.3rem 4rem 4.3rem;
	position: relative;
}

.item__img {
	position: absolute;
	right: 16px;
	right: 1.6rem;
	top: -20px;
	top: -2rem;
	width: 200px;
	width: 20rem;
}

.item__img img {
	width: 100%;
}

.item__title {
	background-color: #fff;
	font-size: 30px;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
	padding: 8px;
	padding: 0.8rem;
	text-align: center;
	width: 100%;
}

.item__lead {
	font-size: 20px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	margin-top: 20px;
	margin-top: 2rem;
	text-align: center;
}

.item__contents {
	gap: 23px;
	gap: 2.3rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 27px;
	margin-top: 2.7rem;
}

.item__price-block {
	gap: 8px;
	gap: 0.8rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 38px;
	margin-top: 3.8rem;
}

.item__left {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #111;
	border-radius: 50%;
	color: #fff;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	font-size: 25px;
	font-size: 2.5rem;
	font-weight: 700;
	height: 78px;
	height: 7.8rem;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 78px;
	width: 7.8rem;
}

.item__price {
	font-family: "Montserrat", serif;
	font-size: 54px;
	font-size: 5.4rem;
	font-weight: 700;
	line-height: 1;
}

.item__price-medium {
	font-family: "Noto Sans JP", serif;
	font-size: 38px;
	font-size: 3.8rem;
	font-weight: 700;
	line-height: 1;
}

.item__price-small {
	font-family: "Noto Sans JP", serif;
	font-size: 21px;
	font-size: 2.1rem;
	font-weight: 700;
	line-height: 1;
}

.item__button-block {
	bottom: 54px;
	bottom: 5.4rem;
	position: absolute;
	right: 40px;
	right: 4rem;
	width: 240px;
	width: 24rem;
}

.loop {
	overflow: hidden;
}

.loop__box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100vw;
}

.loop__box img {
	min-width: 100vw;
}

.loop__box img:first-child {
	-webkit-animation: loop 50s -25s linear infinite;
	animation: loop 50s -25s linear infinite;
	padding-right: 22px;
	padding-right: 2.2rem;
}

.loop__box img:last-child {
	-webkit-animation: loop2 50s linear infinite;
	animation: loop2 50s linear infinite;
	padding-right: 22px;
	padding-right: 2.2rem;
}

.Page {
	margin-top: 157px;
	margin-top: 15.7rem;
}

.Page.Page-circle {
	background-color: #F0F0F0;
	overflow-x: clip;
	position: relative;
	z-index: 2;
}

.Page.Page-circle::after {
	background: url(../img/choose-bg.png) no-repeat center/contain;
	background-size: 100% 100%;
	content: "";
	height: 700px;
	height: 70rem;
	left: 50%;
	position: absolute;
	top: -500px;
	top: -50rem;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	width: 110%;
	z-index: -3;
}

.pagePrice {
	margin-top: 65px;
	margin-top: 6.5rem;
}

.pagePrice__item + .pagePrice__item {
	margin-top: 60px;
	margin-top: 6rem;
}

.pageStep {
	height: auto;
	margin-top: 154px;
	margin-top: 15.4rem;
	padding-bottom: 75px;
	padding-bottom: 7.5rem;
	position: relative;
	width: 100%;
	z-index: 2;
}

.pageStep::before {
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(3%, #fff), color-stop(3%, #FFFCE5), to(#FFFCE5));
	background: linear-gradient(180deg, #fff 0%, #fff 3%, #FFFCE5 3%, #FFFCE5 100%);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.pageStep::after {
	bottom: -45px;
	bottom: -4.5rem;
	color: #FFFCE5;
	content: "▼";
	font-size: 70px;
	font-size: 7rem;
	left: 50%;
	line-height: 1;
	position: absolute;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	z-index: 3;
}

.pageStep__title {
	text-align: center;
}

.pageStep__title--sub {
	color: #F0DC42;
	font-family: "Montserrat", serif;
	font-size: 80px;
	font-size: 8rem;
	font-weight: 600;
	line-height: 1;
}

.pageStep__title--main {
	font-size: 25px;
	font-size: 2.5rem;
	font-weight: 1;
	font-weight: 700;
	margin-top: 6px;
	margin-top: 0.6rem;
}

.pageStep__blocks {
	margin-top: 75px;
	margin-top: 7.5rem;
	overflow-x: clip;
}

.price {
	margin-top: 60px;
	margin-top: 6rem;
}

.price__block {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-top: 55px;
	margin-top: 5.5rem;
	width: 100vw;
}

.price__button-block {
	margin-top: 50px;
	margin-top: 5rem;
	text-align: center;
}

.privacy {
	margin-top: 56px;
	margin-top: 5.6rem;
}

.privacy__content + .privacy__content {
	margin-top: 50px;
	margin-top: 5rem;
}

.privacy__title {
	border-bottom: 1px solid #F0F0F0;
	font-size: 20px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	padding-bottom: 20px;
	padding-bottom: 2rem;
}

.privacy__text {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.6;
	margin-top: 20px;
	margin-top: 2rem;
}

.privacy__item {
	margin-top: 36px;
	margin-top: 3.6rem;
}

.privacy__text-bold {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.6;
}

.privacy__text-indent {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.6;
	padding-left: 15px;
	padding-left: 1.5rem;
}

.privacy__right {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.6;
	margin-top: 50px;
	margin-top: 5rem;
	text-align: right;
}

.privacy__info {
	margin-top: 86px;
	margin-top: 8.6rem;
	text-align: center;
}

.privacy__info-item + .privacy__info-item {
	margin-top: 60px;
	margin-top: 6rem;
}

.privacy__info-lead {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.875;
}

.privacy__info-text {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.875;
}

.privacy__info-button-block {
	margin-top: 50px;
	margin-top: 5rem;
	text-align: center;
}

.privacy__info-button {
	background-color: #111;
	border-radius: 9999px;
	color: #fff;
	display: inline-block;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
	padding: 17px 70px;
	padding: 1.7rem 7rem;
}

.section-page-title {
	text-align: center;
}

.section-page-title__main {
	font-size: 25px;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1;
	padding-top: 8px;
	padding-top: 0.8rem;
}

.section-page-title__sub {
	color: #F0DC42;
	font-family: "Montserrat", serif;
	font-size: 80px;
	font-size: 8rem;
	font-weight: 600;
	line-height: 1;
}

.section-title {
	position: relative;
}

.section-title::before {
	background-image: url(../img/top_head-icon.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 152px;
	height: 15.2rem;
	left: 0;
	position: absolute;
	top: 0;
	width: 152px;
	width: 15.2rem;
	z-index: -1;
}

.section-title__main {
	font-size: 45px;
	font-size: 4.5rem;
	font-weight: 700;
	line-height: 1;
	margin-left: 46px;
	margin-left: 4.6rem;
	padding-top: 50px;
	padding-top: 5rem;
}

.section-title__main span {
	display: inline-block;
}

.section-title__sub {
	font-family: "Montserrat", serif;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	margin-left: 46px;
	margin-left: 4.6rem;
	margin-top: 12px;
	margin-top: 1.2rem;
}

.step {
	margin-top: 60px;
	margin-top: 6rem;
	padding-bottom: 60px;
	padding-bottom: 6rem;
	position: relative;
}

.step::after {
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(10%, #fff), color-stop(10%, #FFFCE5), to(#FFFCE5));
	background: linear-gradient(180deg, #fff 0%, #fff 10%, #FFFCE5 10%, #FFFCE5 100%);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: -2;
}

.step__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
	max-width: 120rem;
	overflow-x: clip;
	padding-left: 25px;
	padding-left: 2.5rem;
	padding-right: 25px;
	padding-right: 2.5rem;
	width: 100%;
}

.step__title {
	margin-left: 25px;
	margin-left: 2.5rem;
}

.step__items {
	gap: 50px;
	gap: 5rem;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	margin-top: 75px;
	margin-top: 7.5rem;
}

.step__item {
	position: relative;
	text-align: center;
}

.step__item::after {
	background: url(../img/step-arrow.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 25px;
	height: 2.5rem;
	position: absolute;
	right: -37px;
	right: -3.7rem;
	top: 40%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	width: 25px;
	width: 2.5rem;
}

.step__item:last-of-type::after {
	display: none;
}

.step__item span {
	font-family: "Montserrat", serif;
	font-size: 35px;
	font-size: 3.5rem;
	font-weight: 700;
	left: 50%;
	line-height: 1;
	position: absolute;
	top: -12px;
	top: -1.2rem;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}

.step__text {
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.444;
	margin-top: 13px;
	margin-top: 1.3rem;
}

.step__button-block {
	margin-top: 50px;
	margin-top: 5rem;
	text-align: center;
}

.thanks {
	background-color: #F0F0F0;
	padding-bottom: 50px;
	padding-bottom: 5rem;
	padding-top: 60px;
	padding-top: 6rem;
	text-align: center;
}

.thanks__lead {
	font-size: 22px;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.818;
	text-align: center;
}

.thanks__text {
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.875;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	margin-top: 5rem;
	max-width: 800px;
	max-width: 80rem;
	text-align: center;
	width: 100%;
}

.thanks__contents {
	border: 1px solid #707070;
	border-radius: 1rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: 60px;
	margin-top: 6rem;
	max-width: 800px;
	max-width: 80rem;
	padding: 30px 10px 40px;
	padding: 3rem 1rem 4rem;
	width: 100%;
}

.thanks__content-title {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}

.thanks__text-small {
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.857;
	margin-top: 27px;
	margin-top: 2.7rem;
	text-align: center;
}

.worries {
	background: #29A7A7;
	border-top-left-radius: 100px;
	border-top-left-radius: 10rem;
	border-top-right-radius: 100px;
	border-top-right-radius: 10rem;
	margin-top: -100px;
	margin-top: -10rem;
	padding-bottom: 30px;
	padding-bottom: 3rem;
	padding-top: 50px;
	padding-top: 5rem;
	position: relative;
	z-index: 2;
}

.worries__flex {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	overflow-x: clip;
}

.worries__left {
	color: #fff;
	font-size: 30px;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.5;
	position: relative;
	width: 50%;
}

.worries__left::after {
	color: #3BB7B7;
	content: "?";
	font-family: "Montserrat", serif;
	font-size: 300px;
	font-size: 30rem;
	font-weight: 700;
	line-height: 1;
	position: absolute;
	right: 15%;
	top: -90px;
	top: -9rem;
	z-index: -1;
}

.worries__right {
	width: 50%;
}

.worries__item {
	color: #fff;
	font-size: 22px;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 2.272;
	padding-left: 40px;
	padding-left: 4rem;
	position: relative;
}

.worries__item::before {
	background-image: url(../img/top_check-icon.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 26px;
	height: 2.6rem;
	left: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	width: 28px;
	width: 2.8rem;
}

.worries__button-block {
	margin-top: 48px;
	margin-top: 4.8rem;
	text-align: center;
}

.worries__button span {
	background-color: #F0DC42;
	border-radius: 5rem;
	display: block;
	font-size: 45px;
	font-size: 4.5rem;
	font-weight: 900;
	line-height: 1.444;
	padding: 30px 20px 55px;
	padding: 3rem 2rem 5.5rem;
}

.worries__button img {
	margin-left: auto;
	margin-right: auto;
	margin-top: -45px;
	margin-top: -4.5rem;
	max-width: 442px;
	max-width: 44.2rem;
	width: 100%;
}

.wp-pagenavi {
	gap: 20px;
	gap: 2rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
}

.wp-pagenavi .page {
	color: #111;
	font-family: "Lato", serif;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1;
	padding-bottom: 10px;
	padding-bottom: 1rem;
}

.wp-pagenavi .current {
	border-bottom: 1px solid #111;
	color: #111;
	font-family: "Lato", serif;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1;
	padding-bottom: 10px;
	padding-bottom: 1rem;
}

.youtube {
	background: #29A7A7;
	border-radius: 10rem;
	margin-top: 110px;
	margin-top: 11rem;
	padding-bottom: 67px;
	padding-bottom: 6.7rem;
	padding-top: 60px;
	padding-top: 6rem;
	position: relative;
	z-index: 2;
}

.youtube__title {
	text-align: center;
}

.youtube__title__sub {
	font-family: "Montserrat", serif;
	font-size: 45px;
	font-size: 4.5rem;
	font-weight: 700;
	line-height: 1;
}

.youtube__title__main {
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
	margin-top: 16px;
	margin-top: 1.6rem;
}

.youtube__top-button-block {
	margin-top: 40px;
	margin-top: 4rem;
	text-align: center;
}

.youtube__top-button {
	background-color: #fff;
	border: 2px solid #111;
	border-radius: 9999px;
	color: #111;
	display: inline-block;
	font-size: 25px;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.44;
	padding: 10px;
	padding: 1rem;
	text-align: center;
	width: 100%;
}

.youtube__contents {
	gap: 40px 50px;
	gap: 4rem 5rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 60px;
	margin-top: 6rem;
}

.youtube__content img {
	border-radius: 1rem;
}

.youtube__button-block {
	margin-top: 57px;
	margin-top: 5.7rem;
	text-align: center;
}

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

.block {
	margin-left: auto;
	margin-right: auto;
}

.block:nth-child(2) {
	margin-left: auto;
}

.block:nth-child(3) {
	margin-left: auto;
}

.block:nth-child(4) {
	margin-left: auto;
}

.block:nth-child(5) {
	margin-left: auto;
}

.block:nth-child(6) {
	margin-left: auto;
}

.card03 {
	padding: 2rem 2rem 3.5rem;
}

.card03__effect-text {
	font-size: 1.4rem;
	margin-top: 1rem;
}

.header__inner {
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}

.header__logo {
	width: 13.2rem;
}

.header__item:not(:first-child) {
	margin-left: 2rem;
}

.header__item:last-child {
	margin-left: 2rem;
}

.header__link.header__link--contact {
	padding: 1.7rem 3rem;
}

.loop__box img:first-child {
	padding-right: 1.8rem;
}

.loop__box img:last-child {
	padding-right: 1.8rem;
}

.step__items {
	grid-template-columns: repeat(3, 1fr);
	margin-left: auto;
	margin-right: auto;
	max-width: 80rem;
	width: 100%;
}

}

@media (max-width: 1024px) {

html {
	font-size: 0.9765625vw;
}

}

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

.choose__cards {
	gap: 1.2rem;
}

}

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

.u-desktop {
	display: none;
}

.u-mobile {
	display: block;
}

a[href^="tel:"] {
	pointer-events: auto;
}

.accordion__item:not(:first-child) {
	margin-top: 1rem;
}

.accordion__title {
	padding: 1.7rem 3.2rem 1.7rem 2rem;
}

.accordion__title::before,
.accordion__title::after {
	height: 2px;
	right: 1.3rem;
	width: 1.6rem;
}

.accordion__title-text {
	font-size: 1.6rem;
}

.accordion__content {
	padding: 2rem 2.5rem 2rem 2rem;
}

.accordion__text {
	font-size: 1.6rem;
}

.block {
	border-radius: 2rem;
	height: auto;
}

.block:not(:first-child) {
	margin-top: 2rem;
}

.block__icon {
	border-top-left-radius: 1rem;
	width: 16%;
}

.block__icon img {
	border-top-left-radius: 1rem;
}

.block__text-block {
	padding: 2rem;
	width: 84%;
}

.block__lead {
	font-size: 1.8rem;
}

.block__text {
	font-size: 1.5rem;
	margin-top: 1rem;
}

.block__text span {
	font-size: 1.5rem;
}

.breadcrumbs.breadcrumbs-gray {
	padding-top: 7rem;
}

.card__title {
	font-size: 2.2rem;
	margin-top: 0;
	padding: 1rem 0;
}

.card__text {
	font-size: 1.4rem;
}

.card__left {
	font-size: 1.4rem;
	height: 4.5rem;
	width: 4.5rem;
}

.card__price {
	font-size: 2.6rem;
}

.card__price-small {
	font-size: 2rem;
}

.card03 {
	border-radius: 1rem;
}

.card03__flex {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.card03__left {
	width: 100%;
}

.card03__number span {
	font-size: 7.4rem;
	right: -6rem;
	top: -3rem;
}

.card03__effect-title span {
	font-size: 1.8rem;
}

.card03__img {
	margin-left: auto;
	margin-right: auto;
}

.case {
	padding-top: 37rem;
}

.case__flex {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.case__left {
	width: 100%;
}

.case__sticky {
	background-color: transparent;
	position: static;
	position: initial;
}

.case__modify {
	display: none;
}

.case__button-block {
	margin-top: 4.5rem;
}

.case__cards {
	width: 100%;
}

.caseStudy__card + .caseStudy__card {
	margin-top: 0;
}

.choose::after {
	bottom: 12rem;
	height: 50rem;
	top: auto;
	top: initial;
}

.choose__cards {
	gap: 2rem;
	grid-template-columns: repeat(1, 1fr);
	margin-left: auto;
	margin-right: auto;
	max-width: 45rem;
	width: 100%;
}

.column {
	padding-bottom: 7rem;
	padding-top: 15rem;
}

.column__flex {
	gap: 4.5rem;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.column__title .section-title__sub {
	font-size: 1.2rem;
}

.column__category-block {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.column__category {
	font-size: 1.6rem;
	padding: 1.2rem 4rem;
}

.company__content {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.company__content:not(:first-child) {
	padding-top: 2rem;
}

.company__content dt {
	line-height: 1;
	text-align: left;
	width: 100%;
}

.company__content dd {
	font-size: 1.5rem;
	width: 100%;
}

.company__address {
	gap: 3rem;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 3.5rem;
}

.company__office-text {
	margin-top: 3rem;
}

.company__address-map {
	width: 100%;
}

.cta {
	padding-bottom: 6.8rem;
	padding-top: 4.8rem;
}

.cta__inner {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.cta__lead {
	font-size: 1.8rem;
}

.cta02 {
	border-bottom-left-radius: 5rem;
	border-bottom-right-radius: 5rem;
	padding-bottom: 2rem;
	padding-top: 5.4rem;
}

.cta02__button span {
	font-size: 3.6rem;
}

.faq {
	margin-top: 4.5rem;
}

.footer {
	margin-top: 6rem;
}

.footer__page-top-button {
	gap: 0.9rem;
}

.footer__page-top-button img {
	width: 0.9rem;
}

.footer__page-top-button span {
	font-size: 1.4rem;
}

.footer__flex {
	gap: 4rem;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-top: 7rem;
}

.footer__name {
	width: 21rem;
}

.footer__text-large {
	font-size: 1.6rem;
	margin-top: 3rem;
}

.footer__address {
	font-size: 1.5rem;
}

.footer__right {
	margin-left: 0;
}

.footer__button-block {
	text-align: left;
}

.footer__nav {
	margin-top: 4.5rem;
}

.footer__items {
	gap: 2rem;
}

.footer__site-items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.footer__site-item::after {
	display: none;
}

.footer__copyright {
	margin-top: 4rem;
	padding: 2rem;
}

.footer__copyright small {
	font-size: 1.4rem;
}

.form__radio label:not(:first-child) {
	margin-top: 0;
}

.form__btn {
	margin-top: 3rem;
}

.fv {
	padding-top: 10rem;
}

.fv__text-items {
	gap: 1rem;
}

.fv__text-item {
	font-size: 2rem;
	letter-spacing: 0;
}

.fv__title {
	font-size: 3.4rem;
	margin-top: 1.2rem;
}

.header {
	height: 5.5rem;
	top: 1.7rem;
}

.header__name {
	left: 2rem;
	position: fixed;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	z-index: 9999;
}

.header__link.header__link--contact {
	padding: 1.2rem 3rem;
}

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

.inquiry {
	padding-bottom: 6rem;
}

.inquiry__lead {
	font-size: 1.6rem;
}

.inquiry-contact__content {
	margin-top: 5rem;
}

.item {
	border-radius: 1rem;
	padding: 2.4rem 1.6rem 3.4rem;
}

.item__img {
	width: 12rem;
}

.item__title {
	font-size: 2.4rem;
}

.item__lead {
	font-size: 1.6rem;
}

.item__contents {
	gap: 2rem;
	grid-template-columns: repeat(2, 1fr);
}

.item__price-block {
	margin-top: 2.6rem;
}

.item__left {
	font-size: 1.6rem;
	height: 5.5rem;
	width: 5.5rem;
}

.item__price {
	font-size: 3.6rem;
}

.item__price-medium {
	font-size: 2.6rem;
}

.item__price-small {
	font-size: 1.6rem;
}

.item__button-block {
	margin-top: 2.6rem;
	position: static;
	position: initial;
	text-align: center;
	width: 100%;
}

.loop__box img:first-child {
	padding-right: 1.3rem;
}

.loop__box img:last-child {
	padding-right: 1.3rem;
}

.Page {
	margin-top: 11rem;
}

.Page.Page-circle::after {
	height: 32rem;
	top: -20rem;
	width: 130%;
}

.pagePrice {
	margin-top: 4.5rem;
}

.pagePrice__item + .pagePrice__item {
	margin-top: 4.5rem;
}

.pageStep {
	margin-top: 4rem;
	padding-bottom: 5.5rem;
}

.pageStep::after {
	bottom: -2.5rem;
	font-size: 4rem;
}

.pageStep__title--sub {
	font-size: 5.5rem;
}

.pageStep__title--main {
	font-size: 2rem;
}

.pageStep__blocks {
	margin-top: 4.5rem;
}

.price {
	margin-top: 5rem;
}

.section-page-title__main {
	font-size: 2rem;
	padding-top: 0;
}

.section-page-title__sub {
	font-size: 5rem;
}

.section-title::before {
	height: 12rem;
	width: 12rem;
}

.section-title__main {
	font-size: 3.6rem;
	margin-left: 4rem;
	padding-top: 4.2rem;
}

.section-title__sub {
	font-size: 1.4rem;
	margin-left: 4rem;
	margin-top: 0.8rem;
}

.step__inner {
	padding-left: 2rem;
	padding-right: 4rem;
}

.step__title {
	margin-left: 0;
}

.step__item::after {
	height: 1.6rem;
	right: -3rem;
	width: 1.6rem;
}

.step__item span {
	font-size: 2.8rem;
}

.step__text {
	font-size: 1.4rem;
}

.step__button-block {
	padding-left: 20px;
	padding-right: 2rem;
}

.thanks__lead {
	font-size: 1.6rem;
}

.thanks__text {
	font-size: 1.4rem;
}

.thanks__contents {
	margin-top: 4rem;
	padding: 2rem 1rem;
}

.thanks__content-title {
	font-size: 1.4rem;
}

.worries {
	border-top-left-radius: 5rem;
	border-top-right-radius: 5rem;
}

.worries__flex {
	gap: 3.5rem;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.worries__left {
	font-size: 2rem;
	width: 100%;
}

.worries__left::after {
	font-size: 25rem;
	right: 0;
	top: -6rem;
}

.worries__right {
	width: 100%;
}

.worries__item {
	font-size: 2rem;
	padding-left: 3rem;
}

.worries__item::before {
	height: 1.9rem;
	width: 2rem;
}

.worries__button-block {
	margin-top: 3.5rem;
}

.worries__button span {
	font-size: 3.6rem;
}

.youtube {
	border-radius: 5rem;
	margin-top: 6rem;
	padding-top: 6rem;
}

.youtube__top-button {
	font-size: 2rem;
}

.youtube__contents {
	gap: 3rem;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 4.5rem;
}

.youtube__content img {
	border-radius: 0.6rem;
}

}

@media (max-width: 768px) {

html {
	font-size: 62.5%;
}

}

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

.sm2-none {
	display: none;
}

.card03__title-flex {
	gap: 2rem;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.column__category {
	font-size: 1.4rem;
	padding: 1rem 3rem;
}

.cta02__button span {
	font-size: 2.6rem;
}

.footer__site-items {
	grid-template-columns: repeat(1, 1fr);
}

.fv__text-item {
	font-size: 1.6rem;
	padding: 1rem 1.3rem;
}

.fv__title {
	font-size: 3.2rem;
}

.header__button {
	display: none;
}

.item__img {
	display: none;
}

.step::after {
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(5%, #fff), color-stop(5%, #FFFCE5), to(#FFFCE5));
	background: linear-gradient(180deg, #fff 0%, #fff 5%, #FFFCE5 5%, #FFFCE5 100%);
}

.step__items {
	gap: 3.5rem 5rem;
	grid-template-columns: repeat(2, 1fr);
}

.thanks__text {
	text-align: left;
}

.thanks__text-small {
	text-align: left;
}

.worries__item {
	font-size: 1.5rem;
}

.worries__button span {
	font-size: 2.6rem;
}

.youtube__top-button {
	font-size: 1.8rem;
}

.youtube__contents {
	gap: 2rem;
}

}

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

.item__contents {
	grid-template-columns: repeat(1, 1fr);
}

.pageStep__title--sub {
	font-size: 5rem;
}

.youtube__contents {
	grid-template-columns: repeat(1, 1fr);
}

}

@media (max-width: 375px) {

html {
	font-size: 2.6666666667vw;
}

}

@-webkit-keyframes loop {

0% {
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}

to {
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

}

@keyframes loop {

0% {
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}

to {
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

}

@-webkit-keyframes loop2 {

0% {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

to {
	-webkit-transform: translateX(-200%);
	transform: translateX(-200%);
}

}

@keyframes loop2 {

0% {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

to {
	-webkit-transform: translateX(-200%);
	transform: translateX(-200%);
}

}


/*# sourceMappingURL=styles.css.map */

.grecaptcha-badge {
	position: absolute;
	z-index: 2;
}

/* 送信ローダーの位置調整 */
.wpcf7 .wpcf7-spinner {
    position: absolute;
    top: 63%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
	display: block !important;
	z-index: 10;
}
.form__submit {
    position: relative;
    margin-bottom: 2em; /* 要調整(*1) */
}


.form__submit input[type='submit'] {
    width: 24rem;
}

/* 送信ローダークリック時 */
.wpcf7-form[data-status="submitting"] .wpcf7-submit {
    pointer-events: none;
    opacity: .5;
	z-index: 1; /* ← 追加:spinnerより後ろに */
}
