body {
	font-size: 1rem;
	font-weight: 400;
}

.pc-only {
	display: none;
}

.pc-i-only {
	display: none;
}

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

/* ヘッダー固定した場合、ページ内リンクの遷移先がズレる問題解消 */

/* 画面の高さに合わせてフッターを下に広げる */

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

footer {
	margin-top: auto;
}

/* ドロワー表示時、 背景を固定してスクロールできないようにする */

body.fixed {
	height: 100%;
	overflow: hidden;
	width: 100%;
}

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

/* ホバー */

a,
button {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s;
}

/* 非表示設定（視覚的に隠しつつスクリーンリーダーでは読み上げられる） */

/* https://gist.github.com/roatnek/c24d5257c4f6d5b1ef0f2328609a0221 */

.visually-hidden {
	clip: rect(1px, 1px, 1px, 1px) !important;
	height: 1px !important;
	overflow: hidden !important;
	position: absolute !important;
	width: 1px !important;
}

.wbr {
	display: inline-block;
}

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

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%; /* 実機端末を横向きにした際のブラウザの自動拡大をオフ */
	-webkit-text-size-adjust: 100%;
	line-height: 1;
	min-height: 100vh;
	text-rendering: optimizeSpeed; /* 上記のSafari用 */
}

/* 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]) {
	filter: blur(10px);
}

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

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

hr {
	border: 0;
	height: 0;
	margin: 0;
	padding: 0;
}

address {
	font-style: normal;
}

/* js-triggerと一緒に使う */

/* =========================================== */

/*                 inview                      */

/* =========================================== */

.inview {
	opacity: 0;
	transform: translateY(30px);
	transition: transform 2s, opacity 2s;
}

.inview.show {
	opacity: 1;
	transform: translateY(0);
}

/* =========================================== */

/*                slide-up                     */

/* =========================================== */

.slide-up {
	display: inline-block;
	overflow: hidden;
}

.slide-up * {
	display: inline-block;
	opacity: 0;
	transform: translateY(100%);
}

.slide-up.show * {
	animation-duration: 1s;
	animation-fill-mode: forwards;
	animation-name: slideInFromBottom;
}

/* =========================================== */

/*               anime-zoom                    */

/* =========================================== */

.anime-zoom__img {
	overflow: hidden;
}

.anime-zoom:hover .anime-zoom__img img {
	transform: scale(1.2, 1.2);
}

.c-base-btn {
	display: flex;
	justify-content: center;
}

.c-base-btn a {
	align-items: center;
	background-color: #5B7BA8;
	border-radius: 3.125rem;
	box-shadow: 4px 4px 4px 0 rgba(255, 255, 255, 0.25) inset;
	color: #fff;
	display: inline-flex;
	filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
	font-size: 1.25rem;
	font-weight: 700;
	height: 3.75rem;
	justify-content: center;
	max-width: 20rem;
	transition: opacity 0.3s ease;
	width: 100%;
}

.c-content--layout {
	margin-bottom: 3.75rem;
}

.c-content .c-content__inner > *:last-child {
	margin-bottom: 0;
}

.c-content .c-content__inner ol {
	list-style: decimal;
}

.c-content .c-content__inner ul {
	list-style: disc;
}

.c-content .c-content__inner > ol,
.c-content .c-content__inner > ul {
	margin-bottom: 1.875rem;
}

.c-content .c-content__inner > ol ol,
.c-content .c-content__inner > ol ul,
.c-content .c-content__inner > ul ol,
.c-content .c-content__inner > ul ul {
	padding-left: 0.625rem;
}

.c-content .c-content__inner > ol > li {
	margin-bottom: 1.25rem;
}

.c-content .c-content__inner ol > li,
.c-content .c-content__inner ul > li {
	list-style-position: inside !important;
}

.c-content .c-content__inner ol > li,
.c-content .c-content__inner ul > li {
	font-size: 0.875rem;
	line-height: 1.5em;
}

.c-content .c-content__inner > ol > li > ul ul,
.c-content .c-content__inner > ol > li > ol ul,
.c-content .c-content__inner > ul > li > ul ul,
.c-content .c-content__inner > ul > li > ol ul {
	list-style: circle;
}

.c-content .c-content__inner > p {
	font-size: 0.875rem;
	line-height: 1.5em;
	margin-bottom: 1.25rem;
}

.c-content .c-content__inner > p + h2,
.c-content .c-content__inner > p + h3,
.c-content .c-content__inner > p + h4,
.c-content .c-content__inner > p + figure {
	margin-top: 0.625rem;
}

.c-content a:not(.wp-element-button) {
	-webkit-text-decoration: underline;
	color: #A2C7E5;
	text-decoration: underline;
	text-underline-offset: 0.3ex;
}

.hidden-fields-container {
	border: none;
	margin: 0;
	padding: 0;
}

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

.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
	display: none;
}

.wpcf7-form-control-wrap.is-show .wpcf7-not-valid-tip {
	display: block;
}

.wpcf7-required {
	display: none;
}

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

.footer-sokochi {
	background-color: #2D1F57;
	color: #fff;
	padding-bottom: 1.71875rem;
	padding-top: 1.5625rem;
}

.footer-sokochi__copyright {
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.4583333333;
	text-align: center;
}

/* =========================================== */

/*                   Header                    */

/* =========================================== */

.header {
	background-color: #A2C7E5;
	color: #5B7BA8;
	filter: drop-shadow(0 0.125rem 0.125rem rgba(0, 0, 0, 0.25));
	height: 4.375rem;
	position: absolute;
	width: 100%;
	z-index: 200;
}

.header__inner {
	align-items: center;
	display: grid;
	grid-template-columns: max-content auto;
	height: inherit;
	justify-content: space-between;
}

.header__logo {
	display: block;
	height: 100%;
}

.header__logo-link {
	align-items: center;
	display: flex;
	height: 100%;
	width: 3.25rem;
}

.header__logo-link:hover {
	opacity: 1;
}

.header__logo-link img {
	-o-object-fit: cover;
	aspect-ratio: 73/70;
	object-fit: cover;
}

.header__btns {
	grid-gap: 0.625rem;
	align-items: center;
	display: grid;
	gap: 0.625rem;
	grid-template-columns: 8.125rem 9.375rem;
	height: 3.125rem;
}

.header__btn {
	height: inherit;
}

.header__btn-link {
	align-items: center;
	border-radius: 3.125rem;
	box-shadow: 0.125rem 0.125rem 0.125rem 0 rgba(255, 255, 255, 0.25) inset;
	color: #fff;
	display: flex;
	filter: drop-shadow(0 0.125rem 0.125rem rgba(0, 0, 0, 0.25));
	flex-direction: column;
	font-size: 1rem;
	font-weight: 700;
	height: inherit;
	justify-content: center;
	line-height: 100%;
	text-align: center;
	width: 100%;
}

.header__btn-link.-yellow {
	background-color: #E6B241;
	font-size: 1.25rem;
	padding-bottom: 0.375rem;
}

.header__btn-link.-yellow span {
	font-size: 0.75rem;
}

.header__btn-link.-red {
	background-color: #E64141;
}

.inner,
.inner-shiten,
.inner-b,
.inner-a {
	margin-left: auto;
	margin-right: auto;
	padding-left: 0.625rem;
	padding-right: 0.625rem;
	width: 100%;
}

.footer-shiten {
	padding-bottom: 1.71875rem;
	padding-top: 1.5625rem;
}

body.shiten .footer-shiten {
	background-color: #fff;
}

.footer-shiten__copyright {
	text-align: center;
}

.footer-shiten__copyright.-page {
	font-size: 0.625rem;
	font-weight: 400;
	line-height: 1.4;
}

.footer-shiten__copyright.-thanks {
	font-family: "M PLUS 1", sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.4583333333;
}

.footer-shiten--page {
	background-color: #fff;
	color: #2B2A2A;
	padding-bottom: 3rem;
	padding-top: 2.5rem;
	text-align: center;
}

.footer-shiten__company {
	grid-gap: 0.625rem;
	align-items: center;
	color: #273993;
	display: grid;
	font-size: 1.25rem;
	font-weight: 700;
	gap: 0.625rem;
	justify-content: center;
	margin-bottom: 1.25rem;
}

