@charset "UTF-8";
/* A Modern CSS Reset */
*, *::before, *::after {
	box-sizing: border-box;
}

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

ul[role=list], ol[role=list] {
	list-style: none;
}

html:focus-within {
	scroll-behavior: smooth;
}

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

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

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

input, button, textarea, select {
	font: inherit;
}
:root {
	--spacing: 0.03em;
	--scrollbar: 0;
}

* {
	letter-spacing: var(--spacing);
}

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

.preload * {
	transition: none !important;
}

html {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
	font-size: 62.5%;
}
html.is-nav-active {
	z-index: 0;
	position: fixed;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

body {
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	min-width: 1340px;
	color: #181818;
	font-size: 1rem;
	line-height: 1;
	font-family: "Noto Sans JP", sans-serif;
}

input,
textarea,
button {
	font-size: inherit;
	line-height: inherit;
	font-family: inherit;
}

button {
	color: inherit;
}

a {
	color: #0442bf;
	text-decoration: none;
}
body:not(.is-touch-device) a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}

img {
	max-width: 100%;
	height: auto;
}

strong,
em,
b {
	font-weight: bold;
}

em {
	font-style: normal;
}

button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 0;
	border: none;
	background-color: transparent;
	cursor: pointer;
}

b {
	font-weight: bold;
}

ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
}

table {
	border-spacing: 0;
}

.l-page {
	padding-top: 90px;
}

.l-header__fixed {
	z-index: 100;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	min-width: 100%;
	padding-right: var(--scrollbar);
	background: #ffffff;
}

.l-footer {
	padding: 50px 0 185px;
	text-align: center;
}

.l-main {
	overflow: hidden;
}

.c-inner-wide, .c-inner {
	margin-right: auto;
	margin-left: auto;
	padding-right: 30px;
	padding-left: 30px;
}

.c-inner {
	max-width: 1340px;
}

.c-inner-wide {
	max-width: none;
}

.c-list-dot__item {
	position: relative;
	padding-left: 1em;
}
.c-list-dot__item::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "・";
}

.c-list-order-notes {
	counter-reset: order;
}
.c-list-order-notes__item {
	position: relative;
	padding-left: 1.5em;
}
.c-list-order-notes__item::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "*" counter(order);
	counter-increment: order;
}

.c-list-note__item {
	position: relative;
	padding-left: 0.5em;
}
.c-list-note__item::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "*";
}

.c-list-decimal__item {
	margin-left: 1em;
	padding-left: 0.5em;
	list-style-type: decimal;
}

.c-list-order {
	counter-reset: order;
}
.c-list-order__item {
	position: relative;
	padding-left: 1.5em;
}
.c-list-order__item::before {
	position: absolute;
	top: 0;
	left: 0;
	content: counter(order) ".";
	counter-increment: order;
}

.c-list-roman__item {
	position: relative;
	padding-left: 3em;
}
.c-list-roman__mark {
	position: absolute;
	top: 0;
	left: 0;
	width: 3em;
	padding-right: 0.5em;
	text-align: right;
}

.c-list-data-attr__item {
	position: relative;
}
.c-list-data-attr__item::before {
	position: absolute;
	top: 0;
	left: 0;
	content: attr(data-num);
}
.c-list-data-attr--asterisk-num .c-list-data-attr__item {
	padding-left: 1.5em;
}
.c-list-data-attr--asterisk-num .c-list-data-attr__item::before {
	width: 1.5em;
	height: 1em;
}

.c-list-mark__item {
	position: relative;
	padding-left: 1.5em;
}
.c-list-mark__mark {
	position: absolute;
	top: 0;
	left: 0;
}

.c-desc-list__term:not(:first-child) {
	margin-top: 1em;
}

.c-desc-list-alpha {
	counter-reset: alpha;
}
.c-desc-list-alpha__head {
	position: relative;
	padding-left: 2.5em;
	font-weight: 500;
}
.c-desc-list-alpha__head::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "（" counter(alpha, lower-alpha) "）";
	counter-increment: alpha;
}
.c-desc-list-alpha__desc {
	margin-left: 1em;
}
.c-desc-list-alpha__desc + .c-desc-list-alpha__head {
	margin-top: 1.667em;
}

.c-data-list {
	display: table;
}
.c-data-list__item {
	display: table-row;
}
.c-data-list__item-head {
	display: table-cell;
	position: relative;
	padding-right: 1em;
	color: #d70039;
	font-weight: 500;
	white-space: nowrap;
}
.c-data-list__item-head::after {
	position: absolute;
	top: 0;
	right: 0;
	content: "：";
	color: #181818;
}
.c-data-list__item-body {
	display: table-cell;
	width: auto;
}

