@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Noto+Sans+JP:wght@400;500;700;900&display=swap);
/* =============================================
Reset
============================================= */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	background: transparent;
	font-weight: inherit;
	font-size: inherit;
	font-style: inherit;
	-webkit-tap-highlight-color: transparent;
}

article,
aside,
details,
figcaption,
figure,
picture,
main,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

ul,
ol {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
}

button {
	font-family: inherit;
}

/* =============================================
base
============================================= */
html {
	width: 100%;
	font-size: 62.5%;
	background-color: #fff;
}
html.is-locked {
	position: absolute;
	overflow: hidden;
}

body {
	font-size: 1.6rem;
	line-height: 1.8;
	font-family: "Noto Sans JP", "ヒラギノ角ゴシック", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", Hiragino Sans, "メイリオ", Meiryo, sans-serif;
	letter-spacing: 0;
	color: #232834;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
}
@media (max-width: 767px) {
	body {
		font-size: 1.4rem;
	}
}
@media print {
	body {
		min-width: 1240px;
		zoom: 0.8;
	}
}

a {
	color: #1A43AA;
	text-decoration: none;
}
@media (min-width: 768px), print {
	a:hover {
		text-decoration: none;
	}
}

img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

sup {
	vertical-align: top;
	font-size: 0.5em;
}

/* =============================================
共通パーツ / common parts
============================================= */
@media (max-width: 767px) {
	.pc {
		display: none;
	}
}

@media (min-width: 768px), print {
	.sp {
		display: none;
	}
}

.mt-s {
	margin-top: 18px;
}
@media (min-width: 768px), print {
	.mt-s {
		margin-top: 30px;
	}
}

.mt-m {
	margin-top: 30px;
}
@media (min-width: 768px), print {
	.mt-m {
		margin-top: 40px;
	}
}

.section {
	overflow: hidden;
}
.section:not(:first-of-type) {
	margin-top: 80px;
}
@media (min-width: 768px), print {
	.section:not(:first-of-type) {
		margin-top: 120px;
	}
}
.section:last-of-type {
	margin-bottom: 70px;
}
@media (min-width: 768px), print {
	.section:last-of-type {
		margin-bottom: 160px;
	}
}
.section-inner {
	width: 100%;
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 8%;
	padding-right: 8%;
}
@media (min-width: 768px), print {
	.section-inner {
		padding-left: 20px;
		padding-right: 20px;
	}
}
.section--s .section-inner {
	max-width: 1040px;
}