.footer-shiten__info {
	grid-gap: 1.125rem;
	display: grid;
	gap: 1.125rem;
	margin-bottom: 1.875rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.footer-shiten__info-item {
	grid-gap: 0.125rem;
	display: grid;
	gap: 0.125rem;
	text-align: left;
}

.footer-shiten__info-label,
.footer-shiten__info-value {
	font-size: 0.75rem;
	line-height: 150%;
}

.footer-shiten__info-label a,
.footer-shiten__info-value a {
	color: #273993;
	display: block;
	text-align: right;
}

.footer-shiten__links {
	grid-gap: 2.3125rem;
	align-items: center;
	display: grid;
	gap: 2.3125rem;
	grid-template-columns: repeat(2, auto);
	justify-content: center;
	margin-bottom: 1.25rem;
}

.footer-shiten__link {
	color: #273993;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.4285714286;
}

/* =========================================== */

/*                   Header                    */

/* =========================================== */

.header-shiten {
	background: linear-gradient(to right, #fff 0%, #fff calc(50% - 7.1875rem), #59CAEB calc(50% - 7.1875rem), #59CAEB 100%);
	color: #2B2A2A;
	filter: drop-shadow(0 0.125rem 0.125rem rgba(0, 0, 0, 0.25));
	height: 8.125rem;
	position: fixed;
	width: 100%;
	z-index: 200;
}

.header-shiten.-thanks {
	position: absolute;
}

.header-shiten__inner {
	align-items: center;
	display: grid;
	grid-template-columns: max-content auto;
	height: inherit;
	justify-content: space-between;
}

.header-shiten__logo {
	align-self: flex-start;
	background-color: #fff;
	display: block;
	height: 4.375rem;
	padding-right: 0.625rem;
}

.header-shiten__logo-link {
	align-items: center;
	display: flex;
	height: 100%;
	width: 3.25rem;
}

.header-shiten__logo-link:hover {
	opacity: 1;
}

.header-shiten__logo-link img {
	-o-object-fit: cover;
	aspect-ratio: 73/70;
	object-fit: cover;
}

.header-shiten__btns {
	grid-gap: 0.625rem;
	align-items: center;
	display: grid;
	gap: 0.625rem;
	grid-template-columns: 12.5rem;
}

.header-shiten__btn {
	height: 3.125rem;
}

.header-shiten__btn-link {
	align-items: center;
	border-radius: 3.125rem;
	box-shadow: 0 0.25rem 0.25rem 0 rgba(255, 255, 255, 0.25) inset;
	color: #fff;
	display: flex;
	filter: drop-shadow(0 0.125rem 0.125rem rgba(0, 0, 0, 0.25));
	flex-direction: column;
	font-size: 1.25rem;
	font-weight: 700;
	height: inherit;
	justify-content: center;
	line-height: 100%;
	text-align: center;
	width: 100%;
}

.header-shiten__btn-link.-tel {
	background-color: #273993;
	font-size: 1.5rem;
	padding-bottom: 0.375rem;
}

.header-shiten__btn-link.-tel span {
	font-size: 0.8125rem;
	margin-bottom: -0.25rem;
}

.header-shiten__btn-link.-mail {
	background-color: #F66C6C;
}

.footer-sokochi {
	padding-bottom: 1.875rem;
	padding-top: 1.71875rem;
}

body.sokochi-a .footer-sokochi {
	background-color: #2D1F57;
	color: #fff;
}

body.sokochi-b .footer-sokochi {
	background-color: #fff;
	color: #3b3b3b;
}

.footer-sokochi__nav {
	margin-bottom: 1.5rem;
}

.footer-sokochi__nav-items {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 0.625rem;
	justify-content: center;
}

.footer-sokochi__nav-item {
	align-items: center;
	display: flex;
	gap: 0.625rem;
}

.footer-sokochi__nav-item::before {
	content: "｜";
	font-size: 0.875rem;
}

.footer-sokochi__nav-item:first-child::before {
	display: none;
}

.footer-sokochi__nav-link {
	-webkit-text-decoration: none;
	color: inherit;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
}

.footer-sokochi__copyright {
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.4583333333;
	text-align: center;
}

/* =========================================== */

/*                   Header                    */

/* =========================================== */

.header-sokochi {
	color: #fff;
	filter: drop-shadow(0 0.125rem 0.125rem rgba(0, 0, 0, 0.25));
	height: 4.375rem;
	position: absolute;
	width: 100%;
	z-index: 200;
}

body.sokochi-a .header-sokochi {
	background-color: #A2C7E5;
}

body.sokochi-b .header-sokochi {
	background-color: #fff;
	position: fixed;
}

body.sokochi-b .header-sokochi__btn-link.-yellow {
	font-size: 1rem;
	gap: 0.125rem;
}

.header-sokochi__inner {
	align-items: center;
	display: grid;
	grid-template-columns: max-content auto;
	height: inherit;
	justify-content: space-between;
}

.header-sokochi__logo {
	display: block;
	height: 100%;
}

.header-sokochi__logo-link {
	align-items: center;
	display: flex;
	height: 100%;
	width: 3.25rem;
}

.header-sokochi__logo-link:hover {
	opacity: 1;
}

.header-sokochi__logo-link img {
	-o-object-fit: cover;
	aspect-ratio: 73/70;
	object-fit: cover;
}

.header-sokochi__btns {
	grid-gap: 0.625rem;
	align-items: center;
	display: grid;
	gap: 0.625rem;
	grid-template-columns: 8.125rem 9.375rem;
	height: 3.125rem;
}

.header-sokochi__btn {
	height: inherit;
}

.header-sokochi__btn-link {
	align-items: center;
	border-radius: 3.125rem;
	box-shadow: 0.125rem 0.125rem 0.125rem 0 rgba(255, 255, 255, 0.25) inset;
	color: #fff;
	display: flex;
	filter: drop-shadow(0 0.125rem 0.125rem rgba(0, 0, 0, 0.25));
	flex-direction: column;
	font-size: 1rem;
	font-weight: 700;
	height: inherit;
	justify-content: center;
	line-height: 100%;
	text-align: center;
	width: 100%;
}

.header-sokochi__btn-link.-yellow {
	background-color: #E6B241;
	font-size: 1.25rem;
	padding-bottom: 0.375rem;
}

.header-sokochi__btn-link.-yellow span {
	font-size: 0.75rem;
}

.header-sokochi__btn-link.-red {
	background-color: #E64141;
}

/* =========================================== */

/*                   404 Error                */

/* =========================================== */

.error--layout {
	margin-top: 4.375rem;
	padding-bottom: 5rem;
	padding-top: 3.125rem;
}

.error__inner {
	font-family: "Zen Maru Gothic", sans-serif;
	text-align: center;
}

.error__heading {
	color: #5B7BA8;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 1.25rem;
}

.error__text {
	color: #5B7BA8;
	font-size: 1rem;
	font-weight: 500;
	line-height: 2;
	margin-bottom: 2.5rem;
}

.policy--layout {
	padding-bottom: 5rem;
	padding-top: 7.5rem;
	position: relative;
}

.policy__inner {
	text-align: center;
}

.policy__content {
	grid-gap: 1rem;
	display: grid;
	gap: 1rem;
	text-align: left;
}

/* =========================================== */

/*                   自由記述                    */

/* =========================================== */

.policy__content h2 {
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 180%;
	margin-top: 2rem;
}

.policy__content h3,
.policy__content h4 {
	margin-top: 1.5rem;
}

.policy__content li {
	list-style-position: inside;
	list-style-type: "・";
	padding-left: 1.375rem;
	text-indent: -1.375rem;
}

.policy__content li::marker {
	letter-spacing: 0.2em;
}

.policy__content p,
.policy__content li {
	font-size: 1rem;
	letter-spacing: 0.05em;
	line-height: 180%;
}

.policy__content a {
	-webkit-text-decoration: underline;
	color: #A2C7E5;
	text-decoration: underline;
	text-underline-offset: 0.3ex;
}

/* =========================================== */

/*                   Content                   */

/* =========================================== */

.shiten-fv--layout {
	margin-top: 8.125rem;
}

.shiten-fv__inner {
	position: relative;
}

.shiten-fv__header {
	display: none;
}

.shiten-fv__header-inner {
	align-items: center;
	display: grid;
	height: inherit;
	position: relative;
}

.shiten-fv__header-logo-link:hover {
	opacity: 1;
}

.shiten-fv__header-logo-link img {
	-o-object-fit: cover;
	aspect-ratio: 73/70;
	object-fit: cover;
}

.shiten-fv__header-btn {
	height: 3.125rem;
}

.shiten-fv__header-btn-link {
	align-items: center;
	border-radius: 3.125rem;
	box-shadow: 0 0.25rem 0.25rem 0 rgba(255, 255, 255, 0.25) inset;
	color: #fff;
	display: flex;
	filter: drop-shadow(0 0.125rem 0.125rem rgba(0, 0, 0, 0.25));
	flex-direction: column;
	font-size: 1.25rem;
	font-weight: 700;
	height: inherit;
	justify-content: center;
	line-height: 100%;
	text-align: center;
	width: 100%;
}

.shiten-fv__header-btn-link.-tel {
	background-color: #273993;
	font-size: 1.5rem;
	padding-bottom: 0.375rem;
}

.shiten-fv__header-btn-link.-tel span {
	font-size: 0.8125rem;
	margin-bottom: -0.25rem;
}

.shiten-fv__header-btn-link.-mail {
	background-color: #F66C6C;
}

.shiten-fv__bg {
	height: 33.875rem;
	width: 100%;
}

.shiten-fv__bg img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.shiten-fv__container {
	left: 50%;
	position: absolute;
	text-align: center;
	top: 1.875rem;
	transform: translateX(-50%);
	z-index: 2;
}

.shiten-fv__fukidashi-1-img {
	left: 3.3125rem;
	position: absolute;
	rotate: -6deg;
	top: 3.9375rem;
	width: 13.25rem;
}

.shiten-fv__fukidashi-1-img img {
	-o-object-fit: cover;
	aspect-ratio: 350/120;
	object-fit: cover;
}

.shiten-fv__fukidashi-1-img.-lg {
	width: 16.75rem;
}

.shiten-fv__fukidashi-1-text {
	color: #273993;
	font-size: 2rem;
	font-weight: 700;
	left: 50%;
	line-height: 1.4285714286;
	position: absolute;
	top: 43%;
	transform: translate(-50%, -50%) rotate(2deg);
	width: 100%;
}

.shiten-fv__fukidashi-1-text span {
	font-size: 1.5rem;
}

.shiten-fv__branch-banner {
	align-items: center;
	background-color: #59CAEB;
	border-radius: 3.125rem;
	color: #273993;
	display: inline-flex;
	font-size: 1.25rem;
	font-weight: 700;
	height: 3.125rem;
	justify-content: center;
	letter-spacing: 0.032em;
	line-height: 1;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.shiten-fv__title {
	margin-top: 5.625rem;
}

.shiten-fv__title span {
	-webkit-text-stroke-color: #fff;
	-webkit-text-stroke-width: 0.625rem;
	line-height: 140%;
	paint-order: stroke;
}

.shiten-fv__title span.-lg {
	color: #273993;
	font-size: 2.5rem;
	font-weight: 700;
}

.shiten-fv__title span.-sm {
	color: #273993;
	font-size: 2rem;
	font-weight: 700;
}

.shiten-fv__fukidashi-2-img {
	bottom: 2.875rem;
	position: absolute;
	right: 0.125rem;
	width: 11rem;
	z-index: 1;
}

.shiten-fv__fukidashi-2-img img {
	-o-object-fit: cover;
	aspect-ratio: 396/259;
	object-fit: cover;
}

.shiten-fv__fukidashi-2-text {
	color: #273993;
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	left: 54%;
	letter-spacing: 0.1em;
	line-height: 1.4285714286;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.shiten-fv__img {
	bottom: 0;
	left: 39%;
	position: absolute;
	transform: translateX(-50%);
	width: 15.125rem;
}

.shiten-fv__img img {
	-o-object-fit: cover;
	aspect-ratio: 521/338;
	object-fit: cover;
}

/* =========================================== */

/*                   problem                   */

/* =========================================== */

.shiten-problem {
	background-color: #F5F5F5;
	overflow: hidden;
	position: relative;
}

.shiten-problem--layout {
	padding-bottom: 2.5rem;
	padding-top: 2.5rem;
}

.shiten-problem__heading {
	color: #273993;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.4;
	margin-bottom: 1.5rem;
	text-align: center;
}

.shiten-problem__cards {
	grid-gap: 1.25rem;
	display: grid;
	gap: 1.25rem;
	margin-bottom: 0.625rem;
}

.shiten-problem__card {
	position: relative;
}

.shiten-problem__card-body {
	grid-gap: 0.625rem 0;
	background-color: #fff;
	border-radius: 0.75rem;
	display: grid;
	gap: 0.625rem 0;
	grid-template-columns: auto 1fr;
	margin-bottom: 0.625rem;
	overflow: hidden;
	padding-bottom: 1rem;
	padding-right: 0.9375rem;
}

.shiten-problem__tag {
	align-items: center;
	background-color: #273993;
	border-radius: 0.9375rem 0 2rem 0;
	color: #fff;
	display: inline-flex;
	font-size: 0.875rem;
	font-weight: 700;
	height: 1.875rem;
	letter-spacing: 0.02em;
	padding-left: 0.9375rem;
	padding-right: 1.875rem;
	width: -moz-fit-content;
	width: fit-content;
}

.shiten-problem__label {
	align-items: center;
	border-bottom: 0.0625rem solid currentColor;
	display: grid;
	font-size: 0.875rem;
	font-weight: 400;
	height: 100%;
	justify-items: center;
	letter-spacing: 0.25em;
	place-items: center;
	text-align: center;
}

.shiten-problem__items {
	grid-gap: 0.625rem;
	display: grid;
	gap: 0.625rem;
	padding-left: 0.9375rem;
}

.shiten-problem__item {
	color: #2B2A2A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.45;
	position: relative;
}

.shiten-problem__btn {
	text-align: right;
}

.shiten-problem__btn-link {
	-webkit-text-decoration: none;
	align-items: baseline;
	background-color: #fff;
	border: 0.125rem solid #273993;
	border-radius: 2.5rem;
	color: #273993;
	display: inline-flex;
	font-size: 1rem;
	font-weight: 700;
	height: 1.875rem;
	justify-content: center;
	min-width: 10rem;
	padding: 0.25rem 1.6875rem 0.25rem 0.75rem;
	position: relative;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.shiten-problem__btn-link::after {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='12' viewBox='0 0 6 12' fill='none'%3E%3Cpath d='M1 1.00012L3.96296 6.00012L1 11.0001' stroke='%23273993' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 0.75rem;
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='12' viewBox='0 0 6 12' fill='none'%3E%3Cpath d='M1 1.00012L3.96296 6.00012L1 11.0001' stroke='%23273993' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
	mask-position: center;
	mask-repeat: no-repeat;
	position: absolute;
	right: 0.625rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0.375rem;
}

.shiten-problem__btn-link span {
	font-family: "M PLUS 1", sans-serif;
	font-weight: 700;
}

.shiten-problem__btn-link span.-main {
	font-size: 1rem;
}

.shiten-problem__btn-link span.-sub {
	font-size: 0.875rem;
}

.shiten-problem__message {
	position: relative;
	text-align: center;
	width: -moz-fit-content;
	width: fit-content;
}

.shiten-problem__fukidashi-img {
	margin-left: 4rem;
	position: relative;
	width: 15.5rem;
}

.shiten-problem__fukidashi-img img {
	-o-object-fit: cover;
	aspect-ratio: 329/227;
	object-fit: cover;
}

.shiten-problem__fukidashi-text {
	color: #273993;
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	left: 54%;
	line-height: 1.5;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.shiten-problem__mascot {
	margin-left: 1.25rem;
	margin-top: -4.75rem;
	position: relative;
	width: 11.125rem;
}

.shiten-problem__mascot img {
	-o-object-fit: cover;
	aspect-ratio: 300/282;
	object-fit: cover;
}

/* =========================================== */

/*                  solution                  */

/* =========================================== */

.shiten-solution {
	background-color: #90D0E3;
	position: relative;
}

.shiten-solution:before {
	background-color: #F5F5F5;
	clip-path: polygon(100% 0, 0 0, 50% 100%);
	content: "";
	display: block;
	height: 1.875rem;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.shiten-solution--layout {
	padding-bottom: 3.125rem;
	padding-top: 4.8125rem;
}

.shiten-solution__label {
	background-color: #fff;
	border-radius: 2.5rem;
	color: #2B2A2A;
	font-size: 1.5rem;
	font-weight: 700;
	height: 3.125rem;
	margin-bottom: 0.9375rem;
	margin-left: auto;
	margin-right: auto;
	padding-top: 0.9375rem;
	text-align: center;
	width: 17.1875rem;
}

.shiten-solution__label span {
	position: relative;
}

.shiten-solution__label span::before {
	background-color: currentColor;
	border-radius: 50%;
	content: "";
	display: block;
	height: 0.375rem;
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: 0.375rem;
}

.shiten-solution__heading {
	color: #2B2A2A;
	display: grid;
	margin-bottom: 0.625rem;
	text-align: center;
}

.shiten-solution__heading span {
	font-feature-settings: "palt";
	display: block;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.5;
}

.shiten-solution__heading span.-main {
	font-size: 1.5rem;
}

.shiten-solution__heading span.-main small {
	font-size: 1.25rem;
}

.shiten-solution__heading span.-sub {
	font-size: 1.25rem;
}

.shiten-solution__lead {
	color: #2B2A2A;
	font-size: 0.875rem;
	line-height: 1.8;
	margin-bottom: 2.1875rem;
	text-align: center;
}

.shiten-solution__list {
	grid-gap: 2.25rem;
	display: grid;
	gap: 2.25rem;
}

.shiten-solution__item {
	grid-gap: 0.75rem;
	display: grid;
	gap: 0.75rem;
}

.shiten-solution__item-text {
	grid-row-gap: 0.75rem;
	color: #2B2A2A;
	display: grid;
	row-gap: 0.75rem;
}

.shiten-solution__item-head {
	grid-gap: 0.3125rem;
	align-items: start;
	border-bottom: 0.0625rem solid #fff;
	display: grid;
	gap: 0.3125rem;
	grid-template-columns: auto 1fr;
}

.shiten-solution__item-no {
	color: #fff;
	font-family: "Akshar", sans-serif;
	font-size: 3.9375rem;
	font-weight: 700;
}

.shiten-solution__item-title {
	font-feature-settings: "palt";
	color: #273993;
	font-size: 1.28125rem;
	font-weight: 700;
	line-height: 120%;
	padding-top: 0.1875rem;
}

.shiten-solution__item-desc {
	font-size: 0.875rem;
	line-height: 1.8;
}

.shiten-solution__item-desc strong {
	font-weight: 700;
}

.shiten-solution__item-img {
	border-radius: 0.9375rem;
	overflow: hidden;
}

.shiten-solution__item-img img {
	-o-object-fit: cover;
	aspect-ratio: 480/390;
	object-fit: cover;
}

/* =========================================== */

/*                  support                   */

/* =========================================== */

.shiten-support--layout {
	overflow: hidden;
	padding-bottom: 3.125rem;
	padding-top: 3.125rem;
}

.shiten-support__heading {
	margin-bottom: 0.625rem;
	text-align: center;
}

.shiten-support__heading-main {
	background-color: #fff;
	background-image: linear-gradient(90deg, #273993 0,#273993 1.125rem, transparent 0 calc(100% - 1.125rem), #273993 calc(100% - 1.125rem)), linear-gradient(#273993 0,#273993 1.125rem, transparent 0 calc(100% - 1.125rem), #273993 calc(100% - 1.125rem)), linear-gradient(90deg, #273993 0,#273993 1.125rem, transparent 0 calc(100% - 1.125rem), #273993 calc(100% - 1.125rem)), linear-gradient(#273993 0,#273993 1.125rem, transparent 0 calc(100% - 1.125rem), #273993 calc(100% - 1.125rem));
	background-image: linear-gradient(90deg, #273993 0 1.125rem, transparent 0 calc(100% - 1.125rem), #273993 calc(100% - 1.125rem)), linear-gradient(#273993 0 1.125rem, transparent 0 calc(100% - 1.125rem), #273993 calc(100% - 1.125rem)), linear-gradient(90deg, #273993 0 1.125rem, transparent 0 calc(100% - 1.125rem), #273993 calc(100% - 1.125rem)), linear-gradient(#273993 0 1.125rem, transparent 0 calc(100% - 1.125rem), #273993 calc(100% - 1.125rem));
	background-position: top, right, bottom, left;
	background-repeat: no-repeat;
	background-size: 100% 0.3125rem, 0.3125rem 100%, 100% 0.3125rem, 0.3125rem 100%;
	color: #273993;
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.3em;
	line-height: 1.4583333333;
	padding: 0.3125rem 1.125rem;
	width: 20rem;
}

.shiten-support__lead {
	color: #273993;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.8;
	margin-bottom: 1rem;
	text-align: center;
}

.shiten-support__area {
	margin-bottom: 1.25rem;
}

.shiten-support__area img {
	-o-object-fit: cover;
	aspect-ratio: 355/403;
	object-fit: cover;
}

.shiten-support__badge {
	margin-bottom: 1.5rem;
	position: relative;
	text-align: center;
	z-index: 1;
}

.shiten-support__badge:before {
	background-color: #F6A16C;
	border-radius: 0.8125rem;
	bottom: -0.25rem;
	content: "";
	display: block;
	height: 0.8125rem;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: -1;
}

.shiten-support__badge span {
	-webkit-text-stroke-color: #F5F5F5;
	-webkit-text-stroke-width: 0.625rem;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4375;
	paint-order: stroke;
}

.shiten-support__slider {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.shiten-support__slide {
	background-color: #fff;
	border-radius: 0.9375rem;
	min-height: 21.5625rem;
	overflow: hidden;
	padding: 0.9375rem 0.625rem;
	position: relative;
	z-index: 1;
}

.shiten-support__slide::before {
	-webkit-mask-image: url("../img/shiten/support-slide-img.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: #273993;
	bottom: 0;
	content: "";
	display: inline-block;
	height: 3.4375rem;
	left: 0;
	mask-image: url("../img/shiten/support-slide-img.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	width: 100%;
	z-index: -1;
}

.shiten-support__slide.-chikuko::before {
	background-color: #273993;
}

.shiten-support__slide.-shubetsu::before {
	background-color: #F6A16C;
}

.shiten-support__slide.-kyoyu::before {
	background-color: #50AA50;
}

.shiten-support__slide.-sokochi::before {
	background-color: #90D0E3;
}

.shiten-support__slide.-shiyo::before {
	background-color: #969696;
}

.shiten-support__slide-tag {
	align-items: center;
	display: grid;
	font-size: 1.5rem;
	font-weight: 500;
	grid-template-columns: 1fr auto 1fr;
	letter-spacing: 0.5em;
	margin-bottom: 1.875rem;
	text-align: center;
	text-indent: 0.5em;
}

.shiten-support__slide-tag::before,
.shiten-support__slide-tag::after {
	background-color: currentColor;
	content: "";
	display: block;
	height: 0.0625rem;
	width: 100%;
}

.shiten-support__slide-title {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 120%;
	margin-bottom: 0.9375rem;
	text-align: center;
}

.shiten-support__slide-detail {
	font-size: 1rem;
	font-weight: 500;
	line-height: 160%;
	margin-left: auto;
	margin-right: auto;
	width: -moz-fit-content;
	width: fit-content;
}

.shiten-support__slide-detail-item {
	display: grid;
	grid-template-columns: auto 1fr;
}

.shiten-support__slide-detail-value small {
	font-size: 0.875rem;
}

.shiten-support__slide-detail-value small.-ml {
	margin-left: -2.1875rem;
}

/* =========================================== */

/*                   network                   */

/* =========================================== */

.shiten-network {
	background-color: #273993;
	overflow: hidden;
	position: relative;
}

.shiten-network::before {
	-webkit-mask-image: url("../img/shiten/network-bg.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: #fff;
	bottom: 0;
	content: "";
	display: inline-block;
	height: 3.5rem;
	left: 50%;
	mask-image: url("../img/shiten/network-bg.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	transform: translateX(-50%);
	width: 58.5625rem;
}

.shiten-network--layout {
	padding-bottom: 5.625rem;
	padding-top: 3.125rem;
}

.shiten-network__inner {
	position: relative;
}

.shiten-network__label {
	align-items: center;
	background-color: #fff;
	border-radius: 2.5rem;
	color: #273993;
	display: inline-grid;
	font-size: 1.5rem;
	font-weight: 700;
	height: 3.75rem;
	justify-items: center;
	margin-bottom: 1.5rem;
	margin-left: auto;
	margin-right: auto;
	place-items: center;
	text-align: center;
	width: 100%;
}

.shiten-network__heading {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.4583333333;
	margin-bottom: 0.9375rem;
	text-align: center;
}

.shiten-network__text {
	color: #fff;
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 1.25rem;
	text-align: center;
}

.shiten-network__text p:not(:last-child) {
	margin-bottom: 1.25rem;
}

.shiten-network__text strong {
	font-weight: 700;
}

.shiten-network__cta {
	align-items: center;
	background-color: #fff;
	border: 0.1875rem solid #273993;
	border-radius: 2.5rem;
	color: #273993;
	display: inline-grid;
	gap: 0.75rem;
	grid-template-columns: 1fr auto;
	height: 4.375rem;
	margin-bottom: 1.25rem;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 0.0625rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	width: 22.1875rem;
}

.shiten-network__cta-text {
	font-family: "M PLUS 1", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}

.shiten-network__cta-arrow {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='17' viewBox='0 0 9 17' fill='none'%3E%3Cpath d='M1.5 1.5L6.57143 8.5L1.5 15.5' stroke='%23273993' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	background-color: currentColor;
	height: 1.0625rem;
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='17' viewBox='0 0 9 17' fill='none'%3E%3Cpath d='M1.5 1.5L6.57143 8.5L1.5 15.5' stroke='%23273993' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
	mask-position: center;
	mask-repeat: no-repeat;
	position: relative;
	width: 0.5625rem;
}

.shiten-network__message {
	height: 12.75rem;
	position: relative;
}

.shiten-network__message-fukidashi {
	margin-left: auto;
	margin-right: 4.5625rem;
	position: relative;
	width: 7.4375rem;
}

.shiten-network__message-fukidashi img {
	-o-object-fit: cover;
	aspect-ratio: 241/256;
	object-fit: cover;
}

.shiten-network__message-text {
	color: #273993;
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	left: 50%;
	line-height: 1.5;
	position: absolute;
	text-align: center;
	top: 44%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.shiten-network__message-mascot {
	bottom: 0;
	position: absolute;
	right: -0.625rem;
	width: 10.3125rem;
}

.shiten-network__message-mascot img {
	-o-object-fit: cover;
	aspect-ratio: 278/278;
	object-fit: cover;
}

.shiten-network__map {
	background-color: #F5F5F5;
	border-radius: 0.9375rem;
	box-shadow: inset 0.125rem 0.125rem 0.3125rem rgba(0, 0, 0, 0.25);
	padding: 1.25rem 0.625rem 1.875rem;
	position: relative;
}

.shiten-network__map-img {
	margin-bottom: 0.625rem;
}

.shiten-network__map-img img {
	-o-object-fit: contain;
	display: block;
	height: auto;
	object-fit: contain;
	width: 100%;
}

.shiten-network__branches {
	grid-gap: 0.625rem;
	display: grid;
	gap: 0.625rem;
	text-align: center;
}

.shiten-network__branch-link {
	align-items: center;
	background-color: #fff;
	border: 0.125rem solid #273993;
	border-radius: 2.5rem;
	color: #273993;
	display: inline-grid;
	height: 1.875rem;
	justify-items: center;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	place-items: center;
	position: relative;
	transition: background-color 0.2s ease, color 0.2s ease;
	width: 9.1875rem;
}

.shiten-network__branch-link.-active {
	background-color: #273993;
	color: #fff;
	width: 11.25rem;
}

.shiten-network__branch-link span:first-child {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	line-height: 110%;
}

.shiten-network__branch-arrow {
	--shiten-network-branch-arrow-w: 0.4375rem;
	--shiten-network-branch-arrow-h: 0.75rem;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 12' fill='none'%3E%3Cpath d='M1.5 1.5L4.83333 5.7L1.5 9.9' stroke='%23273993' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: 100% 100%;
	background-color: currentColor;
	height: 0.75rem;
	height: var(--shiten-network-branch-arrow-h);
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7 12' fill='none'%3E%3Cpath d='M1.5 1.5L4.83333 5.7L1.5 9.9' stroke='%23273993' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: 100% 100%;
	position: absolute;
	right: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0.4375rem;
	width: var(--shiten-network-branch-arrow-w);
}

/* =========================================== */

/*                    flow                     */

/* =========================================== */

.shiten-flow--layout {
	background-color: #F5F5F5;
	padding-bottom: 5rem;
	padding-top: 2.5rem;
}

.shiten-flow__heading {
	margin-bottom: 1.25rem;
	text-align: center;
}

.shiten-flow__heading span {
	color: #273993;
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 700;
}

.shiten-flow__heading span.-number {
	font-family: "Akshar", sans-serif;
	font-size: 2.5rem;
	font-weight: 600;
}

.shiten-flow__heading span.-step {
	font-family: "Akshar", sans-serif;
}

.shiten-flow__list {
	display: flex;
	flex-direction: column;
	gap: 1.125rem;
}

.shiten-flow__item {
	padding-left: 2rem;
	position: relative;
}

.shiten-flow__card {
	grid-gap: 0.625rem 0.5rem;
	align-items: baseline;
	background-color: #fff;
	border-radius: 0.9375rem;
	display: grid;
	gap: 0.625rem 0.5rem;
	grid-template-columns: auto 1fr;
	padding: 0 1rem 0.75rem 0;
}

.shiten-flow__icon {
	height: 4.0625rem;
	left: 0;
	position: absolute;
	top: -0.5rem;
	width: 4.0625rem;
}

.shiten-flow__icon-bg {
	background-color: #F6A16C;
	border-radius: 50%;
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.shiten-flow__icon img {
	-o-object-fit: contain;
	aspect-ratio: 120/120;
	height: 3.25rem;
	left: 50%;
	object-fit: contain;
	position: relative;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 3.25rem;
}

.shiten-flow__tag {
	background-color: #F6A16C;
	border-radius: 0.9375rem 0 2.5rem 0;
	padding: 0.25rem 1.5625rem 0.0625rem 3.25rem;
	width: -moz-fit-content;
	width: fit-content;
}

.shiten-flow__tag-text {
	color: #fff;
	font-family: "Akshar", sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	text-align: center;
}

.shiten-flow__title {
	font-size: 1rem;
	font-weight: 700;
}

.shiten-flow__desc {
	font-size: 0.875rem;
	font-weight: 500;
	grid-column: 1/3;
	line-height: 1.3;
	margin-left: 2.625rem;
}

.shiten-flow__desc p {
	margin: 0;
	margin-bottom: 0.25rem;
}

.shiten-flow__desc p:last-child {
	margin-bottom: 0;
}

/* =========================================== */

/*                   contact                   */

/* =========================================== */

.shiten-contact--layout {
	background-color: #273993;
	padding-bottom: 5rem;
	padding-top: 3.75rem;
}

.shiten-contact__heading {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	text-align: center;
}

.shiten-contact__form-wrap {
	background-color: #fff;
	border-radius: 1.5rem;
	box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.08);
	padding: 1.5rem 0.625rem 2rem;
}

.shiten-contact__description {
	color: #273993;
	font-size: 0.875rem;
	line-height: 1.5;
	margin-bottom: 1.75rem;
	text-align: center;
}

.shiten-contact__description span {
	display: inline-block;
}

.shiten-contact-form {
	grid-gap: 0.9375rem;
	display: grid;
	gap: 0.9375rem;
}

.shiten-contact-form__field {
	grid-gap: 0.375rem;
	align-items: flex-start;
	display: grid;
	gap: 0.375rem;
}

.shiten-contact-form__label-row {
	grid-gap: 0.25rem;
	display: grid;
	gap: 0.25rem;
}

.shiten-contact-form__label {
	font-size: 1rem;
	font-weight: 700;
}

.shiten-contact-form__note {
	font-size: 0.75rem;
}

.shiten-contact-form__input {
	width: 100%;
}

.shiten-contact-form .wpcf7-form-control {
	background-color: #D9D9D9;
	border: none;
	border-radius: 0.9375rem;
	color: #2B2A2A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	padding: 0.75rem 0.875rem;
	transition: background-color 0.2s ease, box-shadow 0.2s ease;
	width: 100%;
}

.shiten-contact-form .wpcf7-form-control[type=text],
.shiten-contact-form .wpcf7-form-control[type=email],
.shiten-contact-form .wpcf7-form-control[type=tel],
.shiten-contact-form .wpcf7-form-control.wpcf7-select {
	height: 2.5rem;
}

.shiten-contact-form .wpcf7-form-control::-moz-placeholder {
	color: #8e8989;
	font-size: 0.75rem;
}

.shiten-contact-form .wpcf7-form-control::placeholder {
	color: #8e8989;
	font-size: 0.75rem;
}

.shiten-contact-form .wpcf7-form-control:focus {
	background-color: #e6e6e6;
}

.shiten-contact-form .wpcf7-form-control.wpcf7-checkbox {
	background: none;
	border: none;
	border-radius: 0;
	display: flex;
	flex-direction: column;
	gap: 0.4375rem;
	padding: 0;
}

.shiten-contact-form .wpcf7-select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2213%22%20height%3D%229%22%20viewBox%3D%220%200%2013%209%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M11.5%201.5L6.5%206.5L1.5%201.5%22%20stroke%3D%22%238E8989%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22/%3E%3C/svg%3E");
	background-position: right 1rem top 1.0625rem;
	background-repeat: no-repeat;
	border-radius: 62.4375rem;
	max-width: 12.5rem;
	padding-right: 2.75rem;
}

.shiten-contact-form .wpcf7-textarea {
	line-height: 1.6;
	min-height: 9.375rem;
	resize: vertical;
}

.shiten-contact-form .wpcf7-checkbox .wpcf7-list-item {
	align-items: center;
	background: none;
	display: inline-flex;
	margin: 0;
}

.shiten-contact-form .wpcf7-checkbox .wpcf7-list-item label {
	cursor: pointer;
	display: inline-flex;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5;
	padding-left: 1.375rem;
	position: relative;
}

.shiten-contact-form .wpcf7-checkbox .wpcf7-list-item label::before {
	background-color: #fff;
	border: 0.0625rem solid currentColor;
	content: "";
	height: 0.9375rem;
	left: 0;
	position: absolute;
	top: 0.1875rem;
	transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
	width: 0.9375rem;
}

.shiten-contact-form input[type=checkbox] {
	height: 0;
	margin: 0;
	opacity: 0;
	position: absolute;
	width: 0;
}

.shiten-contact-form input[type=checkbox]:checked + .wpcf7-list-item-label::before {
	background-color: #273993;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='9' viewBox='0 0 12 9'%3E%3Cpath fill='%23fff' d='M4.5 8.5 0 4l1.4-1.4L4.5 5.7 10.6-.4 12 1z'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 70% 70%;
	border: 0.0625rem solid #273993;
	box-shadow: 0 0 0 0.125rem rgba(39, 57, 147, 0.08);
	content: "";
	height: 0.9375rem;
	left: 0;
	position: absolute;
	top: 0.1875rem;
	width: 0.9375rem;
}

.shiten-contact-form input[type=checkbox]:focus-visible + .wpcf7-list-item-label::before {
	outline: 0.125rem solid #59CAEB;
	outline-offset: 0.0625rem;
}

.shiten-contact-form input[type=checkbox]:checked {
	background-color: #273993;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='9' viewBox='0 0 12 9'%3E%3Cpath fill='%23fff' d='M4.5 8.5 0 4l1.4-1.4L4.5 5.7 10.6-.4 12 1z'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 70% 70%;
	border-color: #273993;
	box-shadow: 0 0 0 0.125rem rgba(39, 57, 147, 0.08);
}

.shiten-contact-form input[type=checkbox]:focus-visible {
	outline: 0.125rem solid #59CAEB;
	outline-offset: 0.0625rem;
}

.shiten-contact-form__privacy-notice {
	color: #2B2A2A;
	font-size: 0.75rem;
	line-height: 1.5;
	margin: 0.9375rem 0 0.3125rem;
	text-align: center;
}

.shiten-contact-form__actions {
	display: flex;
	justify-content: center;
	margin: 0 0 0.3125rem;
	position: relative;
}

.shiten-contact-form__privacy-link {
	-webkit-text-decoration: underline;
	color: #273993;
	text-decoration: underline;
	text-underline-offset: 0.2em;
	transition: opacity 0.2s ease;
}

.shiten-contact-form__privacy-detail {
	color: #2B2A2A;
	font-size: 0.75rem;
	line-height: 1.4166666667;
	text-align: center;
}

.shiten-contact-form .wpcf7-submit {
	background-color: #F66C6C;
	border: none;
	border-radius: 2.5rem;
	box-shadow: 0.25rem 0.25rem 0.25rem 0 rgba(255, 255, 255, 0.25) inset;
	color: #fff;
	cursor: pointer;
	filter: drop-shadow(0.25rem 0.25rem 0.25rem rgba(0, 0, 0, 0.25));
	font-size: 1.125rem;
	font-weight: 700;
	height: 3.75rem;
	letter-spacing: 0.04em;
	max-width: 17.5rem;
	transition: transform 0.2s ease, opacity 0.2s ease;
	width: 100%;
}

.shiten-contact-form .wpcf7-submit:active {
	transform: translateY(0);
}

.shiten-contact .wpcf7 form .wpcf7-spinner {
	margin: 0;
	position: absolute;
	right: 3.75rem;
	top: 50%;
	transform: translate(50%, -50%);
}

.shiten-contact-form .wpcf7-not-valid-tip {
	color: #F66C6C;
	font-size: 0.75rem;
	margin-top: 0.25rem;
}

.shiten-contact-form .wpcf7-response-output {
	background-color: rgba(246, 108, 108, 0.08);
	border: 0.0625rem solid #F66C6C;
	border-radius: 0.625rem;
	color: #2B2A2A;
	margin: 0.75rem 0 0;
	padding: 0.625rem 0.75rem;
}

/* =========================================== */

/*                   fv                    */

/* =========================================== */

.sokochi-a-fv--layout {
	margin-top: 4.375rem;
}

.sokochi-a-fv__inner {
	position: relative;
}

.sokochi-a-fv__bg {
	height: 40.625rem;
	width: 100%;
}

.sokochi-a-fv__bg img {
	-o-object-fit: cover;
	-o-object-position: center bottom;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
	width: 100%;
}

.sokochi-a-fv__texts {
	left: 50%;
	position: absolute;
	top: 1.375rem;
	transform: translateX(-50%);
	width: 100%;
}

.sokochi-a-fv__title-wrap {
	display: contents;
}

.sokochi-a-fv__title {
	height: 100%;
	position: relative;
	width: 100%;
}

.sokochi-a-fv__title-char {
	-webkit-text-stroke-color: #fff;
	-webkit-text-stroke-width: 0.5rem;
	color: #E6B241;
	filter: drop-shadow(0 0.125rem 0.125rem rgba(0, 0, 0, 0.25));
	font-size: 5.125rem;
	font-weight: 700;
	line-height: 1;
	paint-order: stroke;
	position: absolute;
	white-space: nowrap;
}

.sokochi-a-fv__title-char:nth-child(1) {
	transform: rotate(341.113deg);
	z-index: 1;
}

.sokochi-a-fv__title-char:nth-child(2) {
	transform: rotate(11.691deg);
}

.sokochi-a-fv__title-char:nth-child(3) {
	transform: rotate(0.103deg);
}

.sokochi-a-fv__title-char:nth-child(4) {
	transform: rotate(350.446deg);
	z-index: 1;
}

.sokochi-a-fv__title-char:nth-child(5) {
	transform: rotate(17.602deg);
}

.sokochi-a-fv__subtitle {
	-webkit-text-stroke-color: #fff;
	-webkit-text-stroke-width: 0.5rem;
	color: #A2C7E5;
	filter: drop-shadow(0 0.125rem 0.125rem rgba(0, 0, 0, 0.25));
	font-size: 2rem;
	font-weight: 700;
	left: 14.9375rem;
	line-height: 1;
	paint-order: stroke;
	position: absolute;
	top: 8.3125rem;
	white-space: nowrap;
}

.sokochi-a-fv__message {
	-webkit-text-stroke-color: #fff;
	-webkit-text-stroke-width: 0.5rem;
	color: #A2C7E5;
	filter: drop-shadow(0 0.125rem 0.125rem rgba(0, 0, 0, 0.25));
	font-size: 2.75rem;
	font-weight: 700;
	left: 0.625rem;
	line-height: 1.2;
	paint-order: stroke;
	position: absolute;
	top: 9rem;
}

.sokochi-a-fv__message span {
	display: block;
}

/* =========================================== */

/*                   problem                    */

/* =========================================== */

.sokochi-a-problem {
	background-image: url("../img/sokochi-a/problem-img-2-sp.webp"), url("../img/sokochi-a/problem-bg-sp.svg");
	background-position: center bottom, left top;
	background-repeat: no-repeat, repeat-x;
	background-size: 23.4375rem 3.9375rem, contain;
}

.sokochi-a-problem--layout {
	margin-top: -2.625rem;
	padding-bottom: 5.625rem;
	padding-top: 4.0625rem;
}

.sokochi-a-problem__heading-wrap {
	filter: drop-shadow(0.125rem 0.125rem 0 #fff);
	margin-bottom: 1.25rem;
	text-align: center;
}

.sokochi-a-problem__heading {
	grid-gap: 0.125rem;
	align-items: center;
	display: grid;
	font-size: 2rem;
	font-weight: 700;
	gap: 0.125rem;
	grid-template-columns: repeat(2, auto);
	justify-content: center;
	line-height: 1.4375;
}

.sokochi-a-problem__heading::before {
	background-image: url("../img/sokochi-a/problem-img-1.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 2.25rem;
	width: 2rem;
}

.sokochi-a-problem__subheading {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.45;
}

.sokochi-a-problem__list {
	grid-gap: 1.25rem;
	display: grid;
	gap: 1.25rem;
}

.sokochi-a-problem__item {
	border-radius: 0.9375rem;
	box-shadow: 0.25rem 0.25rem 0.625rem rgba(0, 0, 0, 0.25);
	overflow: hidden;
}

.sokochi-a-problem__item-title {
	background-color: #A2C7E5;
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	padding: 1.125rem;
	text-align: center;
}

.sokochi-a-problem__item-content {
	background-color: #fff;
	height: 100%;
	padding-bottom: 1.5rem;
	padding-top: 1.5rem;
}

.sokochi-a-problem__item-img {
	margin-bottom: 0.9375rem;
	margin-left: auto;
	margin-right: auto;
	width: 13.75rem;
}

.sokochi-a-problem__item-img img {
	-o-object-fit: cover;
	aspect-ratio: 250/260;
	object-fit: cover;
}

.sokochi-a-problem__item-text {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
}

/* =========================================== */

/*                   solution                    */

/* =========================================== */

.sokochi-a-solution {
	background-color: #A2C7E5;
}

.sokochi-a-solution--layout {
	padding-bottom: 3.125rem;
	padding-top: 1.875rem;
}

.sokochi-a-solution__heading {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.6875rem;
	text-align: center;
}

.sokochi-a-solution__heading span {
	display: block;
}

.sokochi-a-solution__heading span strong {
	font-size: 2.25rem;
}

.sokochi-a-solution__list {
	grid-gap: 0.625rem;
	display: grid;
	gap: 0.625rem;
	position: relative;
}

.sokochi-a-solution__list::before,
.sokochi-a-solution__list::after {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 5.625rem;
	position: absolute;
	top: -5.625rem;
	width: 6.1875rem;
}

.sokochi-a-solution__list::before {
	background-image: url("../img/sokochi-a/solution-img-1.webp");
	left: 0;
}

.sokochi-a-solution__list::after {
	background-image: url("../img/sokochi-a/solution-img-2.webp");
	right: 0;
}

.sokochi-a-solution__item {
	background-color: #fff;
	border-radius: 0.9375rem;
	display: flex;
	flex-direction: column;
	margin-left: auto;
	margin-right: auto;
	padding: 0.8125rem 0.625rem;
	width: 22.1875rem;
}

.sokochi-a-solution__item-point {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.sokochi-a-solution__item-point-label {
	font-size: 1rem;
	font-weight: 700;
}

.sokochi-a-solution__item-point-number {
	font-size: 2.5rem;
	font-weight: 700;
}

.sokochi-a-solution__item-line {
	background-color: #A2C7E5;
	height: 0.125rem;
	margin-bottom: 0.5rem;
	margin-top: 0.5rem;
	width: 20.9375rem;
}

.sokochi-a-solution__item-content {
	padding: 0 0.625rem;
}

.sokochi-a-solution__item-title {
	font-size: 1.3125rem;
	font-weight: 700;
	line-height: 1.45;
	margin-bottom: 0.125rem;
}

.sokochi-a-solution__item-subtitle {
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.4375;
	margin-bottom: 0.5rem;
}

.sokochi-a-solution__item-text {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5;
}

.sokochi-a-solution__item-img {
	border-radius: 0.9375rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0.625rem;
	overflow: hidden;
	width: 20.9375rem;
}

.sokochi-a-solution__item-img img {
	-o-object-fit: cover;
	aspect-ratio: 335/160;
	object-fit: cover;
}

/* =========================================== */

/*                   voice                    */

/* =========================================== */

.sokochi-a-voice {
	overflow: hidden;
	position: relative;
}

.sokochi-a-voice--layout {
	padding-bottom: 3.125rem;
	padding-top: 3.125rem;
}

.sokochi-a-voice__heading-wrap {
	margin-bottom: 1.875rem;
	text-align: center;
}

.sokochi-a-voice__heading {
	color: #5B7BA8;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 0.625rem;
}

.sokochi-a-voice__subheading {
	color: #5B7BA8;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
}

.sokochi-a-voice__slider {
	filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.25));
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.sokochi-a-voice__item {
	display: grid;
	grid-template-rows: auto 1fr;
	opacity: 0.5;
	transition: opacity 0.3s ease;
}

.sokochi-a-voice__item.is-active {
	opacity: 1;
}

.sokochi-a-voice__item-title {
	background-color: #E6B241;
	border-radius: 0.9375rem;
	color: #fff;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 1.375rem;
	padding: 0.3125rem 0.625rem;
	position: relative;
	text-align: center;
}

.sokochi-a-voice__item-title::before {
	background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="38" height="19" viewBox="0 0 38 19" fill="none"%3E%3Cmask id="mask0_1097_1499" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="38" height="19"%3E%3Crect width="38" height="19" fill="%23D9D9D9"/%3E%3C/mask%3E%3Cg mask="url(%23mask0_1097_1499)"%3E%3Cpath d="M-21 -46C-21 -54.2843 -14.2843 -61 -6 -61H924C932.284 -61 939 -54.2843 939 -46V-16C939 -7.71573 932.284 -1 924 -1H39.2205C36.4604 -1 33.7539 -0.238467 31.3987 1.20077L3.76353 18.089C2.16168 19.0679 0.215485 17.4997 0.831305 15.7263L6.5 -0.598076L-6.21921 -0.783972C-14.4171 -0.903788 -21 -7.58358 -21 -15.7824V-46Z" fill="%23E6B241"/%3E%3C/g%3E%3C/svg%3E');
	background-position: left bottom;
	background-repeat: no-repeat;
	background-size: contain;
	bottom: -1.125rem;
	content: "";
	height: 1.1875rem;
	left: 1.5rem;
	position: absolute;
	width: 2.375rem;
}

.sokochi-a-voice__item-body {
	align-self: start;
	border: 0.1875rem solid #A2C7E5;
	border-radius: 0.9375rem;
	display: grid;
	grid-template-rows: 1fr auto;
	overflow: hidden;
}

.sokochi-a-voice__item-content-wrap {
	grid-gap: 1.0625rem;
	background-color: #fff;
	display: grid;
	gap: 1.0625rem;
	padding: 0.9375rem;
}

.sokochi-a-voice__content {
	grid-gap: 0.9375rem;
	align-items: center;
	display: grid;
	gap: 0.9375rem;
	grid-template-columns: auto 1fr;
}

.sokochi-a-voice__content-img {
	height: auto;
	margin-left: auto;
	margin-right: auto;
	width: 7.375rem;
}

.sokochi-a-voice__content-img img {
	-o-object-fit: cover;
	aspect-ratio: 80/74;
	object-fit: cover;
}

.sokochi-a-voice__content-text {
	color: #5B7BA8;
	flex: 1;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.75;
}

.sokochi-a-voice__content-text p {
	margin: 0;
}

.sokochi-a-voice__text-highlight {
	color: #E64141;
}

.sokochi-a-voice__arrow {
	align-items: center;
	display: flex;
	height: 0.9375rem;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	width: 0.9375rem;
}

.sokochi-a-voice__arrow svg {
	color: #A2C7E5;
	height: 100%;
	width: 100%;
}

.sokochi-a-voice__comment {
	background-color: #A2C7E5;
	padding: 0.9375rem;
	text-align: center;
}

.sokochi-a-voice__comment-title {
	color: #fff;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
	margin: 0 0 0.625rem;
}

.sokochi-a-voice__comment-text {
	color: #fff;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.4375;
	margin: 0;
}

/* =========================================== */

/*                   works                    */

/* =========================================== */

.sokochi-a-works {
	background-color: #fff;
	overflow: hidden;
	position: relative;
}

.sokochi-a-works--layout {
	padding-bottom: 3.125rem;
	padding-top: 3.125rem;
}

.sokochi-a-works__inner {
	position: relative;
}

.sokochi-a-works__inner::before {
	background-image: url("../img/sokochi-a/works-img-1.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 6.25rem;
	left: 0;
	position: absolute;
	top: -1.4375rem;
	width: 5.125rem;
}

.sokochi-a-works__heading-wrap {
	margin-bottom: 1.875rem;
	text-align: center;
}

.sokochi-a-works__heading {
	color: #5B7BA8;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 0.625rem;
}

.sokochi-a-works__subheading {
	color: #5B7BA8;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
}

.sokochi-a-works__container {
	margin-bottom: 2.625rem;
}

.sokochi-a-works__list {
	border-left: 0.25rem solid #A2C7E5;
	border-right: 0.25rem solid #A2C7E5;
	border-top: 0.25rem solid #A2C7E5;
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-bottom: 0.625rem;
	position: relative;
}

.sokochi-a-works__list::before {
	background-image: url("../img/sokochi-a/works-img-2.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	bottom: -5.5rem;
	content: "";
	display: inline-block;
	height: 6.1875rem;
	position: absolute;
	right: -0.875rem;
	width: 8.4375rem;
	z-index: 1;
}

.sokochi-a-works__item {
	border-bottom: 0.25rem solid #A2C7E5;
	display: grid;
	grid-template-columns: 51% 1fr;
}

.sokochi-a-works__item-label {
	align-items: baseline;
	background-color: #fff;
	border-right: 0.25rem solid #A2C7E5;
	display: flex;
	justify-content: center;
	padding: 1.25rem 0;
	width: 100%;
}

.sokochi-a-works__item-label-main {
	color: #A2C7E5;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: normal;
}

.sokochi-a-works__item-value {
	align-items: flex-end;
	background-color: #A2C7E5;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-bottom: 0.625rem;
	padding-left: 0;
	padding-right: 1.625rem;
	padding-top: 0.625rem;
	position: relative;
	width: 100%;
}

.sokochi-a-works__item-value-wrap {
	align-items: baseline;
	display: flex;
	gap: 0.125rem;
}

.sokochi-a-works__item-value-number {
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	text-align: right;
}

.sokochi-a-works__item-value-unit {
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	line-height: normal;
}

.sokochi-a-works__item-note {
	bottom: 0.125rem;
	color: #fff;
	font-size: 0.625rem;
	line-height: 1.5;
	margin-top: 0.25rem;
	opacity: 0.9;
	position: absolute;
	right: 0.875rem;
}

.sokochi-a-works__note {
	color: #A2C7E5;
	font-size: 0.75rem;
	line-height: 1.5;
}

.sokochi-a-works__gallery {
	margin-bottom: 2.625rem;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	overflow: hidden;
}

.sokochi-a-works__gallery-track {
	animation: scroll-left 30s linear infinite;
	display: flex;
	gap: 0.625rem;
	width: -moz-fit-content;
	width: fit-content;
}

.sokochi-a-works__gallery-track:hover {
	animation-play-state: paused;
}

.sokochi-a-works__gallery-item {
	border-radius: 0.9375rem;
	flex-shrink: 0;
	height: 6.25rem;
	overflow: hidden;
	width: 10rem;
}

.sokochi-a-works__gallery-item img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.sokochi-a-works__content {
	margin-bottom: 1.875rem;
	text-align: center;
}

.sokochi-a-works__content-title {
	color: #5B7BA8;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.4583333333;
	margin-bottom: 1.25rem;
}

.sokochi-a-works__content-text {
	color: #5B7BA8;
	font-size: 1rem;
	font-weight: 500;
	line-height: 2;
}

.sokochi-a-works__content-text p + p {
	margin-top: 1.5625rem;
}

.sokochi-a-works__company {
	background-color: #A2C7E5;
	padding: 0.9375rem 1.25rem;
	text-align: center;
}

.sokochi-a-works__company-text {
	color: #fff;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 2;
	margin: 0;
}

.sokochi-a-works__company-btn {
	margin-left: auto;
	margin-right: auto;
	margin-top: 1.25rem;
	position: relative;
}

.sokochi-a-works__company-btn-text {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 0.125rem;
}

.sokochi-a-works__company-btn-icon {
	bottom: 50%;
	flex-shrink: 0;
	height: 1.5rem;
	position: absolute;
	right: 1.25rem;
	transform: translateY(50%);
	width: 1.5rem;
}

/* =========================================== */

/*                   flow                     */

/* =========================================== */

.sokochi-a-flow {
	background-color: #A2C7E5;
}

.sokochi-a-flow--layout {
	padding-bottom: 3.125rem;
	padding-top: 3.125rem;
}

.sokochi-a-flow__inner {
	position: relative;
}

.sokochi-a-flow__heading {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 1.875rem;
	text-align: center;
}

.sokochi-a-flow__list {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 1.0625rem;
	margin-bottom: 2.5rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 15.625rem;
	position: relative;
}

.sokochi-a-flow__item {
	background-color: #fff;
	border-radius: 0.9375rem;
	max-width: 15.625rem;
	position: relative;
	width: 100%;
}

.sokochi-a-flow__item:not(:last-child):before {
	background-image: url("../img/sokochi-a/flow-arrow.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	bottom: -0.625rem;
	content: "";
	display: inline-block;
	height: 2.125rem;
	left: 50%;
	position: absolute;
	transform: translateX(-50%) rotate(90deg);
	width: 2.75rem;
	z-index: 1;
}

.sokochi-a-flow__item-header {
	background-color: #E6B241;
	border-radius: 0.9375rem 0.9375rem 0 0;
	padding: 0.625rem;
	text-align: center;
}

.sokochi-a-flow__item-step {
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
	margin: 0;
}

.sokochi-a-flow__item-body {
	align-items: center;
	display: flex;
	flex-direction: column;
	padding: 0.625rem 0 1.9375rem;
}

.sokochi-a-flow__item-img {
	align-items: center;
	display: flex;
	height: 8.34375rem;
	justify-content: center;
	overflow: hidden;
	width: 10.625rem;
}

.sokochi-a-flow__item-img img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.sokochi-a-flow__item-title {
	align-items: center;
	color: #5B7BA8;
	display: flex;
	font-size: 1.5rem;
	font-weight: 700;
	justify-content: center;
	line-height: 1.1;
	margin: 0;
	min-height: 2.53125rem;
	text-align: center;
	width: 12.5rem;
}

.sokochi-a-flow__cta {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.sokochi-a-flow__cta-btn {
	-webkit-text-decoration: none;
	align-items: center;
	border-radius: 3.125rem;
	box-shadow: 0.25rem 0.25rem 0.25rem 0 rgba(255, 255, 255, 0.25) inset;
	color: #fff;
	display: flex;
	filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.25));
	flex-direction: column;
	height: 3.75rem;
	justify-content: center;
	text-decoration: none;
	transition: opacity 0.3s;
	width: 18.75rem;
}

.sokochi-a-flow__cta-btn.-yellow {
	background-color: #E6B241;
}

.sokochi-a-flow__cta-btn.-red {
	background-color: #E64141;
}

.sokochi-a-flow__cta-btn.-blue {
	background-color: #5B7BA8;
	flex-direction: row;
	gap: 0.375rem;
}

.sokochi-a-flow__cta-btn-label {
	color: #fff;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 0;
}

.sokochi-a-flow__cta-btn-tel {
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
}

.sokochi-a-flow__cta-btn-text {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
}

/* =========================================== */

/*                   faq                      */

/* =========================================== */

.sokochi-a-faq--layout {
	padding-bottom: 3.125rem;
	padding-top: 3.125rem;
}

.sokochi-a-faq__inner {
	position: relative;
}

.sokochi-a-faq__heading {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 1.875rem;
	text-align: center;
}

.sokochi-a-faq__list {
	grid-gap: 0.9375rem;
	display: grid;
	gap: 0.9375rem;
}

.sokochi-a-faq__item {
	background-color: #fff;
	border-radius: 0.9375rem;
	box-shadow: 0.25rem 0.25rem 0.625rem rgba(0, 0, 0, 0.25);
	overflow: hidden;
	padding-bottom: 1.25rem;
}

.sokochi-a-faq__question {
	grid-gap: 0.125rem;
	background-color: #A2C7E5;
	color: #fff;
	display: grid;
	font-size: 1rem;
	font-weight: 700;
	gap: 0.125rem;
	grid-template-columns: auto 1fr;
	line-height: 1.3125;
	padding: 0.625rem 1.25rem;
}

.sokochi-a-faq__answer {
	color: #5B7BA8;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4375;
	padding: 0.625rem;
}

.sokochi-a-faq__description {
	color: #A2C7E5;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	padding-bottom: 0;
	padding-left: 1.5625rem;
	padding-right: 1.25rem;
	padding-top: 0;
}

/* =========================================== */

/*                   contact                  */

/* =========================================== */

.sokochi-a-contact {
	background-color: #A2C7E5;
	overflow: hidden;
	position: relative;
}

.sokochi-a-contact--layout {
	padding-bottom: 6.25rem;
	padding-top: 3.125rem;
}

.sokochi-a-contact__inner {
	position: relative;
}

.sokochi-a-contact__heading {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 1.875rem;
	text-align: center;
}

.sokochi-a-contact__form-wrap {
	background-color: #fff;
	border-radius: 1.5rem;
	padding: 1.875rem 0.9375rem 2.5rem;
}

.sokochi-a-contact__description {
	color: #5B7BA8;
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 1.5625rem;
	text-align: center;
}

.sokochi-a-contact__form {
	display: flex;
	flex-direction: column;
	gap: 0.9375rem;
}

.sokochi-a-contact__field {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.sokochi-a-contact__label {
	color: #3b3b3b;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}

.sokochi-a-contact__input,
.sokochi-a-contact__textarea {
	background-color: #D9D9D9;
	border: none;
	border-radius: 0.9375rem;
	color: #3b3b3b;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	padding: 0.75rem 1.25rem;
	width: 100%;
}

.sokochi-a-contact__input::-moz-placeholder,
.sokochi-a-contact__textarea::-moz-placeholder {
	color: #8e8989;
}

.sokochi-a-contact__input::placeholder,
.sokochi-a-contact__textarea::placeholder {
	color: #8e8989;
}

.sokochi-a-contact__input:focus,
.sokochi-a-contact__textarea:focus {
	background-color: #e6e6e6;
	outline: none;
}

.sokochi-a-contact__textarea {
	min-height: 9.375rem;
	resize: vertical;
}

.sokochi-a-contact__checkboxes {
	grid-gap: 0.3125rem 0.5625rem;
	display: grid;
	gap: 0.3125rem 0.5625rem;
	grid-template-columns: repeat(2, auto);
	width: 100%;
}

.sokochi-a-contact__checkbox-label {
	align-items: center;
	color: #3b3b3b;
	cursor: pointer;
	display: flex;
	font-size: 0.75rem;
	font-weight: 500;
	gap: 0.5rem;
	line-height: 2;
	position: relative;
}

.sokochi-a-contact__checkbox {
	height: 0;
	opacity: 0;
	position: absolute;
	width: 0;
}

.sokochi-a-contact__checkbox + span:not(.wpcf7-not-valid-tip) {
	display: inline-block;
	padding-left: 1.25rem;
	position: relative;
}

.sokochi-a-contact__checkbox + span:not(.wpcf7-not-valid-tip)::before {
	background-color: transparent;
	border: 0.0625rem solid #3b3b3b;
	border-radius: 0.25rem;
	content: "";
	height: 0.875rem;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: background-color 0.3s, border-color 0.3s;
	width: 0.875rem;
}

.sokochi-a-contact__checkbox + span:not(.wpcf7-not-valid-tip) svg {
	height: 0.6875rem;
	left: 0.09375rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) scale(0.8);
	transition: opacity 0.3s ease-out, transform 0.3s ease-out;
	width: 0.6875rem;
}

.sokochi-a-contact__checkbox + span:not(.wpcf7-not-valid-tip) svg path {
	stroke: #fff;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
	stroke-dasharray: 16;
	stroke-dashoffset: 16;
	transition: stroke-dashoffset 0.5s ease-out;
}

.sokochi-a-contact__checkbox:checked + span::before {
	background-color: #5B7BA8;
	border-color: #5B7BA8;
}

.sokochi-a-contact__checkbox:checked + span svg {
	opacity: 1;
	transform: translateY(-50%) scale(1);
}

.sokochi-a-contact__checkbox:checked + span svg path {
	stroke-dashoffset: 0;
}

.sokochi-a-contact__submit-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 0.3125rem;
	position: relative;
}

.sokochi-a-contact__submit-wrap .form-submit {
	background-color: #E64141;
	border: none;
	border-radius: 3.125rem;
	box-shadow: 0.25rem 0.25rem 0.25rem 0 rgba(255, 255, 255, 0.25) inset;
	color: #fff;
	cursor: pointer;
	filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.25));
	font-size: 1.25rem;
	font-weight: 700;
	height: 3.125rem;
	max-width: 15.625rem;
	transition: opacity 0.3s;
	width: 100%;
}

.sokochi-a-contact__privacy-notice {
	color: #3b3b3b;
	font-size: 0.75rem;
	line-height: 1.5;
	margin: 0.9375rem 0 0.3125rem;
	text-align: center;
}

.sokochi-a-contact__privacy-link {
	-webkit-text-decoration: underline;
	color: #5B7BA8;
	text-decoration: underline;
	text-underline-offset: 0.2em;
	transition: color 0.2s ease;
}

.sokochi-a-contact__privacy-detail {
	color: #3b3b3b;
	font-size: 0.75rem;
	line-height: 1.4166666667;
	text-align: center;
}

.sokochi-a-contact__page-top {
	bottom: -3.5rem;
	position: absolute;
	right: 0.625rem;
	z-index: 10;
}

.sokochi-a-contact__page-top-btn {
	align-items: center;
	background-color: #fff;
	border-radius: 0.625rem;
	box-shadow: 0.125rem 0.125rem 0.125rem rgba(0, 0, 0, 0.25);
	cursor: pointer;
	display: flex;
	flex-direction: row;
	gap: 0.5rem;
	height: 2.5rem;
	justify-content: center;
	padding: 0 0.625rem 0 0;
	position: relative;
	transition: opacity 0.3s, transform 0.3s;
	width: 12.5rem;
}

.sokochi-a-contact__page-top-btn:active {
	transform: translateY(0);
}

.sokochi-a-contact__page-top-icon {
	color: #A2C7E5;
	flex-shrink: 0;
	height: 1.75rem;
	width: 1.75rem;
}

.sokochi-a-contact__page-top-text {
	align-items: center;
	color: #A2C7E5;
	display: flex;
	flex-direction: row;
	font-size: 1.5rem;
	font-weight: 700;
	gap: 0.5rem;
	letter-spacing: 0.15rem;
	line-height: 1.2;
}

.sokochi-a-contact__page-top-text span {
	display: block;
}

/* =========================================== */

/*              Contact Form 7                 */

/* =========================================== */

.sokochi-a-contact__form-wrap .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 0.9375rem;
}

.sokochi-a-contact__form-wrap .wpcf7 form .wpcf7-not-valid-tip {
	color: #E64141;
	font-size: 1rem;
}

.sokochi-a-contact__form-wrap .wpcf7-validation-errors,
.sokochi-a-contact__form-wrap .wpcf7-mail-sent-ng {
	background-color: rgba(230, 65, 65, 0.1);
	border: 0.125rem solid #E64141;
	border-radius: 0.9375rem;
	color: #E64141;
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 1.25rem;
	padding: 0.9375rem 1.25rem;
	text-align: center;
}

.sokochi-a-contact__form-wrap .wpcf7-mail-sent-ok {
	background-color: rgba(162, 199, 229, 0.1);
	border: 0.125rem solid #A2C7E5;
	border-radius: 0.9375rem;
	color: #5B7BA8;
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 1.25rem;
	padding: 0.9375rem 1.25rem;
	text-align: center;
}

.sokochi-a-contact__form-wrap .wpcf7 form div.wpcf7-response-output {
	border-radius: 0.9375rem;
	color: #3b3b3b;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	margin: 1.25rem 0 0 0;
	padding: 0.9375rem;
}

.sokochi-a-contact__form-wrap .wpcf7 form .wpcf7-spinner {
	margin: 0;
	position: absolute;
	right: 3.125rem;
	top: 0.8125rem;
}

.sokochi-a-contact__form-wrap .wpcf7-list-item-label {
	align-items: center;
	color: #3b3b3b;
	cursor: pointer;
	display: flex;
	font-size: 0.75rem;
	font-weight: 500;
	gap: 0.5rem;
	line-height: 2;
	position: relative;
}

.sokochi-a-contact__checkboxes .wpcf7-form-control-wrap {
	grid-gap: 0.3125rem 0.5625rem;
	display: grid;
	gap: 0.3125rem 0.5625rem;
	grid-template-columns: repeat(2, auto);
	margin: 0;
	width: 100%;
}

.sokochi-a-contact__checkboxes .wpcf7-form-control {
	display: contents;
}

.sokochi-a-contact__checkboxes .wpcf7-list-item {
	display: contents;
	list-style: none;
	margin: 0;
}

.sokochi-a-contact__checkboxes .wpcf7-list-item label {
	align-items: center;
	color: #3b3b3b;
	cursor: pointer;
	display: flex;
	font-size: 0.75rem;
	font-weight: 500;
	gap: 0.5rem;
	line-height: 2;
	margin: 0;
	position: relative;
}

.sokochi-a-contact__checkboxes .wpcf7-list-item label input[type=checkbox] {
	height: 0;
	opacity: 0;
	position: absolute;
	width: 0;
}

.sokochi-a-contact__checkboxes .wpcf7-list-item-label {
	display: inline-block;
	padding-left: 1.25rem;
	position: relative;
}

.sokochi-a-contact__checkboxes .wpcf7-list-item-label::before {
	background-color: transparent;
	border: 0.0625rem solid #3b3b3b;
	border-radius: 0.25rem;
	content: "";
	height: 0.875rem;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: background-color 0.3s, border-color 0.3s;
	width: 0.875rem;
}

.sokochi-a-contact__checkboxes .wpcf7-list-item-label svg {
	height: 0.6875rem;
	left: 0.09375rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) scale(0.8);
	transition: opacity 0.3s ease-out, transform 0.3s ease-out;
	width: 0.6875rem;
}

.sokochi-a-contact__checkboxes .wpcf7-list-item-label svg path {
	stroke: #fff;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
	stroke-dasharray: 16;
	stroke-dashoffset: 16;
	transition: stroke-dashoffset 0.5s ease-out;
}

.sokochi-a-contact__checkboxes .wpcf7-list-item label input[type=checkbox]:checked + .wpcf7-list-item-label::before {
	background-color: #5B7BA8;
	border-color: #5B7BA8;
}

.sokochi-a-contact__checkboxes .wpcf7-list-item label input[type=checkbox]:checked + .wpcf7-list-item-label svg {
	opacity: 1;
	transform: translateY(-50%) scale(1);
}

.sokochi-a-contact__checkboxes .wpcf7-list-item label input[type=checkbox]:checked + .wpcf7-list-item-label svg path {
	stroke-dashoffset: 0;
}

/* =========================================== */

/*              Fixed Button                   */

/* =========================================== */

.sokochi-a-fixed-btn {
	bottom: 2.5rem;
	left: 50%;
	opacity: 1;
	position: fixed;
	transform: translateX(-50%);
	transition: opacity 0.3s, visibility 0.3s;
	visibility: visible;
	z-index: 100;
}

.sokochi-a-fixed-btn.is-hidden {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
}

.sokochi-a-fixed-btn__close {
	align-items: center;
	background-color: #3b3b3b;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	height: 2.25rem;
	justify-content: center;
	padding-left: 0.5rem;
	padding-right: 0.375rem;
	position: absolute;
	right: -1.125rem;
	top: -1.125rem;
	transition: opacity 0.3s, background-color 0.3s;
	width: 2.25rem;
	z-index: 1;
}

.sokochi-a-fixed-btn__close:hover {
	opacity: 0.9;
}

.sokochi-a-fixed-btn__close-icon {
	color: #fff;
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 1.6875rem;
	font-weight: 900;
	line-height: 1;
	padding-bottom: 0.25rem;
}

.sokochi-a-fixed-btn__link {
	align-items: center;
	background-color: #E64141;
	border-radius: 0.625rem;
	box-shadow: 0.25rem 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
	display: flex;
	height: 4.375rem;
	justify-content: center;
	position: relative;
	transition: opacity 0.3s, transform 0.3s;
	width: 17.5rem;
}

.sokochi-a-fixed-btn__link::before {
	bottom: 0;
	box-shadow: inset 0.25rem 0.25rem 0.25rem rgba(255, 255, 255, 0.25);
	content: "";
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
}

.sokochi-a-fixed-btn__link:hover {
	opacity: 1;
}

.sokochi-a-fixed-btn__link:hover .sokochi-a-fixed-btn__icon {
	bottom: -3rem;
	right: -0.3125rem;
}

.sokochi-a-fixed-btn__text {
	color: #fff;
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
}

.sokochi-a-fixed-btn__icon {
	bottom: -1.9375rem;
	position: absolute;
	right: -1.125rem;
	transition: 0.1s ease-in;
	width: 2.875rem;
}

.sokochi-a-fixed-btn__icon img {
	-o-object-fit: cover;
	aspect-ratio: 73/86;
	object-fit: cover;
}

/* =========================================== */

/*                   fv                    */

/* =========================================== */

.sokochi-b-fv {
	overflow: hidden;
}

.sokochi-b-fv--layout {
	margin-top: 4.375rem;
}

.sokochi-b-fv__inner {
	position: relative;
}

.sokochi-b-fv__bg {
	height: 31.25rem;
	width: 100%;
}

.sokochi-b-fv__bg img {
	-o-object-fit: cover;
	-o-object-position: center bottom;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
	width: 100%;
}

.sokochi-b-fv__container {
	left: 50%;
	position: absolute;
	top: 1.875rem;
	transform: translateX(-50%);
	width: 100%;
}

.sokochi-b-fv__fukidashi {
	position: relative;
	width: 19.1875rem;
}

.sokochi-b-fv__fukidashi-img img {
	-o-object-fit: cover;
	aspect-ratio: 588/90;
	object-fit: cover;
}

.sokochi-b-fv__fukidashi-text {
	color: rgba(72, 100, 140, 0.95);
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.0625rem;
	font-weight: 700;
	left: 51%;
	letter-spacing: -0.03em;
	line-height: 1.2;
	position: absolute;
	text-align: center;
	top: 42%;
	transform: translate(-50%, -50%);
	white-space: nowrap;
}

.sokochi-b-fv__title {
	color: #fff;
	filter: drop-shadow(0.0625rem 0.125rem 0.1875rem rgb(0, 0, 0));
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2rem;
	font-weight: 900;
	line-height: 1.2;
	margin-bottom: 0.75rem;
}

.sokochi-b-fv__achievements {
	grid-gap: 0.125rem;
	display: grid;
	gap: 0.125rem;
}

.sokochi-b-fv__achievement {
	align-items: baseline;
	color: #fff;
	display: flex;
	filter: drop-shadow(0.0625rem 0.125rem 0.1875rem rgb(0, 0, 0));
	font-weight: 900;
	line-height: 1.2;
}

.sokochi-b-fv__achievement .-text {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
}

.sokochi-b-fv__achievement .-text-sm {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.75rem;
}

.sokochi-b-fv__achievement .-number {
	font-family: "Roboto Slab", serif;
	font-size: 1.5rem;
}

.sokochi-b-fv__img {
	display: none;
}

.sokochi-b-fv__img img {
	-o-object-fit: cover;
	aspect-ratio: 662/633;
	object-fit: cover;
}

.sokochi-b-fv__form {
	display: none;
}

.sokochi-b-fv__form-header {
	grid-gap: 0.25rem;
	align-items: center;
	background-color: #FFB650;
	display: grid;
	gap: 0.25rem;
	justify-content: center;
	position: relative;
}

.sokochi-b-fv__form-header-text {
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
}

.sokochi-b-fv__form-header-title {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
}

.sokochi-b-fv__form-body {
	background-color: #fff;
	padding: 1.25rem 0.625rem;
	position: relative;
	z-index: 1;
}

.sokochi-b-fv__form-body .wpcf7-form-control-wrap {
	position: relative;
	width: 100%;
}

.sokochi-b-fv__form-body .wpcf7-form-control {
	background-color: #D9D9D9;
	border: none;
	border-radius: 0.625rem;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	padding: 0.625rem 0.9375rem;
	width: 100%;
}

.sokochi-b-fv__form-body .wpcf7-form-control[type=text],
.sokochi-b-fv__form-body .wpcf7-form-control[type=email],
.sokochi-b-fv__form-body .wpcf7-form-control[type=tel] {
	height: 2.5rem;
}

.sokochi-b-fv__form-body .wpcf7-form-control::-moz-placeholder {
	color: #8e8989;
}

.sokochi-b-fv__form-body .wpcf7-form-control::placeholder {
	color: #8e8989;
}

.sokochi-b-fv__form-body .wpcf7-form-control:focus {
	background-color: #e6e6e6;
	outline: none;
}

.sokochi-b-fv__form-body .wpcf7-select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #D9D9D9;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b6b6b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-position: right 0.9375rem center;
	background-repeat: no-repeat;
	border: none;
	border-radius: 0.625rem;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	height: 2.5rem;
	padding: 0.625rem 1.875rem 0.625rem 0.9375rem;
	width: 100%;
}

.sokochi-b-fv__form-body .wpcf7-textarea {
	background-color: #D9D9D9;
	border: none;
	border-radius: 0.625rem;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	height: 7.5rem;
	line-height: 1.35;
	padding: 0.625rem 0.9375rem;
	resize: vertical;
	width: 100%;
}

.sokochi-b-fv__form-body .sokochi-b-form-submit-wrap {
	margin-left: auto;
	margin-right: auto;
	max-width: 20rem;
	position: relative;
	width: 100%;
}

.sokochi-b-fv__form-body .wpcf7-not-valid-tip {
	color: #E64141;
	font-size: 1rem;
	margin-top: 0.125rem;
}

.sokochi-b-fv__form-body .wpcf7-response-output {
	display: none;
}

.sokochi-b-fv__form-body .sokochi-b-form__privacy-notice {
	color: #3b3b3b;
	line-height: 1.35;
}

.sokochi-b-fv__form-body .sokochi-b-form__privacy-link {
	-webkit-text-decoration: underline;
	color: #5B7BA8;
	text-decoration: underline;
	text-underline-offset: 0.2em;
	transition: opacity 0.2s ease;
}

.sokochi-b-fv__form-body .sokochi-b-form__privacy-detail {
	display: none;
}

/* =========================================== */

/*                   problem                    */

/* =========================================== */

.sokochi-b-problem {
	background-color: #5B7BA8;
	position: relative;
}

.sokochi-b-problem--layout {
	padding-bottom: 3.125rem;
	padding-top: 3.125rem;
}

.sokochi-b-problem__inner {
	position: relative;
}

.sokochi-b-problem__heading {
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 1.2;
	margin-bottom: 1.875rem;
	text-align: center;
}

.sokochi-b-problem__content {
	position: relative;
}

.sokochi-b-problem__box {
	background-color: #fff;
	border-radius: 0.9375rem;
	margin-bottom: 1.25rem;
	padding: 1.25rem 0.625rem 8.4375rem;
	position: relative;
	z-index: 1;
}

.sokochi-b-problem__list {
	grid-gap: 0.625rem;
	display: grid;
	gap: 0.625rem;
}

.sokochi-b-problem__item {
	align-items: flex-start;
	display: flex;
	gap: 0.3125rem;
}

.sokochi-b-problem__icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='15' viewBox='0 0 19 15' fill='none'%3E%3Cpath d='M1.41422 6.91418L6.41422 11.9142L16.9142 1.41418' stroke='%235B7BA8' stroke-width='4'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	flex-shrink: 0;
	height: 0.9375rem;
	margin-top: 0.25rem;
	position: relative;
	width: 1.1875rem;
}

.sokochi-b-problem__text {
	color: #5B7BA8;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.96875rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}

.sokochi-b-problem__text-highlight {
	display: inline-block;
	position: relative;
}

.sokochi-b-problem__text-highlight::after {
	background-color: #FFB650;
	bottom: -0.125rem;
	content: "";
	height: 0.3125rem;
	left: 0;
	position: absolute;
	right: 0;
	z-index: -1;
}

.sokochi-b-problem__img {
	bottom: 0;
	position: absolute;
	right: 0;
	width: 10rem;
	z-index: -1;
}

.sokochi-b-problem__img img {
	-o-object-fit: cover;
	aspect-ratio: 373/292;
	object-fit: cover;
}

.sokochi-b-problem__message {
	position: relative;
	text-align: center;
}

.sokochi-b-problem__message::before,
.sokochi-b-problem__message::after {
	background-color: #fff;
	content: "";
	display: block;
	height: 2.75rem;
	position: absolute;
	width: 1.375rem;
}

.sokochi-b-problem__message::before {
	clip-path: polygon(0 0, 0% 100%, 100% 0);
	left: 0;
	top: 0;
}

.sokochi-b-problem__message::after {
	bottom: 0;
	clip-path: polygon(100% 0, 0 100%, 100% 100%);
	right: 0;
}

.sokochi-b-problem__message-text {
	color: #fff;
	font-family: "Noto Serif JP", sans-serif;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 2;
	margin: 0;
}

.sokochi-b-problem__message-normal {
	display: inline;
}

.sokochi-b-problem__message-highlight {
	color: #FFB650;
	display: inline;
	font-size: 1.25rem;
	margin-right: -0.25rem;
}

/* =========================================== */

/*                   solution                    */

/* =========================================== */

.sokochi-b-solution {
	background-color: #fff;
}

.sokochi-b-solution--layout {
	padding-bottom: 3.125rem;
	padding-top: 3.125rem;
}

.sokochi-b-solution__inner {
	position: relative;
}

.sokochi-b-solution__heading {
	color: #5B7BA8;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.875rem;
	text-align: center;
}

.sokochi-b-solution__list {
	grid-gap: 1.25rem;
	display: grid;
	gap: 1.25rem;
	margin-bottom: 1.875rem;
}

.sokochi-b-solution__item {
	grid-gap: 0.3125rem 0.125rem;
	align-items: start;
	display: grid;
	gap: 0.3125rem 0.125rem;
	grid-template-columns: auto 1fr;
}

.sokochi-b-solution__point {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.sokochi-b-solution__point-label {
	color: #5B7BA8;
	font-family: "Roboto Slab", serif;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 0.9;
	margin-bottom: 0;
}

.sokochi-b-solution__point-number {
	color: #5B7BA8;
	font-family: "Roboto Slab", serif;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 0.9;
}

.sokochi-b-solution__content {
	display: contents;
}

.sokochi-b-solution__title {
	align-items: center;
	background-color: #5B7BA8;
	color: #fff;
	display: flex;
	font-size: 1.1875rem;
	font-weight: 700;
	height: 2.1875rem;
	justify-content: center;
	line-height: 1.5;
	padding: 0.625rem 0;
	text-align: center;
}

.sokochi-b-solution__subtitle {
	grid-gap: 0.25rem;
	align-items: start;
	color: #5B7BA8;
	display: grid;
	font-size: 1rem;
	font-weight: 700;
	gap: 0.25rem;
	grid-template-columns: auto 1fr;
	line-height: 1.1;
}

.sokochi-b-solution__subtitle::before {
	background-color: #5B7BA8;
	content: "";
	display: block;
	height: 0.125rem;
	margin-top: 0.5625rem;
	width: 1.5625rem;
}

.sokochi-b-solution__description {
	color: #5B7BA8;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.5;
}

.sokochi-b-solution__image {
	border-radius: 0.9375rem;
	height: 10.875rem;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	width: 22.1875rem;
}

.sokochi-b-solution__image img {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

/* =========================================== */

/*                   voice                    */

/* =========================================== */

.sokochi-b-voice {
	background-color: #E8DCCB;
}

.sokochi-b-voice--layout {
	padding-bottom: 3.125rem;
	padding-top: 3.125rem;
}

.sokochi-b-voice__inner {
	position: relative;
}

.sokochi-b-voice__heading {
	color: #5B7BA8;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1.875rem;
	text-align: center;
}

.sokochi-b-voice__list {
	grid-gap: 1.25rem;
	display: grid;
	gap: 1.25rem;
}

.sokochi-b-voice__item {
	position: relative;
}

.sokochi-b-voice__item-title {
	background-color: #5B7BA8;
	border-radius: 0.9375rem 0.9375rem 0 0;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.2;
	padding: 0.5rem 0.625rem 1.75rem;
	width: -moz-fit-content;
	width: fit-content;
}

.sokochi-b-voice__item-body {
	display: grid;
	filter: drop-shadow(0 0.125rem 0.125rem rgba(0, 0, 0, 0.25));
	padding-left: 3rem;
	position: relative;
}

.sokochi-b-voice__item-customer-comment {
	margin-top: -1.125rem;
	position: relative;
	width: 19.1875rem;
}

.sokochi-b-voice__item-customer-comment img {
	-o-object-fit: cover;
	aspect-ratio: 307/76;
	object-fit: cover;
}

.sokochi-b-voice__customer-comment-text {
	background-color: #fff;
	border-radius: 1.875rem;
	color: #5B7BA8;
	font-size: 1rem;
	font-weight: 700;
	left: 0.125rem;
	line-height: 1.1;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	position: absolute;
	top: 0.375rem;
	width: calc(100% - 0.25rem);
}

.sokochi-b-voice__item-avatar {
	border-radius: 50%;
	bottom: -1.5rem;
	height: 3.75rem;
	left: 0;
	overflow: hidden;
	position: absolute;
	width: 3.75rem;
	z-index: 1;
}

.sokochi-b-voice__item-avatar img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.sokochi-b-voice__item-staff-comment {
	background-color: #D9D9D9;
	border-radius: 0.9375rem;
	margin-top: -2.25rem;
	padding: 3.5625rem 0.9375rem 0.9375rem 1.5625rem;
}

.sokochi-b-voice__staff-comment-label {
	background-color: #5B7BA8;
	color: #fff;
	display: inline-block;
	font-size: 1rem;
	font-weight: 700;
	padding: 0.34375rem 0.6875rem;
}

.sokochi-b-voice__staff-comment-text {
	border-left: 0.1875rem solid #5B7BA8;
	color: #5B7BA8;
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5;
	padding: 0.3125rem 0.5rem;
}

/* =========================================== */

/*                   works                    */

/* =========================================== */

.sokochi-b-works {
	background-color: #E8DCCB;
	overflow: hidden;
	position: relative;
}

.sokochi-b-works--layout {
	padding-bottom: 0;
	padding-top: 1.875rem;
}

.sokochi-b-works__inner {
	position: relative;
}

.sokochi-b-works__heading-wrap {
	margin-bottom: 1.875rem;
	text-align: center;
}

.sokochi-b-works__heading {
	color: #5B7BA8;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 0.625rem;
}

.sokochi-b-works__subheading {
	color: #5B7BA8;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
}

.sokochi-b-works__container {
	margin-bottom: 1.25rem;
}

.sokochi-b-works__list {
	border-left: 0.25rem solid #5B7BA8;
	border-right: 0.25rem solid #5B7BA8;
	border-top: 0.25rem solid #5B7BA8;
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-bottom: 0.625rem;
	position: relative;
}

.sokochi-b-works__item {
	border-bottom: 0.25rem solid #5B7BA8;
	display: grid;
	grid-template-columns: 51% 1fr;
}

.sokochi-b-works__item-label {
	align-items: baseline;
	background-color: #fff;
	border-right: 0.25rem solid #5B7BA8;
	display: flex;
	justify-content: center;
	padding: 1.25rem 0;
	width: 100%;
}

.sokochi-b-works__item-label-main {
	color: #5B7BA8;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: normal;
}

.sokochi-b-works__item-value {
	align-items: flex-end;
	background-color: #5B7BA8;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-bottom: 0.625rem;
	padding-left: 0;
	padding-right: 0.9375rem;
	padding-top: 0.625rem;
	position: relative;
	width: 100%;
}

.sokochi-b-works__item-value-wrap {
	align-items: baseline;
	display: flex;
	gap: 0.125rem;
}

.sokochi-b-works__item-value-number {
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	text-align: right;
}

.sokochi-b-works__item-value-unit {
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	line-height: normal;
}

.sokochi-b-works__item-note {
	bottom: 0.125rem;
	color: #fff;
	font-size: 0.625rem;
	line-height: 1.5;
	margin-top: 0.25rem;
	opacity: 0.9;
	position: absolute;
	right: 0.875rem;
}

.sokochi-b-works__note {
	color: #5B7BA8;
	font-size: 0.75rem;
	line-height: 1.5;
}

.sokochi-b-works__gallery {
	margin-bottom: 3.125rem;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	overflow: hidden;
}

.sokochi-b-works__gallery-track {
	animation: scroll-left 30s linear infinite;
	display: flex;
	gap: 0.625rem;
	width: -moz-fit-content;
	width: fit-content;
}

.sokochi-b-works__gallery-track:hover {
	animation-play-state: paused;
}

.sokochi-b-works__gallery-item {
	border-radius: 0.9375rem;
	flex-shrink: 0;
	height: 6.25rem;
	overflow: hidden;
	width: 10rem;
}

.sokochi-b-works__gallery-item img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.sokochi-b-works__content-wrap {
	background-color: #fff;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding-bottom: 3.125rem;
	padding-top: 3.125rem;
}

.sokochi-b-works__content {
	margin-bottom: 1.875rem;
	text-align: center;
}

.sokochi-b-works__content-title {
	color: #5B7BA8;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.4583333333;
	margin-bottom: 1.25rem;
}

.sokochi-b-works__content-text {
	color: #5B7BA8;
	font-family: "Noto Serif JP", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 2;
}

.sokochi-b-works__content-text p + p {
	margin-top: 1.5625rem;
}

.sokochi-b-works__company {
	background-color: #5B7BA8;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 2;
	margin-left: 0.625rem;
	margin-right: 0.625rem;
	padding: 0.9375rem 1.25rem;
	text-align: center;
}

/* =========================================== */

/*                   flow                     */

/* =========================================== */

.sokochi-b-flow {
	background-color: #5B7BA8;
}

.sokochi-b-flow--layout {
	padding-bottom: 3.75rem;
	padding-top: 3.75rem;
}

.sokochi-b-flow__inner {
	position: relative;
}

.sokochi-b-flow__heading-wrap {
	margin-bottom: 2.6875rem;
	text-align: center;
}

.sokochi-b-flow__heading {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
}

.sokochi-b-flow__subheading {
	color: #fff;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.6;
	margin: 0 0 0.375rem;
}

.sokochi-b-flow__list {
	grid-gap: 3.5rem;
	display: grid;
	gap: 3.5rem;
	justify-items: center;
	list-style: none;
	margin: 0 0 2.25rem;
	padding: 0;
}

.sokochi-b-flow__item {
	grid-gap: 0.75rem;
	display: grid;
	gap: 0.75rem;
	justify-items: center;
	max-width: 60rem;
	position: relative;
	text-align: center;
	width: 100%;
}

.sokochi-b-flow__item:not(:last-child)::after {
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='15' viewBox='0 0 250 15' fill='none'%3E%3Cpath d='M122.983 2.84766H127.016V2.5H131.049V2.84766H131.438L125.006 14L118.559 2.84766H118.951V2.5H122.983V2.84766ZM2.0166 3.5H0V2.5H2.0166V3.5ZM10.0811 3.5H6.04883V2.5H10.0811V3.5ZM18.1455 3.5H14.1133V2.5H18.1455V3.5ZM26.21 3.5H22.1777V2.5H26.21V3.5ZM34.2744 3.5H30.2422V2.5H34.2744V3.5ZM42.3389 3.5H38.3066V2.5H42.3389V3.5ZM50.4033 3.5H46.3711V2.5H50.4033V3.5ZM58.4678 3.5H54.4355V2.5H58.4678V3.5ZM66.5322 3.5H62.5V2.5H66.5322V3.5ZM74.5967 3.5H70.5645V2.5H74.5967V3.5ZM82.6611 3.5H78.6289V2.5H82.6611V3.5ZM90.7256 3.5H86.6934V2.5H90.7256V3.5ZM98.79 3.5H94.7578V2.5H98.79V3.5ZM106.854 3.5H102.822V2.5H106.854V3.5ZM114.919 3.5H110.887V2.5H114.919V3.5ZM139.113 3.5H135.081V2.5H139.113V3.5ZM147.178 3.5H143.146V2.5H147.178V3.5ZM155.242 3.5H151.21V2.5H155.242V3.5ZM163.307 3.5H159.274V2.5H163.307V3.5ZM171.371 3.5H167.339V2.5H171.371V3.5ZM179.436 3.5H175.403V2.5H179.436V3.5ZM187.5 3.5H183.468V2.5H187.5V3.5ZM195.564 3.5H191.532V2.5H195.564V3.5ZM203.629 3.5H199.597V2.5H203.629V3.5ZM211.693 3.5H207.661V2.5H211.693V3.5ZM219.758 3.5H215.726V2.5H219.758V3.5ZM227.822 3.5H223.79V2.5H227.822V3.5ZM235.887 3.5H231.854V2.5H235.887V3.5ZM243.951 3.5H239.919V2.5H243.951V3.5ZM250 3.5H247.983V2.5H250V3.5Z' fill='white'/%3E%3C/svg%3E") center/contain no-repeat;
	bottom: -1.875rem;
	content: "";
	height: 0.9375rem;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 15.625rem;
}

.sokochi-b-flow__title {
	background-color: #fff;
	border-radius: 1.875rem;
	color: #5B7BA8;
	height: 3.125rem;
	padding: 0.6875rem 1.25rem 0;
	position: relative;
	width: 12.5rem;
}

.sokochi-b-flow__title-step {
	font-family: "Roboto Slab", serif;
	font-size: 1.25rem;
	font-weight: 700;
	left: 50%;
	line-height: 1;
	position: absolute;
	top: -0.8125rem;
	transform: translateX(-50%);
	z-index: 1;
}

.sokochi-b-flow__title-step::before {
	stroke-linejoin: round;
	-webkit-text-stroke-color: currentColor;
	-webkit-text-stroke-width: 0.625rem;
	color: #fff;
	content: attr(data-title-step);
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	z-index: -1;
}

.sokochi-b-flow__title-text {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.4;
	margin: 0;
}

.sokochi-b-flow__description {
	color: #fff;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.7;
	margin: 0;
	max-width: 57.5rem;
}

.sokochi-b-flow__arrow {
	align-items: center;
	display: flex;
	height: 1.25rem;
	justify-content: center;
}

.sokochi-b-flow__arrow-icon {
	color: #fff;
	display: inline-block;
	font-size: 1rem;
	line-height: 1;
}

.sokochi-b-flow__cta {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.sokochi-b-flow__cta-btn {
	-webkit-text-decoration: none;
	align-items: center;
	border-radius: 3.125rem;
	box-shadow: 0.25rem 0.25rem 0.25rem 0 rgba(255, 255, 255, 0.25) inset;
	display: flex;
	filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.25));
	flex-direction: column;
	height: 3.75rem;
	justify-content: center;
	text-decoration: none;
	transition: opacity 0.3s;
	width: 18.75rem;
}

.sokochi-b-flow__cta-btn.-yellow {
	background-color: #E6B241;
}

.sokochi-b-flow__cta-btn.-red {
	background-color: #E64141;
}

.sokochi-b-flow__cta-btn-label {
	color: #fff;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 0;
}

.sokochi-b-flow__cta-btn-tel {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
}

.sokochi-b-flow__cta-btn-text {
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
}

/* =========================================== */

/*                   faq                      */

/* =========================================== */

.sokochi-b-faq {
	background-color: #F5F5F5;
}

.sokochi-b-faq--layout {
	padding-bottom: 3.75rem;
	padding-top: 3.75rem;
}

.sokochi-b-faq__inner {
	position: relative;
}

.sokochi-b-faq__heading {
	color: #5B7BA8;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.875rem;
	text-align: center;
}

.sokochi-b-faq__list {
	grid-gap: 1.25rem;
	display: grid;
	gap: 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sokochi-b-faq__item {
	border-top: 0.0625rem solid #6b6b6b;
	padding-bottom: 0.375rem;
	padding-top: 0.375rem;
}

.sokochi-b-faq__accordion {
	background: transparent;
	border: none;
	display: block;
}

.sokochi-b-faq__summary {
	align-items: center;
	cursor: pointer;
	display: flex;
	gap: 0.3125rem;
	list-style: none;
	padding-bottom: 0.625rem;
	padding-right: 0.1875rem;
	padding-top: 0.625rem;
}

.sokochi-b-faq__summary::-webkit-details-marker {
	display: none;
}

.sokochi-b-faq__question {
	color: #5B7BA8;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.4;
}

.sokochi-b-faq__indicator {
	flex-shrink: 0;
	height: 1.625rem;
	margin-left: auto;
	position: relative;
	width: 1.625rem;
}

.sokochi-b-faq__indicator::before,
.sokochi-b-faq__indicator::after {
	background-color: #E64141;
	content: "";
	height: 0.3125rem;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: opacity 0.2s ease, transform 0.2s ease;
	width: 1.25rem;
}

.sokochi-b-faq__indicator::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.sokochi-b-faq__accordion[open] .sokochi-b-faq__indicator::after {
	opacity: 0;
}

.sokochi-b-faq__content {
	padding: 0 0 1.125rem;
	padding-left: 1.625rem;
}

.sokochi-b-faq__answer {
	color: #6b6b6b;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4375;
	margin-bottom: 0.375rem;
}

.sokochi-b-faq__description {
	color: #6b6b6b;
	font-size: 1rem;
	line-height: 1.4375;
}

/* =========================================== */

/*                   contact                  */

/* =========================================== */

.sokochi-b-contact--layout {
	padding-bottom: 3.125rem;
	padding-top: 3.125rem;
}

.sokochi-b-contact__inner {
	position: relative;
}

.sokochi-b-contact__heading {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	text-align: center;
}

.sokochi-b-contact__description {
	font-family: "Noto Serif JP", sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 1.25rem;
	text-align: center;
}

.sokochi-b-contact__form-wrap {
	background-color: #fff;
	border-radius: 1.5rem;
	padding: 1.25rem 0.9375rem 1.875rem;
}

.sokochi-b-contact__form-wrap .wpcf7-form {
	grid-gap: 0.75rem;
	display: grid;
	gap: 0.75rem;
}

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

.sokochi-b-contact__form-wrap .wpcf7-form-control {
	background-color: #D9D9D9;
	border: none;
	border-radius: 0.9375rem;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	padding: 0.625rem 0.9375rem;
	width: 100%;
}

.sokochi-b-contact__form-wrap .wpcf7-form-control[type=text],
.sokochi-b-contact__form-wrap .wpcf7-form-control[type=email],
.sokochi-b-contact__form-wrap .wpcf7-form-control[type=tel] {
	height: 2.5rem;
}

.sokochi-b-contact__form-wrap .wpcf7-form-control::-moz-placeholder {
	color: #8e8989;
	font-size: 0.75rem;
}

.sokochi-b-contact__form-wrap .wpcf7-form-control::placeholder {
	color: #8e8989;
	font-size: 0.75rem;
}

.sokochi-b-contact__form-wrap .wpcf7-form-control:focus {
	background-color: #e6e6e6;
	outline: none;
}

.sokochi-b-contact__form-wrap .wpcf7-select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #D9D9D9;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b6b6b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-position: right 0.9375rem center;
	background-repeat: no-repeat;
	background-size: 0.75rem 0.75rem;
	border: none;
	border-radius: 0.625rem;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	height: 2.5rem;
	padding: 0.625rem 1.875rem 0.625rem 0.9375rem;
	width: 100%;
}

.sokochi-b-contact__form-wrap .wpcf7-textarea {
	background-color: #D9D9D9;
	border: none;
	border-radius: 0.625rem;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.875rem;
	height: 7.5rem;
	line-height: 1.35;
	padding: 0.625rem 0.9375rem;
	resize: vertical;
	width: 100%;
}

.sokochi-b-contact__form-wrap .sokochi-b-form-field {
	grid-gap: 0.25rem;
	display: grid;
	gap: 0.25rem;
}

.sokochi-b-contact__form-wrap .sokochi-b-form-label {
	color: #3b3b3b;
	display: block;
	font-size: 1rem;
	font-weight: 700;
}

.sokochi-b-contact__form-wrap .sokochi-b-form-submit-wrap {
	margin-bottom: 0.3125rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 15.625rem;
	position: relative;
	width: 100%;
}

.sokochi-b-contact__form-wrap .wpcf7-submit {
	background-color: #E64141;
	border-radius: 3.125rem;
	box-shadow: 0.25rem 0.25rem 0.25rem 0 rgba(255, 255, 255, 0.25) inset;
	color: #fff;
	cursor: pointer;
	filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.25));
	font-size: 1.25rem;
	font-weight: 700;
	height: 3.125rem;
	text-align: center;
	transition: opacity 0.3s, transform 0.3s;
}

.sokochi-b-contact__form-wrap .wpcf7-submit:active {
	transform: translateY(0);
}

.sokochi-b-contact__form-wrap .wpcf7 form .wpcf7-spinner {
	margin: 0;
	position: absolute;
	right: 10%;
	top: 50%;
	transform: translate(50%, -50%);
}

.sokochi-b-contact__form-wrap .wpcf7-not-valid-tip {
	color: #E64141;
	font-size: 1rem;
	margin-top: 0.125rem;
}

.sokochi-b-contact__form-wrap .sokochi-b-form__privacy-notice {
	color: #3b3b3b;
	font-size: 0.75rem;
	line-height: 1.5;
	margin: 0.9375rem 0 0.3125rem;
	text-align: center;
}

.sokochi-b-contact__form-wrap .sokochi-b-form__privacy-link {
	-webkit-text-decoration: underline;
	color: #5B7BA8;
	text-decoration: underline;
	text-underline-offset: 0.2em;
	transition: opacity 0.2s ease;
}

.sokochi-b-contact__form-wrap .sokochi-b-form__privacy-detail {
	color: #3b3b3b;
	font-size: 0.75rem;
	line-height: 1.4166666667;
	text-align: center;
}

.sokochi-b-contact__form-wrap .wpcf7-response-output {
	display: none;
}

/* =========================================== */

/*                   page top                  */

/* =========================================== */

.sokochi-b-contact__page-top {
	text-align: right;
}

.sokochi-b-contact__page-top-btn {
	align-items: center;
	background-color: #fff;
	border-radius: 3.125rem;
	box-shadow: 0.125rem 0.125rem 0.125rem rgba(0, 0, 0, 0.25);
	cursor: pointer;
	display: inline-flex;
	flex-direction: row;
	gap: 0.5rem;
	height: 3.125rem;
	justify-content: center;
	padding-bottom: 0.125rem;
	padding-left: 1.25rem;
	position: relative;
	transition: opacity 0.3s, transform 0.3s;
	width: 12.5rem;
}

.sokochi-b-contact__page-top-btn:active {
	transform: translateY(0);
}

.sokochi-b-contact__page-top-icon {
	color: #5B7BA8;
	flex-shrink: 0;
	height: 1.75rem;
	width: 1.75rem;
}

.sokochi-b-contact__page-top-text {
	color: #5B7BA8;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.2;
}

/* =========================================== */

/*                   thanks                    */

/* =========================================== */

.shiten-thanks {
	overflow: hidden;
	position: relative;
}

.shiten-thanks--layout {
	margin-top: 4.375rem;
}

.shiten-thanks__inner {
	padding-bottom: 9.625rem;
	padding-top: 2.5rem;
}

.shiten-thanks__box {
	margin-bottom: 3.125rem;
	text-align: center;
}

.shiten-thanks__main-message {
	background-color: #273993;
	border-radius: 0.9375rem;
	color: #fff;
	display: inline-block;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 2rem;
	padding-bottom: 1.375rem;
	padding-top: 1.25rem;
	text-align: center;
	width: 100%;
}

.shiten-thanks__details {
	color: #273993;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 150%;
}

.shiten-thanks__details p {
	margin: 0;
	margin-bottom: 1.25rem;
}

.shiten-thanks__details p:last-child {
	margin-bottom: 0;
}

/* Button */

.shiten-thanks__btn {
	text-align: center;
}

.shiten-thanks__btn a {
	align-items: center;
	background-color: #59CAEB;
	border-radius: 3.125rem;
	box-shadow: 0 0.25rem 0.25rem 0 rgba(255, 255, 255, 0.25) inset;
	color: #fff;
	display: inline-flex;
	filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.25));
	font-size: 1.5rem;
	font-weight: 700;
	height: 4.375rem;
	justify-content: center;
	max-width: 20rem;
	transition: opacity 0.3s ease;
	width: 100%;
}

/* Mascot area */

.shiten-thanks__mascot-img {
	bottom: 0;
	left: 0.3125rem;
	position: absolute;
	width: 9.375rem;
}

.shiten-thanks__mascot-img img {
	-o-object-fit: cover;
	aspect-ratio: 252/252;
	object-fit: cover;
}

/* Background image */

.shiten-thanks__bg-img {
	bottom: 0;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: -1;
}

.shiten-thanks__bg-img img {
	-o-object-fit: cover;
	aspect-ratio: 375/41;
	object-fit: cover;
}

/* =========================================== */

/*                   thanks                    */

/* =========================================== */

.sokochi-a-thanks {
	position: relative;
}

.sokochi-a-thanks--layout {
	margin-top: 4.375rem;
	padding-bottom: 5rem;
	padding-top: 2.5rem;
}

.sokochi-a-thanks__inner {
	position: relative;
}

.sokochi-a-thanks__content {
	background-color: #fff;
	border-radius: 1.5rem;
	padding: 6.25rem 1.25rem 6.25rem;
	text-align: center;
}

.sokochi-a-thanks__title {
	color: #5B7BA8;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 1.875rem;
}

.sokochi-a-thanks__text {
	color: #5B7BA8;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.75;
	margin-bottom: 2.5rem;
}

.sokochi-a-thanks__btn-wrap {
	display: flex;
	justify-content: center;
}

.sokochi-a-thanks__btn {
	align-items: center;
	background-color: #5B7BA8;
	border-radius: 3.125rem;
	box-shadow: 4px 4px 4px 0 rgba(255, 255, 255, 0.25) inset;
	color: #fff;
	display: inline-flex;
	filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
	font-size: 1.25rem;
	font-weight: 700;
	height: 3.75rem;
	justify-content: center;
	max-width: 20rem;
	transition: opacity 0.3s ease;
	width: 100%;
}

/* =========================================== */

/*                   thanks                    */

/* =========================================== */

.sokochi-b-thanks {
	position: relative;
}

.sokochi-b-thanks--layout {
	margin-top: 4.375rem;
	padding-bottom: 5rem;
	padding-top: 2.5rem;
}

.sokochi-b-thanks__inner {
	position: relative;
}

.sokochi-b-thanks__content {
	background-color: #fff;
	border-radius: 1.5rem;
	padding: 6.25rem 1.25rem 6.25rem;
	text-align: center;
}

.sokochi-b-thanks__title {
	font-family: "Noto Serif JP", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 1.875rem;
}

.sokochi-b-thanks__text {
	font-family: "Noto Serif JP", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.75;
	margin-bottom: 2.5rem;
}

.sokochi-b-thanks__btn-wrap {
	display: flex;
	justify-content: center;
}

.sokochi-b-thanks__btn {
	align-items: center;
	background-color: #5B7BA8;
	border-radius: 3.125rem;
	box-shadow: 4px 4px 4px 0 rgba(255, 255, 255, 0.25) inset;
	color: #fff;
	display: inline-flex;
	filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
	font-size: 1.25rem;
	font-weight: 700;
	height: 3.75rem;
	justify-content: center;
	max-width: 20rem;
	transition: opacity 0.3s ease;
	width: 100%;
}

:root {
	--inner-width: 1320;
}

html {
	font-size: 16px;
	font-size: 4.2666666667vw;
}

body.sokochi-a {
	background-color: #F5F2ED;
	color: #5B7BA8;
	font-family: "Zen Maru Gothic", sans-serif;
}

@media (hover: hover) and (pointer: fine) {

.c-base-btn a:hover {
	opacity: 0.8;
}

.shiten-problem__btn-link:hover {
	background-color: #273993;
	color: #fff;
	opacity: 1;
}

.shiten-network__cta:hover {
	opacity: 0.9;
}

.shiten-network__branch-link:hover {
	background-color: #273993;
	color: #fff;
	opacity: 1;
}

.shiten-contact-form__privacy-link:hover {
	opacity: 0.8;
}

.shiten-contact-form .wpcf7-submit:hover {
	opacity: 0.9;
}

.sokochi-a-flow__cta-btn:hover {
	opacity: 0.8;
}

.sokochi-a-contact__privacy-link:hover {
	color: #A2C7E5;
}

.sokochi-a-contact__page-top-btn:hover {
	opacity: 1;
	transform: translateY(-0.25rem);
}

.sokochi-b-fv__form-body .wpcf7-submit:hover {
	opacity: 0.9;
}

.sokochi-b-fv__form-body .sokochi-b-form__privacy-link:hover {
	opacity: 0.8;
}

.sokochi-b-flow__cta-btn:hover {
	opacity: 0.8;
}

.sokochi-b-contact__form-wrap .wpcf7-submit:hover {
	opacity: 0.9;
}

.sokochi-b-contact__form-wrap .sokochi-b-form__privacy-link:hover {
	opacity: 0.8;
}

.sokochi-b-contact__page-top-btn:hover {
	opacity: 1;
	transform: translateY(-0.25rem);
}

.shiten-thanks__btn a:hover {
	opacity: 0.8;
}

.sokochi-a-thanks__btn:hover {
	opacity: 0.8;
}

.sokochi-b-thanks__btn:hover {
	opacity: 0.8;
}

}

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

.pc-only {
	display: block;
}

.pc-i-only {
	display: inline;
}

.sp-only {
	display: none;
}

body.fixed {
	position: static;
	position: initial;
}

a:hover,
button:hover {
	opacity: 0.7;
}

a:not([href]):hover {
	opacity: 1;
}

.anime-zoom__img img {
	transition: 0.8s all;
}

.c-base-btn a {
	filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.25));
	font-size: 1.5rem;
	height: 4.375rem;
}

.c-content--layout {
	margin-bottom: 6.25rem;
}

.c-content .c-content__inner > ol ol,
.c-content .c-content__inner > ol ul,
.c-content .c-content__inner > ul ol,
.c-content .c-content__inner > ul ul {
	margin-bottom: 2.5rem;
	padding-left: 1.25rem;
}

.c-content .c-content__inner > ol > li {
	margin-bottom: 1.875rem;
}

.c-content .c-content__inner ol > li,
.c-content .c-content__inner ul > li {
	font-size: 1rem;
}

.c-content .c-content__inner > p {
	font-size: 1rem;
	margin-bottom: 1.875rem;
}

.c-content .c-content__inner > p + h2,
.c-content .c-content__inner > p + h3,
.c-content .c-content__inner > p + h4,
.c-content .c-content__inner > p + figure {
	margin-top: 1.25rem;
}

.wpcf7-form-control-wrap {
	flex: 1;
}

.footer-sokochi {
	padding-bottom: 2.0625rem;
	padding-top: 2rem;
}

.footer-sokochi__copyright {
	font-size: 1.5rem;
}

.header {
	filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.25));
	height: 7.5rem;
}

.header__logo-link {
	width: 4.5625rem;
}

.header__btns {
	gap: 1.25rem;
	grid-template-columns: repeat(2, 20rem);
	height: 4.375rem;
}

.header__btn-link {
	filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.25));
	font-size: 1.5rem;
}

.header__btn-link.-yellow {
	font-size: 2rem;
	padding-bottom: 0;
}

.header__btn-link.-yellow span {
	font-size: 1rem;
	line-height: 0.96;
}

.inner,
.inner-shiten,
.inner-b,
.inner-a {
	max-width: 86.25rem;
	padding-left: 30px;
	padding-right: 30px;
}

.inner-a {
	max-width: 86.25rem;
}

.inner-b {
	max-width: 75rem;
}

.inner-shiten {
	max-width: 75rem;
	padding-left: 1.875rem;
	padding-right: 1.875rem;
}

.footer-shiten {
	padding-bottom: 2.0625rem;
	padding-top: 2rem;
}

.footer-shiten__copyright.-page {
	font-size: 1rem;
	line-height: 1.4375;
}

.footer-shiten__copyright.-thanks {
	font-size: 1.5rem;
}

.footer-shiten--page {
	padding-bottom: 4.5rem;
	padding-top: 4rem;
}

.footer-shiten__company {
	font-size: 2.5rem;
	gap: 2.1875rem;
	grid-template-columns: repeat(2, auto);
	margin-bottom: 2.25rem;
}

.footer-shiten__info {
	gap: 1.875rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 53.125rem;
	padding-left: 3.125rem;
	padding-right: 0;
}

.footer-shiten__info-item {
	gap: 3.5rem;
	grid-template-columns: 4.375rem auto;
}

.footer-shiten__info-label,
.footer-shiten__info-value {
	font-size: 1rem;
}

.footer-shiten__info-label a,
.footer-shiten__info-value a {
	display: inline-block;
	margin-left: 1.75rem;
}

.footer-shiten__link {
	font-size: 1.5rem;
	line-height: 1.4583333333;
}

.header-shiten {
	background: linear-gradient(to right, #fff 0%, #fff calc(50% - 30rem), #59CAEB calc(50% - 30rem), #59CAEB 100%);
	filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.25));
	height: 6.25rem;
}

.header-shiten.-page {
	transform: translateY(-110%);
	transition: transform 0.3s ease-in-out;
}

.header-shiten.-page.is-scrolled {
	left: 0;
	position: fixed;
	top: 0;
	transform: translateY(0);
}

.header-shiten__logo {
	height: 100%;
	padding-right: 0.9375rem;
}

.header-shiten__logo-link {
	width: 4.5625rem;
}

.header-shiten__btns {
	gap: 1.25rem;
	grid-template-columns: repeat(2, 20rem);
	height: 4.375rem;
}

.header-shiten__btn {
	height: inherit;
}

.header-shiten__btn-link {
	box-shadow: 0.25rem 0.25rem 0.25rem 0 rgba(255, 255, 255, 0.25) inset;
	filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.25));
	font-size: 1.5rem;
}

.header-shiten__btn-link.-tel {
	font-size: 2rem;
	gap: 0.375rem;
	padding-bottom: 0;
}

.header-shiten__btn-link.-tel span {
	font-size: 1rem;
	line-height: 0.96;
}

.footer-sokochi {
	padding-bottom: 2.5625rem;
	padding-top: 2.5rem;
}

.footer-sokochi__nav {
	margin-bottom: 2rem;
}

.footer-sokochi__nav-items {
	gap: 0.9375rem;
}

.footer-sokochi__nav-item {
	gap: 0.9375rem;
}

.footer-sokochi__nav-item::before {
	font-size: 1.5rem;
}

.footer-sokochi__nav-link {
	font-size: 1.5rem;
}

.footer-sokochi__copyright {
	font-size: 1.5rem;
}

.header-sokochi {
	filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.25));
	height: 7.5rem;
}

