@charset "UTF-8";
/*-------------------------
Custom Properties
---------------------------*/
:root {
	/* color */
	--color-default: #000000;
	--color-blue: #3a59cf;
	--color-blue01: #eceffa;
	--color-orange: #ff9800;
	--color-orange01: #fff9f1;
	--grad: linear-gradient(90deg, #3A59CF 0%, #6B82DB 100%);
	--grad01: linear-gradient(270deg, #3A59CF 0%, #6B82DB 100%);
	/* font */
	--font-default: "Helvetica Neue", Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo,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 {
	-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;
}

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 {
	display: -webkit-box;
	display: flex;
	justify-content: center;
	align-items: center;
}

label input {
	display: block;
}

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

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

input[type=radio],
input[type=checkbox] {
	display: inline-block;
	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;
}

select {
	color: #000;
	background-color: #fff;
}

/*-------------------------
common
---------------------------*/
@media (width <= 640px) {
	.pc {
		display: none !important;
	}
}
@media (width > 640px) {
	.sp {
		display: none !important;
	}
}
/* サイド */
.box-side {
	padding-inline: 20px;
}

/* 横幅 */
.w960 {
	width: 100%;
	max-width: 960px;
}
.w960.box-side {
	max-width: 1000px;
}

/* 背景 */
.c-bg-fixed {
	clip-path: inset(0 0 0 0);
	position: relative;
}
.c-bg-fixed::before {
	content: "";
	display: block;
	width: 100%;
	height: 100vh;
	background: center/cover no-repeat;
	position: fixed;
	inset: 0 auto auto 0;
	z-index: -1;
}
.c-bg-fixed--sol::before {
	background-image: url(../img/home/sol_bg01.webp);
	opacity: 0.05;
}
.c-bg-fixed--case::before {
	background-image: url(../img/home/case_bg01.webp);
	opacity: 0.4;
}
.c-bg-fixed--service::before, .c-bg-fixed--service::after {
	content: "";
	display: block;
	width: 100%;
	height: 28.57vw;
	background: center/contain no-repeat;
	position: fixed;
	left: 0;
	z-index: -1;
}
.c-bg-fixed--service::before {
	background-image: url(../img/home/service_bg01.webp);
}
.c-bg-fixed--service::after {
	background-image: url(../img/home/service_bg02.webp);
	bottom: 0;
}
.c-bg-fixed--about::before {
	background-image: url(../img/home/about_bg01.webp);
	opacity: 0.09;
}
.c-bg-fixed--suggest::before {
	background-image: url(../img/home/suggest_bg01.webp);
	opacity: 0.05;
}
.c-bg-fixed--voice::before {
	background-image: url(../img/home/voice_bg01.webp);
	opacity: 0.05;
}

/* セクション */
.c-sec01 {
	padding-block: 120px;
}
@media (width <= 640px) {
	.c-sec01 {
		padding-block: 60px;
	}
}

/* マージン */
.mt20 {
	margin-top: 20px !important;
}

.c-mt-s {
	margin-top: 30px !important;
}
@media (width <= 640px) {
	.c-mt-s {
		margin-top: 20px !important;
	}
}

.c-mt-m {
	margin-top: 60px !important;
}
@media (width <= 640px) {
	.c-mt-m {
		margin-top: 40px !important;
	}
}

.c-mt-l {
	margin-top: 100px !important;
}
@media (width <= 640px) {
	.c-mt-l {
		margin-top: 80px !important;
	}
}

.m-auto {
	margin-inline: auto !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: "●";
}
.c-list01--triangle > li::before {
	content: "▶︎";
}
.c-list01--check > li {
	padding-left: 1lh;
}
.c-list01--check > li::before {
	content: "";
	display: block;
	width: 1lh;
	aspect-ratio: 1;
	background: url(../img/common/icon_check01.svg) center/21px auto no-repeat;
}
.c-list01--check-white > li::before {
	filter: brightness(0) invert(1);
}
.c-list01--num {
	counter-reset: number 0;
}
.c-list01--num > li::before {
	counter-increment: number 1;
	content: counter(number) ".";
	color: var(--color-blue);
}

.c-list02 {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.c-list02__item {
	width: calc((100% - 40px) / 3);
	background-color: #fff;
	border-radius: 20px;
	padding: 20px;
}
@media (width <= 767px) {
	.c-list02__item {
		width: 100%;
	}
}
.c-list02__item--full {
	width: 100%;
}
.c-list02__detail > * + * {
	margin-top: 10px;
}
.c-list02__title {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	line-height: 1.3;
	background-color: var(--color-blue);
	border-radius: calc(infinity * 1px);
	padding: 10px 20px;
}
.c-list02__img {
	width: 100%;
	max-width: 160px;
	margin-inline: auto;
}
.c-list02__em {
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}
.c-list02__em > * {
	width: calc((100% - 60px) / 2);
}
@media (width <= 640px) {
	.c-list02__em > * {
		width: 100%;
	}
}

/* 説明リスト */
.c-detail01 {
	--width: 75px;
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
}
.c-detail01 > dt {
	font-weight: bold;
	width: var(--width);
}
.c-detail01 > dd {
	width: calc(100% - var(--width));
	padding-left: 1em;
	position: relative;
}
.c-detail01 > dd::before {
	content: "：";
	position: absolute;
	inset: 0 auto auto 0;
}

/* タイトル */
.c-title01 {
	font-size: 28px;
	font-weight: bold;
	color: var(--color-blue);
	text-align: center;
}

.c-title02 {
	text-align: center;
}
.c-title02 span {
	display: inline-block;
	font-size: 28px;
	font-weight: bold;
	position: relative;
}
.c-title02 span::after {
	content: "";
	display: block;
	width: 100%;
	height: 3px;
	background: linear-gradient(to right, var(--color-blue) 3px, transparent 3px) center/8px 3px repeat-x;
	position: absolute;
	inset: auto auto 0 0;
}
.c-title02--fl-black span::first-letter {
	color: var(--color-default);
}

.c-title03 {
	font-size: 18px;
	font-weight: bold;
	padding-left: 1.2em;
	position: relative;
}
.c-title03::before {
	content: "";
	display: block;
	width: 1em;
	aspect-ratio: 1;
	background-color: var(--color-blue);
	border-radius: 50%;
	position: absolute;
	inset: calc(0.5lh - 0.5em) auto auto 0;
}

.c-title04 {
	display: flex;
	gap: 20px;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	line-height: 1.3;
	background-color: var(--color-blue);
	border-radius: calc(infinity * 1px);
	padding: 2px 40px 2px 2px;
}
@media (width <= 640px) {
	.c-title04 {
		font-size: 16px;
	}
}
.c-title04__num {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: var(--color-blue);
	line-height: 1;
	width: 110px;
	min-height: 36px;
	background-color: #fff;
	border-radius: calc(infinity * 1px);
	padding-inline: 20px;
}
.c-title04__num span {
	font-size: 2.143em;
	color: var(--color-orange);
	padding-bottom: 5px;
}
.c-title04__ja {
	flex: 1;
	display: flex;
	align-items: center;
	padding-block: 5px;
}

/* テキスト */
.c-fz12 {
	font-size: 12px !important;
}

.c-fz18 {
	font-size: 18px !important;
}

.c-fz-l {
	font-size: 1.125em !important;
}

.c-text-j {
	text-align: justify !important;
}

.c-text-r {
	text-align: right !important;
}

.c-text-c {
	text-align: center !important;
}

.c-fw-b {
	font-weight: bold !important;
}

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

.c-color-orange {
	color: var(--color-orange) !important;
}

.c-text-marker {
	display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	background: linear-gradient(transparent 50%, #ffff00 50%);
	background-repeat: no-repeat;
	background-size: 0 100%;
	transition: background-size 0.5s;
}
.c-text-marker.animated {
	background-size: 100% 100%;
}

/* ボタン */
.c-btn01 {
	display: block;
	font-size: 18px;
	font-weight: bold;
	color: var(--color-blue);
	width: 100%;
	max-width: max-content;
	background-color: #fff;
	border-radius: calc(infinity * 1px);
	padding: 5px 45px 5px 20px;
	position: relative;
	filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.1));
}
.c-btn01::after {
	content: "";
	display: block;
	width: 12px;
	aspect-ratio: 12/17;
	background-color: var(--color-blue);
	position: absolute;
	inset: 50% 23px auto auto;
	translate: 0 -50%;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media (any-hover: hover) {
	.c-btn01:hover {
		color: #fff;
		background-color: var(--color-blue);
	}
	.c-btn01:hover::after {
		background-color: #fff;
	}
}

/* アニメーション */
.c-feed {
	translate: 0 100px;
	opacity: 0;
	transition: opacity 1s, translate 1s;
}
.c-feed.animated {
	translate: 0 0;
	opacity: 1;
}

/* シャドウ */
.c-ds01,
.c-ds02,
.c-ds03 {
	will-change: filter;
}

.c-ds01 {
	filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.2));
}

.c-ds02 {
	filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.1));
}

