html {
	font-size: 10px;
}

body {
	font-feature-settings: "palt";
	background: #fff;
	color: #000;
	font-family: "Noto Sans JP", sans-serif;
}

body.noscroll {
	overflow: hidden;
}

a {
	display: block;
	transition: 0.2s;
}

dt {
	font-weight: normal;
}

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

*,
*::before,
*::after {
	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 */

/* Set core body defaults */

body {
	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%;
}

/* Inherit fonts for inputs and buttons */

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

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

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;
}

/*
 * l-container
 * -------------------------------------------------------------
 */

.l-container {
	background: #fff;
	margin: 0 auto;
	max-width: 192rem;
}

/*
 * l-footer
 * -------------------------------------------------------------
 */

.l-footer {
	background: #fff;
	height: 8.5rem;
}

.l-footer__inner {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: space-between;
}

.l-footer__copyright small {
	font-size: 2.2rem;
	font-weight: 500;
}

.l-footer__pp {
	align-items: center;
	display: flex;
	font-size: 1.7rem;
	gap: 0.5rem;
}

.l-footer__pp::before {
	-webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
	background: #000;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	content: "";
	display: inline-block;
	height: 1.1rem;
	width: 1.1rem;
}

/*
 * l-header
 * -------------------------------------------------------------
 */

/*
 * l-inner
 * -------------------------------------------------------------
 */

.l-inner {
	margin: auto;
	max-width: 106rem;
	padding: 0 3rem;
}

/*
 * l-main
 * -------------------------------------------------------------
 */

.l-main {
	overflow: hidden;
}

/*
 * c-banner
 * -------------------------------------------------------------
 */

.c-banner {
	background: #fbdad4;
	border-bottom: 1.1rem solid #E83817;
	border-top: 1.1rem solid #E83817;
	padding: 3rem 0 2.6rem;
	position: relative;
	z-index: 2;
}

.c-banner__heading {
	background: #e83817;
	color: #fff;
	font-size: 5rem;
	font-weight: 800;
	padding: 2.8rem 0;
	position: absolute;
	text-align: center;
	top: -11.4rem;
	width: 100%;
}

.c-banner__inner {
	align-items: center;
	display: flex;
	flex-direction: column;
}

.c-banner__ttl {
	max-width: 70.5rem;
}

.c-banner__logo {
	margin-top: 1.5rem;
	max-width: 70.8rem;
}

.c-banner__flex {
	display: flex;
	gap: 4rem;
	justify-content: center;
	margin-top: 2.2rem;
	width: 100%;
}

.c-banner__btn {
	align-items: center;
	background: #FFF;
	border-radius: 3.3rem;
	box-shadow: 0.4rem 0.6rem 0px 0px rgba(0, 0, 0, 0.3);
	display: flex;
	font-size: 2.5rem;
	font-weight: 700;
	height: 6.6rem;
	justify-content: center;
	letter-spacing: 0.05em;
	max-width: 48.2rem;
	position: relative;
	text-transform: uppercase;
	transition: transform 0s ease, box-shadow 0s ease;
	width: 50%;
	z-index: 2;
}

.c-banner__btn::after {
	content: "";
	display: inline-block;
	height: 1.6rem;
	margin-top: 0.4rem;
	position: absolute;
	right: 2.6rem;
	transform: rotate(45deg);
	width: 1.6rem;
}

.c-banner__btn.u-pc {
	display: flex;
}

.c-banner__btn.u-sp {
	display: none;
}

.c-banner__btn-line {
	border: 3px solid #06C755;
	color: #06C755;
	gap: 1.9rem;
}

.c-banner__btn-line::before {
	background: url(./../images/icon_line.webp) no-repeat center/100%;
	content: "";
	display: inline-block;
	height: 4.3rem;
	width: 4.3rem;
}

.c-banner__btn-line::after {
	border-right: 3px solid #5AC263;
	border-top: 3px solid #5AC263;
}

.c-banner__btn-tel {
	border: 3px solid #E83817;
	color: #E83817;
	gap: 1.2rem;
}

.c-banner__btn-tel::before {
	background: url(./../images/icon_tel.webp) no-repeat center/100%;
	content: "";
	display: inline-block;
	height: 4.2rem;
	width: 2.6rem;
}

.c-banner__btn-tel::after {
	border-right: 3px solid #E83817;
	border-top: 3px solid #E83817;
}

.c-banner__btn:hover {
	box-shadow: none;
	transform: translateY(0.4rem);
}

.c-banner--top {
	border-top: none;
}

.c-banner--top::before {
	background: url(./../images/banner_deco.webp) no-repeat center/100%;
	content: "";
	display: block;
	height: 1.9rem;
	left: -1rem;
	position: absolute;
	position: absolute;
	top: -0.885416666vw;
	width: 101%;
}

.c-banner--top .c-banner__logo {
	margin-bottom: 2rem;
	margin-top: 0;
	max-width: 86rem;
}

/*
 * c-section-ttl
 * -------------------------------------------------------------
 */

.c-section-ttl {
	text-align: center;
}

.c-section-ttl__ja {
	font-size: 5.8rem;
	font-weight: 900;
	margin-top: 3rem;
}

.c-section-ttl__ja small {
	font-size: 4.1rem;
}

.c-section-ttl__ja::after {
	background: #231815;
	content: "";
	display: block;
	height: 2px;
	margin: 2.4rem auto 0;
	width: 5rem;
}

.c-section-ttl__eng {
	align-content: center;
	background: url(./../images/section_ttl_circle.webp) no-repeat center/100%;
	display: block;
	font-family: "din-condensed", sans-serif;
	font-size: 2.9rem;
	font-weight: bold;
	height: 6.1rem;
	letter-spacing: 0.03em;
	margin: 0 auto;
	position: relative;
	text-transform: uppercase;
	width: 7rem;
	z-index: 1;
}

.c-section-ttl__eng.--white {
	align-content: center;
	background: url(./../images/section_ttl_circle_wht.webp) no-repeat center/100%;
}

/*
 * u-pc
 * -------------------------------------------------------------
 */

.u-pc {
	display: block;
}

