@charset "UTF-8";
/* Web Font */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* Custom Properties */
:root {
	/* color */
	--color-default: #232323;
	--color-blue: #0078ff;
	--color-yellow: #ffff00;
	--color-gradBlue: linear-gradient(90deg, rgba(0,120,255,1) 0%, rgba(0,180,255,1) 100%);
	/* font */
	--font-default: "Noto Sans JP", sans-serif;
	--font-hevetica: "Helvetica", "Arial", sans-serif;
}

/*-------------------------
reset
---------------------------*/
*,
*::before,
*::after {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html, body {
	overflow-x: hidden;
}

html {
	-webkit-text-size-adjust: 100%;
}

body, input, textarea {
	font-size: 16px;
}

body {
	color: var(--color-default);
	font-family: var(--font-default);
	font-size: 16px;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	text-align: justify;
	line-height: 1.75;
	margin: 0;
	position: relative;
}
@media (width > 767px) {
	body.contentsBody, body.qualifyBody, body.faqBody {
		overflow-x: visible;
	}
}

img, a, ul, li, iframe, fieldset {
	border: none;
	outline: none;
}

a, img {
	display: block;
	width: 100%;
}

a.inline, img.inline {
	display: inline;
	width: auto;
}

img {
	line-height: 0;
}

a {
	color: var(--color-text);
	text-decoration: none;
	transition: 0.2s ease-out;
}

h1, h2, h3, h4, ol, ul, li, dl, dt, dd, p, figure, from, iframe, fieldset, legend {
	margin-block-start: 0;
	margin-block-end: 0;
	margin: 0;
	padding: 0;
}

ol, ul {
	list-style: none;
}

h1, h2, h3, h4 {
	font-size: 100%;
	font-weight: normal;
}

em {
	font-style: normal;
}

article, aside, footer, header, main, nav, section {
	display: block;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

textarea {
	resize: vertical;
}

input, textarea, select {
	font-size: 16px;
	padding: 3px;
	border: 1px solid #b2b2b2;
	border-radius: 5px;
}

select {
	padding: 2.5px 3px;
}

label input {
	display: block;
}

/* iOSでのデフォルトスタイルをリセット */
input:focus {
	outline: none;
}

input[type=submit],
input[type=button] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}

input[type=radio],
input[type=checkbox] {
	display: inline-block;
	height: 2em;
	font-size: 16px;
	margin: 0 5px 0 0;
	cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
	display: none;
}

input[type=submit]:focus,
input[type=button]:focus {
	outline-offset: -2px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	margin-left: 5px;
	opacity: 0.5;
}

@media (width <= 767px) {
	.pc {
		display: none !important;
	}
}
@media (width > 767px) {
	.sp {
		display: none !important;
	}
}
.box-side {
	padding-inline: 35px;
}

.w500 {
	width: 100%;
	max-width: 500px;
}

.w1090 {
	width: 100%;
	max-width: 1090px;
}
.w1090.box-side {
	max-width: 1160px;
}

.c-radius {
	border-radius: 12px;
}
@media (width <= 1160px) {
	.c-radius {
		border-radius: 0;
	}
}
@media (width <= 1320px) {
	.c-radius--01 {
		border-radius: 0;
	}
}

/* 背景色 */
.c-bgBlue {
	background-color: var(--color-blue);
}

.c-bgBlue01 {
	background-color: #ebf5ff;
}

.c-bgGradBlue {
	background-image: var(--color-gradBlue);
}

.c-bgGray {
	background-color: #f5f5f5;
}

/* パディング */
.p80-40 {
	padding-block: 80px;
}
@media (width <= 767px) {
	.p80-40 {
		padding-block: 40px;
	}
}

.p120-60 {
	padding-block: 120px;
}
@media (width <= 767px) {
	.p120-60 {
		padding-block: 60px;
	}
}

/* マージン */
.m-auto {
	margin-inline: auto !important;
}

.mt40 {
	margin-top: 40px !important;
}

.mt40-30 {
	margin-top: 40px !important;
}
@media (width <= 767px) {
	.mt40-30 {
		margin-top: 30px !important;
	}
}

.mt60-30 {
	margin-top: 60px !important;
}
@media (width <= 767px) {
	.mt60-30 {
		margin-top: 30px !important;
	}
}

.mt60-40 {
	margin-top: 60px !important;
}
@media (width <= 767px) {
	.mt60-40 {
		margin-top: 40px !important;
	}
}

.c-list01 > li {
	padding-left: 1em;
	position: relative;
}
.c-list01 > li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
.c-list01--notes > li::before {
	content: "※";
}
.c-list01--circle > li::before {
	content: "●";
	font-size: 0.75em;
	top: 0.25em;
}

/* 汎用タイトル */
.c-title01 {
	font-size: 7.86vw;
	font-weight: 900;
	color: #fff;
	line-height: 1.1;
}
@media (width <= 767px) {
	.c-title01 {
		font-size: 44px;
	}
}
.c-title01__ja {
	display: block;
	font-size: 0.4em;
	line-height: 1.65;
}
.c-title01--blue {
	color: var(--color-blue);
}
.c-title01--fz88-46 {
	font-size: clamp(46px, -0.306rem + 6.64vw, 88px);
}

.c-title02 {
	font-size: 46px;
	line-height: 1.3;
	font-weight: 900;
	color: #fff;
}
.c-title02__en {
	display: block;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.65;
	margin-bottom: 15px;
}
.c-title02--black {
	color: #232323;
}
.c-title02--blue {
	color: var(--color-blue);
}
.c-title02--blueBlack {
	color: #232323;
}
.c-title02--blueBlack .c-title02__en {
	color: var(--color-blue);
}
.c-title02--fz22 {
	font-size: 22px;
}
.c-title02--fz36 {
	font-size: 36px;
}

/* 汎用テキスト */
.c-fwMedium {
	font-weight: 500;
}

.c-fwBold {
	font-weight: bold;
}

.c-fw900 {
	font-weight: 900;
}

.c-textCenter {
	text-align: center;
}

.c-pcTextCenter {
	text-align: center;
}
@media (width <= 767px) {
	.c-pcTextCenter {
		text-align: justify;
	}
}

.c-colorBlue {
	color: var(--color-blue);
}

.c-colorYellow {
	color: var(--color-yellow);
}

.c-textWave {
	display: inline-block;
	position: relative;
}
.c-textWave::after {
	content: "";
	display: block;
	width: 100%;
	height: 0.17em;
	background: center/contain repeat-x;
	background-image: url(../img/common/icon_wave01.webp);
	clip-path: inset(0 100% 0 0);
	transition: clip-path 1s linear;
}
@media (width > 767px) {
	.c-textWave--sp::after {
		content: none;
	}
}
@media (width <= 767px) {
	.c-textWave--pc::after {
		content: none;
	}
}
.c-textWave.animated::after {
	clip-path: inset(0 0 0 0);
}

.c-textMarker {
	display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	background: linear-gradient(transparent 65%, var(--color-yellow) 65%);
	background-repeat: no-repeat;
	background-size: 0 100%;
	transition: background-size 0.5s;
}
.c-textMarker.animated {
	background-size: 100% 100%;
}

.c-ls {
	letter-spacing: -0.05em;
}

/* 汎用ボタン */
.c-btn01 {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #232323;
	font-weight: 500;
	width: 100%;
	max-width: 180px;
	min-height: 60px;
	padding: 5px 15px;
	background-color: var(--btnColor, var(--color-yellow));
	border-radius: 6px;
}
@media (any-hover: hover) {
	.c-btn01:hover {
		color: var(--color-yellow);
		background-color: #232323;
	}
}
.c-btn01--whiteBlue {
	color: var(--color-blue);
	background-color: #fff;
	border: 1px solid var(--color-blue);
}
@media (any-hover: hover) {
	.c-btn01--whiteBlue:hover {
		color: #fff;
		background-color: var(--color-blue);
	}
}

.c-btn02 {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: var(--color-blue);
	text-align: center;
	line-height: 1.22;
	width: 100%;
	max-width: 220px;
	min-height: 80px;
	background-color: #fff;
	border: 1px solid var(--color-blue);
	border-radius: calc(infinity * 1px);
	padding: 5px 55px;
	position: relative;
	transition: 0.2s ease-out;
}
.c-btn02::after {
	content: "";
	width: 10px;
	aspect-ratio: 1;
	background: url(../img/common/icon_arrow01.svg) center/contain no-repeat;
	position: absolute;
	inset: 50% 40px auto auto;
	translate: 0 -50%;
	transition: inset 0.2s ease-out;
}
@media (any-hover: hover) {
	.c-btn02:hover {
		color: #fff;
		background-color: var(--color-blue);
	}
	.c-btn02:hover::after {
		filter: brightness(0) invert(1);
		inset: 50% 30px auto auto;
	}
}
.c-btn02--fz18 {
	font-size: 18px;
}
.c-btn02--fz20 {
	font-size: 20px;
	letter-spacing: -0.05em;
}
.c-btn02--yellowBlack {
	color: #232323;
	background-color: var(--color-yellow);
	border: 0;
}
.c-btn02--yellowBlack::after {
	filter: brightness(0);
}
@media (any-hover: hover) {
	.c-btn02--yellowBlack:hover {
		color: var(--color-yellow);
		background-color: #232323;
	}
	.c-btn02--yellowBlack:hover::after {
		filter: brightness(0) saturate(100%) invert(85%) sepia(44%) saturate(1741%) hue-rotate(1deg) brightness(103%) contrast(109%);
	}
}
.c-btn02--yellowBlue {
	color: var(--color-blue);
	background-color: var(--color-yellow);
	border-color: var(--color-blue);
}
@media (any-hover: hover) {
	.c-btn02--yellowBlue:hover {
		color: var(--color-yellow);
		background-color: var(--color-blue);
		border-color: var(--color-yellow);
	}
	.c-btn02--yellowBlue:hover::after {
		filter: brightness(0) saturate(100%) invert(85%) sepia(44%) saturate(1741%) hue-rotate(1deg) brightness(103%) contrast(109%);
	}
}
.c-btn02--whiteBlack {
	color: #232323;
}
@media (any-hover: hover) {
	.c-btn02--whiteBlack:hover {
		color: #fff;
		background-color: #232323;
		border-color: #232323;
	}
}
.c-btn02--grad {
	color: #fff;
	background: var(--color-gradBlue);
	border-color: #a7c9e6;
}
.c-btn02--grad::after {
	filter: brightness(0) invert(1);
}
@media (any-hover: hover) {
	.c-btn02--hoverBorder:hover {
		border-color: #fff;
	}
}
.c-btn02--file {
	font-weight: 500;
}
.c-btn02--file::after {
	width: 20px;
	aspect-ratio: 20/26;
	background-image: url(../img/common/icon_excel.svg);
	position: absolute;
	inset: 50% 35px auto auto;
	translate: 0 -50%;
	transition: inset 0.2s ease-out;
}
@media (any-hover: hover) {
	.c-btn02--file:hover {
		color: #fff;
		background-color: var(--color-blue);
	}
	.c-btn02--file:hover::after {
		filter: none;
		inset: calc(50% - 5px) 35px auto auto;
	}
}
.c-btn02--w260 {
	max-width: 260px;
}
.c-btn02--w300 {
	max-width: 300px;
}
.c-btn02--w360 {
	max-width: 360px;
}
.c-btn02--w420 {
	max-width: 420px;
}
.c-btn02--w440 {
	max-width: 440px;
}

/* ホバー */
.c-hover {
	position: relative;
}
.c-hover::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--color-blue);
	scale: 0 1;
	transition: scale 0.5s;
	transform-origin: center top;
}
@media (any-hover: hover) {
	.c-hover:hover::after {
		scale: 1;
	}
}

.c-swiperNav {
	width: 100px;
	aspect-ratio: 1;
	background: url(../img/common/icon_arrow02.svg) center/contain no-repeat;
	cursor: pointer;
	z-index: 1;
}
.c-swiperNav--01 {
	width: 50px;
	background-image: url(../img/common/icon_arrow04.svg);
}
@media (width <= 767px) {
	.c-swiperNav--01 {
		width: 100px;
		background-image: url(../img/common/icon_arrow05.svg);
	}
}