.c-ds03 {
	filter: drop-shadow(0 0 10px rgb(255, 255, 255));
}

/* テーブル */
.c-table-wrap {
	width: 100%;
	overflow-x: auto;
}

.c-table01,
.c-table01 th,
.c-table01 td {
	font-size: 14px;
	border: 1px solid #3e3a39;
	text-align: center;
}

.c-table01 {
	width: 960px;
	border-left: 0;
}
@media (width <= 640px) {
	.c-table01 {
		width: 520px;
	}
}
.c-table01 tr:nth-child(odd) > * {
	background-color: var(--color-blue01);
}
.c-table01 tr:nth-child(even) > * {
	background-color: #fff;
}
.c-table01 th, .c-table01 td {
	padding: 20px;
}
@media (width <= 640px) {
	.c-table01 th, .c-table01 td {
		padding: 10px;
	}
}
.c-table01 th {
	letter-spacing: -0.05em;
	width: 150px;
	border-left: 0;
	position: sticky;
	left: 0;
}
@media (width <= 640px) {
	.c-table01 th {
		font-size: 12px;
		width: 100px;
		padding-inline: 5px;
	}
}
.c-table01 th:before {
	content: "";
	width: 1px;
	height: 100%;
	background-color: #3e3a39;
	position: absolute;
	inset: 0 -1px auto auto;
}
.c-table01 th::after {
	content: "";
	width: 1px;
	height: 100%;
	background-color: #3e3a39;
	position: absolute;
	inset: 0 auto auto 0;
}
.c-table01__p-block0 td {
	padding-block: 0;
}
@media (width > 640px) {
	.c-table01--th-w275 th {
		width: 275px;
	}
}