body.sokochi-b .header-sokochi__logo-link {
	width: 5.875rem;
}

body.sokochi-b .header-sokochi__btns {
	grid-template-columns: repeat(2, 17.5rem);
	height: 3.125rem;
}

body.sokochi-b .header-sokochi__btn-link.-yellow {
	font-size: 1.5rem;
}

.header-sokochi__logo-link {
	width: 6.5rem;
}

.header-sokochi__btns {
	gap: 1.25rem;
	grid-template-columns: repeat(2, 20rem);
	height: 4.375rem;
}

.header-sokochi__btn-link {
	box-shadow: 0.25rem 0.25rem 0.25rem 0 rgba(255, 255, 255, 0.25) inset;
	filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.25));
	font-size: 1.5rem;
}

.header-sokochi__btn-link.-yellow {
	font-size: 2rem;
	padding-bottom: 0;
}

.header-sokochi__btn-link.-yellow span {
	font-size: 1rem;
	line-height: 0.96;
}

.error--layout {
	margin-top: 7.5rem;
	padding-bottom: 9.375rem;
	padding-top: 6.25rem;
}

.error__heading {
	font-size: 4rem;
	line-height: 1.4;
	margin-bottom: 2.5rem;
}

.error__text {
	font-size: 1.5rem;
	line-height: 2;
	margin-bottom: 3.75rem;
}

