@charset "UTF-8";
/* ===========================
1.目次＆ブレークポイント
============================== */
/*
1.目次＆ブレークポイント
2.header
3.mv
4.intro
5.contents 共通
6.conversion
7.スキャンサービス
8.事例紹介
9.ご注文の流れ
10.料金・納期
11.よくある質問
12.注意事項
13.特定商取引法に基づく表記
14.footer
*/
@media screen and (min-width: 35.5em) { /* 568px sm */
}
@media screen and (min-width: 48em) { /* 768px md */
}
@media screen and (min-width: 64em) { /* 1024px lg */
}
@media screen and (min-width: 80em) { /* 1280px xl */
}

/* ===========================
2.header
============================== */
header {
	width: 100%;
	height: 70px;
	padding: 0 15px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.6);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	position: fixed;
	top: 0;
	z-index: 999;
	transition: all 0.2s;
}
header.is-scroll {
	height: 50px;
}
header h1 {
	padding: 0 60px 0 0;
	transition: all 0.2s;
	text-align: center;
}
header h1 a {
	font-size: 0.625rem;
	font-weight: 400;
	line-height: 1.4;
	text-decoration: none;
	color: #333;
}
header h1 img {
	width: 140px;
	height: auto;
	pointer-events: initial;
	transition: all 0.2s;
}
#menu-btn-check {
	display: none;
}
.menu-btn {
	width: 60px;
	height: 60px;
	position: fixed;
	top: 5px;
	right: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 900;
	transition: all 0.2s;
}
header.is-scroll .menu-btn {
	width: 50px;
	height: 50px;
	top: 0;
	right: 10px;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
	content: '';
	display: block;
	height: 3px;
	width: 40px;
	border-radius: 3px;
	background-color: #858585;
	position: absolute;
	transition: all 0.3s;
}
.menu-btn span::before {
	bottom: 15px;
}
.menu-btn span::after {
	top: 15px;
}
header.is-scroll .menu-btn span::before {
	bottom: 12px;
}
header.is-scroll .menu-btn span::after {
	top: 12px;
}
#menu-btn-check:checked ~ .menu-btn span {
	background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
	bottom: 0;
	transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
	top: 0;
	transform: rotate(-45deg);
}
#nav-area {
	width: 100%;
	height: 100vh;
	margin: 0;
	padding: 0;
	position: absolute;
	top: -100vh;
	left: 0;
	transition: all 0.3s;
	background-color: rgba(255,255,255,0.95);
	z-index: 800;
}
#menu-btn-check:checked ~ #nav-area {
	top: 0;
	opacity: 1;
}
#nav-area ul {
	padding: 100px 0 0;
}
#nav-area ul li {
	position: relative;
	margin: 0 0 10px;
	padding: 0 9px;
	text-align: center;
	line-height: 1.1rem;
}
#nav-area ul li:nth-child(-n+5) {
	margin-left: 20%;
	text-align: left;
}
@keyframes triangle {
	0% {clip-path: polygon(0 0,100% 0,50% 100%);}
	5% {clip-path: polygon(50% 0,50% 0,50% 100%);}
	10% {clip-path: polygon(0 0,100% 0,50% 100%);}
	100% {clip-path: polygon(0 0,100% 0,50% 100%);}
}
#nav-area ul li:nth-child(-n+5)::before {
	content: '';
	width: 20px;
	height: 20px;
	clip-path: polygon( 0 0, 100% 0, 50% 100% );
	background-color: #59caf2;
	position: absolute;
	top: 10px;
	left: -25px;
	animation: triangle 5s linear infinite;
}
#nav-area ul li::before {
	animation-delay: 0s;
}
#nav-area ul li:nth-child(2)::before {
	animation-delay: 1s;
}
#nav-area ul li:nth-child(3)::before {
	animation-delay: 2s;
}
#nav-area ul li:nth-child(4)::before {
	animation-delay: 3s;
}
#nav-area ul li:nth-child(5)::before {
	animation-delay: 4s;
}
#nav-area ul li a span {
	display: inline-block;
	width: 100%;
	padding: 0.6em 0;
	font-size: 1.25rem;
	text-decoration: none;
	font-weight: bold;
}
#nav-area ul li a span:first-child {
	display: inline-block;
	position: relative;
	top: 0;
	color: #333;
	transition: .15s ease;
	opacity: 1;
}
#nav-area ul li a:hover span:first-child {
	top: 0.5em;
	opacity: 0;
}
#nav-area ul li a span:nth-child(2) {
	position: absolute;
	top: -0.5em;
	left: 0;
	width: 100%;
	color: #00aeeb;
	transition: .15s ease;
	opacity: 0;
}
#nav-area ul li a:hover span:nth-child(2) {
	top: 0;
	opacity: 1;
}
header .nav-conv {
	display: inline-block;
	margin: 30px 0 0;
	padding: 0.5em 1em;
	font-size: 1.375rem;
	font-weight: bold;
	text-decoration: none;
	color: #fff;
	background: linear-gradient(90deg, #fff 33.3%, #00aeeb 85%);
	background-size: 300%;
	background-position:99% 0;
	border: transparent 2px solid;
	border-radius: 1em;
	transition: all 0.4s;
}
header .nav-conv:hover,
header .nav-conv:active {
	color: #00aeeb;
	background-position:0% 0;
	border: #00aeeb 2px solid;
}
@media screen and (min-width: 48em) { /* 768px md */
	header {
		height: 90px;
		justify-content: space-between;
	}
	header.is-scroll {
		height: 70px;
	}
	header h1 {
		padding: 0;
	}
	header h1 a {
		font-size: 0.6875rem;
	}
	header h1 img {
		width: 190px;
	}
	.menu-btn {
		display: none;
	}
	#nav-area {
		width: auto;
		height: auto;
		position: relative;
		top: 0;
		opacity: 1;
		background-color: transparent;
	}
	#nav-area ul {
		width: 520px;
		padding: 0;
		display: flex;
		flex-wrap: wrap-reverse;
		justify-content: flex-end;
	}
	#nav-area ul li {
		margin: 0;
	}
	#nav-area ul li:nth-child(-n+5) {
		margin-left: 0;
		text-align: center;
	}
	#nav-area ul li:nth-child(-n+5)::before {
		content: none;
	}
	#nav-area ul li a span {
		font-size: 0.875rem;
	}
	header .nav-conv {
		margin: 0;
		padding: 0.3em 0.7em;
		font-size: 0.875rem;
	}
}
@media screen and (min-width: 64em) { /* 1024px lg */
	header {
		height: 100px;
		padding: 0 0 0 2%;
	}
	header h1 a {
		font-size: 0.875rem;
		line-height: 2;
	}
	header.is-scroll h1 {
		padding-left: 25px;
	}
	header.is-scroll h1 a {
		font-size: 0.6875rem;
		line-height: 1.4;
	}
	header h1 img {
		width: 240px;
	}
	header.is-scroll h1 img {
		width: 190px;
	}
	#nav-area ul {
		width: auto;
		flex-wrap: wrap;
		justify-content: space-evenly;
		align-items: flex-end;
	}
	#nav-area ul li a span {
		font-size: 0.9375rem;
	}
	header .nav-conv {
		margin-bottom: -2px;
		padding: 0.7em 1em;
		font-size: 0.9375rem;
		border-radius: 1.5em;
	}
}
@media screen and (min-width: 80em) { /* 1280px xl */
	header {
		padding: 0 4%;
	}
	#nav-area ul li {
		padding: 0 16px;
	}
	#nav-area ul li a span {
		font-size: 1rem;
	}
	header .nav-conv {
		margin-bottom: -5px;
		padding: 0.7em 1.5em;
		font-size: 1.125rem;
	}
}