/*
 * u-sp
 * -------------------------------------------------------------
 */

.u-sp {
	display: none;
}

/*
 * faq
 * -------------------------------------------------------------
 */

.faq {
	border-top: 2px solid #ccc;
	padding: 6rem 0 20.55rem;
}

.faq__items {
	display: flex;
	flex-direction: column;
	gap: 3.4rem;
	margin-top: 3.8rem;
}

.faq__item {
	border: 4px solid #E83817;
	border-radius: 0.6rem;
	padding: 3rem 2rem;
}

.faq__question {
	cursor: pointer;
	display: flex;
	font-size: 2.7rem;
	font-weight: 500;
	gap: 2.4rem;
	position: relative;
}

.faq__eng {
	border-right: 2px solid #000;
	display: inline-block;
	font-family: "din-condensed", sans-serif;
	font-size: 3.6rem;
	font-weight: bold;
	padding-left: 0.5rem;
	padding-right: 2.4rem;
}

.faq__ttl {
	flex: 1;
	padding-top: 0.5rem;
}

.faq__btn {
	display: inline-block;
	height: 2.5rem;
	margin-top: 0.5rem;
	position: relative;
	width: 2.5rem;
}

.faq__btn::before,
.faq__btn::after {
	background: #e83817;
	content: "";
	display: inline-block;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq__btn::before {
	height: 2px;
	width: 2.5rem;
}

.faq__btn::after {
	height: 2.5rem;
	width: 2px;
}

.faq__btn.open::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(270deg);
}

.faq__answer {
	border-top: 4px dotted #E83817;
	font-size: 2.4rem;
	font-weight: 400;
	letter-spacing: 0.025em;
	line-height: 1.52;
	margin-top: 1.8rem;
	padding-top: 2.8rem;
	text-align: justify;
}

/*
 * float
 * -------------------------------------------------------------
 */

.float {
	background: transparent;
	bottom: 2rem;
	display: none;
	max-width: 29.2rem;
	position: fixed;
	right: max(2rem, 50% - 96rem + 2rem);
	width: 100%;
	z-index: 100;
}

.float__items {
	display: flex;
	gap: 2rem;
	width: 100%;
}

.float__item {
	align-items: center;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0.5rem 0.5rem 0 0 rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	font-size: 1.5rem;
	font-weight: 800;
	gap: 0.7rem;
	height: 13.3rem;
	justify-content: center;
	line-height: 1.1;
	max-width: 13.3rem;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
}

.float__item.u-pc {
	display: flex;
}

.float__item.u-sp {
	display: none;
}

.float__line {
	border: 0.4rem solid #06C755;
	color: #06C755;
}

.float__line::before {
	background: url(./../images/icon_line.webp) no-repeat center/100%;
	content: "";
	display: inline-block;
	height: 4.7rem;
	width: 4.7rem;
}

.float__tel {
	border: 0.4rem solid #E83817;
	color: #E83817;
}

.float__tel::before {
	background: url(./../images/icon_tel.webp) no-repeat center/100%;
	content: "";
	display: inline-block;
	height: 4.9rem;
	width: 3rem;
}

/*
 * fv
 * -------------------------------------------------------------
 */

.fv {
	position: relative;
}

.fv__main {
	width: 100%;
}

.fv__text {
	position: absolute;
	top: 0;
	width: 100%;
}

.fv__ttl {
	bottom: min(6rem, 3.125vw);
	left: min(9.6rem, 5vw);
	max-width: 93.5rem;
	position: absolute;
	width: 48.854166666vw;
}

/*
 * mv
 * -------------------------------------------------------------
 */

/*
 * point-tab
 * -------------------------------------------------------------
 */

.point-tab__imgs {
	margin: 1rem auto 0;
	max-width: 51rem;
	position: relative;
}

.point-tab__imgs-text {
	align-content: center;
	background: #fde8d1;
	border-radius: 50%;
	display: block;
	font-size: 2.3rem;
	font-weight: 600;
	height: 14.8rem;
	left: -3.2rem;
	line-height: 1.1;
	max-width: 14.8rem;
	position: absolute;
	text-align: center;
	top: -2.6rem;
	width: 100%;
}

.point-tab__btns {
	grid-gap: 2.9rem;
	display: grid;
	gap: 2.9rem;
	grid-template-columns: repeat(3, 1fr);
	margin: 2.2rem auto 0;
	max-width: 92.7rem;
}

.point-tab__btn {
	background: #FFFFFF;
	border: 0.5rem solid #C1272D;
	border-radius: 0.5rem;
	box-shadow: 0.6rem 0.6rem 0px 0px rgba(0, 0, 0, 0.3);
	padding: 1.8rem 1rem;
	text-align: center;
}

.point-tab__btn:hover {
	box-shadow: none;
	transform: translateY(0.6rem);
}

.point-tab__btn-text {
	font-size: 2.7rem;
	font-weight: 800;
	line-height: 1.2;
}

.point-tab__btn-text small {
	font-size: 2.7rem;
}

.point-tab__btn-text span {
	color: #c1272d;
}

.point-tab__btn.is-active {
	background: #c1272d;
	box-shadow: none;
	color: #fff;
}

.point-tab__btn.is-active span {
	color: #fff;
}

.point-tab__img {
	display: none;
}

.point-tab__img.is-show {
	display: block;
}

/*
 * point
 * -------------------------------------------------------------
 */

.point {
	background: #fde8d1;
	padding: 4.2rem 0 6.5rem;
}

.point__section-ttl {
	margin: 0 calc(50% - 50vw);
	position: relative;
	z-index: 1;
}

.point__section-ttl::before {
	background: url(./../images/point_section_ttl_bg.webp) no-repeat center/100%;
	content: "";
	display: block;
	height: 153.7rem;
	left: 50%;
	max-width: 153.7rem;
	position: absolute;
	top: 75%;
	transform: translate(-50%, -50%);
	width: 100%;
	z-index: -1;
}

.point__section-ttlJa {
	margin: 0 auto;
	max-width: 125rem;
}

.point__nav {
	grid-gap: 2.7rem;
	display: grid;
	gap: 2.7rem;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 6.5rem;
	position: relative;
	z-index: 2;
}