/*-------------------------
header
---------------------------*/
.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.9);
	min-height: 100px;
	padding: 20px;
	position: fixed;
	inset: 0 auto auto 0;
	z-index: 100;
}
@media (width <= 767px) {
	.header {
		min-height: 60px;
		padding: 0 0 0 20px;
	}
}
.header__link {
	display: flex;
	gap: 25px;
}

.header-contact {
	display: flex;
	align-items: center;
	gap: 20px;
}
.header-contact__detail {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 6px;
	width: 100%;
	max-width: 150px;
}
@media (width <= 767px) {
	.header-contact__detail {
		display: none;
	}
}
.header-contact__title {
	font-size: 10px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	background-color: var(--color-blue);
	width: 36px;
}
.header-contact__info {
	line-height: 1.1;
	width: calc(100% - 6px - 36px);
}
.header-contact__tel {
	font-weight: bold;
	color: var(--color-blue);
	letter-spacing: -0.025em;
	max-width: max-content;
	padding-left: 10px;
	position: relative;
}
.header-contact__tel::before {
	content: "";
	display: block;
	width: 9px;
	aspect-ratio: 10/13;
	background: url(../img/common/icon_tel01.svg) center/contain no-repeat;
	position: absolute;
	inset: 50% auto auto 0;
	translate: 0 -50%;
}
.header-contact__hours {
	font-size: 10px;
	text-align: right;
	font-feature-settings: normal;
}
.header-contact__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-weight: bold;
	color: #fff;
	width: 160px;
	min-height: 60px;
	background-color: var(--color-blue);
	border: 1px solid var(--color-blue);
	position: relative;
}
@media (width <= 767px) {
	.header-contact__btn {
		font-size: 0;
		width: 60px;
	}
}
.header-contact__btn::before {
	content: "";
	display: block;
	width: 20px;
	aspect-ratio: 1;
	background: url(../img/common/icon_mail01.svg) center/contain no-repeat;
}
@media (width <= 767px) {
	.header-contact__btn::before {
		width: 40px;
		position: absolute;
		inset: 50% auto auto 50%;
		translate: -50% -50%;
	}
}
@media (any-hover: hover) {
	.header-contact__btn:hover {
		color: var(--color-blue);
		background-color: #fff;
	}
	.header-contact__btn:hover::before {
		filter: brightness(0) saturate(100%) invert(29%) sepia(42%) saturate(2520%) hue-rotate(212deg) brightness(97%) contrast(94%);
	}
}

.footer {
	background-color: var(--color-blue);
	padding: 60px 20px;
}
.footer__logo {
	width: 170px;
	margin-inline: auto;
	filter: brightness(0) invert(1);
}
.footer__copy {
	color: #fff;
	text-align: center;
	margin-top: 50px;
}

/*-------------------------
TOP
---------------------------*/
/* FV */
.fv {
	overflow: hidden;
}
.fv__inner {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	min-height: 800px;
	position: relative;
}
@media (width <= 767px) {
	.fv__inner {
		padding-block: 80px 20px;
		min-height: auto;
	}
}

.fv-img {
	width: calc(60% + 50vw - 50%);
	height: 100%;
	position: absolute;
	inset: 0 auto auto calc(-50vw + 50%);
}
@media (width <= 960px) {
	.fv-img {
		width: calc(50% + 50vw - 50%);
	}
}
@media (width <= 767px) {
	.fv-img {
		width: 100%;
		opacity: 0.2;
	}
}
.fv-img__bg {
	width: 100%;
	height: 100%;
	clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
}
@media (width <= 767px) {
	.fv-img__bg {
		clip-path: polygon(0 0, 100% 0, 50% 100%, 0 100%);
	}
}
.fv-img__bg img {
	height: 100%;
	object-fit: cover;
}
.fv-img__parts01 {
	width: 38%;
	max-width: 305px;
	position: absolute;
	inset: auto auto 0 20%;
	transition-delay: 0.2s;
}
@media (width > 1400px) {
	.fv-img__parts01 {
		inset: auto 327px 0 auto;
	}
}
@media (width <= 960px) {
	.fv-img__parts01 {
		bottom: 80px;
	}
}
@media (width <= 767px) {
	.fv-img__parts01 {
		display: none;
	}
}
.fv-img__parts02 {
	width: 32%;
	max-width: 258px;
	position: absolute;
	inset: auto auto 215px 54%;
	z-index: 1;
	transition-delay: 0.4s;
}
@media (width > 1400px) {
	.fv-img__parts02 {
		inset: auto 110px 215px auto;
	}
}
@media (width <= 767px) {
	.fv-img__parts02 {
		display: none;
	}
}