/* ===========================
3.mv
============================== */
#mv {
	width: 100%;
	padding: 100px 0 0;
	background: url(../img/mv-back-sp.webp) bottom center no-repeat;
	background-size: cover;
	position: relative;
}
@keyframes zigzag {
	0% {background-position:99% 0;}
	90% {background-position:99% 0;}
	100% {background-position:0% 0;}
}
#mv::after {
	content: '';
	width: 100%;
	height: auto;
	aspect-ratio: 10.43/1;
	clip-path: polygon(
		0 52%, 42% 0, 57% 67%, 82% 15%, 100% 50%, 100% 63%, 82% 28%, 57% 80%, 42% 13%, 0 65%
	);
	background: linear-gradient(90deg, #eeea 40%, #fff 50%, #eeea 60%);
	background-size: 300%;
	background-position:99% 0;
	position: absolute;
	bottom: 20vw;
	left: 0;
	animation: zigzag 5s linear 0S infinite;
}
#mv h2 {
	margin: 0;
	transform: scaleX(0.85);
	transform-origin: 0 0;
	font-size: 6.2vw;
	font-weight: bold;
	line-height: 1.2;
	letter-spacing: 0.1em;
}
#mv h2 span {
	font-size: 4.8vw;
}
#mv .thumbnail {
	position: absolute;
	top: 110px;
	right: 10px;
	z-index: -1;
}
.mv-point li {
	width: 33%;
	aspect-ratio: 1/1;
	border-radius: 50%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	color: #fff;
}
@keyframes backscaning {
	0% {background-position:99% 0;}
	100% {background-position:0% 0;}
}
@keyframes backscaning2 {
	0% {background-position:0% 0;}
	100% {background-position:99% 0;}
}
.mv-point li:nth-child(1) {
	background: linear-gradient(90deg,#e75297 40%, #f8cbe0 50%, #e75297 51%);
	background-size: 300%;
	background-position:99% 0;
	position: absolute;
	top: 12vw;
	right: 0;
	z-index: 98;
	animation: backscaning 1s 0.1s ease forwards;
}
.mv-point li:nth-child(2) {
	background: #00aeeb;
	background: linear-gradient(90deg, #00aeeb 49%, #b2e7f9 50%, #00aeeb 60%);
	background-size: 300%;
	background-position:0 99%;
	position: absolute;
	top: 44vw;
	right: 11.5%;
	z-index: 99;
	animation: backscaning2 0.4s 0.5s ease forwards;
}
.mv-point li:nth-child(3) {
	background: linear-gradient(90deg, #f6aa00 40%, #fce5b2 50%, #f6aa00 51%);
	background-size: 300%;
	background-position:99% 0;
	position: absolute;
	top: 38vw;
	right: 48%;
	z-index: 97;
	animation: backscaning 1s 0.7s ease forwards;
}
.mv-point li h3 {
	width: 4.4em;
	padding: 0 0 0.2em;
	font-size: 6vw;
	font-weight: bold;
	line-height: 1.1;
	text-align: center;
	border-bottom: #fff 1px solid;
}
.mv-point li h3 span {
	font-size: 4vw;
}
.mv-point li p {
	padding: 0.5em 0 0;
	font-size: 2.6vw;
	line-height: 1.3;
	text-align: center;
}
.mv-welcome {
	margin: 60vw auto 0;
	position: relative;
	z-index: 90;
	text-align: center;
}
.mv-welcome p:first-child {
	display: inline-block;
	margin: 0;
	padding: 3px 10px 22px;
	font-weight: bold;
	background: #fff;
	border: #00aeeb 5px solid;
}
.mv-welcome p:nth-child(2) {
	margin: -20px 0 0 40px;
}
.mv-welcome a {
	display: inline-block;
	overflow: hidden;
	padding: 5px 25px;
	font-size: 1.25rem;
	font-weight: bold;
	text-decoration: none;
	color: #fff;
	background: linear-gradient(90deg, #59caf2 0%, #00aeeb 50%);
	transition: all .3s ease-in-out;
	position: relative;
}
.mv-welcome a:hover {
	color: #00aeeb;
	background: linear-gradient(90deg, #00aeeb 0%, #00aeeb 50%);
}
.mv-welcome a span {
	position: relative;
}
.mv-welcome a::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 200%;
	height: 800%;
	content: '';
	transition: all .3s ease-in-out;
	transform: translateX(-77%) translateY(-69%) rotate(135deg);
	background: #0034d1;
}
.mv-welcome a:hover::before {
	transform: translateX(-23%) translateY(-20%) rotate(135deg);
	background: #fff;
}
.mv-welcome a img {
	margin-right: 0.5em;
	vertical-align: baseline;
	filter: brightness(0%) invert(100%);
	transition: all .3s ease-in-out;
	position: relative;
	top: 0;
	left: 0;
	animation: right-arrow 1.4s ease-in-out infinite;
}
.mv-welcome a:hover img {
	filter: brightness(100%) invert(0%);
}
@media screen and (min-width: 48em) { /* 768px md */
	#mv {
		height: 690px;
		padding: 150px 0 0;
		background: url(../img/mv-back.webp) bottom center no-repeat;
		background-size: cover;
	}
	#mv h2 {
		font-size: 3rem;
	}
	#mv h2 span {
		font-size: 2.25rem;
	}
	#mv::after {
		bottom: 0;
	}
	.mv-point li {
		width: 200px;
		height: 200px;
	}
	.mv-point li:nth-child(1) {
		top: 40px;
		right: 0;
	}
	.mv-point li:nth-child(2) {
		top: 246px;
		right: 75px;
	}
	.mv-point li:nth-child(3) {
		top: 195px;
		right: 290px;
	}
	.mv-point li h3 {
		font-size: 2.25rem;
		line-height: 1.2;
	}
	.mv-point li h3 span {
		font-size: 1.25rem;
	}
	.mv-point li p {
		font-size: 1rem;
	}
	.mv-welcome {
		margin: 250px 0 0 0;
		text-align: left;
	}
	.mv-welcome p:first-child {
		font-size: 1.25rem;
	}
	.mv-welcome p:nth-child(2) {
		margin: -20px 0 0 60px;
	}
	.mv-welcome a {
		font-size: 2rem;
	}
}
@media screen and (min-width: 64em) { /* 1024px lg */
	#mv h2 {
		font-size: 4rem;
	}
	#mv h2 span {
		font-size: 3rem;
	}
	.mv-point li:nth-child(1) {
		top: 80px;
	}
	.mv-point li:nth-child(2) {
		top: 286px;
	}
	.mv-point li:nth-child(3) {
		top: 235px;
	}
	.mv-welcome {
		margin: 170px 0 0 0;
	}
}
@media screen and (min-width: 80em) { /* 1280px xl */
	#mv h2 {
		font-size: 4.25rem;
		line-height: 1.3;
	}
	#mv h2 span {
		font-size: 3rem;
	}
	.mv-welcome {
		margin: 130px 0 0 20px;
	}
}