.c-swiperPn {
	text-align: center;
}
.c-swiperPn .swiper-pagination-bullet {
	width: 12px !important;
	height: 12px !important;
	background-color: #b4b4b4 !important;
	border: 1px solid #c8c8c8 !important;
	margin-inline: 5px !important;
	opacity: 1 !important;
}
.c-swiperPn .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #fff !important;
}

.c-swiperPn01 {
	text-align: center;
}
.c-swiperPn01 .swiper-pagination-bullet {
	width: 8px !important;
	height: 8px !important;
	background-color: #dcdcdc !important;
	margin-inline: 6px !important;
	opacity: 1 !important;
}
.c-swiperPn01 .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #96c8ff !important;
}

.c-breadList {
	display: flex;
	flex-wrap: wrap;
}
.c-breadList > li {
	display: flex;
}
.c-breadList > li::after {
	content: "＞";
	display: inline-block;
	margin-inline: 0.5em;
}
.c-breadList > li:last-child::after {
	content: none;
}

.lFv {
	display: flex;
	flex-direction: column;
	gap: 40px 0;
	padding: 20px 20px 0;
}
@media (width <= 767px) {
	.lFv {
		gap: 20px 0;
	}
}
.lFv__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 1320px;
	height: 400px;
	border-radius: 24px;
	padding: 40px 0;
	position: relative;
}
@media (width <= 767px) {
	.lFv__inner {
		order: -1;
		align-items: flex-end;
		height: 330px;
	}
}
@media (width <= 767px) {
	.lFv__inner--afs {
		align-items: flex-start;
	}
}
.lFv__inner--contact {
	overflow: hidden;
}
.lFv__title {
	font-size: 52px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	line-height: 1.3;
	position: relative;
	z-index: 1;
}
.lFv__title-ja {
	display: block;
	font-size: 0.4230769231em;
	margin-top: 0.5em;
}
.lFv__title--black {
	color: var(--color-blue);
}
.lFv__parts {
	position: absolute;
}
.lFv__parts--service01 {
	width: 24.77%;
	inset: -27px auto auto 12.86%;
}
@media (width <= 767px) {
	.lFv__parts--service01 {
		width: 100%;
		max-width: 80px;
		inset: -28px auto auto 12px;
	}
}
.lFv__parts--service02 {
	width: 19.7%;
	inset: 90px 12.86% auto auto;
}
@media (width <= 767px) {
	.lFv__parts--service02 {
		width: 100%;
		max-width: 120px;
		inset: 55px auto auto 50%;
		translate: -50% 0;
	}
}
.lFv__parts--contents01 {
	width: 21.21%;
	inset: auto auto 0 11.52%;
}
@media (width <= 767px) {
	.lFv__parts--contents01 {
		width: 100%;
		max-width: 125px;
		inset: auto auto 0 35px;
	}
}
.lFv__parts--contents02 {
	width: 18.56%;
	inset: 75px 11.74% auto auto;
}
@media (width <= 767px) {
	.lFv__parts--contents02 {
		width: 100%;
		max-width: 129px;
		inset: auto 40px -10px auto;
	}
}
.lFv__parts--el01 {
	width: 17.42%;
	inset: 80px auto auto 12.12%;
}
@media (width <= 767px) {
	.lFv__parts--el01 {
		width: 100%;
		max-width: 78px;
		inset: -35px auto auto 10px;
	}
}
.lFv__parts--el02 {
	width: 46.97%;
	inset: auto 0 0 auto;
}
@media (width <= 767px) {
	.lFv__parts--el02 {
		width: 100%;
		max-width: 320px;
	}
}
.lFv__parts--plan01 {
	width: 17.42%;
	inset: 80px auto auto 12.12%;
}
@media (width <= 767px) {
	.lFv__parts--plan01 {
		width: 100%;
		max-width: 123px;
		inset: 25px auto auto 50%;
		translate: -50% 0;
	}
}
.lFv__parts--plan02 {
	width: 20.08%;
	inset: auto 15.15% 0 auto;
}
@media (width <= 767px) {
	.lFv__parts--plan02 {
		width: 100%;
		max-width: 150px;
		inset: auto -80px 0 auto;
	}
}
.lFv__parts--qual01 {
	width: 23.11%;
	inset: 55px auto auto 10.61%;
}
@media (width <= 767px) {
	.lFv__parts--qual01 {
		width: 100%;
		max-width: 113px;
		inset: auto auto 43px 22px;
	}
}
.lFv__parts--qual02 {
	width: 8.26%;
	inset: auto auto 25px 6.82%;
}
@media (width <= 767px) {
	.lFv__parts--qual02 {
		width: 100%;
		max-width: 60px;
		inset: 27px -12px auto auto;
	}
}
.lFv__parts--qual03 {
	width: 36.59%;
	inset: auto 5.38% 0 auto;
}
@media (width <= 767px) {
	.lFv__parts--qual03 {
		width: 100%;
		max-width: 227px;
		inset: auto 15px 0 auto;
	}
}
.lFv__parts--voice01 {
	width: 24.77%;
	inset: 73px 9.7% auto auto;
}
@media (width <= 767px) {
	.lFv__parts--voice01 {
		width: 100%;
		max-width: 100px;
		inset: -20px auto auto 7px;
	}
}
.lFv__parts--voice02 {
	width: 12.58%;
	inset: auto 6.44% -15px auto;
}
@media (width <= 767px) {
	.lFv__parts--voice02 {
		width: 100%;
		max-width: 72px;
		inset: 20px -15px auto auto;
	}
}
.lFv__parts--voice03 {
	width: 41.06%;
	inset: auto auto 0 0;
}
@media (width <= 767px) {
	.lFv__parts--voice03 {
		width: 100%;
		max-width: 278px;
		inset: auto auto 0 50%;
		translate: -50% 0;
	}
}
.lFv__parts--flow01 {
	width: 20.45%;
	inset: auto 17.42% 60px auto;
}
@media (width <= 767px) {
	.lFv__parts--flow01 {
		width: 100%;
		max-width: 137px;
		inset: auto -40px -28px auto;
	}
}
.lFv__parts--flow02 {
	width: 12.73%;
	inset: 27px 7.88% auto auto;
}
@media (width <= 767px) {
	.lFv__parts--flow02 {
		width: 100%;
		max-width: 61px;
		inset: auto auto 30px 10px;
	}
}
.lFv__parts--flow03 {
	width: 100%;
	max-width: 640px;
	inset: 50% auto auto 1.52%;
	translate: 0 -50%;
}
@media (width <= 767px) {
	.lFv__parts--flow03 {
		width: 100%;
		max-width: 290px;
		inset: 20px auto auto 50%;
		translate: -50% 0;
	}
}
.lFv__parts--faq01 {
	width: 22.73%;
	inset: 60px auto auto 12.88%;
}
@media (width <= 767px) {
	.lFv__parts--faq01 {
		width: 100%;
		max-width: 80px;
		inset: auto auto 75px 20px;
	}
}
.lFv__parts--faq02 {
	width: 30%;
	inset: auto 5.91% 0 auto;
}
@media (width <= 767px) {
	.lFv__parts--faq02 {
		width: 100%;
		max-width: 215px;
		inset: auto -6px 0 auto;
	}
}
.lFv__parts--ft01 {
	width: 18.56%;
	inset: 70px auto auto 15.15%;
}
@media (width <= 767px) {
	.lFv__parts--ft01 {
		width: 100%;
		max-width: 111px;
		inset: auto auto 40px 25px;
	}
}
.lFv__parts--ft02 {
	width: 20.38%;
	inset: auto 15.38% 0 auto;
}
@media (width <= 767px) {
	.lFv__parts--ft02 {
		width: 100%;
		max-width: 173px;
		inset: auto 15px 0 auto;
	}
}
.lFv__parts--contact {
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0 auto auto 0;
}
.lFv__parts--contact img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.btnGroup {
	padding-bottom: 40px;
}
.btnGroup__list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}
.btnGroup__item {
	width: 100%;
	max-width: 300px;
}
.btnGroup__btn {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 300px;
	min-height: 100px;
	border: 1px solid var(--color-blue);
	border-radius: calc(infinity * 1px);
	padding: 5px 45px 5px 15px;
	position: relative;
}
.btnGroup__btn::after {
	content: "";
	display: block;
	width: 10px;
	aspect-ratio: 1;
	background: url(../img/common/icon_arrow01.svg) center/contain no-repeat;
	position: absolute;
	inset: 50% 30px auto auto;
	translate: 0 -50%;
	transition: 0.2s ease-out;
}
@media (any-hover: hover) {
	.btnGroup__btn:hover {
		background-color: var(--color-blue);
	}
	.btnGroup__btn:hover .btnGroup__text {
		color: #fff;
	}
	.btnGroup__btn:hover::after {
		filter: brightness(0) invert(1);
		right: 25px;
	}
}
.btnGroup__icon {
	width: 70px;
}
.btnGroup__text {
	flex: 1;
	font-weight: bold;
	color: var(--color-blue);
	letter-spacing: -0.05em;
	text-align: center;
}

.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	padding-inline: 20px;
	margin-top: 60px;
}
@media (width <= 767px) {
	.nav-links {
		gap: 10px;
		margin-top: 40px;
	}
}
.nav-links > * {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 300;
	width: 40px;
	height: max-content;
	aspect-ratio: 1;
	border: 1px solid transparent;
	border-radius: 50%;
	position: relative;
}
.nav-links > *.current {
	color: #828d97;
	border-color: var(--color-blue);
}
.nav-links > *.prev, .nav-links > *.next {
	--margin: 40px;
	width: 60px;
	background-color: var(--color-blue);
	border: 1px solid var(--color-blue);
}
@media (width <= 767px) {
	.nav-links > *.prev, .nav-links > *.next {
		width: 40px;
		--margin: 5px;
	}
}
.nav-links > *.prev::after, .nav-links > *.next::after {
	content: "";
	display: block;
	width: 10px;
	height: 8px;
	background: url(../img/common/icon_arrow01.svg) center/contain no-repeat;
	position: absolute;
	inset: 50% auto auto 50%;
	translate: -50% -50%;
	filter: brightness(0) invert(1);
}
.nav-links > *.prev {
	margin-right: var(--margin);
}
.nav-links > *.prev::after {
	scale: -1 1;
}
.nav-links > *.next {
	margin-left: var(--margin);
}
@media (any-hover: hover) {
	.nav-links a:hover {
		color: #828d97;
		border-color: var(--color-blue);
	}
}
@media (any-hover: hover) {
	.nav-links a.prev:hover, .nav-links a.next:hover {
		background-color: #fff;
	}
	.nav-links a.prev:hover::after, .nav-links a.next:hover::after {
		filter: none;
	}
}

.c-singlePn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	padding-inline: 20px;
}
@media (width <= 767px) {
	.c-singlePn {
		gap: 15px;
	}
}
.c-singlePn__item--summary {
	flex: 1;
	max-width: 220px;
}
.c-singlePn__btn--prev, .c-singlePn__btn--next {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	aspect-ratio: 1;
	border-radius: 50%;
	background-color: var(--color-blue);
	border: 1px solid var(--color-blue);
	position: relative;
}
.c-singlePn__btn--prev::after, .c-singlePn__btn--next::after {
	content: "";
	display: block;
	width: 10px;
	height: 8px;
	background: url(../img/common/icon_arrow01.svg) center/contain no-repeat;
	position: absolute;
	inset: 50% auto auto 50%;
	translate: -50% -50%;
	filter: brightness(0) invert(1);
}
@media (any-hover: hover) {
	.c-singlePn__btn--prev:hover, .c-singlePn__btn--next:hover {
		background-color: transparent;
	}
	.c-singlePn__btn--prev:hover::after, .c-singlePn__btn--next:hover::after {
		filter: none;
	}
}
.c-singlePn__btn--prev::after {
	scale: -1 1;
}
.c-singlePn__btn--summary {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 80px;
	border: 1px solid var(--color-blue);
	border-radius: calc(infinity * 1px);
}
@media (any-hover: hover) {
	.c-singlePn__btn--summary:hover {
		color: #fff;
		background-color: var(--color-blue);
	}
}

.c-feed {
	translate: 0 100px;
	opacity: 0;
	transition: opacity 1s, translate 1s;
}
.c-feed.animated {
	translate: 0 0;
	opacity: 1;
}