.point__nav-item {
	align-content: center;
	background: #e83817;
	border-radius: 1.2rem;
	height: 12.2rem;
	padding-top: 1.5rem;
	position: relative;
	text-align: center;
}

.point__nav-item::after {
	-webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
	background: #fbb03b;
	bottom: -2.6rem;
	clip-path: polygon(100% 0, 0 0, 50% 100%);
	content: "";
	display: block;
	height: 3.2rem;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 8.85rem;
	z-index: -1;
}

.point__nav-num {
	align-content: center;
	background: #fff;
	border: 5px solid #E83817;
	border-radius: 50%;
	display: block;
	font-family: "din-condensed", sans-serif;
	font-size: 3.3rem;
	font-weight: bold;
	height: 6.2rem;
	left: 50%;
	padding-top: 0.3rem;
	position: absolute;
	text-align: center;
	top: -3.1rem;
	transform: translateX(-50%);
	width: 6.2rem;
}

.point__nav-ttl {
	color: #fff;
	font-size: 2.9rem;
	font-weight: 800;
	line-height: 1.2;
}

.point__items {
	display: flex;
	flex-direction: column;
	gap: 10.6rem;
	margin-top: 12rem;
	position: relative;
	z-index: 1;
}

.point__item {
	background: #fff;
	padding: 5rem 2.5rem 6rem;
	position: relative;
}

.point__num {
	align-content: center;
	background: #fff;
	border-radius: 50%;
	display: block;
	font-family: "din-condensed", sans-serif;
	font-size: 5.5rem;
	font-weight: bold;
	height: 10.3rem;
	left: 50%;
	position: absolute;
	text-align: center;
	top: -5.5rem;
	transform: translateX(-50%);
	width: 10.3rem;
}

.point__ttl {
	color: #E83817;
	font-size: 4rem;
	font-weight: 800;
	margin: 0 auto;
	position: relative;
	text-align: center;
	width: -moz-fit-content;
	width: fit-content;
}

.point__ttl::after {
	background: #231815;
	content: "";
	display: block;
	height: 2px;
	margin: 2rem auto 0;
	width: 5rem;
}

.point__note {
	color: #000;
	font-size: 1.4rem;
	font-weight: 400;
	position: absolute;
	right: -18rem;
	top: 1.6rem;
}

.point__outro {
	margin-top: 11rem;
}

.point__outro-heading {
	position: relative;
}

.point__outro-heading::before {
	background: url(./../images/point_outro_ttl_bg.webp) no-repeat center/100%;
	bottom: 0;
	content: "";
	display: block;
	height: 22.2rem;
	max-width: 99.1rem;
	position: absolute;
	width: 100%;
}

.point__outro-ttl {
	font-size: 6.6rem;
	font-weight: 800;
	line-height: 1.3;
	margin: 0 auto;
	position: relative;
	text-align: center;
	width: -moz-fit-content;
	width: fit-content;
}

.point__outro-ttl::before,
.point__outro-ttl::after {
	background: #000;
	border-radius: 2rem;
	bottom: 0;
	content: "";
	display: block;
	height: 16.5rem;
	position: absolute;
	width: 0.8rem;
}

.point__outro-ttl::before {
	left: -6rem;
	transform: rotate(-15deg);
}

.point__outro-ttl::after {
	right: -6rem;
	transform: rotate(15deg);
}

.point__outro-ttl span {
	display: inline-block;
	position: relative;
	z-index: 1;
}

.point__outro-ttl span::after {
	background: #fff;
	content: "";
	display: block;
	height: 1.2rem;
	margin-top: -1.8rem;
	position: relative;
	transform: translateX(-0.5rem);
	width: 100%;
	width: calc(100% + 1rem);
	z-index: -1;
}

.point__outro-ttl small {
	font-size: 4.7rem;
}

.point__outro-img {
	width: 100%;
}

.point__outro-note {
	display: block;
	font-size: 1.4rem;
	font-weight: 400;
	padding-left: 3rem;
}

/*
 * point01
 * -------------------------------------------------------------
 */

.point01__details {
	margin-top: 4rem;
}

.point01__details:nth-of-type(1) {
	border-bottom: 10px double #E83817;
	padding-bottom: 4.2rem;
}

.point01__case-ttl {
	align-items: center;
	background: #fff;
	border: 0.5rem solid #000;
	border-radius: 3.3rem;
	display: flex;
	font-size: 2.5rem;
	font-weight: 700;
	height: 6.6rem;
	justify-content: center;
	margin: 0 auto;
	max-width: 37.6rem;
}

.point01__case-ttl.--rd {
	border-color: #E83817;
	color: #E83817;
	max-width: 42rem;
}

.point01__case-ttlLogo {
	max-width: 26.3rem;
}

.point01__items {
	align-items: center;
	display: flex;
	margin-top: 4rem;
}

.point01__item1 {
	border-right: 0.5rem dotted #FAD4CD;
	max-width: 43.3rem;
	padding-right: 2rem;
}

.point01__item1-img {
	max-width: 41rem;
}

.point01__item2 {
	flex: 1;
	padding-left: 3rem;
	text-align: center;
}

.point01__item2-img {
	margin-top: 4.5rem;
	max-width: 47.8rem;
}

.point01__text {
	border-bottom: 1px solid #000;
	display: inline-block;
	font-size: 2.3rem;
	font-weight: 700;
}

.point01__text.--rd {
	border-color: #E83817;
	color: #E83817;
}

.point01__item1-2 {
	border-color: #7d7d7d;
	padding-bottom: 3rem;
}

.point01__item2-2 {
	padding-bottom: 5.5rem;
}

/*
 * point02
 * -------------------------------------------------------------
 */

.point02__details {
	margin-top: 2.8rem;
}

.point02__img {
	margin: 0 auto;
	max-width: 51.6rem;
}

.point02__items {
	margin-top: 5rem;
}

.point02__item {
	align-items: center;
	border-bottom: 0.4rem dotted #7D7D7D;
	display: flex;
	padding: 0 2rem;
}