/* ===========================
4.intro
============================== */
#intro {
	position: relative;
}
#intro p {
	margin: 30px 0 0;
	font-size: 1rem;
	text-align: left;
}
.intro-img {
	max-width: 260px;
	margin: 5px auto 0;
}
@media screen and (min-width: 48em) { /* 768px md */
	#intro p {
		margin: 60px 0 0;
	}
	.intro-img {
		max-width: none;
		width: calc(100% - 500px);
		margin: 0;
		position: absolute;
		bottom: -40px;
		right: -10px;
	}
}
@media screen and (min-width: 64em) { /* 1024px lg */
	#intro p {
		font-size: 1.25rem;
	}
	.intro-img {
		max-width: 40%;
		width: auto;
		bottom: auto;
		top: -100px;
		right: -20px;
	}
}
@media screen and (min-width: 80em) { /* 1280px xl */
	#intro p {
		font-size: 1.5rem;
	}
	.intro-img {
		max-width: none;
		top: -110px;
		right: -10px;
	}
}

/* ===========================
5.contents 共通
============================== */
.main-content {
	margin-top: 70px;
}
.main-content h2 {
	transform: scaleX(0.85) translateX(35px);
	transform-origin: 0 0;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
}
#tokusyo.main-content h2 {
	font-size: 1.5rem;
}
.main-content h2::before {
	content: '';
	display: inline-block;
	width: 32px;
	height: 26px;
	background: url(../img/main-h2.svg) center center no-repeat;
	background-size: contain;
	position: relative;
	top: 3px;
	right: 10px;
	transform: scaleX(0);
	transition: opacity 0.5s, transform 0.5s;
	transition-delay: 0.1s;
}
.main-content.is-scroll h2::before {
	transform: scaleX(1.17);
}
.digi-link {
	padding: 0.1em 0.3em 0.3em;
	font-weight: bold;
	text-decoration: none;
	color: #00aeeb;
	transition: all 0.2s;
	border-radius: 5px;
}
.digi-link:hover {
	background: #d3edfb;
}
@media screen and (min-width: 48em) { /* 768px md */
	.main-content {
		margin-top: 150px;
	}
	.main-content h2 {
		transform: scaleX(0.85) translateX(85px);
		transform-origin: 0 0;
		font-size: 3rem;
	}
	#tokusyo.main-content h2 {
		font-size: 3rem;
	}
	.main-content h2::before {
		width: 64px;
		height: 52px;
		top: 6px;
		right: 20px;
	}
	.main-content.wide-inner::before,
	.main-content.narrow-inner::before {
		content: '';
		width: 372px;
		height: 392px;
		background: url(../img/decoration_l.png) center center no-repeat;
		background-size: contain;
		position: absolute;
		top: -150px;
		right: 90%;
		z-index: -1;
	}
	.main-content.wide-inner::after,
	.main-content.narrow-inner::after {
		content: '';
		width: 372px;
		height: 392px;
		background: url(../img/decoration_r.png) center center no-repeat;
		background-size: contain;
		position: absolute;
		bottom: 150px;
		left: 95%;
		z-index: -1;
	}
}