.c-feed__right {
	translate: 35px 0;
	opacity: 0;
	transition: opacity 1s, translate 1s;
}
.c-feed__right.animated {
	translate: 0 0;
	opacity: 1;
}

.c-anime__float {
	animation: fuwafuwa 2s infinite;
}

@keyframes fuwafuwa {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-15px);
	}
	100% {
		transform: translateY(0px);
	}
}
.c-ad2 {
	animation-delay: 0.2s;
}

.c-anime__mask {
	clip-path: inset(0 100% 0 0);
}
.c-anime__mask.animated {
	animation: mask 0.8s ease-in-out forwards;
}

@keyframes mask {
	0% {
		clip-path: inset(0 100% 0 0);
	}
	100% {
		clip-path: inset(0);
	}
}
.c-fukidashi {
	scale: 0;
	transform-origin: center bottom;
	transition: scale 0.3s cubic-bezier(0.25, 0, 0, 1.5);
}
.c-fukidashi.animated {
	scale: 1;
}

h3.company_midashi {
	background: #0078ff;
	color: #fff;
	padding: 0.25rem 1rem;
	margin-bottom: 1rem;
	border-radius: 50px;
}

.mb_01 {
	margin-bottom: 1rem;
}

.mb_02 {
	margin-bottom: 2rem;
}

.mb_03 {
	margin-bottom: 3rem;
}

.header {
	display: flex;
	align-items: center;
	min-height: 80px;
	width: 100%;
	position: relative;
	z-index: 99;
	transition: translate 0.5s ease-out;
}
.header__title {
	width: 100%;
	max-width: 155px;
	position: fixed;
	inset: 20px auto auto 40px;
}
@media (width <= 1280px) {
	.header__title {
		max-width: 132px;
		left: 50%;
		translate: -50% 0;
	}
}

.headerNav {
	padding: 0 115px 0 220px;
	margin-left: auto;
}
@media (width <= 1280px) {
	.headerNav {
		display: none;
	}
}
.headerNav__item {
	position: relative;
}
.headerNav__list {
	display: flex;
	justify-content: flex-end;
	column-gap: 2em;
}
.headerNav__link {
	font-weight: 500;
	color: var(--color-blue);
}
@media (any-hover: hover) {
	.headerNav__link--parent:hover + .headerNavChild {
		opacity: 1;
		pointer-events: auto;
	}
}

.headerNavChild {
	width: 220px;
	padding-top: 20px;
	position: absolute;
	inset: 100% auto auto 0;
	opacity: 0;
	pointer-events: none;
	transition: 0.2s ease-out;
}
.headerNavChild:hover {
	opacity: 1;
	pointer-events: auto;
}
.headerNavChild__list {
	border: 1px solid var(--color-blue);
}
.headerNavChild__item:last-child .headerNavChild__link {
	border-bottom: 0;
}
.headerNavChild__link {
	color: var(--color-blue);
	line-height: 1.375;
	letter-spacing: -0.05em;
	background-color: #fff;
	border-bottom: 1px solid var(--color-blue);
	padding: 15px 35px 15px 20px;
	position: relative;
}
.headerNavChild__link::after {
	content: "";
	display: block;
	width: 10px;
	aspect-ratio: 1;
	background: url(../img/common/icon_arrow01.svg) center/contain no-repeat;
	position: absolute;
	inset: 50% 20px auto auto;
	translate: 0 -50%;
	transition: inset 0.2s ease-out;
}
@media (any-hover: hover) {
	.headerNavChild__link:hover {
		color: #fff;
		background-color: var(--color-blue);
	}
	.headerNavChild__link:hover::after {
		filter: brightness(0) invert(1);
		inset: 50% 15px auto auto;
	}
}

.footer {
	padding-block: 100px;
	position: relative;
	z-index: 100;
}
@media (width <= 767px) {
	.footer {
		padding-block: 60px;
	}
}
.footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
	width: 100%;
	max-width: 960px;
}
@media (width <= 960px) {
	.footer__inner {
		justify-content: center;
	}
}
@media (width <= 767px) {
	.footer__inner {
		flex-direction: column;
	}
}
.footer__inner .box01 {
	width: 100%;
	max-width: 250px;
}
.footer__inner .box02 {
	width: 100%;
	max-width: 520px;
}
@media (width <= 960px) {
	.footer__inner .box02 {
		max-width: max-content;
	}
}
@media (width <= 767px) {
	.footer__info {
		display: contents;
	}
}
.footer__logo {
	width: 100%;
	max-width: 250px;
	margin-inline: auto;
}
.footer__copy {
	font-size: 14px;
	font-weight: 300;
	text-align: center;
	margin-top: 80px;
}
@media (width <= 767px) {
	.footer__copy {
		order: 1;
		margin-top: 0;
	}
}

.footerCv {
	display: flex;
	justify-content: flex-end;
	column-gap: 10px;
	width: 100%;
	max-width: 370px;
	position: fixed;
	inset: auto 20px 20px auto;
	z-index: 1;
}
@media (width <= 767px) {
	.footerCv {
		column-gap: 6px;
		inset: auto 0 0 auto;
	}
}
.footerCv__item {
	width: 100%;
	max-width: 180px;
}
.footerCv__item:has(.footerCv__btn--contact) {
	max-width: 140px;
}
@media (width <= 767px) {
	.footerCv__item:last-child .footerCv__btn {
		border-right: 0;
		border-radius: 6px 0 0 0;
	}
}
@media (width <= 767px) {
	.footerCv__btn {
		border-bottom: 0;
		border-radius: 6px 6px 0 0;
	}
	.footerCv__btn--contact {
		max-width: 140px;
	}
}

.footerNav {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 60px 50px;
}
@media (width <= 960px) {
	.footerNav {
		flex-direction: column;
		align-items: flex-start;
	}
}
.footerNav .box01 {
	width: 100%;
	max-width: 300px;
}
@media (width <= 960px) {
	.footerNav .box01 {
		max-width: 100%;
	}
}
.footerNav .box02 {
	width: 100%;
	max-width: 140px;
}
@media (width <= 960px) {
	.footerNav .box02 {
		max-width: 100%;
	}
}
.footerNav a {
	letter-spacing: -0.03em;
}
.footerNav__box {
	position: relative;
}
.footerNav__box--sp {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 20px;
}
@media (width <= 767px) {
	.footerNav__box--sp::before {
		content: "";
		display: block;
		width: 100%;
		height: 1px;
		background-color: #c8c8c8;
		position: absolute;
		inset: -30px auto auto 0;
	}
}
.footerNav__list + .footerNav__list {
	border-top: 1px solid #c8c8c8;
	padding-top: 30px;
	margin-top: 30px;
}
@media (width <= 767px) {
	.footerNav__list + .footerNav__list--sp {
		border-top: 0;
		padding-top: 0;
		margin-top: 0;
	}
}
.footerNav__item + .footerNav__item {
	margin-top: 0.7em;
}
.footerNav__item--parent {
	margin-bottom: 0.7em;
}
.footerNav__item--parent .footerNav__link {
	pointer-events: none;
}
@media (any-hover: hover) {
	.footerNav__link:hover {
		color: var(--color-blue);
	}
}

.footerNavChild__item + .footerNavChild__item {
	margin-top: 0.7em;
}
@media (any-hover: hover) {
	.footerNavChild__link:hover {
		color: var(--color-blue);
	}
}

.spNavi {
	position: fixed;
	inset: 0 0 auto auto;
}
.spNavi__icon {
	font-size: 0;
	width: 80px;
	aspect-ratio: 1;
	border-radius: 50%;
	position: relative;
	z-index: 20;
	cursor: pointer;
	/*ボタン内側*/
}
.spNavi__icon::before, .spNavi__icon::after,
.spNavi__icon span {
	display: block;
	background: var(--color-gradBlue);
	height: 1px;
	width: 30px;
	transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
	position: absolute;
	transform: translate(-50%, 0);
}
.spNavi__icon::before {
	content: "";
	inset: calc(50% - 10px) auto auto 50%;
}
.spNavi__icon::after {
	content: "";
	inset: calc(50% + 10px) auto auto 50%;
}
.spNavi__icon span {
	inset: 50% auto auto 50%;
	transform: translate(-50%, -50%);
}
.spNavi__icon--active::before {
	inset: 50% auto auto 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}
.spNavi__icon--active::after {
	inset: 50% auto auto 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}