.policy--layout {
	padding-bottom: 10rem;
	padding-top: 10rem;
}

.policy__content h2 {
	margin-top: 2.5rem;
}

.policy__content h3,
.policy__content h4 {
	margin-top: 2rem;
}

.shiten-fv--layout {
	margin-top: 0;
}

.shiten-fv__header {
	background: linear-gradient(to right, #fff 0%, #fff calc(50% - 31.875rem), #59CAEB calc(50% - 31.875rem), #59CAEB 100%);
	display: block;
	filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.25));
	height: 6.25rem;
	position: relative;
	width: 100%;
	z-index: 3;
}

.shiten-fv__header-logo-link {
	align-items: center;
	background-color: #fff;
	display: flex;
	height: 100%;
	height: 12.625rem;
	left: 0;
	padding: 2.5625rem 1.6875rem 1.9375rem;
	position: absolute;
	top: 0;
	width: 11.875rem;
	z-index: 10;
}

.shiten-fv__header-btns {
	grid-gap: 1.25rem;
	align-items: center;
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(2, 20rem);
	height: 4.375rem;
	justify-content: end;
}

.shiten-fv__header-btn {
	height: inherit;
}

.shiten-fv__header-btn-link {
	box-shadow: 0.25rem 0.25rem 0.25rem 0 rgba(255, 255, 255, 0.25) inset;
	filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.25));
	font-size: 1.5rem;
}