.point02__item1 {
	padding-bottom: 2.2rem;
}

.point02__eng {
	background: #c1272d;
	border-radius: 3px;
	color: #fff;
	display: inline-block;
	font-size: 2.4rem;
	font-weight: 800;
	height: 3.8rem;
	padding-top: 0.5rem;
	text-align: center;
	width: 5.2rem;
}

.point02__item1-ttl {
	-webkit-text-decoration: underline;
	color: #C1272D;
	font-size: 3.5rem;
	font-weight: 800;
	margin-left: 1.5rem;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.point02__item1-ttl small {
	font-size: 2.8rem;
}

.point02__item1-content {
	margin-left: 4rem;
	max-width: 59.8rem;
}

.point02__item2 {
	padding-bottom: 3rem;
	padding-top: 3rem;
}

.point02__item2__text {
	font-size: 2.8rem;
	font-weight: 500;
	margin-left: 1rem;
}

.point02__item2__text span {
	display: inline-block;
	font-size: 3rem;
	font-weight: 800;
	margin-right: 0.9rem;
}

.point02__item2__text strong {
	-webkit-text-decoration: underline;
	color: #C1272D;
	font-size: 3.5rem;
	font-weight: 900;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.point02__item2__text strong small {
	font-size: 2.8rem;
}

.point02__item3 {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 4.7rem;
	padding-top: 6rem;
}

.point02__item3-top {
	background: #F8E6E7;
	border: 0.4rem solid #C1272D;
	border-radius: 0.7rem;
	padding: 1.4rem 2.5rem 1.3rem;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}

.point02__item3-top span {
	background: #c1272d;
	border-radius: 3px;
	color: #fff;
	display: inline-block;
	font-size: 2rem;
	font-weight: 800;
	height: 3.2rem;
	left: -1.9rem;
	padding-top: 0.3rem;
	position: absolute;
	text-align: center;
	top: -1.6rem;
	width: 3.8rem;
}

.point02__item3-top p {
	color: #C1272D;
	font-size: 2.7rem;
	font-weight: 800;
	letter-spacing: 0.05em;
}

.point02__item3-top::after {
	bottom: -4.3rem;
	content: "+";
	display: block;
	font-size: 3.6rem;
	font-weight: 800;
	left: 50%;
	line-height: 1;
	position: absolute;
	transform: translateX(-50%);
}

.point02__item3-center {
	background: #fff;
	border: 0.4rem solid #c1272d;
	border-radius: 0.7rem;
	padding: 2.8rem 4.7rem 1.8rem;
	position: relative;
}

.point02__item3-center::after {
	bottom: -4.5rem;
	content: "=";
	display: block;
	font-size: 3.6rem;
	font-weight: 800;
	left: 48.8%;
	line-height: 1;
	position: absolute;
	transform: translateX(-50%);
	transform: rotate(90deg);
}

.point02__item3-center > span {
	background: #C1272D;
	border-radius: 0.4rem;
	color: #fff;
	display: inline-block;
	font-size: 2.4rem;
	font-weight: 800;
	left: -2.6rem;
	padding: 0.7rem 2rem;
	position: absolute;
	top: -2rem;
}

.point02__item3-center p {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.36;
	text-align: center;
}

.point02__item3-center p span {
	font-weight: 500;
}

.point02__item3-center p small {
	font-size: 2.5rem;
}

.point02__item3-bottom {
	align-items: center;
	background: #E9452A;
	border-radius: 1rem;
	display: flex;
	flex-direction: column;
	max-width: 52.6rem;
	padding: 1.6rem 2rem;
	width: 100%;
}

.point02__item3-bottom p {
	color: #fff;
	font-size: 3.2rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	line-height: 1;
}

.point02__item3-bottom span {
	color: #fff;
	content: "=";
	display: block;
	font-size: 3.2rem;
	font-weight: 500;
	line-height: 1;
	margin-top: 0.2rem;
	transform: rotate(90deg);
}

.point02__item3-bottom p:nth-of-type(2) {
	color: #FFF000;
}

/*
 * point03
 * -------------------------------------------------------------
 */

.point03__ttl {
	color: #E9452A;
	font-size: 3.1rem;
	letter-spacing: 0.05em;
}

.point03__ttl span {
	color: #E83817;
	font-size: 4rem;
	letter-spacing: 0;
	vertical-align: text-bottom;
}

.point03__ttl span strong {
	font-size: 5.7rem;
}

.point03__details {
	margin-top: 6.2rem;
}

.point03__item-heading {
	position: relative;
}

.point03__lists {
	grid-gap: 3.4rem;
	display: grid;
	gap: 3.4rem;
	grid-template-columns: repeat(3, 1fr);
	margin: 0 auto;
	max-width: 87.5rem;
}

.point03__list {
	background: #C1272D;
	border-radius: 0.6rem;
	padding: 3rem 2rem 1.8rem;
	position: relative;
	text-align: center;
}

.point03__list span {
	align-content: center;
	background: #fff;
	border: 0.5rem solid #C1272D;
	border-radius: 50%;
	color: #C1272D;
	display: block;
	font-family: "din-condensed", sans-serif;
	font-size: 2.8rem;
	font-weight: 900;
	height: 5.3rem;
	left: 50%;
	padding-top: 0.7rem;
	position: absolute;
	text-align: center;
	top: -2.65rem;
	transform: translateX(-50%);
	width: 5.3rem;
}

.point03__list-ttl {
	color: #fff;
	font-size: 4.2rem;
	font-weight: 800;
	letter-spacing: 0.05em;
}

.point03__item {
	padding: 4.8rem 0 5rem;
}

.point03__item:not(:last-child) {
	border-bottom: 0.4rem dotted #7D7D7D;
}

.point03__item-heading {
	align-items: center;
	color: #C1272D;
	display: flex;
	font-weight: 800;
	gap: 2rem;
	justify-content: center;
}

.point03__item-heading span {
	align-content: center;
	border: 0.5rem solid #C1272D;
	border-radius: 50%;
	display: block;
	font-family: "din-condensed", sans-serif;
	font-size: 4rem;
	height: 7.5rem;
	padding-top: 0.7rem;
	text-align: center;
	width: 7.5rem;
}

.point03__item-note {
	display: block;
	font-size: 1.4rem;
	font-weight: 400;
	margin-top: 1.6rem;
	text-align: center;
}

.point03__item-ttlWrap p {
	align-items: flex-end;
	display: flex;
	font-size: 3.2rem;
	font-weight: 500;
	gap: 1.6rem;
	justify-content: center;
	text-align: center;
}

.point03__item-ttlWrap p::before,
.point03__item-ttlWrap p::after {
	background: #c1272d;
	border-radius: 2rem;
	content: "";
	display: block;
	height: 3.1rem;
	width: 0.25rem;
}

.point03__item-ttlWrap p::before {
	transform: rotate(-15deg);
}

.point03__item-ttlWrap p::after {
	transform: rotate(15deg);
}

.point03__item-ttlWrap h4 {
	font-size: 5.4rem;
	margin-top: 0.8rem;
}

.point03__item-ttlWrap small {
	font-size: 4rem;
}

.point03__item2-note {
	max-width: 20.6rem;
	position: absolute;
	right: 3rem;
}

.point03__item2-content {
	margin: 3.5rem auto 0;
	max-width: 81.7rem;
}

.point03__tabarea {
	margin-top: 4rem;
}

.point03__tabarea-heading {
	-webkit-text-decoration: underline;
	color: #F7931E;
	font-size: 2.8rem;
	font-weight: 800;
	padding-left: 8rem;
	text-align: center;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.point03__item3-img {
	margin: 2.3rem auto 0;
	max-width: 56.7rem;
}

.point03__item3-textbox {
	background: #C1272D;
	border-radius: 0.5rem;
	left: 3rem;
	margin: 4.7rem auto 0;
	max-width: 59.9rem;
	padding: 2rem;
	position: relative;
	text-align: center;
}

.point03__item3-textbox::before {
	-webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	background: #C1272D;
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	content: "";
	display: block;
	height: 3.4rem;
	left: 9rem;
	position: absolute;
	top: -2.9rem;
	width: 3.4rem;
}

.point03__item3-text {
	color: #fff;
	font-size: 3.4rem;
	font-weight: 800;
	line-height: 1.26;
}

.point03__item3-text span {
	color: #FFF000;
}

.point03__feature {
	background: #e83817;
	border: 0.5rem solid #E83817;
	margin: 5.4rem auto 0;
	max-width: 70rem;
	position: relative;
}

.point03__feature::before {
	-webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
	background: #e83817;
	clip-path: polygon(100% 0, 0 0, 50% 100%);
	content: "";
	display: block;
	height: 4rem;
	position: absolute;
	right: 5rem;
	top: -2rem;
	transform: rotate(-36deg);
	width: 11.2rem;
}

.point03__feature-ttl {
	background: #e83817;
	color: #fff;
	font-size: 2.8rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	padding: 0.5rem 1rem 0.8rem 26rem;
	position: relative;
}

.point03__feature-ttl strong {
	font-size: 3.7rem;
	font-weight: 700;
}

.point03__feature-text {
	background: #fff;
	font-size: 2.6rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	line-height: 1.45;
	padding: 1rem 3rem 1.2rem 26rem;
}

.point03__feature-text span {
	background: linear-gradient(transparent 70%, #FFFF00 0%);
	color: #E83817;
}

.point03__feature-text span strong {
	font-size: 3.4rem;
	font-weight: 800;
}

.point03__feature-img {
	left: 1.3rem;
	max-width: 23rem;
	position: absolute;
	top: -3rem;
}

/*
 * support
 * -------------------------------------------------------------
 */

.support {
	padding: 8.6rem 0 8rem;
}

.support__heading {
	margin: 4.6rem auto 0;
	max-width: 72.5rem;
}

.support__note {
	font-size: 1.4rem;
	margin-top: 1.6rem;
	text-align: center;
}

.support__lists {
	background: #f6eddd;
	border-radius: 0.6rem;
	margin-top: 9rem;
	padding-right: 2.6rem;
}

.support__lists-ttl {
	margin: 0 auto;
	max-width: 42rem;
}

.support__list:first-of-type {
	margin-top: 2.2rem;
}

.support__list-heading {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.14) 0.76%, rgb(255, 255, 255) 11.72%);
	border-radius: 0px 0.9rem 0.9rem 0px;
	padding: 1.3rem 1.3rem 1.3rem 7rem;
	position: relative;
}

.support__list-num {
	color: #8C6239;
	display: inline-block;
	font-family: "adobe-garamond-pro", serif;
	font-size: 6.9rem;
	font-style: italic;
	font-weight: 600;
	left: 2rem;
	position: absolute;
	top: -2.1rem;
}

.support__list-ttl {
	font-size: 2.4rem;
	font-weight: 700;
}

.support__list-text {
	font-size: 2.1rem;
	line-height: 1.52;
	padding: 1.7rem 1rem 2.7rem 3.2rem;
	text-align: justify;
}

/*
 * voice
 * -------------------------------------------------------------
 */

.voice {
	border-top: 2px solid #ccc;
	padding: 5.5rem 0 10rem;
}

.voice__items {
	display: flex;
	gap: 4.5rem;
	margin-top: 5rem;
}

.voice__item {
	background: #FFEBDB;
	border-radius: 0.6rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	max-width: 47.5rem;
	padding: 4rem 3.4rem 3.4rem;
	width: 50%;
}

.voice__text {
	font-size: 2.5rem;
	font-weight: 400;
	letter-spacing: 0.03em;
	line-height: 1.56;
	text-align: justify;
}

.voice__name {
	border-bottom: 2px solid #000;
	border-top: 2px solid #000;
	font-size: 2.2rem;
	font-weight: 400;
	letter-spacing: 0.005em;
	margin-top: 2.8rem;
	padding: 1.6rem;
	text-align: center;
}

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

html {
	font-size: 0.78125vw;
}

}

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

html {
	font-size: 0.9vw;
}

}

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

