@charset "EUC-JP";

/*---------------------------------------
    ¥ê¥»¥Ã¥ÈCSS(ÊÔ½¸ÉÔÍ×)
----------------------------------------*/
html {
	overflow-y: scroll;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, legend, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
	word-break:break-all;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th {
	text-align: left;
}
q:before, q:after {
	content: '';
}
object, embed {
	vertical-align: top;
}
hr {
	display: none;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
}
img, abbr, acronym, fieldset {
	border: 0;
	vertical-align: bottom;
}
ul li {
	list-style-type: none;
}
a, label {
	cursor: pointer;
}
img {
	vertical-align: bottom;
	margin: 0;
	padding: 0;
	max-width: 100%;
	height: auto;
}
figure {
	display: inline-block;
	margin: 0;
}
input, textarea {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
	resize: none;
	/* -webkit-appearance: auto;
	-moz-appearance: auto;
	appearance: auto; */
}
button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none
}
/*---------------------------------------
	common
----------------------------------------*/

:root {
	--pink: #E73263;
	--blue: #005BAB;
	--link: #009EBE;
	--grey: #F2F4F5;
	--darkgray: #B4B4B4;
	--skyblue: #E6F6FF;
}

#header,
#contents {
	background-color: #fff;
	box-sizing: border-box;
	color: #333;
	font-family: 'Noto Sans JP', YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN', '¥Ò¥é¥®¥Î³Ñ¥´ ProN W3', '¥á¥¤¥ê¥ª', Meiryo, '¥Ò¥é¥®¥Î³Ñ¥´¥·¥Ã¥¯', 'Hiragino Sans', sans-serif;
	font-size: 16px;
	width: 100%;
}

#header a,
#contents a {
	text-decoration: none;
}

.txt_pink {
	color: var(--pink);
	font-weight: bold;
}

.txt_blue {
	color: var(--blue);
	font-weight: bold;
}

#contents .txt_link,
#contents .txt_link:visited {
	color: var(--link);
	font-weight: bold;
	text-decoration: underline;
}

#contents .txt_link:hover {
	color: var(--link);
	font-weight: bold;
	opacity: 0.8;
	text-decoration: underline;
}

.txt_bold {
	font-weight: bold;
}

.txt_small {
	font-size: 14px;
}

.txt_tax {
	font-size: 12px;
}

.tab {
	display: none;
}

.pc-only {
	display: none;
}

@media (min-width: 500px) and (max-width: 767px) {
	#form .sp-only {
		display: none;
	}
}

@media (max-width: 374px) {
	#form .sp-only {
		display: none;
	}
}

@media (min-width: 768px) {
	.txt_tax {
		font-size: 18px;
	}

	.txt_small {
		font-size: 32px;
	}

	.sp-only {
		display: none;
	}
}

@media (min-width: 1200px) {
	.br_ttl {
		display: none;
	}
}

/*---------------------------------------
	asstets_btn
----------------------------------------*/

#contents .btn-area {
	text-align: center;
	margin: 50px auto;
	max-width: 320px;
}

#contents .btn-area p {
	display: inline-block;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
	position: relative;
}

#contents .btn-area p::before,
#contents .btn-area p::after {
	content: "";
	background-color: #000;
	display: block;
	height: 1px;
	margin: 0px 2px 2px;
	position: absolute;
	top: 50%;
	width: 50px;
}

#contents .btn-area p::before {
	left: -40px;
	transform: rotate(-110deg);
}

#contents .btn-area p::after {
	right: -40px;
	transform: rotate(110deg);
}

#contents .btn-area .btn,
#header .btn,
#form .submit.btn {
	background-color: var(--pink);
	border-radius: 50px;
	display: block;
	color: #fff;
	font-weight: bold;
	padding: 10px 30px;
	position: relative;
	transition: all 0.3s;
}

#contents .btn-area .btn::after,
#header .btn::after,
#form .submit.btn::after {
	border-color: transparent transparent transparent #fff;
	border-style: solid;
	border-width: 8px 0 8px 8px;
	content: "";
	display: inline-block;
	height: 0;
	margin: 0 auto;
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s;
	width: 0;
}

#contents .btn-area .btn:hover,
#header .btn:hover {
	opacity: 0.8;
	transition: all 0.3s;
}

#form .submit.btn:hover {
	background: #D10A27;
	transition: all 0.3s;
}

#contents .btn-area .btn:hover::after,
#header .btn:hover::after,
#form .submit.btn:hover::after {
	right: 15px;
	transition: all 0.3s;
}

#form .submit.btn {
	font-size: 16px;
	margin: 30px auto 0;
	max-width: 100%;
	padding: 10px 40px;
}

@media (max-width: 374px) {
	#form .submit.btn {
		padding: 10px 35px 10px 15px;
	}
}