/* title */
.title {
	/* h1 */
	/* h2 */
}
.title-primary {
	position: relative;
	padding: 47px 0 42px;
	z-index: 2;
	background-image: linear-gradient(90deg, #1581dd, #1640a7);
}
@media (min-width: 768px), print {
	.title-primary {
		padding: 72px 0 64px;
	}
}
.title-primary__inner {
	width: 100%;
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 8%;
	padding-right: 8%;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media (min-width: 768px), print {
	.title-primary__inner {
		padding-left: 20px;
		padding-right: 20px;
	}
}
.title-primary__text {
	font-weight: 900;
	font-size: 2.8rem;
	line-height: 1.4;
	color: #fff;
}
@media (min-width: 768px), print {
	.title-primary__text {
		font-size: 4rem;
	}
}
.title-secondary {
	position: relative;
	padding: 24px 0 34px;
}
.title-secondary h2 {
	font-size: 3.2rem;
	line-height: 1.2;
	font-weight: 700;
	color: #1A43AA;
}
.title-secondary::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 4px;
	background-color: #FFC400;
}
.title-secondary::after {
	content: "";
	position: absolute;
	top: 0;
	left: 20px;
	width: 80px;
	height: 4px;
	background-color: #1A43AA;
}
@media (min-width: 768px), print {
	.title-secondary {
		padding: 41px 0 58px;
	}
	.title-secondary h2 {
		font-size: 4rem;
	}
	.title-secondary::before {
		height: 6px;
	}
	.title-secondary::after {
		height: 6px;
	}
}

/* textlink */
.textlink a {
	position: relative;
	padding-right: 20px;
}
.textlink a[target=_blank]::after {
	content: "";
	display: inline-block;
	width: 13px;
	height: 11px;
	margin-left: 10px;
	mask-image: url(/assets/images/icon_blank.svg);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	background-color: #1A43AA;
}
@media (min-width: 768px), print {
	.textlink a {
		transition: all 0.2s ease;
	}
	.textlink a:hover {
		opacity: 0.7;
	}
}

/* text-box */
.text-box {
	margin-top: 30px;
}
.text-box__inner {
	background-color: #F5F6F8;
	padding: 27px 30px;
}
.text-box__title {
	font-size: 1.6rem;
	font-weight: 700;
}
.text-box__list {
	margin-top: 20px;
}
.text-box__list li {
	padding-left: 1em;
	text-indent: -1em;
}
.text-box__list li::before {
	content: "";
	display: inline-block;
	width: 0.2em;
	height: 0.2em;
	margin-right: 0.75em;
	border-radius: 50%;
	vertical-align: middle;
	transform: translate(50%, -50%);
	background-color: #232834;
}
@media (min-width: 768px), print {
	.text-box {
		margin-top: 48px;
	}
	.text-box__inner {
		padding: 47px 60px;
	}
}

/* contact-button */
.contact-button__inner {
	display: flex;
	width: 100%;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	background-color: #fff;
	border: 1px solid #1A43AA;
	color: #1A43AA;
	border-radius: 140px;
	cursor: pointer;
}
.contact-button__inner span {
	position: relative;
	font-size: 1.3rem;
	font-weight: 700;
	padding: 9px 16px 7px 44px;
	line-height: 22px;
}
.contact-button__inner span::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 15px;
	display: inline-block;
	width: 24px;
	height: 22px;
	background: url(/assets/images/icon_mail_b.svg) no-repeat;
	background-size: contain;
}
@media (min-width: 768px), print {
	.contact-button__inner {
		min-width: 305px;
		transition: background-color 0.2s ease-in, border-color 0.2s ease-in;
	}
	.contact-button__inner span {
		font-size: 1.8rem;
		padding: 18px 20px 18px 54px;
	}
	.contact-button__inner span::before {
		top: 14px;
		left: 15px;
		width: 36px;
		height: 32px;
	}
	.contact-button__inner:hover {
		background-color: #FFC400;
		border: 1px solid #FFC400;
	}
}