html {
	font-size: 2.666666666vw;
}

.l-footer {
	height: 3.3rem;
	height: auto;
	padding: 1rem 0 8rem;
}

.l-footer__copyright small {
	font-size: 1.1rem;
}

.l-footer__pp {
	font-size: 1rem;
	gap: 0.3rem;
}

.l-footer__pp::before {
	height: 0.7rem;
	margin-top: 0.2rem;
	width: 0.7rem;
}

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

.c-banner {
	border-width: 5px;
	padding: 1.2rem 0 1.7rem;
}

.c-banner__heading {
	font-size: 1.5rem;
	letter-spacing: 0.05em;
	padding: 0.5rem;
	top: -2.7rem;
}

.c-banner__ttl {
	max-width: 33.8rem;
}

.c-banner__logo {
	margin-top: 0;
	max-width: 18.9rem;
}

.c-banner__flex {
	flex-direction: column;
	gap: 1.3rem;
	margin-top: 0.7rem;
}

.c-banner__btn {
	border-radius: 2.1rem;
	box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.3);
	font-size: 1.7rem;
	height: 4.2rem;
	max-width: 33.4rem;
	width: 100%;
}

.c-banner__btn::after {
	height: 1rem;
	margin-top: 0.2rem;
	right: 1.7rem;
	width: 1rem;
}