@media (min-width: 768px) {
	#contents .btn-area {
		margin: 100px auto;
		max-width: 900px;
	}

	#contents .btn-area p {
		font-size: 26px;
		margin-bottom: 23px;
	}

	#contents .btn-area .br_btn {
		display: none;
	}

	#contents .btn-area p::before {
		left: -60px;
		transform: rotate(-120deg);
	}

	#contents .btn-area p::after {
		right: -60px;
		transform: rotate(120deg);
	}

	#contents .btn-area .btn,
	#form .submit.btn {
		font-size: 32px;
		line-height: 1.25;
		padding: 25px 0;
		margin: 0 auto;
	}

	#contents .btn-area .btn::after,
	#form .submit.btn::after {
		border-width: 15px 0 15px 20px;
		right: 50px;
	}

	#contents .btn-area .btn:hover::after,
	#form .submit.btn:hover::after {
		right: 30px;
	}

	#form .submit.btn {
		width: 100%;
		line-height: 0.938;
		margin-top: 40px;
		max-width: 700px;
	}

	@media (max-width: 1200px) {
		#contents .btn-area .btn {
			font-size: 26px;
		}

		#contents .btn-area {
			max-width: 700px;
		}

		#contents .btn-area p {
			font-size: 20px;
		}

		#form .submit.btn {
			font-size: 25px;
		}
	}
}

/*---------------------------------------
	header
----------------------------------------*/
#header {
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	height: 70px;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}

#header .header_inner {
	display: flex;
	font-weight: bold;
	justify-content: space-between;
	margin: 0 10px;
	padding: 10px 0;
}

#header .header_inner .top {
	display: flex;
	align-items: center;
}

#header .header_inner img {
	width: 110px;
	align-self: center; 
}

#header .header_btn {
	align-items: flex-end;
	display: flex;
	flex-flow: column nowrap;
}

#header .header_btn p {
	font-size: 12px;
	margin-bottom: 5px;
}

#header .header_btn .btn {
	flex-shrink: 0;
	font-size: 11px;
	padding: 6px 25px;
}

#header .header_btn .btn::after {
	border-width: 5px 0 5px 8px;
	right: 10px;
}

#header .header_btn .btn:hover::after {
	right: 5px;
}

@media (max-width: 374px) {
	#header .header_inner img {
		width: 75px;
	}
}

@media (min-width: 768px) {
	#header {
		height: 90px;
		padding: 15px 0;
	}

	#header .header_inner {
		margin: 0 auto;
		max-width: 1200px;
		padding: 6px 0;
	}

	#header .header_inner img {
		width: 228px;
		margin-left: 5px;
	}

	#header .header_btn {
		align-items: center;
		flex-flow: row nowrap;
	}

	#header .header_btn p {
		font-size: 22px;
		margin-bottom: 0;
		margin-right: 15px;
	}

	#header .header_btn .btn {
		font-size: 20px;
		padding: 10px 40px;
		margin-right: 5px;
	}

	#header .header_btn .btn::after {
		border-width: 8px 0 8px 12px;
		right: 20px;
	}

	#header .header_btn .btn:hover::after {
		right: 10px;
	}

	#mv .mv_inner .mv_ttl {
		display: flex;
		flex-flow: column nowrap;
		align-items: center;
	}

	@media (max-width: 999px) {
		#header .header_inner img {
			width: 200px;
		}

		.tab {
			display: block;
		}

		#header .header_btn p {
			font-size: 18px;
		}
	}
}

/*---------------------------------------
	contents
----------------------------------------*/

#contents {
	padding-top: 70px;
}

#sec_01,
#sec_03,
#sec_04,
#sec_06 {
	background-color: var(--grey);
}

#form {
	background-color: var(--blue);
}

#contents .sec_ttl,
#contents .form_ttl {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	margin: 50px 0 30px;
}

#contents .form_ttl {
	display: block;
	color: #fff;
}

#contents .sec_container {
	max-width: 100%;
	margin: 0 auto;
	padding: 0 28px;
}

@media (min-width: 768px) {
	#contents {
		padding-top: 64px;
	}

	#contents .sec_ttl {
		font-size: 54px;
		margin: 100px 0 80px;
	}

	#sec_06 .sec_ttl,
	#form .form_ttl {
		font-size: 48px;
	}

	#contents .sec_container {
		max-width: 1200px;
		/* padding-bottom: 50px; */
	}

	#contents .sec_container.sec_small {
		max-width: 1000px;
	}

	@media (max-width: 1200px) {
		#contents .sec_container {
			max-width: 768px;
			margin: 0 auto;
		}
	}
}

/*---------- mv ----------*/

#mv {
	background: url(../img/mv_bg_sp.webp) no-repeat center center/cover;
}

#mv .mv_inner {
	align-items: center;
	display: flex;
	flex-flow: column nowrap;
	padding: 30px 0 25px;
}

#mv .mv_inner h1 {
	color: #fff;
	font-size: 22px;
	margin-bottom: 24px;
	text-align: center;
	text-shadow: 1px 2px 2px #011656;
}

#mv .mv_inner .mv_lead {
	background: linear-gradient(transparent 80%, var(--pink) 50%);
	font-size: 26px;
	display: inline-block;
	margin-bottom: 10px;
}

#mv .mv_inner figure img {
	max-width: 280px;
}

#mv .mv_inner .sp-only {
	align-self: flex-end;
	margin: 30px 25px 0 0;
	max-width: 80px;
}