/* ===========================
6.conversion
============================== */
.conversion {
	margin: 60px 0 0;
	padding: 40px 0;
	background: #d3edfb;
	position: relative;
}
.conversion::after {
	content: '';
	width: 100%;
	height: auto;
	aspect-ratio: 10.43/1;
	clip-path: polygon(
		0 52%, 42% 0, 57% 67%, 82% 15%, 100% 50%, 100% 63%, 82% 28%, 57% 80%, 42% 13%, 0 65%
	);
	background: linear-gradient(90deg, #eeea 40%, #fff 50%, #eeea 60%);
	background-size: 300%;
	background-position:99% 0;
	position: absolute;
	bottom: -6vw;
	left: 0;
	animation: zigzag 5s linear -2S infinite;
}
.conversion p:first-child {
	margin: 0;
	font-size: 1.25rem;
	font-weight: bold;
	text-align: center;
}
.conversion .otayori {
	margin-top: 30px;
	text-align: center;
}
.conversion .otayori a {
	display: inline-block;
	overflow: hidden;
	padding: 1em 2em;
	position: relative;
	font-size: 1rem;
	font-weight: bold;
	text-decoration: none;
	color: #fff;
	background: linear-gradient(90deg, #59caf2 0%, #00aeeb 50%);
	transition: all .3s ease-in-out;
}
.conversion .otayori a:hover {
	color: #00aeeb;
	background-color: #0034d1;
}
.conversion .otayori a span {
	position: relative;
}
.conversion .otayori a::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 150%;
	height: 500%;
	content: '';
	transition: all .3s ease-in-out;
	transform: translateX(-72%) translateY(-70%) rotate(135deg);
	background-color: #0034d1;
}
.conversion .otayori a:hover::before {
	transform: translateX(-21%) translateY(-25%) rotate(135deg);
	background-color: #fff;
}
.conversion .otayori a img {
	margin-right: 0.5em;
	vertical-align: baseline;
	filter: brightness(0%) invert(100%);
	transition: all .3s ease-in-out;
	position: relative;
	top: 0;
	left: 0;
	animation: rightarrow 1.4s ease-in-out infinite;
}
@keyframes rightarrow{
	0%{ left: 0; }
	70%{ left: 8px; }
	100%{ left: 0; }
}
.conversion .otayori a:hover img {
	filter: brightness(100%) invert(0%);
}
.bottom-conv {
	padding: 0;
}
.conversion.bottom-conv p:first-child {
	font-size: 1.125rem;
}
.bottom-conv > div {
	padding: 20px 0 180px;
	position: relative;
	overflow: hidden;
}
.bottom-conv-quote a,
.bottom-conv-know a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1/1;
	font-size: 1.25rem;
	font-weight: bold;
	text-decoration: none;
	border-radius: 50%;
	position: absolute;
	transition: all 0.2s;
}
.bottom-conv-quote a {
	width: 160px;
	background: linear-gradient(135deg, #fff 0%, #b2e7f9 60%);
	color: #0034d1;
	top: 80px;
	left: 53%;
}
.bottom-conv-know a {
	box-sizing: border-box;
	width: 190px;
	padding: 0 0 60px;
	background: linear-gradient(135deg, #59caf2 20%, #00aeeb 60%);
	color: #fff;
	top: 90px;
	right: 45%;
}
.bottom-conv-quote a:hover,
.bottom-conv-know a:hover {
	transform: scale(1.1);
}
.bottom-conv-quote a::after,
.bottom-conv-know a::after {
	content: '→';
	display: block;
	width: 40px;
	height: 40px;
	margin: 0;
	font-size: 1.5rem;
	line-height: 36px;
	text-align: center;
	border-radius: 50%;
	position: absolute;
	left: calc(50% - 20px);
}
.bottom-conv-quote a::after {
	color: #fff;
	background: #0034d1;
	top: calc(50% + 30px);
}
.bottom-conv-know a::after {
	color: #00aeeb;
	background: #fff;
	top: calc(50%);
}
@media screen and (min-width: 48em) { /* 768px md */
	.conversion {
		margin: 150px 0 0;
		padding: 70px 0;
		background: #d3edfb;
	}
	.conversion p:first-child,
	.conversion.bottom-conv p:first-child {
		font-size: 1.75rem;
	}
	.conversion .otayori {
		margin-top: 60px;
	}
	.conversion .otayori a {
		padding: 1em 3em;
		font-size: 1.3125rem;
	}
	.bottom-conv {
		padding: 0;
	}
	.bottom-conv > div {
		padding: 20px 0 140px;
	}
	.bottom-conv p:first-child {
		text-align: left;
	}
	.bottom-conv-quote a,
	.bottom-conv-know a {
		font-size: 2rem;
	}
	.bottom-conv-quote a {
		width: 200px;
		top: -60px;
		left: auto;
		right: 22px;
	}
	.bottom-conv-know a {
		width: 230px;
		top: 80px;
		right: 120px;
	}
}
@media screen and (min-width: 64em) { /* 1024px lg */
	.bottom-conv > div {
		padding: 100px 0;
	}
	.bottom-conv-quote a {
		width: 256px;
		top: -60px;
		right: 30px;
	}
	.bottom-conv-know a {
		width: 288px;
		top: 60px;
		right: 210px;
	}
}
@media screen and (min-width: 80em) { /* 1280px xl */
	.bottom-conv > div {
		padding: 140px 0;
	}
	.bottom-conv-quote a {
		width: 320px;
		top: -80px;
		right: 40px;
	}
	.bottom-conv-know a {
		width: 360px;
		top: 80px;
		right: 270px;
	}
}

/* ===========================
7.スキャンサービス
============================== */
.service-nav {
	margin: 30px 0 0;
	display: flex;
	justify-content: center;
}
@keyframes service-nav {
	0% {opacity: 0; transform: translateY(50px);}
	100% {opacity: 1; transform: translateY(0);}
}
.service-nav li {
	max-width: 240px;
	width: 30%;
	height: 75px;
	margin: 0 4px;
	background: #e75297;
	background: linear-gradient(0deg, #ef8fbb 0%, #e75297 60%);
	clip-path: polygon(
		0 0, 100% 0, 100% 80%, 50% 100%, 0% 80%
	);
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.1s;
}
.service-nav.is-scroll li {
	animation: service-nav 0.5s ease forwards;
	animation-delay: 0.1s;
}
.service-nav.is-scroll li:nth-child(2) {
	animation-delay: 0.3s;
}
.service-nav.is-scroll li:nth-child(3) {
	animation-delay: 0.5s;
}
.service-nav li:nth-child(2) {
	background: #00aeeb;
	background: linear-gradient(0deg, #59caf2 0%, #00aeeb 60%);
}
.service-nav li:nth-child(3) {
	background: #f6aa00;
	background: linear-gradient(0deg, #f9c859 0%, #f6aa00 60%);
}
.service-nav li a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	padding: 5px 0 0;
	font-size: 0.9375rem;
	font-weight: bold;
	line-height: 1.2;
	text-decoration: none;
	text-align: center;
	color: #fff;
}
.service-nav li a::after {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translateX(-5px) rotate(45deg);
	position: relative;
	top: 5px;
	left: 50%;
	transition: all 0.2s;
}
#service h3 {
	margin: 80px 0 0;
	transform: scaleX(0.85);
	transform-origin: 0 0;
	font-size: 1.5rem;
	font-weight: bold;
	color: #00aeeb;
	scroll-margin-top: 70px;
}
.service-type {
	margin: 80px 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.service-type > div {
	width: 100%;
	margin: 20px 0 50px;
	padding: 160px 0 0;
	position: relative;
	border-top: #00aeeb 4px solid;
	border-image: linear-gradient(to right, #b2e7f9, #00aeeb, #00aeeb) 1;
	scroll-margin-top: 120px;
}
.service-type > div::before {
	content: '';
	width: 100%;
	height: 160px;
	position: absolute;
	top: 10px;
	left: 0;
	border-bottom-left-radius: 30px;
}
.service-type > div:nth-child(1)::before {
	background: url(../img/service-img01.jpg) center center no-repeat;
	background-size: cover;
}
.service-type > div:nth-child(2)::before {
	background: url(../img/service-img02.jpg) center center no-repeat;
	background-size: cover;
}
.service-type > div:nth-child(3)::before {
	background: url(../img/service-img03.jpg) center center no-repeat;
	background-size: cover;
}
.service-type > div:nth-child(4)::before {
	background: url(../img/service-img04.jpg) center center no-repeat;
	background-size: cover;
}
.service-type h4 {
	width: 110px;
	height: 110px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	font-size: 1.25rem;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
	color: #fff;
	background: #00aeeb;
	border-radius: 50%;
	position: absolute;
	top: -55px;
	left: 0;
}
.service-type h4 span {
	display: inline;
	color: #fce5b2;
}
.service-type > div p {
	padding: 0 10px;
}
.service-type > div h4 + p {
	padding: 20px 10px 0;
	text-align: justify;
}
.service-type > div p.service-size {
	display: inline-block;
	margin: 5px 0 5px;
	padding: 0.1em 20px 0;
	font-weight: bold;
	color: #fff;
	background: linear-gradient(90deg, #59caf2 0%, #00aeeb 40%);
}
.service-type > div p.service-use {
	display: inline-block;
	margin: 10px 0 0;
	padding: 0.1em 20px 0;
	font-weight: bold;
	color: #fff;
	background: linear-gradient(90deg, #f9c859 0%, #f6aa00 40%);
}
.service-type > div ul {
	padding: 5px;
}
.service-type > div ul li {
	padding-left: 1em;
	text-indent: -1em;
	text-align: justify;
}
.service-type > div ul li::before {
	content: '・';
}
.service-note {
	display: inline-block;
	margin: -15px 0 0;
	padding: 1em;
	border: #00aeeb 2px solid;
	border-image: linear-gradient(to bottom right, #b2e7f9, #00aeeb, #00aeeb) 1;
}
h3#service-content,
h3#service-option {
	margin: 80px 6% 0;
}
.service-list,
.service-option {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.service-list li,
.service-option li {
	box-sizing: border-box;
	width: 48%;
	margin-top: 20px;
	padding: 15px 13px 10px;
	text-align: center;
	border: #00aeeb 2px solid;
	border-image: linear-gradient(to bottom right, #b2e7f9, #00aeeb, #00aeeb) 1;
	box-sizing: border-box;
	overflow: hidden;
}
.service-list li:first-child {
	width: 100%;
	border: #00aeeb 7px solid;
	border-image: linear-gradient(to bottom right, #b2e7f9, #00aeeb, #00aeeb) 1;
}
.service-list li h4 {
	margin: 5px 0 0;
	font-size: 1.1rem;
	font-weight: bold;
	line-height: 1.3;
}
.service-list li:first-child h4 {
	margin: 0;
}
.service-list li:first-child ul {
	clear: both;
	margin: 10px 0 0;
}
.service-list li:first-child ul li {
	width: 100%;
	margin: 0;
	padding: 0 0 0 1em;
	text-indent: -1em;
	border: none;
	text-align: justify;
}
.service-list li:first-child ul li::before {
	content: '・';
}
.service-list li img {
	max-width: 74px;
	height: auto;
}
.service-list li:first-child img {
	float: left;
	margin: 10px 20px;
}
.service-list li p {
	margin: 5px 0 0;
	font-size: 0.875rem;
	text-align: justify;
}
.service-option li:first-child {
	border: #00aeeb 7px solid;
	border-image: linear-gradient(to bottom right, #b2e7f9, #00aeeb, #00aeeb) 1;
}
.service-option li:nth-child(-n+2) {
	width: 100%;
}
@keyframes service-list {
	0% {transform: scaleX(1);}
	50% {transform: scaleX(0);}
	100% {transform: scaleX(1);}
}
.service-list li img.is-scroll {
	animation: service-list 0.3s ease-in-out forwards;
	animation-delay: 0.2s;
}
.service-list li:nth-child(3) img.is-scroll,
.service-list li:nth-child(5) img.is-scroll,
.service-list li:nth-child(7) img.is-scroll {
	animation-delay: 0.4s;
}
.service-option li h4 {
	margin: 0;
	font-size: 1.1rem;
	font-weight: bold;
	line-height: 1.3;
}
.service-option li img {
	max-width: 74px;
	height: auto;
	margin-right: 0.5em;
	vertical-align: middle;
}
.service-option li img.is-scroll {
	animation: service-list 0.3s ease-in-out forwards;
	animation-delay: 0.2s;
}
.service-option li p {
	margin: 0.5em 0 0 0;
	font-size: 0.875rem;
	text-align: justify;
}
@media screen and (min-width: 35.5em) { /* 568px sm */
	.service-type > div {
		padding: 0 0 0 40%;
	}
	.service-type > div::before {
		width: 40%;
		height: 100%;
	}
	.service-type > div p {
		padding: 5px 10px 0 20px;
	}
	.service-type > div h4 + p {
		padding: 5px 10px 0;
	}
	.service-option li {
		width: 48.6%;
		padding: 25px 10px 10px;
	}
	.service-option li:nth-child(-n+2) {
		width: 48.6%;
	}
	.service-option li img {
		max-width: 100%;
	}
	.service-option li:nth-child(2) img.is-scroll {
		animation-delay: 0.4s;
	}
}
@media screen and (min-width: 48em) { /* 768px md */
	.service-nav {
		margin: 50px 0 0;
	}
	.service-nav li {
		margin: 0 10px;
		clip-path: polygon(
			0 0, 100% 0, 100% 80%, 50% 80%, 0% 80%
		);
	}
	.service-nav li:hover {
		clip-path: polygon(
			0 0, 100% 0, 100% 80%, 50% 100%, 0% 80%
		);
		filter: brightness(1.1);
	}
	.service-nav li a {
		font-size: 1.25rem;
		line-height: 2;
	}
	.service-nav li a::after {
		top: -5px;
	}
	.service-nav li:hover a::after {
		top: 0;
	}
	#service h3 {
		font-size: 3rem;
	}
	.service-type h4 {
		width: 150px;
		height: 150px;
		font-size: 1.75rem;
		top: -75px;
	}
	.service-type > div {
		width: calc(50% - 20px);
		margin: 40px 0 100px;
		padding: 250px 0 0;
		scroll-margin-top: 150px;
	}
	.service-type > div:nth-child(even) {
		top: 140px;
	}
	.service-type > div::before {
		width: 100%;
		height: 250px;
	}
	.service-type > div p {
		padding: 0 10px 0 20px;
	}
	.service-type > div h4 + p {
		padding: 20px 10px 0;
	}
	.service-type > div p.service-size {
		margin: 15px 0 5px;
		font-size: 0.9375rem;
	}
	.service-type > div p.service-use {
		margin: 15px 0 0;
		font-size: 0.9375rem;
	}
	.service-type > div ul {
		padding: 5px 10px 5px 15px;
	}
	.service-note {
		margin: -40px 0 0;
	}
	h3#service-content,
	h3#service-option {
		width: 900px;
		margin: 80px auto 0;
	}
	.service-list li {
		width: 23.5%;
		margin-top: 15px;
		padding: 15px 10px 10px;
	}
	.service-list li:first-child {
		width: 49%;
	}
	.service-list li:first-child ul {
		margin: 25px 0 0;
	}
	.service-list li h4 {
		margin: 10px 0 0;
	}
	.service-list li img {
		max-width: 100%;
	}
	.service-list li:first-child img {
		margin: 0 30px 30px;
	}
	.service-list li:nth-child(2) img.is-scroll,
	.service-list li:nth-child(4) img.is-scroll {
		animation-delay: 0.4s;
	}
	.service-list li:nth-child(3) img.is-scroll,
	.service-list li:nth-child(5) img.is-scroll {
		animation-delay: 0.6s;
	}
	.service-list li:nth-child(6) img.is-scroll {
		animation-delay: 0.8s;
	}
	.service-list li:nth-child(7) img.is-scroll {
		animation-delay: 1s;
	}
	.service-list li p {
		margin: 10px 0 0;
	}
}
@media screen and (min-width: 64em) { /* 1024px lg */
	.service-list li {
		width: 23%;
		margin-top: 25px;
		padding: 25px 10px 10px;
	}
	.service-list li:first-child {
		width: 48.7%;
	}
	.service-list li h4 {
		margin: 20px 0 0;
		font-size: 1.3125rem;
	}
	.service-list li p,
	.service-option li p {
		font-size: 1rem;
		text-align: justify;
	}
	.service-list li:first-child ul li {
		font-size: 1rem;
	}
	.service-list li:first-child img {
		margin: 0 40px;
	}
	.service-option li {
		margin-top: 25px;
	}
	.service-option li h4 {
		font-size: 1.3125rem;
	}
}
@media screen and (min-width: 80em) { /* 1280px xl */
	.service-type > div {
		padding: 0 0 0 calc(25% - 10px);
		margin: 40px 0 140px;
		min-height: 440px;
	}
	.service-type > div:nth-child(even) {
		top: 140px;
	}
	.service-type > div::before {
		width: 50%;
		height: 100%;
	}
	.service-type > div h4 + p {
		padding: 8px 10px 0;
	}
	.service-detail {
		position: absolute;
		top: 195px;
		left: 50%;
	}
	.service-note {
		margin: 40px 0 0;
	}
}

/* ===========================
8.事例紹介
============================== */
.case-intro {
	margin: 20px 0 0;
	text-align: center;
}
#case h3 {
	width: 115%;
	margin: 50px 0 0;
	transform: scaleX(0.85);
	transform-origin: 0 0;
	font-size: 1.25rem;
	font-weight: bold;
	color: #00aeeb;
	scroll-margin-top: 70px;
}
.case-detail {
	margin: 20px 0 0;
	padding: 15px;
	border: #00aeeb 2px solid;
	border-image: linear-gradient(to bottom right, #b2e7f9, #00aeeb, #00aeeb) 1;
	overflow: hidden;
}
.case-detail > img {
	display: block;
	max-width: 330px;
	width: 100%;
	height: auto;
	margin: 0 auto 10px;
}
.case-detail h4 {
	margin: 0 0 20px;
	font-size: 1.375rem;
	font-weight: bold;
	line-height: 1.4;
	text-align: center;
}
.case-detail h4 span {
	margin-right: 0.3em;
	color: #f6aa00;
}
.case-delivery {
	margin: 20px 0 10px;
	font-size: 1.25rem;
	font-weight: bold;
}
.case-detail ul {
	clear: both;
	margin: 20px 0 0;
	text-align: center;
}
.case-detail ul li {
	margin: 0 0 15px;
}
.case-suggest {
	margin: 30px 0 0;
}
.case-suggest li {
	margin: 0 0 15px;
	overflow: hidden;
	background: linear-gradient(90deg, #59caf2 0, #00aeeb 40px, #00aeeb 94px, #fff 94px);
}
.case-suggest li img {
	max-width: 74px;
	height: auto;
	margin: 20px 20px 25px 10px;
	float: left;
}
.case-suggest li img.is-scroll {
	animation: service-list 0.3s ease-in-out forwards;
	animation-delay: 0.2s;
}
.case-suggest li:nth-child(2) img.is-scroll {
	animation-delay: 0.4s;
}
.case-suggest li:nth-child(3) img.is-scroll {
	animation-delay: 0.6s;
}
.case-suggest + p {
	margin: 20px 0 0;
	font-size: 1rem;
	font-weight: bold;
	text-align: center;
}
.case-merit ul {
	margin: 20px 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
@keyframes case-merit {
	0% {opacity: 0; transform: scale(0.1) translateY(300px);}
	60% {opacity: 1; transform: scale(1.05) translateY(-10px);;}
	100% {opacity: 1; transform: scale(1) translateY(0);;}
}
.case-merit ul li {
	box-sizing: border-box;
	width: 48%;
	aspect-ratio: 1/1;
	margin-bottom: 15px;
	text-align: center;
	border: #f6aa00 10px solid;
	border-radius: 50%;
	position: relative;
	opacity: 0;
	transform: scale(0.1) translateY(300px);
}
.case-merit ul.is-scroll li {
	animation: case-merit 0.3s ease forwards;
	animation-delay: 0.7s;
}
.is-scroll .case-merit ul li:nth-child(2) {
	animation-delay: 0.4s;
}
.is-scroll .case-merit ul li:nth-child(3) {
	animation-delay: 0.8s;
}
.is-scroll .case-merit ul li:nth-child(4) {
	animation-delay: 0.9s;
}
.case-merit ul li:nth-child(even) {
	border-color: #e75297;
}
.case-merit ul li h4 {
	width: 100%;
	box-sizing: border-box;
	margin: 25px 0 0;
	padding: 0 5px 5px;
	font-size: 5.6vw;
	border-bottom: #f6aa00 1px solid;
	position: absolute;
	bottom: 50%;
}
.case-merit ul li:nth-child(even) h4 {
	border-color: #e75297;
}
.case-merit ul li p {
	width: 100%;
	box-sizing: border-box;
	margin: 10px 0 0;
	padding: 0 10px;
	font-size: 3.6vw;
	position: absolute;
	top: 50%;
}
@media screen and (min-width: 48em) { /* 768px md */
	.case-intro {
		margin: 40px 0 0;
	}
	#case h3 {
		margin: 80px 0 0;
		font-size: 2.5rem;
	}
	.case-detail {
		padding: 30px;
	}
	.case-detail > img {
		display: inline;
		margin: 0 0 0 1em;
		float: right;
	}
	.case-delivery {
		font-size: 1.5rem;
	}
	.case-detail ul {
		margin: 40px 0 0;
		display: flex;
		justify-content: space-between;
	}
	.case-detail ul li {
		width: 48%;
	}
	.case-suggest {
		margin: 30px 0 0;
		display: flex;
		justify-content: space-between;
	}
	.case-suggest li {
		width: 31%;
		margin: 0 0 20px;
		text-align: justify;
		background: linear-gradient(180deg, #00aeeb 60px, #59caf2 108px, #fff 108px);
	}
	.case-suggest li img {
		display: block;
		max-width: 100%;
		height: auto;
		margin: 5px auto 15px;
		float: none;
	}
	.case-suggest {
		margin: 40px 0 0;
	}
	.case-merit ul {
		margin: 40px 0 0;
	}
	.case-merit ul li {
		width: 23%;
	}
	.case-merit ul li h4 {
		font-size: 2.5vw;
	}
	.case-merit ul li p {
		font-size: 1.75vw;
	}
}
@media screen and (min-width: 64em) { /* 1024px lg */
	.case-detail > img {
		max-width: 436px;
	}
	.case-detail h4 {
		font-size: 2rem;
	}
	.case-suggest + p {
		font-size: 1.375rem;
	}
	.case-merit ul li h4 {
		padding: 0 5px 15px;
		font-size: 1.75rem;
	}
	.case-merit ul li p {
		padding: 5px 10px 0;
		font-size: 1.25rem;
	}
}

/* ===========================
9.ご注文の流れ
============================== */
.flow-list {
	margin-top: 30px;
	counter-reset: flow_list;
	list-style: none;
}
.flow-list li {
	box-sizing: border-box;
	width: 100%;
	margin: 0 0 40px;
	padding: 0;
	position: relative;
	border: #d3edfb 10px solid;
	border-top-left-radius: 30px;
	border-bottom-right-radius: 30px;
}
.flow-list li img {
	width: 100%;
	height: auto;
	margin: 0;
	z-index: -1;
}
.flow-list li h3 {
	margin: -10px 0 0 -10px;
	font-size: 1.25rem;
	font-weight: bold;
	color: #00aeeb;
}
.flow-list li h3::before {
	counter-increment: flow_list;
	content: counter(flow_list);
	display: inline-block;
	box-sizing: border-box;
	width: 40px;
	height: 40px;
	margin: 0 7px 0 0;
	font-size: 2rem;
	font-weight: bold;
	line-height: 37px;
	color: #fff;
	text-align: center;
	vertical-align: bottom;
	background: linear-gradient(90deg, #59caf2 0%, #00aeeb 50%);
	border-radius: 100%;
}
.flow-list li p {
	margin: 10px 0;
	padding: 0 15px;
	text-align: justify;
}
.flow-list li p a {
	padding: 0.1em 0.3em 0.3em;
	font-weight: bold;
	text-decoration: none;
	color: #00aeeb;
	transition: all 0.2s;
	border-radius: 5px;
}
.flow-list li p a:hover {
	background: #d3edfb;
}
@keyframes flowanima1 {
	25%{ height:20px; bottom:-40px; opacity: 1; }
	29%{ height:15px; bottom:-60px; opacity: 0; }
	30%{ height:15px; bottom:-10px; opacity: 0; }
	35%{ height:20px; bottom:-40px; opacity: 1;}
}
.flow-list li::after {
	content: '';
	width: 80px;
	height: 20px;
	margin: 0;
	position: absolute;
	bottom: -40px;
	left: 50%;
	z-index: -1;
	background: url(../img/down_arrow.svg);
	transform: translateY(0) translateX(-50%);
	animation: flowanima1 6s ease-in-out infinite;
	animation-delay: 0s;
}
.flow-list li:nth-child(2):after {
	animation-delay: 0.25s;
}
.flow-list li:nth-child(3):after {
	animation-delay: 0.5s;
}
.flow-list li:nth-child(4):after {
	animation-delay: 0.75s;
}
.flow-list li:nth-child(5):after {
	animation-delay: 1s;
}
.flow-list li:nth-child(6):after {
	animation-delay: 1.25s;
}
.flow-list li:last-child:after {
	content: none;
}
@media screen and (min-width: 48em) { /* 768px md */
	.flow-list {
		margin-top: 50px;
	}
	.flow-list li {
		display: grid;
		grid-template-columns: 400px 1fr;
		grid-template-rows: 1fr 2fr;
		align-content: start;
	}
	.flow-list li img {
		grid-column: 1 / 2;
		grid-row: 1 / 3;
	}
	.flow-list li h3 {
		grid-column: 2 / 3;
		grid-row: 1 / 2;
		margin: 10px 10px 0 10px;
		font-size: 1.5rem;
	}
	.flow-list li h3::before {
		width: 60px;
		height: 60px;
		margin: 0 10px 0 0;
		font-size: 3rem;
		line-height: 57px;
		vertical-align: middle;
	}
	.flow-list li p {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
		align-self: start;
		padding: 0 20px;
	}
}

/* ===========================
10.料金・納期
============================== */
.price-intro {
	margin: 20px 0 20px;
	font-size: 1.25rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	color: #00aeeb;
}
.price-delivery {
	margin-top: 40px;
}
.price-list > div {
	margin: 0 0 20px;
}
.price-list h3,
.price-delivery h3 {
	padding: 0.2em 1em;
	font-size: 1rem;
	color: #fff;
	background: linear-gradient(90deg, #59caf2 0%, #00aeeb 30%);
}
.price-list p,
.price-delivery p {
	padding: 0.5em 1em;
	font-size: 1rem;
	font-weight: bold;
	border: #59caf2 2px solid;
	border-image: linear-gradient(to right, #b2e7f9, #00aeeb, #00aeeb) 1;
	border-top: none;
}
.price-list p span {
	font-size: 75%;
	font-weight: normal;
}
.price-note {
	padding: 0.5em 1em;
	font-size: 1rem;
	font-weight: bold;
	border: #00aeeb 5px solid;
	border-image: linear-gradient(to right, #b2e7f9, #00aeeb, #00aeeb) 1;
	background: #d3edfb;
}
.price-otayori {
	margin: 30px 0 15px;
	text-align: center;
}
.price-otayori a {
	display: inline-block;
	overflow: hidden;
	padding: 1em 2em;
	position: relative;
	font-size: 1rem;
	font-weight: bold;
	text-decoration: none;
	color: #fff;
	background: linear-gradient(90deg, #59caf2 0%, #00aeeb 50%);
	transition: all .3s ease-in-out;
	border: transparent 1px solid;
}
.price-otayori a:hover {
	color: #00aeeb;
	background-color: #0034d1;
	border: #00aeeb 1px solid;
}
.price-otayori a span {
	position: relative;
}
.price-otayori a::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 150%;
	height: 500%;
	content: '';
	transition: all .3s ease-in-out;
	transform: translateX(-73%) translateY(-71%) rotate(135deg);
	background: #0034d1;
}
.price-otayori a:hover::before {
	transform: translateX(-20%) translateY(-18%) rotate(135deg);
	background: #fff;
}
.price-otayori a img {
	margin-right: 0.5em;
	vertical-align: baseline;
	filter: brightness(0%) invert(100%);
	transition: all .3s ease-in-out;
	position: relative;
	top: 0;
	left: 0;
	animation: right-arrow 1.4s ease-in-out infinite;
}
.price-otayori a:hover img {
	filter: brightness(100%) invert(0%);
}
@media screen and (min-width: 48em) { /* 768px md */
	.price-intro {
		margin: 30px 0 50px;
		font-size: 1.75rem;
	}
	.price-list {
		display: flex;
		justify-content: space-between;
	}
	.price-delivery {
		margin-top: 70px;
	}
	.price-list > div {
		width: 48.5%;
		margin: 0 0 40px;
	}
	.price-list h3,
	.price-delivery h3 {
		padding: 0.5em 1em;
		font-size: 1.25rem;
	}
	.price-list p,
	.price-delivery p {
		padding: 1em 0.5em;
		font-size: 1.25rem;
	}
	.price-otayori {
		margin: 80px 0 60px;
	}
	.price-otayori a {
		padding: 1em 3em;
		font-size: 1.3125rem;
	}
}
@media screen and (min-width: 64em) { /* 1024px lg */
	.price-list h3,
	.price-delivery h3 {
		padding: 0.5em 1.5em;
	}
	.price-list p,
	.price-delivery p {
		padding: 1em 1.5em;
	}
	.price-note {
		padding: 1em 2em;
		font-size: 1.25rem;
	}
}

/* ===========================
11.よくある質問
============================== */
#qanda {
	counter-reset: qanda_list;
}
#qanda h2 {
	margin-bottom: 30px;
}
#qanda dl {
	margin: 0;
	padding: 5px 0 20px;
	border-top: #00aeeb 3px solid;
	border-image: linear-gradient(to right, #b2e7f9, #00aeeb, #00aeeb) 1;
	scroll-margin-top: 70px;
	position: relative;
}
#qanda dl::before {
	counter-increment: qanda_list;
	content: counter(qanda_list);
	display: inline-block;
	box-sizing: border-box;
	width: 28px;
	height: 28px;
	margin: 0;
	font-size: 1rem;
	font-weight: bold;
	line-height: 22px;
	color: #b2e7f9;
	text-align: center;
	vertical-align: bottom;
	background: #fff;
	border: #b2e7f9 3px solid;
	border-radius: 100%;
	position: absolute;
	top: -28px;
	left: -16px;
}
#qanda dl h3 {
	padding: 20px 0;
	font-size: 1rem;
	font-weight: bold;
}
#qanda dl dt {
	padding-left: 1.5em;
	font-size: 1rem;
	font-weight: bold;
	line-height: 1.3;
	position: relative;
}
#qanda dl dt::before {
	content: 'Q';
	display: inline-block;
	color: #00aeeb;
	position: absolute;
	top: 0;
	left: 0;
}
#qanda dl dt::after {
	content: '';
	width: 16px;
	height: 16px;
	border-left: #00aeeb 2px solid;
	border-bottom: #00aeeb 2px solid;
	position: absolute;
	top: 26px;
	left: 5px;
}
#qanda dl dd {
	margin: 0;
	position: relative;
}
#qanda dl dd::before {
	content: 'A';
	display: block;
	font-size: 1.25rem;
	font-weight: bold;
	line-height: 1.3;
	color: #e75297;
	position: absolute;
	top: 7px;
	left: 30px;
}
#qanda summary {
	margin: 0 0 0 30px;
	padding: 7px 40px 5px 20px;
	min-height: 40px;
	list-style: none;
	cursor: pointer;
	line-height: 1.5;
	font-size: 0.9375rem;
	position: relative;
}
#qanda details summary::-webkit-details-marker,
#qanda details summary::marker {
	display: none; 
}
@keyframes downarrow {
	0%{ height:0; top:35px; }
	7.5%{ height:20px; top:35px; }
	82.5%{ height:20px; top:35px; }
	100%{ height:0; top:55px; }
}
@keyframes downarrow_pc {
	0%{ height:0; top:55px; }
	7.5%{ height:20px; top:55px; }
	82.5%{ height:20px; top:55px; }
	100%{ height:0; top:75px; }
}
#qanda summary::before {
	content: '';
	display: block;
	width: 2px;
	height: 20px;
	background: #e75297;
	position: absolute;
	top: 35px;
	left: 5px;
	animation: downarrow 3s ease-in-out infinite;
	animation-delay: 0s;
}
#qanda dl:nth-child(3n) summary::before {
	animation-delay: 1s;
}
#qanda dl:nth-child(3n+1) summary::before {
	animation-delay: 2s;
}
#qanda details[ open ] summary::before {
	display: none;
	animation: none;
}
#qanda summary::after {
	content: '';
	display: block;
	width: 37px;
	height: 16px;
	background-image: url(../img/qanda_arrow.svg);
	background-size: contain;
	position: absolute;
	top: 20px;
	right: 0;
	transition: all 0.2s;
}
#qanda details[ open ] summary::after {
	transform: scaleY(-1);
}
@keyframes qanda-accordion {
	0% { opacity: 0; transform: translateY(-20px); }
	100% { opacity: 1; transform: none; }
}
.qanda-accordion {
	margin: -2px 0 0 35px;
	padding: 10px 0 15px 15px;
	border-left: #e75297 2px solid;
	animation: qanda-accordion 0.5s ease forwards;
}
@media screen and (min-width: 48em) { /* 768px md */
	#qanda h2 {
		margin-bottom: 70px;
	}
	#qanda dl {
		padding: 15px 0 30px 20px;
		scroll-margin-top: 100px;
	}
	#qanda dl::before {
		width: 40px;
		height: 40px;
		font-size:1.5rem;

		line-height: 32px;

		top: -21px;
		left: -30px;
	}
	#qanda dl h3 {
		font-size: 1.125rem;
	}
	#qanda dl dt {
		font-size: 1.25rem;
	}
	#qanda dl dt::after {
		width: 28px;
		height: 28px;
		top: 35px;
		left: 8px;
	}
	#qanda dl dd::before {
		top: 20px;
		left: 50px;
	}
	#qanda summary {
		min-height: auto;
		margin: 0 0 0 60px;
		padding: 25px 75px 20px 15px;
		line-height: 1.6;
		font-size: 1rem;
	}
	#qanda summary::before {
		top: 55px;
		left: -3px;
		animation: downarrow_pc 3s ease-in-out infinite;
	}
	#qanda details[ open ] summary::before {
		animation: none;
	}
	#qanda summary::after {
		width: 52px;
		height: 22px;
		top: 25px;
		right: 25px;
	}
	#qanda details:hover summary::after {
		top: 35px;
		filter: brightness(1.2);
	}
	.qanda-accordion {
		margin: -5px 0 0 57px;
		padding: 10px 20px 15px;
	}
}
@media screen and (min-width: 64em) { /* 1024px lg */
	#qanda dl dt {
		font-size: 1.5625rem;
	}
	#qanda dl dt::after {
		top: 43px;
		left: 10px;
	}
	#qanda dl dd::before {
		font-size: 1.5625rem;
	}
}

