@charset "UTF-8";
html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	font-size: 16px;
	overflow-y: scroll; /* 常にスクロールバーを表示 */
}
@media screen and (max-width: 1024px) {
	html {
		font-size: 1.5625vw;
	}
}
@media screen and (max-width: 768px) {
	html {
		font-size: 4.2666666667vw;
	}
}

* {
	font-family: 'FOT-スーラ ProN M', 'ヒラギノ丸ゴ Pro', 'HG丸ｺﾞｼｯｸM-PRO', 'メイリオ', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	/*  font-family: "IBM Plex Sans JP", "Noto Sans JP", sans-serif;*/
	color: #030000;
	letter-spacing: 0;
}

.sp-show {
	display: none;
}
@media screen and (max-width: 768px) {
	.sp-show {
		display: block;
	}
}

.sp-none {
	display: block;
}
@media screen and (max-width: 768px) {
	.sp-none {
		display: none;
	}
}

body {
	font-family: 'FOT-スーラ ProN M', 'ヒラギノ丸ゴ Pro', 'HG丸ｺﾞｼｯｸM-PRO', 'メイリオ', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	/*  font-family: "IBM Plex Sans JP", "Noto Sans JP", sans-serif, serif;*/
	background-color: #fff;
}
@media screen and (max-width: 768px) {
	body {
		padding-right: 0;
	}
}

body.is-fixed {
	position: fixed;
	left: 0;
	width: 100%;
}

main {
	margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
	main {
		margin-top: 3.25rem;
	}
}

a[href^='tel:'] {
	pointer-events: auto;
}
@media screen and (min-width: 1024px) {
	a[href^='tel:'] {
		pointer-events: none;
	}
}

a {
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
a:hover {
	opacity: 0.7;
	cursor: pointer;
}

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

/* Remove default padding */
ul,
ol {
	padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */
/* Set core body defaults */
body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

a {
	text-decoration: none;
}

/* Make images easier to work with */
img {
	max-width: 100%;
	display: block;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */
/* フォームリセット */
input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
	display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

.btn a {
	display: inline-block;
	color: #0188c3;
	border-radius: 50px;
	font-size: 2.480625rem;
	width: 36.494rem;
	position: relative;
	text-align: center;
	padding: 0.75rem 0;
	margin-inline: auto;
}
@media screen and (max-width: 768px) {
	.btn a {
		font-size: 0.9375rem;
		padding: 0.5rem 0;
		width: 12.6516875rem;
	}
}

.btn::after {
	content: '';
	background-image: url(../images/common/icon-line.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 2.839375rem;
	height: 2.9375rem;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 1.875rem;
}
@media screen and (max-width: 768px) {
	.btn::after {
		left: 0.625rem;
		width: 1.6093125rem;
		height: 1.5758125rem;
	}
}

.header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-column-gap: 1.25rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	position: fixed;
	z-index: 100;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100%;
	height: auto;
	padding-left: 2.5rem;
	background: #fff;
}
@media screen and (max-width: 768px) {
	.header {
		padding-left: 0.9375rem;
		height: 3.125rem;
	}
}

.header__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-top: 1.25rem;
	padding-bottom: 0.5rem;
	width: 100%;
}
@media screen and (max-width: 768px) {
	.header__inner h1 {
		width: calc(10 / 16 * 14rem) !important;
	}
}

@media screen and (max-width: 768px) {
	.header {
		padding-left: 0.9375rem;
		height: 3.125rem;
	}

	.header__drawer-item > a,
	.header__drawer-accordion-title {
		padding: calc(10 / 16 * 1.6rem) 0 calc(10 / 16 * 1.6rem) 0 !important;
		font-size: calc(10 / 16 * 1.2rem) !important;
	}
	.header__drawer-item a.cloud::before {
		width: calc(10 / 16 * 15.2rem) !important;
	}
	.header__drawer-item a.dx::before {
		width: calc(10 / 16 * 15.2rem) !important;
	}
	.header__drawer-item.header__drawer-item--contact a {
		width: calc(10 / 16 * 20rem) !important;
	}
	.header__hamburger {
		width: calc(10 / 16 * 4rem) !important;
	}
	.header__hamburger span {
		width: calc(10 / 16 * 1.5625rem) !important;
	}
	.header__hamburger span:nth-of-type(1) {
		top: calc(10 / 16 * -0.5rem) !important;
	}
	.header__hamburger span:nth-of-type(3) {
		top: calc(10 / 16 * 0.5rem) !important;
	}
	.header__hamburger.is-open span:nth-of-type(1) {
		top: 0 !important;
	}
	.header__hamburger.is-open span:nth-of-type(3) {
		top: 0 !important;
	}
}

.header__logo {
	/* width: 8.858125rem;
  max-width: 141.73px;
  margin-top: -0.5rem;*/
}
@media screen and (max-width: 768px) {
	.header__logo {
		margin-top: 0;
	}
}

.header__logo img {
	aspect-ratio: 141.73/33.91;
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.header__nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: end;
	-webkit-column-gap: 60px;
	-moz-column-gap: 60px;
	column-gap: 60px;
}
@media screen and (max-width: 768px) {
	.header__nav {
		display: none;
	}
}

.header__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 1.75rem;
	-moz-column-gap: 1.75rem;
	column-gap: 1.75rem;
}

.header__list li a,
.header__list li p {
	display: block;
	font-size: 0.8rem;
	font-weight: 400;
	line-height: normal;
}

.header__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 16px;
	-moz-column-gap: 16px;
	column-gap: 16px;
}
.header__list li p {
	position: relative;
	cursor: pointer;
}
.header__list li p::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #fff;
	opacity: 0;
}
.header__list li p.js-active::after {
	opacity: 1;
}

.header__button-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-column-gap: 0.9375rem;
	-moz-column-gap: 0.9375rem;
	column-gap: 0.9375rem;
}
@media screen and (max-width: 768px) {
	.header__button-wrap {
		display: none;
	}
}

.header__button a {
	border: 2px solid #005198;
	border-radius: 50px;
	color: #005198;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 0.6875rem;
	padding: 0.375rem 0 0.25rem;
	width: 6.25rem;
}

.header__button.button-or a {
	background-color: #fa9825;
	border: 2px solid #fa9825;
	color: #fff;
}

.header__btn {
	color: #fff;
	padding: 1.8125rem 0 1.0625rem 0.625rem;
	background: #005198;
	font-size: 0.6875rem;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	width: 7.1875rem;
}
@media screen and (max-width: 768px) {
	.header__btn {
		display: none;
	}
}

.header__mega {
	background-color: #edf7fa;
	position: fixed;
	top: 3.875rem;
	left: 0;
	width: 100%;
	height: auto;
	padding-block: 25px;
	padding-left: 12.9375rem;
	z-index: 10;
}

.header__mega-inner {
	width: min(921px, 100%);
	margin-inline: auto;
}

.header__mega--title {
	color: #005198;
	font-size: 0.6875rem;
}

.header__mega-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 4.8125rem;
	-moz-column-gap: 4.8125rem;
	column-gap: 4.8125rem;
	margin-top: 0.75rem;
}

#menu-feature .header__mega-container {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-column-gap: 5.4375rem;
	-moz-column-gap: 5.4375rem;
	column-gap: 5.4375rem;
}

.header__mega-item {
	display: block;
	padding-right: 1.25rem;
	position: relative;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.header__mega-item::before {
	content: '';
	background-image: url(../images/common/arrow-right.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 9px;
	height: 7px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
}

#menu-feature .header__mega-item + .header__mega-item {
	margin-top: 0.625rem;
}

.header__mega-head {
	font-size: 0.6875rem;
	font-weight: 400;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	position: relative;
}

.header__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 16px;
	-moz-column-gap: 16px;
	column-gap: 16px;
	position: relative;
}
.header__list li a,
.header__list li p {
	font-weight: 400;
	line-height: normal;
	padding-inline: 8px;
}
.header__list li p {
	position: relative;
	cursor: pointer;
}
.header__list li p::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #fff;
	opacity: 0;
}
.header__list li p.js-active::after {
	opacity: 1;
}

.header__list li.list-li {
	position: relative;
}

.header__list li.list-li::before {
	/*content: '';
	background-image: url(../images/common/arrow-down.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 0.5rem;
	height: 0.375rem;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: -0.3125rem;*/
}
.header__list li a {
	font-family: 'Noto Sans JP', sans-serif;
}
.header__list li a.cloud::before {
	width: calc(10 / 16 * 11.7rem) !important;
}
.header__list li a.bikedx::before {
	width: calc(10 / 16 * 5.3rem) !important;
}