.fv-panel {
	width: 100%;
	max-width: 740px;
	padding-bottom: 10px;
	position: relative;
}
.fv-panel__title {
	font-size: 28px;
	font-weight: bold;
	color: #fff;
	text-align: right;
	line-height: 1.3;
	max-width: max-content;
	margin-left: auto;
	padding: 0.8em 0 0.8em 45px;
	position: relative;
	z-index: 1;
	opacity: 0;
	translate: 100px 0;
	transition: opacity 1s, translate 1s ease-out;
}
@media (width <= 767px) {
	.fv-panel__title {
		font-size: 16px;
	}
}
.fv-panel__title::before {
	content: "";
	display: block;
	width: calc(100% + 50vw - 480px);
	height: 100%;
	background-image: var(--grad);
	position: absolute;
	inset: 0 auto auto 0;
	z-index: -1;
	clip-path: polygon(35px 0, 100% 0, 100% 100%, 0 100%);
}
@media (width <= 1000px) {
	.fv-panel__title::before {
		width: calc(100% + 20px);
	}
}
.fv-panel__title span {
	display: block;
	font-size: 1.643em;
}
.fv-panel__title.animated {
	opacity: 1;
	translate: 0 0;
}
.fv-panel__box01 > .box01 {
	display: none;
}
@media (width <= 767px) {
	.fv-panel__box01 {
		display: flex;
		align-items: center;
		max-width: 580px;
		margin: 10px 0 0 auto;
	}
	.fv-panel__box01 > .box01 {
		display: block;
		width: 160px;
	}
	.fv-panel__box01 > .box02 {
		flex: 1;
	}
}
.fv-panel__text01 {
	text-align: right;
}
@media (width <= 767px) {
	.fv-panel__text01 {
		text-align: justify;
	}
}
.fv-panel__box02 {
	width: 100%;
	max-width: 465px;
	padding-right: 190px;
	margin-left: auto;
}
@media (width <= 767px) {
	.fv-panel__box02 {
		max-width: 580px;
		padding-right: 110px;
		position: relative;
	}
}
.fv-panel__text02 {
	font-size: 18px;
	text-align: center;
	letter-spacing: -0.05em;
	border-radius: 20px;
	padding: 25px 15px;
	background-color: #fff;
	position: relative;
}
@media (width <= 767px) {
	.fv-panel__text02 {
		padding: 10px 25px;
	}
}
.fv-panel__text02::after {
	content: "";
	display: block;
	width: 12px;
	aspect-ratio: 12/8;
	background-color: #fff;
	position: absolute;
	inset: auto auto 35px 100%;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media (width <= 767px) {
	.fv-panel__text02::after {
		bottom: 100px;
	}
}
.fv-panel__img {
	width: 100%;
	max-width: 380px;
	position: absolute;
	inset: auto -35px 0 auto;
	z-index: -1;
}
@media (width <= 767px) {
	.fv-panel__img {
		width: 190px;
		inset: auto -20px -40px auto;
	}
}
.fv-panel__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px 35px;
}
@media (width <= 640px) {
	.fv-panel__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 20px;
	}
}
.fv-panel__list.animated .c-feed {
	translate: 0 0;
	opacity: 1;
}
.fv-panel__list.animated .c-feed:nth-child(2) {
	transition-delay: 0.2s;
}
.fv-panel__list.animated .c-feed:nth-child(3) {
	transition-delay: 0.3s;
}
.fv-panel__list.animated .c-feed:nth-child(4) {
	transition-delay: 0.4s;
}

/* CV */
.cv {
	display: flex;
	flex-wrap: wrap;
}
.cv__bg {
	display: flex;
	align-items: center;
	width: 50%;
	background-image: var(--grad01);
	min-height: 300px;
	padding: 20px;
}
@media (width <= 767px) {
	.cv__bg {
		background-image: linear-gradient(0deg, #3A59CF 0%, #6B82DB 100%);
		width: 100%;
		min-height: 200px;
	}
}
.cv__inner {
	width: 100%;
	max-width: 480px;
	margin-inline: auto;
}
.cv__panel {
	width: 100%;
	max-width: 280px;
	margin-left: auto;
}
@media (width <= 767px) {
	.cv__panel {
		margin-right: auto;
	}
}
.cv__panel--right {
	margin-left: 0;
	margin-right: auto;
}
@media (width <= 767px) {
	.cv__panel--right {
		margin-left: auto;
	}
}
.cv__text {
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	line-height: 1.25;
}
.cv__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 24px;
	font-weight: bold;
	color: var(--color-orange);
	min-height: 60px;
	background-color: #fff;
	border-radius: calc(infinity * 1px);
	margin-top: 15px;
}
.cv__btn::before {
	content: "";
	display: block;
	width: 27px;
	aspect-ratio: 1;
	background: url(../img/common/icon_dl01.svg) center/contain no-repeat;
}
@media (any-hover: hover) {
	.cv__btn:hover {
		color: #fff;
		background-color: var(--color-orange);
	}
	.cv__btn:hover::before {
		filter: brightness(0) invert(1);
	}
}
.cv__btn--contact::before {
	background-image: url(../img/common/icon_mail02.svg);
}

/* 悩み */
.worry {
	overflow: hidden;
}
@media (width <= 640px) {
	.worry {
		padding-bottom: 0;
	}
}
.worry__inner {
	position: relative;
}
.worry__img {
	width: 38.5%;
	position: absolute;
	inset: auto 0 -120px auto;
}
@media (width <= 640px) {
	.worry__img {
		width: 100%;
		max-width: 250px;
		margin: 30px 0 0 auto;
		position: relative;
		inset: auto;
	}
}
.worry .c-list01 {
	padding-right: 40%;
}
@media (width <= 640px) {
	.worry .c-list01 {
		padding-right: 0;
	}
}
.worry .c-list01 > li + li {
	margin-top: 1em;
}

