:root {
	--font-weight-Regular: 400;
	--font-weight-Medium: 500;
	--font-weight-SemiBold: 600;
	--font-weight-Bold: 700;
	--font-weight-ExtraBold: 800;
	--font-weight-Black: 900;
	--primary-font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	--noto-sans-jp: "Noto Sans JP", sans-serif;
	--primary-font-color: #000;
	--font-color-red: #ff0000;
	--font-color-white: #fff;
	--primary-bg-color: #fff;
	--color-red: #ff0000;
	--color-mutedRed: #ce141c;
}

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

html {
	font-size: 16px;
}

*,
*::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 {
	background-color: #fff;
	background-color: var(--primary-bg-color);
	color: #000;
	color: var(--primary-font-color);
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-family: var(--primary-font-family);
	line-height: 1.5;
	min-height: 100vh;
	text-rendering: optimizeLegibility;
}

body.is-active {
	overflow: hidden;
}

/* 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 {
	-o-object-fit: cover;
	-o-object-position: center;
	display: block;
	height: 100%;
	max-width: 100%;
	object-fit: cover;
	object-position: center;
	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;
}

/* ホバー */

a {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
}

.l-archive-pagination {
	align-items: center;
	display: flex;
	gap: 1.25rem;
	justify-content: center;
	margin-top: 3.75rem;
}

.l-archive-pagination .page-numbers {
	background-color: #eeeeef;
	border-radius: 50%;
	font-size: 1.875rem;
	height: 3.75rem;
	line-height: calc(31 / 30);
	width: 3.75rem;
}

.l-archive-pagination .page-numbers.next,
.l-archive-pagination .page-numbers.prev {
	position: relative;
}