.u-alternate {
	clip: rect(1px, 1px, 1px, 1px);
	display: inline;
	z-index: -9999;
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	background: transparent;
	color: transparent;
	font-size: 0;
}

.u-hidden {
	display: none;
}

.p-header {
	display: grid;
	position: relative;
	grid-template-columns: 238px 240px;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 90px;
	padding-left: 50px;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
}
.p-header__ci {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.p-header__contact {
	height: 100%;
}
.p-header__contact-btn {
	display: grid;
	place-content: center;
	height: 100%;
	background: #d70039;
	color: #ffffff;
}
.p-header__contact-btn:focus {
	outline: 3px dotted #ffffff;
	outline-offset: -2px;
	text-decoration: underline;
	text-decoration-color: currentColor;
}
.p-header__contact-btn-text {
	display: block;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
	padding-right: 34px;
	font-weight: 700;
	font-size: clamp(1.4rem, 1.209rem + 0.509vw, 1.6rem);
	line-height: 1.556;
}
.p-header__contact-btn-text::after {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	width: 18px;
	height: 18px;
	transform: translateY(-50%);
	background: url(../img/icon_blank_white.svg) no-repeat center center/contain;
	content: "";
}

.p-footer {
	line-height: 1.571;
	text-align: center;
}

.p-footer-notes {
	width: fit-content;
	margin-bottom: clamp(2rem, 1.059rem + 2.941vw, 5rem);
	font-size: 1.4rem;
	line-height: 1.5;
	text-align: left;
}

.p-footer-notes .c-list-note__item {
	padding-left: 1em;
	line-height: 1.5;
}
.p-footer-notes .c-list-note__item::before {
	content: "※";
}

.p-copyright {
	color: #000000;
	font-size: clamp(1.2rem, 1.01rem + 0.508vw, 1.4rem);
}

.p-hero {
	container: hero-container/inline-size;
	position: relative;
	margin-bottom: 80px;
	padding-top: 60px;
}
.p-hero::before {
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 88.75vw;
	height: 415px;
	background: url(../img/mv_pc.webp) no-repeat right bottom;
	content: "";
}
.p-hero__header {
	display: grid;
	position: relative;
	left: 6.3125vw;
	grid-template-columns: 265px 1fr;
	min-height: 655px;
	padding-right: var(--scrollbar);
}
.p-hero__catch {
	display: grid;
	position: relative;
	place-content: center;
	width: 265px;
	height: 265px;
	padding: 0 32px;
	border-radius: 50%;
	background: linear-gradient(180deg, #c70035 0%, #f50041 127.45%);
}
.p-hero__catch-text {
	color: #ffffff;
	font-weight: 700;
	font-size: 2.8rem;
	line-height: 1.393;
	text-align: center;
}
.p-hero__catch-text .is-kerning {
	letter-spacing: -0.57em;
}
.p-hero__title {
	display: flex;
	position: relative;
	row-gap: 40px;
	flex-direction: column;
	padding-top: 27px;
	font-weight: 700;
}
.p-hero__title-shoulder {
	padding-left: 1em;
	font-size: 4.7rem;
}
.p-hero__title-text {
	font-size: 9.4rem;
}
.p-hero__title-text .is-kerning {
	letter-spacing: -0.17em;
}
.p-hero__title-text strong {
	-webkit-background-clip: text;
	text-fill-color: transparent;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(180deg, #c70035 0%, #f50041 127.45%);
	background-clip: text;
}
.p-hero__title-text strong .is-kerning {
	letter-spacing: -0.33em;
}

.p-article {
	background: url(../img/text_web_accessibility.svg) no-repeat right 24px top;
}

.p-strong {
	color: #d70039;
}

.p-cv {
	min-height: 370px;
	border: 1px solid #333333;
}
.p-cv__btn {
	display: grid;
	place-content: center;
	width: 720px;
	height: 140px;
	margin-inline: auto;
	border-radius: 10px;
	background: #d70039;
	color: #ffffff;
}
.p-cv__btn:focus {
	outline: 3px dotted #000000;
	text-decoration: underline;
	text-decoration-color: currentColor;
}
.p-cv__btn-text {
	display: block;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
	padding-right: 98px;
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.533;
	text-indent: -0.5em;
}
.p-cv__btn-text::after {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	width: 74px;
	height: 74px;
	transform: translateY(-50%);
	border-radius: 50%;
	background: url(../img/icon_blank_red.svg) no-repeat center center #ffffff;
	content: "";
}

.p-lead {
	position: relative;
	top: 0;
	left: 0;
	width: 1330px;
	margin-bottom: 103px;
}
.p-lead::before, .p-lead::after {
	display: block;
	position: absolute;
	content: "";
}
.p-lead::before {
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #f9f9f9;
}
.p-lead::after {
	top: -27px;
	right: -163px;
	width: 320px;
	height: 320px;
	background: url(../img/lead_img01.webp) no-repeat center center/contain;
}
.p-lead__inner {
	position: relative;
	padding: 120px 0;
}
.p-lead__inner::before, .p-lead__inner::after {
	display: block;
	position: absolute;
	content: "";
}
.p-lead__inner::before {
	z-index: 1;
	top: 213px;
	right: 77px;
	width: 160px;
	height: 160px;
	background: url(../img/lead_img02.webp) no-repeat center center/contain;
}
.p-lead__inner::after {
	z-index: 1;
	top: 425px;
	right: -117px;
	width: 160px;
	height: 160px;
	background: url(../img/lead_img03.webp) no-repeat center center/contain;
}
.p-lead__content {
	--spacing: 0.02em;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
	font-size: 2.2rem;
	line-height: 2.273;
}
.p-lead__marker {
	background: #ffdd31;
	font-weight: 700;
}

.p-trial {
	margin-bottom: 120px;
}
.p-trial__inner {
	max-width: 1280px;
	margin-inline: auto;
}
.p-trial__content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	justify-content: space-between;
	max-width: 1090px;
	margin: 0 auto 64px;
}
.p-trial__header {
	--spacing: 0.02em;
	font-size: 5.4rem;
}
.p-trial__title {
	font-weight: 700;
	font-size: 5.4rem;
	line-height: 1.296;
}
.p-trial__title .is-indent {
	padding-left: 0.5em;
}
.p-trial__title .is-kerning {
	--spacing: -0.38em;
}
.p-trial__catch {
	display: grid;
	grid-template-columns: 1fr 146px;
	-moz-column-gap: 6px;
	column-gap: 6px;
	max-width: -moz-fit-content;
	max-width: fit-content;
	margin-bottom: 20px;
	padding-left: 0.5em;
}
.p-trial__catch-limited {
	color: #d70039;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.292;
}
.p-trial__catch-limited .is-now {
	display: block;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
	padding: 0 1em;
	font-size: 2rem;
}
.p-trial__catch-limited .is-now::before, .p-trial__catch-limited .is-now::after {
	display: block;
	position: absolute;
	bottom: 0.1em;
	width: 2.71214px;
	height: 1em;
	background: #d70039;
	content: "";
}
.p-trial__catch-limited .is-now::before {
	left: 0.25em;
	transform: rotate(-30deg);
}
.p-trial__catch-limited .is-now::after {
	right: 0.25em;
	transform: rotate(30deg);
}
.p-trial__catch-free {
	display: grid;
	place-content: center;
	min-height: 60px;
	background: linear-gradient(180deg, #c70035 0%, #f50041 127.45%);
	color: #ffffff;
	font-weight: 700;
	font-size: 5.1rem;
}
.p-trial__detail {
	--spacing: 0;
	font-size: 2rem;
	line-height: 1.8;
}
.p-trial__list {
	margin: 30px 0 50px;
	font-size: 1.4rem;
	line-height: 1.786;
}
.p-trial__after-title {
	--spacing: 0.02em;
	margin-bottom: 30px;
	font-weight: 700;
	font-size: 2.8rem;
	line-height: 1.571;
}
.p-trial__cv {
	position: relative;
	padding: 68px 0 81px;
}
.p-trial__cv::before {
	display: block;
	z-index: -1;
	position: absolute;
	top: -257px;
	left: -110px;
	width: 270px;
	height: 367px;
	background: url(../img/bg_square02.svg) no-repeat center center/contain;
	content: "";
}
.p-trial__cv-header {
	display: grid;
	grid-template-columns: 1fr auto;
	-moz-column-gap: 9px;
	column-gap: 9px;
	align-items: baseline;
	max-width: -moz-fit-content;
	max-width: fit-content;
	margin: 0 auto 20px;
	color: #d70039;
	font-weight: 700;
}
.p-trial__cv-free {
	--spacing: 0;
	font-size: 5.5rem;
}
.p-trial__cv-limited {
	--spacing: 0.02em;
	display: flex;
	-moz-column-gap: 8px;
	column-gap: 8px;
	font-size: 2.8rem;
	line-height: 1.286;
}
.p-trial__cv-limited .is-now {
	display: block;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
	padding: 0 0.75em;
}
.p-trial__cv-limited .is-now::before, .p-trial__cv-limited .is-now::after {
	display: block;
	position: absolute;
	bottom: 0.1em;
	width: 2.71214px;
	height: 1em;
	background: #d70039;
	content: "";
}
.p-trial__cv-limited .is-now::before {
	left: 0.25em;
	transform: rotate(-30deg);
}
.p-trial__cv-limited .is-now::after {
	right: 0.25em;
	transform: rotate(30deg);
}

.p-service {
	position: relative;
	padding: 320px 0 130px;
}
.p-service::before, .p-service::after {
	display: block;
	position: absolute;
	content: "";
}
.p-service::before {
	top: 0;
	left: 0;
	width: 100%;
	height: 400px;
	background: url(../img/bg_linegraph.webp) no-repeat center top/cover;
}
.p-service::after {
	z-index: -1;
	right: 48px;
	bottom: 42px;
	width: 186px;
	height: 176px;
	background: url(../img/bg_square03.svg) no-repeat center top/cover;
}
.p-service__header {
	overflow: hidden;
}
.p-service__title {
	--spacing: 0.02em;
	position: relative;
	width: 240px;
	height: 240px;
	margin: 0 auto -64px;
	padding-top: 72px;
	border-radius: 50%;
	background: #ffffff;
	color: #d70039;
	font-weight: 700;
	font-size: 3.5rem;
	text-align: center;
}
.p-service__content {
	max-width: 1060px;
	margin: 0 auto 75px;
}
.p-service__lead {
	--spacing: 0.02em;
	margin-bottom: 50px;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.667;
	text-align: center;
}
.p-service__flow-wrap {
	display: contents;
}
.p-service__flow {
	margin-bottom: 50px;
	overflow-y: hidden !important;
}
.p-service__flow-fig img {
	width: 1060px;
}
.p-service__flow-caption {
	clip: rect(1px, 1px, 1px, 1px);
	display: inline;
	z-index: -9999;
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	font-size: 0;
}
.p-service__text {
	--spacing: 0;
	font-size: 2rem;
	line-height: 1.8;
	text-align: center;
}
.p-service__cv {
	padding-top: 75px;
}
.p-service__cv-header {
	--spacing: 0;
	margin-bottom: 35px;
	font-weight: 700;
	font-size: 2.8rem;
	line-height: 1.786;
	text-align: center;
}
.p-service .p-cv__btn {
	position: relative;
	overflow: hidden;
	background: url(../img/bg_btn_pc.png) no-repeat center center/cover;
}
.p-service .p-cv__btn::before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(215, 0, 57, 0.5);
	content: "";
	mix-blend-mode: multiply;
	mix-blend-mode: plus-darker;
}

.scroll-hint-icon-wrap .scroll-hint-icon {
	width: 100px;
	height: 100px;
	padding-top: 14px;
	border-radius: 6px;
	background: rgba(0, 0, 0, 0.7);
}
.scroll-hint-icon-wrap .scroll-hint-icon::before {
	width: 39px;
	height: 39.86px;
	background-image: url(../img/icon_scroll-hint.svg);
}
.scroll-hint-icon-wrap .scroll-hint-icon::after {
	display: none;
	transition: none;
}
.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
	opacity: 1;
}
.scroll-hint-icon-wrap.is-active .scroll-hint-icon::before {
	animation: none;
}

.scroll-hint-text {
	--spacing: 0.02em;
	margin-top: 10px;
	font-size: 1.1rem;
	line-height: 1.273;
}

.p-works {
	position: relative;
	margin-bottom: 120px;
	padding: 80px 0;
}
.p-works::before {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 1300px;
	height: 100%;
	background: #f9f9f9;
	content: "";
}
.p-works__inner {
	position: relative;
}
.p-works__header {
	margin-bottom: 40px;
}
.p-works__title {
	--spacing: 0;
	margin-bottom: 40px;
	color: #d70039;
	font-weight: 700;
	font-size: 4.6rem;
	line-height: 1.196;
	text-align: center;
}
.p-works__lead {
	--spacing: 0;
	font-size: 1.8rem;
	line-height: 1.5;
	text-align: center;
}
.p-works__content {
	margin-bottom: 40px;
}
.p-works__btn {
	display: grid;
	place-content: center;
	width: 360px;
	height: 72px;
	margin-inline: auto;
	border: 1px solid #767676;
	border-radius: 10px;
	color: unset;
}
.p-works__btn:focus {
	outline: 3px dotted currentColor;
	text-decoration: underline;
	text-decoration-color: currentColor;
}
.p-works__btn-text {
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.556;
	text-align: center;
}
.p-works__slider {
	display: contents;
}

.splide.is-initialized:not(.is-active) .p-works-list {
	display: grid;
	grid-template-columns: repeat(3, 400px);
	justify-content: space-between;
}
.p-works-list__link {
	display: block;
	color: unset;
}
.p-works-list__link:focus {
	outline-offset: -2px;
}
.p-works-list__img {
	margin-bottom: 16px;
}
.p-works-list__client {
	--spacing: 0;
	margin-bottom: 10px;
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 1.182;
}
.p-works-list__url {
	--spacing: 0;
	margin-bottom: 12px;
	color: #0442bf;
	font-size: 1.6rem;
	line-height: 1.188;
	overflow-wrap: break-word;
}
.p-works-list__url::after {
	display: inline-block;
	width: 14px;
	height: 13px;
	margin-left: 8px;
	background: url(../img/icon_blank_blue.svg) no-repeat left top/contain;
	content: "";
}
.p-works-list__detail-title {
	--spacing: 0;
	display: grid;
	place-content: center;
	width: 80px;
	height: 32px;
	margin-bottom: 9px;
	background: #ffdd31;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.2;
}
.p-works-list__detail-desc {
	--spacing: 0;
	font-size: 1.6rem;
	line-height: 1.563;
}

.splide:not(.is-active) .splide__arrows, .splide:not(.is-active) .splide__pagination {
	display: none;
}
.splide__arrows {
	display: flex;
	justify-content: center;
	gap: 8px;
}
.splide__arrow {
	border: none;
	background-color: transparent;
	cursor: pointer;
}
.splide__arrow img {
	width: 44px;
	height: 44px;
}
.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
	display: none;
}
.splide__pagination {
	padding-bottom: 20px;
	gap: 10px;
}
.splide__pagination__page {
	width: 15px;
	height: 15px;
	border: 1px solid #767676;
	border-radius: 50%;
}
.splide__pagination__page.is-active {
	border-color: #d70039;
	background: linear-gradient(180deg, #c70035 0%, #f50041 127.45%);
}

.p-strength {
	min-height: 744px;
	padding: 120px 0;
	background: url(../img/bg_strength.webp) no-repeat center top/cover;
}
.p-strength__bg {
	display: contents;
}
.p-strength__box {
	display: grid;
	place-content: center;
	max-width: 1060px;
	min-height: 504px;
	margin-inline: auto;
	-webkit-backdrop-filter: blur(10.9811px);
	backdrop-filter: blur(10.9811px);
	background: rgba(255, 255, 255, 0.85);
}
.p-strength__header {
	--spacing: 0.02em;
	margin-bottom: 30px;
}
.p-strength__title {
	font-weight: 700;
	font-size: 4rem;
	line-height: 1.5;
	text-align: center;
}
.p-strength__content {
	--spacing: 0;
	font-size: 1.8rem;
	line-height: 1.778;
	text-align: center;
}
.p-strength__content .p-strong {
	font-size: 2.2rem;
}

.p-contact {
	position: relative;
	background: url(../img/bg_contact_pc.png) no-repeat center center/cover;
}
.p-contact__bg {
	display: grid;
	position: relative;
	place-content: center;
	min-height: 555px;
}
.p-contact__bg::before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(215, 0, 57, 0.5);
	content: "";
	mix-blend-mode: multiply;
	mix-blend-mode: plus-darker;
}
.p-contact__main {
	position: relative;
}
.p-contact__title {
	--spacing: 0;
	margin-bottom: 72px;
	color: #ffffff;
	font-weight: 200;
	font-size: clamp(5.4rem, -0.691rem + 16.244vw, 11.8rem);
	line-height: 0.703;
	font-family: "Poppins", sans-serif;
	text-align: center;
	opacity: 0.8;
}
.p-contact__btn {
	display: grid;
	place-content: center;
	width: 720px;
	height: 160px;
	border: 1px solid #ffffff;
	border-radius: 10px;
	color: #ffffff;
}
.p-contact__btn:focus {
	outline: 3px dotted currentColor;
	text-decoration: underline;
	text-decoration-color: currentColor;
}
.p-contact__btn-text {
	display: block;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
	padding-right: 98px;
	font-weight: 700;
	font-size: clamp(1.8rem, 0.848rem + 2.538vw, 2.8rem);
	line-height: 1.536;
	text-indent: -0.5em;
}
.p-contact__btn-text::after {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	width: 74px;
	height: 74px;
	transform: translateY(-50%);
	border-radius: 50%;
	background: url(../img/icon_blank_red.svg) no-repeat center center #ffffff;
	content: "";
}
@media screen and (min-width: 769px) {
	.u-pc-hidden {
		display: none !important;
	}
}
@media screen and (max-width: 1600px) {
	.p-hero::before {
		right: auto;
		left: 180px;
		width: 1420px;
		background-position-x: left;
	}
	.p-hero__header {
		left: 101px;
	}
}
@media screen and (max-width: 768px) {
	body {
		min-width: 360px;
	}
	.l-page {
		padding-top: 56px;
	}
	.l-footer {
		padding-top: clamp(2rem, 0.571rem + 4.464vw, 4rem);
		padding-bottom: clamp(7.6rem, 5.31rem + 6.107vw, 10rem);
	}
	.c-inner-wide, .c-inner {
		padding-right: clamp(2rem, -4.982rem + 21.818vw, 3.2rem);
		padding-left: clamp(2rem, -4.982rem + 21.818vw, 3.2rem);
	}
	.u-sp-hidden {
		display: none !important;
	}
	.p-header {
		grid-template-columns: 116px 144px;
		height: 56px;
		padding-left: 21px;
	}
	.p-header__ci {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}
	.p-header__contact-btn-text {
		padding-right: 21px;
		line-height: 1.571;
	}
	.p-header__contact-btn-text::after {
		width: 12px;
		height: 12px;
	}
	.p-footer {
		line-height: 1.5;
	}
	.p-hero {
		margin-bottom: clamp(6.9rem, 5.85rem + 2.799vw, 8rem);
		padding-top: 5.6vw;
	}
	.p-hero::before {
		bottom: 0;
		left: 6.6666666667vw;
		width: 93.3333333333vw;
		height: 52.5333333333vw;
		background-image: url(../img/mv_sp.webp);
		background-size: contain;
	}
	.p-hero__header {
		left: 2.4vw;
		grid-template-columns: 26.6666666667vw 1fr;
		-moz-column-gap: 9px;
		column-gap: 9px;
		min-height: 76.5333333333vw;
	}
	.p-hero__catch {
		width: clamp(10rem, 0.458rem + 25.445vw, 20rem);
		height: clamp(10rem, 0.458rem + 25.445vw, 20rem);
		padding: 0 clamp(1.2rem, -0.518rem + 4.58vw, 3rem);
	}
	.p-hero__catch-text {
		font-size: clamp(1.1rem, 0.241rem + 2.29vw, 2rem);
	}
	.p-hero__title {
		row-gap: 4vw;
		padding-top: 5.0666666667vw;
	}
	.p-hero__title-shoulder {
		padding-left: 0;
		font-size: clamp(1.7rem, 0.46rem + 3.308vw, 3rem);
	}
	.p-hero__title-text {
		margin-left: -0.5em;
		font-size: clamp(2.7rem, 0.505rem + 5.852vw, 5rem);
	}
	.p-article {
		padding-right: 0;
		background: none;
	}
	.p-cv {
		min-height: 167px;
	}
	.p-cv__btn {
		width: clamp(27rem, 14.595rem + 33.079vw, 40rem);
		height: clamp(7.2rem, 4.528rem + 7.125vw, 10rem);
	}
	.p-cv__btn-text {
		padding-right: 57px;
		font-size: clamp(1.8rem, 1.227rem + 1.527vw, 2.4rem);
		line-height: 1.278;
		text-align: center;
		text-indent: 0;
	}
	.p-cv__btn-text::after {
		width: 44px;
		height: 44px;
		background-size: 10px auto;
	}
	.p-lead {
		width: auto;
	}
	.p-lead::before {
		right: auto;
		left: 0;
		width: 82.6666666667vw;
	}
	.p-lead::after {
		top: -8.4635416667vw;
		right: 0;
		width: clamp(9rem, 6.137rem + 7.634vw, 12rem);
		height: clamp(9rem, 6.137rem + 7.634vw, 12rem);
	}
	.p-lead__inner {
		padding: clamp(7.2rem, 4.528rem + 7.125vw, 10rem) clamp(2rem, -4.982rem + 21.818vw, 3.2rem);
	}
	.p-lead__inner::before {
		z-index: 2;
		top: auto;
		right: 5.2083333333vw;
		bottom: -0.6510416667vw;
		width: clamp(7rem, 4.137rem + 7.634vw, 10rem);
		height: clamp(7rem, 4.137rem + 7.634vw, 10rem);
	}
	.p-lead__inner::after {
		top: auto;
		right: 10.4166666667vw;
		bottom: -8.0729166667vw;
		width: clamp(9rem, 6.137rem + 7.634vw, 12rem);
		height: clamp(9rem, 6.137rem + 7.634vw, 12rem);
	}
	.p-lead__content {
		font-size: clamp(1.6rem, 1.218rem + 1.018vw, 2rem);
		line-height: 2;
	}
	.p-lead__content br {
		display: contents;
	}
	.p-trial {
		margin-bottom: 72px;
	}
	.p-trial__inner {
		padding-right: clamp(2rem, -4.982rem + 21.818vw, 3.2rem);
		padding-left: clamp(2rem, -4.982rem + 21.818vw, 3.2rem);
	}
	.p-trial__content {
		display: block;
		margin-bottom: 40px;
	}
	.p-trial__header {
		margin-bottom: 35px;
		font-size: clamp(3.2rem, 2.437rem + 2.036vw, 4rem);
	}
	.p-trial__title {
		margin-left: -0.5em;
		font-size: clamp(3.2rem, 2.437rem + 2.036vw, 4rem);
	}
	.p-trial__catch {
		grid-template-columns: 1fr auto;
		margin-bottom: 16px;
		padding-left: 0;
	}
	.p-trial__catch-limited {
		--spacing: 0.02em;
		font-size: clamp(1.9rem, 1.614rem + 0.763vw, 2.2rem);
		line-height: 1.313;
	}
	.p-trial__catch-limited .is-now {
		--spacing: 0.02em;
		font-size: clamp(1.6rem, 1.218rem + 1.018vw, 2rem);
	}
	.p-trial__catch-free {
		min-height: 47px;
		padding: 0 9px 3px;
		font-size: clamp(4rem, 3.046rem + 2.545vw, 5rem);
	}
	.p-trial__detail {
		font-size: clamp(1.6rem, 1.218rem + 1.018vw, 2rem);
		line-height: 1.625;
	}
	.p-trial__list {
		margin: 20px 0 35px;
		font-size: clamp(1.3rem, 1.205rem + 0.254vw, 1.4rem);
		line-height: 1.538;
	}
	.p-trial__after-title {
		margin-bottom: 20px;
		font-size: clamp(2.4rem, 2.018rem + 1.018vw, 2.8rem);
		line-height: 1.333;
	}
	.p-trial__cv {
		padding: 28px 0;
	}
	.p-trial__cv::before {
		top: auto;
		bottom: -40px;
		left: -32px;
		width: 85px;
		height: 85px;
		background-image: none;
		background-color: #f9f9f9;
	}
	.p-trial__cv::after {
		display: block;
		z-index: -1;
		position: absolute;
		top: -11px;
		left: -18px;
		width: 28px;
		height: 28px;
		background-color: rgba(223, 223, 223, 0.4);
		content: "";
	}
	.p-trial__cv .p-cv__btn {
		position: relative;
		overflow: hidden;
		background: url(../img/bg_btn_sp.png) no-repeat center center/cover;
	}
	.p-trial__cv .p-cv__btn::before {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(215, 0, 57, 0.5);
		content: "";
		mix-blend-mode: multiply;
		mix-blend-mode: plus-darker;
	}
	.p-trial__cv-header {
		-moz-column-gap: 2px;
		column-gap: 2px;
		margin-bottom: 15px;
	}
	.p-trial__cv-free {
		font-size: clamp(3rem, 1.569rem + 3.817vw, 4.5rem);
	}
	.p-trial__cv-limited {
		font-size: clamp(1.6rem, 1.027rem + 1.527vw, 2.2rem);
	}
	.p-service {
		margin-bottom: 72px;
		padding: 111px 0 0;
	}
	.p-service::before {
		height: 170px;
		background-size: 768px auto;
	}
	.p-service::after {
		display: none;
	}
	.p-service__title {
		width: 170px;
		height: 170px;
		margin-bottom: -58px;
		padding-top: 48px;
		font-size: clamp(2.4rem, 1.827rem + 1.527vw, 3rem);
	}
	.p-service__content {
		margin-bottom: 40px;
	}
	.p-service__lead {
		margin: 0 -17px 40px -14px;
		font-size: clamp(1.8rem, 1.514rem + 0.763vw, 2.1rem);
		line-height: 1.556;
	}
	.p-service__flow-wrap {
		display: revert;
		padding-left: clamp(2rem, -4.982rem + 21.818vw, 3.2rem);
	}
	.p-service__flow {
		margin-bottom: 40px;
	}
	.p-service__flow-fig img {
		max-width: unset;
	}
	.p-service__text {
		font-size: clamp(1.6rem, 1.409rem + 0.509vw, 1.8rem);
		line-height: 1.625;
		text-align: left;
	}
	.p-service__cv {
		min-height: 177px;
		padding-top: 28px;
		padding-bottom: 28px;
	}
	.p-service__cv-header {
		--spacing: 0.02em;
		margin-bottom: 16px;
		font-size: clamp(1.6rem, 0.837rem + 2.036vw, 2.4rem);
		line-height: 1.313;
	}
	.p-service .p-cv__btn {
		background-image: url(../img/bg_btn_sp.png);
	}
	.p-works {
		margin-bottom: 0;
		padding: 56px 0 72px;
		background: #f9f9f9;
	}
	.p-works::before {
		display: none;
	}
	.p-works .c-inner {
		padding: 0;
	}
	.p-works__header {
		padding-right: clamp(2rem, -4.982rem + 21.818vw, 3.2rem);
		padding-left: clamp(2rem, -4.982rem + 21.818vw, 3.2rem);
	}
	.p-works__title {
		margin-bottom: 24px;
		font-size: clamp(3.2rem, 2.437rem + 2.036vw, 4rem);
		line-height: 1.188;
	}
	.p-works__lead {
		font-size: clamp(1.6rem, 1.409rem + 0.509vw, 1.8rem);
		line-height: 1.625;
	}
	.p-works__content {
		margin-bottom: 24.25px;
	}
	.p-works__footer {
		margin-top: 40px;
	}
	.p-works__btn {
		width: 310px;
	}
	.p-works__slider {
		display: grid;
		grid-template-columns: 1fr;
	}
	.p-works__slider .splide__track {
		order: 1;
	}
	.p-works__slider .splide__arrows {
		order: 3;
	}
	.p-works__slider .splide__pagination {
		order: 2;
	}
	.p-works-list__client {
		margin-bottom: 7px;
		font-size: 2rem;
	}
	.p-works-list__detail-title {
		width: 78px;
		height: 28px;
		margin-bottom: 13px;
		font-size: 1.4rem;
	}
	.p-works-list__detail-desc {
		font-size: 1.4rem;
		line-height: 1.786;
	}
	.p-strength {
		position: relative;
		min-height: 0;
		padding-top: clamp(17rem, -0.844rem + 47.583vw, 35.7rem);
		padding-bottom: 0;
		background: none;
	}
	.p-strength::before {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: clamp(37.5rem, 0rem + 100vw, 76.8rem);
		height: clamp(17rem, -0.844rem + 47.583vw, 35.7rem);
		background: url(../img/bg_strength.webp) no-repeat center top/cover;
		content: "";
	}
	.p-strength__bg {
		display: block;
		padding: 56px 0;
		background: url(../img/bg_message_sp.webp) no-repeat center top/cover;
	}
	.p-strength__box {
		display: contents;
	}
	.p-strength__box-inner {
		display: contents;
	}
	.p-strength__header {
		margin-bottom: 40px;
	}
	.p-strength__title {
		--spacing: 0.02em;
		font-size: clamp(2.4rem, 1.827rem + 1.527vw, 3rem);
		line-height: 1.5;
	}
	.p-strength__content {
		font-size: clamp(1.6rem, 1.409rem + 0.509vw, 1.8rem);
		line-height: 1.813;
		text-align: left;
	}
	.p-strength__content .p-strong {
		font-size: clamp(2rem, 1.809rem + 0.509vw, 2.2rem);
	}
	.p-contact {
		background-image: url(../img/bg_contact_sp.png);
	}
	.p-contact__bg {
		min-height: clamp(27.8rem, 16.159rem + 31.043vw, 40rem);
	}
	.p-contact__title {
		margin-bottom: 32px;
	}
	.p-contact__btn {
		width: clamp(31rem, 12.916rem + 48.223vw, 50rem);
		height: clamp(9.6rem, 7.316rem + 6.091vw, 12rem);
	}
	.p-contact__btn-text {
		padding-right: 57px;
		line-height: 1.278;
		text-align: center;
		text-indent: 0;
	}
	.p-contact__btn-text::after {
		width: 44px;
		height: 44px;
		background-size: 10px auto;
	}
}
@media screen and (max-width: 375px) {
	.p-hero::before {
		left: 25px;
		width: 350px;
		height: 197px;
	}
	.p-hero__header {
		left: 9px;
		grid-template-columns: 100px 1fr;
		min-height: 287px;
	}
	.p-hero__title {
		row-gap: 15px;
		padding-top: 19px;
	}
	.p-lead::before {
		width: 310px;
	}
	.p-lead::after {
		top: -45px;
		width: 90px;
		height: 90px;
	}
	.p-lead__inner::before {
		right: 28px;
		bottom: -7px;
		width: 70px;
		height: 70px;
	}
	.p-lead__inner::after {
		right: 63px;
		bottom: -62px;
		width: 90px;
		height: 90px;
	}
}
@media (any-hover: hover) {
	.p-header__contact-btn:hover {
		text-decoration: underline;
		text-decoration-color: currentColor;
	}
	.p-cv__btn:hover {
		text-decoration: underline;
		text-decoration-color: currentColor;
	}
	.p-works__btn:hover {
		text-decoration: underline;
		text-decoration-color: currentColor;
	}
	.p-works-list__link:hover {
		outline: auto;
	}
	.p-contact__btn:hover {
		text-decoration: underline;
		text-decoration-color: currentColor;
	}
}
@media (prefers-reduced-motion: reduce) {
	html:focus-within {
		scroll-behavior: auto;
	}
}
@media  {
	img {
		image-rendering: -webkit-optimize-contrast;
	}
	.is-touch-device img {
		image-rendering: auto;
	}
}