/* ===========================
12.注意事項
============================== */
#precaution h3 {
	margin: 30px 0 0;
	transform: scaleX(0.85);
	transform-origin: 0 0;
	font-size: 1.5rem;
	font-weight: bold;
	color: #00aeeb;
	scroll-margin-top: 70px;
}
#precaution p {
	margin: 20px 0 0;
}
.precaution-check {
	margin: 15px 0 0;
	padding: 0 0 15px;
	border: #00aeeb 2px solid;
	border-image: linear-gradient(to bottom right, #b2e7f9, #00aeeb, #00aeeb) 1;
	overflow: hidden;
}
.precaution-check img {
	display: block;
	margin: 0 0 0 auto;
}
.precaution-check h4 {
	margin: 20px 0 0;
	padding: 0 20px;
	font-size: 1.25rem;
	font-weight: bold;
}
.precaution-check p {
	margin: 0;
	padding: 0 20px;
}
@media screen and (min-width: 35.5em) { /* 568px sm */
	.precaution-check img {
		display: inline;
		width: 260px;
		margin: 0;
		float: right;
	}
}
@media screen and (min-width: 48em) { /* 768px md */
	#precaution h3 {
		margin: 80px 0 0;
		font-size: 2.5rem;
	}
	#precaution p {
		margin: 40px 0 0;
	}
	.precaution-check {
		margin: 30px 0 0;
	}
	.precaution-check img {
		width: auto;
	}
	.precaution-check h4 {
		font-size: 1.5rem;
	}
	.precaution-check p {
		padding: 0 30px;
	}
}