.spNavi__icon--active span {
	opacity: 0;
}
.spNavi__menu {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	width: 100vw;
	height: 100vh;
	position: fixed;
	inset: 0 auto auto 0;
	z-index: 10;
	translate: 100% 0;
	transition: translate 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.spNavi__menu--active {
	translate: 0 0;
}

.tFv {
	aspect-ratio: 1400/920;
	background-image: var(--color-gradBlue);
	padding: 6.07vw 0 4.64vw;
	position: relative;
	overflow: hidden;
}
@media (width <= 767px) {
	.tFv {
		aspect-ratio: auto;
		padding: 40px 0 15px;
	}
}
.tFv__title {
	position: absolute;
	inset: auto auto 4.64vw 11.07vw;
}
@media (width <= 767px) {
	.tFv__title {
		max-width: max-content;
		margin-inline: auto;
		position: relative;
		inset: auto;
	}
}
.tFv__illust {
	width: 26.07vw;
	position: absolute;
	inset: auto 4.29vw 7.14vw auto;
}
@media (width <= 767px) {
	.tFv__illust {
		width: 81.08vw;
		margin: 8.11vw auto 0;
		position: relative;
		inset: auto;
	}
}

.tFvSwiper {
	overflow: visible !important;
}
@media (width <= 767px) {
	.tFvSwiper {
		margin-top: 8.11vw;
	}
}
.tFvSwiper__item {
	border-radius: 12px;
	scale: 1;
	transition: scale 0.5s ease !important;
	overflow: hidden;
}
.tFvSwiper__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.tFvSwiper__item.swiper-slide-active {
	scale: 1.25;
	z-index: 1;
}

.tAbout {
	overflow: hidden;
}
.tAbout__inner {
	display: flex;
	align-items: center;
	gap: 35px 60px;
}
@media (width <= 767px) {
	.tAbout__inner {
		flex-direction: column;
	}
}
.tAbout__inner .box01 {
	flex: 1;
	margin-left: -185px;
}
@media (width <= 960px) {
	.tAbout__inner .box01 {
		margin-left: -35px;
	}
}
@media (width <= 767px) {
	.tAbout__inner .box01 {
		margin-left: 0;
	}
}
.tAbout__inner .box02 {
	width: 600px;
}
@media (width <= 960px) {
	.tAbout__inner .box02 {
		width: 400px;
	}
}
@media (width <= 767px) {
	.tAbout__inner .box02 {
		width: 100%;
	}
}

.tService__inner {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}
@media (width <= 767px) {
	.tService__inner {
		flex-direction: column;
	}
}
.tService__inner .box01 {
	width: 175px;
	padding-top: 85px;
}
@media (width <= 767px) {
	.tService__inner .box01 {
		width: 100%;
		padding-top: 0;
	}
}
.tService__inner .box02 {
	flex: 1;
	max-width: 820px;
}

.tServiceList {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
@media (width <= 960px) {
	.tServiceList {
		flex-direction: column;
	}
}
.tServiceList__item {
	width: calc((100% - 20px) / 2);
	background-color: #fff;
	border-radius: 12px;
	padding: 20px 20px 70px 20px;
	overflow: hidden;
}
@media (width > 767px) {
	.tServiceList__item:nth-child(2) {
		transition-delay: 0.2s;
	}
}
@media (width <= 960px) {
	.tServiceList__item {
		width: 100%;
		padding-bottom: 40px;
	}
}
.tServiceList__item--full {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: space-between;
	column-gap: 50px;
	width: 100%;
	padding-bottom: 20px;
}
@media (width <= 960px) {
	.tServiceList__item--full {
		flex-direction: column;
		padding-bottom: 40px;
	}
}
.tServiceList__item--full .tServiceList__img {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 360px;
	aspect-ratio: 36/42;
	background-color: #f5f5f5;
	padding: 30px 20px;
	overflow: visible;
}
@media (width <= 960px) {
	.tServiceList__item--full .tServiceList__img {
		justify-content: center;
		aspect-ratio: 260/180;
		max-width: 100%;
		padding: 0;
	}
}
.tServiceList__item--full .tServiceList__img img {
	width: 100%;
	max-width: 295px;
}
@media (width <= 960px) {
	.tServiceList__item--full .tServiceList__img img {
		width: 75%;
		max-width: 100%;
		margin-bottom: -30px;
	}
}
.tServiceList__item--full .tServiceList__detail {
	width: 340px;
	max-width: 100%;
	margin: 0 0 40px auto;
}
@media (width <= 960px) {
	.tServiceList__item--full .tServiceList__detail {
		width: 100%;
		margin-bottom: 0;
	}
}
.tServiceList__img {
	border-radius: 6px;
	overflow: hidden;
}
.tServiceList__detail {
	display: flex;
	flex-direction: column;
	row-gap: 30px;
	width: 100%;
	max-width: 300px;
	margin-inline: auto;
}
@media (width <= 960px) {
	.tServiceList__detail {
		max-width: 100%;
		padding-inline: 30px;
	}
}
.tServiceList__title {
	font-size: 22px;
	font-weight: bold;
	line-height: 1.65;
}
.tServiceList__num {
	order: -1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	background-color: var(--color-blue);
	width: 100px;
	height: 30px;
	border-radius: 2px;
}

.tVoice {
	position: relative;
}
@media (width <= 767px) {
	.tVoice {
		padding-top: 0;
	}
}
.tVoice__inner {
	display: flex;
	align-items: flex-end;
	gap: 20px 70px;
	position: relative;
}
@media (width <= 767px) {
	.tVoice__inner {
		padding-top: 210px;
		overflow: hidden;
	}
}
@media (width <= 767px) {
	.tVoice__inner {
		flex-direction: column;
		align-items: flex-start;
	}
}
.tVoice__inner .box01 {
	width: 280px;
	padding-bottom: 50px;
}
@media (width <= 767px) {
	.tVoice__inner .box01 {
		width: 100%;
		max-width: max-content;
		padding-bottom: 0;
		margin-inline: auto;
	}
}
.tVoice__inner .box02 {
	flex: 1;
	margin-right: calc(-50vw + 50%);
}
@media (width <= 767px) {
	.tVoice__inner .box02 {
		width: 100%;
		margin-right: 0;
	}
}
.tVoice__illust {
	width: 19.29vw;
	max-width: 270px;
	position: absolute;
	inset: -120px auto auto 11.07vw;
}
@media (width <= 767px) {
	.tVoice__illust {
		width: 100%;
		max-width: 207px;
		inset: -40px 0 auto 0;
		margin-inline: auto;
	}
}

.tVoiceSwiper {
	position: relative;
}
@media (width <= 767px) {
	.tVoiceSwiper {
		overflow: visible !important;
	}
}
.tVoiceSwiper__link {
	background-color: #fff;
	border-radius: 12px;
	padding: 20px 20px 70px 20px;
}
.tVoiceSwiper__link * {
	transition: 0.2s ease-out;
}
@media (any-hover: hover) {
	.tVoiceSwiper__link:hover * {
		color: var(--color-blue);
	}
	.tVoiceSwiper__link:hover img {
		scale: 1.05;
	}
}
.tVoiceSwiper__img {
	aspect-ratio: 260/180;
	border-radius: 6px;
	overflow: hidden;
}
.tVoiceSwiper__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.tVoiceSwiper__detail {
	width: 100%;
	max-width: 200px;
}
.tVoiceSwiper__detail > * + * {
	margin-top: 25px;
}
.tVoiceSwiper__title {
	font-size: 18px;
	font-weight: bold;
}
.tVoiceSwiper__name {
	font-weight: 500;
	color: var(--color-blue);
}
.tVoiceSwiper__prev, .tVoiceSwiper__next {
	position: absolute;
	inset: 60px -50px auto auto;
	z-index: 1;
}
@media (width <= 767px) {
	.tVoiceSwiper__prev, .tVoiceSwiper__next {
		inset: 50% -85px auto auto;
		translate: 0 -50%;
	}
}
.tVoiceSwiper__prev {
	display: none;
}
@media (width <= 767px) {
	.tVoiceSwiper__prev {
		display: block;
		left: -85px;
		scale: -1 1;
	}
}

.tBtnGroup {
	--iconColor: #f5f5f5;
	--textColor: #878787;
}
@media (width <= 767px) {
	.tBtnGroup {
		--textColor: var(--color-blue);
	}
}
.tBtnGroup__list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 60px 95px;
}
.tBtnGroup__item {
	width: 300px;
}
@media (width <= 767px) {
	.tBtnGroup__item {
		width: 100%;
	}
}
.tBtnGroup__item.animated .tBtnGroup__icon {
	scale: 1;
}
@media (width > 767px) {
	.tBtnGroup__item:nth-child(2) .tBtnGroup__icon {
		transition-delay: 0.2s;
	}
	.tBtnGroup__item:nth-child(3) .tBtnGroup__icon {
		transition-delay: 0.4s;
	}
}
.tBtnGroup__link * {
	transition: 0.2s ease-out;
}
@media (any-hover: hover) {
	.tBtnGroup__link:hover {
		--iconColor: var(--color-blue);
		--textColor: var(--color-blue);
	}
	.tBtnGroup__link:hover .c-btn02 {
		color: #fff;
		background-color: var(--color-blue);
		border-color: #fff;
	}
	.tBtnGroup__link:hover .c-btn02::after {
		filter: brightness(0) invert(1);
	}
}
.tBtnGroup__icon {
	width: 100%;
	max-width: 220px;
	background-color: var(--iconColor);
	border-radius: 50%;
	margin-inline: auto;
	scale: 0;
	transition: scale 0.3s cubic-bezier(0.25, 0, 0, 1.5);
}
@media (width <= 767px) {
	.tBtnGroup__icon {
		max-width: 160px;
	}
}
.tBtnGroup__detail > * + * {
	margin-top: 30px;
}
.tBtnGroup .c-title02, .tBtnGroup__text {
	color: var(--textColor);
}

.tQualify {
	padding: 100px 0 140px;
	position: relative;
}
@media (width <= 767px) {
	.tQualify {
		min-height: 820px;
		padding-block: 60px;
	}
}
.tQualify__inner {
	position: relative;
	z-index: 1;
}
.tQualify__textbox {
	width: 100%;
	max-width: 770px;
}
.tQualify__title {
	font-size: clamp(38px, -1.412rem + 7.9vw, 88px);
	font-weight: 900;
	color: var(--color-blue);
	line-height: 1.1;
}
.tQualify__title-small {
	display: block;
	font-size: clamp(20px, 0.796rem + 0.95vw, 26px);
	font-weight: bold;
	line-height: 1.65;
	margin-bottom: 40px;
}
.tQualify__imgbox {
	position: absolute;
	inset: 0;
}
.tQualify__img {
	height: 100%;
}
.tQualify__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (width <= 767px) {
	.tQualify__img img {
		object-position: right bottom;
	}
}

.cv {
	padding-top: 160px;
	padding-bottom: 20px;
	overflow: hidden;
}
@media (width <= 767px) {
	.cv {
		padding-block: 60px;
	}
}
.cv__inner {
	padding-bottom: 80px;
	position: relative;
}
@media (width <= 767px) {
	.cv__inner {
		padding-bottom: 0;
	}
}
@media (width > 767px) {
	.cv__title {
		text-align: center;
	}
}
@media (width <= 767px) {
	.cv__title {
		max-width: max-content;
		margin-inline: auto;
		position: relative;
	}
}
@media (width <= 767px) {
	.cv__title .c-title02__en {
		text-align: center;
	}
}
.cv__title-flex {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 10px;
	margin-top: 10px;
}
@media (width <= 767px) {
	.cv__title-flex {
		flex-direction: column;
		align-items: flex-start;
	}
}
.cv__title-flex.c-textWave {
	display: flex;
	max-width: max-content;
	margin-inline: auto;
}
@media (width <= 767px) {
	.cv__title-flex.c-textWave {
		margin-left: 0;
	}
}
.cv__title-flex.c-textWave::after {
	position: absolute;
	inset: auto auto -15px 0;
}
.cv__title-marker {
	font-size: 36px;
	color: #fff;
	background-color: var(--color-blue);
	border-radius: 2px;
	padding: 5px 15px;
}
.cv__box {
	width: 100%;
	max-width: 620px;
	margin-inline: auto;
}
.cv__list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px 20px;
}
.cv__item {
	width: 100%;
	max-width: 300px;
}
.cv__img {
	width: 22vw;
	max-width: 308px;
	position: absolute;
	inset: auto 2.76% 0 auto;
}
@media (width <= 767px) {
	.cv__img {
		width: 100%;
		max-width: 103px;
		inset: auto -50px 0 auto;
	}
}
.cv__illust {
	width: 19.43vw;
	max-width: 272px;
	position: absolute;
	inset: -100px auto auto 5.04%;
}

.tAboutUs__box {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	width: 100%;
	max-width: 800px;
	margin-inline: auto;
}
@media (width <= 767px) {
	.tAboutUs__box {
		flex-direction: column;
	}
}
.tAboutUs__box .box01 {
	width: 145px;
}
.tAboutUs__box .box02 {
	flex: 1;
	max-width: 520px;
}

.tAboutUsDetail {
	display: flex;
	flex-wrap: wrap;
	row-gap: 1lh;
}
.tAboutUsDetail__title {
	font-weight: 500;
	color: var(--color-blue);
	width: 100px;
}
.tAboutUsDetail__text {
	letter-spacing: -0.05em;
	width: calc(100% - 100px);
}

.serviceAbout {
	display: flex;
	align-items: center;
	height: 700px;
	background: url(../img/service/about_img01_pc.webp) 100% center/cover no-repeat;
}
@media (width <= 767px) {
	.serviceAbout {
		align-items: flex-end;
		height: 880px;
		background-image: url(../img/service/about_img01_sp.webp);
		background-position: center top;
		padding-bottom: 60px;
	}
}
.serviceAbout__inner > * {
	width: 100%;
	max-width: 460px;
}
.serviceAbout__title {
	font-size: clamp(50px, 1.762rem + 2.84vw, 68px);
	font-weight: 900;
	color: var(--color-blue);
	line-height: 1.17;
}

.serviceMerit__inner .c-btn02 {
	margin-top: 40px;
}

.serviceMeritBox {
	display: flex;
	align-items: center;
	gap: 0 30px;
	width: 100%;
	max-width: 990px;
	position: relative;
}
.serviceMeritBox__inner {
	width: 600px;
}
@media (width <= 960px) {
	.serviceMeritBox__inner {
		width: 450px;
	}
}
@media (width <= 767px) {
	.serviceMeritBox__inner {
		width: 100%;
	}
}
.serviceMeritBox__title {
	font-size: clamp(24px, 0.743rem + 1.58vw, 34px);
	font-weight: 900;
	color: #fff;
	text-align: center;
	line-height: 1.5;
}
.serviceMeritBox__title-l {
	display: block;
	font-size: clamp(50px, 0.096rem + 6.32vw, 90px);
	color: var(--color-yellow);
	line-height: 1;
	letter-spacing: -0.05em;
	text-shadow: 0 0 2px #0078ff, 0 0 4px #0078ff, 0 0 8px #0078ff, 0 0 12px #0078ff;
}
@media (width <= 767px) {
	.serviceMeritBox__title-l {
		text-align: center;
	}
}
.serviceMeritBox__title-l span {
	font-size: 1.5em;
}
.serviceMeritBox__text {
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	text-align: center;
	margin-top: 30px;
}
.serviceMeritBox__img {
	flex: 1;
	max-width: 338px;
}
@media (width <= 767px) {
	.serviceMeritBox__img {
		max-width: 98px;
		position: absolute;
		inset: -20px -20px auto auto;
	}
}