.shiten-fv__header-btn-link.-tel {
	font-size: 2rem;
	gap: 0.375rem;
	padding-bottom: 0;
}

.shiten-fv__header-btn-link.-tel span {
	font-size: 1rem;
	line-height: 0.96;
}

.shiten-fv__bg {
	height: 50rem;
}

.shiten-fv__container {
	max-width: 87.75rem;
	top: 12.25rem;
}

.shiten-fv__fukidashi-1-img {
	left: 2rem;
	top: -5.5625rem;
	width: 21.875rem;
}

.shiten-fv__fukidashi-1-img.-lg {
	top: -9.125rem;
	width: 33.625rem;
}

.shiten-fv__fukidashi-1-img.-lg .shiten-fv__fukidashi-1-text {
	top: 46%;
}

.shiten-fv__fukidashi-1-text {
	font-size: 3rem;
}

.shiten-fv__fukidashi-1-text span {
	font-size: 2rem;
}

.shiten-fv__branch-banner {
	font-size: 2rem;
	height: 3.75rem;
	letter-spacing: 0.032em;
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}

.shiten-fv__title {
	margin-top: 0;
	width: -moz-fit-content;
	width: fit-content;
}

.shiten-fv__title span {
	-webkit-text-stroke-width: 1.25rem;
}