.header__list li a.header-contact {
	color: #fff;
	line-height: 1.4;
	background-color: #078cee;
	border: 1px solid #1c98d6;
	border-radius: 50px;
	padding: calc(10 / 16 * 0.7rem) calc(10 / 16 * 1.5rem) !important;
	margin-left: calc(10 / 16 * 4.5rem) !important;
	min-width: 100px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.header__mega {
	display: none;
}

.header__hamburger {
	display: none;
}
@media screen and (max-width: 768px) {
	.header__hamburger {
		display: block;
		margin: 0;
		padding: 0;
		outline: none;
		border: none;
		position: relative;
		z-index: 999;
		width: 4rem;
		height: inherit;
		cursor: pointer;
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}
}

.header__hamburger span {
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	display: block;
	width: 1.5625rem;
	height: 1px;
	background-color: #0188c3;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
	top: -0.5rem;
}

.header__hamburger span:nth-of-type(2) {
	top: 0;
}

.header__hamburger span:nth-of-type(3) {
	top: 0.5rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
	top: 0;
	-webkit-transform: translateX(-50%) rotate(45deg);
	transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
	opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
	top: -0.125rem;
	-webkit-transform: translateX(-50%) rotate(-45deg);
	transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
	margin-top: 3.125rem;
	padding-bottom: 6.875rem;
	display: none;
	position: absolute;
	z-index: 900;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #fff;
	overflow-y: scroll;
	scrollbar-width: none;
}

.header__drawer::-webkit-scrollbar {
	display: none;
}

.header__drawer-nav {
	margin: auto;
	margin-top: 1.875rem;
	padding: 0 10.67%;
	max-width: 37.5rem;
	width: 100%;
}

.header__drawer-item {
	/*border-bottom: 1px solid #ddd;
	text-align: center;*/
}

.header__drawer .header__button-wrap {
	display: none;
}
@media screen and (max-width: 768px) {
	.header__drawer .header__button-wrap {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		row-gap: 0.75rem;
		margin-top: 2.5rem;
	}
}

.header__drawer .header__button a,
.header__drawer .header__button.button-or a {
	font-size: 0.875rem;
	padding: 0.25rem 0;
	width: 12.5rem;
}

.header__drawer-item.header__drawer-item--contact {
	margin-top: 2.5rem;
	border-bottom: none;
	border-radius: 50px;
}

.header__drawer-item > a,
.header__drawer-accordion-title {
	padding: 1.25rem 0 1.25rem 0;
	display: block;
	font-size: 0.9375rem;
	line-height: 1;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	cursor: pointer;
}

.header__drawer-item.header__drawer-item--contact a {
	padding: 1rem 1.25rem 1rem 1.25rem;
	position: relative;
	width: 100%;
	border-radius: 50px;
	font-size: 0.9375rem;
	color: #fff;
	text-align: center;
	margin-inline: auto;
	background-color: #0188c3;
}

.header__drawer-item.header__drawer-item--contact a::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 6.03125rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 1.5rem;
	height: 1.5rem;
	display: inline-block;
	background-image: url(./../images/common/icon-mail.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.header__drawer-accordion-title {
	position: relative;
}

.header__drawer-accordion-title::before,
.header__drawer-accordion-title::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 0.9375rem;
	height: 0.125rem;
	display: block;
	background: #707070;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.header__drawer-accordion-title::before {
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.header__drawer-accordion-title::after {
	-webkit-transform: translateY(-50%) rotate(90deg);
	transform: translateY(-50%) rotate(90deg);
}

.header__drawer-accordion-title.is-open::after {
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.header__drawer-accordion-list {
	padding: 0 0 1.25rem 0.625rem;
	display: none;
}

.header__drawer-accordion-item > a {
	padding: 0.625rem 0;
	display: block;
	font-size: 1rem;
	line-height: 1;
	letter-spacing: 0.05em;
}

.header__drawer-accordion-detail-list {
	padding-left: 0.625rem;
}

.header__drawer-accordion-detail-item a {
	padding: 0.3125rem 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 0.875rem;
	line-height: 1.2;
	letter-spacing: 0.05em;
	text-align: left;
}

.header__drawer-accordion-detail-item a::before {
	content: '';
	margin-right: 0.625rem;
	position: relative;
	display: inline-block;
	width: 0.625rem;
	height: 1px;
	background-color: #707070;
}

.footer {
	background-color: #f4f8f9;
	padding: 2.5rem 0 0.5625rem;
	margin-top: -0.25rem;
}
@media screen and (max-width: 768px) {
	.footer {
		padding: 1.5rem 0;
	}
}

.footer__inner {
	margin: auto;
	padding: 0 2.5rem;
	max-width: 1024px;
	width: 100%;
}
@media screen and (max-width: 768px) {
	.footer__inner {
		padding: 0 0.9375rem;
		max-width: 39.375rem;
	}
}

.footer__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 3.9375rem;
	-moz-column-gap: 3.9375rem;
	column-gap: 3.9375rem;
	padding-bottom: 2.8125rem;
}
@media screen and (max-width: 768px) {
	.footer__top {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.footer__icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 6.00625rem;
}
@media screen and (max-width: 768px) {
	.footer__icon {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		width: 100%;
	}
}

.footer__logo {
	padding-bottom: 1.6625rem;
	width: 6.00625rem;
}
@media screen and (max-width: 768px) {
	.footer__logo {
		width: 3.125rem;
		border-bottom: none;
		padding-bottom: 0;
		padding-right: 0.625rem;
	}
}

.footer__x {
	padding: 1.71875rem 0 1.78125rem;
	margin: 0 1.25rem;
	width: 1.733125rem;
	position: relative;
}
@media screen and (max-width: 768px) {
	.footer__x {
		padding: 0.625rem 0;
		margin: 0 0.875rem;
		width: 1.170625rem;
	}
}

.footer__x::before {
	content: '';
	background-color: #707070;
	width: 6rem;
	height: 0.3px;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
	.footer__x::before {
		content: none;
	}
}

.footer__fb {
	padding: 1.71875rem 0;
	margin: 0 1.25rem;
	position: relative;
	width: 1.59375rem;
}
@media screen and (max-width: 768px) {
	.footer__fb {
		padding: 0.625rem 0;
		margin: 0 0.875rem;
		width: 1.15625rem;
	}
}

.footer__fb::before {
	content: '';
	background-color: #707070;
	width: 6rem;
	height: 0.3px;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
	.footer__fb::before {
		content: none;
	}
}

.footer__fb::after {
	content: '';
	background-color: #707070;
	width: 6rem;
	height: 0.3px;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
	.footer__fb::after {
		content: none;
	}
}

@media screen and (max-width: 768px) {
	.f-icon,
	.f-icon02 {
		border-right: 1px solid #707070;
		border-left: 1px solid #707070;
	}
}

.f-icon02 {
	border-left: none;
}

@media screen and (max-width: 768px) {
	.footer__menu {
		margin-top: 1.5rem;
		padding-left: 1.5625rem;
	}
}

.footer__menu-top,
.footer__menu-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 4rem;
	-moz-column-gap: 4rem;
	column-gap: 4rem;
}
@media screen and (max-width: 768px) {
	.footer__menu-top,
	.footer__menu-row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.footer__menu-row {
	margin-top: 2.8125rem;
}
@media screen and (max-width: 768px) {
	.footer__menu-row {
		margin-top: 0.625rem;
	}
}

.footer__menu-top-l {
	width: 25%;
}
@media screen and (max-width: 768px) {
	.footer__menu-top-l {
		width: 100%;
	}
}

.footer__menu-top-c {
	width: 23%;
}
@media screen and (max-width: 768px) {
	.footer__menu-top-c {
		width: 100%;
	}
}

.footer__menu-top-l02 {
	margin-top: 2.625rem;
}
@media screen and (max-width: 768px) {
	.footer__menu-top-l02 {
		margin-top: 0;
	}
}

@media screen and (max-width: 768px) {
	.footer__nav-container02 {
		margin-top: 0.5rem;
	}
}

.footer__nav--title {
	color: #005198;
	font-size: 0.6875rem;
	position: relative;
}
@media screen and (max-width: 768px) {
	.footer__nav--title {
		padding-right: 0.9375rem;
		margin-top: 0.5rem;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
	}
}

@media screen and (max-width: 768px) {
	.footer__nav--title::before {
		content: '';
		background-image: url(../images/common/arrow-down.png);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		width: 0.5rem;
		height: 0.375rem;
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		right: 0;
	}
}

.footer__nav-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 2.5rem;
	-moz-column-gap: 2.5rem;
	column-gap: 2.5rem;
	margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
	.footer__nav-container {
		display: none;
	}
}

#menu-feature .footer__nav-container {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-column-gap: 5.4375rem;
	-moz-column-gap: 5.4375rem;
	column-gap: 5.4375rem;
}

.footer__nav-item {
	display: block;
	padding-right: 1.25rem;
	position: relative;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
@media screen and (max-width: 768px) {
	.footer__nav-item {
		padding-left: 1.25rem;
	}
}

.footer__nav-item::before {
	content: '';
	background-image: url(../images/common/arrow-right.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 10px;
	height: 8px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: -0.125rem;
}

.footer__nav-item + .footer__nav-item {
	margin-top: 0.625rem;
}

.footer__nav-head {
	font-size: 0.6875rem;
	font-weight: 400;
	text-wrap: nowrap;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	position: relative;
}

.footer__bottom {
	position: relative;
}

.bottom__inner {
	border-top: 1px solid #707070;
	padding: 1.125rem 0 0;
	margin-inline: auto;
	width: 92.19%;
}

.bottom__links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.bottom__link {
	font-size: 0.6875rem;
	font-weight: 300;
	line-height: 2;
	padding: 0 0.875rem;
}
@media screen and (max-width: 768px) {
	.bottom__link {
		font-size: 0.5625rem;
		padding: 0 0.625rem;
	}
}

.bottom__link.link02 {
	position: relative;
}

.bottom__link.link02::before {
	content: '';
	background-color: #707070;
	width: 1px;
	height: 0.625rem;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
}

.bottom__link.link02::after {
	content: '';
	background-color: #707070;
	width: 1px;
	height: 0.625rem;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
}

.bottom__company {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-column-gap: 0.96875rem;
	-moz-column-gap: 0.96875rem;
	column-gap: 0.96875rem;
	margin-top: 1.64375rem;
}
@media screen and (max-width: 768px) {
	.bottom__company {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		row-gap: 0.5rem;
	}
}

.company__logo {
	width: 7.59125rem;
}

.company__logo img {
	aspect-ratio: 121.46/21.67;
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.company__ad {
	font-size: 0.6875rem;
	font-weight: 300;
	line-height: 2.1818181818;
}

.footer__copyright {
	display: block;
	font-size: 0.5rem;
	margin-top: 1.29375rem;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.footer__copyright {
		margin-top: 2.5rem;
	}
}

.footer__g-certi {
	width: 5.3125rem;
	position: absolute;
	bottom: 8px;
	right: 36px;
}
@media screen and (max-width: 768px) {
	.footer__g-certi {
		width: 2.5rem;
		right: 20px;
	}
}

.footer__g-certi img {
	aspect-ratio: 85/65;
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.inner {
	padding-right: 2.5rem;
	padding-left: 2.5rem;
	max-width: 1440px;
	margin-inline: auto;
}
@media screen and (max-width: 768px) {
	.inner {
		width: 100%;
		padding-right: 1.25rem;
		padding-left: 1.25rem;
	}
}

.section__title {
	font-size: 2.25rem;
	font-weight: 500;
	line-height: 1.6;
	text-align: center;
	position: relative;
}
@media screen and (max-width: 768px) {
	.section__title {
		font-size: 2rem;
	}
}

.section__title::before {
	content: 'SERVICE';
	color: #d8d8d8;
	font-family: 'adobe-garamond-pro';
	font-size: 10rem;
	font-weight: 400;
	line-height: 1;
	display: inline-block;
	position: absolute;
	bottom: -1.4375rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: -1;
}
@media screen and (max-width: 768px) {
	.section__title::before {
		font-size: 5.1701875rem;
		bottom: -0.5625rem;
	}
}

.p-fv {
	background-color: #cfecfa;
	padding: 3.125rem 0;
}
@media screen and (max-width: 768px) {
	.p-fv {
		padding: 1.875rem 0;
	}
}

.p-fv__inner {
	padding: 0 5rem;
	max-width: 1024px;
	margin-inline: auto;
}
@media screen and (max-width: 768px) {
	.p-fv__inner {
		padding: 0 20px;
	}
}

.p-fv__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-column-gap: 3.125rem;
	-moz-column-gap: 3.125rem;
	column-gap: 3.125rem;
}
@media screen and (max-width: 768px) {
	.p-fv__wrap {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		row-gap: 0.625rem;
	}
}

.p-fv__left {
	width: 57%;
}
@media screen and (max-width: 768px) {
	.p-fv__left {
		width: 100%;
	}
}

.p-fv__catch {
	color: #005198;
	font-size: 1.875rem;
	line-height: 1.4;
	margin-top: 2rem;
}
@media screen and (max-width: 768px) {
	.p-fv__catch {
		font-size: 1.375rem;
		margin-top: 1.375rem;
	}
}

.p-fv__catch.gmo {
	position: relative;
	z-index: 10;
}

.p-fv__catch.gmo::before {
	content: '';
	position: absolute;
	top: 44%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: -1.25rem;
	width: 17.9375rem;
	height: 3.185rem;
	background-image: url(../images/common/gmo.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	z-index: -1;
}
@media screen and (max-width: 768px) {
	.p-fv__catch.gmo::before {
		width: 13.75rem;
	}
}

.p-fv__catch.gmo-b {
	margin-top: 1.125rem;
	margin-bottom: -0.625rem;
}

.p-fv__desc {
	font-size: 0.9375rem;
	line-height: 1.7333333333;
	margin-top: 1.6875rem;
}
@media screen and (max-width: 768px) {
	.p-fv__desc {
		font-size: 0.75rem;
		margin-top: 1.0625rem;
	}
}

.p-fv__desc span {
	display: inline-block;
	font-size: 0.9375rem;
	line-height: 1.7333333333;
}
@media screen and (max-width: 768px) {
	.p-fv__desc span {
		font-size: 0.75rem;
	}
}

.p-fv__right {
	position: relative;
}

.p-fv__right::before {
	content: '';
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: -5rem;
}
@media screen and (max-width: 768px) {
	.p-fv__right::before {
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}

.p-fv__right.sp-show {
	display: none;
}
@media screen and (max-width: 768px) {
	.p-fv__right.sp-show {
		display: block;
	}
}

.p-function__item {
	background-color: #fff;
	-webkit-box-shadow: 2px 2px 5px 0px rgba(1, 136, 195, 0.15);
	box-shadow: 2px 2px 5px 0px rgba(1, 136, 195, 0.15);
	border: none;
	border-radius: 6px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0.5625rem 0 0.5625rem 3.3125rem;
	height: 3.75rem;
	position: relative;
	max-width: 221px;
	width: 13.8125rem;
}
@media screen and (max-width: 768px) {
	.p-function__item {
		padding: 0.375rem 0.5rem 0.375rem 2.125rem;
		height: 2.5rem;
		max-width: 275px;
		width: 9.375rem;
	}
}

.p-function__name {
	font-size: clamp(0.75rem, 0.7045454545rem + 0.2272727273vw, 0.875rem);
	font-weight: 500;
	line-height: 1.5;
	padding-right: 0.75rem;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
@media screen and (max-width: 768px) {
	.p-function__name {
		padding-right: 0;
		font-size: 10px;
	}
}

.p-function__item.item01 {
	display: block;
}
@media screen and (max-width: 768px) {
	.p-function__item.item01 {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

@media screen and (max-width: 768px) {
	.p-function__item.item016 {
		padding: 0.375rem 0.5rem 0.375rem 2.3125rem;
	}
}

.p-function__name.arrow-none {
	padding-right: 0;
}
.p-function__name.arrow-none::after {
	content: none;
}

.p-function__item::before {
	content: '';
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0.9375rem;
}
@media screen and (max-width: 768px) {
	.p-function__item::before {
		left: 0.625rem;
	}
}

.p-function__item.item01::before {
	background-image: url(../images/top/function/01.png);
	width: 1.61875rem;
	height: 2rem;
}
@media screen and (max-width: 768px) {
	.p-function__item.item01::before {
		width: 0.99375rem;
		height: 1.375rem;
	}
}

.p-function__item.item02::before {
	background-image: url(../images/top/function/02.png);
	width: 2rem;
	height: 1.896875rem;
}
@media screen and (max-width: 768px) {
	.p-function__item.item02::before {
		width: 1.375rem;
		height: 1.271875rem;
	}
}

.p-function__item.item03::before {
	background-image: url(../images/top/function/03.png);
	width: 1.61875rem;
	height: 2rem;
}
@media screen and (max-width: 768px) {
	.p-function__item.item03::before {
		width: 0.99375rem;
		height: 1.375rem;
	}
}

.p-function__item.item04::before {
	background-image: url(../images/top/function/04.png);
	width: 1.869375rem;
	height: 2rem;
}
@media screen and (max-width: 768px) {
	.p-function__item.item04::before {
		width: 1.244375rem;
		height: 1.375rem;
	}
}

.p-function__item.item05::before {
	background-image: url(../images/top/function/05.png);
	width: 1.635625rem;
	height: 2rem;
}
@media screen and (max-width: 768px) {
	.p-function__item.item05::before {
		width: 1.010625rem;
		height: 1.375rem;
	}
}

.p-function__item.item06::before {
	background-image: url(../images/top/function/06.png);
	width: 1.61875rem;
	height: 2rem;
}
@media screen and (max-width: 768px) {
	.p-function__item.item06::before {
		width: 0.99375rem;
		height: 1.375rem;
	}
}

.p-function__item.item07::before {
	background-image: url(../images/top/function/07.png);
	width: 2rem;
	height: 1.660625rem;
}
@media screen and (max-width: 768px) {
	.p-function__item.item07::before {
		width: 1.375rem;
		height: 1.035625rem;
	}
}

.p-function__item.item08::before {
	background-image: url(../images/top/function/08.png);
	width: 1.204375rem;
	height: 2rem;
}
@media screen and (max-width: 768px) {
	.p-function__item.item08::before {
		width: 0.579375rem;
		height: 1.375rem;
	}
}

.p-function__item.item09::before {
	background-image: url(../images/top/function/09.png);
	width: 2rem;
	height: 1.86875rem;
}
@media screen and (max-width: 768px) {
	.p-function__item.item09::before {
		width: 1.375rem;
		height: 1.24375rem;
	}
}

.p-function__item.item10::before {
	background-image: url(../images/top/function/10.png);
	width: 2rem;
	height: 1.5rem;
}
@media screen and (max-width: 768px) {
	.p-function__item.item10::before {
		width: 1.375rem;
		height: 0.875rem;
	}
}

.p-function__item.item11::before {
	background-image: url(../images/top/function/11.png);
	width: 2rem;
	height: 1.35875rem;
}
@media screen and (max-width: 768px) {
	.p-function__item.item11::before {
		width: 1.375rem;
		height: 0.73375rem;
	}
}

.p-function__item.item12::before {
	background-image: url(../images/top/function/12.png);
	width: 1.63375rem;
	height: 2rem;
}
@media screen and (max-width: 768px) {
	.p-function__item.item12::before {
		width: 1.00875rem;
		height: 1.375rem;
	}
}

.p-function__item.item13::before {
	background-image: url(../images/top/function/13.png);
	width: 1.6525rem;
	height: 2rem;
}
@media screen and (max-width: 768px) {
	.p-function__item.item13::before {
		width: 1.0275rem;
		height: 1.375rem;
	}
}

.p-function__item.item14::before {
	background-image: url(../images/top/function/14.png);
	width: 1.619375rem;
	height: 2rem;
}
@media screen and (max-width: 768px) {
	.p-function__item.item14::before {
		width: 0.994375rem;
		height: 1.375rem;
	}
}

.p-function__item.item15::before {
	background-image: url(../images/top/function/15.png);
	width: 2.2325rem;
	height: 0.99375rem;
}
@media screen and (max-width: 768px) {
	.p-function__item.item15::before {
		width: 1.795rem;
		height: 0.55625rem;
	}
}

.p-function__item.item16::before {
	background-image: url(../images/top/function/16.png);
	width: 2rem;
	height: 1.865rem;
}
@media screen and (max-width: 768px) {
	.p-function__item.item16::before {
		width: 1.375rem;
		height: 1.24rem;
	}
}

.feature {
	background-color: #fff;
	padding: 3.125rem 0;
}
@media screen and (max-width: 768px) {
	.feature {
		padding: 2.5rem 0;
	}
}

.feature__title {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.25;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.feature__title {
		font-size: 1.25rem;
	}
}

.feature__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 1.5rem;
}
.feature__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0 2.5rem;
}
@media screen and (max-width: 768px) {
	.feature__item {
		width: 18rem;
		padding: 0;
	}
}

.feature__item.item02 {
	border-right: 0.5px solid #0188c3;
	border-left: 0.5px solid #0188c3;
}
.feature__num {
	color: #0188c3;
	font-size: 2.0625rem;
	line-height: 1.1;
}
@media screen and (max-width: 768px) {
	.feature__num {
		font-size: 1.25rem;
	}
}

.feature__head {
	font-size: 1.3125rem;
	font-weight: 500;
	line-height: 1.4285714286;
	margin-top: 0.5625rem;
	text-align: center;
	text-wrap: nowrap;
}
@media screen and (max-width: 768px) {
	.feature__head {
		font-size: 0.75rem;
		text-align: center;
	}
}

.feature__link {
	margin-top: 0.75rem;
	padding: 0 1.875rem;
}
@media screen and (max-width: 768px) {
	.feature__link {
		padding: 0 0.625rem;
	}
}

.feature__link p {
	color: #0188c3;
	font-size: 0.8125rem;
	line-height: 1.8461538462;
	margin-bottom: 0.3125rem;
}
@media screen and (max-width: 768px) {
	.feature__link p {
		font-size: 0.6875rem;
	}
}

.feature__link img {
	margin-inline: auto;
	width: 1.2rem;
}
@media screen and (max-width: 768px) {
	.feature__link img {
		width: 0.8875rem;
	}
}

.feature-detail {
	background-color: #f4f8f9;
	padding: 1.6875rem 0 5.3125rem;
}

.feature-detail__container {
	background-color: #fff;
	border-radius: 15px;
	padding: 2.3125rem 2.125rem 2.5rem;
	margin-inline: auto;
	max-width: 944px;
	width: 92.19%;
}
@media screen and (max-width: 768px) {
	.feature-detail__container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		padding: 1.5625rem;
	}
}

.feature-detail__container + .feature-detail__container {
	margin-top: 3.3125rem;
}
@media screen and (max-width: 768px) {
	.feature-detail__container + .feature-detail__container {
		margin-top: 2.0625rem;
	}
}

.feature-detail__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-column-gap: 3rem;
	-moz-column-gap: 3rem;
	column-gap: 3rem;
}
@media screen and (max-width: 768px) {
	.feature-detail__content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.feature-detail__content.sub-img {
	gap: 0;
}

.feature-detail__content.sub-img .feature-detail__wrap {
	width: 50%;
}
@media screen and (max-width: 768px) {
	.feature-detail__content.sub-img .feature-detail__wrap {
		width: 100%;
	}
}

.feature-detail__wrap {
	width: 50%;
}
@media screen and (max-width: 768px) {
	.feature-detail__wrap {
		width: 100%;
	}
}

.feature-detail__title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.feature-detail__title.note {
	padding-bottom: 1.375rem;
}

.feature-detail__num {
	color: #0188c3;
	font-size: 3.125rem;
}
@media screen and (max-width: 768px) {
	.feature-detail__num {
		font-size: 2.1875rem;
	}
}

.feature-detail__name {
	color: #0188c3;
	font-size: 1.5625rem;
	font-weight: 500;
	line-height: 1.2;
	margin-left: 1.5625rem;
	position: relative;
}
@media screen and (max-width: 768px) {
	.feature-detail__name {
		font-size: 1.25rem;
		margin-left: 0.9375rem;
	}
}

.feature-detail__title.note .feature-detail__name::before {
	content: '※特許申請中';
	color: #0188c3;
	font-size: 0.8125rem;
	font-weight: 300;
	position: absolute;
	bottom: -1.375rem;
	left: 0;
}

.feature-detail__text {
	font-size: 0.9375rem;
	line-height: 1.8461538462;
}

.feature-detail__img {
	max-width: 438px;
	width: 27.375rem;
}
@media screen and (max-width: 768px) {
	.feature-detail__img {
		margin-top: 1.5rem;
		max-width: none;
		width: 100%;
	}
}

.feature-detail__img img {
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.feature-detail__content.reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
	.feature-detail__content.reverse {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.utilities {
	background-color: #fff;
	padding: 3.125rem 0;
}

.utilities__title {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.25;
	text-align: center;
}

.utilities__items {
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch; /* 子要素の高さを揃える */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-column-gap: 1.375rem;
	-moz-column-gap: 1.375rem;
	column-gap: 1.375rem;
	padding: 0 2.5rem 3.125rem 2.5rem;
	max-width: 1200px;
	margin-top: 1.5625rem;
	margin-inline: auto;
}
@media screen and (max-width: 768px) {
	.utilities__items {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		row-gap: 1.5rem;
	}
}

.utilities__item {
	background-color: #edf7fa;
	border-radius: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 1.6875rem 2.1875rem 1.6875rem;
	visibility: hidden;
	max-width: 358px;
}
@media screen and (max-width: 768px) {
	.utilities__item {
		aspect-ratio: auto;
		max-width: none;
	}
}

.utilities__item-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 7.5625rem;
	position: relative;
}

.utilities__item-head {
	color: #0188c3;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	padding-bottom: 0.80625rem;
	text-align: center;
	margin-top: 1.275rem;
}

.utilities__item-head span {
	color: #0188c3;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.875;
	display: inline-block;
}

.utilities__item-text {
	font-size: 0.8125rem;
	font-weight: 300;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	line-height: 1.6923076923;
	padding-top: 1.00625rem;
	padding-bottom: 0.8125rem;
	width: 100%;
	position: relative;
}

.utilities__item-text::before {
	content: '';
	background-color: #0188c3;
	height: 1px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.utilities__item-img {
	margin-top: auto;
}

.utilities__arrow {
	margin-inline: auto;
	width: 5.625rem;
}
@media screen and (max-width: 768px) {
	.utilities__arrow {
		width: 3.125rem;
	}
}

.utilities-effect {
	background-color: #0188c3;
	border-radius: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-column-gap: 1.875rem;
	-moz-column-gap: 1.875rem;
	column-gap: 1.875rem;
	padding: 2.1875rem 2.9375rem;
	margin-inline: auto;
	margin-top: 1.25rem;
	width: 59rem;
}
@media screen and (max-width: 768px) {
	.utilities-effect {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 1.5625rem 2.3125rem;
		width: 90%;
	}
}

.utilities-effect__head {
	aspect-ratio: 1/1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: #fff;
	border-radius: 50%;
	color: #0188c3;
	font-size: 1.375rem;
	font-weight: 700;
	line-height: 1.2727272727;
	padding-top: 0.75rem;
	text-align: center;
	width: 7.5rem;
	height: 7.5rem;
	text-wrap: nowrap;
}
@media screen and (max-width: 768px) {
	.utilities-effect__head {
		font-size: 0.875rem;
		width: 5rem;
		height: 5rem;
	}
}

.utilities-effect__text {
	color: #fff;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.5555555556;
}
@media screen and (max-width: 768px) {
	.utilities-effect__text {
		font-size: 0.875rem;
		margin-top: 0.875rem;
	}
}

.related-features {
	padding-top: 1.25rem;
	padding-bottom: 1.5625rem;
}

.related-features__title {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	position: relative;
}

.related-features__title::before {
	content: '';
	background-image: url(../images/common/ribon.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 19.375rem;
	height: 3.125rem;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: -1;
}

.related-features__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-column-gap: 1.0625rem;
	-moz-column-gap: 1.0625rem;
	column-gap: 1.0625rem;
	row-gap: 1.4375rem;
	padding: 0 1.875rem;
	margin-top: 3.125rem;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-inline: auto;
	max-width: 1024px;
}
@media screen and (max-width: 768px) {
	.related-features__items {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		row-gap: 0.75rem;
	}
}

.related-features__item {
	border: 1px solid #0188c3;
	border-radius: 38px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.1666666667;
	padding: 1.625rem 0 1.375rem 1.12125rem;
	width: 18.75rem;
	position: relative;
}
@media screen and (max-width: 768px) {
	.related-features__item {
		font-size: 0.875rem;
		padding: 1rem 0 0.75rem 1.12125rem;
		width: 12.5rem;
	}
}

.related-features__item p {
	position: relative;
}

.related-features__item p::before {
	content: '';
	background-image: url(../images/common/hushtag.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 0.92125rem;
	height: 1.01125rem;
	position: absolute;
	top: 42%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: -1.30875rem;
}
@media screen and (max-width: 768px) {
	.related-features__item p::before {
		width: 0.79625rem;
		height: 0.88625rem;
	}
}

.fadeUp {
	-webkit-animation-name: fadeUpAnime;
	animation-name: fadeUpAnime;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

@-webkit-keyframes fadeUpAnime {
	from {
		opacity: 0;
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeUpAnime {
	from {
		opacity: 0;
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
.fadeUpTrigger {
	opacity: 0;
	-webkit-transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
	transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
	transition: opacity 0.4s ease-out, transform 0.4s ease-out;
	transition: opacity 0.4s ease-out, transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
	-webkit-transform: translateY(5px);
	transform: translateY(5px);
}

.fadeIn {
	-webkit-animation-name: fadeInAnime;
	animation-name: fadeInAnime;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	opacity: 0;
}

@-webkit-keyframes fadeInAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeInAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.fv {
	padding: 2.5rem 0;
}

.fv__wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
@media screen and (max-width: 768px) {
	.fv__wrap {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding-top: 1.25rem;
	}
}

.fv__text {
	position: relative;
}
@media screen and (max-width: 768px) {
	.fv__text {
		margin-right: auto;
	}
}

.fv__text::before {
	content: '';
	background-image: url(../images/top/fv/bar.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	width: 22.375rem;
	height: 0.625rem;
	position: absolute;
	bottom: -0.2375rem;
	left: 0;
}
@media screen and (max-width: 768px) {
	.fv__text::before {
		width: 9.875rem;
		height: 0.3125rem;
	}
}

.fv__text01 {
	font-family: 'Noto Sans JP';
	font-size: 1.8125rem;
	font-weight: 500;
	letter-spacing: -0.2em;
}
@media screen and (max-width: 768px) {
	.fv__text01 {
		font-size: 1.1875rem;
		letter-spacing: normal;
	}
}

.fv__text02 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	margin-top: 0.75rem;
}

.fv__text02 img {
	max-width: 315.73;
	width: 19.733125rem;
}
@media screen and (max-width: 768px) {
	.fv__text02 img {
		max-width: 165.73;
		width: 10.358125rem;
	}
}

.fv__text02 p {
	font-family: 'Noto Sans JP';
	font-size: 3.75rem;
	line-height: 1;
	margin-left: -1.25rem;
}
@media screen and (max-width: 768px) {
	.fv__text02 p {
		font-size: 1.875rem;
		margin-left: -0.625rem;
		text-shadow: 0px 0px 6px rgb(255, 255, 255);
	}
}

.fv__text03 {
	font-family: 'Noto Sans JP';
	font-size: 3.75rem;
}
@media screen and (max-width: 768px) {
	.fv__text03 {
		font-size: 1.875rem;
		text-shadow: 0px 0px 6px rgb(255, 255, 255);
	}
}

.fv__img {
	max-width: 483px;
}
@media screen and (max-width: 768px) {
	.fv__img {
		margin-left: auto;
		margin-top: -4.5rem;
		width: 70%;
	}
}

.fv__img img {
	aspect-ratio: 483/345.03;
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.catch {
	background-color: #f4f8f9;
	padding: 3.375rem 0 2.625rem;
}

.catch__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	margin-inline: auto;
	max-width: 1240px;
}
@media screen and (max-width: 768px) {
	.catch__container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.catch__left {
	width: 53%;
}
@media screen and (max-width: 768px) {
	.catch__left {
		width: 100%;
	}
}

.left-lead {
	font-size: 1.5rem;
	font-weight: 500;
}

.left-lead span {
	color: #0188c3;
}

.left-text {
	font-size: 0.975rem;
	font-weight: 300;
	line-height: 1.8461538462;
	margin-top: 1rem;
}

.catch__center {
	position: absolute;
	top: 1.125rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	max-width: 100px;
	width: 6.25rem;
}
@media screen and (max-width: 768px) {
	.catch__center {
		top: auto;
		bottom: 3.125rem;
		left: 3.125rem;
		width: 4.375rem;
	}
}

.catch__center img {
	aspect-ratio: 1/1;
}

.catch__right {
	margin-top: -3.5rem;
	padding-left: 1.25rem;
	width: 31.5rem;
}
@media screen and (max-width: 768px) {
	.catch__right {
		margin-top: 0;
		margin-left: auto;
		padding-left: 2.5rem;
		width: 21.5rem;
	}
}

.catch__right img {
	aspect-ratio: 504/284.4;
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.about {
	background-color: #fff;
	padding: 3.75rem 0 5.125rem;
}

.about__title {
	font-size: 1.5rem;
	font-weight: 500;
	text-align: center;
}

.about__items {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	-webkit-column-gap: 6.0625rem;
	-moz-column-gap: 6.0625rem;
	column-gap: 6.0625rem;
	margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
	.about__items {
		grid-template-columns: 1fr;
		row-gap: 1.875rem;
	}
}

.about__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.about__num {
	color: #0188c3;
	font-size: 2.0625rem;
}

.about__head {
	font-size: 1.3125rem;
	font-weight: 500;
	margin-top: 0.5625rem;
}

.about__text {
	font-size: 0.8125rem;
	font-weight: 300;
	line-height: 1.8461538462;
	margin-top: 0.75rem;
}

.about__img.img01 {
	margin-top: 0.5625rem;
	width: 6.554375rem;
}

.about__img.img01 img {
	aspect-ratio: 104.87/110.23;
}

.about__img.img02 {
	margin-top: 2.73125rem;
	width: 10.89875rem;
}

.about__img.img02 img {
	aspect-ratio: 174.38/71.3;
}

.about__img.img03 {
	margin-top: 1.1875rem;
	width: 6.761875rem;
}

.about__img.img03 img {
	aspect-ratio: 108.19/76.03;
}

.about-detail {
	background-color: #f4f8f9;
	padding: 1.6875rem 0 5.3125rem;
}

.about-detail__container {
	background-color: #fff;
	border-radius: 15px;
	padding: 2.3125rem 2.125rem 2.5rem;
	margin-inline: auto;
	max-width: 1200px;
	width: 92.19%;
}
@media screen and (max-width: 768px) {
	.about-detail__container {
		padding: 1.5625rem;
	}
}

.about-detail__container + .about-detail__container {
	margin-top: 3.3125rem;
}

.container__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-column-gap: 3rem;
	-moz-column-gap: 3rem;
	column-gap: 3rem;
	margin-top: -12.5rem;
	padding-top: 12.5rem;
}
@media screen and (max-width: 768px) {
	.container__top {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

@media screen and (max-width: 1024px) {
	#about01 .container__top {
		-webkit-column-gap: 1.75rem;
		-moz-column-gap: 1.75rem;
		column-gap: 1.75rem;
	}
}

@media screen and (max-width: 768px) {
	.top__wrap {
		width: 100%;
	}
}

.top__title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.top__num {
	color: #0188c3;
	font-size: 3.125rem;
}
@media screen and (max-width: 768px) {
	.top__num {
		font-size: 2.1875rem;
	}
}

.top__name {
	color: #0188c3;
	font-size: 1.5625rem;
	font-weight: 500;
	line-height: 1.2;
	margin-left: 1.5625rem;
}
@media screen and (max-width: 768px) {
	.top__name {
		font-size: 1.25rem;
		margin-left: 0.9375rem;
	}
}

.top-line {
	border: 1px solid #1cbf4e;
	border-radius: 6px;
	font-size: 0.8125rem;
	padding: 0.25rem 0.5rem 0.25rem 2.125rem;
	margin-left: 0.625rem;
	position: relative;
}
@media screen and (max-width: 768px) {
	.top-line {
		font-size: 0.6875rem;
		margin-left: 1.25rem;
		padding-left: 1.625rem;
	}
}

.top-line::before {
	content: '';
	background-image: url(../images/top/about/line.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: clamp(1.25rem, 1.1363636364rem + 0.5681818182vw, 1.5625rem);
	height: clamp(1.25rem, 1.1363636364rem + 0.5681818182vw, 1.5625rem);
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 4px;
}

.top__text {
	font-size: 0.975rem;
	line-height: 1.8461538462;
}

.top__text span {
	display: inline-block;
}

.top__relation {
	margin-top: 1.125rem;
}

.top__relation-head {
	background-color: #0188c3;
	border-radius: 50px;
	color: #fff;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.8461538462;
	padding: 0.1875rem 1.0625rem;
	text-align: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.top__relation-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 1.0625rem;
	-moz-column-gap: 1.0625rem;
	column-gap: 1.0625rem;
	row-gap: 0.5625rem;
	margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
	.top__relation-items {
		margin-top: 0.625rem;
	}
}

@media screen and (max-width: 768px) {
	.top__relation-items.sp-none {
		display: none;
	}
}

.top__relation-items.sp-show {
	display: none;
}
@media screen and (max-width: 768px) {
	.top__relation-items.sp-show {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}

.top__relation-item {
	font-size: 0.8125rem;
	font-weight: 300;
	padding-left: 0.9375rem;
	position: relative;
}

.top__relation-item::before {
	content: '';
	background-color: #0188c3;
	border-radius: 50%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 10px;
	height: 10px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
}

.top__img {
	max-width: 438px;
	width: 27.375rem;
}
@media screen and (max-width: 768px) {
	.top__img {
		margin-top: 1.5rem;
		max-width: none;
		width: 100%;
	}
}

.top__img img {
	aspect-ratio: 438/280;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.container__bottom {
	margin-top: 2.375rem;
}

.bottom__head {
	font-size: 1.25rem;
	line-height: 1.5;
	font-weight: 500;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.bottom__head {
		font-size: 1rem;
	}
}

.bottom__body {
	background-color: rgba(1, 136, 195, 0.07);
	border-radius: 9px;
	padding: 1.25rem 3.9375rem 0.9375rem;
	margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
	.bottom__body {
		padding: 1.25rem;
	}
}

.bottom__body-items {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	-webkit-column-gap: 3.125rem;
	-moz-column-gap: 3.125rem;
	column-gap: 3.125rem;
}
@media screen and (max-width: 768px) {
	.bottom__body-items {
		grid-template-columns: 1fr 1fr;
		-webkit-column-gap: 1.875rem;
		-moz-column-gap: 1.875rem;
		column-gap: 1.875rem;
		row-gap: 1.875rem;
	}
}

.bottom__body-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.item-title {
	background-color: #fff;
	font-size: 1rem;
	line-height: 1.875;
	text-align: center;
	width: 100%;
}
@media screen and (max-width: 768px) {
	.item-title {
		font-size: 0.75rem;
	}
}

.item-data {
	color: #0188c3;
	font-size: 0.9375rem;
	line-height: 2;
	padding-left: 0.910625rem;
	margin-top: 0.4375rem;
	text-align: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	position: relative;
}
@media screen and (max-width: 768px) {
	.item-data {
		font-size: 0.6875rem;
	}
}

.item-data span {
	color: #0188c3;
	font-size: 1.5625rem;
	line-height: 1.2;
	padding-right: 0.3125rem;
}
@media screen and (max-width: 768px) {
	.item-data span {
		font-size: 1.25rem;
	}
}

.item-data::before {
	content: '';
	background-image: url(../images/top/about/arrow-down.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 0.660625rem;
	height: 1.350625rem;
	position: absolute;
	top: 41%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
}

.item-note {
	font-size: 0.6875rem;
	line-height: 1.5454545455;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.item-note {
		font-size: 0.625rem;
	}
}

.container__top.reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-column-gap: 0;
	-moz-column-gap: 0;
	column-gap: 0;
	overflow-x: hidden;
}
@media screen and (max-width: 768px) {
	.container__top.reverse {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.container__top.reverse .top__relation-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.container__top.reverse .top__relation-item {
	text-wrap: nowrap;
}

.container__top.reverse .top__wrap {
	margin-left: -1.875rem;
}
@media screen and (max-width: 768px) {
	.container__top.reverse .top__wrap {
		margin-left: auto;
		width: 100%;
	}
}

.top__img.img02 {
	margin-left: -3.125rem;
	max-width: 563px;
	width: 35.1875rem;
	position: relative;
	z-index: -1;
}
@media screen and (max-width: 768px) {
	.top__img.img02 {
		margin-top: 1.5rem;
		margin-left: auto;
		max-width: none;
		width: 100%;
	}
}

.top__img.img02 img {
	aspect-ratio: 563/280;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.bottom__body.body02 {
	padding: 1.375rem 3.5rem 1.3125rem 4.8125rem;
}
@media screen and (max-width: 768px) {
	.bottom__body.body02 {
		padding: 1.25rem;
	}
}

.bottom__body-items02 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-column-gap: 2.5625rem;
	-moz-column-gap: 2.5625rem;
	column-gap: 2.5625rem;
}
@media screen and (max-width: 768px) {
	.bottom__body-items02 {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		row-gap: 2.5rem;
	}
}

.bottom__body-items02 .item-title {
	background-color: transparent;
	font-size: 0.8125rem;
}

.bottom__body-items02 .item-img.img01 {
	max-width: 110.31px;
	margin-top: 0.6875rem;
	margin-bottom: 0.58125rem;
}

.bottom__body-items02 .item-img.img02 {
	max-width: 49.1px;
	margin-top: 0.9375rem;
	margin-bottom: 0.96875rem;
}

.bottom__body-items02 .item-img.img03 {
	max-width: 64px;
	margin-top: 0.5625rem;
	margin-bottom: 0.775rem;
}

.bottom__body-items02 .item-note {
	font-size: 0.8125rem;
}

.container03 .container__top {
	-webkit-column-gap: 2.1875rem;
	-moz-column-gap: 2.1875rem;
	column-gap: 2.1875rem;
}

@media screen and (max-width: 768px) {
	.container03 .top__wrap {
		width: 100%;
	}
}

.top__relation-items03 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 1.25rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	margin-top: 0.9375rem;
}

.top__img.img03 img {
	aspect-ratio: 438/294;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.bottom__body-items03 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-column-gap: 1.9375rem;
	-moz-column-gap: 1.9375rem;
	column-gap: 1.9375rem;
}
@media screen and (max-width: 768px) {
	.bottom__body-items03 {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		row-gap: 2.5rem;
	}
}

.bottom__body-items03 .item-title {
	background-color: transparent;
	font-size: 0.8125rem;
}

.bottom__body-items03 .item-img.img01 {
	max-width: 49.91px;
	margin-top: 0.6rem;
}

.bottom__body-items03 .item-img.img02 {
	max-width: 51.2px;
	margin-top: 0.8125rem;
}

.bottom__body-items03 .item-img.img03 {
	max-width: 73.6px;
	margin-top: 1rem;
}

.function {
	padding: 1.5625rem 1.5625rem 3.4375rem;
	max-width: 1203px;
	margin-inline: auto;
}
@media screen and (max-width: 768px) {
	.function {
		padding: 1.5625rem 0.625rem 3.4375rem;
	}
}

.function__title {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.25;
	text-align: center;
}

.function__items {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	-webkit-column-gap: 1.0625rem;
	-moz-column-gap: 1.0625rem;
	column-gap: 1.0625rem;
	row-gap: 1.875rem;
	margin-top: 2.125rem;
	margin-inline: auto;
}
@media screen and (max-width: 768px) {
	.function__items {
		grid-template-columns: 1fr 1fr;
		-webkit-column-gap: 1.0625rem;
		-moz-column-gap: 1.0625rem;
		column-gap: 1.0625rem;
		row-gap: 0.9375rem;
	}
}

.function__item {
	border: 2px solid #0188c3;
	border-radius: 6px;
	-webkit-box-shadow: 2px 2px 5px 0px rgba(1, 136, 195, 0.15);
	box-shadow: 2px 2px 5px 0px rgba(1, 136, 195, 0.15);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0.5625rem 0.8125rem 0.5625rem 3.3125rem;
	height: 3.75rem;
	position: relative;
}
@media screen and (max-width: 768px) {
	.function__item {
		padding: 0.375rem 0rem 0.375rem 1.875rem;
		height: 3.125rem;
	}
}

.function__name {
	font-size: clamp(0.71875rem, 0.6619318182rem + 0.2840909091vw, 0.875rem);
	font-weight: 500;
	line-height: 1.5;
	padding-right: 0.75rem;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	position: relative;
}
@media screen and (max-width: 768px) {
	.function__name {
		font-size: 10px;
		line-height: 1.2;
	}
}

.function__name span {
	display: inline-block;
}

.function__name::after {
	content: '';
	background-image: url(../images/top/function/arrow-right.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 10px;
	height: 7px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: -0.5625rem;
}
@media screen and (max-width: 768px) {
	.function__name::after {
		width: 0.6875rem;
		height: 0.5625rem;
		right: -0.1875rem;
	}
}

@media screen and (max-width: 768px) {
	.function__item.item05 .function__name::after {
		right: 0;
	}
}

.function__item.item01 {
	display: block;
}
@media screen and (max-width: 768px) {
	.function__item.item01 {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

.function__name.arrow-none {
	padding-right: 0;
}
@media screen and (max-width: 768px) {
	.function__name.arrow-none {
		font-size: 10px;
	}
}

.function__name.arrow-none::after {
	content: none;
}

.function__item::before {
	content: '';
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0.9375rem;
}
@media screen and (max-width: 768px) {
	.function__item::before {
		left: 0.375rem;
	}
}

.function__item.item01::before {
	background-image: url(../images/top/function/01.png);
	width: 1.61875rem;
	height: 2rem;
}
@media screen and (max-width: 768px) {
	.function__item.item01::before {
		width: 0.99375rem;
		height: 1.375rem;
	}
}

.function__item.item02::before {
	background-image: url(../images/top/function/02.png);
	width: 2rem;
	height: 1.896875rem;
}
@media screen and (max-width: 768px) {
	.function__item.item02::before {
		width: 1.375rem;
		height: 1.271875rem;
	}
}

.function__item.item03::before {
	background-image: url(../images/top/function/03.png);
	width: 1.61875rem;
	height: 2rem;
}
@media screen and (max-width: 768px) {
	.function__item.item03::before {
		width: 0.99375rem;
		height: 1.375rem;
	}
}

.function__item.item04::before {
	background-image: url(../images/top/function/04.png);
	width: 1.869375rem;
	height: 2rem;
}
@media screen and (max-width: 768px) {
	.function__item.item04::before {
		width: 1.244375rem;
		height: 1.375rem;
	}
}

.function__item.item05::before {
	background-image: url(../images/top/function/05.png);
	width: 1.635625rem;
	height: 2rem;
}
@media screen and (max-width: 768px) {
	.function__item.item05::before {
		width: 1.010625rem;
		height: 1.375rem;
	}
}

.function__item.item06::before {
	background-image: url(../images/top/function/06.png);
	width: 1.61875rem;
	height: 2rem;
}
@media screen and (max-width: 768px) {
	.function__item.item06::before {
		width: 0.99375rem;
		height: 1.375rem;
	}
}

.function__item.item07::before {
	background-image: url(../images/top/function/07.png);
	width: 2rem;
	height: 1.660625rem;
}
@media screen and (max-width: 768px) {
	.function__item.item07::before {
		width: 1.375rem;
		height: 1.035625rem;
	}
}

.function__item.item08::before {
	background-image: url(../images/top/function/08.png);
	width: 1.204375rem;
	height: 2rem;
	left: 0.9375rem;
}
@media screen and (max-width: 768px) {
	.function__item.item08::before {
		width: 0.704375rem;
		height: 1.5rem;
		left: 0.6875rem;
	}
}

.function__item.item09::before {
	background-image: url(../images/top/function/09.png);
	width: 2rem;
	height: 1.86875rem;
}
@media screen and (max-width: 768px) {
	.function__item.item09::before {
		width: 1.375rem;
		height: 1.24375rem;
	}
}

.function__item.item10::before {
	background-image: url(../images/top/function/10.png);
	width: 2rem;
	height: 1.5rem;
}
@media screen and (max-width: 768px) {
	.function__item.item10::before {
		width: 1.375rem;
		height: 0.875rem;
	}
}

.function__item.item11::before {
	background-image: url(../images/top/function/11.png);
	width: 2rem;
	height: 1.35875rem;
}
@media screen and (max-width: 768px) {
	.function__item.item11::before {
		width: 1.375rem;
		height: 0.73375rem;
	}
}

.function__item.item12::before {
	background-image: url(../images/top/function/12.png);
	width: 1.63375rem;
	height: 2rem;
}
@media screen and (max-width: 768px) {
	.function__item.item12::before {
		width: 1.00875rem;
		height: 1.375rem;
	}
}

.function__item.item13::before {
	background-image: url(../images/top/function/13.png);
	width: 1.6525rem;
	height: 2rem;
}
@media screen and (max-width: 768px) {
	.function__item.item13::before {
		width: 1.0275rem;
		height: 1.375rem;
	}
}

.function__item.item14::before {
	background-image: url(../images/top/function/14.png);
	width: 1.619375rem;
	height: 2rem;
}
@media screen and (max-width: 768px) {
	.function__item.item14::before {
		width: 0.994375rem;
		height: 1.375rem;
	}
}

.function__item.item15::before {
	background-image: url(../images/top/function/15.png);
	width: 2.42rem;
	height: 1.18125rem;
	left: 0.3125rem;
}
@media screen and (max-width: 768px) {
	.function__item.item15::before {
		width: 1.795rem;
		height: 0.55625rem;
		left: 0;
	}
}

.function__item.item16::before {
	background-image: url(../images/top/function/16.png);
	width: 2rem;
	height: 1.865rem;
}
@media screen and (max-width: 768px) {
	.function__item.item16::before {
		width: 1.25rem;
		height: 1.115rem;
	}
}

.t-voice {
	background-color: #fff;
	padding-bottom: 3.125rem;
}

.t-voice__title {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.25;
	text-align: center;
}

.t-voice__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-column-gap: 4rem;
	-moz-column-gap: 4rem;
	column-gap: 4rem;
	padding: 0 2.5rem;
	margin-top: 1.9375rem;
	margin-inline: auto;
	max-width: 1440px;
}
@media screen and (max-width: 1024px) {
	.t-voice__items {
		-webkit-column-gap: 2.5rem;
		-moz-column-gap: 2.5rem;
		column-gap: 2.5rem;
	}
}
@media screen and (max-width: 768px) {
	.t-voice__items {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		row-gap: 1.25rem;
		padding: 0 1.5625rem;
	}
}

.t-voice__item {
	aspect-ratio: 440/435;
	background-color: #f4f8f9;
	padding: 2.1875rem 2.5rem;
	width: 27.5rem;
}
@media screen and (max-width: 768px) {
	.t-voice__item {
		padding: 1.5625rem 1.25rem;
		width: 100%;
		margin-inline: auto;
	}
}

.t-voice__container {
	-webkit-box-shadow: 4px 4px 5px 3px rgb(216, 216, 216);
	box-shadow: 4px 4px 5px 3px rgb(216, 216, 216);
}

.t-voice__body {
	background-color: #fff;
	padding: 1.125rem 0.8125rem 1rem 1.375rem;
}

.t-voice__text {
	border-bottom: 1px solid #707070;
	font-size: 0.8125rem;
	line-height: 1.6923076923;
	padding-bottom: 0.64375rem;
}
@media screen and (max-width: 768px) {
	.t-voice__text {
		font-size: 0.6875rem;
	}
}

.t-voice__name {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-top: 0.73125rem;
}

.t-voice__shop-name {
	font-size: 0.8125rem;
	line-height: 1.8461538462;
}
@media screen and (max-width: 768px) {
	.t-voice__shop-name {
		font-size: 0.6875rem;
	}
}

.t-voice__link {
	color: #0188c3;
	font-size: 0.8125rem;
	line-height: 1.8461538462;
}
@media screen and (max-width: 768px) {
	.t-voice__link {
		font-size: 0.6875rem;
	}
}

.cta {
	background-color: #0188c3;
	padding: 2.25rem 0 2.5625rem;
	margin-bottom: 3.4375rem;
}

.cta__title {
	color: #fff;
	font-size: 1.125rem;
	text-align: center;
}

.cta__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-column-gap: 3.125rem;
	-moz-column-gap: 3.125rem;
	column-gap: 3.125rem;
	margin-top: 2.0625rem;
}
@media screen and (max-width: 768px) {
	.cta__items {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		row-gap: 1.5rem;
		margin-inline: auto;
		width: 70%;
	}
}

.cta__item {
	aspect-ratio: 200/200;
	background-color: #fff;
	border-radius: 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 1.25rem 1.125rem;
	width: 12.5rem;
}

.cta__img.img01 {
	width: 2.8rem;
}

.cta__img.img02 {
	width: 2.7325rem;
}

.cta__img.img03 {
	width: 3.3rem;
}

.cta__head {
	color: #0188c3;
	font-size: 1rem;
	font-weight: 700;
	margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
	.cta__head {
		margin-top: 0.625rem;
	}
}

.cta__text {
	font-size: 0.6875rem;
	line-height: 1.6363636364;
	margin-top: 0.3125rem;
	text-align: center;
	text-wrap: nowrap;
}

.cta__btn {
	display: inline-block;
	background-color: #fa9825;
	border-radius: 50px;
	margin-top: 0.75rem;
	text-align: center;
	width: 100%;
}

.cta__btn:hover {
	opacity: 0.7;
}

.cta__btn button {
	color: #fff;
	font-size: 0.6875rem;
	text-align: center;
}

.contents {
	padding: 2.125rem 0 2.5625rem;
}

.contents__title {
	font-size: 1.5rem;
	font-weight: 500;
	text-align: center;
}

.contents__items {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	-webkit-column-gap: 2.3125rem;
	-moz-column-gap: 2.3125rem;
	column-gap: 2.3125rem;
	row-gap: 2rem;
	padding: 0 2.5rem;
	margin-top: 1.9375rem;
	margin-inline: auto;
	max-width: 1440px;
}
@media screen and (max-width: 768px) {
	.contents__items {
		grid-template-columns: 1fr 1fr;
		-webkit-column-gap: 1.25rem;
		-moz-column-gap: 1.25rem;
		column-gap: 1.25rem;
		row-gap: 1.5625rem;
		padding: 0 1.5625rem;
	}
}

.contents__category {
	font-size: 0.625rem;
	line-height: 2.4;
}
@media screen and (max-width: 768px) {
	.contents__category {
		font-size: 0.5625rem;
	}
}

.contents__date {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 0.3125rem;
	-moz-column-gap: 0.3125rem;
	column-gap: 0.3125rem;
}
@media screen and (max-width: 768px) {
	.contents__date {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.contents__date-up,
.contents__date-update {
	font-size: 0.625rem;
	line-height: 2.4;
}
@media screen and (max-width: 768px) {
	.contents__date-up,
	.contents__date-update {
		font-size: 0.5rem;
		line-height: 1.4;
	}
}

.contents__name {
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.6923076923;
}
@media screen and (max-width: 768px) {
	.contents__name {
		font-size: 0.6875rem;
		font-size: 0.75rem;
		line-height: 1.5;
		margin-top: 0.5rem;
	}
}

.contents__btn {
	display: block;
	background-color: #fff;
	border: 2px solid #fa9825;
	border-radius: 50px;
	margin-inline: auto;
	margin-top: 2.25rem;
	padding-top: 0.375rem;
	padding-bottom: 0.375rem;
	width: 17.8125rem;
	text-align: center;
}

.contents__btn button {
	color: #fa9825;
	font-size: 0.9375rem;
	line-height: 2;
}

.yes-no {
	padding: 3.0625rem 0 3.125rem;
}

.yes-no__title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.25;
	text-align: center;
}

.yes-no__title::before,
.yes-no__title::after {
	content: '';
	width: 3px;
	height: 40px;
	background-color: #0188c3;
}

.yes-no__title::before {
	margin-right: 30px;
	-webkit-transform: rotate(-35deg);
	transform: rotate(-35deg);
}

.yes-no__title::after {
	margin-left: 30px;
	-webkit-transform: rotate(35deg);
	transform: rotate(35deg);
}

.yes-no__btn {
	display: block;
	background-color: #fff;
	border: 1px solid #0188c3;
	border-radius: 50px;
	margin-inline: auto;
	margin-top: 2.25rem;
	padding: 1.25rem 2.9875rem 1.25rem 2.5rem;
	text-align: left;
	width: 35rem;
}
@media screen and (max-width: 768px) {
	.yes-no__btn {
		text-align: center;
		width: 90%;
		margin-inline: auto;
		padding: 0.5rem 1.7375rem 0.5rem 1.25rem;
	}
}

.yes-no__btn a {
	color: #030000;
	display: inline-block;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.875;
	position: relative;
}
@media screen and (max-width: 768px) {
	.yes-no__btn a {
		font-size: 0.75rem;
	}
}

.yes-no__btn a::after {
	content: '';
	background-image: url(../images/common/yes-no/arrow.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 19.2px;
	height: 19.2px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: -2.8875rem;
}
@media screen and (max-width: 768px) {
	.yes-no__btn a::after {
		right: -1.6375rem;
	}
}

.yes-no__btn a span {
	background-color: #0188c3;
	border-radius: 50px;
	color: #fff;
	display: inline-block;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.875;
	letter-spacing: -0.05em;
	padding-top: 0.25rem;
	padding-right: 1.0625rem;
	padding-left: 1.0625rem;
	margin-right: 1.8125rem;
}
@media screen and (max-width: 768px) {
	.yes-no__btn a span {
		font-size: 0.625rem;
		line-height: 1.4;
		padding-top: 0.125rem;
		padding-right: 0.625rem;
		padding-left: 0.625rem;
		margin-right: auto;
	}
}

.price {
	padding-bottom: 3.25rem;
}

.price__title {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.25;
	text-align: center;
}

.price__title-sub {
	font-size: 0.6875rem;
	line-height: 2.1818181818;
	text-align: center;
	margin-top: 0.375rem;
}

.price__wrap {
	margin-inline: auto;
	margin-top: 2.3125rem;
	width: 31.25rem;
}
@media screen and (max-width: 768px) {
	.price__wrap {
		width: auto;
		max-width: none;
	}
}

.price__flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-column-gap: 6.25rem;
	-moz-column-gap: 6.25rem;
	column-gap: 6.25rem;
}
@media screen and (max-width: 768px) {
	.price__flex {
		-webkit-column-gap: 1.5rem;
		-moz-column-gap: 1.5rem;
		column-gap: 1.5rem;
	}
}

.price__box01.price__line {
	border: 3px solid #1cbf4e;
	width: 40%;
}
@media screen and (max-width: 768px) {
	.price__box01.price__line {
		width: 50%;
	}
}

.price__box-title {
	color: #fff;
	font-size: 1.5rem;
	line-height: 1.0909090909;
	padding: 0.625rem 0 0.625rem;
	text-align: center;
}

.price__line .price__box-title {
	background-color: #1cbf4e;
}

.price__box-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: #fff;
	padding: 0.9375rem 0 0.5625rem;
}

.content-t__label {
	font-size: 0.9375rem;
	line-height: 1.4666666667;
	font-weight: 500;
}

.content-t__price {
	font-size: 0.875rem;
	line-height: 1.5714285714;
	font-weight: 300;
}

.content-m {
	font-size: 1rem;
	line-height: 1.375;
	margin-top: 0.375rem;
}

.price__box-content-b {
	margin-top: 0.5rem;
}

.content-b__label {
	font-size: 1rem;
	line-height: 1.375;
	text-align: center;
}

.content-b__price span {
	font-size: 1.5rem;
	line-height: 1.0909090909;
	padding-right: 0.25rem;
}

.content-b__price {
	font-size: 1rem;
	line-height: 1.375;
	font-weight: 500;
}

.price__box01.price__basic {
	border: 3px solid #0188c3;
	width: 40%;
}
@media screen and (max-width: 768px) {
	.price__box01.price__basic {
		width: 50%;
	}
}

.price__basic .price__box-title {
	background-color: #0188c3;
}

.price__box02 {
	border: 3px solid #b3b3b3;
	width: 100%;
	margin-top: 1.5625rem;
}

.price__option .price__box-content-f {
	padding: 0.875rem 0 0.75rem;
}

.price__option .price__box-title {
	font-size: 1.25rem;
	line-height: 1.1;
}

.price__option .content__text {
	font-size: 0.9375rem;
	line-height: 2.1333333333;
}

.price__box02 .price__box-title {
	background-color: #b3b3b3;
	color: #fff;
	padding: 0.625rem 0 0.625rem;
	text-align: center;
}

.price__box-content-f {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.content__text-l {
	text-align: left;
}

.content__text-r {
	text-align: right;
}

.price__pay .price__box-content-f {
	padding: 0.9375rem 0 0.875rem;
}

.price__pay .price__box-title {
	font-size: 1.0625rem;
	line-height: 1.2941176471;
}

.price__pay .content__text {
	font-size: 0.8125rem;
	line-height: 1.8461538462;
	font-weight: 300;
}

.table-wrap {
	width: 100%;
	margin-inline: auto;
	padding-bottom: 30px;
	overflow-x: auto;
}
.table-wrap::-webkit-scrollbar {
	height: 6px;
}
.table-wrap::-webkit-scrollbar-track {
	background-color: #fff;
}
.table-wrap::-webkit-scrollbar-thumb {
	background-color: #ddd;
}

.price-list {
	width: 700px;
	line-height: 1;
	text-align: center;
	border-collapse: collapse;
	margin-top: 2.5rem;
	margin-inline: auto;
	max-width: 700px;
}
@media screen and (max-width: 768px) {
	.price-list {
		width: 600px;
	}
}

.price-list tr {
	background-color: rgba(244, 248, 249, 0.3);
}

.price-list tr:nth-of-type(2n + 2) {
	background-color: #f4f8f9;
}

.price-list__head {
	background-color: #73b2c8;
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.1;
	padding: 0.5625rem 0;
}
@media screen and (max-width: 768px) {
	.price-list__head {
		font-size: 0.875rem;
		padding: 0.9375rem 0;
		font-size: 1rem;
	}
}

.price-list__head.none {
	background-color: #fff;
	width: 50.29%;
}

.price-list__head.line {
	background-color: #1cbf4e;
	width: 24.86%;
}

.price-list__head.basic {
	background-color: #0188c3;
	border-left: 2px solid #fff;
	width: 24.86%;
}

.price-list__data {
	font-size: 0.8125rem;
	line-height: 1.8461538462;
	padding: 0.5625rem 0 0.5625rem 3rem;
	text-align: left;
	width: 50.29%;
}
@media screen and (max-width: 768px) {
	.price-list__data {
		font-size: 0.6875rem;
		line-height: 1.5;
		padding: 0.5rem;
		width: 40%;
	}
}

.price-list__data span {
	color: #b3b3b3;
	font-size: 0.8125rem;
	line-height: 1.8461538462;
}

.price-list__data.line {
	color: #1cbf4e;
	font-size: 1rem;
	position: relative;
	padding-left: 0;
	text-align: center;
	width: 24.86%;
}
@media screen and (max-width: 768px) {
	.price-list__data.line {
		padding-left: 0.5rem;
	}
}

.price-list__data.line.ver-b {
	color: #030000;
	font-size: 0.8125rem;
	padding-bottom: 0;
	vertical-align: bottom;
}
@media screen and (max-width: 768px) {
	.price-list__data.line.ver-b {
		font-size: 0.5625rem;
	}
}

.price-list__data.line.ver-t {
	color: #030000;
	font-size: 0.8125rem;
	padding-top: 0;
	vertical-align: top;
}
@media screen and (max-width: 768px) {
	.price-list__data.line.ver-t {
		font-size: 0.5625rem;
	}
}

.price-list__data.line::before {
	content: '';
	background-color: #1cbf4e;
	width: 2px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.price-list__data.line::after {
	content: '';
	background-color: #1cbf4e;
	width: 2px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}

.price-list__data.line.last {
	background-color: transparent;
	border-top: 2px solid #1cbf4e;
}

.price-list__data.line.last::before {
	content: none;
}

.price-list__data.line.last::after {
	content: none;
}

.price-list__data.basic {
	border-left: 2px solid #fff;
	color: #0188c3;
	font-size: 1rem;
	position: relative;
	padding-left: 0;
	text-align: center;
	width: 24.86%;
}
@media screen and (max-width: 768px) {
	.price-list__data.basic {
		padding-left: 0.5rem;
	}
}

.price-list__data.basic::before {
	content: '';
	background-color: #0188c3;
	width: 2px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.price-list__data.basic::after {
	content: '';
	background-color: #0188c3;
	width: 2px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}

.price-list__data.basic.last {
	background-color: transparent;
	border-top: 2px solid #0188c3;
}

.price-list__data.basic.last::before {
	content: none;
}

.price-list__data.basic.last::after {
	content: none;
}

.flow {
	padding-bottom: 3.4375rem;
}

.flow__title {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.25;
	text-align: center;
}

.flow__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0 2.5rem;
	margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
	.flow__items {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.flow__item {
	background-color: #edf7fa;
	border-radius: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 1.125rem 1.4375rem 0.875rem;
	width: 17.5rem;
}

.flow__num {
	color: #0188c3;
	font-size: 1.125rem;
	line-height: 1.2222222222;
}

.flow__img {
	margin-inline: auto;
}

.flow__img.img01 {
	width: 9.60875rem;
}

.flow__img.img02 {
	margin-top: 0.2625rem;
	width: 7.864375rem;
}

.flow__img.img03 {
	margin-top: 0.325rem;
	width: 7.079375rem;
}

.flow__head {
	color: #0188c3;
	font-size: 1.125rem;
	line-height: 1.2222222222;
	margin-top: 0.7375rem;
}

.flow__text {
	font-size: 0.8125rem;
	line-height: 1.6923076923;
	margin-top: 0.3125rem;
}

.flow__arrow {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: 1.0625rem;
	margin-right: 0.775rem;
	width: 1.4125rem;
}
@media screen and (max-width: 768px) {
	.flow__arrow {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		margin: 0.625rem auto 0.625rem auto;
	}
}

.faq {
	background-color: #f4f8f9;
	padding: 2.125rem 0 2.5625rem;
}

.faq__title {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.25;
	text-align: center;
}

.faq__title-sub {
	font-size: 0.6875rem;
	line-height: 2.1818181818;
	text-align: center;
	margin-top: 0.375rem;
}

.faq__container {
	padding-top: 2.25rem;
}

.faq__inner {
	width: min(880px, 100%);
	padding-inline: 20px;
	margin-inline: auto;
}

summary {
	display: block;
}
summary::-webkit-details-marker {
	display: none;
}

.faq__item {
	background-color: #fff;
	font-size: 16px;
	line-height: normal;
	padding: 0 2.1875rem;
}
@media screen and (max-width: 768px) {
	.faq__item {
		padding: 0 0.9375rem;
	}
}

.faq__item + .faq__item {
	margin-top: 0.625rem;
}

.faq__question {
	padding-block: 20px 22px;
	position: relative;
}
.faq__question::before,
.faq__question::after {
	content: '';
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	background: #0188c3;
}
.faq__question::before {
	right: 0px;
	width: 16px;
	height: 2px;
}
.faq__question::after {
	right: 7px;
	width: 2px;
	height: 16px;
	-webkit-transition: rotate 0.3s ease;
	transition: rotate 0.3s ease;
}
@media (any-hover: hover) {
	.faq__question:hover {
		cursor: pointer;
	}
}

details[open] .faq__question::after {
	rotate: 90deg;
}

.faq__question-text {
	color: #0188c3;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.6923076923;
	list-style: none;
	position: relative;
	padding-inline: 29px 29px;
	margin-inline: auto;
	text-align: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.faq__question-text::before {
	content: 'Q';
	color: #0188c3;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	left: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.375;
}
@media screen and (max-width: 768px) {
	.faq__question-text {
		font-size: 0.75rem;
		text-align: left;
	}
	.faq__question-text::before {
		top: 15px;
	}
}

.faq__answer {
	padding-bottom: 20px;
}

.faq__answer-text {
	border-top: 1px solid #707070;
	font-size: 0.75rem;
	font-weight: 300;
	line-height: 1.8333333333;
	list-style: none;
	position: relative;
	padding-top: 0.6875rem;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.faq__answer-text {
		font-size: 0.6875rem;
		text-align: left;
	}
}

.documents .p-fv__right {
	max-width: 529px;
	width: 33.0625rem;
}
@media screen and (max-width: 768px) {
	.documents .p-fv__right {
		width: 20.5625rem;
	}
}

.documents .p-fv__right::before {
	content: '';
	background-image: url(../images/documents/fv.png);
	width: 33.0625rem;
	height: 19.1875rem;
}
@media screen and (max-width: 768px) {
	.documents .p-fv__right::before {
		content: none;
	}
}

.documents .feature__item.item01 {
	padding-right: 5.0625rem;
	padding-left: 5.0625rem;
}
@media screen and (max-width: 768px) {
	.documents .feature__item.item01 {
		padding-right: 0;
		padding-left: 0;
	}
}

.documents .feature__item.item02 {
	padding-right: 4.4375rem;
	padding-left: 4.4375rem;
}
@media screen and (max-width: 768px) {
	.documents .feature__item.item02 {
		padding-right: 0;
		padding-left: 0;
	}
}

.documents .feature__item.item03 {
	padding-left: 2.4375rem;
}
@media screen and (max-width: 768px) {
	.documents .feature__item.item03 {
		padding-left: 0;
	}
}

.documents .feature-detail__img-sub {
	width: 23.4375rem;
	max-width: 375px;
	margin-left: auto;
	margin-top: 1.4375rem;
}
@media screen and (max-width: 768px) {
	.documents .feature-detail__img-sub {
		display: none;
	}
}

.documents .feature-detail__img-sub_sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.documents .feature-detail__img-sub_sp {
		display: block;
		margin-top: 1.25rem;
	}
}

.documents .feature-detail__img.img03 {
	margin-top: 0.9375rem;
	width: 26.875rem;
}
@media screen and (max-width: 768px) {
	.documents .feature-detail__img.img03 {
		margin-top: -0.5rem;
		margin-inline: auto;
		width: 18.75rem;
	}
}

.documents .utilities__item {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.documents .utilities__item.item02 .utilities__item-head {
	text-wrap: nowrap;
}

.documents .utilities__item-icon.icon01 {
	width: 3.2rem;
}

.documents .utilities__item-icon.icon02 {
	width: 2.10625rem;
}

.documents .utilities__item-icon.icon03 {
	width: 3.06rem;
}

.survey .p-fv__wrap {
	-webkit-column-gap: 8.0625rem;
	-moz-column-gap: 8.0625rem;
	column-gap: 8.0625rem;
}

.survey .p-fv__right {
	max-width: 425px;
	width: 26.5625rem;
}
@media screen and (max-width: 768px) {
	.survey .p-fv__right {
		width: 90%;
		max-width: none;
	}
}

.survey .p-fv__right::before {
	content: '';
	background-image: url(../images/survey/fv.png);
	width: 26.5625rem;
	height: 19.1875rem;
	left: auto;
	right: 0;
}
@media screen and (max-width: 768px) {
	.survey .p-fv__right::before {
		content: none;
	}
}

.survey .feature__item.item01 {
	padding-right: 4.375rem;
	padding-left: 5rem;
}
@media screen and (max-width: 768px) {
	.survey .feature__item.item01 {
		padding-right: 0;
		padding-left: 0;
	}
}

.survey .feature__item.item02 {
	padding-right: 2.5rem;
	padding-left: 2.5rem;
}
@media screen and (max-width: 768px) {
	.survey .feature__item.item02 {
		padding-right: 0;
		padding-left: 0;
	}
}

.survey .feature__item.item03 {
	padding-left: 1.8125rem;
}
@media screen and (max-width: 768px) {
	.survey .feature__item.item03 {
		padding-left: 0;
	}
}

.survey .feature-detail__img-sub {
	width: 23.125rem;
	max-width: 370px;
	margin-left: auto;
}
@media screen and (max-width: 768px) {
	.survey .feature-detail__img-sub {
		display: none;
	}
}

.survey .feature-detail__img-sub_sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.survey .feature-detail__img-sub_sp {
		display: block;
		margin-top: 1.25rem;
	}
}

@media screen and (max-width: 768px) {
	.survey .feature-detail__img.img01 {
		margin-top: -0.625rem;
	}
}

@media screen and (max-width: 768px) {
	.survey .feature-detail__img.img03 {
		margin-top: 0;
	}
}

.survey .utilities__item-icon.icon01 {
	width: 3.2rem;
}

.survey .utilities__item-icon.icon02 {
	width: 3rem;
}

.survey .utilities__item-icon.icon03 {
	width: 4.6rem;
}

.survey .utilities__item {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.survey .utilities__item-img {
	margin-top: 0;
	height: 50%;
}

.analytics .p-fv__right {
	max-width: 529px;
	width: 33.0625rem;
}
@media screen and (max-width: 768px) {
	.analytics .p-fv__right {
		width: 90%;
		max-width: none;
	}
}

.analytics .p-fv__right::before {
	content: '';
	background-image: url(../images/analytics/fv.png);
	width: 33.0625rem;
	height: 19.1875rem;
}
@media screen and (max-width: 768px) {
	.analytics .p-fv__right::before {
		content: none;
	}
}

.analytics .feature__item.item01 {
	padding-right: 2.5rem;
	padding-left: 2.5rem;
}
@media screen and (max-width: 768px) {
	.analytics .feature__item.item01 {
		padding-right: 0;
		padding-left: 0;
	}
}

.analytics .feature__item.item02 {
	padding-right: 3.75rem;
	padding-left: 3.75rem;
}
@media screen and (max-width: 768px) {
	.analytics .feature__item.item02 {
		padding-right: 0;
		padding-left: 0;
	}
}

.analytics .feature__item.item03 {
	padding-left: 4.4375rem;
	padding-right: 4.4375rem;
}
@media screen and (max-width: 768px) {
	.analytics .feature__item.item03 {
		padding-left: 0;
		padding-right: 0;
	}
}

.analytics .feature-detail__wrap {
	width: 50%;
}
@media screen and (max-width: 768px) {
	.analytics .feature-detail__wrap {
		width: 100%;
	}
}

.analytics .feature-detail__img.img01 {
	margin-top: -2.5rem;
	margin-bottom: -2.5rem;
	max-width: 340px;
}
@media screen and (max-width: 768px) {
	.analytics .feature-detail__img.img01 {
		margin-top: -0.625rem;
		margin-inline: auto;
	}
}

.analytics .feature-detail__img.img01 img {
	aspect-ratio: 240/280;
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.feature-detail__icon {
	margin-top: 1.5rem;
	width: 5.6075rem;
}
@media screen and (max-width: 768px) {
	.feature-detail__icon {
		width: 1.875rem;
	}
}

@media screen and (max-width: 768px) {
	.analytics .feature-detail__img.img03 {
		margin-top: -2.875rem;
	}
}

.calendar .p-fv__right {
	width: 31.5rem;
}
@media screen and (max-width: 768px) {
	.calendar .p-fv__right {
		width: 90%;
		max-width: none;
	}
}

.calendar .p-fv__right::before {
	content: '';
	background-image: url(../images/calendar/fv.png);
	width: 31.5rem;
	height: 18.025rem;
	top: 1.25rem;
	left: 0;
}
@media screen and (max-width: 768px) {
	.calendar .p-fv__right::before {
		content: none;
	}
}

.calendar .feature-detail__wrap {
	width: 50%;
}
@media screen and (max-width: 768px) {
	.calendar .feature-detail__wrap {
		width: 100%;
	}
}

.calendar .feature-detail__name {
	margin-left: 0;
	padding-bottom: 1.8125rem;
}

@media screen and (max-width: 768px) {
	.calendar .feature-detail__img.img03 {
		margin-top: -2.875rem;
	}
}

.calendar .utilities__item {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.calendar .utilities__item-img {
	margin-top: 1rem;
}

.calendar .utilities__item-icon.icon01 {
	width: 2.83625rem;
}

.calendar .utilities__item-icon.icon02 {
	width: 2.48rem;
}

.checklist .p-fv__right {
	width: 31.5rem;
}
@media screen and (max-width: 768px) {
	.checklist .p-fv__right {
		width: 90%;
		max-width: none;
	}
}

.checklist .p-fv__right::before {
	content: '';
	background-image: url(../images/checklist/fv.png);
	width: 31.5rem;
	height: 18.025rem;
	top: 1.25rem;
	left: 0;
}
@media screen and (max-width: 768px) {
	.checklist .p-fv__right::before {
		content: none;
	}
}

@media screen and (max-width: 768px) {
	.checklist .feature__item {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.checklist .feature__item.item01 {
	padding-right: 3.75rem;
	padding-left: 2.5rem;
}
@media screen and (max-width: 768px) {
	.checklist .feature__item.item01 {
		padding-right: 0;
		padding-left: 0;
	}
}

.checklist .feature__item.item02 {
	padding-right: 6.375rem;
	padding-left: 6.375rem;
	border-right: none;
}
@media screen and (max-width: 768px) {
	.checklist .feature__item.item02 {
		padding-right: 0;
		padding-left: 0;
	}
}

.checklist .feature-detail__wrap {
	width: 50%;
}
@media screen and (max-width: 768px) {
	.checklist .feature-detail__wrap {
		width: 100%;
	}
}

@media screen and (max-width: 768px) {
	.checklist .feature-detail__img.img03 {
		margin-top: -2.875rem;
	}
}

.checklist .utilities__item {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.checklist .utilities__item-img {
	margin-top: 1rem;
}

.negotiation-app .p-fv__right {
	max-width: 425px;
	width: 26.5625rem;
}
@media screen and (max-width: 768px) {
	.negotiation-app .p-fv__right {
		width: 90%;
		max-width: none;
	}
}

.negotiation-app .p-fv__right::before {
	content: '';
	background-image: url(../images/negotiation-app/fv.png);
	width: 26.5625rem;
	height: 19.1875rem;
	left: auto;
	right: 0;
}
@media screen and (max-width: 768px) {
	.negotiation-app .p-fv__right::before {
		content: none;
	}
}

.negotiation-app .feature__item.item01 {
	padding-right: 4.4375rem;
	padding-left: 4.4375rem;
}
@media screen and (max-width: 768px) {
	.negotiation-app .feature__item.item01 {
		padding-right: 0;
		padding-left: 0;
	}
}

.negotiation-app .feature__item.item02 {
	padding-right: 6.375rem;
	padding-left: 6.375rem;
}
@media screen and (max-width: 768px) {
	.negotiation-app .feature__item.item02 {
		padding-right: 0;
		padding-left: 0;
	}
}

.negotiation-app .feature__item.item03 {
	padding-right: 4.5rem;
	padding-left: 4.5rem;
}
@media screen and (max-width: 768px) {
	.negotiation-app .feature__item.item03 {
		padding-left: 0;
		padding-right: 0;
	}
}

.p-function__item.item06 {
	position: relative;
}

.p-function__item.item06 .top-line {
	background-color: #fff;
	position: absolute;
	top: -0.875rem;
	right: -0.4375rem;
}

.negotiation-app .feature-detail__img.img01 {
	width: 26.1925rem;
}
@media screen and (max-width: 768px) {
	.negotiation-app .feature-detail__img.img01 {
		margin-top: 0;
		width: auto;
	}
}

.negotiation-app .feature-detail__img.img02 {
	width: 21.25rem;
}
@media screen and (max-width: 768px) {
	.negotiation-app .feature-detail__img.img02 {
		margin-top: 1.25rem;
		width: 90%;
	}
}

@media screen and (max-width: 768px) {
	.negotiation-app .feature-detail__img.img03 {
		margin-top: 0.625rem;
	}
}

.negotiation-app .utilities__item-icon.icon01 {
	width: 3.289375rem;
}

.negotiation-app .utilities__item-icon.icon02 {
	width: 2.8rem;
}

.negotiation-app .utilities__item {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.negotiation-app .utilities__item-img {
	padding-top: 1.0625rem;
	margin-top: 0;
}

.negotiation-app .related-features__items {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.negotiation-app .related-features__item.row2 {
	padding-top: 0.875rem;
	padding-bottom: 0.75rem;
}
@media screen and (max-width: 768px) {
	.negotiation-app .related-features__item.row2 {
		font-size: 0.6875rem;
		padding-top: 0.6875rem;
		padding-bottom: 0.5625rem;
	}
}

.deals .p-fv__left {
	width: 60%;
}
@media screen and (max-width: 768px) {
	.deals .p-fv__left {
		width: 100%;
	}
}

.deals .p-fv__right {
	max-width: 504px;
	width: 31.5rem;
}
@media screen and (max-width: 768px) {
	.deals .p-fv__right {
		width: 90%;
		max-width: none;
	}
}

.deals .p-fv__right::before {
	content: '';
	background-image: url(../images/deals/fv.png);
	background-size: contain;
	width: 31.5rem;
	height: 17.775rem;
	left: -0.875rem;
	right: 0;
}
@media screen and (max-width: 768px) {
	.deals .p-fv__right::before {
		content: none;
	}
}

@media screen and (max-width: 768px) {
	.deals .feature__item {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.deals .feature__item.item02 {
	padding-left: 1.6875rem;
}
@media screen and (max-width: 768px) {
	.deals .feature__item.item02 {
		padding-left: 0;
	}
}

.deals .feature-detail__text {
	margin-top: 1.0625rem;
}

.deals .utilities__item-icon.icon01 {
	width: 3.2rem;
}

.deals .utilities__item-icon.icon02 {
	width: 2.8rem;
}

.deals .utilities__item-icon.icon03 {
	width: 2.568125rem;
}

.deals .utilities__item {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.deals .utilities__item-img {
	padding-top: 1.0625rem;
	margin-top: 0;
}

.customers .p-fv__left {
	width: 60%;
}
@media screen and (max-width: 768px) {
	.customers .p-fv__left {
		width: 100%;
	}
}

.customers .p-fv__right {
	max-width: 504px;
	width: 31.5rem;
}
@media screen and (max-width: 768px) {
	.customers .p-fv__right {
		width: 90%;
		max-width: none;
	}
}

.customers .p-fv__right::before {
	content: '';
	background-image: url(../images/customers/fv.png);
	background-size: contain;
	width: 31.5rem;
	height: 17.775rem;
	left: -0.875rem;
	right: 0;
}
@media screen and (max-width: 768px) {
	.customers .p-fv__right::before {
		content: none;
	}
}

.customers .feature__item.item01 {
	padding-right: 4.5625rem;
}
@media screen and (max-width: 768px) {
	.customers .feature__item.item01 {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		padding-right: 0;
	}
}

.customers .feature__item.item02 {
	border-right: none;
	padding-left: 3.9375rem;
}
@media screen and (max-width: 768px) {
	.customers .feature__item.item02 {
		padding-left: 0;
	}
}

.customers .feature-detail__text {
	margin-top: 1.0625rem;
}

.customers .utilities__item-icon.icon01 {
	width: 2.8rem;
}

.customers .utilities__item-icon.icon02 {
	width: 4rem;
}

.customers .utilities__item {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.customers .utilities__item-img {
	padding-top: 1.0625rem;
	margin-top: 0;
}

.signature .p-fv__right {
	max-width: 433.92px;
	width: 27.12rem;
}
@media screen and (max-width: 768px) {
	.signature .p-fv__right {
		width: 90%;
		max-width: none;
	}
}

.signature .p-fv__right::before {
	content: '';
	background-image: url(../images/signature/fv.png);
	width: 27.12rem;
	height: 21.25rem;
	left: auto;
	right: 0;
}
@media screen and (max-width: 768px) {
	.signature .p-fv__right::before {
		content: none;
	}
}

@media screen and (max-width: 768px) {
	.signature .feature__item {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

+ .signature .feature__item.item01 {
	padding-left: 2.5625rem;
	padding-right: 2.5625rem;
}
@media screen and (max-width: 768px) {
	+ .signature .feature__item.item01 {
		padding-left: 0;
		padding-right: 0;
	}
}

.signature .feature__item.item02 {
	padding-left: 1.625rem;
}
@media screen and (max-width: 768px) {
	.signature .feature__item.item02 {
		padding-left: 0;
	}
}

.signature .feature__item.item03 {
	padding-left: 2.375rem;
	padding-right: 3rem;
}
@media screen and (max-width: 768px) {
	.signature .feature__item.item03 {
		padding-left: 0;
		padding-right: 0;
	}
}

.signature #feature02 .feature-detail__text {
	margin-top: 1.625rem;
}

.signature .utilities__item-icon.icon01 {
	width: 2.8rem;
}

.signature .utilities__item-icon.icon02 {
	width: 6.3125rem;
}

.signature .utilities__item {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.signature .utilities__item-img {
	padding-top: 1.0625rem;
	margin-top: 0;
}

.signature .utilities-effect {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.receipt .p-fv__right {
	margin-left: -3.125rem;
	max-width: 628px;
	width: 39.25rem;
}
@media screen and (max-width: 768px) {
	.receipt .p-fv__right {
		margin-left: 0;
		width: 90%;
		max-width: none;
	}
}

.receipt .p-fv__right::before {
	content: '';
	background-image: url(../images/receipt/fv.png);
	width: 39.25rem;
	height: 23.65rem;
	left: -2.5rem;
}
@media screen and (max-width: 768px) {
	.receipt .p-fv__right::before {
		content: none;
	}
}

.receipt .feature__item.item01 {
	padding-right: 3.9375rem;
}
@media screen and (max-width: 768px) {
	.receipt .feature__item.item01 {
		padding-right: 0;
	}
}

.receipt .feature__item.item02 {
	border-right: none;
	padding-left: 3.9375rem;
}
@media screen and (max-width: 768px) {
	.receipt .feature__item.item02 {
		padding-left: 0;
	}
}

.receipt .feature-detail__img-sub {
	width: 11.564375rem;
	max-width: 185.03px;
	margin-top: 1.6875rem;
	margin-left: 1.5rem;
}
@media screen and (max-width: 768px) {
	.receipt .feature-detail__img-sub {
		display: none;
	}
}

.receipt .feature-detail__img-sub_sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.receipt .feature-detail__img-sub_sp {
		display: block;
		margin-top: 1.25rem;
		width: 6.25rem;
	}
}

@media screen and (max-width: 768px) {
	.receipt .feature-detail__img.img01 {
		margin-top: -0.625rem;
	}
}

@media screen and (max-width: 768px) {
	.receipt .feature-detail__img.img03 {
		margin-top: 0;
	}
}

.receipt .utilities-effect {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.payment .p-fv__wrap {
	-webkit-column-gap: 8.0625rem;
	-moz-column-gap: 8.0625rem;
	column-gap: 8.0625rem;
}

.payment .p-fv__right {
	max-width: 425px;
	width: 26.5625rem;
}
@media screen and (max-width: 768px) {
	.payment .p-fv__right {
		width: 90%;
		max-width: none;
	}
}

.payment .p-fv__right::before {
	content: '';
	background-image: url(../images/payment/fv.png);
	width: 26.5625rem;
	height: 19.1875rem;
	left: auto;
	right: 0;
}
@media screen and (max-width: 768px) {
	.payment .p-fv__right::before {
		content: none;
	}
}

.payment .p-fv__catch.gmo::before {
	width: 21.6875rem;
	height: 3.185rem;
	background-image: url(../images/common/gmo02.png);
}
@media screen and (max-width: 768px) {
	.payment .p-fv__catch.gmo::before {
		width: 16.25rem;
	}
}

.payment .feature__item {
	padding-right: 4.25rem;
	padding-left: 4.25rem;
}
@media screen and (max-width: 768px) {
	.payment .feature__item {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		padding: 0;
	}
}

@media screen and (max-width: 768px) {
	.payment .feature__item.item02 {
		padding-left: 0;
	}
}

.payment .feature__item.item03 {
	padding-left: 3.1875rem;
	padding-right: 0.625rem;
}
@media screen and (max-width: 768px) {
	.payment .feature__item.item03 {
		padding-left: 0;
		padding-right: 0;
	}
}

.payment .feature-detail__text a {
	border-bottom: 1px solid #0188c3;
	padding-bottom: 0.3125rem;
}

.payment .utilities__item-icon.icon01 {
	width: 2.8rem;
}

.payment .utilities__item-icon.icon02 {
	width: 6.3125rem;
}

.payment .utilities__item {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.payment .utilities__item-img {
	padding-top: 1.0625rem;
	margin-top: 0;
}

.transfer .p-fv__left {
	width: 60%;
}
@media screen and (max-width: 768px) {
	.transfer .p-fv__left {
		width: 100%;
	}
}

.transfer .p-fv__right {
	max-width: 504px;
	width: 31.5rem;
}
@media screen and (max-width: 768px) {
	.transfer .p-fv__right {
		width: 90%;
		max-width: none;
	}
}

.transfer .p-fv__right::before {
	content: '';
	background-image: url(../images/transfer/fv.png);
	background-size: contain;
	width: 31.5rem;
	height: 17.775rem;
	left: -0.875rem;
	right: 0;
}
@media screen and (max-width: 768px) {
	.transfer .p-fv__right::before {
		content: none;
	}
}

@media screen and (max-width: 768px) {
	.transfer .feature__item {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.transfer .feature__item.item01 {
	padding-right: 4.6875rem;
	padding-left: 8.125rem;
}
@media screen and (max-width: 768px) {
	.transfer .feature__item.item01 {
		padding-left: 0;
		padding-right: 0;
	}
}

.transfer .feature__item.item02 {
	border-right: none;
	padding-left: 4.6875rem;
	padding-right: 0;
}
@media screen and (max-width: 768px) {
	.transfer .feature__item.item02 {
		padding-left: 0;
	}
}

.transfer .feature-detail__img.img02 {
	width: 25rem;
}
@media screen and (max-width: 768px) {
	.transfer .feature-detail__img.img02 {
		width: 100%;
	}
}

.transfer .feature-detail__img.img02 img {
	aspect-ratio: 400/260;
}

.transfer .feature-detail__text {
	margin-top: 1.0625rem;
}

.transfer .utilities__item-icon.icon01 {
	width: 3.4rem;
}

.transfer .utilities__item-icon.icon02 {
	width: 2.48625rem;
}

.transfer .utilities__item {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.transfer .utilities__item-img {
	padding-top: 1.0625rem;
	margin-top: 0;
}

.inquiry .p-fv__left {
	width: 50%;
}
@media screen and (max-width: 768px) {
	.inquiry .p-fv__left {
		width: 100%;
	}
}

.inquiry .p-fv__right {
	max-width: 425px;
	width: 26.5625rem;
}
@media screen and (max-width: 768px) {
	.inquiry .p-fv__right {
		width: 90%;
		max-width: none;
	}
}

.inquiry .p-fv__right::before {
	content: '';
	background-image: url(../images/inquiry/fv.png);
	width: 26.5625rem;
	height: 19.1875rem;
	left: auto;
	right: 0;
}
@media screen and (max-width: 768px) {
	.inquiry .p-fv__right::before {
		content: none;
	}
}

.p-function__item.item13 {
	position: relative;
}

.p-function__item.item13 .top-line {
	background-color: #fff;
	position: absolute;
	top: -0.875rem;
	right: -0.4375rem;
}

.p-fv__catch.catch02 {
	margin-top: 0.75rem;
}

.inquiry .feature__item.item01 {
	padding-left: 4.0625rem;
	padding-right: 4.0625rem;
}
@media screen and (max-width: 768px) {
	.inquiry .feature__item.item01 {
		padding-left: 0;
		padding-right: 0;
	}
}

.inquiry .feature__item.item02 {
	padding-left: 3.4375rem;
	padding-right: 3.4375rem;
}
@media screen and (max-width: 768px) {
	.inquiry .feature__item.item02 {
		padding-left: 0;
		padding-right: 0;
	}
}

.inquiry .feature__item.item03 {
	padding-left: 4.6875rem;
	padding-right: 3.4375rem;
}
@media screen and (max-width: 768px) {
	.inquiry .feature__item.item03 {
		padding-left: 0;
		padding-right: 0;
	}
}

@media screen and (max-width: 768px) {
	.inquiry .feature-detail__img.img01 {
		margin-top: 0;
	}
}

@media screen and (max-width: 768px) {
	.inquiry .feature-detail__img.img02 {
		margin-top: 0;
	}
}

.inquiry .feature-detail__img.img03 {
	width: 21.25rem;
}
@media screen and (max-width: 768px) {
	.inquiry .feature-detail__img.img03 {
		margin-top: 0.625rem;
		margin-inline: auto;
		width: 90%;
	}
}

.inquiry .utilities__item-head.text {
	padding-bottom: 0;
	line-height: 1.5625;
	margin-top: 0;
}

.inquiry .utilities__item-head.text02 {
	margin-top: 0.3125rem;
	line-height: 1.5625;
	text-wrap: nowrap;
}

.inquiry .utilities__item-icon.icon02 {
	width: 3.2rem;
}

.inquiry .utilities__item {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.inquiry .utilities__item-img {
	padding-top: 1.0625rem;
	margin-top: 0;
}

.inquiry .utilities__item-img.img01 {
	padding-top: 0;
	margin-top: 0;
}

.inquiry .utilities-effect {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.followup .p-fv__right {
	max-width: 587.6px;
	width: 36.725rem;
}
@media screen and (max-width: 768px) {
	.followup .p-fv__right {
		width: 90%;
		max-width: none;
	}
}

.followup .p-fv__right::before {
	content: '';
	background-image: url(../images/followup/fv.png);
	background-size: contain;
	width: 36.725rem;
	height: 19.68125rem;
	left: auto;
	right: -5.625rem;
}
@media screen and (max-width: 768px) {
	.followup .p-fv__right::before {
		content: none;
	}
}

.p-function__item.item14 {
	position: relative;
}

.p-function__item.item14 .top-line {
	background-color: #fff;
	position: absolute;
	top: -0.875rem;
	right: -0.4375rem;
}

.p-fv__catch.catch02 {
	margin-top: 0.75rem;
}

.followup .feature__item.item01 {
	padding-right: 4.625rem;
}
@media screen and (max-width: 768px) {
	.followup .feature__item.item01 {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		padding-right: 0;
	}
}

.followup .feature__item.item02 {
	border-right: none;
	padding-left: 4.625rem;
	padding-right: 3.75rem;
}
@media screen and (max-width: 768px) {
	.followup .feature__item.item02 {
		padding-left: 0;
		padding-right: 0;
	}
}

.followup .feature-detail__img.img02 {
	width: 21.25rem;
}
@media screen and (max-width: 768px) {
	.followup .feature-detail__img.img02 {
		margin-inline: auto;
		width: 90%;
	}
}

.followup .utilities__item-icon.icon01 {
	width: 3.2rem;
}

.followup .utilities__item {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.followup .utilities__item-head {
	margin-top: 0.7rem;
}

.followup .utilities__item-img.img01 {
	margin-top: 0;
}

.followup .utilities-effect {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.content .p-fv__right {
	max-width: 425px;
	width: 26.5625rem;
}
@media screen and (max-width: 768px) {
	.content .p-fv__right {
		width: 90%;
		max-width: none;
	}
}

.content .p-fv__right::before {
	content: '';
	background-image: url(../images/content/fv.png);
	width: 26.5625rem;
	height: 19.1875rem;
	left: auto;
	right: 0;
}
@media screen and (max-width: 768px) {
	.content .p-fv__right::before {
		content: none;
	}
}

.p-function__item.item15 {
	position: relative;
}

.p-function__item.item15 .top-line {
	background-color: #fff;
	position: absolute;
	top: -0.875rem;
	right: -0.4375rem;
}

.p-fv__catch.catch02 {
	margin-top: 0.75rem;
}

.content .feature__item {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.content .feature__head {
	text-wrap: wrap;
}

.content .feature__item.item01 .feature__head {
	text-wrap: nowrap;
}

.content .feature__head span {
	display: inline-block;
}

.content .feature__item.item01 {
	padding-left: 1.75rem;
	padding-right: 2.75rem;
}
@media screen and (max-width: 768px) {
	.content .feature__item.item01 {
		padding: 0;
	}
}

.content .feature__item.item03 {
	padding-left: 7.3125rem;
	text-wrap: wrap;
}
@media screen and (max-width: 768px) {
	.content .feature__item.item03 {
		padding-left: 0;
	}
}

.content .feature__link {
	text-wrap: nowrap;
}

@media screen and (max-width: 768px) {
	.content .feature-detail__img.img01 {
		margin-top: -0.625rem;
	}
}

@media screen and (max-width: 768px) {
	.content .feature-detail__img.img03 {
		margin-top: 0;
	}
}

.content .utilities__item-icon.icon01 {
	width: 3.239375rem;
}

.content .utilities__item {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.content .utilities__item-img {
	padding-top: 1.0625rem;
	margin-top: 0;
}

.content .utilities__item-img.img01 {
	padding-top: 0;
	margin-top: 0;
}

.content .utilities-effect {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.integration .p-fv__left {
	width: 80%;
}
@media screen and (max-width: 768px) {
	.integration .p-fv__left {
		width: 100%;
	}
}

.integration .p-fv__right {
	max-width: 587.6px;
	width: 36.725rem;
}
@media screen and (max-width: 768px) {
	.integration .p-fv__right {
		width: 90%;
		max-width: none;
	}
}

.integration .p-fv__right::before {
	content: '';
	background-image: url(../images/integration/fv.png);
	background-size: contain;
	width: 36.725rem;
	height: 19.68125rem;
	left: auto;
	right: -8.75rem;
}
@media screen and (max-width: 768px) {
	.integration .p-fv__right::before {
		content: none;
	}
}

.integration .feature__item.item01 {
	padding-right: 6.625rem;
}
@media screen and (max-width: 768px) {
	.integration .feature__item.item01 {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		padding-right: 0;
	}
}

.integration .feature__item.item02 {
	border-right: none;
	padding-left: 2.6875rem;
}
@media screen and (max-width: 768px) {
	.integration .feature__item.item02 {
		padding-left: 0;
		padding-right: 0;
	}
}

.integration .utilities-effect {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.voice {
	background-color: #f4f8f9;
	padding-top: 3.125rem;
	padding-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
	.voice {
		padding-top: 1.875rem;
		padding-bottom: 1.875rem;
	}
}

.voice__container {
	background-color: #fff;
	padding: 3.625rem 3.625rem 5.75rem;
	margin-inline: auto;
	max-width: 1024px;
	width: 92.19%;
}
@media screen and (max-width: 768px) {
	.voice__container {
		padding: 1.5rem 1.5rem 2rem;
	}
}

.voice__title {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5625;
}
@media screen and (max-width: 768px) {
	.voice__title {
		font-size: 1rem;
		line-height: 1.75;
	}
}

.voice__main-img {
	margin-top: 2.125rem;
}

.voice__main-img img {
	aspect-ratio: 824/450;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.voice__shop-name {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.25;
	margin-top: 2.8125rem;
	margin-bottom: 2.375rem;
	text-transform: uppercase;
}
@media screen and (max-width: 768px) {
	.voice__shop-name {
		font-size: 1.25rem;
		margin-top: 1.5625rem;
		margin-bottom: 1.125rem;
	}
}

.voice__shop-name span {
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.6666666667;
	padding-left: 0.875rem;
}
@media screen and (max-width: 768px) {
	.voice__shop-name span {
		font-size: 0.875rem;
		padding-left: 0;
	}
}

.voice__q {
	color: #0188c3;
	font-size: 1.3125rem;
	font-weight: 700;
	line-height: 1.6666666667;
	margin-top: 2.8125rem;
}
@media screen and (max-width: 768px) {
	.voice__q {
		font-size: 1.125rem;
		margin-top: 1.5625rem;
	}
}

.voice__a {
	font-size: 0.9375rem;
	font-weight: 300;
	line-height: 2;
	margin-top: 1.4375rem;
}
@media screen and (max-width: 768px) {
	.voice__a {
		font-size: 0.875rem;
		margin-top: 1.25rem;
	}
}

.voice__a span {
	font-size: 1.0625rem;
	font-weight: 300;
	line-height: 1.7647058824;
}
@media screen and (max-width: 768px) {
	.voice__a span {
		font-size: 1rem;
	}
}

.voice__img-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-column-gap: 2.75rem;
	-moz-column-gap: 2.75rem;
	column-gap: 2.75rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 2.8125rem;
}
@media screen and (max-width: 768px) {
	.voice__img-wrap {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		row-gap: 1.25rem;
	}
}

.voice__img img {
	aspect-ratio: 390/290;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.voice__note {
	font-size: 0.8125rem;
	font-weight: 300;
	line-height: 2.3076923077;
	margin-top: 2.8125rem;
}

/*tuika*/

.footer__link a {
	font-size: calc(10 / 16 * 1.2rem) !important;
	padding: calc(10 / 16 * 1rem) calc(10 / 16 * 2rem) !important;
}

.footer__top-l {
	-webkit-column-gap: calc(10 / 16 * 2rem) !important;
	-moz-column-gap: calc(10 / 16 * 2rem) !important;
	column-gap: calc(10 / 16 * 2rem) !important;
	padding-right: calc(10 / 16 * 5rem) !important;
}

.footer__top {
	padding-left: calc(10 / 16 * 2rem) !important;
}

.footer__top-l {
	-webkit-column-gap: calc(10 / 16 * 2rem) !important;
	-moz-column-gap: calc(10 / 16 * 2rem) !important;
	column-gap: calc(10 / 16 * 2rem) !important;
	padding-right: calc(10 / 16 * 5rem) !important;
}

@media screen and (max-width: 768px) {
	.footer__top-l {
		padding-bottom: calc(10 / 16 * 1.25rem) !important;
	}
}

.footer__link a {
	font-size: calc(10 / 16 * 1.2rem) !important;
	padding: calc(10 / 16 * 1rem) calc(10 / 16 * 2rem) !important;
}

.footer__inner div.footer__top-r {
	padding-left: calc(10 / 16 * 6rem) !important;
}

@media screen and (max-width: 768px) {
	.footer__inner div.footer__top-r {
		padding-left: 0 !important;
	}
}

.footer__top-r::before {
	height: calc(100% - 0.625rem);
	position: absolute;
	top: calc(10 / 16 * 1rem) !important;
}

.footer__inner div.footer__bottom {
	padding-left: calc(10 / 16 * 4rem) !important;
	padding-bottom: calc(10 / 16 * 3.9rem) !important;
}

@media screen and (max-width: 768px) {
	.footer__bottom {
		padding-bottom: calc(10 / 16 * 1.25rem) !important;
		margin-top: calc(10 / 16 * 2.5rem) !important;
	}
}

.footer__bottom-t {
	-webkit-column-gap: calc(10 / 16 * 1.97rem) !important;
	-moz-column-gap: calc(10 / 16 * 1.97rem) !important;
	column-gap: calc(10 / 16 * 1.97rem) !important;
}

.footer__logo {
	width: calc(10 / 16 * 18.425rem) !important;
}

@media screen and (max-width: 768px) {
	.footer__logo {
		width: calc(10 / 16 * 10rem) !important;
	}
}

.footer__name {
	font-size: calc(10 / 16 * 1.4rem) !important;
}

@media screen and (max-width: 768px) {
	.footer__name {
		font-size: calc(10 / 16 * 0.75rem) !important;
		margin-top: calc(10 / 16 * 0.625rem) !important;
	}
}

.footer__inner div.footer__bottom-b {
	margin-top: calc(10 / 16 * 1.61rem) !important;
}

.footer__address {
	font-size: calc(10 / 16 * 1.2rem) !important;
}

@media screen and (max-width: 768px) {
	.footer__address {
		text-indent: -1em;
	}
}

.footer__address span {
	font-size: calc(10 / 16 * 1.2rem) !important;
}

@media screen and (max-width: 768px) {
	.footer__address span {
		margin-top: calc(10 / 16 * 0.625rem) !important;
	}
}

.footer__copy {
	padding: calc(10 / 16 * 0.7rem) 0 calc(10 / 16 * 0.8rem) !important;
}

.footer__copy small {
	font-size: calc(10 / 16 * 1.2rem) !important;
}

@media screen and (max-width: 768px) {
	.footer__top-r {
		padding-top: calc(10 / 16 * 1.25rem) !important;
	}
	.footer__inner div.footer__bottom {
		padding-left: 0 !important;
	}
	.footer__inner div.footer__bottom-b {
		width: fit-content;
		margin: auto;
	}
}