.c-banner__btn.u-pc {
	display: none;
}

.c-banner__btn.u-sp {
	display: flex;
}

.c-banner__btn-line {
	border-width: 2px;
	gap: 1.2rem;
}

.c-banner__btn-line::before {
	height: 2.9rem;
	width: 2.9rem;
}

.c-banner__btn-tel {
	border-width: 2px;
	gap: 0.8rem;
}

.c-banner__btn-tel::before {
	height: 2.9rem;
	width: 1.8rem;
}

.c-banner__btn:hover {
	transform: translateY(4px);
}

.c-banner--top::before {
	background: url(./../images/sp/banner_deco.webp) no-repeat center/100%;
	height: 1.1rem;
	left: 0;
	top: -1rem;
}

.c-banner--top .c-banner__logo {
	margin-bottom: 0.8rem;
}

.c-section-ttl__ja {
	font-size: 2.7rem;
	letter-spacing: 0.045em;
	margin-top: 0.7rem;
}

.c-section-ttl__ja small {
	font-size: 1.9rem;
}

.c-section-ttl__ja::after {
	margin-top: 1.4rem;
	width: 2.8rem;
}

.c-section-ttl__eng {
	font-size: 1.5rem;
	height: 3.2rem;
	width: 3.6rem;
}

.u-pc {
	display: none;
}

.u-sp {
	display: block;
}

.faq {
	border-width: 1px;
	padding: 2.4rem 0 5.7rem;
}

.faq__items {
	gap: 1.7rem;
	margin-top: 2rem;
}

.faq__item {
	border-radius: 0.4rem;
	border-width: 2px;
	padding: 1.5rem 1.2rem 1.3rem;
}

.faq__question {
	align-items: center;
	display: flex;
	font-size: 1.6rem;
	gap: 1.2rem;
	line-height: 1.3;
}

.faq__eng {
	border-width: 1px;
	font-size: 2.4rem;
	padding: 0.3rem 1.2rem 0.3rem 0.4rem;
}

.faq__ttl {
	padding-top: 0;
}

.faq__btn {
	height: 1.4rem;
	margin-top: 0;
	width: 1.4rem;
}

.faq__btn::before {
	height: 1px;
	width: 1.4rem;
}

.faq__btn::after {
	height: 1.4rem;
	width: 1px;
}

.faq__answer {
	border-width: 3px;
	font-size: 1.5rem;
	margin-top: 1rem;
	padding: 1.2rem 0.4rem 0;
}

.float {
	background: #fff;
	bottom: 0;
	max-width: 37.5rem;
	right: auto;
}

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

.float__item {
	background: #e83817;
	border-radius: 0;
	box-shadow: 0rem -0.3rem 0.6rem 0rem rgba(0, 0, 0, 0.2);
	color: #fff;
	flex-direction: column;
	font-size: 1.4rem;
	font-weight: 700;
	gap: 0.5rem;
	height: 6.7rem;
	letter-spacing: 0.05em;
	max-width: 100%;
	width: 100%;
}

.float__item.u-pc {
	display: none;
}

.float__item.u-sp {
	display: flex;
}

.float__line {
	border: none;
}

.float__line::before {
	height: 2.9rem;
	width: 2.9rem;
}

.float__tel {
	border: none;
}

.float__tel::before {
	background: url(./../images/sp/icon_tel.webp) no-repeat center/100%;
	height: 2.9rem;
	width: 1.8rem;
}

.fv__ttl {
	margin: -1rem auto 0;
	max-width: 34.6rem;
	padding-bottom: 1.5rem;
	position: static;
	width: 100%;
}

.point-tab__imgs {
	max-width: 27.5rem;
}

.point-tab__imgs-text {
	font-size: 1.2rem;
	height: 8rem;
	left: -1.8rem;
	max-width: 8rem;
	top: -1.3rem;
}

.point-tab__btns {
	gap: 1.8rem;
	margin-top: 1.5rem;
	max-width: 100%;
}

.point-tab__btn {
	border-radius: 0.3rem;
	border-width: 3px;
	box-shadow: 0.3rem 0.3rem 0px 0px rgba(0, 0, 0, 0.3);
	padding: 0.8rem 0.5rem;
}

.point-tab__btn-text {
	font-size: 1.3rem;
	line-height: 1.24;
}

.point-tab__btn-text span {
	display: block;
	font-size: 1.5rem;
	margin-top: 0.2rem;
}

.point {
	padding: 1.2rem 0 1.8rem;
}

.point__section-ttl::before {
	height: 52rem;
	max-width: 52rem;
	top: 54%;
}

.point__section-ttlJa {
	margin-top: -1.8rem;
	max-width: 32.4rem;
}

.point__nav {
	gap: 0.8rem;
	margin-top: 1.7rem;
}

.point__nav-item {
	border-radius: 4px;
	height: 5.8rem;
	padding-top: 0.6rem;
}