.shiten-fv__title span span {
	display: inline-block;
}

.shiten-fv__title span.-lg {
	font-size: 5rem;
}

.shiten-fv__title span.-sm {
	font-size: 4rem;
}

.shiten-fv__fukidashi-2-img {
	bottom: 7.3125rem;
	right: 1.875rem;
	width: 24.75rem;
}

.shiten-fv__fukidashi-2-text {
	font-size: 2rem;
}

.shiten-fv__img {
	left: 50%;
	width: 32.5625rem;
}

.shiten-problem--layout {
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
}

.shiten-problem__heading {
	font-size: 3rem;
	margin-bottom: 2.25rem;
}

.shiten-problem__cards {
	gap: 1.875rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 60rem;
}

.shiten-problem__card-body {
	gap: 1.125rem 0;
	margin-bottom: 0.9375rem;
	padding-bottom: 1.375rem;
	padding-right: 1.25rem;
}

.shiten-problem__tag {
	font-size: 1.25rem;
	grid-column: 1/3;
	height: 2.5rem;
	padding-left: 0.9375rem;
	padding-right: 2.5rem;
}

.shiten-problem__label {
	border-bottom: none;
	border-right: 0.0625rem solid currentColor;
	font-size: 1.25rem;
	padding-left: 1.875rem;
	padding-right: 2rem;
}

.shiten-problem__items {
	padding-left: 2rem;
}

.shiten-problem__item {
	font-size: 1.5rem;
}

.shiten-problem__btn-link {
	height: 3rem;
	min-width: 15rem;
	padding: 0.5625rem 2.625rem;
}

.shiten-problem__btn-link::after {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='13' viewBox='0 0 9 13' fill='none'%3E%3Cpath d='M1.5 1.5L6.5 6.5L1.5 11.5' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
	height: 0.8125rem;
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='13' viewBox='0 0 9 13' fill='none'%3E%3Cpath d='M1.5 1.5L6.5 6.5L1.5 11.5' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
	right: 1.25rem;
	width: 0.5625rem;
}

.shiten-problem__btn-link span.-main {
	font-size: 1.5rem;
}

.shiten-problem__btn-link span.-sub {
	font-size: 1rem;
}

.shiten-problem__fukidashi-img {
	margin-left: 1.625rem;
	width: 20.5625rem;
}

.shiten-problem__fukidashi-text {
	font-size: 1.25rem;
	left: 51%;
	top: 53%;
}

.shiten-problem__mascot {
	margin-left: 0;
	margin-top: -2.6875rem;
	width: 18.75rem;
}

.shiten-solution:before {
	height: 9.375rem;
}

.shiten-solution--layout {
	padding-bottom: 6.25rem;
	padding-top: 12.5rem;
}

.shiten-solution__label {
	font-size: 2rem;
	height: 3.75rem;
	margin-bottom: 1.25rem;
	width: 26.875rem;
}

.shiten-solution__heading {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 1.25rem;
}

.shiten-solution__heading span.-main {
	font-size: 3rem;
}

.shiten-solution__heading span.-main small {
	font-size: 2.25rem;
}

.shiten-solution__heading span.-sub {
	font-size: 2.25rem;
}

.shiten-solution__lead {
	font-size: 1.5rem;
	line-height: 200%;
}

.shiten-solution__list {
	gap: 1.875rem;
}

.shiten-solution__item {
	align-items: center;
	display: flex;
	gap: 1.875rem;
}

.shiten-solution__item:nth-child(odd) {
	flex-direction: row-reverse;
}

.shiten-solution__item-text {
	flex: 1;
}

.shiten-solution__item-head {
	gap: 0.9375rem;
}

.shiten-solution__item-no {
	font-size: 6.25rem;
}

.shiten-solution__item-title {
	font-size: 2rem;
	padding-top: 0.25rem;
}

.shiten-solution__item-desc {
	font-size: 1.25rem;
	line-height: 1.7;
}

.shiten-solution__item-img {
	flex-shrink: 0;
	width: 30rem;
}

.shiten-support--layout {
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
}

.shiten-support__heading {
	margin-bottom: 1.375rem;
}

.shiten-support__heading-main {
	font-size: 2.25rem;
	letter-spacing: 0.1em;
	padding: 0.5625rem 1.125rem 0.625rem;
	width: 53.75rem;
}

.shiten-support__lead {
	font-size: 1.5rem;
	margin-bottom: 1.375rem;
}

.shiten-support__area {
	margin-bottom: 4.5rem;
	margin-left: auto;
	margin-right: auto;
	width: 60rem;
}

.shiten-support__area img {
	aspect-ratio: 960/540;
}

.shiten-support__badge {
	margin-bottom: 3.125rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 60rem;
}

.shiten-support__badge:before {
	bottom: -0.375rem;
	height: 1.75rem;
}

.shiten-support__badge span {
	font-size: 3rem;
}

.shiten-support__slide {
	min-height: 26.25rem;
	padding: 1.25rem 0.625rem;
}

.shiten-support__slide::before {
	background-color: #273993;
	height: 6.375rem;
}

.shiten-support__slide.-chikuko::before {
	background-color: #273993;
}

.shiten-support__slide.-shubetsu::before {
	background-color: #F6A16C;
}

.shiten-support__slide.-kyoyu::before {
	background-color: #50AA50;
}

.shiten-support__slide.-sokochi::before {
	background-color: #90D0E3;
}

.shiten-support__slide.-shiyo::before {
	background-color: #969696;
}

.shiten-support__slide-tag {
	font-size: 1.875rem;
}

.shiten-support__slide-title {
	font-size: 2rem;
	margin-bottom: 1.25rem;
}

.shiten-support__slide-detail {
	font-size: 1.5rem;
}

.shiten-support__slide-detail-value small {
	font-size: 1rem;
}

.shiten-support__slide-detail-value small.-ml {
	display: block;
	margin-left: -0.625rem;
	margin-top: -0.5rem;
}

.shiten-network::before {
	height: 7.1875rem;
	width: 120rem;
}

.shiten-network--layout {
	padding-bottom: 13.875rem;
	padding-top: 6.25rem;
}

.shiten-network__inner {
	text-align: center;
}

.shiten-network__label {
	font-size: 3rem;
	height: 5rem;
	margin-bottom: 1.875rem;
	max-width: 60rem;
}

.shiten-network__heading {
	font-size: 2rem;
	margin-bottom: 2.5rem;
}

.shiten-network__text {
	font-size: 1.5rem;
	margin-bottom: 1.875rem;
	position: relative;
	z-index: 1;
}

.shiten-network__text p:not(:last-child) {
	margin-bottom: 3.125rem;
}

.shiten-network__cta {
	margin-bottom: 4.875rem;
	padding-left: 1.875rem;
	padding-right: 1.875rem;
	width: 41.875rem;
}

.shiten-network__cta-text {
	font-size: 1.5rem;
}

.shiten-network__message {
	height: 32.3125rem;
	position: absolute;
	right: -9.5rem;
	top: 25.3125rem;
}

.shiten-network__message-fukidashi {
	display: none;
}

.shiten-network__message-text {
	font-size: 1.5rem;
	line-height: 170%;
}

.shiten-network__message-mascot {
	bottom: 0;
	right: 11.375rem;
	width: 17.375rem;
}

.shiten-network__map {
	align-items: center;
	box-shadow: 0.25rem 0.25rem 0.625rem rgba(0, 0, 0, 0.25) inset;
	display: grid;
	grid-template-columns: 30rem 1fr;
	padding: 3.5625rem 5.625rem 3.75rem;
}

.shiten-network__map-img {
	margin-bottom: 0;
}

.shiten-network__branches {
	gap: 0.9375rem;
}

.shiten-network__branch-link {
	height: 3.125rem;
	padding-left: 1rem;
	padding-right: 1rem;
	width: 13.75rem;
}

.shiten-network__branch-link.-active {
	width: 16.875rem;
}

.shiten-network__branch-link span:first-child {
	font-size: 1.25rem;
	letter-spacing: 0.5em;
}

.shiten-network__branch-arrow {
	--shiten-network-branch-arrow-w: 0.5625rem;
	--shiten-network-branch-arrow-h: 1.0625rem;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 17' fill='none'%3E%3Cpath d='M1.5 1.5L6.5 8.5L1.5 15.5' stroke='%23273993' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 17' fill='none'%3E%3Cpath d='M1.5 1.5L6.5 8.5L1.5 15.5' stroke='%23273993' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
	right: 1.25rem;
}