@media (min-width: 768px) {
	#mv {
		background: url(../img/mv_bg_pc.webp) no-repeat center center/cover;
		padding: 70px 0 45px;
	}

	#mv .mv_inner {
		flex-flow: row nowrap;
		justify-content: center;
	}

	#mv .mv_inner h1 {
		font-size: 40px;
		margin-bottom: 45px;
		text-shadow: 1px 2px 3px #011656;
	}

	#mv .mv_inner .mv_lead {
		background: linear-gradient(transparent 80%, var(--pink) 60%);
		font-size: 48px;
		margin-bottom: 25px;
	}

	#mv .mv_inner figure {
		flex-shrink: 10;
	}

	#mv .mv_inner figure img {
		max-width: 640px;
	}

	.pc-only {
		display: inline-block;
		max-width: 320px;
	}

	@media (max-width: 1200px) {
		#mv .mv_inner h1 {
			font-size: 32px;
		}

		#mv .mv_inner figure img {
			max-width: 440px;
		}
	}

	@media (max-width: 999px) {
		.pc-only {
			max-width: 200px;
		}

		#mv .mv_inner h1 {
			font-size: 26px;
		}

		#mv .mv_inner .mv_lead {
			background: linear-gradient(transparent 80%, var(--pink) 60%);
			font-size: 32px;
			margin-bottom: 25px;
		}

		#mv .mv_inner figure img {
			max-width: 400px;
		}
	}
}

/*---------- sec_01 ----------*/

#sec_01 {
	position: static;
	overflow: hidden;
	padding-bottom: 30px;
}

#sec_01::after {
	border-color: var(--grey) transparent transparent;
	border-style: solid;
	border-width: 30px 75px 0;
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	transform: translate(-50%, 100%);
}

#sec_01 .trouble {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
	margin: 0 auto;
	max-width: 500px;
}

#sec_01 .trouble li figure,
#sec_01 .trouble li p {
	position: relative;
	margin: 0;
}

#sec_01 .trouble li figure img {
	display: block;
	height: auto;
	width: 45px;
}

#sec_01 .trouble li {
	background: url(../img/bg_sec02.webp) no-repeat 50%/contain;
	box-sizing: border-box;
	display: block;
	flex: 0 0 150px;
	font-size: 14px;
	font-weight: bold;
	height: 150px;
	text-align: center;
	padding-top: 15px;
	position: relative;
	margin-bottom: 15px;
}

@media (max-width: 374px) {
	#sec_01 .trouble {
		justify-content: center;
	}

	#sec_01 .trouble li {
		flex: 0 0 130px;
		padding-top: 20px;
	}
}

@media (min-width: 768px) {
	#sec_01::after {
		border-width: 80px 150px 0;
		transform: translate(-50%, 15%);
	}

	#sec_01 .trouble {
		max-width: 870px;
	}

	#sec_01 .trouble li figure img {
		width: 80px;
	}

	#sec_01 .trouble li {
		flex: 0 0 250px;
		font-size: 22px;
		height: 250px;
		padding-top: 30px;
		margin-bottom: 40px;
	}

}

/*---------- sec_02 ----------*/

#sec_02 #sec_02 .resolution {
	display: flex;
	flex-flow: column nowrap;
}

#sec_02 .resolution li {
	display: flex;
	flex-flow: column-reverse nowrap;
}

#sec_02 .resolution li:last-child {
	margin-top: 40px;
}

#sec_02 .resolution figure {
	background: #fff;
	border-radius: 3px;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
	margin: 0 35px;
	max-width: 500px;
}

#sec_02 .resolution h3 {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.05em;
	margin-bottom: 15px;
}

#sec_02 .resolution .txt-area p {
	padding-bottom: 15px;
}

#sec_02 .resolution .txt-area p:last-child {
	margin-bottom: 5px;
}

@media (min-width: 768px) {
	#sec_02 .resolution li {
		flex-flow: row nowrap;
		justify-content: space-evenly;
	}

	#sec_02 .resolution li:last-child {
		flex-flow: row-reverse nowrap;
		margin-top: 60px;
	}

	#sec_02 .resolution figure {
		margin: 0;
		max-width: 380px;
	}

	#sec_02 .resolution .txt-area {
		font-size: 20px;
		line-height: 1.75;
		margin: 0;
		max-width: 500px;
	}

	#sec_02 .resolution .txt-area h3 {
		font-size: 26px;
		letter-spacing: 0em;
		line-height: 1.5;
		margin-bottom: 15px;
	}

	@media (max-width: 1200px) {
		#sec_02 .resolution .txt-area {
			font-size: 16px;
			line-height: 1.5;
			max-width: 300px;
		}

		#sec_02 .resolution .txt-area h3 {
			font-size: 20px;
			line-height: 1.3;
			margin-bottom: 15px;
		}
	}
}

/*---------- sec_03 ----------*/

#sec_03 {
	padding: 50px 0;
}

#sec_03 .sec_ttl {
	margin-top: 0;
}

#sec_03 .support {
	background: #fff;
	border-radius: 6px;
	padding: 20px;
	position: relative;
	margin-bottom: 20px;
}

#sec_03 .support.retail {
	border: 4px solid var(--blue);
	border-radius: 6px;
}

#sec_03 .support:last-child {
	margin-bottom: 0;
}

#sec_03 .support::before {
	color: var(--skyblue);
	content: "01";
	position: absolute;
	font-size: 60px;
	font-weight: bold;
	left: 20px;
	top: 0;
}

#sec_03 .support:nth-of-type(2)::before {
	content: "02";
}

#sec_03 .support:nth-of-type(3)::before {
	content: "03";
}