.point__nav-item::after {
	bottom: -1.1rem;
	height: 1.3rem;
	width: 3.6rem;
}

.point__nav-num {
	border-width: 2px;
	font-size: 1.4rem;
	height: 2.6rem;
	padding-top: 0.1rem;
	top: -1.3rem;
	width: 2.6rem;
}

.point__nav-ttl {
	font-size: 1.45rem;
}

.point__items {
	gap: 4.5rem;
	margin-top: 5.3rem;
}

.point__item {
	padding: 2.6rem 1.5rem 2rem;
}

.point__num {
	font-size: 3.66rem;
	height: 6.9rem;
	top: -3.45rem;
	width: 6.9rem;
}

.point__ttl {
	font-size: 2.4rem;
	width: 100%;
}

.point__ttl::after {
	height: 1px;
	margin-top: 1.3rem;
	width: 3rem;
}

.point__note {
	display: block;
	font-size: 1.1rem;
	position: relative;
	right: auto;
	text-align: right;
	top: 0.4rem;
}

.point__outro {
	margin-top: 3rem;
}

.point__outro-heading::before {
	height: 8.1rem;
	max-width: 36rem;
}

.point__outro-ttl {
	font-size: 2.4rem;
}

.point__outro-ttl::before,
.point__outro-ttl::after {
	height: 5.3rem;
	width: 3px;
}

.point__outro-ttl::before {
	left: -2rem;
}

.point__outro-ttl::after {
	right: -2rem;
}

.point__outro-ttl span::after {
	height: 4px;
	margin-top: -0.5rem;
	transform: translateX(-0.2rem);
	width: calc(100% + 0.2rem);
}

.point__outro-ttl small {
	font-size: 1.7rem;
}

.point__outro-img {
	margin: -5.2rem calc(50% - 52vw) 0;
	width: 104vw;
}

.point__outro-note {
	font-size: 1.1rem;
	padding-left: 1.5rem;
}

.point01__details {
	margin-top: 2.4rem;
}

.point01__details:nth-of-type(1) {
	border-width: 4px;
	margin-top: 1.4rem;
	padding-bottom: 2.4rem;
}

.point01__case-ttl {
	border-radius: 2rem;
	border-width: 3px;
	font-size: 1.5rem;
	height: 4rem;
	max-width: 23rem;
}

.point01__case-ttl.--rd {
	max-width: 25.5rem;
}

.point01__case-ttlLogo {
	max-width: 16rem;
}

.point01__items {
	flex-direction: column;
	gap: 0;
	margin-top: 1.6rem;
}

.point01__item1 {
	border-bottom: 0.5rem dotted #FAD4CD;
	border-right: none;
	max-width: 100%;
	padding-bottom: 2.6rem;
	padding-right: 0;
	position: relative;
	width: 100%;
}

.point01__item1::before {
	background: #fff;
	bottom: -2rem;
	content: "";
	display: block;
	height: 3rem;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 5.7rem;
	z-index: 1;
}

.point01__item1::after {
	-webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
	background: #fad4cd;
	bottom: -1.3rem;
	clip-path: polygon(100% 0, 0 0, 50% 100%);
	content: "";
	display: block;
	height: 2rem;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 5.7rem;
	z-index: 2;
}

.point01__item1-img {
	margin: 0 auto;
	max-width: 27.3rem;
	position: relative;
	right: 1.2rem;
}

.point01__item2 {
	padding: 2.8rem 0 0 0;
}

.point01__item2-img {
	margin: 2rem calc(50% - 42vw) 0;
	max-width: 32.8rem;
	width: 100vw;
}

.point01__text {
	font-size: 1.4rem;
}

.point01__item1-2 {
	padding-bottom: 2.6rem;
}

.point01__item1-2 .point01__item1-img {
	right: 0;
}

.point01__item2-2 {
	padding-bottom: 0;
	width: 100%;
}

.point01__item2-2 .point01__item2-img {
	margin-top: -3rem;
}

.point02__details {
	margin-top: 1.3rem;
}

.point02__img {
	max-width: 27.9rem;
}

.point02__items {
	margin-top: 2rem;
}

.point02__item {
	border-width: 2px;
	padding: 0;
}

.point02__item1 {
	flex-wrap: wrap;
	padding-bottom: 1.6rem;
}

.point02__eng {
	align-content: center;
	border-radius: 0.2rem;
	font-size: 1.44rem;
	height: 2.3rem;
	padding-top: 0.1rem;
	width: 3.1rem;
}

.point02__item1-ttl {
	font-size: 1.9rem;
	margin-left: 0.5rem;
}

.point02__item1-ttl small {
	font-size: 1.5rem;
}

.point02__item1-content {
	margin: 1.1rem auto 0;
	max-width: 100%;
	width: 100%;
}

.point02__item2 {
	padding: 1.4em 0 1.8rem;
}

.point02__item2__text {
	display: flex;
	flex: 1;
	flex-wrap: wrap;
	font-size: 1.5rem;
	line-height: 1.2;
	margin-left: 0.5rem;
}

.point02__item2__text span {
	font-size: 1.6rem;
	margin-right: 0.5rem;
	position: relative;
	top: 1.2rem;
}

.point02__item2__text strong {
	font-size: 1.9rem;
	margin-left: 2.9em;
}

.point02__item2__text strong small {
	font-size: 1.5rem;
}

.point02__item3 {
	gap: 2.8rem;
	padding-top: 2.2rem;
}

.point02__item3-top {
	border-radius: 0.4rem;
	border-width: 2px;
	padding: 0.9rem;
}

.point02__item3-top span {
	align-content: center;
	border-radius: 0.2rem;
	font-size: 1.15rem;
	height: 1.9rem;
	left: -1rem;
	padding-top: 0;
	top: -0.8rem;
	width: 2.3rem;
}

.point02__item3-top p {
	font-size: 1.6rem;
}

.point02__item3-top::after {
	bottom: -2.7rem;
	font-size: 2.3rem;
}

.point02__item3-center {
	border-radius: 0.4rem;
	border-width: 2px;
	padding: 1.4rem 1rem 0.8rem;
}