.shiten-flow--layout {
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
}

.shiten-flow__heading {
	margin-bottom: 2.5rem;
}

.shiten-flow__heading span {
	font-size: 2.5rem;
}

.shiten-flow__heading span.-number {
	font-size: 4rem;
}

.shiten-flow__list {
	gap: 1.875rem;
}

.shiten-flow__item {
	padding-left: 4.75rem;
}

.shiten-flow__card {
	align-items: center;
	gap: 1.25rem;
	padding: 0 1.25rem 1.25rem 0;
}

.shiten-flow__icon {
	height: 9.375rem;
	top: -1.25rem;
	width: 9.375rem;
}

.shiten-flow__icon img {
	height: 7.5rem;
	width: 7.5rem;
}

.shiten-flow__tag {
	border-radius: 1.25rem 0 3.125rem 0;
	padding: 0.25rem 5.5rem 0 7.4375rem;
}

.shiten-flow__tag-text {
	font-size: 2.25rem;
}

.shiten-flow__title {
	font-size: 1.5rem;
}

.shiten-flow__desc {
	font-size: 1.25rem;
	margin-left: 5.625rem;
}

.shiten-contact--layout {
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
}

.shiten-contact__heading {
	font-size: 3rem;
	margin-bottom: 1.875rem;
}

.shiten-contact__form-wrap {
	margin-left: auto;
	margin-right: auto;
	max-width: 60rem;
	padding: 2rem 3.75rem 2.5rem;
}

.shiten-contact__description {
	font-size: 1.25rem;
	line-height: 1.7;
}

.shiten-contact-form__field {
	-moz-column-gap: 1.5rem;
	column-gap: 1.5rem;
	grid-template-columns: auto 1fr;
}

.shiten-contact-form__label-row {
	gap: 0.5rem;
}

.shiten-contact-form__label {
	font-size: 1.25rem;
	margin-top: 0.625rem;
	min-width: 10.625rem;
}

.shiten-contact-form__note {
	font-size: 0.875rem;
}

.shiten-contact-form .wpcf7-form-control {
	font-size: 1rem;
	padding: 0.75rem 1rem;
}

.shiten-contact-form .wpcf7-form-control[type=text],
.shiten-contact-form .wpcf7-form-control[type=email],
.shiten-contact-form .wpcf7-form-control[type=tel],
.shiten-contact-form .wpcf7-form-control.wpcf7-select {
	height: 3.125rem;
}

.shiten-contact-form .wpcf7-form-control::-moz-placeholder {
	font-size: 1rem;
}

.shiten-contact-form .wpcf7-form-control::placeholder {
	font-size: 1rem;
}

.shiten-contact-form .wpcf7-form-control.wpcf7-checkbox {
	flex-direction: row;
	flex-wrap: wrap;
	gap: 0.625rem 1.375rem;
	max-width: 37.5rem;
}

.shiten-contact-form .wpcf7-select {
	background-position: right 1.3125rem top 1.3125rem;
}

.shiten-contact-form .wpcf7-checkbox .wpcf7-list-item label {
	font-size: 1.25rem;
	padding-left: 1.875rem;
}

.shiten-contact-form .wpcf7-checkbox .wpcf7-list-item label::before {
	height: 1.25rem;
	top: 0.375rem;
	width: 1.25rem;
}

.shiten-contact-form input[type=checkbox]:checked + .wpcf7-list-item-label::before {
	background-size: 77% 60%;
	height: 1.25rem;
	top: 50%;
	transform: translateY(-50%);
	width: 1.25rem;
}

.shiten-contact-form__privacy-notice {
	font-size: 0.875rem;
	line-height: 1.2142857143;
}

.shiten-contact-form .wpcf7-submit {
	font-size: 1.5rem;
	height: 4.375rem;
	max-width: 20rem;
}

.shiten-contact .wpcf7 form .wpcf7-spinner {
	right: 36%;
}

.shiten-contact-form .wpcf7-not-valid-tip {
	font-size: 0.875rem;
}

.sokochi-a-fv--layout {
	margin-top: 7.5rem;
}

.sokochi-a-fv__bg {
	height: 58.75rem;
}

.sokochi-a-fv__texts {
	top: 7.5rem;
	width: -moz-max-content;
	width: max-content;
}

.sokochi-a-fv__title-wrap {
	grid-gap: 0.5rem;
	align-items: end;
	display: grid;
	gap: 0.5rem;
	grid-template-columns: repeat(2, auto);
	justify-content: center;
}

.sokochi-a-fv__title {
	width: auto;
}

.sokochi-a-fv__title-char {
	-webkit-text-stroke-width: 1.125rem;
	display: inline-block;
	filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.25));
	font-size: 8rem;
	position: relative;
}

.sokochi-a-fv__title-char:nth-child(1) {
	font-size: 10rem;
}

.sokochi-a-fv__title-char:nth-child(2) {
	margin-left: 1.573125rem;
}

.sokochi-a-fv__title-char:nth-child(3) {
	margin-left: -1.6925rem;
}

.sokochi-a-fv__title-char:nth-child(4) {
	font-size: 10rem;
	margin-left: -1.74125rem;
}

.sokochi-a-fv__title-char:nth-child(5) {
	margin-left: 0.239375rem;
}

.sokochi-a-fv__subtitle {
	-webkit-text-stroke-width: 1.125rem;
	filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.25));
	font-size: 6.25rem;
	position: static;
}

.sokochi-a-fv__message {
	-webkit-text-stroke-width: 1.125rem;
	display: grid;
	filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.25));
	font-size: 6.25rem;
	grid-template-columns: repeat(2, auto);
	margin-top: 1.5625rem;
	position: static;
}

.sokochi-a-problem {
	background-image: url("../img/sokochi-a/problem-img-2.webp"), url("../img/sokochi-a/problem-bg.svg");
	background-size: 120rem 9.125rem, contain;
}

.sokochi-a-problem--layout {
	margin-top: -5.8125rem;
	padding-bottom: 11.8125rem;
	padding-top: 11.0625rem;
}

.sokochi-a-problem__heading-wrap {
	margin-bottom: 2.5rem;
}

.sokochi-a-problem__heading {
	font-size: 4rem;
	gap: 0.625rem;
}

.sokochi-a-problem__heading::before {
	height: 3.8125rem;
	width: 3.375rem;
}

.sokochi-a-problem__subheading {
	font-size: 2.5rem;
}

.sokochi-a-problem__list {
	gap: 1.875rem;
	grid-template-columns: repeat(3, 1fr);
}

.sokochi-a-problem__item-title {
	font-size: 2rem;
	padding: 1rem;
}

.sokochi-a-problem__item-content {
	padding-bottom: 2rem;
	padding-top: 4.8125rem;
}

.sokochi-a-problem__item-img {
	margin-bottom: 3.875rem;
	width: 15.625rem;
}

.sokochi-a-problem__item-text {
	font-size: 1.5rem;
	line-height: 1.4583333333;
}

.sokochi-a-solution--layout {
	padding-bottom: 7.3125rem;
	padding-top: 5.625rem;
}

.sokochi-a-solution__heading {
	font-size: 3rem;
	line-height: 1.4583333333;
	margin-bottom: 3.125rem;
	position: relative;
	z-index: 1;
}

.sokochi-a-solution__heading span strong {
	font-size: 4rem;
}

.sokochi-a-solution__list {
	gap: 3.125rem;
}

.sokochi-a-solution__list::before,
.sokochi-a-solution__list::after {
	height: 12.5rem;
	top: -12.5rem;
	width: 13.75rem;
}

.sokochi-a-solution__item {
	grid-gap: 0 1.9375rem;
	align-items: center;
	display: grid;
	gap: 0 1.9375rem;
	grid-template-columns: auto 0.125rem 1fr auto;
	min-height: 24.375rem;
	padding: 1.625rem 1.5625rem 1.625rem 3.8125rem;
	width: 100%;
}

.sokochi-a-solution__item-point {
	justify-self: start;
	margin-left: 0;
	margin-right: 0;
	padding-right: 1.5625rem;
}

.sokochi-a-solution__item-point-label {
	font-size: 1.25rem;
}

.sokochi-a-solution__item-point-number {
	font-size: 3rem;
}

.sokochi-a-solution__item-line {
	align-self: stretch;
	height: 100%;
	margin-bottom: 0;
	margin-top: 0;
	width: 0.125rem;
}

.sokochi-a-solution__item-content {
	padding: 0;
}

.sokochi-a-solution__item-title {
	font-size: 2rem;
}

.sokochi-a-solution__item-subtitle {
	font-size: 1.25rem;
	margin-bottom: 1.875rem;
}

.sokochi-a-solution__item-text {
	font-size: 1.125rem;
	max-width: 30.125rem;
}

.sokochi-a-solution__item-img {
	justify-self: end;
	margin-top: 0;
	width: 28.125rem;
}

.sokochi-a-solution__item-img img {
	aspect-ratio: 550/340;
}

.sokochi-a-voice--layout {
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
}

.sokochi-a-voice__heading-wrap {
	margin-bottom: 3.125rem;
}

.sokochi-a-voice__heading {
	font-size: 3rem;
	margin-bottom: 1.25rem;
}

.sokochi-a-voice__subheading {
	font-size: 2rem;
}

.sokochi-a-voice__item-title {
	font-size: 2rem;
	line-height: 1;
	padding: 0.875rem 1.875rem;
}

.sokochi-a-voice__item-body {
	align-self: auto;
	grid-template-rows: 1fr 8.4375rem;
}

.sokochi-a-voice__item-content-wrap {
	align-items: center;
	gap: 0.625rem;
	grid-template-columns: 1fr auto 1fr;
	padding: 1.875rem;
}

.sokochi-a-voice__content {
	gap: 0.9375rem;
	grid-template-columns: 1fr;
}

.sokochi-a-voice__content-img {
	height: 13.875rem;
	width: 22.125rem;
}

.sokochi-a-voice__content-img img {
	aspect-ratio: 354/222;
}

.sokochi-a-voice__content-text {
	font-size: 1.25rem;
	line-height: 1.5;
	text-align: center;
}

.sokochi-a-voice__arrow {
	height: 1.875rem;
	margin-bottom: 7.8125rem;
	width: 1.875rem;
}

.sokochi-a-voice__comment {
	min-width: 8.125rem;
	padding: 1.25rem 1.875rem;
}

.sokochi-a-voice__comment-title {
	font-size: 1.25rem;
	margin-bottom: 0.9375rem;
}

.sokochi-a-voice__comment-text {
	font-size: 1.25rem;
	line-height: 1.5;
}

.sokochi-a-works--layout {
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
}

.sokochi-a-works__inner::before {
	height: 22.0625rem;
	top: -2.5rem;
	width: 18.0625rem;
}

.sokochi-a-works__heading-wrap {
	margin-bottom: 3.125rem;
}

.sokochi-a-works__heading {
	font-size: 3rem;
	margin-bottom: 1.25rem;
}

.sokochi-a-works__subheading {
	font-size: 2rem;
}

.sokochi-a-works__container {
	margin-bottom: 5rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 60rem;
}

.sokochi-a-works__list::before {
	bottom: 0;
	height: 15.5rem;
	right: -15.4375rem;
	width: 21.1875rem;
}

.sokochi-a-works__item {
	grid-template-columns: repeat(2, 1fr);
}

.sokochi-a-works__item:nth-of-type(4) .sokochi-a-works__item-value {
	padding-right: 7.625rem;
}

.sokochi-a-works__item-label {
	padding: 1.875rem 0;
	width: 30rem;
}

.sokochi-a-works__item-label-main {
	font-size: 2rem;
}

.sokochi-a-works__item-value {
	padding: 0.625rem 5.375rem 0.625rem 0;
}

.sokochi-a-works__item-value-wrap {
	gap: 1.875rem;
}

.sokochi-a-works__item-value-number {
	font-size: 4rem;
}

.sokochi-a-works__item-value-unit {
	font-size: 2rem;
}

.sokochi-a-works__item-note {
	font-size: 0.75rem;
	margin-top: 0.375rem;
	right: 1.625rem;
}

.sokochi-a-works__note {
	font-size: 1.125rem;
}

.sokochi-a-works__gallery {
	margin-bottom: 5rem;
}

.sokochi-a-works__gallery-track {
	gap: 3.125rem;
}

.sokochi-a-works__gallery-item {
	height: 13.75rem;
	width: 21.875rem;
}

.sokochi-a-works__content {
	margin-bottom: 3.75rem;
}

.sokochi-a-works__content-title {
	font-size: 3rem;
	margin-bottom: 3.125rem;
}

.sokochi-a-works__content-text {
	font-size: 1.5rem;
}

.sokochi-a-works__content-text p + p {
	margin-top: 2.5rem;
}

.sokochi-a-works__company {
	margin-left: auto;
	margin-right: auto;
	max-width: 60rem;
	padding: 1.625rem 2.625rem;
}

.sokochi-a-works__company-text {
	font-size: 1.5rem;
}

.sokochi-a-works__company-btn {
	margin-top: 2.5rem;
}

.sokochi-a-works__company-btn-text {
	font-size: 2rem;
	margin-right: 1rem;
}

.sokochi-a-works__company-btn-icon {
	height: 2rem;
	width: 2rem;
}

.sokochi-a-flow--layout {
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
}

.sokochi-a-flow__heading {
	font-size: 3rem;
	margin-bottom: 3.75rem;
}

.sokochi-a-flow__list {
	flex-direction: row;
	gap: 1.0625rem;
	justify-content: center;
	margin-bottom: 5.625rem;
	margin-left: 0;
	margin-right: 0;
	max-width: none;
}

.sokochi-a-flow__item {
	width: 15.625rem;
}

.sokochi-a-flow__item:not(:last-child):before {
	bottom: auto;
	left: auto;
	right: -1.9375rem;
	top: 54%;
	transform: translateY(-50%);
}

.sokochi-a-flow__item-header {
	padding: 1.125rem 1.25rem;
}

.sokochi-a-flow__item-step {
	font-size: 1.5rem;
}

.sokochi-a-flow__item-body {
	padding: 1.125rem 0 1.375rem;
}

.sokochi-a-flow__item-img {
	height: 10.3125rem;
	width: 13.125rem;
}

.sokochi-a-flow__item-title {
	font-size: 2rem;
	min-height: 5.3125rem;
}

.sokochi-a-flow__cta {
	flex-direction: row;
	gap: 4.375rem;
	justify-content: center;
}

.sokochi-a-flow__cta-btn {
	height: 5rem;
	width: 21.875rem;
}

.sokochi-a-flow__cta-btn.-blue {
	gap: 0.5rem;
}

.sokochi-a-flow__cta-btn-label {
	font-size: 1.25rem;
	margin-bottom: 0.3125rem;
}

.sokochi-a-flow__cta-btn-tel {
	font-size: 2.25rem;
}

.sokochi-a-flow__cta-btn-text {
	font-size: 2rem;
}

.sokochi-a-faq--layout {
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
}

.sokochi-a-faq__heading {
	font-size: 3rem;
	margin-bottom: 3.75rem;
}

.sokochi-a-faq__list {
	gap: 1.875rem;
}

.sokochi-a-faq__item {
	padding-bottom: 1.375rem;
}

.sokochi-a-faq__question {
	font-size: 2rem;
	padding: 1.1875rem 1.25rem;
}

.sokochi-a-faq__answer {
	font-size: 2rem;
	line-height: 1;
	padding: 1.1875rem 1.25rem;
}

.sokochi-a-faq__description {
	font-size: 1.5rem;
	padding-left: 3.125rem;
	padding-right: 1.25rem;
}

.sokochi-a-contact--layout {
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
}

.sokochi-a-contact__heading {
	font-size: 3rem;
	margin-bottom: 3.75rem;
}

.sokochi-a-contact__form-wrap {
	margin-left: auto;
	margin-right: auto;
	max-width: 60rem;
	padding: 3.125rem 3.75rem;
}

.sokochi-a-contact__description {
	font-size: 1.5rem;
	line-height: 2;
	margin-bottom: 2.5rem;
}

.sokochi-a-contact__field {
	align-items: flex-start;
	flex-direction: row;
	gap: 0.9375rem;
}

.sokochi-a-contact__label {
	flex-shrink: 0;
	font-size: 1.5rem;
	padding-top: 0.78125rem;
	width: 11.875rem;
}

.sokochi-a-contact__input,
.sokochi-a-contact__textarea {
	flex: 1;
	font-size: 1.125rem;
	height: 3.125rem;
	padding: 0.75rem 1.25rem;
}

.sokochi-a-contact__textarea {
	min-height: 12.5625rem;
}

.sokochi-a-contact__checkboxes {
	flex: 1;
	gap: 0.3125rem 0;
}

.sokochi-a-contact__checkbox-label {
	font-size: 1.25rem;
}

.sokochi-a-contact__checkbox + span:not(.wpcf7-not-valid-tip) {
	padding-left: 1.75rem;
}

.sokochi-a-contact__checkbox + span:not(.wpcf7-not-valid-tip)::before {
	border-width: 0.125rem;
	height: 1.25rem;
	width: 1.25rem;
}

.sokochi-a-contact__checkbox + span:not(.wpcf7-not-valid-tip) svg {
	height: 1rem;
	left: 0.125rem;
	width: 1rem;
}

.sokochi-a-contact__checkbox + span:not(.wpcf7-not-valid-tip) svg path {
	stroke-width: 2;
}

.sokochi-a-contact__submit-wrap .form-submit {
	font-size: 2rem;
	height: 5rem;
	max-width: 21.875rem;
}

.sokochi-a-contact__privacy-notice {
	font-size: 0.875rem;
	line-height: 1.2142857143;
}

.sokochi-a-contact__page-top {
	bottom: 0;
	right: 0.9375rem;
}

.sokochi-a-contact__page-top-btn {
	align-items: center;
	border-radius: 50%;
	box-shadow: 0.25rem 0.25rem 0.625rem rgba(0, 0, 0, 0.25);
	flex-direction: column;
	gap: 0;
	height: 9.375rem;
	justify-content: center;
	padding: 0;
	width: 9.375rem;
}

.sokochi-a-contact__page-top-icon {
	height: 2rem;
	left: 50%;
	position: absolute;
	top: 0.75rem;
	transform: translateX(-50%);
	width: 2rem;
}

.sokochi-a-contact__page-top-text {
	bottom: 2rem;
	flex-direction: column;
	font-size: 2rem;
	gap: 0;
	left: 50%;
	letter-spacing: 0;
	position: absolute;
	transform: translateX(-50%);
}

.sokochi-a-contact__page-top-text span {
	display: block;
	margin: 0;
}

.sokochi-a-contact__form-wrap .wpcf7 form .wpcf7-not-valid-tip {
	font-size: 1.125rem;
}

.sokochi-a-contact__form-wrap .wpcf7-validation-errors,
.sokochi-a-contact__form-wrap .wpcf7-mail-sent-ng {
	font-size: 1.125rem;
	padding: 1.25rem 1.875rem;
}

.sokochi-a-contact__form-wrap .wpcf7-mail-sent-ok {
	font-size: 1.125rem;
	padding: 1.25rem 1.875rem;
}

.sokochi-a-contact__form-wrap .wpcf7 form div.wpcf7-response-output {
	font-size: 1.25rem;
}

.sokochi-a-contact__form-wrap .wpcf7 form .wpcf7-spinner {
	left: 67%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.sokochi-a-contact__form-wrap .wpcf7-list-item-label {
	font-size: 1.25rem;
}

.sokochi-a-contact__checkboxes .wpcf7-form-control-wrap {
	flex: 1;
	gap: 0.3125rem 0;
}

.sokochi-a-contact__checkboxes .wpcf7-list-item label {
	font-size: 1.25rem;
}

.sokochi-a-contact__checkboxes .wpcf7-list-item-label {
	padding-left: 1.75rem;
}

.sokochi-a-contact__checkboxes .wpcf7-list-item-label::before {
	border-width: 0.125rem;
	height: 1.25rem;
	width: 1.25rem;
}

.sokochi-a-contact__checkboxes .wpcf7-list-item-label svg {
	height: 1rem;
	left: 0.125rem;
	width: 1rem;
}

.sokochi-a-contact__checkboxes .wpcf7-list-item-label svg path {
	stroke-width: 2;
}

.sokochi-a-fixed-btn {
	bottom: 4.5rem;
	left: auto;
	right: 5.1875rem;
	transform: none;
}

.sokochi-a-fixed-btn__close {
	height: 3.125rem;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	right: -1.5625rem;
	top: -1.5625rem;
	width: 3.125rem;
}

.sokochi-a-fixed-btn__close-icon {
	font-size: 2rem;
}

.sokochi-a-fixed-btn__link {
	height: 6.25rem;
	width: 24.8125rem;
}

.sokochi-a-fixed-btn__text {
	font-size: 2.25rem;
}

.sokochi-a-fixed-btn__icon {
	bottom: -3.25rem;
	right: -0.4375rem;
	width: 4.5625rem;
}

.sokochi-b-fv--layout {
	margin-top: 7.5rem;
}

.sokochi-b-fv__bg {
	height: 65.625rem;
}

.sokochi-b-fv__container {
	bottom: 0;
	max-height: 63rem;
	max-width: 86.25rem;
	top: auto;
}

.sokochi-b-fv__container::before {
	background-image: url("../img/sokochi-b/fv-img-2.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	bottom: 0;
	content: "";
	display: inline-block;
	height: 7rem;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 120rem;
}

.sokochi-b-fv__fukidashi {
	width: 36.75rem;
}

.sokochi-b-fv__fukidashi-text {
	font-size: 2rem;
}

.sokochi-b-fv__title {
	filter: drop-shadow(0.125rem 0.25rem 0.375rem rgb(0, 0, 0));
	font-size: 4.375rem;
	margin-bottom: 0.5rem;
}

.sokochi-b-fv__achievements {
	gap: 0.25rem;
}

.sokochi-b-fv__achievement {
	filter: drop-shadow(0.125rem 0.25rem 0.375rem rgb(0, 0, 0));
	max-width: 48rem;
}

.sokochi-b-fv__achievement:nth-child(2) {
	margin-top: -0.5rem;
}

.sokochi-b-fv__achievement:nth-child(3) {
	margin-top: -0.5rem;
}

.sokochi-b-fv__achievement .-text {
	font-size: 1.75rem;
}

.sokochi-b-fv__achievement .-text-sm {
	font-size: 1.125rem;
}

.sokochi-b-fv__achievement .-number {
	font-size: 2.875rem;
}

.sokochi-b-fv__img {
	display: block;
	margin-top: -1.5625rem;
	width: 41.375rem;
}

.sokochi-b-fv__form {
	display: block;
	filter: drop-shadow(0 4px 50px rgba(255, 255, 255, 0.3));
	position: absolute;
	right: 1.875rem;
	top: 12.5rem;
	width: 31.25rem;
	z-index: 2;
}

.sokochi-b-fv__form-header {
	padding-bottom: 0.75rem;
	padding-top: 0.75rem;
}

.sokochi-b-fv__form-header-text {
	font-size: 1.125rem;
}

.sokochi-b-fv__form-header-title {
	font-size: 2rem;
}

.sokochi-b-fv__form-body {
	padding: 1.125rem 1.25rem 1.5rem;
}

.sokochi-b-fv__form-body .wpcf7-form {
	grid-gap: 0.75rem;
	display: grid;
	gap: 0.75rem;
}

.sokochi-b-fv__form-body .wpcf7-form-control {
	font-size: 1rem;
	padding: 0.625rem 0.9375rem;
}

.sokochi-b-fv__form-body .wpcf7-select {
	font-size: 1rem;
}

.sokochi-b-fv__form-body .wpcf7-textarea {
	font-size: 1rem;
}

.sokochi-b-fv__form-body .sokochi-b-form-field {
	grid-gap: 0.375rem;
	display: grid;
	gap: 0.375rem;
}

.sokochi-b-fv__form-body .sokochi-b-form-label {
	color: #3b3b3b;
	display: block;
	font-size: 1.25rem;
	font-weight: 700;
}

.sokochi-b-fv__form-body .sokochi-b-form-input {
	width: 100%;
}

.sokochi-b-fv__form-body .wpcf7-submit {
	background-color: #E64141;
	border-radius: 3.125rem;
	box-shadow: 0.25rem 0.25rem 0.25rem 0 rgba(255, 255, 255, 0.25) inset;
	color: #fff;
	cursor: pointer;
	filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.25));
	font-size: 1.5rem;
	font-weight: 700;
	height: 3.75rem;
	padding-bottom: 0.875rem;
	text-align: center;
	transition: opacity 0.3s, transform 0.3s;
}