/* =============================================
フッター / footer
============================================= */
.footer {
	border-top: 1px solid #E5E6E8;
	background-color: #fff;
}
.footer-inner {
	padding: 28px 30px 20px;
}
.footer-backhead {
	position: fixed;
	bottom: 142px;
	left: 0;
	right: 0;
	height: 0;
	padding: 0 10px;
	text-align: right;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
	z-index: 10;
}
.footer-backhead.is-visible {
	opacity: 1;
	pointer-events: auto;
}
.footer-backhead > a {
	position: relative;
	display: inline-block;
	color: inherit;
	background-color: #fff;
	height: 44px;
	width: 44px;
	border-radius: 50%;
	box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
}
.footer-backhead > a::before {
	content: "";
	position: absolute;
	top: 10px;
	left: calc(50% - 8px);
	display: inline-block;
	width: 17px;
	height: 20px;
	background: url(/assets/images/icon_arrow.svg) no-repeat;
	background-size: contain;
}
.footer-backhead > a span {
	font-size: 0;
	text-indent: -9999;
}
.footer-link {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-top: 10px;
}
.footer-link li {
	line-height: 1;
}
.footer-link li a {
	font-size: 1.2rem;
	color: #666666;
}
.footer-link li a[target=_blank]::after {
	background-color: #666666;
}
.footer-copyright {
	font-size: 1.2rem;
	color: #666666;
}
@media (min-width: 768px), print {
	.footer-inner {
		width: 100%;
		max-width: 1240px;
		margin-left: auto;
		margin-right: auto;
		padding-left: 8%;
		padding-right: 8%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding-top: 36px;
		padding-bottom: 36px;
	}
}
@media (min-width: 768px) and (min-width: 768px), print and (min-width: 768px), print and (min-width: 768px), print {
	.footer-inner {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media (min-width: 768px), print {
	.footer-link {
		margin-top: 0;
		gap: 30px;
	}
	.footer-link li a {
		font-size: 1.6rem;
		transition: all 0.2s ease;
	}
	.footer-link li a:hover {
		opacity: 0.7;
	}
	.footer-copyright {
		font-size: 1.6rem;
	}
	.footer-backhead {
		bottom: 140px;
	}
	.footer-backhead > a {
		height: 80px;
		width: 80px;
	}
	.footer-backhead > a::before {
		top: 30px;
	}
}

@media (max-width: 767px) {
	.main {
		margin-top: -70px;
	}
}
/* =============================================
TOPページ
============================================= */
/*　ヘッダー / header
ーーーーーーーーーーーーーーーーー */
.top-header {
	position: relative;
}
.top-header-inner {
	position: fixed;
	top: 0;
	width: 100%;
	height: auto;
	z-index: 10;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 20px;
	transition: all 0.2s ease;
}
.top-header-logo {
	display: block;
	width: 100%;
	max-width: 150px;
	height: 100%;
}
.top-header-logo a {
	display: block;
	width: 100%;
	height: 100%;
	background-color: #fff;
	padding: 20px 20px 15px;
}
.top-header-nav .contact-button__inner {
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
	transition: all 0.2s ease;
}
.top-header-nav .contact-button__inner span {
	transition: all 0.2s ease;
}
.top-header-nav .contact-button__inner span::before {
	background: url(/assets/images/icon_mail_w.svg) no-repeat;
	background-size: contain;
}
.top-header-nav .contact-button__inner:hover {
	background-color: #fff;
	border: 1px solid #1640a7;
	color: #1640a7;
}
.top-header-nav .contact-button__inner:hover span::before {
	background: url(/assets/images/icon_mail_b.svg) no-repeat;
	background-size: contain;
}
@media (max-width: 767px) {
	.top-header-inner {
		position: relative;
	}
	.top-header-nav__menu {
		display: none;
	}
	.top-header-nav .contact-button {
		max-width: 240px;
		margin-right: 10px;
	}
}
@media (min-width: 768px), print {
	.top-header-inner {
		position: fixed;
		top: 0;
		width: 100%;
		height: auto;
		z-index: 10;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: 0 4%;
		transition: all 0.2s ease;
	}
	.top-header-content {
		flex: 0 0 240px;
	}
	.top-header-logo {
		display: block;
		width: 100%;
		max-width: 240px;
		height: 100%;
	}
	.top-header-logo a {
		display: block;
		width: 100%;
		height: 100%;
		background-color: #fff;
		padding: 26px 30px 18px;
		transition: all 0.2s ease;
	}
	.top-header-nav {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 0 20px;
		margin-right: 40px;
		transition: all 0.2s ease;
	}
	.top-header-nav-inner {
		flex: 0 1 auto;
	}
	.top-header-nav .contact-button {
		flex: 1 1 auto;
		max-width: 305px;
	}
	.top-header-nav .contact-button a {
		min-width: initial;
	}
	.top-header-nav__menu {
		display: flex;
	}
	.top-header-nav__menu li {
		padding: 0 20px;
	}
	.top-header-nav__menu li:not(:last-child) {
		border-right: 1px solid rgba(255, 255, 255, 0.14);
	}
	.top-header-nav__menu li a {
		color: #fff;
		font-weight: 600;
		font-size: 1.8rem;
		transition: all 0.2s ease;
	}
	.top-header-nav__menu li a sup {
		vertical-align: text-top;
	}
	.top-header-nav__menu li a:hover {
		opacity: 0.7;
	}
	.top-header-nav__menu li:first-of-type {
		padding-left: 0;
	}
	.top-header-nav__menu li:last-of-type {
		padding-right: 0;
	}
	.top-header.is-scroll .top-header-inner {
		background-color: #fff;
		justify-content: space-between;
	}
	.top-header.is-scroll .top-header-content {
		flex: 0 0 auto;
	}
	.top-header.is-scroll .top-header-nav__inner {
		flex: 1 0 auto;
	}
	.top-header.is-scroll .top-header-nav__menu {
		justify-content: center;
	}
	.top-header.is-scroll .top-header-nav__menu li {
		line-height: 1.3;
	}
	.top-header.is-scroll .top-header-nav__menu li a {
		font-size: 1.4rem;
		color: #232834;
	}
	.top-header.is-scroll .top-header-nav__menu li:not(:last-child) {
		border-right: 1px solid #232834;
	}
	.top-header.is-scroll .top-header-nav .contact-button {
		max-width: 240px;
	}
	.top-header.is-scroll .top-header-nav .contact-button__inner {
		border: 1px solid #1640a7;
		color: #1640a7;
	}
	.top-header.is-scroll .top-header-nav .contact-button__inner span {
		font-size: 1.4rem;
		padding: 8px 26px 8px 70px;
	}
	.top-header.is-scroll .top-header-nav .contact-button__inner span::before {
		background: url(/assets/images/icon_mail_b.svg) no-repeat;
		background-size: contain;
		top: 5px;
		left: 35px;
		width: 32px;
		height: 28px;
	}
	.top-header.is-scroll .top-header-nav .contact-button__inner:hover {
		border-color: #FFC400;
		background-color: #FFC400;
	}
	.top-header.is-scroll .top-header-logo {
		max-width: 200px;
	}
	.top-header.is-scroll .top-header-logo a {
		padding: 16px 38px 9px;
	}
}
@media (min-width: 768px) and (max-width: 1280px) {
	.top-header .top-header-inner {
		gap: 0 10px;
	}
	.top-header .top-header-nav {
		gap: 0 10px;
		margin-right: 10px;
	}
	.top-header .top-header-content {
		flex: 0 0 150px;
	}
	.top-header .top-header-logo {
		max-width: 150px;
	}
	.top-header .top-header-logo a {
		padding: 16px 13px 9px;
	}
	.top-header .top-header-nav__menu li {
		padding: 0 10px;
	}
	.top-header .top-header-nav__menu li a {
		font-size: 1.2rem;
	}
	.top-header .contact-button__inner span {
		font-size: 1.2rem;
		padding: 9px 16px 7px 44px;
	}
	.top-header .contact-button__inner span::before {
		top: 10px;
		left: 15px;
		width: 24px;
		height: 22px;
	}
	.top-header .contact-button {
		max-width: 220px;
	}
	.top-header.is-scroll .top-header-nav .top-header-nav__menu li {
		padding: 0 10px;
	}
	.top-header.is-scroll .top-header-nav .top-header-nav__menu li a {
		font-size: 1.2rem;
	}
	.top-header.is-scroll .top-header-nav .contact-button {
		max-width: 220px;
	}
	.top-header.is-scroll .top-header-nav .contact-button__inner {
		min-width: initial;
	}
	.top-header.is-scroll .top-header-nav .contact-button__inner span {
		font-size: 1.2rem;
		padding: 9px 16px 7px 44px;
	}
	.top-header.is-scroll .top-header-nav .contact-button__inner span::before {
		top: 10px;
		left: 15px;
		width: 24px;
		height: 22px;
	}
	.top-header.is-scroll .top-header-content {
		flex: 0 0 auto;
	}
	.top-header.is-scroll .top-header-logo a {
		padding: 16px 13px 9px;
	}
	.top-header.is-scroll .top-header-logo img {
		width: 110px;
	}
}

/*　メインビジュアル / mv
ーーーーーーーーーーーーーーーーー */
.mv {
	position: relative;
	width: 100%;
}
.mv-inner {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	max-height: 570px;
	overflow: hidden;
}
.mv-imgitem__item {
	position: absolute;
	bottom: 0;
	right: 0;
	left: -20%;
	z-index: 0;
}
.mv-content {
	position: absolute;
	top: 21.2280701754%;
	width: 100%;
	padding: 0 30px;
	z-index: 1;
}
.mv-text {
	display: inline-block;
	color: #fff;
	margin-right: 5px;
	font-size: 1.5rem;
	font-weight: 900;
}
.mv-cat {
	display: inline-block;
	padding: 0 5px;
	background-color: #fff;
	border-radius: 5px;
	color: #1640a7;
	font-size: 1rem;
	font-weight: 900;
}
.mv-lead {
	display: inline-block;
	margin-top: 10px;
	padding: 5px 30px;
	background-color: #FFC400;
	font-size: 1.5rem;
	font-weight: 900;
}
.mv-title {
	margin-top: 10px;
	font-family: "Manrope", sans-serif;
	font-size: 5.5rem;
	color: #fff;
	font-weight: 800;
	line-height: 1.1;
}
.mv-title sup {
	display: inline-block;
	font-size: 1.8rem;
	margin-top: 10px;
}
@media (max-width: 767px) {
	.mv-title {
		-webkit-text-stroke: 3px #345BB8;
		text-stroke: 3px #345BB8;
		paint-order: stroke;
	}
}
@media (min-width: 768px), print {
	.mv-inner {
		max-height: 768px;
	}
	.mv-imgitem__item {
		left: calc(50% + 100px);
		width: 79.1666666667%;
		max-width: 1140px;
		max-height: 600px;
		transform: translateX(-50%);
	}
	.mv-content {
		width: 100%;
		max-width: 1240px;
		margin-left: auto;
		margin-right: auto;
		padding-left: 8%;
		padding-right: 8%;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		height: 100%;
		display: flex;
		align-items: center;
	}
}
@media (min-width: 768px) and (min-width: 768px), print and (min-width: 768px), print and (min-width: 768px), print {
	.mv-content {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media (min-width: 768px), print {
	.mv-text {
		margin-right: 5px;
		font-size: 2.4rem;
	}
	.mv-cat {
		padding: 0 10px;
		font-size: 1.7rem;
	}
	.mv-lead {
		margin-top: 20px;
		padding: 10px 33px;
		font-size: 2.6rem;
	}
	.mv-title {
		margin-top: 10px;
		font-size: 8.9rem;
	}
	.mv-title sup {
		font-size: 2.5rem;
	}
}
@media (min-width: 768px) and (max-width: 1280px) {
	.mv-text {
		font-size: 1.8rem;
	}
	.mv-cat {
		font-size: 1.2rem;
	}
	.mv-lead {
		padding-left: 22px;
		padding-right: 22px;
		margin-top: 10px;
		font-size: 2rem;
	}
	.mv-title {
		margin-top: 15px;
		font-size: 6.7rem;
		-webkit-text-stroke: 3px #345BB8;
		text-stroke: 3px #345BB8;
		paint-order: stroke;
	}
}

/*　anpack for Browserとは？ / about
ーーーーーーーーーーーーーーーーー */
.about-inner {
	width: 100%;
	max-width: 1940px;
	margin-left: auto;
	margin-right: auto;
}
.about-block__text {
	padding: 80px 30px;
}
.about-block__image figure {
	position: relative;
	overflow: hidden;
	height: 0;
	padding-bottom: 100%;
}
.about-block__image figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center;
}
.about-block__text {
	font-size: 1.6rem;
}
.about-block__text a {
	color: #1A43AA;
}
.about-block__text p + p {
	margin-top: 1em;
}
@media (min-width: 768px), print {
	.about-block__inner {
		display: flex;
		flex-wrap: nowrap;
	}
	.about-block__content {
		flex: 0 0 50%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.about-block__text {
		width: 100%;
		max-width: 640px;
		padding: 20px;
		font-size: 1.8rem;
	}
	.about-block__text a {
		transition: all 0.2s ease;
	}
	.about-block__text a:hover {
		opacity: 0.7;
	}
	.about-block__image {
		flex: 0 0 50%;
	}
}
@media (min-width: 768px) and (max-width: 1280px) {
	.about-block__content .title-secondary {
		padding: 21px 0 20px;
	}
	.about-block__content .title-secondary h2 {
		font-size: 3rem;
	}
	.about-block__text {
		padding: 0 20px;
		font-size: 1.4rem;
	}
}

/*　特長 / feature
ーーーーーーーーーーーーーーーーー */
.feature {
	position: relative;
	width: 100%;
	height: 100%;
	clip-path: inset(0 0 0 0);
}
.feature-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url(/assets/images/bg_sp.png);
	z-index: -1;
}
@media (min-width: 768px), print {
	.feature-bg {
		background-image: url(/assets/images/bg_pc.png);
	}
}
.feature-inner {
	width: 100%;
	max-width: 1940px;
	margin-left: auto;
	margin-right: auto;
}
.feature-block__text {
	padding: 80px 30px;
}
.feature-block__text .point {
	display: inline-block;
	padding: 0 10px;
	font-weight: 900;
	line-height: 26px;
	color: #1A43AA;
	background-color: #FFC400;
}
.feature-block__text .title {
	margin-top: 15px;
	font-size: 2.8rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.5;
}
.feature-block__text .text {
	margin-top: 25px;
	color: #fff;
	font-size: 1.6rem;
}
.feature-block__text .caption {
	margin-top: 10px;
	font-size: 1.2rem;
	color: #fff;
}
.feature-block__image figure {
	position: relative;
	overflow: hidden;
	height: 0;
	padding-bottom: 100%;
}
.feature-block__image figure img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center;
}
@media (min-width: 768px), print {
	.feature-block__inner {
		display: flex;
		flex-wrap: nowrap;
	}
	.feature-block__content {
		flex: 0 0 50%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.feature-block__text {
		width: 100%;
		max-width: 640px;
		padding: 20px;
	}
	.feature-block__text .point {
		padding: 0 25px;
		line-height: 56px;
		font-size: 2.8rem;
	}
	.feature-block__text .title {
		margin-top: 35px;
		font-size: 4.4rem;
	}
	.feature-block__text .text {
		font-size: 1.8rem;
	}
	.feature-block__image {
		flex: 0 0 50%;
	}
}
@media (min-width: 768px) and (max-width: 1280px) {
	.feature-block .feature-block__text .title {
		margin-top: 10px;
		font-size: 3rem;
	}
	.feature-block .feature-block__text .point {
		padding: 0 25px;
		line-height: 48px;
		font-size: 2.4rem;
	}
	.feature-block .feature-block__text .text {
		margin-top: 10px;
	}
}

/*　よくあるご質問 / faq
ーーーーーーーーーーーーーーーーー */
@media (max-width: 767px) {
	.faq-inner {
		padding-left: 0;
		padding-right: 0;
	}
	.faq-inner .title-secondary {
		padding-left: 8%;
		padding-right: 8%;
	}
	.faq-inner .title-secondary::before {
		left: 8%;
	}
	.faq-inner .title-secondary::after {
		left: calc(8% + 20px);
	}
}
@media (max-width: 767px) {
	.faq-accordion {
		padding: 0 13px;
	}
}
.faq-accordion__item {
	border-top: 1px solid #DDDDDD;
	/* アコーディオンが開いた時 */
}
.faq-accordion__item:last-of-type {
	border-bottom: 1px solid #DDDDDD;
}
.faq-accordion__item .question {
	display: grid;
	grid-template-columns: 40px 1fr 48px;
	gap: 10px;
	align-items: center;
	padding: 20px 0 20px 10px;
	font-size: 1.6rem;
	font-weight: 700;
	cursor: pointer;
}
.faq-accordion__item .question::marker {
	content: "";
}
.faq-accordion__item .question::-webkit-details-marker {
	display: none;
}
.faq-accordion__item .question .header-icon {
	width: 40px;
	height: 40px;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 38px;
	color: #fff;
	border-radius: 50%;
	background-color: #184DD3;
}
.faq-accordion__item .question .icon {
	position: relative;
	display: inline-block;
	width: 48px;
	height: 48px;
	background-color: #F5F6F8;
}
.faq-accordion__item .question .icon::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 2px;
	background-color: #707070;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.faq-accordion__item .question .icon::after {
	content: "";
	display: inline-block;
	width: 2px;
	height: 16px;
	background-color: #707070;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.2s;
}
.faq-accordion__item .answer-inner {
	background-color: #F5F5F5;
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 10px;
	align-items: center;
	padding: 14px 30px 20px 10px;
	font-size: 1.4rem;
}
.faq-accordion__item .answer-inner .header-icon {
	width: 40px;
	height: 40px;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 38px;
	color: #184DD3;
	border-radius: 50%;
	background-color: #fff;
}
.faq-accordion__item[open] .icon::after {
	opacity: 0;
}
@media (max-width: 767px) {
	.faq-accordion__item .question {
		align-items: start;
	}
	.faq-accordion__item .answer-inner {
		align-items: start;
	}
}
@media (min-width: 768px), print {
	.faq-accordion__item .question {
		grid-template-columns: 56px 1fr 100px;
		gap: 20px;
		padding: 0 0 0 20px;
		font-size: 1.7rem;
		transition: opacity 0.2s linear;
	}
	.faq-accordion__item .question .header-icon {
		width: 56px;
		height: 56px;
		font-size: 2.8rem;
		line-height: 50px;
	}
	.faq-accordion__item .question .icon {
		width: 100px;
		height: 100px;
	}
	.faq-accordion__item .question .icon::before {
		width: 24px;
	}
	.faq-accordion__item .question .icon::after {
		height: 24px;
	}
	.faq-accordion__item .question:hover {
		opacity: 0.8;
	}
	.faq-accordion__item .answer-inner {
		grid-template-columns: 56px 1fr;
		gap: 20px;
		padding: 24px 100px 20px 20px;
		font-size: 1.6rem;
	}
	.faq-accordion__item .answer-inner .header-icon {
		width: 56px;
		height: 56px;
		font-size: 2.8rem;
		line-height: 50px;
	}
}

/*　今後の展開 / deployment
ーーーーーーーーーーーーーーーーー */
@media (min-width: 768px), print {
	.deployment {
		margin-top: 160px !important;
	}
}
@media (max-width: 767px) {
	.deployment-inner {
		display: flex;
		flex-direction: column;
	}
	.deployment-inner .title-secondary {
		order: 1;
	}
	.deployment-inner .text {
		margin-top: 30px;
		order: 3;
		font-size: 1.8rem;
	}
	.deployment-inner .figure {
		order: 2;
	}
}
@media (min-width: 768px), print {
	.deployment-inner {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 140px;
		gap: 0 4.3333333333%;
	}
	.deployment-inner .text {
		grid-column-start: 1;
		grid-row-start: 2;
		max-width: 640px;
		font-size: 1.8rem;
	}
	.deployment-inner .figure {
		grid-row: span 2/span 2;
		grid-column-start: 2;
		grid-row-start: 1;
	}
}

/*　お問い合わせ / contact
ーーーーーーーーーーーーーーーーー */
.contact {
	margin-bottom: 0 !important;
	position: relative;
	width: 100%;
	height: 100%;
	clip-path: inset(0 0 0 0);
}
.contact-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url(/assets/images/bg_sp.png);
	z-index: -1;
}
@media (min-width: 768px), print {
	.contact-bg {
		background-image: url(/assets/images/bg_pc.png);
	}
}
.contact-inner {
	padding: 80px 30px;
}
.contact-contents .text {
	font-size: 1.8rem;
	color: #fff;
}
.contact-contents .text a {
	color: #fff;
	text-decoration: underline;
}
.contact-contents .contact-button {
	margin-top: 60px;
}
.contact-contents .contact-button__inner {
	min-height: 80px;
	background-color: #FFC400;
	border: 1px solid #FFC400;
}
.contact-contents .contact-button__inner span {
	font-size: 1.8rem;
	padding-left: 56px;
}
.contact-contents .contact-button__inner span::before {
	top: 0;
	left: 0;
	width: 48px;
	height: 44px;
	background: url(/assets/images/icon_mail_bw.svg) no-repeat;
	background-size: contain;
}
.contact .title-secondary h2 {
	color: #fff;
}
.contact .title-secondary::after {
	background-color: #fff;
}
@media (min-width: 768px), print {
	.contact-inner {
		padding-top: 120px;
		padding-bottom: 140px;
	}
	.contact-contents {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 0 95px;
	}
	.contact-contents .text a {
		transition: all 0.2s ease;
	}
	.contact-contents .text a:hover {
		opacity: 0.7;
	}
	.contact-contents .contact-button {
		min-width: 400px;
		margin-top: 0;
	}
	.contact-contents .contact-button__inner {
		min-height: 100px;
	}
	.contact-contents .contact-button__inner span {
		font-size: 2.4rem;
	}
	.contact-contents .contact-button__inner span::before {
		top: 8px;
	}
	.contact-contents .contact-button__inner:hover {
		background-color: #fff;
		border: 1px solid #fff;
	}
}
@media (min-width: 768px) and (max-width: 1280px) {
	.contact-contents {
		gap: 0 35px;
	}
	.contact-contents .contact-button {
		min-width: initial;
	}
	.contact-contents .contact-button__inner span {
		font-size: 2rem;
	}
	.contact-contents .contact-button__inner span::before {
		top: 8px;
	}
}

/* =============================================
Cookieポリシー
============================================= */
.cookie {
	/*　ヘッダー / header
	ーーーーーーーーーーーーーーーーー */
	/*　メインコンテンツ
	ーーーーーーーーーーーーーーーーー */
	/* パンくずリスト */
	/* title */
}
.cookie .header {
	position: relative;
	height: 80px;
}
.cookie .header-inner {
	position: fixed;
	top: 0;
	width: 100%;
	height: auto;
	z-index: 10;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 0 20px;
	background-color: #fff;
	padding: 20px 10px 20px 20px;
	box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
}
.cookie .header-logo {
	width: 110px;
}
@media (max-width: 767px) {
	.cookie .header-inner {
		position: relative;
	}
}
@media (min-width: 768px), print {
	.cookie .header {
		height: 100px;
	}
	.cookie .header-inner {
		align-items: center;
		padding: 20px 40px 20px 50px;
	}
	.cookie .header-logo {
		width: 160px;
	}
}
.cookie .breadcrumb {
	padding: 12px 0;
}
.cookie .breadcrumb__list {
	display: inline-flex;
	flex-wrap: nowrap;
	white-space: nowrap;
	font-size: 1.2rem;
	line-height: 1.2;
}
.cookie .breadcrumb__list > li {
	display: block;
}
.cookie .breadcrumb__list > li > a {
	text-decoration: none;
	color: #AAAAAA;
}
.cookie .breadcrumb__list > li + li::before {
	content: ">";
	display: inline-block;
	margin: 0 8px;
	color: #AAAAAA;
}
.cookie .breadcrumb__list > li:last-child > a {
	pointer-events: none;
}
@media (max-width: 767px) {
	.cookie .breadcrumb__inner {
		width: 100%;
		overflow-x: auto;
	}
	.cookie .breadcrumb__list {
		width: 100%;
		max-width: 1240px;
		margin-left: auto;
		margin-right: auto;
		padding-left: 8%;
		padding-right: 8%;
		width: auto;
		max-width: none;
	}
}
@media (max-width: 767px) and (min-width: 768px), print and (max-width: 767px) {
	.cookie .breadcrumb__list {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media (min-width: 768px), print {
	.cookie .breadcrumb {
		padding: 24px 0;
	}
	.cookie .breadcrumb__inner {
		width: 100%;
		max-width: 1240px;
		margin-left: auto;
		margin-right: auto;
		padding-left: 8%;
		padding-right: 8%;
		max-width: 1040px;
	}
}
@media (min-width: 768px) and (min-width: 768px), print and (min-width: 768px), print and (min-width: 768px), print {
	.cookie .breadcrumb__inner {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media (min-width: 768px), print {
	.cookie .breadcrumb__list {
		display: block;
		white-space: normal;
	}
	.cookie .breadcrumb__list > li {
		display: inline;
	}
	.cookie .breadcrumb__list > li > a:hover {
		text-decoration: underline;
	}
}
@media (max-width: 767px) {
	.cookie .main {
		padding-top: 70px;
	}
}
.cookie .title-secondary h2 {
	font-size: 2.4rem;
}
@media (min-width: 768px), print {
	.cookie .title-secondary h2 {
		font-size: 3.2rem;
	}
}

/* =============================================
animation
============================================= */
.js-slideup {
	will-change: translate, opacity;
	transform: translate(0, 60px);
	opacity: 0;
	transition: all 0.8s ease-in-out;
}

.js-slideup-act {
	transform: translate(0, 0);
	opacity: 1;
}

.js-slideup-img {
	opacity: 0;
	transform: translate(-100px, 0);
	transition: all 1s ease-out;
}

.js-slideup-img-act {
	opacity: 1 !important;
	transform: translate(0, 0) !important;
}

.js-mv-figure {
	opacity: 0;
	transition: all 1.5s ease-in;
}

.js-mv-figure-act {
	opacity: 1 !important;
}
/*# sourceMappingURL=style.css.map */