#sec_03 .support:nth-of-type(4)::before {
	content: "04";
}

#sec_03 .support h3 {
	font-size: 24px;
	text-align: center;
}

#sec_03 .support:nth-child(2) h3 {
	padding-left: 20px;
}

#sec_03 .support .catch {
	font-size: 18px;
	font-weight: bold;
	margin-top: 10px;
	text-align: center;
}

#sec_03 .support h3 .tool-icon {
	display: inline-block;
	position: relative;
}

#sec_03 .support h3 .tool-icon::before {
	background: url(../img/icon_retail.webp) no-repeat center/contain;
	content: "";
	display: block;
	height: 30px;
	position: absolute;
	width: 30px;
	top: 15%;
	left: -32px;
}

#sec_03 .support:nth-of-type(2) h3 .tool-icon::before {
	background: url(../img/icon_aa.webp) no-repeat center/contain;
}

#sec_03 .support:nth-of-type(3) h3 .tool-icon::before {
	background: url(../img/icon_negotiate.webp) no-repeat center/contain;
}

#sec_03 .support:nth-of-type(4) h3 .tool-icon::before {
	background: url(../img/icon_stock.webp) no-repeat center/contain;
}

#sec_03 .support.retail h3 {
	position: relative;
}

#sec_03 .support.retail h3::after {
	background: url(../img/goonet_logo.webp) no-repeat center/contain;
	content: "";
	display: block;
	height: 16px;
	position: absolute;
	width: 50px;
	top: 30%;
	right: 35px;
}

#sec_03 .support_container {
	display: flex;
	flex-flow: column nowrap;
	margin-top: 20px;
	position: relative;
}

#sec_03 .support .description {
	font-size: 14px;
	line-height: 1.5;
}

#sec_03 .support .description p {
	margin-bottom: 20px;
}

#sec_03 .support .description p:last-child {
	margin-bottom: 0;
}

#sec_03 .support .relation {
	display: flex;
	flex-flow: column nowrap;
	align-items: flex-start;
	margin-top: 20px;
}

#sec_03 .support .relation img {
	width: 140px;
	margin-bottom: 2px;
}

#sec_03 .support .figure {
	margin-top: 20px;
}

#sec_03 .support .figure img {
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

#sec_03 .support figcaption {
	font-size: 12px;
	margin-left: 1em;
	margin-top: 5px;
	position: relative;
}

#sec_03 .support figcaption::before {
	border-width: 5px 0 5px 8px;
	border-style: solid;
	border-color: transparent transparent transparent #333;
	content: "";
	display: block;
	height: 0;
	left: -.75em;
	position: absolute;
	top: .5em;
	transform: rotate(30deg);
	width: 0;
}

@media (max-width: 374px) {
	#sec_03 .support.retail h3::after {
		right: -15px;
	}
}

@media (min-width: 768px) {
	#sec_03 {
		padding: 100px 0;
	}

	#sec_03 .support {
		padding: 40px 100px;
		margin-bottom: 60px;
	}

	#sec_03 .support:last-child {
		margin-bottom: 0;
	}

	#sec_03 .support::before {
		font-size: 150px;
		left: 100px;
		top: 0;
	}

	#sec_03 .support h3 {
		font-size: 48px;
	}

	#sec_03 .support .catch {
		font-size: 24px;
	}

	#sec_03 .support h3 .tool-icon::before {
		height: 60px;
		width: 60px;
		top: 10%;
		left: -70px;
	}

	#sec_03 .support.retail h3::after {
		height: 25px;
		width: 75px;
		top: 35%;
		right: 32%;
	}

	#sec_03 .support_container {
		display: flex;
		flex-flow: row nowrap;
		margin-top: 40px;
		justify-content: space-between;
	}

	#sec_03 .support .description {
		font-size: 20px;
		line-height: 1.75;
		width: 500px;
	}

	#sec_03 .support .relation {
		align-items: flex-start;
		flex-flow: row nowrap;
		margin-top: 25px;
	}

	#sec_03 .support .relation img {
		padding-top: 10px;
	}

	#sec_03 .support .relation p {
		font-size: 18px;
	}

	#sec_03 .support .figure {
		margin-top: 0;
	}

	#sec_03 .support .figure figure {
		max-width: 415px;
	}

	#sec_03 .support figcaption {
		font-size: 18px;
	}

	#sec_03 .support figcaption::before {
		border-width: 8px 0 8px 14px;
		left: -.85em;
		top: .5em;
	}

	@media (max-width: 1200px) {
		#sec_03 .support {
			padding: 40px 50px;
			margin-bottom: 60px;
		}

		#sec_03 .support.retail h3::after {
			right: 18%;
		}

		#sec_03 .support::before {
			font-size: 100px;
			left: 50px;
			top: 0;
		}

		#sec_03 .support .description {
			font-size: 16px;
			line-height: 1.5;
			padding-right: 20px;
			width: 800px;
		}

		#sec_03 .support figcaption {
			font-size: 14px;
		}
	}
}

/*---------- sec_04 ----------*/

#sec_04 {
	padding: 50px 0;
}

#sec_04 .sec_ttl {
	margin-top: 0;
}

#sec_04 .lead {
	font-size: 14px;
	margin-bottom: 30px;
	text-align: left;
}