.sokochi-b-fv__form-body .wpcf7 form .wpcf7-spinner {
	margin: 0;
	position: absolute;
	right: 10%;
	top: 50%;
	transform: translate(50%, -50%);
}

.sokochi-b-problem--layout {
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.sokochi-b-problem__heading {
	font-size: 2.5rem;
	margin-bottom: 3.125rem;
}

.sokochi-b-problem__box {
	height: 22.5rem;
	margin-bottom: 3.125rem;
	margin-left: auto;
	margin-right: auto;
	padding: 2.8125rem 0 0 2rem;
}

.sokochi-b-problem__list {
	gap: 1.25rem;
	position: relative;
}

.sokochi-b-problem__item {
	gap: 0.8125rem;
}

.sokochi-b-problem__icon {
	height: 0.9375rem;
	margin-top: 0.875rem;
	width: 1.1875rem;
}

.sokochi-b-problem__text {
	font-size: 2rem;
}

.sokochi-b-problem__text-highlight::after {
	bottom: 0;
	height: 0.5625rem;
}

.sokochi-b-problem__img {
	width: 21.25rem;
}

.sokochi-b-problem__message {
	margin-left: auto;
	margin-right: auto;
	max-width: 60rem;
}

.sokochi-b-problem__message::before,
.sokochi-b-problem__message::after {
	height: 5.125rem;
	width: 2.5625rem;
}

.sokochi-b-problem__message-text {
	font-size: 1.5rem;
}

.sokochi-b-problem__message-highlight {
	font-size: 2rem;
	margin-left: -0.25rem;
}

.sokochi-b-solution--layout {
	padding-bottom: 6.25rem;
	padding-top: 5rem;
}

.sokochi-b-solution__heading {
	font-size: 2.5rem;
	line-height: 2;
	margin-bottom: 3.125rem;
}

.sokochi-b-solution__list {
	gap: 1.875rem;
}

.sokochi-b-solution__item {
	gap: 0.625rem;
	grid-template-columns: 10rem 1fr;
	max-width: 46.25rem;
}

.sokochi-b-solution__item:nth-of-type(2) {
	margin-left: auto;
	margin-right: auto;
}

.sokochi-b-solution__item:nth-of-type(3) {
	margin-left: auto;
}

.sokochi-b-solution__point-label {
	font-size: 1.875rem;
	margin-bottom: 0.3125rem;
}

.sokochi-b-solution__point-number {
	font-size: 6rem;
}

.sokochi-b-solution__content {
	grid-gap: 0.3125rem;
	display: grid;
	gap: 0.3125rem;
}

.sokochi-b-solution__title {
	font-size: 2.125rem;
	height: 3.4375rem;
	padding: 0 0.625rem;
	width: -moz-fit-content;
	width: fit-content;
}

.sokochi-b-solution__subtitle {
	font-size: 1.375rem;
	gap: 0.375rem;
	line-height: 1.5;
}

.sokochi-b-solution__subtitle::before {
	height: 0.1875rem;
	margin-top: 0.9375rem;
	width: 2rem;
}

.sokochi-b-solution__description {
	font-size: 1.125rem;
}

.sokochi-b-solution__image {
	height: 18.75rem;
	max-width: 71.25rem;
	width: 100%;
}

.sokochi-b-voice--layout {
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
}

.sokochi-b-voice__heading {
	font-size: 2.5rem;
	margin-bottom: 3.125rem;
}

.sokochi-b-voice__list {
	gap: 2.5rem;
	margin-right: auto;
	max-width: 65.9375rem;
}

.sokochi-b-voice__item-title {
	font-size: 1.5rem;
	line-height: 1.5;
	padding: 0.25rem 0.9375rem 2.5rem;
}

.sokochi-b-voice__item-body {
	filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.25));
	padding-left: 5.9375rem;
}

.sokochi-b-voice__item-customer-comment {
	margin-top: -2.5rem;
	width: 60rem;
}

.sokochi-b-voice__item-customer-comment img {
	aspect-ratio: 960/168;
}

.sokochi-b-voice__customer-comment-text {
	font-size: 1.5rem;
	left: 0.3125rem;
	line-height: 2;
	padding-left: 1.875rem;
	padding-right: 1.875rem;
	top: 1.125rem;
	width: calc(100% - 0.625rem);
}

.sokochi-b-voice__item-avatar {
	bottom: -3.4375rem;
	height: 7.5rem;
	left: 1.25rem;
	width: 7.5rem;
}

.sokochi-b-voice__item-staff-comment {
	margin-left: auto;
	margin-top: -6.0625rem;
	max-width: 56.25rem;
	padding: 4.8125rem 1.25rem 0.9375rem 1.5625rem;
	width: 100%;
}

.sokochi-b-voice__staff-comment-label {
	font-size: 1.25rem;
	padding: 0.625rem 1.25rem;
}

.sokochi-b-voice__staff-comment-text {
	font-size: 1.25rem;
	padding: 0.75rem 0.625rem;
}

.sokochi-b-works--layout {
	padding-bottom: 0;
	padding-top: 0;
}

.sokochi-b-works__heading-wrap {
	margin-bottom: 2.5rem;
}

.sokochi-b-works__heading {
	font-size: 2.5rem;
	margin-bottom: 0.9375rem;
}

.sokochi-b-works__subheading {
	font-size: 1.5rem;
}

.sokochi-b-works__container {
	margin-bottom: 5rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 60rem;
}

.sokochi-b-works__item {
	grid-template-columns: repeat(2, 1fr);
}

.sokochi-b-works__item:nth-of-type(5) .sokochi-b-works__item-value {
	padding-right: 7.375rem;
}

.sokochi-b-works__item-label {
	padding: 1.875rem 0;
	width: 30rem;
}

.sokochi-b-works__item-label-main {
	font-size: 2rem;
}

.sokochi-b-works__item-value {
	padding: 0.625rem 5.375rem 0.625rem 0;
}

.sokochi-b-works__item-value-wrap {
	gap: 0.9375rem;
}

.sokochi-b-works__item-value-number {
	font-size: 4rem;
}

.sokochi-b-works__item-value-unit {
	font-size: 2rem;
}

.sokochi-b-works__item-note {
	font-size: 0.75rem;
	margin-top: 0.375rem;
}

.sokochi-b-works__note {
	font-size: 1.125rem;
}

.sokochi-b-works__gallery {
	margin-bottom: 7.5rem;
}

.sokochi-b-works__gallery-track {
	gap: 3.125rem;
}

.sokochi-b-works__gallery-item {
	height: 13.75rem;
	width: 21.875rem;
}

.sokochi-b-works__content-wrap {
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
}

.sokochi-b-works__content {
	margin-bottom: 3.75rem;
}

.sokochi-b-works__content-title {
	font-size: 2.5rem;
	margin-bottom: 3.125rem;
}

.sokochi-b-works__content-text {
	font-size: 1.5rem;
}

.sokochi-b-works__content-text p + p {
	margin-top: 2.5rem;
}

.sokochi-b-works__company {
	font-size: 1.5rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 60rem;
	padding: 1.625rem 1.875rem;
}

.sokochi-b-flow--layout {
	padding-bottom: 7.5rem;
	padding-top: 7.5rem;
}

.sokochi-b-flow__heading-wrap {
	margin-bottom: 3rem;
}

.sokochi-b-flow__heading {
	font-size: 2.5rem;
}

.sokochi-b-flow__subheading {
	font-size: 1.5rem;
}

.sokochi-b-flow__list {
	margin-bottom: 5rem;
}

.sokochi-b-flow__title {
	padding-top: 0.5625rem;
	width: 15.625rem;
}

.sokochi-b-flow__title-text {
	font-size: 1.5rem;
}

.sokochi-b-flow__description {
	font-size: 1rem;
}

.sokochi-b-flow__arrow {
	height: 1.5rem;
}

.sokochi-b-flow__arrow-icon {
	font-size: 1.125rem;
}

.sokochi-b-flow__cta {
	flex-direction: row;
	gap: 4.375rem;
	justify-content: center;
}

.sokochi-b-flow__cta-btn {
	height: 5rem;
	width: 21.875rem;
}

.sokochi-b-flow__cta-btn-label {
	font-size: 1rem;
	margin-bottom: 0.3125rem;
}

.sokochi-b-flow__cta-btn-tel {
	font-size: 2rem;
}

.sokochi-b-flow__cta-btn-text {
	font-size: 1.5rem;
}

.sokochi-b-faq--layout {
	padding-bottom: 7.5rem;
	padding-top: 7.5rem;
}

.sokochi-b-faq__heading {
	font-size: 3rem;
	margin-bottom: 3.75rem;
}

.sokochi-b-faq__list {
	gap: 1.75rem;
}

.sokochi-b-faq__summary {
	gap: 0.625rem;
	padding-bottom: 0.875rem;
	padding-right: 0.625rem;
	padding-top: 0.875rem;
}

.sokochi-b-faq__question {
	font-size: 2rem;
}

.sokochi-b-faq__indicator::before,
.sokochi-b-faq__indicator::after {
	width: 1.875rem;
}

.sokochi-b-faq__content {
	padding-bottom: 1.5rem;
	padding-left: 5.625rem;
	padding-top: 0;
}

.sokochi-b-faq__answer {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.sokochi-b-faq__description {
	font-size: 1.5rem;
}

.sokochi-b-contact--layout {
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
}

.sokochi-b-contact__heading {
	font-size: 3rem;
	margin-bottom: 2rem;
}

.sokochi-b-contact__description {
	font-size: 1.5rem;
	line-height: 2;
	margin-bottom: 2.5rem;
}

.sokochi-b-contact__form-wrap {
	margin-left: auto;
	margin-right: auto;
	max-width: 60rem;
	padding: 3.125rem 3.75rem;
}

.sokochi-b-contact__form-wrap .wpcf7-form {
	gap: 1rem;
}

.sokochi-b-contact__form-wrap .wpcf7-form-control {
	font-size: 1.125rem;
	padding: 0.625rem 0.9375rem;
}

.sokochi-b-contact__form-wrap .wpcf7-form-control[type=text],
.sokochi-b-contact__form-wrap .wpcf7-form-control[type=email],
.sokochi-b-contact__form-wrap .wpcf7-form-control[type=tel] {
	height: 3.125rem;
}

.sokochi-b-contact__form-wrap .wpcf7-form-control::-moz-placeholder {
	font-size: 1rem;
}

.sokochi-b-contact__form-wrap .wpcf7-form-control::placeholder {
	font-size: 1rem;
}

.sokochi-b-contact__form-wrap .wpcf7-select {
	background-position: right 1.25rem center;
	background-size: 1.125rem 1.125rem;
	border-radius: 0.9375rem;
	font-size: 1.25rem;
	height: 3.125rem;
}

.sokochi-b-contact__form-wrap .wpcf7-textarea {
	font-size: 1.125rem;
	height: 12.5rem;
}

.sokochi-b-contact__form-wrap .sokochi-b-form-field {
	align-items: flex-start;
	gap: 0;
	grid-template-columns: 11.875rem 1fr;
}

.sokochi-b-contact__form-wrap .sokochi-b-form-label {
	font-size: 1.5rem;
	padding-top: 0.75rem;
}

.sokochi-b-contact__form-wrap .sokochi-b-form-submit-wrap {
	max-width: 20rem;
}

.sokochi-b-contact__form-wrap .wpcf7-submit {
	font-size: 2rem;
	height: 5rem;
}

.sokochi-b-contact__form-wrap .sokochi-b-form__privacy-notice {
	font-size: 0.875rem;
	line-height: 1.2142857143;
}

.sokochi-b-contact__page-top {
	bottom: -4.375rem;
	position: absolute;
	right: 5.375rem;
	z-index: 10;
}

.sokochi-b-contact__page-top-btn {
	align-items: center;
	box-shadow: 0.25rem 0.25rem 0.625rem rgba(0, 0, 0, 0.25);
	gap: 0.9375rem;
	height: 3.125rem;
	justify-content: center;
	padding-left: 1.75rem;
	width: 18.75rem;
}

.sokochi-b-contact__page-top-icon {
	height: 2.125rem;
	width: 2.125rem;
}

.sokochi-b-contact__page-top-text {
	font-size: 1.25rem;
}

.shiten-thanks {
	min-height: calc(100vh - 7.5rem - 6.25rem);
}

.shiten-thanks--layout {
	margin-top: 6.25rem;
}

.shiten-thanks__inner {
	padding-bottom: 5rem;
	padding-top: 6.25rem;
}

.shiten-thanks__main-message {
	font-size: 2rem;
	line-height: 1.2;
	margin-bottom: 3.75rem;
	max-width: 62.5rem;
	padding: 1.625rem 1.875rem 1.6875rem;
}

.shiten-thanks__details {
	font-size: 1.5rem;
	line-height: 1.4583333333;
}

.shiten-thanks__details p {
	margin-bottom: 2.5rem;
}

.shiten-thanks__btn {
	text-align: right;
}

.shiten-thanks__mascot-img {
	left: calc(50% - min(49.5vw, 43.75rem));
	width: 14.5rem;
}

.shiten-thanks__bg-img img {
	aspect-ratio: 1920/115;
}

.sokochi-a-thanks--layout {
	margin-top: 7.5rem;
	padding-bottom: 12.5rem;
	padding-top: 9.375rem;
}

.sokochi-a-thanks__content {
	padding: 12.5rem 3.75rem 6.25rem;
}

.sokochi-a-thanks__title {
	font-size: 2rem;
	line-height: 1.2;
	margin-bottom: 2.5rem;
}

.sokochi-a-thanks__text {
	font-size: 1.5rem;
	line-height: 1.5;
	margin-bottom: 3.75rem;
}

.sokochi-a-thanks__btn {
	filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.25));
	font-size: 1.5rem;
	height: 4.375rem;
}

.sokochi-b-thanks--layout {
	margin-top: 7.5rem;
	padding-bottom: 12.5rem;
	padding-top: 9.375rem;
}

.sokochi-b-thanks__content {
	padding: 12.5rem 3.75rem 6.25rem;
}

.sokochi-b-thanks__title {
	font-size: 2rem;
	line-height: 1.2;
	margin-bottom: 2.5rem;
}

.sokochi-b-thanks__text {
	font-size: 1.5rem;
	line-height: 1.5;
	margin-bottom: 3.75rem;
}

.sokochi-b-thanks__btn {
	filter: drop-shadow(0 0.25rem 0.25rem rgba(0, 0, 0, 0.25));
	font-size: 1.5rem;
	height: 4.375rem;
}

html {
	font-size: calc(16 / 1320 * 100vw);
}

}

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

.footer-sokochi__nav-items {
	gap: 1rem;
}

.footer-sokochi__nav-item {
	gap: 1rem;
}

}

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

.shiten-fv__header-logo-link {
	left: -6.25rem;
}

.shiten-fv__fukidashi-2-img {
	right: 22.0625rem;
}

.shiten-problem__message {
	bottom: 12.5rem;
	left: calc(50% - min(49.5vw, 53rem));
	position: absolute;
}

.shiten-solution__heading {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.shiten-solution__heading span.-main small {
	font-size: 2.5rem;
}

.shiten-solution__heading span.-sub {
	font-size: 2.5rem;
}

.shiten-solution__item-no {
	font-size: 6.875rem;
}

.shiten-solution__item-title {
	font-size: 2.25rem;
}

.shiten-network__message-fukidashi {
	display: block;
	margin-left: auto;
	margin-right: 0;
	width: 15.0625rem;
}

.shiten-flow__item {
	width: 64rem;
}

.shiten-flow__item:nth-of-type(2) {
	margin-left: 1.8125rem;
}

.shiten-flow__item:nth-of-type(3) {
	margin-left: 3.625rem;
}

.shiten-flow__item:nth-of-type(4) {
	margin-left: 5.4375rem;
}

.shiten-flow__item:last-child {
	margin-left: auto;
}

.sokochi-b-fv__title {
	font-size: 5.25rem;
	margin-bottom: 0.25rem;
}

.sokochi-b-fv__achievements {
	gap: 0;
}

.sokochi-b-fv__achievement .-text {
	font-size: 2.25rem;
}

.sokochi-b-fv__achievement .-text-sm {
	font-size: 1.625rem;
}

.sokochi-b-fv__achievement .-number {
	font-size: 3.75rem;
}

.sokochi-b-fv__form {
	right: 3.125rem;
	top: 13.125rem;
}

.sokochi-b-problem__box {
	padding: 2.8125rem 0 0 2.5rem;
}

.sokochi-b-problem__img {
	width: 23.3125rem;
}

.sokochi-b-contact__page-top {
	bottom: 0;
	right: -14.375rem;
}

.shiten-thanks__mascot-img {
	width: 15.75rem;
}

}

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

.sokochi-a-fv__texts {
	top: 14.375rem;
}

.sokochi-a-solution__item-img {
	width: 34.375rem;
}

}

@media (min-width: 1320px) {

html {
	font-size: 0.8333333333vw;
}

}

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

.sokochi-a-contact__page-top {
	right: -5.625rem;
}

.sokochi-a-contact__page-top-btn {
	height: 12.5rem;
	width: 12.5rem;
}

.sokochi-a-contact__page-top-icon {
	height: 3rem;
	top: 0.75rem;
	width: 3rem;
}

.sokochi-a-contact__page-top-text {
	bottom: 2.6875rem;
	font-size: 2.5rem;
}

}

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

.sokochi-a-solution__item {
	gap: 0 2.1875rem;
}

}

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

.sokochi-b-fv__title {
	font-size: 5.375rem;
}

}

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

.header-shiten.-thanks {
	height: 4.375rem;
}

.shiten-fv__fukidashi-1-img.-lg .shiten-fv__fukidashi-1-text {
	font-size: 1.5rem;
}

.shiten-fv__fukidashi-1-img.-lg .shiten-fv__fukidashi-1-text span {
	font-size: 1.125rem;
}

.shiten-fv__title span.-lg {
	line-height: 135%;
}

.shiten-problem__items {
	grid-column: 1/3;
}

.shiten-network__message-fukidashi img {
	rotate: -22deg;
	transform: scale(-1, 1);
}

.shiten-contact__description span {
	margin-top: 0.9375rem;
}

.sokochi-a-fv__texts {
	max-width: 23.4375rem;
}

.sokochi-a-fv__title-char:nth-child(1) {
	left: 0.503125rem;
	top: 2.566875rem;
}

.sokochi-a-fv__title-char:nth-child(2) {
	left: 6.013125rem;
	top: 2.55625rem;
}

.sokochi-a-fv__title-char:nth-child(3) {
	left: 9rem;
	top: 3.239375rem;
}

.sokochi-a-fv__title-char:nth-child(4) {
	right: 5.918125rem;
	top: 2.863125rem;
}

.sokochi-a-fv__title-char:nth-child(5) {
	right: 0.99375rem;
	top: 3.0275rem;
}

.sokochi-a-solution__heading span {
	line-height: 1.4;
}

.sokochi-a-solution__heading span.-sm {
	font-size: 1rem;
	margin-top: 0.5rem;
}

.sokochi-a-voice__arrow {
	margin-bottom: auto;
	margin-top: auto;
	rotate: 90deg;
}

.sokochi-a-works__note span {
	display: block;
	margin-left: 0.8125rem;
}

.sokochi-b-solution__point {
	grid-row: 1/3;
}

.sokochi-b-solution__description {
	grid-column: 1/3;
}

.sokochi-b-flow__cta-btn.-yellow {
	gap: 0.25rem;
}

.sokochi-b-contact__form-wrap {
	margin-bottom: 0.625rem;
}

}

@keyframes slideInFromBottom {

to {
	opacity: 1;
	transform: translateY(0);
}

}

@keyframes scroll-left {

0% {
	transform: translateX(0);
}

100% {
	transform: translateX(-50%);
}

}

@keyframes scroll-left {

0% {
	transform: translateX(0);
}

100% {
	transform: translateX(-50%);
}

}


/*# sourceMappingURL=style-sokochi-a.css.map */
