@charset "UTF-8";

img {
	width: 100%;
	height: auto;
}

.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

@media screen and (max-width: 1199px) {
	.pc-only {
		display: none !important;
	}

	.sp-only {
		display: block;
	}
}

:root {
	--main-color: #005BAC;
	--main-bg: #F9F9F9;
	--white: #ffffff;
	--navy: #00417A;
	--gray: #A9BABF;
	--blue-gray: #82A2AC;
	--txt-black: #333333;
	--category-black: #455459;
	--shadow: #003E75;
	--accent-1: #449ED0;
	--accent-2: #42B5AF;

}

a {
	color: var(--main-color);
}

body {
	background-color: var(--main-bg);
	color: var(--txt-black);
}

main {
	display: flex;
	padding-top: 80px;
}

.content {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

header {
	background: var(--white);
	height: 80px;
	width: 100%;
	box-shadow: 0px 3px 6px rgb(0,62,117,10%);
	z-index: 9999;
	position: fixed;
}

header img {
	width: 360px;
	object-fit: contain;
}

header .content {
	height: 100%;
	display: flex;
	align-items: center;
}

header p {
	font-size: 18px;
}

.menu-wrap {
	background-color: var(--white);
	width: calc(50% - 200px);
	display: flex;
	justify-content: flex-end;
}

.inner-menu .in-btn:hover {
	opacity: .6;
	cursor: pointer;
}

.inner-menu {
	margin-right: 60px;
	color: var(--navy);
	position: fixed;
	padding-top: 10px;
}

.inner-menu li {
	margin-top: 16px;
}

.inner-menu li {
	list-style-image: url("../img/triangle.svg");
}

.inner-menu a {
	color: var(--navy);
	text-decoration: none;
}

.inner-menu a:hover {
	color: var(--main-color);
}

.inner-menu-child {
	margin: 16px 0 40px 16px;
}

.inner-menu-child li {
	list-style: none;
	margin-top: 8px;
}

.inner-menu-child li a{
	color: var(--category-black);
	font-size: 16px;
}


.sub-menu {
	margin-left: 20px;
	margin-top: 8px;
}

.sub-menu li {
	margin-top: 8px;
	list-style: none;
	font-size: 14px;
}

.sub-menu li:before {
	content: "- ";
	color: var(--gray);
}

.kiyaku-wrap {
	width: 800px;
	margin-left: 20px;
}

h1 {
	color: var(--txt-black);
	font-size: 28px;
	line-height: 300%;
	font-weight: bold;
	padding-left: 8px;
}
h2 {
	color: var(--navy);
	white-space: nowrap;
	font-size: 24px;
	font-weight: bold;
	box-sizing: border-box;
	background-color: var(--main-bg);
	position: sticky;
	top: 80px;
	border-bottom: 1px solid var(--gray);
	padding: 16px 8px ;
	margin-bottom: 32px;
}
@media only screen and (max-width: 767px) {
	h1,h2,h3,h4,h5,h6,p,li,dt,dd,form,pre,td,th,label,div{
		font-size:  16px;
	  	letter-spacing: .02em;
	}
	h1 {
		font-size: 24px;
	}
	h2 {
		font-size: 20px;
	}
	.kiyaku-wrap {
		width: 760px;
	}
}

.in-block {
	margin-bottom: 80px;
}

.category {
	margin-bottom: 48px;
	margin-left: 8px;
}

.category h3 {
	color: var(--category-black);
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
	padding-left: 14px;
	border-left: 4px solid;
	border-image: linear-gradient(to bottom, var(--main-color), var(--blue-gray)) 1;
	line-height: 40px;
}

.in-block ul li {
	margin-top: 20px;
	margin-left: 20px;
}
.in-block a:hover {
	opacity: .6;
	cursor: pointer;
}

/* 現行版、新版など複数バージョンの利用規約を両方掲載する場合のUI ここから---------*/

.multi-version-terms-title {
	color: var(--txt-black);
	font-size: 16px;
}

.multi-version-terms-period {
	margin-bottom: 6px;
	color: var(--txt-black);
	font-size: 16px;
}

.badge-oldversion,
.badge-newversion {
	color: var(--white);
	font-size: 14px;
	font-weight: bold;
	padding: 3px 10px;
	border-radius: 8px;
	display: inline-flex;
	margin-right: 4px;
}
.badge-oldversion {
	background: var(--accent-1);
}
.badge-newversion {
	background: var(--accent-2);
}

li.multi-version-terms .badge-oldversion,
li.multi-version-terms .badge-newversion {
	margin-left: 24px;
}

li.multi-version-terms ul li {
	margin-top: 12px;
}

/* ここまで---------------------------------- */

footer {
	background: linear-gradient(90deg, var(--blue-gray) 0%, var(--main-color) 100%);
	color: var(--white);
	height: 120px;
	text-align: right;
	font-weight: lighter;
	display: flex;
	align-items: center;
	padding-right: 16px;
	width: 100%;
}

footer p {
	font-size: 14px;
}

