/* ----------------------------------------
Reset
---------------------------------------- */

* {
	margin: 0;
	padding: 0;
}

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

body {
	-webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

:where(a[href],
area,
button,
label[for],
select,
summary,
[tabindex]:not([tabindex*="-"])) {
	-ms-touch-action: manipulation;
	cursor: pointer;
	touch-action: manipulation;
}

:where(input[type=file]) {
	cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button {
	cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
	cursor: pointer;
}

:where(button,
button[type],
input[type=button],
input[type=submit],
input[type=reset])[disabled] {
	cursor: not-allowed;
}

/* ----------------------------------------
Base
---------------------------------------- */

html {
	font-size: 62.5%;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

html.is_fixed {
	height: 100%;
	overflow: hidden;
	width: 100%;
}

body {
	background-color: #fff;
	color: #333;
	font-family: "noto-sans-cjk-jp", sans-serif;
	font-size: 1.6rem;
	line-height: 1.5;
	min-height: 100vh;
	position: relative;
}

li {
	list-style: none;
}

a {
	color: #333;
}

a:hover {
	opacity: 0.7;
}

.ovx-h {
	overflow-x: hidden;
}

.anime-btn {
	-webkit-animation-name: anime_btn;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-duration: 1.5s;
	-webkit-animation-fill-mode: both;
	-webkit-transform-origin: center;
	animation-duration: 1.5s;
	animation-fill-mode: both;
	animation-iteration-count: infinite;
	animation-name: anime_btn;
	transform-origin: center;
}

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

.footer {
	background-image: url(../img/footer_bg.webp);
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 110px 30px 50px;
}

.footer__text {
	color: #fed300;
	font-size: 2.1rem;
	font-weight: 500;
	letter-spacing: calc(100 / 1000 * 1em);
	line-height: calc(45 / 21);
	margin-bottom: 40px;
	text-align: center;
}

.footer__catch {
	margin: 0 auto 90px;
	width: 854px;
}

.footer__catch img {
	aspect-ratio: 854/156;
}

.footer__btn {
	display: block;
	margin: 0 auto 80px;
	width: 464px;
}

.footer__btn img {
	aspect-ratio: 464/110;
}

.copyright {
	color: #fff;
	font-size: 1.2rem;
	letter-spacing: calc(50 / 1000 * 1em);
	text-align: center;
}

.footer-sub {
	-webkit-transform: translateX(-50%);
	bottom: 80px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
}

.footer-sub .copyright {
	color: #0a1808;
}

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

.header {
	background-color: #0a1808;
	padding: 30px;
}

.header__title {
	color: #fff;
	font-size: 3rem;
	letter-spacing: calc(50 / 1000 * 1em);
	line-height: 1;
	text-align: center;
}

/* ----------------------------------------
br
---------------------------------------- */

.br--under-tab {
	display: none;
}

.br--sp {
	display: none;
}

/* ----------------------------------------
form
---------------------------------------- */

.form {
	margin: 0 auto;
	max-width: 600px;
	width: 100%;
}

.form__container {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-ms-flex-wrap: wrap;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	gap: 5px 20px;
	justify-content: space-between;
}

.form__container:not(:first-child) {
	margin-top: 40px;
}

.form__label {
	font-size: 2.5rem;
	font-weight: bold;
	letter-spacing: calc(100 / 1000 * 1em);
	min-width: 155px;
}

.form__input {
	background-color: #fff;
	border: 3px solid #0a1808;
	border-radius: 10px;
	height: 53px;
	min-width: 335px;
	padding: 17px 28px;
	width: 100%;
}

.form__input:focus-visible {
	outline: none;
}

.form__input::-webkit-input-placeholder {
	color: #ccc;
	font-size: 1.4rem;
}

.form__input::-moz-placeholder {
	color: #ccc;
	font-size: 1.4rem;
}

.form__input:-ms-input-placeholder {
	color: #ccc;
	font-size: 1.4rem;
}

.form__input::-ms-input-placeholder {
	color: #ccc;
	font-size: 1.4rem;
}

.form__input::placeholder {
	color: #ccc;
	font-size: 1.4rem;
}

.form__radio-area {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	width: 100%;
}

.form__radio-area label {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #fff;
	border: 3px solid #0a1808;
	border-radius: 10px;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 1.8rem;
	height: 53px;
	justify-content: center;
	letter-spacing: calc(100 / 1000 * 1em);
	min-width: 155px;
	padding: 17px 28px;
	position: relative;
	width: calc((100% - 20px) / 2);
}

.form__radio-area label:has(:checked) {
	background-color: #a7beff;
}

.form__radio-area input {
	display: none;
}

.form__radio-area .wpcf7-form-control-wrap {
	position: static;
}

.form__select-wrapper {
	position: relative;
	width: 100%;
}

.form__select-wrapper::after {
	-webkit-transform: rotate(45deg);
	border-bottom: 2px solid #000;
	border-right: 2px solid #000;
	content: "";
	display: block;
	height: 10px;
	pointer-events: none;
	position: absolute;
	right: 20px;
	top: 20px;
	transform: rotate(45deg);
	width: 10px;
	z-index: 50;
}

.form__select-wrapper .wpcf7-form-control-wrap {
	position: static;
}

.form__select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 3px solid #0a1808;
	border-radius: 10px;
	color: #000;
	font-size: 1.8rem;
	height: 53px;
	letter-spacing: calc(100 / 1000 * 1em);
	min-width: 155px;
	padding: 0 28px;
	position: relative;
	width: 100%;
}

.form__select:invalid {
	color: #ccc;
	font-size: 1.4rem;
	font-weight: normal;
}

.form__select option {
	color: #000;
}

.form__submit {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #e50012;
	border: none;
	border-bottom: 7px solid #9d131f;
	border-radius: 10px;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 2.4rem;
	font-weight: 900;
	height: 64px;
	justify-content: center;
	letter-spacing: calc(50 / 1000 * 1em);
	margin: 50px auto 0;
	text-decoration: none;
	width: 400px;
}

.form__submit:active {
	border-bottom: none;
	height: 57px;
	margin-top: 57px;
}

.wpcf7-form-control-wrap {
	position: relative;
	width: 100%;
}

.wpcf7-radio {
	display: block;
	text-align: center;
}

.wpcf7-list-item {
	margin-left: 0;
}

.wpcf7-response-output {
	display: none;
}

.wpcf7-not-valid-tip {
	font-size: 1.2rem;
	left: 20px;
	position: absolute;
	top: calc(100% + 5px);
}

.grecaptcha-badge {
	visibility: hidden;
}

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

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

.tab__label {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-transform: translateX(-50%);
	align-items: center;
	border: none;
	color: #999;
	display: none;
	font-size: 1.4rem;
	left: 50%;
	padding: 5px 10px;
	position: absolute;
	text-align: center;
	text-decoration: underline;
	transform: translateX(-50%);
	z-index: 100;
}

.tab__label--next {
	bottom: 220px;
	color: #000;
	display: none;
	font-size: 2.4rem;
	font-weight: bold;
	letter-spacing: calc(75 / 1000 * 1em);
}

.tab__label--next.is_show:has(+ .is_show) {
	display: block;
}

.tab__label--return {
	bottom: 160px;
}

.tab__label--return:has(+ .is_show) {
	display: block;
}

.tab__content {
	-webkit-transform: translateX(-200%);
	-webkit-transition: -webkit-transform 0.4s;
	height: 0;
	opacity: 0;
	pointer-events: none;
	transform: translateX(-200%);
	transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	transition: transform 0.4s, -webkit-transform 0.4s;
	visibility: hidden;
	width: 100%;
}

.tab__content.is_show {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	-webkit-transform: translateX(0);
	height: auto;
	opacity: 1;
	order: 1;
	padding-bottom: 100px;
	padding-top: 30px;
	pointer-events: auto;
	transform: translateX(0);
	visibility: visible;
}

.tab__content.is_show ~ .tab__content {
	-webkit-transform: translateX(200%);
	transform: translateX(200%);
}

/* ----------------------------------------
result
---------------------------------------- */

.result {
	background-image: url(../img/result_bg.webp);
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: calc(100vh - 9rem);
	padding: 60px 30px 250px;
}

.result__title {
	margin: 0 auto 55px;
	width: 175px;
}

.result__title img {
	aspect-ratio: 175/44;
}

.result__contents {
	background-color: #f9f2f2;
	border: 3px solid #0a1808;
	border-radius: 30px;
	margin: 0 auto 70px;
	max-width: 900px;
	overflow: hidden;
	padding: 45px 30px 70px;
	position: relative;
	z-index: 0;
}

.result__contents::after {
	background-blend-mode: lighten;
	background-color: rgba(255, 255, 255, 0.5);
	background-image: url(../img/result.webp);
	background-position: bottom -15px right -32px;
	background-repeat: no-repeat;
	background-size: 350px;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.result__icon {
	aspect-ratio: 1;
	margin: 0 auto 30px;
	width: 180px;
}

.result__heading {
	color: #e50012;
	font-family: "shippori-mincho-b1", sans-serif;
	font-size: 4.4rem;
	letter-spacing: calc(25 / 1000 * 1em);
	line-height: 1.2;
	margin-bottom: 30px;
	text-align: center;
}

.result__desc {
	color: #333;
	font-size: 1.4rem;
	font-weight: bold;
	letter-spacing: calc(50 / 1000 * 1em);
	line-height: 2;
	margin-bottom: 40px;
	text-align: center;
}

.result__arrow {
	aspect-ratio: 109/29;
	margin: 0 auto 30px;
	width: 109px;
}

.result__btn {
	display: block;
	margin: 0 auto;
	width: 625px;
}

.result__btn img {
	aspect-ratio: 625/110;
}

.message {
	max-width: 580px;
}

.message__heading {
	margin: 0 auto 30px;
	width: 340px;
}

.message__heading img {
	aspect-ratio: 340/36;
}

.message__desc {
	color: #333;
	font-weight: bold;
	letter-spacing: calc(50 / 1000 * 1em);
	line-height: calc(27 / 16);
	text-align: center;
}

.message__desc em {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(40%, #fed300));
	background: linear-gradient(transparent 60%, #fed300 40%);
	display: inline-block;
	font-style: normal;
}

/* ----------------------------------------
step
---------------------------------------- */

.step {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	background-image: url(../img/step_bg.webp);
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: calc(100vh - 9rem);
	overflow: hidden;
	user-select: none;
}

.step__inner {
	margin: 0 auto;
	max-width: 1440px;
	padding: 110px 30px 210px;
	position: relative;
	width: 100%;
	z-index: 10;
}

.step__section {
	cursor: auto;
	margin: 0 auto;
	max-width: 800px;
	position: relative;
	width: 100%;
	z-index: 0;
}

.step__bar {
	-webkit-transform: translateX(-50%);
	background-color: #a1a1a1;
	display: none;
	height: 7px;
	left: 50%;
	max-width: 600px;
	position: absolute;
	top: 60px;
	transform: translateX(-50%);
	width: 100%;
	z-index: 10;
}

.step__bar::after {
	background-color: #e50012;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
}

.step__bar.is_show {
	display: block;
}

.step__bar--01::after {
	content: "";
	width: 9.0909090909%;
}

.step__bar--02::after {
	content: "";
	width: 18.1818181818%;
}

.step__bar--03::after {
	content: "";
	width: 27.2727272727%;
}

.step__bar--04::after {
	content: "";
	width: 36.3636363636%;
}

.step__bar--05::after {
	content: "";
	width: 45.4545454545%;
}

.step__bar--06::after {
	content: "";
	width: 54.5454545455%;
}

.step__bar--07::after {
	content: "";
	width: 63.6363636364%;
}

.step__bar--08::after {
	content: "";
	width: 72.7272727273%;
}

.step__bar--09::after {
	content: "";
	width: 81.8181818182%;
}

.step__bar--10::after {
	content: "";
	width: 90.9090909091%;
}

.step__bar--11::after {
	content: "";
	width: 100%;
}

.step__title {
	margin: 0 auto 40px;
	width: 522px;
}

.step__num {
	margin: 0 auto 15px;
	width: 102px;
}

.step__note {
	color: #000;
	letter-spacing: calc(75 / 1000 * 1em);
	margin-bottom: 50px;
	text-align: center;
}

.step__list {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-ms-flex-wrap: wrap;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	gap: 25px 5%;
	justify-content: center;
}

.step__item {
	width: 47.5%;
}

.step__item input {
	display: none;
}

.step__item label {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #f9f2f2;
	border: 3px solid #0a1808;
	border-radius: 10px;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 2rem;
	font-weight: bold;
	height: 60px;
	justify-content: center;
	letter-spacing: calc(75 / 1000 * 1em);
	width: 100%;
}

.step__item label:hover {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.step__item label:has(:checked) {
	-webkit-box-shadow: none;
	background-color: #a7beff;
	box-shadow: none;
}

.step__item .wpcf7-not-valid-tip {
	display: none;
}

/* ----------------------------------------
top
---------------------------------------- */

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

.fv {
	position: relative;
}

.fv__img {
	-o-object-fit: cover;
	aspect-ratio: 1440/818;
	object-fit: cover;
	width: 100%;
}

.fv__img--sp {
	display: none;
}

.fv__btn {
	display: block;
	left: 17%;
	position: absolute;
	top: 72%;
	width: 32.2222222222vw;
}

.fv__btn img {
	aspect-ratio: 464/110;
}

/* ----------------------------------------
intro
---------------------------------------- */

.intro {
	background-color: #fed600;
	padding: 85px 30px;
}

.intro__img {
	aspect-ratio: 2/3;
	margin: 0 auto 60px;
	width: 800px;
}

.intro__btn {
	display: block;
	margin: 0 auto;
	width: 464px;
}

.intro__btn img {
	aspect-ratio: 464/110;
}

/* ----------------------------------------
case
---------------------------------------- */

.case {
	background-image: url(../img/case_bg.webp);
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 95px 30px 105px;
}

.case__title {
	margin: 0 auto 50px;
	width: 762px;
}

.case__title img {
	aspect-ratio: 762/211;
}

.case__list {
	-ms-flex-wrap: wrap;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	margin: 0 auto;
	max-width: 1055px;
}

.case__item {
	width: calc((100% - 25px) / 2);
}

.case__item img {
	aspect-ratio: 515/514;
}

/* ----------------------------------------
method
---------------------------------------- */

.method {
	background-image: url(../img/method_bg.webp);
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 105px 30px;
}

.method__title {
	margin: 0 auto 40px;
	width: 822px;
}

.method__title img {
	aspect-ratio: 822/70;
}

.method__list {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
	justify-content: center;
	margin: 0 auto;
	max-width: 1095px;
}

.method__item {
	width: calc((100% - 80px) / 3);
}

.method__img {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 275px;
	justify-content: center;
	margin-bottom: 10px;
}

.method__img img {
	height: 100%;
}

.method__caption {
	color: #000;
	font-size: 3.6rem;
	letter-spacing: calc(75 / 1000 * 1em);
	margin-bottom: 15px;
	text-align: center;
}

.method__desc {
	background-color: #ee1e28;
	color: #fff;
	font-family: "shippori-mincho-b1", sans-serif;
	font-size: 1.8rem;
	letter-spacing: calc(50 / 1000 * 1em);
	margin: 0 auto;
	padding: 7px 15px;
	text-align: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.method__desc br {
	display: none;
}

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

.footer {
	padding: 90px 25px 40px;
}

.footer__text {
	font-size: 1.8rem;
}

.footer__catch {
	width: 700px;
}

.footer__btn {
	width: 400px;
}

.header {
	padding: 25px;
}

.br--under-tab {
	display: block;
}

.form__submit {
	font-size: 2rem;
	height: 60px;
	width: 350px;
}

.form__submit:active {
	height: 53px;
}

.tab__label--next {
	bottom: 200px;
}

.tab__label--return {
	bottom: 150px;
}

.result {
	min-height: calc(100vh - 8rem);
	padding: 50px 25px 200px;
}

.result__title {
	width: 150px;
}

.result__contents::after {
	background-size: 300px;
}

.result__contents {
	padding: 40px 25px 60px;
}

.result__heading {
	font-size: 3.8rem;
}

.result__btn {
	width: 550px;
}

.message {
	max-width: 560px;
}

.message__heading {
	width: 320px;
}

.step {
	min-height: calc(100vh - 8rem);
}

.step__inner {
	padding: 90px 25px 180px;
}

.intro {
	padding: 70px 25px;
}

.intro__img {
	width: 700px;
}

.intro__btn {
	width: 400px;
}

.case {
	padding: 80px 25px 90px;
}

.case__title {
	width: 700px;
}

.method {
	padding: 90px 25px;
}

.method__title {
	width: 700px;
}

.method__list {
	gap: 20px;
}

.method__item {
	width: calc((100% - 40px) / 3);
}

.method__img {
	height: 187px;
}

.method__caption {
	font-size: 2.6rem;
}

.method__desc br {
	display: block;
}

}

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

.footer {
	padding: 11.71875vw 3.90625vw 5.2083333333vw;
}

.footer__text {
	font-size: max(2.734375vw, 1.3rem);
	letter-spacing: calc(50 / 1000 * 1em);
	margin-bottom: 5.2083333333vw;
}

.footer__catch {
	margin-bottom: 11.71875vw;
	width: 91.1458333333vw;
}

.footer__btn {
	margin-bottom: 10.4166666667vw;
	width: 95%;
}

.copyright {
	font-size: 1rem;
}

.footer-sub {
	bottom: 30px;
}

.header {
	padding: 20px;
}

.header__title {
	font-size: 2.2rem;
}

.br--sp {
	display: block;
}

.form__container {
	gap: 8px 20px;
}

.form__container:not(:first-child) {
	margin-top: 30px;
}

.form__label {
	font-size: 2rem;
	letter-spacing: 0.05em;
}

.form__input {
	height: 45px;
	padding: 17px 15px;
}

.form__radio-area label {
	height: 45px;
}

.form__select-wrapper::after {
	top: 16px;
}

.form__select {
	height: 45px;
	padding: 0 15px;
}

.form__submit {
	font-size: 1.8rem;
	height: 50px;
	margin-top: 60px;
	width: 300px;
}

.form__submit:active {
	height: 43px;
	margin-top: 67px;
}

.tab__label--next {
	bottom: 140px;
	font-size: 2rem;
}

.tab__label--return {
	bottom: 95px;
	font-size: 1.2rem;
	font-weight: bold;
}

.result {
	min-height: calc(100vh - 6.2rem);
	padding: 6.5104166667vw 3.2552083333vw 26.0416666667vw;
}

.result__title {
	margin-bottom: 7.1614583333vw;
	width: 22.7864583333vw;
}

.result__contents::after {
	background-blend-mode: unset;
	background-color: unset;
	background-position: bottom -7.8125vw right 20.1822916667vw;
	background-size: 52.0833333333vw;
}

.result__contents {
	margin-bottom: 9.1145833333vw;
	padding: 5.2083333333vw 3.2552083333vw 52.0833333333vw;
}

.result__icon {
	margin-bottom: 3.90625vw;
	width: 29.9479166667vw;
}

.result__heading {
	font-size: 5vw;
	line-height: 1.4;
	margin-bottom: 3.90625vw;
}

.result__desc {
	font-size: 3.4666666667vw;
	letter-spacing: calc(0 / 1000 * 1em);
	margin-bottom: 5.2083333333vw;
}

.result__arrow {
	margin-bottom: 5.2083333333vw;
	width: 15.625vw;
}

.result__btn {
	width: 95%;
}

.message {
	max-width: unset;
}

.message__heading {
	margin-bottom: 4.5572916667vw;
	width: 66.6666666667vw;
}

.message__desc {
	font-size: 3.7333333333vw;
	letter-spacing: calc(0 / 1000 * 1em);
}

.step {
	min-height: calc(100vh - 6.2rem);
}

.step__inner {
	padding: 70px 25px 105px;
}

.step__bar {
	width: 80%;
}

.step__title {
	width: 300px;
}

.step__num {
	width: 65px;
}

.step__note {
	font-size: 1.2rem;
	margin-bottom: 25px;
}

.step__list {
	gap: 20px 5%;
}

.step__item {
	min-width: 300px;
}

.step__item label {
	font-size: 1.6rem;
	height: 45px;
}

.fv__img {
	display: none;
}

.fv__img--sp {
	aspect-ratio: 768/1126;
	display: block;
	width: 100%;
}

.fv__btn {
	left: 6%;
	top: 82%;
	width: 88%;
}

.intro {
	padding: 9.1145833333vw 3.2552083333vw;
}

.intro__img {
	margin-bottom: 7.8125vw;
	width: 78.125vw;
}

.intro__btn {
	width: 95%;
}

.case {
	background-image: url(../img/case_bg-sp.webp);
	background-repeat: repeat;
	background-size: 100%;
	padding: 10.4166666667vw 3.2552083333vw 11.71875vw;
}

.case__title {
	margin-bottom: 6.5104166667vw;
	width: 78.125vw;
}

.case__list {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	flex-direction: column;
	gap: 5.2083333333vw;
}

.case__item {
	max-width: 515px;
	width: 85%;
}

.method {
	padding: 11.71875vw 3.2552083333vw;
}

.method__title {
	margin-bottom: 5.2083333333vw;
	width: 78.125vw;
}

.method__list {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 5.2083333333vw;
}

.method__item:first-child {
	width: 100%;
}

.method__item:not(:first-child) {
	width: calc((100% - 5.2083333333vw) / 2);
}

.method__img {
	height: 35.8072916667vw;
	margin-bottom: 1.3020833333vw;
}

.method__caption {
	font-size: 4.6875vw;
	margin-bottom: 1.953125vw;
}

.method__desc {
	font-size: 2.8645833333vw;
	padding: 4px 10px;
}

.method__desc br {
	display: none;
}

}

@-webkit-keyframes anime_btn {

0% {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

50% {
	-webkit-transform: scale3d(1.1, 1.1, 1.1);
	transform: scale3d(1.1, 1.1, 1.1);
}

100% {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

}

@keyframes anime_btn {

0% {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

50% {
	-webkit-transform: scale3d(1.1, 1.1, 1.1);
	transform: scale3d(1.1, 1.1, 1.1);
}

100% {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

}

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