.l-archive-pagination .page-numbers.next::before {
	aspect-ratio: 15/25;
	background-image: url(../images/arrow-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 100%;
	left: 50%;
	max-width: 1.25rem;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
	width: 100%;
}

.l-archive-pagination .page-numbers.prev::before {
	aspect-ratio: 15/25;
	background-image: url(../images/arrow-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 100%;
	left: 50%;
	max-width: 1.25rem;
	position: absolute;
	rotate: 180deg;
	top: 50%;
	translate: -50% -50%;
	width: 100%;
}

.l-cta {
	background-color: #ff0000;
	border-radius: 5rem;
	bottom: 10px;
	box-shadow: 0 8px 0 #000;
	left: 50%;
	max-width: 25rem;
	opacity: 0;
	padding: 1rem 1.25rem 0.875rem;
	position: fixed;
	transition: opacity 0.3s;
	translate: -50% 0;
	visibility: hidden;
	width: calc(100% - 20px);
	z-index: 9999;
}

.l-cat__contents {
	align-items: center;
	display: flex;
	justify-content: center;
	width: 100%;
}

.l-cta__content {
	color: #fff;
	display: flex;
	font-size: 1.0625rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	gap: 1rem;
	justify-content: center;
	letter-spacing: 0.05em;
	line-height: calc(25 / 17);
	width: 100%;
}

.l-cta__arrow {
	aspect-ratio: 25/43;
	background-image: url(../images/arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	width: 0.5rem;
}

.l-cta__content:nth-of-type(1) .l-cta__arrow {
	rotate: 180deg;
}

.l-cta__line {
	background-color: #fff;
	display: block;
	height: 1.25rem;
	width: 0.25rem;
}

.l-footer {
	background-color: #282828;
	padding-bottom: 3.125rem;
	padding-top: 4.6875rem;
}

.l-footer__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1740px;
	padding-left: 3.75rem;
	padding-right: 1.875rem;
	width: 100%;
}

.l-footer__contents {
	display: flex;
	justify-content: space-between;
}

.l-footer-left {
	display: flex;
	gap: 9.875rem;
}

.l-footer-item {
	color: #fff;
	display: block;
	font-size: 1.25rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.075em;
	line-height: calc(20 / 20);
}

.l-footer-item + .l-footer-item {
	margin-top: 3.125rem;
}

.l-footer__list {
	background-color: #d12b29;
	border-radius: 2.5rem;
	color: #fff;
	display: block;
	font-size: 1.625rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.075em;
	line-height: calc(36 / 26);
	padding: 1.5rem 5.5rem 1.5rem 2.5rem;
	position: relative;
	white-space: nowrap;
}

.l-footer__list::before {
	background-image: url(../images/arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 1.5rem;
	position: absolute;
	right: 1.5rem;
	top: 50%;
	translate: 0 -50%;
	width: 0.875rem;
}

.l-footer__list + .l-footer__list {
	margin-top: 0.75rem;
}

.l-footer__list:hover {
	background-color: #fff;
	color: #d12b29;
}

.l-footer__list:hover::before {
	background-image: url(../images/arrow-red.svg);
}

.l-footer__logos {
	margin-top: 4.0625rem;
}

.l-footer__logo {
	aspect-ratio: 352/65;
	margin-left: auto;
	margin-right: auto;
	max-width: 22rem;
	width: 100%;
}

.l-footer__copyright {
	color: #fff;
	display: block;
	font-size: 1.125rem;
	letter-spacing: 0.075em;
	line-height: calc(18 / 18);
	margin-top: 1.25rem;
	text-align: center;
}

.l-hamburger-contents {
	background-color: #eeeeef;
	border-bottom-left-radius: 1.25rem;
	border-top-left-radius: 1.25rem;
	height: 100%;
	max-width: 19.375rem;
	min-height: 100vh;
	overflow: auto;
	padding-bottom: 6.25rem;
	padding-top: 8.75rem;
	position: fixed;
	right: -101%;
	top: 0;
	transition: right 0.3s;
	width: 68%;
	z-index: 9980;
}

.l-hamburger-contents.is-active {
	right: 0;
}

.l-hamburger-contents__bg {
	background-color: #000;
	display: block;
	height: 100vh;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	transition: opacity 0.3s;
	visibility: hidden;
	width: 100vw;
	z-index: 9980;
}

.l-hamburger-contents__bg.is-active {
	opacity: 0.5;
	visibility: visible;
}

.l-hamburger-contents__menu {
	align-items: center;
	color: #ce141c;
	display: flex;
	font-size: 1rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.075em;
	line-height: calc(24 / 16);
	margin-left: auto;
	margin-right: auto;
	max-width: 10rem;
}

.l-hamburger-contents__menu span {
	display: block;
}

.l-hamburger-contents__menu + .l-hamburger-contents__menu {
	margin-top: 1.875rem;
}

.l-hamburger-contents__menu-arrow {
	aspect-ratio: 14/24;
	background-image: url(../images/arrow-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	margin-left: auto;
	margin-right: 1rem;
	width: 0.4375rem;
}

.l-hamburger-contents__buttons {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 2.1875rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: 5rem;
	max-width: 15.625rem;
	padding-left: 1.25rem;
	padding-right: 1.5625rem;
}

.l-hamburger-contents__button {
	max-width: 27.6875rem;
}

.l-hamburger {
	display: none;
}

.l-hamburger__line {
	background-color: #ae2b29;
	border-radius: 6px;
	content: "";
	display: block;
	height: 5px;
	position: absolute;
	transition: translate 0.3s, top 0.3s, opacity 0.3s, visibility 0.3s, rotate 0.3s;
	width: 100%;
}

.l-hamburger__line:nth-of-type(1) {
	left: 0;
	top: 0;
}

.l-hamburger__line:nth-of-type(2) {
	top: 50%;
	translate: 0 -50%;
}

.l-hamburger__line:nth-of-type(3) {
	top: 100%;
	translate: 0 -100%;
}

.l-hamburger.is-active .l-hamburger__line:nth-of-type(1) {
	rotate: 45deg;
	top: 50%;
	translate: 0 -50%;
}

.l-hamburger.is-active .l-hamburger__line:nth-of-type(2) {
	opacity: 0;
	visibility: hidden;
}

.l-hamburger.is-active .l-hamburger__line:nth-of-type(3) {
	rotate: -45deg;
	top: 50%;
	translate: 0 -50%;
}

.l-header {
	height: 8.125rem;
	position: relative;
	width: 100%;
}

.l-header__inner {
	align-items: center;
	display: flex;
	height: inherit;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
	max-width: 19200px;
	padding-left: 3.75rem;
	padding-right: 3.75rem;
	width: 100%;
}

.l-header__logos {
	align-items: center;
	display: flex;
	gap: 2.25rem;
}

.l-header__logo {
	max-width: 16.0625rem;
	width: 100%;
}

.l-header__logos span {
	display: block;
	font-size: 0.8125rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	white-space: nowrap;
}

.l-header__lists {
	display: flex;
	gap: 4.0625rem;
	height: inherit;
	margin-right: 23.125rem;
}

.l-header__list {
	align-items: center;
	display: flex;
	font-size: 1.25rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	gap: 0.8125rem;
	height: inherit;
}

.l-header__list span {
	max-width: 0.625rem;
	width: 100%;
}

.l-header__list img {
	transition: rotate 0.3s;
}

.l-header__list:hover img {
	rotate: 90deg;
}

.l-header__boxs {
	background-color: #ff0000;
	border-bottom-left-radius: 35px;
	border-bottom-right-radius: 35px;
	padding-bottom: 2.8125rem;
	padding-left: 2.6875rem;
	padding-right: 2.1875rem;
	padding-top: 2.5625rem;
	position: absolute;
	right: 2.5rem;
	top: 0;
	z-index: 9000;
}

.l-header__box {
	align-items: center;
	color: #fff;
	display: flex;
	font-size: 1.25rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	gap: 1.5rem;
	line-height: calc(35 / 20);
}

.l-header__box + .l-header__box {
	padding-top: 2.0625rem;
}

.l-header__box img {
	max-width: 1.75rem;
}

.l-header__box-arrow {
	border: 1px solid #fff;
	border-radius: 50%;
	display: block;
	height: 1.5625rem;
	margin-left: auto;
	padding-left: 1.25rem;
	position: relative;
	width: 1.5625rem;
}

.l-header__box-arrow::before {
	background-image: url(../images/header-box-arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 0.8125rem;
	left: 50%;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
	width: 0.5rem;
}

.l-header__box:hover .l-header__box-arrow {
	background-color: #fff;
}

.l-header__box:hover .l-header__box-arrow::before {
	background-image: url(../images/header-box-arrow-hover.svg);
}

.l-inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1610px;
	padding-left: 30px;
	padding-right: 30px;
	width: 100%;
}

.l-max-inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1920px;
}

.l-page__inner {
	max-width: 91.875rem;
}

.l-page__title {
	font-size: 3.125rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.075em;
	line-height: calc(22 / 50);
}

.l-parallax {
	display: block;
	overflow: hidden;
	padding-top: 10.3125rem;
	position: relative;
	z-index: 0;
}

.l-parallax__image {
	aspect-ratio: 2088/5603;
	left: -1.875rem;
	position: absolute;
	scale: 1.1;
	top: 54.375rem;
	top: 0rem;
	width: 100%;
	z-index: -1;
}

.p-about {
	background-image: url(../images/about-bg.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow-x: hidden;
	padding-bottom: 17.1875rem;
	padding-top: 10.3125rem;
	position: relative;
	z-index: 1;
}

.p-about::before {
	background-image: url(../images/about-bg-line.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 6.375rem;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.p-about::after {
	background-image: url(../images/about-bg-line.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0;
	content: "";
	height: 11rem;
	left: 0;
	position: absolute;
	transform: scaleY(-1);
	width: 100%;
	z-index: -1;
}

.p-about-image01 {
	aspect-ratio: 662/545;
	left: calc(46% - min(50vw, 60rem));
	max-width: 41.375rem;
	position: absolute;
	top: 50%;
	translate: 0 -65%;
	width: 34.47917%;
}

.p-about-image02 {
	aspect-ratio: 764/591;
	max-width: 47.75rem;
	position: absolute;
	right: calc(42% - min(50vw, 60rem));
	top: 50%;
	translate: 0 -63%;
	width: 39.79167%;
}

.p-about__title {
	color: #fff;
	font-size: 2.8125rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.025em;
	line-height: calc(100 / 45);
	padding-left: 15px;
	padding-right: 15px;
	text-align: center;
}

.p-about__textbox {
	color: #fff;
	padding-top: 5rem;
	text-align: center;
}

.p-about__text {
	font-size: 2rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	line-height: calc(56 / 32);
}

.p-about__text span {
	display: none;
}

.p-about__text-big {
	display: inline-block;
	font-size: 3.5rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	line-height: calc(98 / 56);
	position: relative;
	z-index: 0;
}

.p-about__text-big::before {
	background-color: rgba(255, 236, 99, 0.33);
	border-radius: 4px;
	bottom: 1rem;
	content: "";
	height: 1.5rem;
	left: 0;
	position: absolute;
	width: 95%;
	z-index: -1;
}

.p-about__textbox2 {
	padding-top: 5.625rem;
	text-align: center;
}

.p-about__text2 {
	color: #fff;
	font-size: 1.875rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.05em;
	line-height: calc(60 / 30);
}

.p-about__buttons {
	align-items: center;
	display: flex;
	gap: 5.9375rem;
	justify-content: center;
	padding-top: 3.75rem;
}

.p-about__button {
	align-items: center;
	background-color: #fff;
	border-radius: 48px;
	box-shadow: 0 14px 0 #000;
	color: #ce141c;
	color: var(--color-mutedRed);
	display: flex;
	font-size: 2.1875rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.05em;
	line-height: calc(55 / 35);
	max-width: 34.375rem;
	padding: 1.875rem 2.8125rem 1.6875rem 4.375rem;
	transition: box-shadow 0.3s, translate 0.3s;
	width: 100%;
}

.p-fv__button .c-button-book img {
	display: inline-block;
	margin-left: 0.4375rem;
}

.p-about__button:hover {
	background-color: #ce141c;
	background-color: var(--color-mutedRed);
	box-shadow: 0 7px 0 #000;
	color: #fff;
	translate: 0 7px;
}

.p-about__button:hover .p-about__button-fukidasi {
	background-image: url(../images/fukidasi.svg);
}

.p-about__button:hover .p-about__button-book {
	background-image: url(../images/book.svg);
}

.p-about__button:hover .p-about__button-arrow {
	background-image: url(../images/arrow.svg);
}

.p-about__button:hover .p-about__button-tel {
	background-image: url(../images/tel.svg);
}

.p-about__button:hover .p-about__button-demo {
	background-image: url(../images/demo.svg);
}

.p-about__button:hover .p-about__button-download {
	background-image: url(../images/download.svg);
}

.p-about__button-fukidasi {
	background-image: url(../images/fukidasi-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	height: 2.9375rem;
	width: 3.875rem;
}

.p-about__button-book {
	background-image: url(../images/book-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	height: 2.875rem;
	width: 3.6875rem;
}

.p-about__button-tel {
	background-image: url(../images/tel-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	height: 2.5rem;
	width: 2.5rem;
}

.p-about__button-text {
	display: block;
	padding-left: 1rem;
}

.p-about__button-arrow {
	background-image: url(../images/arrow-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	height: 1.875rem;
	margin-left: auto;
	width: 1.25rem;
}

.p-case-archive {
	padding-bottom: 7.5rem;
}

.p-case-archive__contents {
	margin-top: 6.25rem;
}

.p-case-archive-content {
	display: flex;
}

.p-case-archive-content + .p-case-archive-content {
	margin-top: 3.75rem;
}

.p-case-archive-content__image {
	aspect-ratio: 1280/670;
	width: 38%;
}

.p-case-archive-content__image img {
	-o-object-fit: fill;
	border-bottom-left-radius: 1.875rem;
	border-top-left-radius: 1.875rem;
	object-fit: fill;
}

.p-case-archive-content__body {
	background-color: #eeeeef;
	border-bottom-right-radius: 1.875rem;
	border-top-right-radius: 1.875rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 1.875rem 1.9375rem 2.5rem 3rem;
	width: 62%;
}

.p-case-archive-content__body-top {
	align-items: start;
	display: flex;
	justify-content: space-between;
}

.p-case-archive-content__logo img {
	-o-object-fit: contain;
	max-height: 4.75rem;
	object-fit: contain;
}

.p-case-archive-content__category {
	background-color: #c31918;
	border-radius: 5rem;
	color: #fff;
	font-size: 1.125rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.05em;
	line-height: calc(36 / 18);
	padding: 0.625rem 2.3125rem;
}

.p-case-archive-content__access {
	display: block;
	font-size: 1.25rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.05em;
	line-height: calc(36 / 20);
	margin-top: 2.1875rem;
}

.p-case-archive-content__bottom {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.p-case-archive-content__title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	font-size: 1.875rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.05em;
	line-height: calc(36 / 30);
	max-width: 46.875rem;
	overflow: hidden;
	width: 100%;
}

.p-case-archive-content__arrow {
	aspect-ratio: 1/1;
	background-image: url(../images/post-arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: block;
	width: 2.5625rem;
}

.p-case-archive-content:hover .p-case-archive-content__arrow {
	background-image: url(../images/post-arrow-hover.svg);
}

.p-case-single {
	padding-bottom: 3.75rem;
}

.p-case-single__link {
	margin-left: auto;
	margin-right: auto;
}

.p-case-single__arrows {
	align-items: center;
	display: flex;
	gap: 0.9375rem;
	justify-content: space-between;
	margin-top: 2.5rem;
}

.p-case-single-arrow {
	align-items: center;
	background-color: #eeeeef;
	border-radius: 80px;
	display: flex;
	gap: 3.125rem;
	padding: 3rem 3rem 3rem 6.25rem;
	width: -moz-fit-content;
	width: fit-content;
}

.p-case-single__arrow--prev {
	padding: 3rem 6.25rem 3rem 3rem;
}

.p-case-single-arrow__icon {
	aspect-ratio: 14/24;
	background-image: url(../images/post-arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	width: 3.125rem;
}

.p-case-single-arrow__label {
	color: #c50016;
	display: inline-block;
	font-size: 1.875rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.075em;
	line-height: calc(77 / 30);
}

.p-case-single-arrow__title {
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
}

.p-case-single__arrow--prev .p-case-single-arrow__icon {
	rotate: 180deg;
}

.p-case-single__arrow--next {
	flex-direction: row-reverse;
}

.p-case-single__arrow--next .p-case-single-arrow__label {
	text-align: right;
}

.p-case-single__arrow--hidden {
	opacity: 0;
	visibility: hidden;
}

.p-case-single-content {
	margin: 0 auto;
	margin-top: 8.75rem;
	max-width: 77.5rem;
	overflow: hidden;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.p-case-single-content__top {
	align-items: flex-end;
	display: flex;
	justify-content: space-between;
}

.p-case-single-content__head {
	background: linear-gradient(to right, #c41419, #bb4842);
	border-radius: 3.75rem;
	color: #fff;
	display: inline-block;
	font-family: "Noto Sans JP", sans-serif;
	font-family: var(--noto-sans-jp);
	font-size: 1.75rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.075em;
	line-height: calc(49 / 28);
	padding: 1.1875rem 3.3125rem 1.3125rem 3.3125rem;
}

.p-case-single-content__day {
	font-family: "Noto Sans JP", sans-serif;
	font-family: var(--noto-sans-jp);
	font-size: 1.5625rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.05em;
	line-height: calc(43 / 25);
}

.p-case-single__title {
	font-family: "Noto Sans JP", sans-serif;
	font-family: var(--noto-sans-jp);
	font-size: 3rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.025em;
	line-height: calc(80 / 48);
	margin-left: 1.25rem;
	margin-top: 3.125rem;
}

.p-single-section {
	background: linear-gradient(to right, #c41419, #bb4842);
	border-radius: 3.125rem;
	color: #fff;
	display: inline-block;
	font-size: 1.75rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.075em;
	line-height: calc(48 / 28);
	margin-left: -1.25rem;
	margin-top: 6.25rem;
	padding: 1.125rem 3.75rem 1.3125rem 3.75rem;
	position: relative;
	z-index: 0;
}

.p-single-section + .p-single-section {
	margin-top: 3.125rem;
}

.p-case-single-content__box {
	align-items: start;
	margin: 0 auto;
	margin-top: 1.875rem;
	max-width: 75rem;
}

.p-case-single-content__thumbnail img {
	border-radius: 4.375rem;
}

.p-case-single__contacts {
	margin-top: 1.5rem;
}

.p-case-single__contact {
	background-color: #eeeeef;
	border-radius: 3.75rem;
	padding: 2.1875rem 3.125rem;
}

.p-case-single__contact2 {
	background-color: #eeeeef;
	border-radius: 3.75rem;
	margin-top: 1.5rem;
	padding: 1rem 3.125rem 1.8125rem;
}

.p-case-single__contact-wrap {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
	max-width: 56.25rem;
	width: 100%;
}

.p-case-single-contact__label {
	align-items: center;
	color: #dc0000;
	display: flex;
	font-size: 1.875rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	gap: 2.1875rem;
	letter-spacing: 0.075em;
}

.p-case-single-content__tel-text {
	color: #dc0000;
	font-size: 2.5rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.075em;
}

.p-case-single-contact__icon-tel {
	aspect-ratio: 1/1;
	background-image: url(../images/tel-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	width: 2.5rem;
}

.p-case-single-contact__button {
	align-items: center;
	background-color: #fff;
	border-radius: 48px;
	box-shadow: 0 0.625rem 0 #000;
	display: flex;
	max-width: 21.25rem;
	padding: 1.5625rem 1.5625rem 1.375rem 2.5rem;
	transition: box-shadow 0.3s, translate 0.3s;
	width: 100%;
}

.p-case-single-contact__button:hover {
	box-shadow: 0 0.3125rem 0 #000;
	translate: 0 0.3125rem;
}

.p-case-single-content__demo {
	aspect-ratio: 42/34;
	background-image: url(../images/demo-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	margin-right: 0.9375rem;
	width: 1.875rem;
}

.p-case-single-content__text {
	color: #dc0000;
	font-size: 1.4375rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.075em;
	line-height: calc(39 / 23);
}

.p-case-single-content__arrow {
	aspect-ratio: 14/24;
	background-image: url(../images/arrow-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	margin-left: auto;
	width: 1rem;
}

.p-case-single-content__download {
	aspect-ratio: 43/39;
	background-image: url(../images/download-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	margin-right: 0.9375rem;
	width: 1.875rem;
}

.p-case-single__contact--sp {
	display: none;
}

.p-case-single__contact-text--sp {
	color: #fff;
	font-size: 0.9375rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.075em;
	line-height: calc(26 / 15);
}

.p-case-single__contact-tel--sp {
	aspect-ratio: 1/1;
	background-image: url(../images/tel.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	margin-right: 0.3125rem;
	width: 1.125rem;
}

.p-case-single__contact-arrow--sp {
	aspect-ratio: 1/1;
	background-image: url(../images/post-arrow-white.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	margin-left: auto;
	width: 1.8125rem;
}

.p-case-single__to-top {
	margin-top: 5.1875rem;
}

.p-case-single-content__main {
	margin-top: 1.5625rem;
}

.p-case-single-content__main h2 {
	font-family: "Noto Sans JP", sans-serif;
	font-family: var(--noto-sans-jp);
	font-size: 1.875rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.025em;
	line-height: calc(32 / 30);
	margin-top: 2.125rem;
}

.p-case-single-content__main .has-background {
	border-radius: 4.5625rem;
	margin-top: 2rem;
	padding: 4.6875rem 1.875rem;
}

.p-case-single-content__main .has-background p,
.p-case-single-content__main .has-background li {
	font-size: 1.5625rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.01em;
	line-height: calc(47 / 25);
}

.p-case-single-content__main .has-background p,
.p-case-single-content__main .has-background figure,
.p-case-single-content__main ul {
	margin-left: auto;
	margin-right: auto;
	max-width: 56.25rem;
	width: 100%;
}

.p-case-single-content__main .has-background p + p,
.p-case-single-content__main .has-background figure {
	margin-top: 3.75rem;
}

.p-case-single-content__main .has-background.p-single-box {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.p-case-single-content__main .p-single-border-red {
	border: 1px solid #c50016;
}

.p-case-single-content__main ul {
	list-style: disc outside none;
	list-style: initial;
	margin-left: 1.25rem;
}

.p-case-single-content__main ul li + li {
	margin-top: 0.9375rem;
}

.p-case-single-content__main a {
	-webkit-text-decoration: underline;
	text-decoration: underline;
}

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

.p-case__title {
	font-size: 3.125rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.075em;
	line-height: calc(50 / 50);
	text-align: center;
}

.p-case__contents {
	background-color: #eeeeef;
	margin-top: 3.75rem;
	padding-top: 2.1875rem;
}

.p-case__inner {
	height: inherit;
	max-width: 1550px;
}

.p-case-slide {
	height: inherit;
}

.p-case-slide-content {
	display: flex;
	height: inherit;
}

.p-case-slide-content__image {
	aspect-ratio: 1280/670;
	max-width: 460px;
	width: 35.33568%;
}

.p-case-slide-content__image img {
	-o-object-fit: fill;
	border-bottom-left-radius: 28px;
	border-top-left-radius: 28px;
	object-fit: fill;
}

.p-case-slide-content__body {
	background-color: #fff;
	border-bottom-right-radius: 28px;
	border-top-right-radius: 28px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-bottom: 1.125rem;
	padding-left: 2.5rem;
	padding-right: 2rem;
	padding-top: 2.25rem;
	width: 64.66432%;
}

.p-case-slide-content__top {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.p-case-slide-content__logo {
	height: 100%;
	max-height: 5rem;
}

.p-case-slide-content__logo img {
	-o-object-fit: contain;
	object-fit: contain;
}

.p-case-slide-content__access {
	font-size: 1.25rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	line-height: calc(20 / 20);
}

.p-case-slide-content__bottom {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.p-case-slide-content__title {
	font-size: 1.875rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	line-height: calc(30 / 30);
}

.p-case-slide-content__arrow {
	aspect-ratio: 1/1;
	background-image: url(../images/post-arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: block;
	width: 2.5625rem;
}

.p-case-slide-content:hover .p-case-slide-content__arrow {
	background-image: url(../images/post-arrow-hover.svg);
}

.p-case-slide__ber {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: 2.625rem;
	position: absolute;
	right: -5rem;
	top: 50%;
	transform: translateY(-50%);
}

/* 矢印のクリック範囲など */

.p-case-slide__arrow {
	transform: translate(0) !important;
}

.p-case-slide__arrow {
	background-color: transparent; /* ボタンの背景を透明にする */
	height: 1.125rem;
	position: static;
	position: initial;
	rotate: 90deg;
	width: 0.75rem;
}

/* 矢印共通のスタイル */

.p-case-slide__arrow::before {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

/* 前の矢印 */

.p-case-slide__arrow--prev::before {
	background-image: url(../images/splide-arrow-pre.svg);
}

/* 次の矢印 */

.p-case-slide__arrow--next::before {
	background-image: url(../images/splide-arrow-next.svg);
}

/* 次のスライドが無い場合の矢印 */

.p-case-slide__arrow:disabled::before {
	opacity: 0.5;
}

.p-case-slide__pagination {
	justify-content: start;
	position: static;
	position: initial;
	translate: 0 -5px;
}

/* ページネーションのスタイル */

.p-case-slide__pagination .splide__pagination__page {
	background-color: #fff;
	border: 1px solid #000;
	height: 15px;
	transition: 0.5s all;
	width: 15px;
}

/* 現在表示されているページネーションのスタイル */

.p-case-slide__pagination .splide__pagination__page.is-active {
	background-color: #000;
	opacity: 1;
	transform: scale(1);
}

/* ページネーション間の余白 */

.p-case-slide__pagination li {
	margin-left: 10px;
	margin-right: 10px;
}

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

.p-case__link {
	margin-left: auto;
}

.p-comparison {
	margin-top: 6.625rem;
}

.p-comparison__title {
	font-size: 3.125rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.075em;
	line-height: calc(50 / 50);
	text-align: center;
}

.p-comparison__image {
	background-color: #eeeeef;
	border-radius: 5.625rem;
	margin-top: 3.5rem;
	padding: 6.875rem 1.875rem 7.5rem;
}

.p-comparison__image img {
	-o-object-fit: contain;
	aspect-ratio: 1300/805;
	margin-left: auto;
	margin-right: auto;
	max-width: 81.25rem;
	object-fit: contain;
	width: 100%;
}

.p-contact {
	padding-bottom: 9.375rem;
}

.p-contact__text {
	font-size: 1.75rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.025em;
	line-height: calc(48 / 28);
	margin-top: 5.9375rem;
}

.p-contact__bottom {
	margin-top: 3.375rem;
}

.p-contact-box {
	align-items: center;
	background-color: #eeeeef;
	border-radius: 3rem;
	display: flex;
	justify-content: space-between;
	padding-bottom: 4.75rem;
	padding-left: 9.375rem;
	padding-right: 11.875rem;
	padding-top: 4.75rem;
}

.p-contact-box__title {
	align-items: center;
	color: #dc0000;
	display: flex;
	font-size: 1.875rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	gap: 2.75rem;
	letter-spacing: 0.075em;
	line-height: calc(30 / 30);
}

.p-contact-box__tel-icon {
	background-image: url(../images/tel-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: inline-block;
	height: 2.5rem;
	width: 2.5rem;
}

.p-contact-box__tel {
	color: #dc0000;
	font-size: 2.5rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.075em;
	line-height: calc(40 / 40);
}

.p-contact__contents {
	display: flex;
	gap: 2.5rem;
	justify-content: center;
	margin-top: 2.375rem;
}

.p-contact-content {
	background-color: #eeeeef;
	border-radius: 3.625rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-bottom: 5.625rem;
	padding-left: 3.75rem;
	padding-right: 3.75rem;
	padding-top: 5.9375rem;
}

.p-contact-content__title {
	color: #dc0000;
	font-size: 1.875rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.075em;
	line-height: calc(30 / 30);
	text-align: center;
}

.p-contact-content__text {
	font-size: 1.25rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.025em;
	line-height: calc(48 / 20);
	text-align: center;
}

.p-contact-content:nth-of-type(1) .p-contact-content__text {
	margin-top: 6.25rem;
}

.p-contact-content:nth-of-type(1) .p-contact-content__button {
	margin-top: 5.4375rem;
}

.p-contact-content:nth-of-type(2) .p-contact-content__text {
	margin-top: 4.875rem;
}

.p-contact-content__button a {
	margin-left: auto;
	margin-right: auto;
}

.p-contact__buttons {
	display: none;
}

.p-contact-button {
	align-items: center;
	background-color: #dc0000;
	border-radius: 7.5rem;
	color: #fff;
	display: flex;
	font-size: 0.9375rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	justify-content: space-between;
	letter-spacing: 0.075em;
	line-height: calc(26 / 15);
	padding-bottom: 1rem;
	padding-left: 1.875rem;
	padding-right: 0.625rem;
	padding-top: 1rem;
}

.p-contact-button + .p-contact-button {
	margin-top: 0.9375rem;
}

.p-contact-button__tel {
	background-image: url(../images/tel.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	height: 2.5rem;
	width: 2.5rem;
}

.p-contact-button__arrow {
	aspect-ratio: 1/1;
	background-image: url(../images/contact-arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: block;
	width: 1.875rem;
}

.p-contact-form {
	background-color: #fff;
	border: 4px solid #dc0000;
	border-radius: 1.25rem;
	margin-top: 3.75rem;
	padding: 3.75rem 3.125rem;
}

.p-contact-form__box {
	display: flex;
	gap: 1.5625rem;
}

.p-contact-form__box .c-contact {
	width: 50%;
}

.p-flow-step {
	margin-top: 12.8125rem;
}

.p-flow-step__title {
	font-size: 3.125rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.075em;
	line-height: calc(50 / 50);
	text-align: center;
}

.p-flow-step__contents {
	background-color: #eeeeef;
	border-radius: 5.625rem;
	margin-top: 3.75rem;
	padding-bottom: 2.1875rem;
	padding-top: 2.8125rem;
}

.p-flow-step__text {
	font-size: 1.625rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.05em;
	line-height: calc(54 / 26);
	text-align: center;
}

.p-flow-step__text span {
	color: #dc0000;
	font-size: 2.5rem;
	line-height: calc(72 / 40);
}

.p-flow-step-slide .splide__slide:not(:first-of-type) {
	margin-top: 5.5rem;
}

.p-flow-step-item {
	align-items: center;
	display: flex;
	gap: 5.625rem;
}

.p-flow-step-item__left {
	align-items: center;
	display: flex;
	width: 27.972%;
}

.p-flow-step-item__right {
	align-items: center;
	display: flex;
	gap: 4.6875rem;
}

.p-flow-step-item__num-box {
	align-items: center;
	display: flex;
}

.p-flow-step-item__step {
	color: #dc0000;
	font-family: "Josefin Sans", sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
}

.p-flow-step-item__num {
	aspect-ratio: 1/1;
	display: block;
	margin-left: 1.1875rem;
	margin-right: 1.625rem;
	position: relative;
	width: 5rem;
	z-index: 0;
}

.p-flow-step-item__num::before {
	background-color: #dc0000;
	content: "";
	height: 320%;
	left: 50%;
	position: absolute;
	top: 100%;
	translate: -50% 0;
	width: 3px;
	z-index: -1;
}

.splide__slide:last-of-type .p-flow-step-item__num::before {
	opacity: 0;
	visibility: hidden;
}

.p-flow-step-item__title {
	color: #dc0000;
	font-size: 1.875rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.05em;
	line-height: calc(30 / 30);
	white-space: nowrap;
}

.p-flow-step-item__image {
	aspect-ratio: 232/243;
	max-width: 14.5rem;
	text-align: center;
	width: 100%;
	width: 100%;
}

.p-flow-step-item__text {
	font-size: 1.5625rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: -0.05em;
	line-height: calc(48 / 25);
}

.p-flow-step-item__text span {
	font-size: 1.125rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: -0.05em;
	line-height: calc(48 / 18);
}

.p-flow-step-slide {
	margin-top: 5rem;
	padding-left: 6.25rem;
	padding-right: 1.25rem;
}

.p-flow-step-slide__pagination {
	counter-reset: pagination-num;
	position: static;
	position: initial;
}

.p-flow-step-slide__pagination .splide__pagination__page::before {
	color: #000;
	content: counter(pagination-num);
	counter-increment: pagination-num;
	font-size: 0.8125rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
}

/* ページネーションのスタイル */

.p-flow-step-slide__pagination .splide__pagination__page {
	background-color: transparent;
	height: 0.625rem;
	margin: 0;
	opacity: 0.6;
	transition: 0.5s all;
	width: 0.625rem;
}

/* 現在表示されているページネーションのスタイル */

.p-flow-step-slide__pagination .splide__pagination__page.is-active {
	background-color: transparent;
	opacity: 1;
	transform: scale(1);
}

/* ページネーションの位置 */

.p-flow-step-slide__pagination {
	bottom: 1.5em;
}

/* ページネーション間の余白 */

.p-flow-step-slide__pagination li {
	margin-left: 0.1875rem;
	margin-right: 0.1875rem;
}

.p-flow {
	margin-top: 8.125rem;
}

.p-flow__title {
	align-items: center;
	display: flex;
	justify-content: center;
}

.p-flow__title img {
	max-width: 21.6875rem;
	width: 100%;
}

.p-flow__title span {
	font-size: 3.125rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.075em;
	line-height: calc(105 / 50);
	padding-left: 1.4375rem;
}

.p-flow__contents {
	align-items: flex-start;
	display: flex;
	margin-top: 1.5625rem;
}

.p-flow-content {
	aspect-ratio: 640/650;
	padding-top: 2.8125rem;
	position: relative;
	text-align: center;
	width: 100%;
	z-index: 0;
}

.p-flow-content__num {
	margin-left: auto;
	margin-right: auto;
	max-width: 2.1875rem;
	width: 100%;
}

.p-flow-content__title {
	color: #fff;
	font-size: 1.875rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.05em;
	line-height: calc(40 / 30);
	margin-top: 0.75rem;
}

.p-flow-content__text {
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.05em;
	line-height: calc(35 / 20);
	margin-top: 1.875rem;
}

.p-flow-content__body {
	height: 100%;
}

.p-flow-content__bg {
	bottom: 0;
	overflow: hidden;
	position: absolute;
	width: 100%;
	z-index: -2;
}

.p-flow-content:nth-of-type(1) {
	background: linear-gradient(90deg, rgba(226, 187, 171, 0.35) 0%, rgba(227, 190, 174, 0.35) 65%, rgba(229, 195, 180, 0.35) 100%);
}

.p-flow-content:nth-of-type(1) .p-flow-content__title,
.p-flow-content:nth-of-type(1) .p-flow-content__text {
	color: #ae2b29;
}

.p-flow-content:nth-of-type(1) .p-flow-content__bg {
	bottom: 5%;
}

.p-flow-content:nth-of-type(1) .p-flow-content__icon {
	bottom: 3.4375rem;
	left: 50%;
	position: absolute;
	translate: -50% 0;
	width: 9.75rem;
	z-index: -1;
}

.p-flow-content:nth-of-type(2) {
	background: linear-gradient(90deg, #D17E5E 0%, #D08062 33%, #CF8871 72%, #CE9080 100%);
}

.p-flow-content:nth-of-type(2) .p-flow-content__icon {
	bottom: 0;
	left: 50%;
	overflow: hidden;
	position: absolute;
	translate: -30% 0;
	width: 16.125rem;
	z-index: -1;
}

.p-flow-content:nth-of-type(2) .p-flow-content__icon img {
	translate: 0 10%;
}

.p-flow-content:nth-of-type(3) {
	background: linear-gradient(90deg, #B81C22 0%, #B72025 29%, #B52F2F 63%, #B34741 100%);
}

.p-flow-content:nth-of-type(3) .p-flow-content__icon {
	bottom: 5%;
	left: 50%;
	position: absolute;
	translate: -50% 0;
	width: 12.375rem;
	z-index: -1;
}

.p-fv {
	background-image: url(../images/fv.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	padding-bottom: 11rem;
	padding-top: 9.375rem;
	position: relative;
}

.p-fv__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1920px;
	padding-left: 6.25rem;
	padding-right: 6.25rem;
	width: 100%;
}

.p-fv__text {
	color: #fff;
	color: var(--font-color-white);
	font-size: 2.125rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	line-height: calc(61 / 34);
}

.p-fv__text-line {
	display: inline-block;
	position: relative;
	z-index: 0;
}

.p-fv__text-line::before {
	background-color: #ffec63;
	border-radius: 3px;
	bottom: 0.625rem;
	content: "";
	height: 0.625rem;
	left: 0;
	opacity: 0.33;
	position: absolute;
	width: 100%;
	z-index: -1;
}

.p-fv__title {
	color: #fff;
	color: var(--font-color-white);
	font-size: 3.8125rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.045em;
	line-height: calc(92 / 61);
}

.p-fv__title span {
	display: inline-block;
	letter-spacing: -0.09em;
	padding-right: 0.75rem;
}

.p-fv__image {
	aspect-ratio: 946/687;
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 50.5%;
}

.p-fv__image img {
	margin-left: auto;
	width: 100%;
}

.p-fv__buttons {
	margin-top: 4.8125rem;
}

.p-fv__button {
	max-width: 27.6875rem;
}

.p-fv__button + .p-fv__button {
	margin-top: 3.125rem;
}

.p-fv__button .c-button-book img {
	display: inline-block;
	margin-left: 0.4375rem;
}

.p-parallax {
	display: block;
	margin-top: -5rem;
	overflow: hidden;
	padding-bottom: 9.375rem;
	position: relative;
	z-index: 1;
}

.p-parallax__image {
	aspect-ratio: 2088/5603;
	left: -1.875rem;
	position: absolute;
	scale: 1.1;
	top: 54.375rem;
	top: 0rem;
	width: 100%;
	z-index: -1;
}

.p-post-slider-wrap-inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1920px;
	padding-left: 2.1875rem;
	padding-right: 2.1875rem;
	width: 100%;
}

.p-post-slider {
	padding-bottom: 2.625rem;
}

.p-post-slider__slide {
	border-radius: 30px;
	display: block;
	height: 100%;
	position: relative;
}

.p-post-slider__slide img {
	-o-object-fit: fill;
	aspect-ratio: 1280/670;
	border-radius: 30px;
	object-fit: fill;
}

.p-post-slider__bottom {
	align-items: center;
	background-color: rgba(255, 255, 255, 0.8);
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
	bottom: 0;
	display: flex;
	gap: 2.625rem;
	height: 100%;
	left: 0;
	max-height: 6.25rem;
	padding-left: 2.125rem;
	padding-right: 2.125rem;
	position: absolute;
	width: 100%;
}

.p-post-slider__logo {
	max-width: 6.25rem;
	width: 100%;
}

.p-post-slider__logo img {
	-o-object-fit: contain;
	max-height: 4.5rem;
	object-fit: contain;
}

.p-post-slider__title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	font-size: 1.4375rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	line-height: calc(30 / 23);
	overflow: hidden;
}

.p-post-slider__ber {
	align-items: center;
	display: flex;
	justify-content: center;
	padding-right: 1.25rem;
	padding-top: 2.625rem;
}

/* 矢印のクリック範囲など */

.p-post-slider__arrow {
	background-color: transparent; /* ボタンの背景を透明にする */
	height: 1.125rem;
	position: static;
	position: initial;
	transform: translateY(0);
	width: 0.75rem;
}

/* 矢印共通のスタイル */

.p-post-slider__arrow::before {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

/* 前の矢印 */

.p-post-slider__arrow--prev::before {
	background-image: url(../images/splide-arrow-pre.svg);
}

/* 次の矢印 */

.p-post-slider__arrow--next::before {
	background-image: url(../images/splide-arrow-next.svg);
}

/* 次のスライドが無い場合の矢印 */

.p-post-slider__arrow:disabled::before {
	opacity: 0.5;
}

.p-post-slider__pagination {
	justify-content: start;
	position: static;
	position: initial;
}

/* ページネーションのスタイル */

.p-post-slider__pagination .splide__pagination__page {
	background-color: #fff;
	border: 1px solid #000;
	height: 0.9375rem;
	transition: 0.5s all;
	width: 0.9375rem;
}

/* 現在表示されているページネーションのスタイル */

.p-post-slider__pagination .splide__pagination__page.is-active {
	background-color: #000;
	opacity: 1;
	transform: scale(1);
}

/* ページネーション間の余白 */

.p-post-slider__pagination li {
	margin-left: 0.625rem;
	margin-right: 0.625rem;
}

.p-resources-archive {
	padding-bottom: 7.5rem;
}

.p-resources-archive__text {
	font-size: 0.8125rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.025em;
	line-height: calc(24 / 13);
	margin-top: 2.5rem;
	text-align: center;
}

.p-resources-archive__contents {
	grid-column-gap: 3.125rem;
	-moz-column-gap: 3.125rem;
	grid-row-gap: 8.125rem;
	column-gap: 3.125rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: 10rem;
	row-gap: 8.125rem;
}

.p-resources-archive-content {
	background-color: #eeeeef;
	border-radius: 1.875rem;
	border-top-left-radius: 0;
	display: block;
	padding: 1.875rem 2.1875rem 1.6875rem;
	position: relative;
}

.p-resources-archive-content__title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	background-color: #eeeeef;
	border-top-left-radius: 2.125rem;
	border-top-right-radius: 2.125rem;
	display: -webkit-box;
	font-size: 1.875rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	left: 0;
	letter-spacing: 0.025em;
	line-height: calc(50 / 30);
	overflow: hidden;
	padding-left: 2.1875rem;
	padding-right: 2.1875rem;
	padding-top: 0.9375rem;
	position: absolute;
	top: 0;
	translate: 0 -99%;
	width: 96%;
}

.p-resources-archive-content__image {
	aspect-ratio: 610/280;
	width: 100%;
}

.p-resources-archive-content__body {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-top: 1.5625rem;
}

.p-resources-archive-content__text {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	font-size: 1.125rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.025em;
	line-height: calc(24 / 18);
	overflow: hidden;
	width: 90%;
}

.p-resources-archive-content__arrow {
	aspect-ratio: 41/41;
	background-image: url(../images/link-arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: translate 0.3s;
	width: 2.5625rem;
}

.p-resources-archive-content:hover .p-resources-archive-content__arrow {
	translate: 5px 0;
}

.p-resources-archive__to-top {
	margin-top: 3.75rem;
}

.p-resources-single {
	padding-bottom: 3.75rem;
}

.p-resources-single-head {
	background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
	color: #fff;
	padding: 5rem 1.25rem;
}

.p-resources-single-head__body {
	margin-left: auto;
	margin-right: auto;
	max-width: 75rem;
}

.p-resources-single-head__title {
	color: #fff;
	font-size: 2.5rem;
	font-weight: 900;
	line-height: 1.3;
}

.p-resources-single-head__text {
	color: #fff;
	font-size: 1.125rem;
	line-height: 1.8;
	margin-top: 1.25rem;
	max-width: 50rem;
	opacity: 0.95;
}

.p-resources-single__contents {
	grid-gap: 3.75rem;
	align-items: start;
	display: grid;
	gap: 3.75rem;
	grid-template-columns: 21.875rem 1fr;
	margin: 0 auto;
	max-width: 1240px;
	padding: 3.75rem 1.25rem;
}

.p-resources-single__sidebar {
	position: sticky;
	top: 0.625rem;
}

.p-resources-single__image {
	border-radius: 1rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	width: 100%;
}

.p-resources-single__image img {
	-o-object-fit: contain;
	border-radius: 1rem;
	object-fit: contain;
}

.p-resources-single__info {
	margin-top: 1.875rem;
}

.p-resources-single-info {
	background-color: #f9fafb;
	border-radius: 1rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	padding: 1.875rem;
}

.p-resources-single-info__title {
	border-bottom: 2px solid #e5e7eb;
	color: #1f2937;
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 1.25rem;
	padding-bottom: 0.9375rem;
}

.p-resources-single-info__item {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 0.9375rem 0;
}

.p-resources-single-info__label {
	color: #6b7280;
	font-size: 0.875rem;
}

.p-resources-single-info__value {
	color: #1f2937;
	font-size: 0.9375rem;
	font-weight: 600;
}

.p-resources-single-info__button {
	margin-top: 1.875rem;
}

.p-resources-single-info__link {
	align-items: center;
	background-color: #dc2626;
	border-radius: 0.625rem;
	box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
	color: #fff;
	display: flex;
	font-size: 1rem;
	font-weight: 700;
	gap: 0.75rem;
	justify-content: center;
	padding: 1rem;
	width: 100%;
}

.p-resources-single-info__link:hover {
	background-color: #fff;
	color: #dc2626;
}

.p-resources-single-info__download {
	aspect-ratio: 43/39;
	background-image: url(../images/download.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	width: 1.25rem;
}

.p-resources-single-info__link:hover .p-resources-single-info__download {
	background-image: url(../images/download-red.svg);
}

.p-resources-single-content-top__title {
	border-bottom: 3px solid #dc2626;
	color: #1f2937;
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0 0 1.25rem;
	padding-bottom: 0.9375rem;
}

.p-resources-single-content-top__text {
	color: #374151;
	font-size: 1.25rem;
	line-height: 1.8;
}

.p-resources-single-content-bottom {
	background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
	border-radius: 1rem;
	box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
	margin-top: 3.75rem;
	padding: 2.5rem;
	text-align: center;
}

.p-resources-single-content-bottom__title {
	color: #fff;
	font-size: 1.875rem;
	font-weight: 900;
}

.p-resources-single-content-bottom__text {
	color: #fff;
	font-size: 1rem;
	line-height: 1.6;
	margin-top: 0.9375rem;
	opacity: 0.95;
}

.p-resources-single-content-bottom__link {
	align-items: center;
	background-color: #fff;
	border: none;
	border-radius: 3.125rem;
	box-shadow: 0 8px 0 rgba(0, 0, 0, 0.15), 0 12px 20px rgba(0, 0, 0, 0.2);
	color: #dc2626;
	display: block;
	display: inline-flex;
	font-size: 1.125rem;
	font-weight: 800;
	gap: 0.75rem;
	justify-content: center;
	margin-top: 1.875rem;
	padding: 1.125rem 2.5rem;
}

.p-resources-single-content-bottom__download {
	aspect-ratio: 43/39;
	background-image: url(../images/download-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	width: 1.5625rem;
}

.p-resources-single-content-bottom__arrow {
	aspect-ratio: 1/1;
	background-image: url(../images/post-arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: block;
	transition: translate 0.3s;
	width: 1.5625rem;
}

.p-resources-single-content-bottom__link:hover .p-resources-single-content-bottom__arrow {
	translate: 5px 0;
}

.p-resources-single__link {
	margin-left: auto;
	margin-right: auto;
}

.p-resources-single__arrows {
	grid-gap: 0.9375rem;
	align-items: stretch;
	display: grid;
	gap: 0.9375rem;
	grid-template-columns: repeat(2, minmax(0, 20rem));
	justify-content: center;
	margin-top: 2.5rem;
}

.p-resources-single-arrow {
	align-items: center;
	background-color: #eeeeef;
	border-radius: 0.75rem;
	display: flex;
	gap: 0.9375rem;
	padding: 0.625rem 0.9375rem;
}

.p-resources-single-arrow__icon {
	aspect-ratio: 14/24;
	background-image: url(../images/arrow-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	width: 0.875rem;
}

.p-resources-single-arrow__body {
	width: 100%;
}

.p-resources-single-arrow__label {
	display: block;
}

.p-resources-single-arrow__title {
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
}

.p-resources-single__arrow--prev .p-resources-single-arrow__icon {
	rotate: 180deg;
}

.p-resources-single__arrow--next {
	flex-direction: row-reverse;
}

.p-resources-single__arrow--next .p-resources-single-arrow__label {
	text-align: right;
}

.p-resources-single-content__main {
	padding-top: 3.75rem;
}

.p-resources-single-content__main p,
.p-resources-single-content__main ul li {
	color: #374151;
	font-size: 1.25rem;
	line-height: 1.8;
}

.p-resources-single-content__main h2 {
	color: #1f2937;
	font-size: 1.75rem;
	font-weight: 700;
}

.p-resources-single-content__main h3 {
	color: #1f2937;
	font-size: 1.625rem;
	font-weight: 700;
}

.p-resources-single-content__main img {
	width: auto;
	width: initial;
}

.p-resources-single-content__main figure {
	margin-left: auto;
	margin-right: auto;
}

.p-resources-single-content__main p,
.p-resources-single-content__main figure,
.p-resources-single-content__main ul {
	display: block;
	margin-top: 1.5625rem;
}

.p-resources-single-content__main h1,
.p-resources-single-content__main h2,
.p-resources-single-content__main h3,
.p-resources-single-content__main h4,
.p-resources-single-content__main h5 {
	margin-top: 1.5625rem;
}

.p-resources-single-content__main hr {
	margin-bottom: 2.5rem;
	margin-top: 2.5rem;
}

.ez-toc-counter {
	margin-top: 1.5625rem;
}

.ez-toc-page-1,
.ez-toc-link {
	padding-bottom: 0.3125rem;
}

.ez-toc-link {
	align-items: center !important;
}

.p-resources-single-content__main ul,
.p-resources-single-content__main ol {
	list-style: disc outside none;
	list-style: initial;
	margin-left: 1.25rem;
}

.twitter-tweet {
	margin-left: auto;
	margin-right: auto;
}

.p-resources-single-content__main figcaption {
	text-align: center;
}

.p-resources-single-content__main ul li + li,
.p-resources-single-content__main ol li + li {
	margin-top: 0.625rem;
}

.p-resources-single-content__main a {
	-webkit-text-decoration: underline;
	text-decoration: underline;
}

.p-slider {
	display: flex;
	overflow: hidden;
	padding-bottom: 5.75rem;
	padding-top: 5.75rem;
}

.p-slide img {
	-o-object-fit: contain;
	display: block;
	height: 4.0625rem;
	object-fit: contain;
	width: auto;
}

.p-strengths {
	background-color: #fff;
	border-top-left-radius: 84px;
	border-top-right-radius: 84px;
	padding-top: 6.25rem;
	position: relative;
	z-index: 10;
}

.p-strengths__title {
	align-items: center;
	display: flex;
	justify-content: center;
}

.p-strengths__title img {
	max-width: 21.6875rem;
	width: 100%;
}

.p-strengths__title-sub {
	display: block;
	font-size: 2.625rem;
	letter-spacing: 0.05em;
	line-height: calc(68 / 42);
	padding-left: 0.3125rem;
	translate: 0 3px;
}

.p-strengths__title-main {
	display: inline-block;
	font-size: 3.125rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.01em;
	line-height: calc(127 / 50);
}

.p-strengths__contents {
	align-items: flex-start;
	display: flex;
	gap: 2px;
	margin-top: 1.125rem;
}

.p-strengths-content {
	cursor: pointer;
	position: relative;
	width: 100%;
}

.p-strengths-content__wrap {
	background-color: #eeeeef;
	padding-bottom: 2.5rem;
	padding-top: 3.125rem;
}

.p-strengths-content__num {
	background-color: #C41419;
	border-bottom-right-radius: 7.5rem;
	border-top-right-radius: 7.5rem;
	display: block;
	left: 0;
	padding: 1.25rem 2.5rem 0.625rem 1.875rem;
	position: absolute;
	top: -0.625rem;
}

.p-strengths-content__num img {
	width: 1.875rem;
}

.p-strengths-content__title {
	color: #ce141c;
	color: var(--color-mutedRed);
	font-size: 1.875rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.05em;
	line-height: calc(48 / 30);
	text-align: center;
}

.p-strengths-content__title span {
	display: block;
}

.p-strengths-content__image {
	aspect-ratio: 1/1;
	margin-left: auto;
	margin-right: auto;
	margin-top: 3.75rem;
	max-width: 21.75rem;
	width: 100%;
}

.p-strengths-content__image img {
	-o-object-fit: contain;
	object-fit: contain;
}

.p-strengths-content__arrow {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 3rem;
	max-width: 0.625rem;
	width: 100%;
}

.p-strengths-content__arrow img {
	rotate: 90deg;
	transition: rotate 0.3s;
}

.p-strengths-content__textbox {
	display: none;
	margin-left: auto;
	margin-right: auto;
	margin-top: 3.125rem;
	max-width: 25rem;
	padding-bottom: 2.5rem;
	width: 100%;
}

.p-strengths__content:nth-of-type(2) .p-strengths-content__textbox {
	max-width: 28.5625rem;
}

.p-strengths-content__text {
	font-size: 1.25rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: -0.05em;
	line-height: calc(45 / 20);
}

.p-strengths-content__note {
	margin-top: 3.125rem;
}

.p-strengths-content__note span {
	display: block;
	font-size: 0.9375rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	line-height: calc(30 / 15);
	text-align: center;
}

.p-strengths-content__wrap.is-active .p-strengths-content__arrow img {
	rotate: -90deg;
}

.p-to-top {
	margin-top: 10.9375rem;
	text-align: center;
}

.p-to-top__link {
	color: #fff;
	display: block;
	font-family: "Josefin Sans", sans-serif;
	font-size: 1.0625rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
}

.p-to-top__link img {
	aspect-ratio: 58/17;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0.625rem;
	max-width: 3.625rem;
	width: 100%;
}

.p-top-contact {
	background: linear-gradient(90deg, #c41419 0%, #bb4842 100%);
	padding-bottom: 12.8125rem;
	padding-top: 5.75rem;
}

.p-top-contact__title {
	color: #fff;
	font-size: 3.75rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.075em;
	line-height: calc(60 / 60);
	text-align: center;
}

.p-top-contact__contents {
	grid-gap: 2.375rem;
	display: grid;
	gap: 2.375rem;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	margin-left: auto;
	margin-right: auto;
	margin-top: 3.75rem;
	max-width: 92.5rem;
	width: 100%;
}

.p-top-contact-content:nth-of-type(1) {
	grid-column: 1/3;
	padding-bottom: 6.25rem;
	padding-top: 5rem;
}

.p-top-contact-content:nth-of-type(2) {
	grid-row-start: 2;
	padding-bottom: 6.25rem;
	padding-top: 5.9375rem;
}

.p-top-contact-content:nth-of-type(3) {
	grid-row-start: 2;
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
}

.p-top-contact-content {
	background-color: #eeeeef;
	border-radius: 4.125rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
}

.p-top-contact-content + .p-top-contact-content {
	border-radius: 3.4375rem;
}

.p-top-contact-content__title {
	color: #dc0000;
	font-size: 1.875rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.075em;
	line-height: calc(30 / 30);
}

.p-top-contact-content__text {
	font-size: 1.25rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.025em;
	line-height: calc(40 / 20);
}

.p-top-contact-content__text2 {
	line-height: calc(48 / 20);
	margin-top: 3.125rem;
}

.p-top-contact-content__text3 {
	line-height: calc(35 / 20);
}

.p-top-contact-content__text-space {
	margin-top: 2.1875rem;
}

.p-top-contact-content__text-space2 {
	margin-top: 2.5rem;
}

.p-top-contact-content__buttons {
	display: flex;
	gap: 3.125rem;
	justify-content: center;
	margin-top: 4.375rem;
}

.p-top-contact-content__announce {
	display: block;
	font-size: 0.8125rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.025em;
	line-height: calc(24 / 13);
	margin-bottom: 0.8125rem;
	margin-top: 2.5rem;
}

.p-top-contact-content__button-box {
	display: contents;
}

.p-top-contact-content__button {
	align-items: center;
	background-color: #fff;
	border-radius: 48px;
	box-shadow: 0 14px 0 #000;
	color: #ff0000;
	color: var(--font-color-red);
	display: flex;
	flex: 1;
	font-size: 1.9375rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	line-height: calc(53 / 31);
	max-width: 28.75rem;
	padding: 1.875rem 2.1875rem 1.6875rem 3.125rem;
	transition: box-shadow 0.3s, translate 0.3s;
	width: 100%;
}

.p-top-contact-content__button:hover {
	translate: 0 7px !important;
}

.p-top-contact-content__button:hover {
	background-color: #ff0000;
	background-color: var(--font-color-red);
	box-shadow: 0 7px 0 #000;
	color: #fff;
}

.p-top-contact-content__button:hover .p-top-contact-content__button-fukidasi {
	background-image: url(../images/fukidasi.svg);
}

.p-top-contact-content__button:hover .p-top-contact-content__button-book {
	background-image: url(../images/book.svg);
}

.p-top-contact-content__button:hover .p-top-contact-content__button-arrow {
	background-image: url(../images/arrow.svg);
}

.p-top-contact-content__button:hover .p-top-contact-content__button-tel {
	background-image: url(../images/tel.svg);
}

.p-top-contact-content__button:hover .p-top-contact-content__button-demo {
	background-image: url(../images/demo.svg);
}

.p-top-contact-content__button:hover .p-top-contact-content__button-download {
	background-image: url(../images/download.svg);
}

.p-top-contact-content__button-fukidasi {
	background-image: url(../images/fukidasi-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	height: 2.3125rem;
	width: 3.125rem;
}

.p-top-contact-content__button-book {
	background-image: url(../images/book-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	height: 2.3125rem;
	width: 3.125rem;
}

.p-top-contact-content__button-tel {
	background-image: url(../images/tel-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	height: 2.5rem;
	width: 2.5rem;
}

.p-top-contact-content__button-demo {
	background-image: url(../images/demo-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	height: 2.125rem;
	width: 2.625rem;
}

.p-top-contact-content__button-download {
	background-image: url(../images/download-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	height: 2.4375rem;
	width: 2.6875rem;
}

.p-top-contact-content__button-text {
	display: block;
	padding-left: 1rem;
}

.p-top-contact-content__button-arrow {
	background-image: url(../images/arrow-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	height: 1.5rem;
	margin-left: auto;
	width: 0.875rem;
}

.c-button--red .p-top-contact-content__button-fukidasi {
	background-image: url(../images/fukidasi.svg);
}

.c-button--red .p-top-contact-content__button-book {
	background-image: url(../images/book.svg);
}

.c-button--red .p-top-contact-content__button-arrow {
	background-image: url(../images/arrow.svg);
}

.c-button--red .p-top-contact-content__button-tel {
	background-image: url(../images/tel.svg);
}

.c-button--red .p-top-contact-content__button-demo {
	background-image: url(../images/demo.svg);
}

.c-button--red .p-top-contact-content__button-download {
	background-image: url(../images/download.svg);
}

.c-button--red:hover {
	background-color: #fff;
	background-color: var(--font-color-white);
	color: #ff0000;
	color: var(--color-red);
}

.c-button--red:hover .p-top-contact-content__button-fukidasi {
	background-image: url(../images/fukidasi-red.svg);
}

.c-button--red:hover .p-top-contact-content__button-book {
	background-image: url(../images/book-red.svg);
}

.c-button--red:hover .p-top-contact-content__button-arrow {
	background-image: url(../images/arrow-red.svg);
}

.c-button--red:hover .p-top-contact-content__button-tel {
	background-image: url(../images/tel-red.svg);
}

.c-button--red:hover .p-top-contact-content__button-demo {
	background-image: url(../images/demo-red.svg);
}

.c-button--red:hover .p-top-contact-content__button-download {
	background-image: url(../images/download-red.svg);
}

.p-work-page {
	margin-top: 6.875rem;
	padding-bottom: 9.375rem;
}

.p-work-page__tabs {
	grid-gap: 0.9375rem;
	display: grid;
	gap: 0.9375rem;
	grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
	justify-content: center;
}

.p-work-page__tab {
	background: #eeeeef;
	border-radius: 2.0625rem;
	cursor: pointer;
	font-size: 1.25rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.075em;
	line-height: calc(22 / 20);
	margin-left: auto;
	margin-right: auto;
	max-width: 21.25rem;
	padding-bottom: 1.375rem;
	padding-top: 1.375rem;
	text-align: center;
	width: 100%;
}

.p-work-page__tab:hover {
	background: linear-gradient(to right, #c41419, #bb4842);
	color: #fff;
}

.p-work-page__tab.is-active {
	background: linear-gradient(to right, #c41419, #bb4842);
	color: #fff;
}

.p-work-page__contents {
	grid-row-gap: 3.75rem;
	grid-column-gap: 1.875rem;
	-moz-column-gap: 1.875rem;
	align-items: stretch;
	column-gap: 1.875rem;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
	margin-top: 4.75rem;
	row-gap: 3.75rem;
}

.p-work-page-content {
	background-color: #eeeeef;
	border-radius: 2.5rem;
	max-width: 28.125rem;
	padding: 2.5rem 3.125rem;
	width: 100%;
}

.p-work-page-content.is-inactive {
	display: none;
}

.p-work-page-content.is-active {
	display: block;
}

.p-work-page-content__image {
	margin-left: auto;
	margin-right: auto;
	max-width: 15rem;
	width: 100%;
}

.p-work-page-content__title {
	color: #d90000;
	font-size: 1.875rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	line-height: calc(30 / 30);
	margin-top: 2rem;
	text-align: center;
}

.p-work-page-content__text {
	font-size: 1.125rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	line-height: calc(31 / 18);
	margin-top: 2rem;
}

.p-work {
	margin-top: 8.125rem;
}

.p-work__inner {
	max-width: 1530px;
}

.p-work__title-wrap {
	align-items: center;
	display: flex;
	justify-content: center;
}

.p-work__title img {
	max-width: 19.375rem;
	width: 100%;
}

.p-work__title-sub {
	font-size: 2.3125rem;
	letter-spacing: 0.05em;
	line-height: calc(60 / 37);
	padding-left: 5px;
	translate: 0 2px;
}

.p-work__title-main {
	display: block;
	font-size: 3.125rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	letter-spacing: 0.075em;
	line-height: calc(88 / 50);
	text-align: center;
}

.p-work__contents {
	grid-gap: 1.25rem;
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	margin-top: 2.5rem;
}

.p-work-content {
	background-color: #eeeeef;
	border-radius: 22px;
	padding: 2.5rem 1.25rem 1.875rem;
}

.p-work-content__image {
	margin-left: auto;
	margin-right: auto;
	max-width: 12rem;
	width: 100%;
}

.p-work-content__title {
	color: #d90000;
	font-size: 1.5625rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	line-height: calc(43 / 25);
	margin-top: 3.125rem;
	text-align: center;
}

.p-work__button {
	margin-top: 2.4375rem;
}

.p-work__link {
	margin-left: auto;
}

.p-work__slide {
	display: none;
}

.p-work__slide-ber {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-top: 1.25rem;
}

.p-work__slide-pagination {
	padding-left: 0;
	padding-right: 0.5625rem;
	position: static;
	position: initial;
	translate: 0 -5px;
}

/* ページネーションのスタイル */

.p-work__slide-pagination .splide__pagination__page {
	background-color: #fff;
	border: 1px solid #000;
	height: 0.5rem;
	transition: 0.5s all;
	width: 0.5rem;
}

/* 現在表示されているページネーションのスタイル */

.p-work__slide-pagination .splide__pagination__page.is-active {
	background-color: #000;
	opacity: 1;
	transform: scale(1);
}

/* ページネーションの位置 */

.p-work__slide-pagination {
	bottom: 1.5em;
}

/* ページネーション間の余白 */

.p-work__slide-pagination li {
	margin-left: 0.125rem;
	margin-right: 0.125rem;
}

.c-button {
	align-items: center;
	background-color: #fff;
	border-radius: 48px;
	box-shadow: 0 14px 0 #000;
	color: #ce141c;
	color: var(--color-mutedRed);
	display: flex;
	font-size: 1.75rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	line-height: calc(44 / 28);
	padding: 1.875rem 2.1875rem 1.6875rem 3.125rem;
	transition: box-shadow 0.3s, translate 0.3s;
	width: 100%;
}

.c-button:hover {
	background-color: #ce141c;
	background-color: var(--color-mutedRed);
	box-shadow: 0 7px 0 #000;
	color: #fff;
	translate: 0 7px;
}

.c-button:hover .c-button-fukidasi {
	background-image: url(../images/fukidasi.svg);
}

.c-button:hover .c-button-book {
	background-image: url(../images/book.svg);
}

.c-button:hover .c-button-arrow {
	background-image: url(../images/arrow.svg);
}

.c-button:hover .c-button-tel {
	background-image: url(../images/tel.svg);
}

.c-button:hover .c-button-demo {
	background-image: url(../images/demo.svg);
}

.c-button:hover .c-button-download {
	background-image: url(../images/download.svg);
}

.c-button-fukidasi {
	background-image: url(../images/fukidasi-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	height: 2.3125rem;
	width: 3.125rem;
}

.c-button-book {
	background-image: url(../images/book-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	height: 2.3125rem;
	width: 3.125rem;
}

.c-button-tel {
	background-image: url(../images/tel-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	height: 2.5rem;
	width: 2.5rem;
}

.c-button-demo {
	background-image: url(../images/demo-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	height: 2.125rem;
	width: 2.625rem;
}

.c-button-download {
	background-image: url(../images/download-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	height: 2.4375rem;
	width: 2.6875rem;
}

.c-button-text {
	display: block;
	padding-left: 1rem;
}

.c-button-arrow {
	background-image: url(../images/arrow-red.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	height: 1.5rem;
	margin-left: auto;
	width: 0.875rem;
}

.c-button--red {
	background-color: #ff0000;
	background-color: var(--color-red);
	color: #fff;
	color: var(--font-color-white);
}

.c-button--red .c-button-fukidasi {
	background-image: url(../images/fukidasi.svg);
}

.c-button--red .c-button-book {
	background-image: url(../images/book.svg);
}

.c-button--red .c-button-arrow {
	background-image: url(../images/arrow.svg);
}

.c-button--red .c-button-tel {
	background-image: url(../images/tel.svg);
}

.c-button--red .c-button-demo {
	background-image: url(../images/demo.svg);
}

.c-button--red .c-button-download {
	background-image: url(../images/download.svg);
}

.c-button--red:hover {
	background-color: #fff;
	background-color: var(--font-color-white);
	color: #ff0000;
	color: var(--color-red);
}

.c-button--red:hover .c-button-fukidasi {
	background-image: url(../images/fukidasi-red.svg);
}

.c-button--red:hover .c-button-book {
	background-image: url(../images/book-red.svg);
}

.c-button--red:hover .c-button-arrow {
	background-image: url(../images/arrow-red.svg);
}

.c-button--red:hover .c-button-tel {
	background-image: url(../images/tel-red.svg);
}

.c-button--red:hover .c-button-demo {
	background-image: url(../images/demo-red.svg);
}

.c-button--red:hover .c-button-download {
	background-image: url(../images/download-red.svg);
}

.c-contact__text {
	width: 100%;
}

.c-contact__text:focus {
	box-shadow: none;
	outline: none;
}

.c-contact__checkbox input + span,
.c-contact__consentCheckbox + span {
	cursor: pointer;
	display: inline-block;
	position: relative;
}

.c-contact__checkbox input + span::before,
.c-contact__consentCheckbox + span::before {
	-webkit-transform: translateY(-50%);
	content: "";
	display: block;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.c-contact__checkbox input + span::after,
.c-contact__consentCheckbox + span::after {
	content: "";
	display: block;
	opacity: 0;
	position: absolute;
}

.c-contact__checkbox input:checked + span::after,
.c-contact__consentCheckbox:checked + span::after {
	opacity: 1;
}

.c-contact__textarea {
	width: 100%;
}

.c-contact__textarea:focus {
	box-shadow: none;
	outline: none;
}

.p-contact-form__space {
	margin-top: 1.5625rem;
}

.p-contact-form__box:nth-of-type(1) .c-contact:nth-of-type(1) {
	margin-top: 0;
}

.c-contact__top,
.c-contact__top label {
	display: flex;
	font-size: 1.25rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	gap: 0.3125rem;
}

.c-contact__top span {
	color: #dc2626;
	font-size: 0.875rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
}

.c-contact__bottom {
	margin-top: 0.625rem;
}

.c-contact__text,
.c-contact__textarea,
.c-contact__tel,
.c-contact__mail,
.c-contact__select,
.c-contact__checkbox input + span {
	font-size: 1.125rem;
}

.c-contact__text,
.c-contact__textarea,
.c-contact__tel,
.c-contact__mail,
.c-contact__select {
	background-color: #f9fafb;
	border: 2px solid #e5e7eb;
	border-radius: 0;
	border-radius: 0.625rem;
	padding: 1.125rem 0.875rem;
	width: 100%;
}

.c-contact__text:focus {
	border: 2px solid rgba(0, 0, 0, 0.32);
}

.c-contact__checkbox input + span {
	margin: 0 0.625rem 0;
	padding: 0 0 0 2.125rem;
}

.c-contact__checkbox span {
	display: block;
}

.c-contact__checkbox span:not(:first-of-type) {
	margin-top: 0.5rem;
}

.c-contact__checkbox input + span::before,
.c-contact__consentCheckbox + span::before {
	background: rgba(0, 0, 0, 0.32);
	height: 1em;
	width: 1em;
}

.c-contact__checkbox input + span::after,
.c-contact__consentCheckbox + span::after {
	-webkit-transform: translateY(-50%) rotate(-45deg);
	border-bottom: 3px solid rgba(0, 0, 0, 0.8);
	border-left: 3px solid rgba(0, 0, 0, 0.8);
	height: 0.6em;
	left: 0;
	margin-top: -0.2em;
	opacity: 0;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	transition: all 0.3s ease 0s;
	width: 1em;
}

.c-contact__radio .wpcf7-list-item {
	display: block;
}

.c-contact__radio .wpcf7-list-item {
	margin-top: 0.625rem;
}

.c-contact__radio .wpcf7-list-item.first {
	margin: 0;
}

.c-contact__radio .wpcf7-list-item-label {
	cursor: pointer;
	display: flex;
}

/* チェック前のボタン */

.c-contact__radio .wpcf7-list-item-label::before {
	background: #F7F7F7;
	border: 1px solid #DADADA;
	border-radius: 100%; /* ラジオボタンっぽく丸くする */
	content: "";
	height: 0.875rem;
	margin-bottom: auto;
	margin-right: 0.5em;
	margin-top: auto;
	width: 0.875rem;
}

/* チェック後のボタン */

.c-contact__radio input[type=radio]:checked + .wpcf7-list-item-label::before {
	background-color: #000;
	background-color: var(--primary-font-color); /* チェック後の中心の色 */
	box-shadow: inset 0 0 0 2px #fff; /* 中心の色のスタイル */
}

.c-contact__textarea {
	min-height: 18.75rem;
}

.c-contact__textarea:focus {
	border: 1px solid rgba(0, 0, 0, 0.32);
}

.c-contact__consentCheckbox + span::before {
	height: 1.5625rem;
	width: 1.5625rem;
}

.c-contact__consentCheckbox + span::after {
	width: 1.5625rem;
}

.c-contact__consentCheckbox + span {
	margin: 0;
}

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

.c-contact__consent {
	display: flex;
	font-size: 1rem;
	letter-spacing: 0.12em;
	line-height: calc(20 / 16);
	margin-left: 1.875rem;
}

.c-contact__consent a {
	-webkit-text-decoration: underline;
	color: #dc2626;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	text-decoration: underline;
}

.c-contact__consent span {
	color: #dc2626;
	font-size: 0.875rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
}

.c-contact__select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background: #f9fafb url(https://haniwaman.com/wp-content/uploads/2018/12/form-css-arrow.png) no-repeat center right 8px/16px 16px;
	border: 1px solid rgba(0, 0, 0, 0.16);
	color: inherit;
	cursor: pointer;
	font-family: inherit;
	width: 100%;
}

.c-contact__button {
	background-color: #dc2626;
	border-radius: 5rem;
	color: #fff;
	display: block;
	font-size: 1.0625rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	margin-left: auto;
	margin-right: auto;
	margin-top: 2.5rem;
	max-width: 31.25rem;
	padding: 1.125rem 3.75rem;
	width: 100%;
}

.c-contact__button:disabled {
	opacity: 0.5;
}

.c-link {
	align-items: center;
	display: flex;
	font-size: 1.875rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	gap: 1.1875rem;
	letter-spacing: 0.075em;
	line-height: calc(25 / 30);
	width: -moz-fit-content;
	width: fit-content;
}

.c-link__arrow {
	display: block;
	max-width: 3.125rem;
	transition: translate 0.3s;
	width: 100%;
}

.c-link:hover .c-link__arrow {
	translate: 15px 0;
}

.c-single-link {
	align-items: center;
	background-color: #dc0000;
	border: 1px solid #fff;
	border-radius: 3.75rem;
	color: #fff;
	display: flex;
	font-size: 1.875rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	gap: 1.1875rem;
	letter-spacing: 0.075em;
	line-height: calc(25 / 30);
	padding: 1.875rem 3.75rem;
	width: -moz-fit-content;
	width: fit-content;
}

.c-single-link__arrow {
	aspect-ratio: 14/24;
	background-image: url(../images/arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	max-width: 3.125rem;
	transition: translate 0.3s;
	width: 0.875rem;
}

.c-single-link:hover {
	background-color: #fff;
	border: 1px solid #dc0000;
	color: #dc0000;
}

.c-single-link:hover .c-single-link__arrow {
	background-image: url(../images/arrow-red.svg);
	translate: 15px 0;
}

.c-to-top {
	display: none;
	text-align: center;
}

.c-to-top__link {
	color: #d90000;
	display: block;
	font-family: "Josefin Sans", sans-serif;
	font-size: 1.0625rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
}

.c-to-top__link img {
	aspect-ratio: 58/17;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0.625rem;
	max-width: 3.625rem;
	width: 100%;
}

.u-sp {
	display: none;
}

.u-paginate-links {
	align-items: center;
	display: flex;
	justify-content: center;
}

.prev {
	background-image: url(../images/prev-arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: inline-block;
}

.page-numbers {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-left: 0.25rem;
	margin-right: 0.25rem;
}

.next {
	background-image: url(../images/next-arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: inline-block;
}

.u-svg-def {
	display: none;
}

@media (max-width: 1900px) {

html {
	font-size: 0.6956521739vw;
}

}

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

.l-header__logos span {
	font-size: 1rem;
}

.l-header__list {
	font-size: 1.4375rem;
}

.p-flow-step-slide {
	margin-left: auto;
	margin-right: auto;
	max-width: -moz-fit-content;
	max-width: fit-content;
	padding-left: 0;
	padding-right: 0;
	width: 100%;
}

.p-flow-content__title {
	font-size: 2.0625rem;
}

.p-flow-content__text {
	font-size: 1.4375rem;
}

.p-resources-single-head__title {
	font-size: 2.6875rem;
}

.p-resources-single-head__text {
	font-size: 1.3125rem;
}

.p-resources-single-info__title {
	font-size: 1.4375rem;
}

.p-resources-single-content-top__title {
	font-size: 1.875rem;
}

.p-resources-single-content-top__text {
	font-size: 1.375rem;
}

.p-resources-single-content__main p,
.p-resources-single-content__main ul li {
	font-size: 1.375rem;
}

.p-resources-single-content__main h2 {
	font-size: 1.875rem;
}

.p-resources-single-content__main h3 {
	font-size: 1.75rem;
}

.p-strengths-content__text {
	font-size: 1.5rem;
}

.p-strengths-content__note span {
	font-size: 1.125rem;
}

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

.p-top-contact-content__text {
	font-size: 1.4375rem;
}

}

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

.l-header__lists {
	gap: 1.875rem;
}

}

@media (max-width: 1600px) {

html {
	font-size: 0.8888888889vw;
}

}

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

.l-header__logos {
	gap: 1.25rem;
}

}

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

html {
	font-size: 16px;
}

.l-archive-pagination {
	gap: 0.9375rem;
	margin-top: 2.5rem;
}

.l-archive-pagination .page-numbers {
	font-size: 1rem;
	height: 1.875rem;
	width: 1.875rem;
}

.l-archive-pagination .page-numbers.next::before {
	max-width: 0.625rem;
}

.l-archive-pagination .page-numbers.prev::before {
	max-width: 0.625rem;
}

.l-cta.is-active {
	opacity: 1;
	visibility: visible;
}

.l-footer {
	padding-bottom: 2.5rem;
	padding-top: 2.5rem;
}

.l-footer__inner {
	padding-left: 24px;
	padding-right: 24px;
}

.l-footer-left {
	gap: 1.75rem;
	justify-content: center;
}

.l-footer-item {
	font-size: 0.625rem;
}

.l-footer-item + .l-footer-item {
	margin-top: 1.25rem;
}

.l-footer-right {
	max-width: 9.6875rem;
}

.l-footer__list {
	border-radius: 1rem;
	font-size: 0.6875rem;
	padding: 0.4375rem 2.375rem 0.4375rem 0.9375rem;
}

.l-footer__list::before {
	height: 0.625rem;
	right: 0.75rem;
	width: 0.3125rem;
}

.l-footer__logos {
	margin-top: 2.5rem;
}

.l-footer__logo {
	max-width: 6.875rem;
}

.l-footer__copyright {
	font-size: 0.5rem;
	margin-top: 0.5rem;
}

.l-hamburger-contents__button .c-button-text {
	font-size: 0.8125rem;
	letter-spacing: 0.05em;
	line-height: calc(25 / 13);
}

.l-hamburger-contents__button .c-button-fukidasi {
	height: 1rem;
	width: 1.4375rem;
}

.l-hamburger-contents__button .c-button-book {
	height: 1rem;
	width: 1.375rem;
}

.l-hamburger-contents__button .c-button-arrow {
	height: 1.25rem;
	width: 0.625rem;
}

.l-hamburger {
	cursor: pointer;
	display: block;
	height: 1.5625rem;
	position: fixed;
	right: 1.375rem;
	top: 1.25rem;
	width: 1.6875rem;
	z-index: 9999;
}

.l-header {
	height: 4rem;
}

.l-header__inner {
	padding-left: 0.9375rem;
	padding-right: 0.9375rem;
}

.l-header__logo {
	max-width: 10.625rem;
}

.l-header__logos span {
	display: none;
}

.l-header__lists {
	display: none;
}

.l-header__boxs {
	display: none;
}

.l-inner {
	padding-left: 15px;
	padding-right: 15px;
}

.l-page__title {
	font-size: 2.0625rem;
	line-height: calc(33 / 33);
	text-align: center;
}

.l-parallax {
	padding-top: 3.75rem;
}

.l-parallax__image {
	left: 0;
	top: 0;
}

.p-about {
	padding-bottom: 8.75rem;
	padding-top: 2.8125rem;
}

.p-about-image01 {
	aspect-ratio: 1192/588;
	margin: 2.5rem calc(50% - 50vw) 0;
	max-width: 100vw;
	position: static;
	position: initial;
	translate: 0 0;
	width: 100vw;
}

.p-about-image01 img {
	aspect-ratio: 1192/588;
	height: 110%;
	width: 110%;
}

.p-about-image02 {
	aspect-ratio: initial;
	margin: 2rem calc(50% - 50vw) 0;
	position: static;
	position: initial;
	translate: 0% 0;
	width: 100vw;
}

.p-about-image02 img {
	-o-object-fit: contain;
	aspect-ratio: 1444/1082;
	height: 125%;
	left: 50%;
	max-width: 31.25rem;
	object-fit: contain;
	position: relative;
	transform: translateX(-50%);
	width: 125%;
}

.p-about__title {
	font-size: 1.25rem;
	line-height: calc(44 / 20);
}

.p-about__textbox {
	padding-top: 2.875rem;
}

.p-about__text {
	font-size: 1.0625rem;
}

.p-about__text span {
	display: inline-block;
	margin-left: -4px;
	margin-right: -4px;
}

.p-about__text-big {
	font-size: 1.5625rem;
	padding-top: 0.625rem;
}

.p-about__text-big::before {
	bottom: 0.5rem;
	height: 0.625rem;
}

.p-about__textbox2 {
	padding-top: 2.6875rem;
}

.p-about__text2 {
	font-size: 1.0625rem;
	letter-spacing: 0;
	line-height: calc(28 / 17);
}

.p-about-__text2-space {
	display: block;
	margin-top: 1.875rem;
}

.p-about__buttons {
	flex-direction: column;
	gap: 1.8125rem;
	padding-top: 3.125rem;
}

.p-about__button {
	box-shadow: 0 8px 0 #000;
	font-size: 1.0625rem;
	letter-spacing: 0.05em;
	line-height: calc(78 / 50);
	margin-left: auto;
	margin-right: auto;
	max-width: 15rem;
	padding: 0.8125rem 1.25rem 0.9375rem 1.625rem;
}

.p-about__button:hover {
	box-shadow: 0 4px 0 #000;
	translate: 0 4px;
}

.p-about__button-fukidasi {
	height: 1.375rem;
	width: 2.1875rem;
}

.p-about__button-book {
	height: 1.3125rem;
	margin-right: 0.4375rem;
	width: 1.6875rem;
}

.p-about__button-tel {
	height: 1.5625rem;
	width: 2.1875rem;
}

.p-about__button-text {
	padding-left: 0.3125rem;
}

.p-about__button-arrow {
	height: 1.25rem;
	width: 0.625rem;
}

.p-case-archive__contents {
	margin-left: auto;
	margin-right: auto;
	margin-top: 3.875rem;
	max-width: 31.25rem;
	width: 100%;
}

.p-case-archive-content {
	display: block;
}

.p-case-archive-content + .p-case-archive-content {
	margin-top: 1.875rem;
}

.p-case-archive-content__image {
	aspect-ratio: 345/183;
	width: 100%;
}

.p-case-archive-content__image img {
	border-bottom-left-radius: 0;
	border-top-left-radius: 0.9375rem;
	border-top-right-radius: 0.9375rem;
}

.p-case-archive-content__body {
	border-bottom-left-radius: 0.9375rem;
	border-bottom-right-radius: 0.9375rem;
	border-top-right-radius: 0;
	padding: 0.75rem 1.0625rem 1rem 1.25rem;
	width: 100%;
}

.p-case-archive-content__body-wrap {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.p-case-archive-content__body-top {
	display: contents;
}

.p-case-archive-content__logo img {
	max-height: 3.125rem;
}

.p-case-archive-content__category {
	display: none;
}

.p-case-archive-content__access {
	font-size: 0.625rem;
	margin-top: 0;
}

.p-case-archive-content__bottom {
	margin-top: 0.8125rem;
}

.p-case-archive-content__title {
	font-size: 0.75rem;
	line-height: calc(19 / 12);
	max-width: 82%;
}

.p-case-archive-content__arrow {
	width: 1.5625rem;
}

.p-case-archive__to-top {
	margin-top: 3.75rem;
}

.p-case-single__arrows {
	margin-top: 1.875rem;
}

.p-case-single-arrow {
	border-radius: 3.75rem;
	gap: 0.9375rem;
	padding: 0.625rem 0.625rem 0.625rem 1.5625rem;
}

.p-case-single__arrow--prev {
	padding: 0.625rem 1.5625rem 0.625rem 0.625rem;
}

.p-case-single-arrow__icon {
	width: 1.25rem;
}

.p-case-single-arrow__label {
	font-size: 0.9375rem;
	line-height: calc(21 / 15);
}

.p-case-single-arrow__title {
	font-size: 0.625rem;
}

.p-case-single-content {
	margin-top: 3rem;
	padding-left: 0.875rem;
	padding-right: 0.875rem;
}

.p-case-single-content__head {
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
	font-size: 0.8125rem;
	margin-left: -0.875rem;
	padding: 0.5rem 1.5625rem 0.5625rem 1.1875rem;
	position: relative;
	z-index: 0;
}

.p-case-single-content__head::before {
	background-color: #c41419;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	translate: -99% 0;
	width: 100%;
	z-index: -1;
}

.p-case-single-content__day {
	display: none;
}

.p-case-single__title {
	font-size: 1.375rem;
	margin-left: 0;
	margin-top: 2.1875rem;
}

.p-single-section {
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
	font-size: 0.8125rem;
	margin-top: 3.125rem;
	padding: 0.5rem 1.25rem 0.5625rem 0.9375rem;
}

.p-single-section::before {
	background-color: #c41419;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	translate: -99% 0;
	width: 100%;
	z-index: -1;
}

.p-single-section + .p-single-section {
	margin-top: 3.125rem;
}

.p-case-single-content__box {
	margin-top: 0.8125rem;
}

.p-case-single-content__thumbnail {
	margin-left: auto;
	margin-right: auto;
	max-width: 31.25rem;
	position: relative;
}

.p-case-single-content__thumbnail img {
	border-radius: 0;
}

.p-case-single__contacts {
	margin-top: 3.9375rem;
}

.p-case-single-content__tel-text {
	display: none;
}

.p-case-single-contact__icon-tel {
	width: 2.1875rem;
}

.p-case-single-contact__button {
	display: none;
}

.p-case-single-contact__button:hover {
	box-shadow: 0 4px 0 #000;
	translate: 0 4px;
}

.p-case-single-content__demo {
	width: 1.25rem;
}

.p-case-single-content__arrow {
	width: 0.625rem;
}

.p-case-single-content__download {
	width: 1.25rem;
}

.p-case-single__contact--sp {
	align-items: center;
	background: linear-gradient(to right, #c41419, #bb4842);
	border-radius: 1.5625rem;
	display: flex;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
	max-width: 14.5625rem;
	padding: 0.625rem 0.625rem 0.625rem 1.6875rem;
	width: 100%;
}

.p-case-single__contact--sp + .p-case-single__contact--sp {
	margin-top: 0.8125rem;
}

.p-case-single-content__main {
	margin-left: auto;
	margin-right: auto;
	max-width: 40.625rem;
	width: 100%;
}

.p-case-single-content__main h2 {
	font-size: 1rem;
	line-height: calc(30 / 16);
	margin-top: 0.625rem;
}

.p-case-single-content__main .has-background {
	border-radius: 0.75rem;
	margin-top: 0.875rem;
	padding: 1.8125rem 1.875rem 1.625rem;
}

.p-case-single-content__main .has-background p,
.p-case-single-content__main .has-background li {
	font-size: 0.875rem;
	line-height: calc(23 / 14);
}

.p-case-single-content__main .has-background p + p,
.p-case-single-content__main .has-background figure {
	margin-top: 1rem;
}

.p-case {
	padding-top: 5.3125rem;
}

.p-case__title {
	font-size: 1.875rem;
}

.p-case__contents {
	background-color: transparent;
	margin-top: 1.875rem;
	padding-top: 0;
}

.p-case__inner {
	height: auto;
	height: initial;
	padding-right: 0;
}

.p-case-slide {
	height: auto;
	height: initial;
}

.p-case-slide-content {
	flex-direction: column;
}

.p-case-slide-content__image {
	max-height: 10.9375rem;
	width: 100%;
}

.p-case-slide-content__image img {
	border-bottom-left-radius: 0;
	border-top-left-radius: 1.25rem;
	border-top-right-radius: 1.25rem;
}

.p-case-slide-content__body {
	background-color: #eeeeef;
	border-bottom-left-radius: 1.25rem;
	border-bottom-right-radius: 1.25rem;
	border-top-right-radius: 0;
	gap: 1.125rem;
	padding-bottom: 1.25rem;
	padding-left: 1.25rem;
	padding-right: 1rem;
	padding-top: 0.9375rem;
	position: relative;
	width: 100%;
}

.p-case-slide-content__logo {
	max-height: 3.75rem;
}

.p-case-slide-content__logo img {
	max-height: 2.5rem;
}

.p-case-slide-content__access {
	display: none;
}

.p-case-slide-content__bottom {
	flex-direction: row-reverse;
}

.p-case-slide-content__title {
	font-size: 0.9375rem;
	line-height: calc(19 / 15);
	text-align: left;
}

.p-case-slide-content__arrow {
	position: absolute;
	right: 1.25rem;
	top: 1.25rem;
	width: 1.4375rem;
}

.p-case-slide__ber {
	flex-direction: row;
	padding-top: 0.5625rem;
	position: static;
	position: initial;
	transform: translateY(0%);
}

.p-case-slide__arrow {
	display: none;
}

.p-case-slide__pagination .splide__pagination__page {
	height: 0.5rem;
	margin: 0;
	width: 0.5rem;
}

.p-case-slide__pagination li {
	margin-left: 0.125rem;
	margin-right: 0.125rem;
}

.p-case__button {
	margin-top: 0;
}

.p-comparison {
	margin-top: 4.5625rem;
}

.p-comparison__inner {
	padding-left: 0;
	padding-right: 0;
}

.p-comparison__title {
	font-size: 1.875rem;
}

.p-comparison__image {
	background-color: transparent;
	margin-top: 2.1875rem;
	padding: 0;
}

.p-comparison__image img {
	aspect-ratio: 1104/1138;
	max-width: 37.5rem;
}

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

.p-contact__text {
	font-size: 0.8125rem;
	line-height: calc(24 / 13);
	margin-top: 3.25rem;
	text-align: center;
}

.p-contact-box {
	display: none;
}

.p-contact-box__tel-icon {
	height: 1.25rem;
	width: 1.875rem;
}

.p-contact__contents {
	display: none;
}

.p-contact__buttons {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 18.75rem;
	width: 100%;
}

.p-contact-button__tel {
	height: 1.25rem;
	width: 1.875rem;
}

.p-contact-form {
	border: 2px solid #dc0000;
	margin-left: auto;
	margin-right: auto;
	margin-top: 1.875rem;
	max-width: 31.25rem;
	padding: 1.5625rem 0.9375rem;
	width: 100%;
}

.p-contact-form__box {
	display: contents;
}

.p-contact-form__box .c-contact {
	width: 100%;
}

.p-flow-step {
	margin-top: 2.375rem;
}

.p-flow-step__title {
	font-size: 1.875rem;
}

.p-flow-step__contents {
	background-color: transparent;
	margin-top: 1.25rem;
	padding-bottom: 0;
	padding-top: 0;
}

.p-flow-step__text {
	font-size: 0.8125rem;
	line-height: calc(27 / 13);
}

.p-flow-step__text span {
	font-size: 1.25rem;
}

.p-flow-step-slide .splide__slide:not(:first-of-type) {
	margin-top: 0;
}

.p-flow-step-item {
	background-color: #eeeeef;
	border-radius: 2.5rem;
	flex-direction: column;
	gap: 0rem;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
	max-width: 31.25rem;
	padding-bottom: 1.25rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	padding-top: 3.125rem;
	position: relative;
	width: 100%;
}

.p-flow-step-item__left {
	flex-direction: column;
	left: 0;
	position: absolute;
	top: 0;
	translate: 0 -50%;
	width: 100%;
}

.p-flow-step-item__right {
	flex-direction: column;
	gap: 0;
	height: 100%;
	justify-content: space-between;
}

.p-flow-step-item__num-box {
	flex-direction: column;
}

.p-flow-step-item__step {
	font-size: 0.625rem;
	line-height: calc(15 / 10);
}

.p-flow-step-item__num {
	margin-left: 0;
	margin-right: 0;
	width: 3.4375rem;
}

.p-flow-step-item__num::before {
	content: none;
}

.p-flow-step-item__title {
	font-size: 1.0625rem;
	margin-top: 0.625rem;
}

.p-flow-step-item__image {
	max-width: 6.25rem;
}

.p-flow-step-slide .splide__slide:nth-of-type(1) .p-flow-step-item__image,
.p-flow-step-slide .splide__slide:nth-of-type(3) .p-flow-step-item__image {
	max-width: 9.375rem;
}

.p-flow-step-slide .splide__slide:nth-of-type(4) .p-flow-step-item__image {
	margin-top: 0.375rem;
	max-width: 8.125rem;
}

.p-flow-step-item__text {
	color: #dc0000;
	font-size: 0.625rem;
	line-height: calc(20 / 10);
	margin-top: 0.375rem;
	text-align: center;
}

.p-flow-step-item__text span {
	color: #dc0000;
	font-size: 0.625rem;
}

.p-flow-step-slide {
	margin-top: 0;
	max-width: 100%;
}

.p-flow-step-slide .splide__track {
	padding-top: 4.6875rem;
}

.p-flow-step-slide__ber {
	margin-top: 0.625rem;
}

.p-flow {
	margin-top: 3.9375rem;
}

.p-flow__title {
	display: block;
	text-align: center;
}

.p-flow__title img {
	margin-left: auto;
	margin-right: auto;
	max-width: 11.875rem;
}

.p-flow__title span {
	font-size: 2.25rem;
	line-height: calc(64 / 36);
	padding-left: 0;
}

.p-flow__contents {
	flex-direction: column;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0.9375rem;
	max-width: 31.25rem;
}

.p-flow-content {
	aspect-ratio: 1180/1000;
	padding-top: 1.5625rem;
}

.p-flow-content:nth-of-type(1) {
	padding-top: 0.625rem;
}

.p-flow-content__num {
	max-width: 1.5625rem;
}

.p-flow-content__title {
	font-size: 1.25rem;
	margin-top: 0.3125rem;
}

.p-flow-content__text {
	font-size: 0.75rem;
	line-height: calc(24 / 12);
	margin-top: 0.625rem;
}

.p-flow-content:nth-of-type(1) .p-flow-content__bg {
	bottom: 8%;
}

.p-flow-content:nth-of-type(1) .p-flow-content__bg img {
	translate: 0 10%;
}

.p-flow-content:nth-of-type(1) .p-flow-content__icon {
	bottom: 0.9375rem;
	max-width: 25%;
}

.p-flow-content:nth-of-type(2) .p-flow-content__icon {
	max-width: 36.111%;
	translate: -38% 0;
}

.p-flow-content:nth-of-type(2)::before {
	border-bottom: 0;
	border-left: 0.375rem solid transparent;
	border-right: 0.375rem solid transparent;
	border-style: solid;
	border-top: 0.75rem solid #f2e7e2;
	content: "";
	height: 0.75rem;
	left: 50%;
	position: absolute;
	top: 0;
	translate: -50% 0;
	width: 0.75rem;
}

.p-flow-content:nth-of-type(3) .p-flow-content__icon {
	bottom: 8%;
	max-width: 33.333%;
}

.p-flow-content:nth-of-type(3)::before {
	border-bottom: 0;
	border-left: 0.375rem solid transparent;
	border-right: 0.375rem solid transparent;
	border-style: solid;
	border-top: 0.75rem solid #c5866d;
	content: "";
	height: 0.75rem;
	left: 50%;
	position: absolute;
	top: 0;
	translate: -50% 0;
	width: 0.75rem;
}

.p-fv {
	background-image: url(../images/fv-bg.png);
	padding-bottom: 3.625rem;
	padding-top: 2rem;
}

.p-fv::after {
	background: linear-gradient(270deg, #C41419 0%, #C3181C 26%, #C02728 57%, #BC3F3B 90%, #BB4842 100%);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.p-fv__inner {
	max-width: 37.5rem;
	padding-left: 1.625rem;
	padding-right: 1.625rem;
}

.p-fv__text {
	font-size: 1.4375rem;
	line-height: calc(41 / 23);
}

.p-fv__image {
	aspect-ratio: initial;
	margin: 1.875rem calc(50% - 50vw) 0;
	position: static;
	position: initial;
	width: 100vw;
}

.p-fv__image img {
	width: 95%;
}

.p-fv__buttons {
	margin-top: 2.25rem;
}

.p-fv__button {
	margin-left: auto;
	margin-right: auto;
	max-width: 15rem;
}

.p-fv__button + .p-fv__button {
	margin-top: 1.875rem;
}

.p-parallax {
	margin-top: -4.375rem;
	padding-bottom: 5.4375rem;
}

.p-parallax__image {
	left: 0;
	top: 0;
}

.p-post-slider-wrap-inner {
	padding-left: 0.8125rem;
	padding-right: 0;
}

.p-post-slider {
	padding-bottom: 1.875rem;
}

.p-post-slider__slide {
	border-radius: 1.125rem;
}

.p-post-slider__slide img {
	border-radius: 1.125rem;
}

.p-post-slider__bottom {
	border-bottom-left-radius: 1.125rem;
	border-bottom-right-radius: 1.125rem;
	gap: 0.9375rem;
	max-height: 3.125rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.p-post-slider__logo {
	max-width: 4.0625rem;
}

.p-post-slider__logo img {
	max-height: 2.5rem;
}

.p-post-slider__title {
	-webkit-line-clamp: 1;
	font-size: 0.875rem;
}

.p-post-slider__ber {
	padding-top: 1rem;
}

.p-post-slider__arrow {
	opacity: 0;
	visibility: hidden;
}

.p-post-slider__pagination .splide__pagination__page {
	height: 0.5rem;
	margin: 0;
	width: 0.5rem;
}

.p-post-slider__pagination li {
	margin-left: 0.125rem;
	margin-right: 0.125rem;
}

.p-resources-archive__text {
	margin-top: 3.25rem;
}

.p-resources-archive__contents {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 3.625rem;
	max-width: 31.25rem;
	width: 100%;
}

.p-resources-archive-content {
	border-radius: 1.125rem;
	border-top-left-radius: 0;
	filter: drop-shadow(8px 8px 23px rgba(0, 0, 0, 0.2));
	padding: 1.1875rem 1.1875rem 1.25rem;
}

.p-resources-archive-content + .p-resources-archive-content {
	margin-top: 3.75rem;
}

.p-resources-archive-content__title {
	border-top-left-radius: 1.125rem;
	border-top-right-radius: 1.125rem;
	font-size: 0.9375rem;
	line-height: calc(19 / 15);
	padding-left: 1.1875rem;
	padding-right: 1rem;
	padding-top: 0.75rem;
}

.p-resources-archive-content__image {
	aspect-ratio: 320/133;
}

.p-resources-archive-content__body {
	margin-top: 0.9375rem;
}

.p-resources-archive-content__text {
	font-size: 0.625rem;
	line-height: calc(13 / 10);
}

.p-resources-archive-content__arrow {
	width: 1.25rem;
}

.p-resources-single {
	padding-bottom: 2.5rem;
}

.p-resources-single-head {
	padding: 2.5rem 1.25rem 1.875rem;
}

.p-resources-single-head__title {
	font-size: 1.75rem;
	font-weight: 600;
}

.p-resources-single-head__text {
	font-size: 1rem;
}

.p-resources-single__contents {
	display: block;
	padding: 2.5rem 1.25rem;
}

.p-resources-single__sidebar {
	margin-left: auto;
	margin-right: auto;
	max-width: 31.25rem;
	position: relative;
	top: 0;
	width: 100%;
}

.p-resources-single-info__title {
	font-size: 1.125rem;
}

.p-resources-single-info__link {
	font-size: 0.9375rem;
	padding: 0.875rem;
}

.p-resources-single-info__download {
	width: 1.125rem;
}

.p-resources-single-content {
	margin-top: 2.5rem;
}

.p-resources-single-content-top__title {
	font-size: 1.375rem;
}

.p-resources-single-content-top__text {
	font-size: 0.9375rem;
}

.p-resources-single-content-bottom__title {
	font-size: 1.5625rem;
	font-weight: 600;
}

.p-resources-single-content-bottom__text {
	font-size: 0.875rem;
}

.p-resources-single-content-bottom__link {
	font-size: 0.9375rem;
	padding: 0.9375rem 1.25rem;
}

.p-resources-single-content-bottom__download {
	width: 1.25rem;
}

.p-resources-single-content-bottom__arrow {
	width: 1.25rem;
}

.p-resources-single__arrows {
	grid-area: 0.625rem;
	grid-template-columns: repeat(1, minmax(0, 20rem));
	margin-top: 1.875rem;
}

.p-resources-single-arrow__icon {
	width: 0.75rem;
}

.p-resources-single-arrow__label {
	font-size: 0.625rem;
}

.p-resources-single-arrow__title {
	font-size: 0.625rem;
}

.p-resources-single-content__main {
	padding-top: 2.5rem;
}

.p-resources-single-content__main p,
.p-resources-single-content__main ul li {
	font-size: 0.9375rem;
}

.p-resources-single-content__main h2 {
	font-size: 1.25rem;
}

.p-resources-single-content__main h3 {
	font-size: 1.125rem;
}

.p-resources-single-content__main p,
.p-resources-single-content__main figure,
.p-resources-single-content__main ul {
	margin-top: 1.25rem;
}

.p-resources-single-content__main h1,
.p-resources-single-content__main h2,
.p-resources-single-content__main h3,
.p-resources-single-content__main h4,
.p-resources-single-content__main h5 {
	margin-top: 1.25rem;
}

.ez-toc-counter {
	margin-top: 1.25rem;
}

.ez-toc-page-1,
.ez-toc-link {
	padding-bottom: 0.1875rem;
}

.p-slider {
	padding-bottom: 2.1875rem;
	padding-top: 2.1875rem;
}

.p-slide img {
	height: 2.5rem;
}

.p-strengths {
	border-top-left-radius: 2.1875rem;
	border-top-right-radius: 2.1875rem;
	padding-top: 2.1875rem;
}

.p-strengths__title img {
	max-width: 10.625rem;
}

.p-strengths__title-sub {
	font-size: 1.25rem;
	translate: 0 2px;
}

.p-strengths__title-main {
	font-size: 2.25rem;
	translate: 0 -4px;
}

.p-strengths__contents {
	flex-direction: column;
	gap: 2.375rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: 3.5rem;
	max-width: 31.25rem;
}

.p-strengths-content__wrap {
	padding-bottom: 1rem;
	padding-top: 0;
}

.p-strengths-content__num {
	border-radius: 50%;
	padding: 0.9375rem 1.5625rem 0.5rem 1.5625rem;
}

.p-strengths-content__title {
	background-color: #fff;
	font-size: 1.0625rem;
	letter-spacing: 0.05em;
	line-height: calc(24 / 17);
	padding-bottom: 0.625rem;
}

.p-strengths-content__title span {
	-moz-text-align-last: left;
	margin-left: auto;
	margin-left: 24%;
	margin-right: auto;
	text-align-last: left;
	width: -moz-fit-content;
	width: fit-content;
}

.p-strengths-content__image {
	margin-top: 1.25rem;
	max-width: 8.125rem;
}

.p-strengths-content__arrow {
	margin-right: 1.125rem;
	margin-top: -0.375rem;
	position: relative;
}

.p-strengths-content__arrow::before {
	color: #dc0000;
	content: "詳しく";
	font-size: 0.625rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	height: 100%;
	left: 50%;
	position: absolute;
	text-align: center;
	top: -1rem;
	translate: -50% 0;
	width: 3.75rem;
}

.p-strengths-content__textbox {
	margin-top: 0;
	max-width: 43.75rem;
	padding: 1.25rem;
}

.p-strengths__content:nth-of-type(2) .p-strengths-content__textbox {
	max-width: 43.75rem;
}

.p-strengths-content__text {
	font-size: 0.875rem;
}

.p-strengths-content__note {
	margin-top: 1.25rem;
}

.p-strengths-content__note span {
	-moz-text-align-last: left;
	font-size: 0.75rem;
	text-align-last: left;
}

.p-to-top {
	margin-top: 4.5rem;
}

.p-to-top__link {
	font-size: 0.75rem;
}

.p-to-top__link img {
	margin-top: 0.3125rem;
	max-width: 2.5rem;
}

.p-top-contact {
	border-top-left-radius: 1.625rem;
	border-top-right-radius: 1.625rem;
	padding-bottom: 6.25rem;
	padding-top: 2.5rem;
}

.p-top-contact__title {
	font-size: 2.0625rem;
	line-height: calc(64 / 33);
}

.p-top-contact__contents {
	gap: 1.5625rem;
	grid-template-columns: 1fr;
	grid-template-rows: auto;
	margin-top: 1.875rem;
	max-width: 31.25rem;
	width: 100%;
}

.p-top-contact-content:nth-of-type(1) {
	grid-column: auto;
	order: 1;
	padding-bottom: 1.875rem;
	padding-top: 2rem;
}

.p-top-contact-content:nth-of-type(2) {
	grid-row-start: auto;
	order: 3;
	padding-bottom: 2.5rem;
	padding-top: 1.875rem;
}

.p-top-contact-content:nth-of-type(3) {
	grid-row-start: auto;
	order: 2;
	padding-bottom: 1.875rem;
	padding-top: 1.875rem;
}

.p-top-contact-content {
	border-radius: 1.25rem;
}

.p-top-contact-content + .p-top-contact-content {
	border-radius: 1.25rem;
}

.p-top-contact-content__title {
	font-size: 1.3125rem;
}

.p-top-contact-content__text {
	font-size: 0.75rem;
	margin-left: auto;
	margin-right: auto;
	width: 94%;
}

.p-top-contact-content__text2 {
	line-height: calc(39 / 20);
	margin-top: 1.5625rem;
}

.p-top-contact-content__text3 {
	line-height: calc(38 / 20);
}

.p-top-contact-content__text-space {
	margin-top: 1.6875rem;
}

.p-top-contact-content__text-space2 {
	margin-top: 1.875rem;
}

.p-top-contact-content__buttons {
	display: block;
	margin-top: 0.75rem;
}

.p-top-contact-content__button-box {
	display: block;
}

.p-top-contact-content__button {
	box-shadow: 0 8px 0 #000;
	font-size: 0.8125rem;
	letter-spacing: 0.05em;
	line-height: calc(78 / 50);
	margin-left: auto;
	margin-right: auto;
	max-width: 13.125rem;
	padding: 0.625rem 1.25rem 0.75rem 1.0625rem;
}

.p-top-contact-content__button:hover {
	translate: 0 4px !important;
}

.p-top-contact-content__button:hover {
	box-shadow: 0 4px 0 #000;
}

.p-top-contact-content__button-fukidasi {
	height: 1.3125rem;
	width: 1.75rem;
}

.p-top-contact-content__button-book {
	height: 1.5625rem;
	width: 2.1875rem;
}

.p-top-contact-content__button-tel {
	height: 1.25rem;
	width: 1.875rem;
}

.p-top-contact-content__button-demo {
	height: 1.0625rem;
	width: 1.5625rem;
}

.p-top-contact-content__button-download {
	height: 1.3125rem;
	width: 1.5625rem;
}

.p-top-contact-content__button-text {
	padding-left: 0.3125rem;
}

.p-top-contact-content__button-arrow {
	height: 1rem;
	width: 0.375rem;
}

.p-work-page {
	margin-top: 3.625rem;
	padding-bottom: 9.375rem;
}

.p-work-page__tabs {
	gap: 0.625rem;
	grid-template-columns: repeat(2, 1fr);
}

.p-work-page__tab {
	font-size: 0.8125rem;
	line-height: calc(13 / 13);
	padding-bottom: 0.75rem;
	padding-top: 0.75rem;
}

.p-work-page__contents {
	gap: 1rem;
	grid-template-columns: repeat(auto-fill, minmax(21.875rem, 1fr));
	justify-items: center;
	margin-top: 3.125rem;
}

.p-work-page-content {
	border-radius: 1.375rem;
	max-width: 31.25rem;
	padding: 1.25rem 1.875rem;
}

.p-work-page-content__image {
	max-width: 9.375rem;
}

.p-work-page-content__title {
	font-size: 1.0625rem;
	margin-top: 0.8125rem;
}

.p-work-page-content__text {
	font-size: 0.6875rem;
	line-height: calc(17 / 10);
	margin-left: auto;
	margin-right: auto;
	margin-top: 1.25rem;
	max-width: 18.75rem;
	text-align: center;
	width: 100%;
}

.p-work-page__to-top {
	margin-top: 7.5rem;
}

.p-work {
	margin-top: 3.5rem;
}

.p-work__title img {
	max-width: 10.625rem;
}

.p-work__title-sub {
	font-size: 1.375rem;
}

.p-work__title-main {
	font-size: 2.25rem;
	letter-spacing: 0em;
	line-height: calc(48 / 36);
}

.p-work__contents {
	display: none;
}

.p-work-content {
	border-radius: 8px;
	height: 100%;
	padding: 0.8125rem 1.25rem 0.9375rem;
}

.p-work-content__image {
	max-width: 6.875rem;
}

.p-work-content__title {
	font-size: 1rem;
	margin-top: 0.75rem;
}

.p-work-content__text {
	font-size: 0.5625rem;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	line-height: calc(14 / 9);
	margin-top: 0.1875rem;
	text-align: justify;
}

.p-work__slide {
	display: block;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-top: 1.75rem;
	overflow: hidden;
	padding-left: 15px;
	width: 100vw;
}

.p-work__slide-pagination .splide__pagination__page {
	height: 0.5rem;
	margin: 0;
	width: 0.5rem;
}

.c-button {
	box-shadow: 0 8px 0 #000;
	font-size: 1.0625rem;
	letter-spacing: 0.05em;
	line-height: calc(78 / 50);
	padding: 0.8125rem 1.25rem 0.9375rem 1.625rem;
}

.c-button:hover {
	box-shadow: 0 4px 0 #000;
	translate: 0 4px;
}

.c-button-fukidasi {
	height: 1.3125rem;
	width: 1.75rem;
}

.c-button-book {
	height: 1.3125rem;
	width: 1.6875rem;
}

.c-button-tel {
	height: 1.5625rem;
	width: 2.1875rem;
}

.c-button-demo {
	height: 1.625rem;
	width: 2.125rem;
}

.c-button-download {
	height: 1.625rem;
	width: 1.875rem;
}

.c-button-text {
	padding-left: 0.3125rem;
}

.c-button-arrow {
	height: 1.25rem;
	width: 0.625rem;
}

.p-contact-form__space {
	margin-top: 0;
}

.c-contact {
	margin-top: 1.25rem;
}

.c-contact__top,
.c-contact__top label {
	font-size: 0.875rem;
}

.c-contact__top span {
	font-size: 0.625rem;
}

.c-contact__bottom {
	margin-top: 0.5rem;
}

.c-contact__text,
.c-contact__textarea,
.c-contact__tel,
.c-contact__mail,
.c-contact__select,
.c-contact__checkbox input + span {
	font-size: 0.875rem;
}

.c-contact__text,
.c-contact__textarea,
.c-contact__tel,
.c-contact__mail,
.c-contact__select {
	padding: 0.8125rem 0.875rem;
}

.c-contact__textarea {
	min-height: 6.25rem;
}

.c-contact__consentBox {
	margin-top: -1.25rem;
}

.c-contact__consentCheckbox + span::before {
	height: 0.9375rem;
	width: 0.9375rem;
}

.c-contact__consentCheckbox + span::after {
	width: 0.9375rem;
}

.c-contact__consent {
	font-size: 0.875rem;
}

.c-contact__consent span {
	font-size: 0.75rem;
}

.c-contact__button {
	font-size: 0.9375rem;
	margin-top: 0.9375rem;
	padding: 0.9375rem 2.5rem;
}

.c-link {
	font-size: 0.9375rem;
	gap: 0.5rem;
	line-height: calc(7 / 15);
}

.c-link__arrow {
	max-width: 1.5625rem;
}

.c-link:hover .c-link__arrow {
	translate: 5px 0;
}

.c-single-link {
	font-size: 0.9375rem;
	gap: 0.5rem;
	line-height: calc(7 / 15);
	padding: 1.25rem 1.875rem;
}

.c-single-link__arrow {
	width: 0.625rem;
}

.c-single-link:hover .c-single-link__arrow {
	translate: 5px 0;
}

.c-to-top {
	display: block;
}

.c-to-top__link {
	font-size: 0.75rem;
}

.c-to-top__link img {
	margin-top: 0.3125rem;
	max-width: 2.5rem;
}

.u-pc {
	display: none;
}

.u-sp {
	display: block;
}

}

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

.p-strengths-content__num img {
	width: 1.5625rem;
}

}

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

.p-strengths-content__num {
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
	padding: 0.9375rem 1.875rem 0.5rem 1.5625rem;
}

}

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

.p-flow-step__text span {
	font-size: 1.125rem;
}

}

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

.p-strengths__title-main {
	font-size: 2.1875rem;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}


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