/* 解決 */
.sol__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0 200px;
	margin-top: 100px;
	position: relative;
	z-index: 1;
}
.sol__list::before, .sol__list::after {
	content: "";
	display: block;
	aspect-ratio: 1;
	position: absolute;
	inset: 50% auto auto 50%;
	translate: -50% -50%;
	z-index: -1;
}
.sol__list::before {
	width: 75%;
	border: 1px solid var(--color-blue);
	border-radius: 50%;
}
@media (width <= 767px) {
	.sol__list::before {
		content: none;
	}
}
.sol__list::after {
	width: 31.25%;
	background: url(../img/home/fv_img03.webp) center/contain no-repeat;
	filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.2));
	will-change: filter;
}
@media (width <= 767px) {
	.sol__list::after {
		width: 100%;
		max-width: 300px;
		margin: 0 auto 0;
		position: relative;
		inset: auto;
		translate: 0 0;
	}
}
.sol__item {
	width: calc((100% - 200px) / 2);
}
@media (width <= 767px) {
	.sol__item {
		width: 100%;
	}
}
@media (width <= 767px) {
	.sol__item + .sol__item {
		margin-top: 80px;
	}
}
.sol__item:first-child {
	width: 100%;
}
@media (width > 767px) {
	.sol__item:nth-child(2), .sol__item:nth-child(3) {
		margin-top: 15px;
	}
}
@media (width > 767px) {
	.sol__item:nth-child(4), .sol__item:nth-child(5) {
		margin-top: 85px;
	}
}
@media (width > 767px) {
	.sol__item:nth-child(3) .sol__detail {
		margin-left: auto;
	}
}
.sol__detail {
	width: 100%;
	max-width: 300px;
	background-color: #fff;
	border-radius: 20px;
	padding: 20px;
	position: relative;
}
@media (width <= 767px) {
	.sol__detail {
		margin-inline: auto;
	}
}
.sol__detail::before, .sol__detail::after {
	content: "";
	display: block;
	position: absolute;
	translate: -50% 0;
	z-index: -1;
}
.sol__detail::before {
	width: 125px;
	aspect-ratio: 1;
	background-color: #fff;
	border-radius: 50%;
	inset: -55px auto auto 50%;
}
.sol__detail::after {
	width: 42px;
	aspect-ratio: 42/65;
	background: url(../img/common/icon_hand01.svg) center/contain no-repeat;
	inset: -50px auto auto 50%;
}
.sol__detail > * + * {
	margin-top: 20px;
}
.sol__title {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	text-align: center;
	color: #fff;
	line-height: 1.3;
	background-color: var(--color-blue);
	padding: 10px;
}