@media (width <= 767px) {
	.serviceMeritList {
		margin-top: 25px;
	}
}
.serviceMeritList__item {
	background-color: #fff;
	border-radius: 12px;
	padding: 20px;
}
@media (width <= 767px) {
	.serviceMeritList__item {
		padding-bottom: 40px;
	}
}
.serviceMeritList__item + .serviceMeritList__item {
	margin-top: 20px;
}
.serviceMeritList__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 30px;
	width: 100%;
	max-width: 1020px;
	margin-left: auto;
}
@media (width <= 767px) {
	.serviceMeritList__inner {
		flex-direction: column-reverse;
	}
}
.serviceMeritList__inner .box01 {
	width: 550px;
}
@media (width <= 960px) {
	.serviceMeritList__inner .box01 {
		width: 400px;
	}
}
@media (width <= 767px) {
	.serviceMeritList__inner .box01 {
		width: 100%;
	}
}
.serviceMeritList__inner .box02 {
	flex: 1;
	max-width: 420px;
}
@media (width <= 767px) {
	.serviceMeritList__inner .box02 {
		max-width: 100%;
	}
}
@media (width <= 767px) {
	.serviceMeritList__textbox {
		padding-inline: 15px;
	}
}
.serviceMeritList__num {
	display: flex;
	align-items: center;
	gap: 0 0.2em;
	font-family: var(--font-hevetica);
	font-size: clamp(22px, 0.921rem + 0.95vw, 28px);
	font-weight: bold;
	color: #d0e6ff;
}
.serviceMeritList__num span {
	font-size: 2.2142857143em;
	letter-spacing: -0.05em;
}
@media (width <= 767px) {
	.serviceMeritList__num span {
		font-size: 1.2em;
	}
}
.serviceMeritList__title {
	font-size: clamp(22px, 1.046rem + 0.95vw, 30px);
	font-weight: bold;
	letter-spacing: -0.05em;
}
.serviceMeritList__content {
	margin-top: 30px;
}
.serviceMeritList__title01 {
	font-size: 20px;
	font-weight: bold;
	color: var(--color-blue);
}
.serviceMeritList__content01 {
	margin-top: 0.5em;
}
.serviceMeritList__content01 + .serviceMeritList__title01 {
	margin-top: 1em;
}
.serviceMeritList__img {
	border-radius: 6px;
	overflow: hidden;
}