#sec_04 .scene {
	align-items: center;
	background: #fff;
	border-radius: 6px;
	display: flex;
	flex-flow: column nowrap;
	margin-bottom: 20px;
	padding: 15px 20px 20px;
	position: relative;
}

#sec_04 .scene:last-child {
	margin-bottom: 0;
}

#sec_04 .scene .scene_container {
	align-items: center;
	display: flex;
	flex-flow: column nowrap;
	position: relative;
}

#sec_04 .scene_container::before {
	color: var(--skyblue);
	content: "SCENE01";
	position: absolute;
	font-size: 30px;
	font-weight: bold;
	right: 0;
	bottom: -15px;
}

#sec_04 .scene:nth-of-type(2) .scene_container::before {
	content: "SCENE02";
}

#sec_04 .scene:nth-of-type(3) .scene_container::before {
	content: "SCENE03";
}

#sec_04 .scene figure img {
	height: auto;
	width: 60px;
}

#sec_04 .scene .scene_container dt {
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

#sec_04 .scene .scene_container dd {
	font-size: 14px;
	line-height: 1.5;
	position: relative;
}

#sec_04 .scene:nth-of-type(2) dt {
	padding-right: 2em;
}

#sec_04 .scene:nth-of-type(2) dt::after {
	background: url(../img/goonet_logo.webp) no-repeat center/contain;
	content: "";
	display: block;
	height: 16px;
	position: absolute;
	width: 50px;
	top: 20%;
	right: -20px;
}

@media (min-width: 768px) {
	#sec_04 {
		padding: 100px 0;
	}

	#sec_04 .sec_ttl {
		margin-bottom: 20px;
	}

	#sec_04 .lead {
		font-size: 18px;
		margin-bottom: 45px;
		text-align: center;
	}

	#sec_04 .scene {
		align-items: center;
		flex-flow: row nowrap;
		margin-bottom: 20px;
		padding: 28px 35px;
		position: relative;
	}

	#sec_04 .scene .scene_container {
		align-items: flex-start;
	}

	#sec_04 .scene_container::before {
		font-size: 60px;
		right: -20px;
		bottom: -25px;
	}

	#sec_04 .scene figure img {
		height: auto;
		width: 105px;
	}

	#sec_04 .scene .scene_container {
		flex-grow: 1;
		padding-left: 35px;
	}

	#sec_04 .scene .scene_container dt {
		text-align: left;
		font-size: 28px;
		margin-bottom: 5px;
	}

	#sec_04 .scene .scene_container dd {
		font-size: 18px;
		font-feature-settings: "palt";
		letter-spacing: 0.06em;
		line-height: 1.4;
	}

	#sec_04 .scene:nth-of-type(2) dt::after {
		height: 18px;
		position: absolute;
		width: 55px;
		top: 30%;
		right: -10px;
	}
}

/*---------- sec_05 ----------*/

#sec_05 .price_container {
	display: flex;
	flex-flow: column nowrap;
}

#sec_05 .price-card {
	background: var(--skyblue);
	border: 2px solid var(--blue);
	border-radius: 6px;
	margin-bottom: 20px;
}

#sec_05 .price-card:last-child {
	margin-bottom: 0;
}

#sec_05 .price-card .pack,
#sec_05 .price-card .price {
	background: var(--blue);
	font-size: 24px;
	font-weight: bold;
	line-height: 1.8;
	text-align: center;
}

#sec_05 .price-card .price.txt_pink {
	font-size: 28px;
}

#sec_05 .price-card .pack {
	color: #fff;
}

#sec_05 .price-card .price {
	background: #fff;
}

#sec_05 .price-card:last-child {
	background: #FFF1F6;
	border: 2px solid var(--pink);
}

#sec_05 .price-card:last-child .pack {
	background: var(--pink);
}

#sec_05 .price-card ul {
	display: flex;
	flex-flow: row wrap;
	padding: 10px 15px 15px;
}

#sec_05 .price-card li {
	flex: 0 0 calc(50% - 1em);
	position: relative;
	padding-left: 1em;
}

#sec_05 .price-card li::before {
	content: "";
	position: absolute;
	top: .65em;
	left: 5px;
	width: 4px;
	height: 4px;
	background-color: #333;
	border-radius: 50%;
}

#sec_05 .price-card li.retail {
	position: relative;
}

#sec_05 .price-card li.retail::after {
	background: url(../img/goonet_logo.webp) no-repeat center/contain;
	content: "";
	display: block;
	height: 15px;
	position: absolute;
	width: 45px;
	top: .3em;
	right: 1em;
}

#sec_05 .note {
	margin-top: 5px;
}

#sec_05 .note li {
	font-size: 10px;
	padding-left: 1em;
	position: relative;
}

#sec_05 .note li::before {
	content: "";
	position: absolute;
	top: .8em;
	left: .3em;
	width: 3px;
	height: 3px;
	background-color: #333;
	border-radius: 50%;
}

#sec_05 .pr-catch {
	font-size: 20px;
	text-align: center;
	margin: 30px auto -20px;
}

@media (max-width: 374px) {
	#sec_05 .price-card li {
		font-size: 14px;
	}

	#sec_05 .price-card li.retail::after {
		width: 40px;
		right: 0.8em;
	}
}