/* ===========================
13.特定商取引法に基づく表記
============================== */
.tokusyo-table {
	width: 100%;
	margin: 30px auto 0;
	border-right: #aaa 1px solid;
	border-bottom: #aaa 1px solid;
}
.tokusyo-table th,
.tokusyo-table td {
	padding: 0.3em 0.5em;
	font-size: 0.875rem;
	font-weight: normal;
	border-top: #aaa 1px solid;
	border-left: #aaa 1px solid;
}
.tokusyo-table th {
	width: 30%;
	text-align: center;
}
.tokusyo-table td {
	width: 70%;
}
@media screen and (min-width: 48em) { /* 768px md */
	.tokusyo-table {
		max-width: 900px;
		margin: 80px auto 0;
	}
	.tokusyo-table th,
	.tokusyo-table td {
		padding: 0.5em 1em;
		font-size: 1rem;
	}
}

/* ===========================
14.footer
============================== */
footer {
	margin: 60px 0 0;
	padding: 30px 0 0;
	border-top: #d3edfb 6px solid;
}
footer > div:first-child {
	padding: 100px 0 0;
	background: url(../img/digichive_logo.svg) center top no-repeat;
	background-size: initial;
}
footer nav ul {
	display: flex;
	flex-wrap: wrap;
}
footer nav ul li {
	position: relative;
	margin: 0 0 10px;
	padding: 0 9px;
	text-align: center;
	line-height: 1.1rem;
}
footer nav ul li a span {
	display: inline-block;
	width: 100%;
	padding: 0.6em 0;
	font-size: 1rem;
	font-weight: bold;
	text-decoration: none;
}
footer nav ul li a span:first-child {
	display: inline-block;
	position: relative;
	top: 0;
	color: #333;
	transition: .15s ease;
	opacity: 1;
}
footer nav ul li a:hover span:first-child {
	top: 0.5em;
	opacity: 0;
}
footer nav ul li a span:nth-child(2) {
	position: absolute;
	top: -0.5em;
	left: 0;
	width: 100%;
	color: #00aeeb;
	transition: .15s ease;
	opacity: 0;
}
footer nav ul li a:hover span:nth-child(2) {
	top: 0;
	opacity: 1;
}
footer > div > p {
	margin: 15px 0 0;
	text-align: center;
}
footer > div > p a {
	display: block;
	margin: 0 0 15px;
	text-decoration: none;
	color: #333;
	transition: all 0.3s;
}
footer > div > p a:hover {
	color: #0034d1;
}footer > div > p a:nth-child(2) {
	color: #0034d1;
}
footer > div > p a:nth-child(2):hover {
	color: #00aeeb;
}
footer a.nav-conv {
	max-width: 240px;
	margin: 0 auto;
	padding: 0.3em 0.7em;
	font-size: 0.875rem;
	font-weight: bold;
	color: #fff;
	background: linear-gradient(90deg, #fff 33.3%, #00aeeb 85%);
	background-size: 300%;
	background-position:99% 0;
	border: transparent 2px solid;
	border-radius: 1em;
	transition: all 0.4s;
}
footer a.nav-conv:hover,
footer a.nav-conv:active {
	color: #00aeeb;
	background-position:0% 0;
	border: #00aeeb 2px solid;
}
footer address {
	margin: 30px 0 0;
	padding: 20px 15px 30px;
	font-size: 0.75rem;
	font-style: normal;
	text-align: center;
	color: #fff;
	background: linear-gradient(to right, #b2e7f9 0%, #00aeeb 30%);
}
@media screen and (min-width: 48em) { /* 768px md */
	footer {
		margin: 140px 0 0;
	}
	footer nav ul {
		justify-content: center;
	}
	footer nav ul li {
		padding: 0 16px;
	}
	footer > div > p a {
		display: inline-block;
		margin: 0 30px 15px 0;
	}
	footer a.nav-conv {
		max-width: none;
		padding: 0.5em 1em;
		font-size: 0.875rem;
		border-radius: 1.5em;
	}
	footer address {
		margin: 40px 0 0;
		padding: 40px 15px 60px;
		font-size: 0.9375rem;
	}
}
@media screen and (min-width: 64em) { /* 1024px lg */
	footer > div:first-child {
		padding: 0;
		background: url(../img/digichive_logo.svg) left top no-repeat;
		background-size: initial;
	}
	footer nav ul {
		justify-content: flex-end;
	}
	footer > div > p {
		margin: 30px 0 0;
		text-align: right;
	}
	footer a.nav-conv {
		padding: 0.5em 1.5em;
		font-size: 1.125rem;
	}
}