.point02__item3-center::after {
	bottom: -2.8rem;
	font-size: 2.3rem;
	left: 48%;
}

.point02__item3-center > span {
	font-size: 1.15rem;
	left: -1.8rem;
	padding: 0.5rem 0.7rem;
	top: -1.3rem;
}

.point02__item3-center p {
	font-size: 1.6rem;
}

.point02__item3-center p small {
	font-size: 1.4rem;
}

.point02__item3-bottom {
	border-radius: 0.6rem;
	max-width: 31.6rem;
	padding: 1rem;
}

.point02__item3-bottom p {
	font-size: 1.9rem;
}

.point02__item3-bottom span {
	font-size: 2rem;
	margin-top: 0.1rem;
}

.point02__item3-bottom p:nth-of-type(2) {
	margin-top: -0.1rem;
}

.point03__ttl {
	font-size: 1.9rem;
}

.point03__ttl span {
	display: block;
	font-size: 2.4rem;
	letter-spacing: 0.05em;
	margin-top: -0.3rem;
}

.point03__ttl span strong {
	font-size: 3.5rem;
}

.point03__details {
	margin-top: 1.7rem;
}

.point03__lists {
	gap: 1.2rem;
}

.point03__list {
	border-radius: 0.2rem;
	padding: 1.2rem 1rem 0.6rem;
}

.point03__list span {
	border-width: 2px;
	font-size: 1rem;
	height: 1.9rem;
	padding-top: 0.2rem;
	top: -0.9rem;
	width: 1.9rem;
}

.point03__list-ttl {
	font-size: 1.45rem;
}

.point03__item {
	padding: 3rem 0 2rem;
}

.point03__item:last-child {
	padding-bottom: 0.5rem;
}

.point03__item:not(:last-child) {
	border-bottom: 0.1px solid #7d7d7d;
}

.point03__item-heading {
	gap: 0.9rem;
}

.point03__item-heading span {
	border-width: 2px;
	font-size: 1.6rem;
	height: 3.1rem;
	padding-top: 0.3rem;
	width: 3.1rem;
}

.point03__item-note {
	font-size: 1.1rem;
	margin-top: 0.7rem;
}

.point03__item-ttlWrap p {
	font-size: 1.3rem;
	gap: 0.6rem;
}

.point03__item-ttlWrap p::before,
.point03__item-ttlWrap p::after {
	height: 1.3rem;
	width: 1px;
}

.point03__item-ttlWrap h4 {
	font-size: 2.2rem;
	margin-top: 0.3rem;
}

.point03__item-ttlWrap small {
	font-size: 1.6rem;
}

.point03__item2 .point03__item-heading {
	margin-right: 4rem;
}

.point03__item2-note {
	max-width: 10.4rem;
	right: -5rem;
	top: -2rem;
}

.point03__item2-content {
	margin-top: 1.5rem;
}

.point03__tabarea {
	margin-top: 1.5rem;
}

.point03__tabarea-heading {
	font-size: 1.5rem;
	padding-left: 7rem;
}

.point03__item3 .point03__item-heading {
	margin-right: 2rem;
}

.point03__item3-img {
	margin-top: 0;
	max-width: 28.3rem;
}

.point03__item3-textbox {
	border-radius: 0.3rem;
	left: auto;
	margin-top: 2rem;
	max-width: 26rem;
	padding: 0.8rem 1rem;
}

.point03__item3-textbox::before {
	height: 2.5rem;
	left: 2.1rem;
	top: -1.7rem;
	width: 1.8rem;
}

.point03__item3-text {
	font-size: 1.5rem;
}

.point03__feature {
	border-width: 3px;
	margin-top: 3.6rem;
	max-width: 31.6rem;
}

.point03__feature::before {
	height: 2rem;
	right: 5.5rem;
	width: 5.5rem;
}

.point03__feature-ttl {
	font-size: 1.5rem;
	padding: 0.5rem 1rem 0.8rem 1.8rem;
}

.point03__feature-ttl strong {
	font-size: 2rem;
}

.point03__feature-text {
	font-size: 1.7rem;
	padding: 0.7rem 2rem 1.1rem;
}

.point03__feature-text span strong {
	font-size: 2.2rem;
}

.point03__feature-img {
	left: auto;
	max-width: 9.2rem;
	right: -1.8rem;
	top: -1.9rem;
}

.support {
	padding: 2.5rem 0;
}

.support__heading {
	margin-top: 1.8rem;
	max-width: 31.4rem;
}

.support__note {
	font-size: 1.1rem;
	margin-top: 1rem;
}

.support__lists {
	border-radius: 0.5rem;
	margin-top: 2.4rem;
	padding-right: 1.5rem;
}

.support__lists-ttl {
	max-width: 27.1rem;
}

.support__list:first-of-type {
	margin-top: 1.8rem;
}

.support__list-heading {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.14) 0.76%, rgb(255, 255, 255) 16.72%);
	border-radius: 0 0.7rem 0.7rem 0;
	padding: 0.9rem 1rem 0.9rem 5.2rem;
}

.support__list-num {
	font-size: 5.4rem;
	left: 1.4rem;
	top: -1.5rem;
}

.support__list-ttl {
	font-size: 1.7rem;
	line-height: 1.3;
}

.support__list-text {
	font-size: 1.5rem;
	padding: 1rem 1rem 2.5rem 2.5rem;
}

.support__list:nth-of-type(4) .support__list-num,
.support__list:nth-of-type(5) .support__list-num {
	top: 0;
}

.voice {
	border-width: 1px;
	padding: 2.4rem 0 5.5rem;
}

.voice__items {
	flex-direction: column;
	gap: 2.4rem;
	margin-top: 2rem;
}

.voice__item {
	border-radius: 0.4rem;
	padding: 2.1rem 2.5rem 2.1rem;
	width: 100%;
}

.voice__text {
	font-size: 1.4rem;
	letter-spacing: 0;
	line-height: 1.64;
}

.voice__name {
	border-width: 1px;
	font-size: 1.4rem;
	margin-top: 1.2rem;
	padding: 0.5rem 1rem 0.7rem;
}

}


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