@media (min-width: 768px) {
	#sec_05 .sec_ttl {
		margin-bottom: 60px;
	}

	#sec_05 .price_container {
		flex-flow: row nowrap;
		justify-content: space-between;
	}

	#sec_05 .price-card {
		margin-bottom: 0;
		width: 310px;
	}

	#sec_05 .price-card {
    border: 3px solid var(--blue);
}

	#sec_05 .price-card:last-child {
    border: 3px solid var(--pink);
}

	#sec_05 .price-card .pack {
		font-size: 32px;
	}

	#sec_05 .price-card .price {
		font-size: 42px;
	}

	#sec_05 .price-card .price.txt_pink {
		font-size: 54px;
		line-height: 1.4;
	}

	#sec_05 .price-card ul {
		flex-flow: column nowrap;
		padding: 20px 60px;
	}

	#sec_05 .price-card li {
		flex: 0 0 100%;
		font-size: 24px;
		padding-left: .5em;
	}

	#sec_05 .price-card li::before {
		top: .65em;
		left: 0;
		width: 5px;
		height: 5px;
	}

	#sec_05 .price-card li.retail::after {
		height: 18px;
		width: 55px;
		top: .35em;
		right: .8em;
	}

	#sec_05 .note {
		margin-top: 15px;
	}

	#sec_05 .note li {
		font-size: 18px;
	}

	#sec_05 .note li::before {
		top: .75em;
	}

	#sec_05 .pr-catch {
		font-size: 30px;
		text-align: center;
		margin: 60px auto -65px;
	}

	@media (max-width: 999px) {
		#sec_05 .price_container {
			align-items: center;
			flex-flow: column nowrap;
		}

		#sec_05 .price-card {
			width: 700px;
			margin-bottom: 10px;
		}

		#sec_05 .price-card ul {
			flex-flow: row wrap;
		}

		#sec_05 .price-card li {
			flex: 0 0 calc(50% - 1em);
		}

		#sec_05 .price-card li.retail::after {
			right: 4.5em;
		}

		#sec_05 .note {
			width: 700px;
			margin: 15px auto 0;
		}
	}
}

/*---------- sec_06 ----------*/

#sec_06 {
	padding: 50px 0;
}

#sec_06 .sec_ttl {
	margin-top: 0;
}

#sec_06 .qa {
	background: #fff;
	border-radius: 5px;
	font-size: 14px;
	font-feature-settings: "palt";
	letter-spacing: .04em;
	margin-bottom: 20px;
	padding: 18px 15px 15px;
	position: relative;
}

#sec_06 .qa::before {
	color: var(--skyblue);
	content: "Q";
	position: absolute;
	font-family: 'Jost', 'Noto Sans JP', YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN', '¥Ò¥é¥®¥Î³Ñ¥´ ProN W3', '¥á¥¤¥ê¥ª', Meiryo, '¥Ò¥é¥®¥Î³Ñ¥´¥·¥Ã¥¯', 'Hiragino Sans', sans-serif;
	font-size: 28px;
	font-weight: bold;
	left: 1rem;
	top: .5rem;
}

#sec_06 .qa:last-child {
	margin-bottom: 0;
}

#sec_06 .qa dt {
	border-bottom: 3px solid var(--skyblue);
	margin-bottom: 15px;
	padding: 0 0 10px 2em;
	position: relative;
}

#sec_06 .qa dd {
	letter-spacing: 0.03em;
	padding: 0 0.5em;
}

@media (min-width: 768px) {
	#sec_06 {
		padding: 60px 0 120px;
	}

	#sec_06 .sec_ttl {
		margin-top: 0;
		margin-bottom: 60px;
	}

	#sec_06 .qa {
		margin: 0 auto 20px;
		padding: 25px 90px 30px;
	}

	#sec_06 .qa::before {
		font-size: 48px;
		font-weight: bold;
		left: 2.5rem;
	}

	#sec_06 .qa dt {
		font-size: 20px;
		margin-bottom: 15px;
		padding: 0 0 10px 0.5em;
		position: relative;
	}

	#sec_06 .qa dd {
		letter-spacing: 0;
		font-size: 18px;
	}

	@media (max-width: 1200px) {
		#sec_06 .qa {
			margin: 0 30px 20px;
			max-width: 700px;
		}
	}
}

/*---------- form ----------*/

#form {
	padding: 50px 0 85px;
}

#form .form_ttl {
	margin-top: 0;
	display: block;
}

#form .form_lead {
	color: #fff;
	font-size: 14px;
	margin-bottom: 30px;
	text-align: center;
}

#form .form_lead p:first-child {
	margin-bottom: 10px;
}

#form form {
	background: #fff;
	border-radius: 3px;
	box-sizing: border-box;
	font-size: 14px;
	padding: 20px 15px 50px;
}

#form .required {
	background: var(--pink);
	border-radius: 3px;
	color: #fff;
	font-size: 12px;
	font-weight: normal;
	margin-left: 5px;
	padding: 2px 3px;
}

#form label {
	display: block;
}

#form .parts_ttl {
	font-size: 16px;
	font-weight: bold;
	margin: 20px 0 8px;
}

#form form fieldset input,
#form form fieldset label.form_checkbox,
#form form fieldset label>input,
#form form fieldset.privacy label,
#form form textarea {
	background: #fff;
	border: solid 1px var(--darkgray);
	border-radius: 5px;
	box-sizing: border-box;
	font-feature-settings: "palt";
	height: 50px;
	padding: 10px 14px;
	width: 100%;
}

