@charset "utf-8";

html {
	font-size: 62.5%;
}

body {
	color: #333333;
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 1.4rem;
	margin: 0;
	padding: 0;
}

.contents {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1170px;
	padding: 0 15px;

	/* ベース1140px。レスポンシブ時に左右に15px入れるため1170pxに。 */
}

p {
	font-size: 1.4rem;
	line-height: 1.4;
	margin: 0 0 20px 0;
	padding: 0;
}

form {
	margin: 0;
	padding: 0;
}

ul,
li,
dl,
dt,
dd {
	margin: 0;
	padding: 0;
}

ul,
ol {
	margin: 0 0 20px 0;
	padding: 0;
}

li,
dt,
dd {
	font-size: 1.4rem;
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0 0 20px;
	width: 100%;
}

img {
	height: auto;
	margin: 0;
	max-width: 100%;
	padding: 0;
}

a:link {
	color: #000;
	text-decoration: none;
}

a:visited {
	color: #000;
	text-decoration: none;
}

a:hover {
	color: #7f7f7f;
	text-decoration: underline;
}

a:active {
	color: #000;
}

.register-btns {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	margin: 0 0 20px 0;
}

.btns {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

@media screen and (max-width: 767px) {

	.register-btns,
	.btns {
		align-items: center;
		display: flex;
		flex-direction: column;
	}
}

.btn-primary {
	background: linear-gradient(135deg, #4db5ff 0%, #1aa3f5 100%);
	border-radius: 6px;
	color: #fff;
	display: inline-block;
	font-size: 2.6rem;
	font-weight: normal;
	line-height: 1;
	margin: 0;
	max-width: 320px;
	padding: 2.6rem 2rem;
	position: relative;
	text-align: center;
	text-decoration: none;
	transition: opacity 0.3s ease;
	width: 100%;
}

.btn-primary::after {
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	content: "";
	display: block;
	height: 8px;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 8px;
}

.btn-primary:link,
.btn-primary:visited,
.btn-primary:active {
	color: #fff;
}

.btn-primary:hover {
	opacity: 0.85;
	text-decoration: none;
}

.btn-secondary {
	background: linear-gradient(135deg, #6633a3 0%, #4d0089 100%);
	border-radius: 6px;
	color: #fff;
	display: inline-block;
	font-size: 1.8rem;
	font-weight: normal;
	line-height: 1;
	margin: 0;
	max-width: 320px;
	padding: 1.8rem 1rem;
	position: relative;
	text-align: center;
	text-decoration: none;
	transition: opacity 0.3s ease;
	width: 100%;
}

.btn-secondary::after {
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	content: "";
	display: block;
	height: 6px;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 6px;
}

.btn-secondary:hover {
	opacity: 0.85;
	text-decoration: none;
}

a.btn-secondary {
	color: #fff;
}

.btn-primary .colored {
	color: #fed782;
	font-size: 1.8rem;
	padding-right: 1em;
}

@media screen and (min-width: 768px) {
	.pc-none {
		display: none;
	}
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
	.btn-primary {
		font-size: 2.2rem;
		max-width: 280px;
		padding: 2.2rem 1.6rem;
	}

	.btn-secondary {
		font-size: 1.5rem;
		max-width: 280px;
		padding: 1.6rem 1.2rem;
	}

	.register-btns,
	.btns {
		gap: 15px;
	}
}

@media screen and (max-width: 767px) {
	.sp-none {
		display: none;
		visibility: hidden;
	}

	.sp-box {
		margin-left: 5%;
		margin-right: 5%;
	}

	a.btn-primary,
	a.btn-secondary {
		box-sizing: border-box;
		display: block;
		font-size: 155%;
		font-weight: normal;
		margin: 0 0 10px 0;
		max-width: 400px;
		padding: 28px 20px 25px;
		width: 100%;
	}

	a.btn-primary .colored {
		display: block;
		font-size: 85%;
		margin-bottom: 10px;
		padding-right: 0;
	}
}

/* -----------------------------------
hero-section
----------------------------------- */

.hero-section {
	align-items: center;
	background: linear-gradient(135deg,
			#0d5a99 0%,
			#1a8ed6 25%,
			#55b9f3 50%,
			#1a8ed6 75%,
			#0d5a99 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 0 40px 0;
	padding: 5rem 1rem;
	position: relative;
	text-align: center;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 40%, rgba(85, 185, 243, 0.5) 0%, transparent 50%),
		radial-gradient(circle at 70% 70%, rgba(13, 90, 153, 0.6) 0%, transparent 50%);
	pointer-events: none;
}

.logo-box {
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
}

.logo {
	display: block;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
	height: auto;
	position: relative;
	width: 300px;
	z-index: 1;
}

.hero-description {
	color: #555;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.6;
	margin: 0 auto;
	max-width: 600px;
	z-index: 1;
}

.visually-hidden {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.hero-description {
	color: #fff;
	font-size: 1.4rem;
	font-weight: 400;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.footer-area .copyright {
	font-size: 103%;
	margin-bottom: 0;
}

/* -----------------------------------
user-area
----------------------------------- */

.user-area {
	margin-bottom: 30px;
	text-align: center;
	white-space: normal;
}

@media screen and (max-width: 767px) {
	.user-area {
		margin-bottom: 58px;
		padding: 0 10px;
	}

	.user-area h2 {
		font-size: 120%;
		margin-bottom: 22px;
	}
}

/* -----------------------------------
information
----------------------------------- */

.information {
	margin-bottom: 30px;
}

.information h2 {
	border-bottom: 1px #4b0082 solid;
	color: #3A006E;
	font-size: 1.8rem;
	line-height: 1;
	margin: 0 0 1rem 0;
	padding: 10px 0;
}

.information h3 {
	font-size: 1.6rem;
	line-height: 1.6;
	margin: 1rem 0 .5rem 0;
}

.information p {
	margin: 0;
	padding: 0;
}

.information p:last-of-type {
	padding: 0 0 1em 0;
}

.information p a {
	text-decoration: underline;
}

/* -----------------------------------
banner
----------------------------------- */

.banner-area {
	margin-bottom: 30px;
}

.banner-wrapper {
	align-items: center;
	display: flex;
	gap: 20px;
	justify-content: center;
	margin: 0 0 30px 0;
}

.banner,
.banner:link,
.banner:visited,
.banner:active {
	align-items: center;
	border-style: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0;
	opacity: 1;
	padding: 0;
	transition: all 0.3s ease;
}

.banner:hover {
	opacity: 0.8;
}

.banner img {
	display: block;
	height: auto;
	max-width: 340px;
	width: 100%;
}

/* -----------------------------------
digitalservice
----------------------------------- */

.digitalservice {
	margin-bottom: 30px;
	position: relative;
}

.digitalservice h2 {
	border-bottom: 1px #4b0082 solid;
	color: #3A006E;
	font-size: 1.8rem;
	line-height: 1;
	margin: 0 0 2rem 0;
	padding: 10px 0;
}

.service-block {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 30px;
}

@media (min-width: 768px) {
	.service-block {
		grid-template-columns: repeat(3, 1fr);
	}
}

.service {
	border: 1px #e5e5e5 solid;
	border-radius: 6px;
	display: block;
	margin: 0;
	padding: 0;
	text-align: center;
}

.service:hover {
	opacity: 80%;
}

.service h4 {
	line-height: 1;
	margin: 0;
	padding: 0;
}

.service img {
	display: inline-block;
	height: auto;
	margin: 20px auto;
	max-height: 50px;
	max-width: calc(100% - 40px);
	object-fit: contain;
	padding: 0;
	width: auto;
}

.digitalservice h3 {
	background-color: #bfe4f7;
	line-height: 1;
	margin: 0;
}

/* -----------------------------------
soon
----------------------------------- */

.soon {
	margin: 70px auto;
	position: relative;
	text-align: center;
}

.soon .catch-copy {
	left: 50%;
	pointer-events: none;
	position: absolute;
	top: -18px;
	transform: translateX(-50%);
	z-index: 10;
}

.soon .catch-copy span {
	background-color: #fff;
	border: 3px solid #0091de;
	border-radius: 24px;
	color: #333;
	display: inline-block;
	font-size: 1.4rem;
	font-weight: bold;
	padding: 6px 16px;
	width: fit-content;
}

.soon a.btn-primary {
	font-size: 195%;
	font-weight: bold;
	padding-top: 3.2rem;
	width: 518px;
}

.soon a.btn-primary .colored {
	font-weight: normal;
}

@media screen and (max-width: 767px) {
	.information {
		margin-bottom: 58px;
	}

	.banner-area {
		margin-bottom: 58px;
	}

	.digitalservice {
		margin-bottom: 58px;
	}

	.soon {
		align-items: center;
		display: flex;
		flex-direction: column;
		margin-bottom: 58px;
	}

	.soon a.btn-primary {
		max-width: 400px;
		width: 100%;
	}

	.soon a.btn-primary .colored {
		font-weight: bold;
	}
}

/* -----------------------------------
other-links
----------------------------------- */

.other-links {
	text-align: center;
}

.other-links div {
	display: inline-block;
}

.other-links div.normal {
	margin-right: 2.5%;
	padding-top: 10px;
}

.other-links div.online {
	margin-right: 1.8%;
}

.other-links div.normal:nth-child(5) {
	margin-right: 4.5%;
}

.other-links div a {
	display: inline-block;
}

.other-links div.normal a {
	color: #404a73;
	font-size: 105%;
	line-height: 1;
}

.other-links div.online a {
	background-color: #c8c8c8;
	border-radius: 5px;
	padding: 12px 18px 9px;
}

.other-links div.online a:hover {
	background-color: #e0e0e0;
}

.other-links div.introduction a {
	background-color: #616195;
	border-radius: 5px;
	color: #fff;
	font-size: 130%;
	padding: 7px 25px 7px;
	text-decoration: none;
}

.other-links div.introduction a:hover {
	background-color: #45a8b9;
}

.other-links br {
	display: none;
}

@media screen and (max-width: 980px) and (min-width: 768px) {
	.other-links div.normal {
		margin-bottom: 5px;
	}

	.other-links div.normal:nth-child(4) {
		margin-right: 0;
	}

	.other-links br {
		display: block;
	}
}

@media screen and (max-width: 767px) {
	.other-links div.normal {
		margin-right: 4%;
	}

	.other-links div.normal:nth-child(2),
	.other-links div.normal:nth-child(5),
	.other-links div.online {
		margin-right: 0;
	}

	.other-links div.normal {
		padding-bottom: 5px;
		padding-top: 0;
	}

	.other-links div.online {
		padding: 22px 0 20px;
	}

	.other-links br {
		display: block;
	}

	.other-links div:not(.normal) a {
		padding-left: 0;
		padding-right: 0;
		width: 230px;
	}

	.other-links div.introduction a {
		font-size: 120%;
		padding-bottom: 9px;
		padding-top: 9px;
	}
}

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

@media print {
	.pc-none {
		display: none;
	}
}

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

.footer-area {
	background-color: #e9e9e9;
	border-top: solid 6px #45a8b9;
	margin-top: 20px;
	text-align: center;
}

.footer-area .inner {
	align-items: center;
	display: flex;
	gap: 32px;
	justify-content: flex-start;
	margin-left: auto;
	margin-right: auto;
	max-width: 1010px;
	padding: 40px 15px;
	width: 100%;
}

.footer-area .logo {
	flex-shrink: 0;
	top: -5px;
	height: auto;
	width: 94px;
}

.footer-area .copyright {
	color: #1e1e1e;
	font-size: 90%;
	line-height: 1;
}

.footer-area .pagetop {
	background: #008cd6 url('../yid/pc/images/icon-toparrow.svg') no-repeat center 22px;
	background-size: 32px auto;
	border-radius: 50%;
	bottom: 15px;
	display: inline-block;
	height: 74px;
	position: fixed;
	right: 20px;
	width: 74px;
	z-index: 100;
}

.footer-area .pagetop:hover {
	background-color: #0acfa8;
}

.footer-area .pagetop .text {
	color: #fff;
	display: inline-block;
	font-size: 65%;
	line-height: 1;
	margin-top: 50px;
}

@media screen and (max-width: 767px) {
	.footer-area .inner {
		flex-direction: column;
		gap: 12px;
		padding: 15px 0;
		width: 100%;
	}

	.footer-area .logo {
		margin-bottom: 0;
	}

	.footer-area .copyright {
		font-size: 80%;
	}

	.footer-area .pagetop {
		background-position: center 15px;
		background-size: 20px auto;
		bottom: 17px;
		height: 42px;
		right: 7px;
		width: 42px;
	}

	.footer-area .pagetop .text {
		display: none;
	}
}