.serviceSolve {
	padding: 145px 0 80px;
}
@media (width <= 767px) {
	.serviceSolve {
		padding: 30px 0 40px;
	}
}
.serviceSolve__inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
}
@media (width <= 960px) {
	.serviceSolve__inner {
		align-items: center;
	}
}
@media (width <= 767px) {
	.serviceSolve__inner {
		flex-direction: column;
	}
}
.serviceSolve__inner .box01 {
	width: 340px;
	padding-bottom: 25px;
}
@media (width <= 767px) {
	.serviceSolve__inner .box01 {
		width: 100%;
		padding-bottom: 0;
	}
}
.serviceSolve__inner .box02 {
	flex: 1;
	width: 100%;
	max-width: 640px;
}
@media (width <= 767px) {
	.serviceSolve__inner .box02 {
		max-width: 100%;
	}
}
.serviceSolve__box {
	position: relative;
}
@media (width <= 767px) {
	.serviceSolve__box {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}
.serviceSolve__box .c-btn02 {
	margin-top: 60px;
}
@media (width <= 767px) {
	.serviceSolve__box .c-btn02 {
		margin-top: 30px;
	}
}
.serviceSolve__title {
	font-size: clamp(60px, 3.144rem + 1.26vw, 68px);
	font-weight: 900;
	color: var(--color-blue);
	line-height: 1.17;
}
@media (width <= 767px) {
	.serviceSolve__title {
		margin-top: 40px;
	}
}
.serviceSolve__title-s {
	display: block;
	font-size: 0.5em;
	margin-bottom: 0.8em;
}
.serviceSolve__img {
	width: 100%;
	max-width: 298px;
	position: absolute;
	inset: auto auto calc(100% + 35px) 0;
}
@media (width <= 767px) {
	.serviceSolve__img {
		max-width: 100%;
		position: relative;
		inset: auto;
	}
}

.serviceSolveDetail {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px;
}
@media (width <= 960px) {
	.serviceSolveDetail {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}
@media (width > 767px) {
	.serviceSolveDetail__box:nth-child(2) .serviceSolveDetail__title::after {
		transition-delay: 0.1s;
	}
	.serviceSolveDetail__box:nth-child(3) .serviceSolveDetail__title::after {
		transition-delay: 0.2s;
	}
	.serviceSolveDetail__box:nth-child(4) .serviceSolveDetail__title::after {
		transition-delay: 0.3s;
	}
}
.serviceSolveDetail__box.animated .serviceSolveDetail__title::after {
	scale: 1;
}
.serviceSolveDetail__title {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	width: 100%;
	max-width: 300px;
	min-height: 80px;
	background-color: #f5f5f5;
	border: 1px solid #dcdcdc;
	border-radius: 12px;
	position: relative;
}
@media (width <= 960px) {
	.serviceSolveDetail__title {
		max-width: 100%;
	}
}
.serviceSolveDetail__title::after {
	content: "";
	display: block;
	width: 40px;
	aspect-ratio: 1;
	background: url(../img/common/icon_arrow03.svg) center/contain no-repeat;
	position: absolute;
	inset: auto auto -25px 50%;
	translate: -50% 0;
	scale: 0;
	transition: scale 0.5s cubic-bezier(0.25, 0, 0, 1.5);
}
.serviceSolveDetail__content {
	font-weight: bold;
	text-align: center;
	border: 1px solid var(--color-blue);
	border-radius: 12px;
	padding: 30px 15px;
	margin-top: 10px;
}

.serviceSolveBnr {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 1320px;
	aspect-ratio: 1320/680;
	background: url(../img/service/solve_img03.webp) center/cover no-repeat;
	border-radius: 12px;
	margin: 90px auto 0;
	position: relative;
}
@media (width <= 767px) {
	.serviceSolveBnr {
		aspect-ratio: 370/210;
		padding-inline: 35px;
		margin-top: 60px;
	}
}
.serviceSolveBnr > * {
	scale: 0;
	transition: scale 0.5s cubic-bezier(0.25, 0, 0, 1.5);
}
.serviceSolveBnr > *:nth-child(2) {
	transition-delay: 0.2s;
}
.serviceSolveBnr > *:nth-child(3) {
	transition-delay: 0.4s;
}
.serviceSolveBnr.animated > * {
	scale: 1;
}
.serviceSolveBnr__text {
	width: 74.24%;
	position: relative;
	z-index: 1;
}
@media (width <= 767px) {
	.serviceSolveBnr__text {
		width: 100%;
	}
}
.serviceSolveBnr__img01, .serviceSolveBnr__img02 {
	position: absolute;
}
.serviceSolveBnr__img01 {
	width: 21.59%;
	inset: 0 auto auto -2.27%;
}
.serviceSolveBnr__img02 {
	width: 27.5%;
	inset: auto -7% 0 auto;
}
@media (width <= 767px) {
	.serviceSolveBnr__img02 {
		width: 20.54%;
		inset: -10.81vw 1.62vw auto auto;
	}
}

.contents {
	width: 100%;
	max-width: 1320px;
	padding-inline: 45px;
}
@media (width <= 767px) {
	.contents {
		padding-inline: 35px;
		overflow: hidden;
	}
}
.contents__inner {
	--width: 600px;
	display: flex;
	align-items: flex-start;
	gap: 30px 60px;
	width: 100%;
	max-width: 1160px;
}
@media (width <= 960px) {
	.contents__inner {
		flex-direction: column;
	}
}
.contents__inner .box01 {
	width: calc(100% - var(--width) - 60px);
	position: sticky;
	inset: 80px auto auto 0;
}
@media (width <= 960px) {
	.contents__inner .box01 {
		position: relative;
		inset: auto;
	}
}
@media (width <= 767px) {
	.contents__inner .box01 {
		display: contents;
	}
}
.contents__inner .box02 {
	width: var(--width);
}
@media (width <= 1280px) {
	.contents__inner .box01,
	.contents__inner .box02 {
		width: calc((100% - 60px) / 2);
	}
}
@media (width <= 960px) {
	.contents__inner .box01,
	.contents__inner .box02 {
		width: 100%;
	}
}
.contents__inner .c-btn02 {
	margin-top: 40px;
}
@media (width <= 767px) {
	.contents__inner .c-btn02 {
		order: 1;
		margin-top: 0;
	}
}

.contentsL__box {
	width: 100%;
	padding-inline: 70px;
	position: relative;
}
@media (width <= 767px) {
	.contentsL__box {
		padding-inline: 0;
	}
}
@media (width <= 767px) {
	.contentsL__swiper {
		overflow: visible !important;
	}
}
.contentsL__item {
	aspect-ratio: 3/2;
	border: 1px solid #dcdcdc;
}
.contentsL__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.contentsL__prev, .contentsL__next {
	position: absolute;
	top: 50%;
	translate: 0 -50%;
}
.contentsL__prev {
	left: 0;
	scale: -1 1;
}
@media (width <= 767px) {
	.contentsL__prev {
		left: -85px;
	}
}
.contentsL__next {
	right: 0;
}
@media (width <= 767px) {
	.contentsL__next {
		right: -85px;
	}
}

.contentsR > * + * {
	margin-top: 40px;
}
.contentsR__title {
	font-size: 36px;
	font-weight: 900;
	color: var(--color-blue);
	line-height: 1.2;
}
.contentsR__title-s {
	font-size: 0.5555555556em;
}

.contentsRbox {
	border-radius: 6px;
	padding: 50px;
	position: relative;
}
.contentsRbox__inner {
	width: 100%;
	max-width: 480px;
	margin-inline: auto;
}
.contentsRbox--01 {
	border: 1px solid #96c8ff;
}
.contentsRbox--02 {
	background-color: var(--color-blue);
}
.contentsRbox__fukidashi {
	position: absolute;
	inset: 0 55px auto auto;
	translate: 0 -50%;
}
@media (width <= 767px) {
	.contentsRbox__fukidashi {
		right: -10px;
	}
}
.contentsRbox__fukidashi img {
	width: auto;
}
.contentsRbox__title {
	font-size: 20px;
	font-weight: bold;
	color: var(--color-blue);
}
.contentsRbox__contents + .contentsRbox__title {
	margin-top: 1em;
}
.contentsRbox__item {
	font-size: 22px;
	font-weight: bold;
	color: #fff;
	letter-spacing: -0.05em;
	padding-left: 1.2em;
	position: relative;
}
.contentsRbox__item::before {
	content: "";
	display: block;
	width: 1lh;
	aspect-ratio: 1;
	background: url(../img/common/icon_light.svg) left center/20px auto no-repeat;
	position: absolute;
	inset: 0 auto auto 0;
}
.contentsRbox__text {
	color: #fff;
	margin-top: 1em;
}

.elFeature {
	padding-bottom: 100px;
}
@media (width <= 767px) {
	.elFeature {
		padding: 40px 0 60px;
	}
}
.elFeature__title {
	width: 100%;
	max-width: 380px;
}
@media (width <= 767px) {
	.elFeature__title {
		max-width: 100%;
	}
}
.elFeature__swiper {
	padding-left: 20px !important;
}
@media (width <= 767px) {
	.elFeature__swiper {
		padding-inline: 35px !important;
	}
}
.elFeature__prev, .elFeature__next {
	position: absolute;
	inset: 90px -50px auto auto;
}
.elFeature__prev {
	inset: 90px auto auto -50px;
	scale: -1 1;
}

.elFeatureList {
	margin-top: 20px;
}
@media (width <= 767px) {
	.elFeatureList {
		flex-direction: column;
		gap: 20px;
	}
}
.elFeatureList__item {
	border: 1px solid #dcdcdc;
	border-radius: 12px;
	padding: 20px 20px 40px 20px;
}
.elFeatureList__box {
	padding-inline: 30px;
	margin: 30px auto 0;
}
.elFeatureList__box > * + * {
	margin-top: 20px;
}
.elFeatureList__img {
	aspect-ratio: 3/2;
	border-radius: 6px;
	overflow: hidden;
}
.elFeatureList__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.elFeatureList__num {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	width: 100px;
	height: 30px;
	background-color: var(--color-blue);
	border-radius: 2px;
}
.elFeatureList__title {
	font-size: 22px;
	font-weight: bold;
}

.elRec__inner {
	position: relative;
}
.elRec__title {
	font-size: clamp(38px, 4.57vw, 64px);
	font-weight: 900;
	text-align: center;
	color: #fff;
	line-height: 1.26;
	text-shadow: 0 0 2px #0078ff, 0 0 4px #0078ff, 0 0 8px #0078ff, 0 0 12px #0078ff;
	position: relative;
	z-index: 1;
}
@media (width <= 767px) {
	.elRec__title {
		text-align: justify;
	}
}
.elRec__parts {
	position: absolute;
}
.elRec__parts--img01 {
	width: 20.28%;
	inset: -180px auto auto 7.16%;
}
@media (width <= 767px) {
	.elRec__parts--img01 {
		width: 100%;
		max-width: 106px;
		inset: -95px auto auto 14.86%;
	}
}
.elRec__parts--img02 {
	width: 26.97%;
	inset: -170px -7.89% auto auto;
}
@media (width <= 767px) {
	.elRec__parts--img02 {
		width: 100%;
		max-width: 150px;
		inset: -85px 1.62% auto auto;
	}
}

.elRecList {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px 95px;
	margin-top: 40px;
	position: relative;
	z-index: 1;
}
.elRecList__item {
	width: 100%;
	max-width: 300px;
}
.elRecList__item > * + * {
	margin-top: 20px;
}
.elRecList__item.animated .elRecList__icon {
	scale: 1;
}
@media (width > 767px) {
	.elRecList__item:nth-child(2) .elRecList__icon {
		transition-delay: 0.2s;
	}
	.elRecList__item:nth-child(3) .elRecList__icon {
		transition-delay: 0.4s;
	}
}
.elRecList__icon {
	width: 100%;
	max-width: 140px;
	margin: 0 auto 30px;
	scale: 0;
	transition: scale 0.3s cubic-bezier(0.25, 0, 0, 1.5);
}
@media (width <= 767px) {
	.elRecList__icon {
		max-width: 100px;
		margin-bottom: 10px;
	}
}
.elRecList__num {
	font-family: var(--font-hevetica);
	font-size: 18px;
	font-weight: bold;
	color: var(--color-yellow);
}
.elRecList__title {
	font-size: 26px;
	font-weight: 900;
	color: var(--color-yellow);
	letter-spacing: -0.05em;
}
.elRecList__text {
	color: #fff;
}

.elLearn {
	background: url(../img/e-learning/learn_img01_pc.webp) center/cover no-repeat;
	padding: 110px 0 410px;
}
@media (width <= 767px) {
	.elLearn {
		background: url(../img/e-learning/learn_img01_sp.webp) center top/contain no-repeat;
		padding: 116.22vw 0 60px;
	}
}
.elLearn__title {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}
@media (width <= 767px) {
	.elLearn__title {
		gap: 10px;
	}
}
.elLearn__title-c {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(16px, 1.86vw, 26px);
	font-weight: bold;
	color: #fff;
	background-color: var(--color-blue);
	border-radius: calc(infinity * 1px);
	min-height: 60px;
	padding: 0 1.5em;
}
@media (width <= 767px) {
	.elLearn__title-c {
		min-height: 30px;
		padding: 0 0.5em;
	}
}
.elLearn__title-b {
	font-size: clamp(33px, 4.57vw, 64px);
	font-weight: 900;
	color: var(--color-blue);
	line-height: 1.25;
}

.elLearnDetail {
	width: 100%;
	max-width: 700px;
	margin-top: 40px;
}
.elLearnDetail__title {
	font-size: 22px;
	font-weight: bold;
	color: var(--color-blue);
	padding-left: 0.5em;
	position: relative;
}
.elLearnDetail__title::before {
	content: "";
	display: block;
	width: 5px;
	height: 1em;
	background-color: var(--color-blue);
	position: absolute;
	inset: calc(0.5lh - 0.5em) auto auto 0;
}
.elLearnDetail__content {
	padding-left: 0.5em;
	margin-top: 1em;
}
.elLearnDetail__content, .elLearnDetail__content + .elLearnDetail__title {
	margin-top: 1em;
}

.elMerit {
	margin-top: -280px;
}
@media (width <= 767px) {
	.elMerit {
		margin-top: 0;
	}
}
.elMerit__inner {
	width: 100%;
	max-width: 1140px;
	background-color: var(--color-blue);
	border-radius: 12px;
	padding-block: 80px;
	position: relative;
}
@media (width <= 1140px) {
	.elMerit__inner {
		border-radius: 0;
		padding-top: 40px;
		padding-bottom: 50px;
	}
}
.elMerit__title {
	width: 100%;
	max-width: 670px;
	position: absolute;
	inset: -50px auto auto 50%;
	translate: -50% 0;
}
@media (width <= 767px) {
	.elMerit__title {
		position: relative;
		inset: auto;
		translate: 0 0;
	}
}

.elMeritList {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	width: 100%;
	max-width: 940px;
}
.elMeritList__item {
	width: 300px;
	background-color: #fff;
}
@media (width > 767px) {
	.elMeritList__item:nth-child(2) {
		transition-delay: 0.2s;
	}
	.elMeritList__item:nth-child(3) {
		transition-delay: 0.4s;
	}
}
@media (width <= 767px) {
	.elMeritList__item {
		width: 100%;
	}
}
.elMeritList__title {
	display: flex;
	align-items: center;
	min-height: 2lh;
}
@media (width <= 767px) {
	.elMeritList__title {
		min-height: auto;
	}
}

.elPlan {
	padding: 40px 0 80px;
}
@media (width <= 767px) {
	.elPlan {
		padding: 0 0 40px;
	}
}
.elPlan__inner {
	background: url(../img/common/bg_dot.webp) center/16px 16px;
	padding-block: 100px;
	position: relative;
}
@media (width <= 767px) {
	.elPlan__inner {
		padding-top: 60px;
		padding-bottom: 10px;
	}
}
.elPlan__inner > * + * {
	margin-top: 40px;
}
@media (width <= 767px) {
	.elPlan__inner > * + * {
		margin-top: 30px;
	}
}
.elPlan__parts {
	margin-top: 0;
	position: absolute;
}
.elPlan__parts--img01 {
	width: 15.61%;
	inset: 50px auto auto 9.65%;
}
@media (width <= 767px) {
	.elPlan__parts--img01 {
		width: 100%;
		max-width: 100px;
		inset: -22px auto auto 8.11%;
	}
}
.elPlan__parts--img02 {
	width: 21.05%;
	inset: 50px 4.39% auto auto;
}
.elPlan__parts--img03 {
	width: 17.11%;
	inset: auto auto -35px 5.88%;
}
@media (width <= 767px) {
	.elPlan__parts--img03 {
		width: 100%;
		max-width: 110px;
		position: relative;
		inset: auto;
	}
}
.elPlan__parts--img04 {
	width: 25.96%;
	inset: auto 1.4% 0 auto;
}
@media (width <= 767px) {
	.elPlan__parts--img04 {
		max-width: 174px;
		width: 100%;
		z-index: 1;
	}
}

.elPlanBtn {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
.elPlanBtn__item {
	width: 100%;
	max-width: 300px;
}

.elPlanCv {
	width: 100%;
	max-width: 460px;
	background-color: #fff;
	border: 1px solid var(--color-blue);
	border-radius: 12px;
	padding: 30px 35px;
	position: relative;
	z-index: 1;
}
@media (width <= 767px) {
	.elPlanCv {
		margin-top: 20px;
	}
}
.elPlanCv__title {
	font-size: clamp(22px, 2.14vw, 30px);
	font-weight: bold;
	color: var(--color-blue);
	text-align: center;
	padding-inline: 40px;
	margin-bottom: 10px;
	position: relative;
}
@media (width <= 767px) {
	.elPlanCv__title {
		padding-left: 0;
	}
}
.elPlanCv__title::after {
	content: "";
	display: block;
	width: 40px;
	aspect-ratio: 1;
	background: url(../img/common/icon_arrow03.svg) center/contain no-repeat;
	rotate: -90deg;
	position: absolute;
	inset: 50% 0 auto auto;
	translate: 0 -50%;
	transition: 0.2s ease-out;
}
@media (any-hover: hover) {
	.elPlanCv:hover .elPlanCv__title::after {
		right: -5px;
	}
}

.planCont__inner {
	width: 100%;
	padding-inline: 20px;
	overflow: auto;
}
.planCont__list {
	display: flex;
	gap: 20px;
	width: 1060px;
	padding-left: 120px;
	margin: 40px auto 0;
}
@media (width <= 767px) {
	.planCont__list {
		padding-left: 80px;
	}
}
@media (width <= 767px) {
	.planCont__list--spW620 {
		max-width: 620px;
	}
}
@media (width <= 767px) {
	.planCont__list--spW700 {
		max-width: 700px;
	}
}
@media (width <= 767px) {
	.planCont__list--spW820 {
		max-width: 820px;
	}
}
@media (width <= 767px) {
	.planCont__list--spW860 {
		max-width: 860px;
	}
}
@media (width <= 767px) {
	.planCont__list--spW940 {
		max-width: 940px;
	}
}
.planCont__item {
	flex: 1;
	background-color: #fff;
	border: 1px solid #96c8ff;
	border-radius: 6px;
	padding-bottom: 25px;
}
.planCont__item:first-child .planCont__content::before {
	content: "";
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	white-space: pre-wrap;
	width: 120px;
	min-height: 40px;
	background-color: var(--color-blue);
	border-radius: 2px 0 0 2px;
	position: absolute;
	inset: 0 100% auto auto;
}
@media (width <= 767px) {
	.planCont__item:first-child .planCont__content::before {
		width: 80px;
	}
}
.planCont__item:first-child .planCont__content--price::before {
	content: "基本料金";
}
.planCont__item:first-child .planCont__content--num::before {
	content: "アカウント数";
}
.planCont__item:first-child .planCont__content--add::before {
	content: "アカウント追加";
}
@media (width <= 767px) {
	.planCont__item:first-child .planCont__content--add::before {
		content: "アカウント\a追加";
		min-height: 60px;
	}
}
.planCont__item:first-child .planCont__content--rem::before {
	content: "備考";
}
.planCont__item:first-child .planCont__content--user::before {
	content: "ユーザー数";
}
.planCont__item:first-child .planCont__content--band::before {
	content: none;
}
.planCont__item:not(:first-child) .planCont__content::before {
	content: "";
	display: block;
	width: 20px;
	height: 100%;
	background-color: #e6f0ff;
	position: absolute;
	inset: 0 calc(100% + 1px) auto auto;
	z-index: -1;
}
.planCont__item--w320-240 {
	flex: 0 1 auto;
	width: 320px;
}
@media (width <= 767px) {
	.planCont__item--w320-240 {
		width: 240px;
	}
}
@media (width <= 767px) {
	.planCont__item--spW160 {
		flex: 0 1 auto;
		width: 160px;
	}
}
.planCont__detail > *:not(.planCont__content--rem) {
	text-align: center;
}
.planCont__title {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: var(--color-blue);
	line-height: 1.25;
	min-height: 70px;
}
.planCont__title-black {
	font-weight: 400;
	color: #232323;
}
.planCont__content {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.375;
	letter-spacing: -0.07em;
	min-height: 40px;
	background-color: #e6f0ff;
	padding: 5px 20px;
	position: relative;
}
.planCont__content + .planCont__content {
	margin-top: 20px;
}
.planCont__content--band {
	width: calc(400% + 60px + 6px - 40px);
	border: 1px solid var(--color-blue);
	border-radius: 4px;
	left: 20px;
}
.planCont__content--band-flex {
	display: flex;
	align-items: center;
	gap: 1em;
}
.planCont__content--band-flex > dt {
	font-size: 14px;
	font-weight: bold;
	color: var(--color-blue);
}
.planCont__content--band-l {
	font-size: 18px;
	font-weight: 500;
}
.planCont__content--band--2column {
	width: calc(200% + 20px + 2px - 40px);
}
.planCont__content--brank {
	background-color: transparent;
}
.planCont__content--fz14 {
	font-size: 14px;
}
.planCont__content--h60 {
	min-height: 60px;
}
.planCont__content--h80 {
	min-height: 80px;
}
.planCont__content--h80-100 {
	min-height: 80px;
}
@media (width <= 767px) {
	.planCont__content--h80-100 {
		min-height: 100px;
	}
}
.planCont__content--h160-200 {
	min-height: 160px;
}
@media (width <= 767px) {
	.planCont__content--h160-200 {
		min-height: 200px;
	}
}

.c-price {
	font-size: 18px;
	font-weight: 500;
}
.c-price small {
	font-size: 14px;
}

.planContBox {
	width: 100%;
	max-width: 1060px;
	margin-top: 1em;
}
@media (width <= 960px) {
	.planContBox {
		padding-inline: 20px;
	}
}
.planContBox__text {
	width: 100%;
	max-width: 940px;
	margin-left: auto;
}

.planOl {
	padding-bottom: 140px;
}
@media (width <= 767px) {
	.planOl {
		padding-bottom: 60px;
	}
}

.qualAbout__inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
}
@media (width <= 767px) {
	.qualAbout__inner {
		flex-direction: column-reverse;
	}
}
.qualAbout__inner .box01 {
	width: 650px;
}
@media (width <= 960px) {
	.qualAbout__inner .box01 {
		width: 450px;
	}
}
@media (width <= 767px) {
	.qualAbout__inner .box01 {
		width: 100%;
	}
}
.qualAbout__inner .box02 {
	flex: 1;
	max-width: 400px;
}
@media (width <= 767px) {
	.qualAbout__inner .box02 {
		max-width: 100%;
	}
}
.qualAbout__title {
	font-size: clamp(35px, 4.86vw, 68px);
	font-weight: 900;
	color: var(--color-blue);
	line-height: 1.1;
}
.qualAbout__img {
	aspect-ratio: 1;
	border-radius: 12px;
	overflow: hidden;
}
.qualAbout__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.qualMerit {
	margin-top: 0;
}

.qualCareer__wrapper {
	width: 100%;
	max-width: 1210px;
}
.qualCareer__inner {
	display: flex;
	align-items: flex-start;
	gap: 50px 40px;
	width: 100%;
	max-width: 1115px;
	margin-left: auto;
}
@media (width <= 960px) {
	.qualCareer__inner {
		flex-direction: column;
	}
}
.qualCareer__inner .box01 {
	width: 380px;
	position: sticky;
	inset: 80px auto auto 0;
}
@media (width <= 960px) {
	.qualCareer__inner .box01 {
		width: 100%;
		max-width: 600px;
		margin-inline: auto;
		position: relative;
		inset: auto;
	}
}
.qualCareer__inner .box02 {
	flex: 1;
	padding-top: 25px;
}
@media (width <= 767px) {
	.qualCareer__inner .box02 {
		width: 100%;
		padding-top: 0;
	}
}

.qualCareerTbox__title {
	font-size: clamp(50px, 4.57vw, 63px);
	font-weight: 900;
	color: var(--color-blue);
	line-height: 1.25;
}
.qualCareerTbox__box {
	margin-top: 50px;
	position: relative;
}
.qualCareerTbox__subtitle {
	font-size: 22px;
	font-weight: bold;
	color: var(--color-blue);
}
.qualCareerTbox__text {
	color: var(--color-blue);
	margin-top: 1em;
}
@media (width <= 767px) {
	.qualCareerTbox__img {
		width: 100%;
		max-width: 168px;
		position: absolute;
		inset: -25px -50px auto auto;
	}
}

.qualCareerDetail__title {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	border: 1px solid #a7c9e6;
	border-radius: calc(infinity * 1px);
	width: 100%;
	max-width: 290px;
	min-height: 46px;
	padding: 0.5em 1.5em;
}
@media (width <= 767px) {
	.qualCareerDetail__title {
		margin-inline: auto;
	}
}
.qualCareerDetail__content {
	margin-top: 30px;
}
.qualCareerDetail__content + .qualCareerDetail__title {
	margin-top: 50px;
}
@media (width <= 767px) {
	.qualCareerDetail__content + .qualCareerDetail__title {
		margin-top: 20px;
	}
}
@media (width > 1280px) {
	.qualCareerDetail__content--table {
		margin-top: -70px;
	}
}
@media (width <= 767px) {
	.qualCareerDetail__content--table {
		width: calc(100vw - 20px);
		margin-left: -25px;
	}
}

.qualCareerLevel__box {
	display: flex;
	align-items: baseline;
	padding: 40px 70px;
	border-bottom: 1px solid #dcdcdc;
}
@media (width <= 767px) {
	.qualCareerLevel__box {
		padding: 30px 0;
	}
}
.qualCareerLevel__box:first-child {
	padding: 0 70px 1em;
}
@media (width <= 767px) {
	.qualCareerLevel__box:first-child {
		padding: 0 0 1em;
	}
}
.qualCareerLevel__box:first-child > * {
	font-size: 14px;
	font-weight: 500;
	color: var(--color-blue);
}
.qualCareerLevel__box:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}
.qualCareerLevel__title {
	display: flex;
	align-items: baseline;
	font-weight: 500;
	color: var(--color-blue);
	gap: 10px;
	width: 50px;
}
.qualCareerLevel__title-style {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	line-height: 1;
	width: 30px;
	aspect-ratio: 1;
}
.qualCareerLevel__title-style-circle {
	color: #fff;
	background-color: var(--color-blue);
	border-radius: 50%;
	padding-bottom: 2px;
}
.qualCareerLevel__title-text {
	flex: 1;
}
.qualCareerLevel__text {
	flex: 1;
}

.qe__content {
	display: flex;
	gap: 40px 0;
}
@media (width <= 960px) {
	.qe__content {
		flex-direction: column;
	}
}
.qe__content .box01 {
	width: 415px;
}
@media (width <= 960px) {
	.qe__content .box01 {
		width: 100%;
	}
}
.qe__content .box02 {
	flex: 1;
}
@media (width <= 960px) {
	.qe__content .box02 {
		width: 100%;
	}
}
.qe__content + .qe__content {
	padding-top: 100px;
	margin-top: 100px;
	position: relative;
}
@media (width <= 767px) {
	.qe__content + .qe__content {
		padding-top: 60px;
		margin-top: 60px;
	}
}
.qe__content + .qe__content::before {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: #dcdcdc;
	position: absolute;
	inset: 0 auto auto 0;
}
@media (width <= 960px) {
	.qe__content + .qe__content::before {
		width: 100vw;
		left: -35px;
	}
}
.qe__title {
	font-size: 30px;
	font-weight: 900;
	color: var(--color-blue);
	text-align: center;
	line-height: 1.33;
}
.qe__text {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	color: #fff;
	text-align: center;
	line-height: 1.375;
	background-color: #a0a0a0;
	border-radius: 12px;
	max-width: 460px;
	min-height: 80px;
	padding: 10px;
}
@media (width <= 960px) {
	.qe__text {
		margin-inline: auto768;
	}
}

.qeDetail {
	counter-reset: number 0;
}
.qeDetail > * {
	padding-left: 50px;
}
.qeDetail__title {
	font-size: 22px;
	font-weight: bold;
	color: var(--color-blue);
	padding-left: 50px;
	position: relative;
}
.qeDetail__title::before {
	counter-increment: number 1;
	content: counter(number);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	line-height: 1;
	width: 30px;
	aspect-ratio: 1;
	background-color: var(--color-blue);
	border-radius: 50%;
	padding-bottom: 2px;
	position: absolute;
	inset: 5px auto auto 0;
}
.qeDetail__title span {
	flex: 1;
}
.qeDetail__content {
	margin-top: 30px;
}
@media (width <= 767px) {
	.qeDetail__content {
		padding-left: 0;
	}
}
.qeDetail__content > * + * {
	margin-top: 30px;
}
@media (width <= 767px) {
	.qeDetail__content > p {
		padding-left: 50px;
	}
}
@media (width <= 767px) {
	.qeDetail__content .c-btn02 {
		margin-inline: auto;
	}
}
.qeDetail__content + .qeDetail__title {
	margin-top: 80px;
}
@media (width <= 767px) {
	.qeDetail__content + .qeDetail__title {
		margin-top: 60px;
	}
}

.qeDetailBtn {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
@media (width <= 767px) {
	.qeDetailBtn {
		justify-content: center;
	}
}
.qeDetailBtn__item {
	width: 100%;
	max-width: 300px;
}

.voiceSummary__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	width: 100%;
	max-width: 1330px;
}
@media (width <= 960px) {
	.voiceSummary__list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media (width <= 767px) {
	.voiceSummary__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (width <= 640px) {
	.voiceSummary__list {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}
.voiceSummary__link {
	border: 1px solid #dcdcdc;
	border-radius: 12px;
	padding: 20px 20px 60px 20px;
}
.voiceSummary__link > *:not(.voiceSummary__img) {
	padding-inline: 30px;
}
.voiceSummary__link > * + * {
	margin-top: 20px;
}
.voiceSummary__link * {
	transition: 0.2s ease-out;
}
@media (any-hover: hover) {
	.voiceSummary__link:hover * {
		color: var(--color-blue);
	}
	.voiceSummary__link:hover img {
		scale: 1.05;
	}
}
.voiceSummary__img {
	aspect-ratio: 3/2;
	border-radius: 6px;
	margin-bottom: 30px;
	overflow: hidden;
}
.voiceSummary__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.voiceSummary__title {
	font-size: 18px;
	font-weight: bold;
}
.voiceSummary__name {
	display: block;
	font-weight: 500;
	color: var(--color-blue);
}

.vd__inner {
	border: 1px solid #dcdcdc;
	border-radius: 12px;
	padding-block: 100px 120px;
}
@media (width <= 1160px) {
	.vd__inner {
		border-top: 0;
		border-right: 0;
		border-left: 0;
		border-radius: 0;
	}
}
@media (width <= 767px) {
	.vd__inner {
		padding-block: 0 60px;
	}
}
.vd__img {
	width: 100%;
	max-width: 480px;
	border-radius: 6px;
	margin-inline: auto;
	overflow: hidden;
}
.vd__img img {
	width: 100%;
	height: auto;
}
.vd__title, .vd__name {
	max-width: max-content;
	margin-inline: auto;
}
.vd__title {
	font-size: 22px;
	font-weight: bold;
	margin-top: 100px;
}
@media (width <= 767px) {
	.vd__title {
		margin-top: 40px;
	}
}
.vd__name {
	display: block;
	font-size: 18px;
	font-weight: 500;
	color: var(--color-blue);
	margin-top: 40px;
}
@media (width <= 767px) {
	.vd__name {
		margin-top: 30px;
	}
}
.vd__content {
	width: 100%;
	max-width: 800px;
	border-top: 1px dotted var(--color-blue);
	padding-top: 100px;
	margin-top: 30px;
}
@media (width <= 767px) {
	.vd__content {
		padding-top: 60px;
	}
}
.vd__content > * + * {
	margin-top: 50px;
}
.vd__content h3, .vd__content h4, .vd__content a, .vd__content li {
	font-weight: 500;
}
.vd__content h3, .vd__content h4 {
	color: var(--color-blue);
}
.vd__content h3 {
	font-size: 20px;
}
.vd__content h4 {
	font-size: 18px;
}
.vd__content a {
	text-decoration: underline;
	text-decoration-color: var(--color-blue);
	text-underline-offset: 8px;
}
.vd__content ul > li {
	padding-left: 1em;
	position: relative;
}
.vd__content ul > li::before {
	content: "●";
	font-size: 0.75em;
	color: var(--color-blue);
	position: absolute;
	top: 0.25em;
	left: 0;
}
.vd__content img {
	max-width: 480px;
	border-radius: 6px;
	margin-inline: auto;
}

.flowStep__item {
	--width: 550px;
	--gap: 90px;
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 60px var(--gap);
}
@media (width <= 960px) {
	.flowStep__item {
		--width: 400px;
		--gap: 50px;
	}
}
@media (width <= 767px) {
	.flowStep__item {
		flex-direction: column-reverse;
		gap: 40px;
	}
}
.flowStep__item .box01 {
	width: var(--width);
}
@media (width <= 767px) {
	.flowStep__item .box01 {
		width: 100%;
	}
}
.flowStep__item .box02 {
	width: calc(100% - var(--width) - var(--gap));
}
@media (width <= 767px) {
	.flowStep__item .box02 {
		width: 100%;
	}
}
.flowStep__item .flowStepCv {
	width: 100%;
}
@media (width <= 767px) {
	.flowStep__item .flowStepCv {
		order: -1;
	}
}
.flowStep__item + .flowStep__item {
	margin-top: 90px;
}
@media (width <= 767px) {
	.flowStep__item + .flowStep__item {
		margin-top: 60px;
	}
}
.flowStep__box > * + * {
	margin-top: 30px;
}
.flowStep__num {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-hevetica);
	font-size: clamp(22px, 2vw, 28px);
	font-weight: bold;
	color: var(--color-blue);
	line-height: 1;
}
.flowStep__num span {
	font-size: 2.2em;
}
.flowStep__title {
	font-size: 30px;
	font-weight: bold;
	line-height: 1.66;
}
.flowStep__img {
	aspect-ratio: 3/2;
	border-radius: 12px;
	overflow: hidden;
}
.flowStep__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.flowStepCv__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 19px;
	font-weight: bold;
	text-align: center;
	color: #fff;
	line-height: 1.3;
	letter-spacing: -0.05em;
	width: 100%;
	max-width: 440px;
	min-height: 80px;
	background: var(--color-gradBlue);
	border: 1px solid #a7c9e6;
	border-radius: calc(infinity * 1px);
	padding: 10px 90px;
	position: relative;
}
@media (width <= 767px) {
	.flowStepCv__btn {
		padding-inline: 40px 80px;
	}
}
.flowStepCv__btn img {
	width: 86px;
	position: absolute;
	inset: auto 0 0 auto;
	transform-origin: right bottom;
	transition: scale 0.2s ease-out;
}
@media (width <= 767px) {
	.flowStepCv__btn img {
		width: 75px;
	}
}
@media (any-hover: hover) {
	.flowStepCv__btn:hover img {
		scale: 1.1;
	}
}

.flowPlan {
	padding-bottom: 120px;
}
@media (width <= 767px) {
	.flowPlan {
		padding-bottom: 60px;
	}
}
.flowPlan__wrapper {
	width: 100%;
	max-width: 1320px;
	background-color: #eaf5ff;
	border-radius: 12px;
	padding-block: 60px;
}
@media (width <= 1320px) {
	.flowPlan__wrapper {
		border-radius: 0;
	}
}
.flowPlan__inner {
	--width: 200px;
	display: flex;
	flex-wrap: wrap;
	gap: 60px 0;
	width: 100%;
	max-width: 1140px;
}
@media (width <= 767px) {
	.flowPlan__inner {
		flex-direction: column;
		gap: 40px;
	}
}
@media (width <= 767px) {
	.flowPlan__inner .c-title02 {
		text-align: center;
	}
}
.flowPlan__inner .box01 {
	width: var(--width);
	padding-top: 70px;
}
@media (width <= 767px) {
	.flowPlan__inner .box01 {
		width: 100%;
		padding-top: 0;
	}
}
.flowPlan__inner .box02 {
	width: calc(100% - var(--width));
}
@media (width <= 767px) {
	.flowPlan__inner .box02 {
		width: 100%;
	}
}
.flowPlan__inner .flowStepCv {
	width: 100%;
}

.flowPlanList {
	margin-top: 0;
}
.flowPlanList__num {
	width: 100%;
	max-width: max-content;
	padding-inline: 10px;
}

.faq__inner {
	display: flex;
	gap: 40px 90px;
}
@media (width <= 960px) {
	.faq__inner {
		gap: 40px;
	}
}
@media (width <= 767px) {
	.faq__inner {
		flex-direction: column;
	}
}
.faq__inner .box01 {
	width: 280px;
	height: max-content;
	position: sticky;
	inset: 100px auto auto 0;
}
@media (width <= 767px) {
	.faq__inner .box01 {
		width: 100%;
		position: relative;
		inset: auto;
	}
}
.faq__inner .box02 {
	flex: 1;
}
@media (width <= 767px) {
	.faq__inner .box02 {
		flex: 0 1 auto;
	}
}

.faqCat {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.faqCat__item {
	width: 100%;
}
@media (width <= 767px) {
	.faqCat__item {
		width: calc((100% - 10px) / 2);
		margin-top: 0;
	}
}
.faqCat__btn {
	display: flex;
	align-items: center;
	font-family: var(--font-default);
	font-size: 16px;
	font-weight: 500;
	color: #a0a0a0;
	width: 100%;
	min-height: 70px;
	background-color: #fff;
	border: 1px solid #aac8e6;
	border-radius: 6px;
	padding: 10px 40px;
	cursor: pointer;
}
@media (width <= 767px) {
	.faqCat__btn {
		justify-content: center;
		min-height: 50px;
		padding: 5px;
	}
}
.faqCat__btn--active {
	color: var(--color-blue);
	border-color: var(--color-blue);
}

.faqKinds {
	display: none;
}
.faqKinds__title {
	font-size: 28px;
	font-weight: bold;
	color: var(--color-blue);
}
.faqKinds--active {
	display: block;
	animation: faqFeed 0.5s ease-out forwards;
}

.faqList__question {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
	border-bottom: 1px solid #dcdcdc;
	padding: 3em 50px 3em 30px;
	position: relative;
	transition: border-bottom 0.2s ease-out;
	cursor: pointer;
}
@media (width <= 767px) {
	.faqList__question {
		padding-block: 2em;
	}
}
.faqList__question::before {
	content: "Q";
	color: var(--color-blue);
	position: absolute;
	inset: 2.9em auto auto 0;
}
@media (width <= 767px) {
	.faqList__question::before {
		top: 1.9em;
	}
}
@media (any-hover: hover) {
	.faqList__question:hover .faqList__question-toggle {
		inset: calc(50% + 10px) 0 auto auto;
	}
}
.faqList__question.open {
	border-color: transparent;
}
.faqList__question.open .faqList__question-toggle {
	background-color: #b4b4b4;
	border-color: transparent;
}
.faqList__question.open .faqList__question-toggle::before, .faqList__question.open .faqList__question-toggle::after {
	background-color: #fff;
}
.faqList__question.open .faqList__question-toggle::after {
	rotate: 0deg;
}
.faqList__question-toggle {
	width: 40px;
	aspect-ratio: 1;
	border: 1px solid var(--color-blue);
	border-radius: 50%;
	position: absolute;
	inset: 50% 0 auto auto;
	translate: 0 -50%;
	transition: 0.2s ease-out;
}
.faqList__question-toggle::before, .faqList__question-toggle::after {
	content: "";
	display: block;
	width: 14px;
	height: 1px;
	background-color: var(--color-blue);
	position: absolute;
	inset: 50% auto auto 50%;
	translate: -50% -50%;
	transition: 0.2s ease-out;
}
.faqList__question-toggle::after {
	rotate: 90deg;
}
.faqList__answer {
	display: none;
	color: var(--color-blue);
	background-color: #ebf5ff;
	border-radius: 6px;
	padding: 45px 30px;
}
@media (width <= 767px) {
	.faqList__answer {
		padding: 30px;
	}
}
.faqList__text {
	width: 100%;
	max-width: 580px;
	margin-inline: auto;
}

@keyframes faqFeed {
	from {
		opacity: 0;
		translate: 0 50px;
	}
	to {
		opacity: 1;
		translate: 0 0;
	}
}
.ft__title {
	font-size: 36px;
	font-weight: 900;
	color: var(--color-blue);
	line-height: 1.65;
}
.ft__title span {
	display: block;
	font-size: 0.77em;
	font-weight: bold;
}
.ft__item {
	font-size: 18px;
	font-weight: bold;
	color: var(--color-blue);
	text-align: center;
}
.ft__item + .ft__item {
	margin-top: 0.2em;
}
.ft .contents__inner {
	--width: 490px;
}
.ft .contentsRbox {
	padding-block: 40px;
}
.ft .contentsRbox__fukidashi {
	right: 10px;
}
@media (width <= 767px) {
	.ft .contentsRbox__fukidashi {
		right: -10px;
	}
}

.contact--ft {
	padding-bottom: 120px;
}
@media (width <= 767px) {
	.contact--ft {
		padding-bottom: 60px;
	}
}
.contact__inner {
	background-color: #ebf5ff;
	border-radius: 12px;
}
@media (width <= 1090px) {
	.contact__inner {
		border-radius: 0;
	}
}
.contact__form {
	width: 100%;
	max-width: 910px;
}
.contact__details {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 50px;
	border-top: 1px solid #dcdcdc;
	padding-top: 60px;
	margin-top: 60px;
}
@media (width <= 767px) {
	.contact__details {
		flex-direction: column;
		row-gap: 0;
		padding-top: 30px;
		margin-top: 30px;
	}
}
.contact__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: bold;
	color: var(--color-blue);
	width: 170px;
	height: max-content;
	min-height: 40px;
	position: relative;
}
@media (width <= 767px) {
	.contact__title {
		column-gap: 10px;
		width: 100%;
		max-width: max-content;
	}
}
.contact__title--required::after {
	content: "必須";
	display: block;
	font-size: 13px;
	color: #fff;
	background-color: #d30011;
	padding-inline: 5px;
}
.contact__contents {
	width: calc(100% - 220px);
}
@media (width <= 767px) {
	.contact__contents {
		width: 100%;
	}
}
.contact__contents > * {
	display: block;
}
.contact__contents > * + * {
	margin-top: 10px;
}
.contact__contents input::placeholder {
	font-size: 14px;
	color: #a0a0a0;
	font-weight: bold;
	letter-spacing: -0.05em;
}
.contact__contents input[type=text],
.contact__contents input[type=email],
.contact__contents input[type=tel],
.contact__contents textarea {
	width: 100%;
	border: 0;
	border-radius: 0;
	min-height: 40px;
	padding: 5px 10px;
}
.contact__contents--radio .wpcf7-list-item + .wpcf7-list-item {
	display: block;
	margin-top: 12px;
}
.contact__contents--radio label {
	padding-left: 40px;
	position: relative;
}
.contact__contents--radio label::before {
	content: "";
	display: block;
	width: 30px;
	aspect-ratio: 1;
	background: url(../img/common/icon_check01.svg) center/contain no-repeat;
	position: absolute;
	inset: 50% auto auto 0;
	translate: 0 -50%;
	transition: background-image 0.2s ease-out;
}
.contact__contents--radio label:has(input:checked)::before {
	background-image: url(../img/common/icon_check02.svg);
}
.contact__contents--radio input[type=checkbox],
.contact__contents--radio input[type=radio] {
	all: unset;
}
.contact__contents--tel > * {
	width: 100%;
	max-width: 140px;
}
@media (width <= 767px) {
	.contact__contents + .contact__title {
		margin-top: 30px;
	}
}
.contact__privacy {
	height: 240px;
	background-color: #fff;
	border-radius: 12px;
	padding: 40px 35px;
	margin-top: 40px;
	overflow: auto;
}
.contact__privacy > dt {
	font-weight: bold;
}
.contact__privacy > dd {
	margin-top: 0.5lh;
}
.contact__privacy > dd + dt {
	margin-top: 1lh;
}
.contact__btn {
	width: 100%;
	max-width: 300px;
	margin-inline: auto;
	position: relative;
}
.contact__btn::after {
	content: "";
	width: 10px;
	aspect-ratio: 1;
	background: url(../img/common/icon_arrow01.svg) center/contain no-repeat;
	position: absolute;
	inset: 50% 40px auto auto;
	translate: 0 -50%;
	transition: inset 0.2s ease-out;
	filter: brightness(0) invert(1);
}
.contact__btn input {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: #fff;
	text-align: center;
	line-height: 1.22;
	width: 100%;
	min-height: 80px;
	background: var(--color-gradBlue);
	border: 1px solid #a7c9e6;
	border-radius: calc(infinity * 1px);
	padding: 5px 55px;
	position: relative;
	transition: 0.2s ease-out;
}
.contact__btn input:disabled {
	background: #dcdcdc;
}
@media (any-hover: hover) {
	.contact__btn:hover::after {
		right: 30px;
	}
}
.contact .wpcf7-list-item {
	margin-left: 0;
}
.contact .wpcf7-spinner {
	display: none;
}

.thanks__box {
	width: 100%;
	max-width: max-content;
}
.thanks__box p + p {
	margin-top: 1em;
}

.contactBox__title {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	line-height: 1.65;
}
.contactBox__text {
	margin-top: 50px;
}
.contactBox__text span {
	color: #d30011;
}/*# sourceMappingURL=style.css.map */