#form form textarea {
	height: 150px;
}

#form form input[type="checkbox"] {
	border: solid 1px #333;
	border-radius: 2px;
	box-sizing: border-box;
	display: block;
	flex-shrink: 0;
	height: 20px;
	width: 20px;
	padding: 0;
	position: relative;
}

#form form input[type="checkbox"]:checked {
	accent-color: var(--pink);
}

#form form input:focus,
#form form textarea:focus {
	border: solid 2px var(--blue);
	border-radius: 5px;
}

#form .contact .form_checkbox,
#form .privacy label {
	margin-bottom: 15px;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
}

#form .contact .form_checkbox input,
#form .privacy label input {
	margin: 0 8px 0 0;
}

#form .contact .form_checkbox:last-child,
#form .privacy label {
	margin-bottom: 0;
}

#form input::placeholder {
	color: var(--darkgray);
	opacity: 0.8;
}

#form input:-ms-input-placeholder {
	color: var(--darkgray);
	opacity: 0.8;
}

#form textarea::placeholder {
	color: var(--darkgray);
	font-family: 'Noto Sans JP', YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN', '¥Ò¥é¥®¥Î³Ñ¥´ ProN W3', '¥á¥¤¥ê¥ª', Meiryo, '¥Ò¥é¥®¥Î³Ñ¥´¥·¥Ã¥¯', 'Hiragino Sans', sans-serif;
	opacity: 0.8;
}

#form textarea:-ms-textarea-placeholder {
	color: var(--darkgray);
	font-family: 'Noto Sans JP', YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN', '¥Ò¥é¥®¥Î³Ñ¥´ ProN W3', '¥á¥¤¥ê¥ª', Meiryo, '¥Ò¥é¥®¥Î³Ñ¥´¥·¥Ã¥¯', 'Hiragino Sans', sans-serif;
	opacity: 0.8;
}

#form .privacy {
	margin: 20px 0 5px;
}

#form .privacy_link {
	font-size: 12px;
}

@media (min-width: 768px) {
	#form {
		padding: 60px 0 120px;
	}

	#form .form_lead {
		font-size: 20px;
		margin-bottom: 60px;
	}

	#form .form_lead p:first-child {
		margin-bottom: 20px;
	}

	#form form {
		font-size: 20px;
		padding: 50px 125px;
	}

	#form .required {
		color: #fff;
		font-size: 16px;
		padding: 0 10px;
	}

	#form .parts_ttl {
		font-size: 20px;
		margin: 30px 0 8px;
	}

	#form form fieldset input,
	#form form fieldset label.form_checkbox,
	#form form fieldset label>input,
	#form form fieldset.privacy label,
	#form form textarea {
		padding: 10px 14px;
		width: 100%;
	}

	#form form textarea {
		height: 150px;
	}

	#form .contact .form_checkbox {
		font-size: 18px;
		letter-spacing: 0.06em;
	}

	#form .privacy {
		margin: 20px 0 5px;
	}

	#form .privacy_link {
		font-size: 18px;
	}

	@media (max-width: 999px) {
		#form form {
			font-size: 20px;
			padding: 50px;
			margin: 0 50px;
		}
	}
}

/*---------------------------------------
	error
----------------------------------------*/

#form form .parts_ttl.error {
	margin-bottom: 0;
}

#form form .error_msg {
	color: var(--pink);
	display: block;
	font-size: 12px;
	font-weight: bold;
	margin-bottom: 5px;
}

#form form fieldset label.error+input,
#form form fieldset label.form_checkbox.error,
/* #form form fieldset label.error input, */
#form form fieldset label.error+p+input,
#form form fieldset.privacy .error,
#form form textarea.error {
	background: #F9C2D3;
	border: solid 1px var(--pink);
}

#form form .caution {
	color: var(--pink);
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	margin: 5px 0 -20px ;
}

@media (min-width: 768px) {
	#form form .parts_ttl.error {
		display: inline-block;
		float: left;
		margin-bottom: 8px;
	}

	#form form .error_msg {
		display: inline-block;
		font-size: 16px;
		margin-top: 35px;
		margin-bottom: 0;
		padding-left: 5px;
	}
	#form form .privacy .error_msg {
		margin-top: 0;
	}

	#form form .caution {
		font-size: 18px;
		margin: 30px 0 -10px ;
	}	
}

/*---------------------------------------
	confirm
----------------------------------------*/

#form .confirm-area {
	background: var(--grey);
	border-radius: 5px;
	padding: 15px;
}

#form .confirm-area p {
	line-height: 1.5;
}

#form .confirm-area li {
	margin-bottom: 5px;
}

#form .confirm-area li:last-child {
	margin-bottom: 0;
}

#form .back_btn {
	background: #fff;
	border: solid 3px var(--blue);
	border-radius: 50px;
	display: inline-block;
	color: var(--blue);
	font-weight: bold;
	padding: 20px 25px 20px 30px;
	position: relative;
	transition: all 0.3s;
}

#form .back_btn::after {
	border-color: transparent var(--blue) transparent transparent;
	border-style: solid;
	border-width: 6px 6px 6px 0;
	content: "";
	display: inline-block;
	height: 0;
	margin: 0 auto;
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s;
	width: 0;
}