/* 導入事例 */
.case__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 80px;
}
@media (width <= 767px) {
	.case__list {
		gap: 40px;
	}
}
@media (width <= 640px) {
	.case__list {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}
.case__item > * + * {
	margin-top: 10px;
}

.case-detail {
	margin-top: 20px;
}
.case-detail__title {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: #fff;
	background-color: var(--color-orange);
	min-height: 30px;
	padding-inline: 15px;
}
.case-detail__title--blue {
	background-color: var(--color-blue);
}
.case-detail__content {
	font-size: 14px;
	margin-top: 10px;
}
.case-detail__content + .case-detail__title {
	margin-top: 20px;
}

/* 製品表 */
.product {
	background-color: var(--color-orange01);
}

/* サービス */
.service__text {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}
.service__text span {
	font-size: 1.167em;
}
.service__text--arrow {
	padding-top: 60px;
	position: relative;
}
.service__text--arrow::before {
	content: "▶︎";
	color: var(--color-blue);
	line-height: 1;
	position: absolute;
	inset: 30px auto auto 50%;
	translate: -50% -50%;
	rotate: 90deg;
}
.service__panel {
	background-color: var(--color-blue01);
	border-radius: 40px;
	padding: 40px;
}

.service-pay {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px 20px;
}
.service-pay > li {
	width: 70px;
}

/* 想い */
.thought__item {
	display: flex;
	align-items: center;
	gap: 20px 50px;
}
@media (width <= 767px) {
	.thought__item {
		flex-direction: column;
	}
}
.thought__item > .box01 {
	flex: 1;
}
.thought__item > .box02 {
	width: 170px;
}
.thought__item + .thought__item {
	margin-top: 40px;
}
.thought__item:first-child > .box02 {
	width: 380px;
}
@media (width <= 767px) {
	.thought__item:first-child > .box02 {
		width: 170px;
	}
}
.thought__item:nth-child(even) {
	flex-direction: row-reverse;
}
@media (width <= 767px) {
	.thought__item:nth-child(even) {
		flex-direction: column;
	}
}
.thought__text {
	margin-top: 1em;
}

/* 主要機能 */
.func {
	background-color: var(--color-blue01);
}
.func__list {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
}
@media (width <= 960px) {
	.func__list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media (width <= 640px) {
	.func__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
.func__item {
	background-color: #fff;
	border-radius: 20px;
	padding: 20px 10px;
}
.func__icon {
	width: 100%;
	max-width: 100px;
	margin-inline: auto;
}
.func__text {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}

/* オプション */
.option__item {
	background-color: var(--color-orange01);
	border-radius: 20px;
	padding: 20px;
}
.option__item + .option__item {
	margin-top: 60px;
}
@media (width <= 767px) {
	.option__item + .option__item {
		margin-top: 40px;
	}
}
.option__detail > * + * {
	margin-top: 40px;
}
.option__title {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	line-height: 1.3;
	background-color: var(--color-orange);
	border-radius: calc(infinity * 1px);
	padding: 10px 20px;
}

.option-content > * + * {
	margin-top: 20px;
}
.option-content__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
@media (width <= 640px) {
	.option-content__list {
		flex-direction: column;
	}
}
.option-content__item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 14px;
	font-weight: bold;
	color: var(--color-orange);
	min-height: 30px;
	background-color: #fff;
	border-radius: 10px;
	padding-inline: 20px;
}
.option-content__panel {
	display: flex;
	gap: 20px;
}
@media (width <= 640px) {
	.option-content__panel {
		flex-direction: column;
	}
}
.option-content__panel--c-gap70 {
	gap: 20px 70px;
}
.option-content__panel--w715 {
	width: 100%;
	max-width: 715px;
	margin-inline: auto;
}
.option-content__box {
	background-color: #fff;
	border-radius: 10px;
	padding: 20px;
}
.option-content__img {
	border-radius: 10px;
	overflow: hidden;
}
.option-content--point {
	background-color: #fff;
	border-radius: 10px;
	padding: 10px;
}

.option-flow {
	display: flex;
	gap: 20px;
}
@media (width <= 640px) {
	.option-flow {
		flex-direction: column;
	}
}
.option-flow__item {
	background-color: #fff;
	border-radius: 10px;
	position: relative;
}
.option-flow__item > *:not(.option-flow__img) {
	padding: 15px 10px;
}
.option-flow__item:not(:last-child)::after {
	content: "";
	display: block;
	width: 16px;
	aspect-ratio: 1;
	background: url(../img/common/icon_arrow01.svg) center/contain no-repeat;
	position: absolute;
	inset: 50% -18px auto auto;
	translate: 0 -50%;
}
@media (width <= 640px) {
	.option-flow__item:not(:last-child)::after {
		inset: auto auto -18px 50%;
		translate: -50% 0;
		rotate: 90deg;
	}
}
.option-flow__img {
	position: relative;
}
.option-flow__img-absolute {
	width: 47px;
	position: absolute;
	inset: auto auto -9px 9px;
}
.option-flow__img--br10 {
	border-radius: 10px 10px 0 0;
	overflow: hidden;
}
.option-flow__text {
	text-align: left;
	line-height: 1.4;
}

/* ニーズ */
.needs {
	background-color: #ececec;
}
.needs__item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}
.needs__item > .box01 {
	width: 530px;
}
@media (width <= 767px) {
	.needs__item > .box01 {
		width: 100%;
	}
}
.needs__item > .box02 {
	flex: 1;
	max-width: 380px;
}
@media (width <= 767px) {
	.needs__item > .box02 {
		margin-inline: auto;
	}
}
.needs__item + .needs__item {
	margin-top: 40px;
}
.needs__item:nth-child(even) {
	flex-direction: row-reverse;
}
.needs__item:first-child > .box02 img {
	max-width: 300px;
	margin-inline: auto;
}
.needs__title {
	font-size: 18px;
	font-weight: bold;
	text-decoration: underline;
}
.needs__content {
	margin-top: 0.5em;
}
.needs__content p + p {
	margin-top: 0.5em;
}

/* 精算 */
.set__video {
	width: 100%;
	max-width: 640px;
	aspect-ratio: 16/9;
	margin-inline: auto;
}
.set__video > * {
	display: block;
	width: 100%;
	height: 100%;
}
.set__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 50px 20px;
}
@media (width <= 767px) {
	.set__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (width <= 640px) {
	.set__list {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}
.set__text span {
	font-size: 1.33em;
}

/* 流れ */
.flow {
	background-color: var(--color-blue01);
}
.flow__list {
	width: 100%;
	max-width: 680px;
}
.flow__item {
	display: flex;
	gap: 20px;
}
@media (width <= 640px) {
	.flow__item {
		flex-direction: column;
	}
}
.flow__item > .box01 {
	flex: 1;
}
.flow__item > .box02 {
	width: 420px;
}
@media (width <= 640px) {
	.flow__item > .box02 {
		width: 100%;
	}
}
.flow__item + .flow__item {
	margin-top: 20px;
}
.flow__item:last-child .flow__detail::before {
	height: calc(100% - 14px);
}
@media (width <= 640px) {
	.flow__item:last-child .flow__detail::before {
		height: calc(100% - 14px + 20px);
	}
}
.flow__item:last-child .flow__detail::after {
	content: "";
	display: block;
	width: 22px;
	aspect-ratio: 22/15;
	background-color: var(--color-blue);
	position: absolute;
	inset: auto auto 0 34px;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.flow__img {
	border-radius: 10px;
	overflow: hidden;
}
.flow__detail {
	position: relative;
	z-index: 1;
}
.flow__detail::before {
	content: "";
	display: block;
	width: 10px;
	height: calc(100% + 20px);
	background-color: var(--color-blue);
	position: absolute;
	inset: 0 auto auto 40px;
	z-index: -1;
}
@media (width <= 640px) {
	.flow__detail::before {
		height: calc(100% + 40px);
		top: -20px;
	}
}
.flow__text {
	padding-left: 70px;
	margin-top: 0.5em;
}

/* アバウト */
.about__panel {
	display: flex;
	gap: 30px 45px;
}
@media (width <= 767px) {
	.about__panel {
		flex-direction: column;
	}
}
.about__panel > .box01 {
	width: 240px;
	margin-inline: auto;
}
.about__panel > .box02 {
	flex: 1;
}
.about__text + .about__text {
	margin-top: 1em;
}

/* 会社概要 */
.company__detail {
	--width: 150px;
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	width: 100%;
	max-width: 725px;
	margin-inline: auto;
}
@media (width <= 640px) {
	.company__detail {
		row-gap: 0;
	}
}
.company__title {
	font-weight: bold;
	color: var(--color-blue);
	text-align: right;
	width: var(--width);
}
@media (width <= 640px) {
	.company__title {
		text-align: justify;
		width: 100%;
	}
}
.company__text {
	width: calc(100% - var(--width) - 1em);
}
@media (width <= 640px) {
	.company__text {
		width: 100%;
	}
}
@media (width <= 640px) {
	.company__text + .company__title {
		margin-top: 1em;
	}
}

/* 提案 */
.suggest-panel01 {
	background-color: var(--color-orange);
	border-radius: 20px;
	padding: 20px;
}
.suggest-panel01__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}
@media (width <= 767px) {
	.suggest-panel01__list {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}
.suggest-panel01__item {
	background-color: #fff;
	border-radius: 10px;
	padding: 20px;
}
.suggest-panel01__text {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	line-height: 1.33;
	background-color: var(--color-orange);
	border-radius: 20px;
	padding: 10px;
	position: relative;
}
.suggest-panel01__text::after {
	content: "";
	display: block;
	width: 16px;
	aspect-ratio: 2/1;
	background-color: var(--color-orange);
	position: absolute;
	inset: calc(100% - 1px) auto auto 50%;
	translate: -50% 0;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.suggest-panel01__name {
	text-align: center;
	line-height: 1.3;
	margin-top: 15px;
}
.suggest-panel01__name span {
	font-size: 18px;
	font-weight: bold;
	color: var(--color-orange);
}

.suggest-panel02 {
	background-color: var(--color-blue);
	border-radius: 20px;
	padding: 45px 20px 20px;
	margin-top: 60px;
	position: relative;
}
.suggest-panel02__icon {
	width: 80px;
	aspect-ratio: 1;
	background-color: var(--color-blue);
	border-radius: 50%;
	position: absolute;
	inset: -40px auto auto 50%;
	translate: -50% 0;
}
.suggest-panel02__icon::before, .suggest-panel02__icon::after {
	content: "";
	display: block;
	width: 40px;
	height: 6px;
	background-color: #fff;
	position: absolute;
	inset: 50% auto auto 50%;
	translate: -50% -50%;
}
.suggest-panel02__icon::after {
	rotate: 90deg;
}
.suggest-panel02__text {
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	line-height: 1.45;
}
.suggest-panel02__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}
@media (width <= 960px) {
	.suggest-panel02__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (width <= 640px) {
	.suggest-panel02__list {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}
.suggest-panel02__item {
	background-color: #fff;
	border-radius: 10px;
	padding: 20px;
}
.suggest-panel02__title {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	line-height: 1.33;
	min-height: 60px;
	background-color: var(--color-blue);
	border-radius: 20px;
}
.suggest-panel02__title span {
	font-size: 14px;
}
.suggest-panel02__img {
	width: 100%;
	max-width: 160px;
	margin-inline: auto;
}

/* IT導入補助金 */
.it__img {
	width: 100%;
	max-width: 600px;
	margin-inline: auto;
}

.it-panel {
	display: flex;
	align-items: center;
	gap: 40px;
	width: 100%;
	max-width: 760px;
	margin-inline: auto;
}
@media (width <= 640px) {
	.it-panel {
		flex-direction: column;
	}
}
.it-panel > .box01 {
	width: 156px;
}
.it-panel > .box02 {
	flex: 1;
}
.it-panel__text01 {
	margin-top: 20px;
}
.it-panel__text02 {
	margin-top: 20px;
}
.it-panel__text03 {
	font-size: 14px;
	margin-top: 10px;
}

.it-support {
	width: 100%;
	max-width: 560px;
	border-radius: 20px;
	background-color: #009e88;
	padding: 20px;
}
.it-support > * {
	color: #fff;
}
.it-support__list {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	margin-top: 15px;
}

/* お客様の声 */
.voice__list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px;
}
.voice__item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	width: calc((100% - 40px) / 2);
}
@media (width > 767px) {
	.voice__item:nth-child(4n-1), .voice__item:nth-child(4n) {
		flex-direction: row-reverse;
	}
	.voice__item:nth-child(4n-1) .voice__text::before, .voice__item:nth-child(4n) .voice__text::before {
		inset: 50px auto auto 100%;
		scale: -1 1;
	}
}
@media (width <= 767px) {
	.voice__item {
		width: 100%;
	}
	.voice__item:nth-child(even) {
		flex-direction: row-reverse;
	}
}
.voice__img {
	width: 120px;
	aspect-ratio: 1;
	border-radius: 50%;
	overflow: hidden;
}
.voice__text {
	flex: 1;
	font-weight: bold;
	padding: 30px 20px;
	background-color: #fff;
	border-radius: 20px;
	position: relative;
}
.voice__text::before {
	content: "";
	display: block;
	width: 8px;
	aspect-ratio: 1/2;
	background-color: #fff;
	position: absolute;
	inset: 50px 100% auto auto;
	clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

/* よくある質問 */
.faq {
	background-color: var(--color-blue01);
}
.faq__q {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	text-align: left;
	background-color: var(--color-blue);
	border-radius: 20px;
	padding: 15px 70px;
	position: relative;
	cursor: pointer;
}
.faq__q::before {
	content: "";
	display: block;
	width: 40px;
	aspect-ratio: 1;
	background: url(../img/common/icon_q.webp) center/contain no-repeat;
	position: absolute;
	inset: 10px auto auto 10px;
}
.faq__q-toggle {
	display: block;
	width: 40px;
	aspect-ratio: 1;
	position: absolute;
	inset: 50% 10px auto auto;
	translate: 0 -50%;
}
.faq__q-toggle::before, .faq__q-toggle::after {
	content: "";
	display: block;
	width: 20px;
	height: 1px;
	background-color: #fff;
	position: absolute;
	inset: 50% auto auto 50%;
	translate: -50% -50%;
}
.faq__q-toggle::after {
	rotate: 90deg;
	transition: rotate 0.2s ease-out;
}
.faq__q--open .faq__q-toggle::after {
	rotate: 0deg;
}
.faq__a {
	display: none;
	padding: 15px 0 10px 70px;
	margin-top: 5px;
	position: relative;
}
.faq__a::before {
	content: "";
	display: block;
	width: 40px;
	aspect-ratio: 1;
	background: url(../img/common/icon_a.webp) center/contain no-repeat;
	position: absolute;
	inset: 10px auto auto 10px;
}
.faq__a + .faq__q {
	margin-top: 20px;
}

.form__inner {
	display: flex;
	gap: 40px;
}
@media (width <= 767px) {
	.form__inner {
		flex-direction: column;
	}
}
.form__inner > .box01 {
	width: 370px;
}
@media (width <= 960px) {
	.form__inner > .box01 {
		width: 310px;
	}
}
@media (width <= 767px) {
	.form__inner > .box01 {
		width: 100%;
	}
}
.form__inner > .box02 {
	flex: 1;
}
.form__img {
	width: 250px;
	margin-inline: auto;
}
.form__text {
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
}
.form__text + .form__text {
	margin-top: 1em;
}
.form__panel {
	background-color: var(--color-blue01);
	border-radius: 20px;
	padding: 30px 20px;
}
.form__panel > * + * {
	margin-top: 0.5em;
}
.form__text01 {
	color: #ff3400;
}

.form-item__title {
	font-weight: bold;
	color: var(--color-blue);
}
.form-item__title--required::after {
	content: "※";
	color: #ff3400;
	font-weight: 300;
}
.form-item__content {
	margin-top: 5px;
}
.form-item__content + .form-item__title {
	margin-top: 0.8em;
}
.form-item__content input {
	width: 100%;
	min-height: 40px;
	border: 0;
	border-radius: 10px;
	padding: 5px 10px;
}
.form-item__content:has(select) {
	width: 100%;
	max-width: max-content;
	position: relative;
}
.form-item__content:has(select)::after {
	content: "";
	display: block;
	width: 8px;
	height: 12px;
	background: url(../img/common/icon_select.webp) center/contain no-repeat;
	position: absolute;
	inset: 50% 15px auto auto;
	translate: 0 -50%;
	pointer-events: none;
}
.form-item__content select {
	min-height: 40px;
	border: 0;
	border-radius: 10px;
	padding: 5px 30px 5px 10px;
	appearance: none;
}
.form-item__content textarea {
	width: 100%;
	border: 0;
	border-radius: 10px;
	padding: 10px;
}

.form-privacy {
	font-size: 14px;
	height: 150px;
	background-color: #fff;
	border-radius: 10px;
	padding: 20px;
	margin-top: 40px;
	overflow: auto;
}
.form-privacy > dt {
	font-weight: bold;
}
.form-privacy > dd + dt {
	margin-top: 1em;
}

.form-agreement {
	text-align: center;
	margin-top: 40px;
}

.form-submit {
	display: block;
	font-weight: bold;
	text-align: center;
	color: #fff;
	width: 170px;
	background-color: var(--color-blue);
	border: 1px solid var(--color-blue);
	border-radius: calc(infinity * 1px);
	margin: 30px auto 0;
	transition: 0.2s ease-out;
}
@media (any-hover: hover) {
	.form-submit:hover {
		color: var(--color-blue);
		background-color: #fff;
	}
}

.form-contact__text {
	margin-top: 1em;
}
.form-contact__text + .form-contact__title {
	margin-top: 40px;
}
.form-contact__box {
	width: 100%;
	max-width: 302px;
}
.form-contact__box .c-btn01 {
	margin-left: auto;
}

.form-tel {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 20px 12px;
	width: 100%;
	max-width: 302px;
}
.form-tel__title {
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	width: 75px;
	background-color: var(--color-blue);
	padding-inline: 5px;
}
.form-tel__info {
	line-height: 1.1;
	width: calc(100% - 12px - 75px);
}
.form-tel__tel {
	font-size: 32px;
	font-weight: bold;
	color: var(--color-blue);
	letter-spacing: -0.025em;
	max-width: max-content;
	padding-left: 20px;
	position: relative;
}
.form-tel__tel::before {
	content: "";
	display: block;
	width: 20px;
	aspect-ratio: 10/13;
	background: url(../img/common/icon_tel01.svg) center/contain no-repeat;
	position: absolute;
	inset: 50% auto auto 0;
	translate: 0 -50%;
}
.form-tel__hours {
	font-size: 20px;
	text-align: right;
	font-feature-settings: normal;
}

/*-------------------------
資料ダウンロード
---------------------------*/
.download__img {
	width: 100%;
	max-width: 640px;
	margin-inline: auto;
}
.download__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	width: 200px;
	min-height: 60px;
	background-color: var(--color-blue);
	border-radius: calc(infinity * 1px);
	margin-top: 15px;
}
.download__btn::before {
	content: "";
	display: block;
	width: 27px;
	aspect-ratio: 1;
	background: url(../img/common/icon_dl01.svg) center/contain no-repeat;
	filter: brightness(0) invert(1);
}/*# sourceMappingURL=style.css.map */