#form .back_btn:hover {
	background: var(--skyblue);
	transition: all 0.3s;
}

#form .back_btn:hover::after {
	left: 7px;
	transition: all 0.3s;
}

#form .confirm_btn {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-around;
	margin-top: 30px;
}

#form .btn.confirm-btn {
	margin: 0;
	padding: 10px 35px 10px 30px;
	width: auto;
}

#form .btn.confirm-btn::after {
	border-width: 6px 0 6px 6px;
	right: 14px;
}

#form .btn.confirm-btn:hover::after {
	right: 9px;
}

@media (min-width: 768px) {
	#form .confirm-area {
		padding: 10px 20px;
	}

	#form .back_btn {
		flex-shrink: 0;
		font-size: 24px;
		padding: 20px 65px;
	}

	#form .back_btn::after {
		border-width: 10px 15px 10px 0;
		left: 25px;
		top: 50%;
	}

	#form .back_btn:hover::after {
		left: 15px;
	}

	#form .confirm_btn {
		justify-content: space-evenly;
		margin: 40px auto 0;
		max-width: 800px;
	}

	#form .btn.confirm-btn {
		flex-shrink: 0;
		margin: 0;
		padding: 15px 60px;
	}

	#form .btn.confirm-btn::after {
		border-width: 10px 0 10px 15px;
		right: 25px;
	}

	#form .btn.confirm-btn:hover::after {
		right: 15px;
	}

	@media (max-width: 1200px) {
		#form .back_btn {
			font-size: 18px;
			padding: 20px 40px 20px 50px;
		}	
	}
}

/*---------------------------------------
	sent
----------------------------------------*/
#form .sent_container .sent_finished {
	color: #fff;
	display: block;
	position: relative;
	text-align: center;
	text-decoration: underline;
	transition: all 0.3s;
}

#form .sent_container .sent_finished span {
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	line-height: 1;
	margin-right: 5px;
	position: relative;
	width: 1em;
	height: 2px;
	background: currentColor;
}

#form .sent_container .sent_finished span::before {
	content: '';
	width: 0.65em;
	height: 0.65em;
	border: 2px solid currentColor;
	border-right: 0;
	border-bottom: 0;
	transform: rotate(-45deg);
	transform-origin: top left;
	position: absolute;
	top: 50%;
	left: -0.05em;
	box-sizing: border-box;
}

#form .sent_finished:hover {
	opacity: 0.8;
	transition: all 0.3s;
}

/*---------------------------------------
	footer
----------------------------------------*/

.footer .sub-sitemap {
	font-family: 'Noto Sans JP', YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN', '¥Ò¥é¥®¥Î³Ñ¥´ ProN W3', '¥á¥¤¥ê¥ª', Meiryo, '¥Ò¥é¥®¥Î³Ñ¥´¥·¥Ã¥¯', 'Hiragino Sans', sans-serif;
	text-align: center;
	padding: 50px 0 15px;
}

.footer .sub-sitemap ul {
	font-size: 0;
}

.footer .sub-sitemap li {
	display: inline-block;
	box-sizing: border-box;
	padding: 0 16px;
	position: relative;
	font-size: 1rem;
}

.footer .sub-sitemap li a {
	text-decoration: none;
}

.footer .sub-sitemap li a:hover {
	text-decoration: underline;
}

.footer .sub-sitemap li::after {
	content: '';
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -0.5em;
	height: 16px;
	width: 1px;
	background: #999;
}

.footer .sub-sitemap li:last-child:after {
	content: none;
}

.footer .sub-sitemap li:first-child {
	padding-left: 0;
}

.footer .sub-sitemap li:last-child {
	padding-right: 0;
}

.footer .sub-sitemap a {
	color: #999999;
}

.footer .copyright {
	color: #999;
	text-align: center;
	padding: 15px 0;
	font-size: .82rem;
}

/*---------------------------------------
	pagetop
----------------------------------------*/

.pagetop {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 10;
	display: none;
}

.pagetop a {
	display: block;
	width: 60px;
	height: 60px;
	text-decoration: none;
	color: #005BAB;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid #D9D9D9;
	transition: .2s;
	line-height: 60px;
	text-align: center;
	font-size: 24px;
}

.pagetop a:hover {
	color: #fff;
	background: 005BAB;
	border-color: #005BAB;
}

@media (max-width: 640px) {
	.pagetop {
    right: 10px;
    bottom: 10px;
	}
	.pagetop a {
    width: 12vw;
    height: 12vw;
    line-height: 12vw;
    font-size: 6vw;
	}
}

.top_arrow {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  width: 2px;
  height: 20px;
  background: #005BAB;
}

.top_arrow::before {
  content: '';
  width: 0.65em;
  height: 0.65em;
  border: 0.1em solid #005BAB;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-45deg);
  transform-origin: top right;
  position: absolute;
  top: -0.05em;
  right: 50%;
  box-sizing: border-box;
}

/*---------------------------------------
	js
----------------------------------------*/

/* fadeUp */

.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 0.7s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.zoomIn {
	animation-name: zoomInAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}

@keyframes zoomInAnime {
	from {
		transform: scale(0.8);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

.fadeUpTrigger,
.delayOpacity,
.zoomInTrigger {
	opacity: 0;
}
