@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@700;800;900&family=M+PLUS+1:wght@400;500;700&display=swap');

html {
	overflow: auto;
	-webkit-text-size-adjust: 100%
}

*,
*:after,
*:before {
	box-sizing: border-box
}

*,
*:after,
*:before,
blockquote,
body,
dd,
div,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
input,
p,
pre,
td,
th {
	margin: 0;
	padding: 0
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

fieldset,
img {
	border: 0
}

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

ul,
ol,
li {
	list-style-type: none;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
	font-style: normal;
	font-weight: 400
}

caption,
th {
	text-align: left
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%
}

q:after,
q:before {
	content: ''
}

input[type=checkbox],
input[type=radio] {
	margin: 0 2px 0 0;
	padding: 0;
	vertical-align: -2px
}

button,
input[type=button],
input[type=submit],
input[type=text] {
	box-sizing: border-box;
	-webkit-appearance: none;
	border: 0;
	cursor: pointer;
	border-radius: 0;
	background: transparent
}

/* ------------------------
    基本構造
------------------------ */
html {
	font-size: 10px;
	overflow-x: hidden;
}

body {
	font-family: "M PLUS 1", sans-serif, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
	font-weight: 400;
	font-size: 1.5rem;
	color: #333333;
	line-height: 1.8;

	background-color: #ffffff;
	/* 背景のベースカラー（白） */
	background-image:
		linear-gradient(to right, rgba(15, 115, 181, 0.1) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(15, 115, 181, 0.1) 1px, transparent 1px);
	background-size: 50px 50px;
	background-attachment: fixed;
}

.content {
	width: 1150px;
	max-width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

.content .min-content {
	width: 960px;
	padding: 0;
}

.min-content {
	width: 990px;
	max-width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

a {
	transition: .3s;
	color: #0F73B5;
}

a:hover {
	text-decoration: none;
	transition: .3s;
}

a::before,
a::after,
a:hover::before,
a:hover::after {
	transition: .3s;
}

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

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
	font-size: 1.5rem;
	font-family: "M PLUS 1", sans-serif, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
	background-color: #f2f2f2;
	border: none;
	padding: 15px;
	width: 100%;
}

select {
	position: relative;
	width: 100%;
	padding-right: 28px;
	background: url(./img/select.svg) no-repeat center right 15px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	background-color: #f2f2f2;
}

textarea {
	height: 240px;
	display: block;
}

::placeholder {
	color: #ccc;
}

.only-sp {
	display: none !important;
}

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

	.only-sp {
		display: block !important;
	}
}

.mt-0 {
	margin-top: 0 !important;
}

.mt-5 {
	margin-top: 5px !important;
}

.mt-10 {
	margin-top: 10px !important;
}

.mt-15 {
	margin-top: 15px !important;
}

.mt-20 {
	margin-top: 20px !important;
}

.mt-25 {
	margin-top: 25px !important;
}

.mt-30 {
	margin-top: 30px !important;
}

.mt-35 {
	margin-top: 35px !important;
}

.mt-40 {
	margin-top: 40px !important;
}

.mt-45 {
	margin-top: 45px !important;
}

.mt-50 {
	margin-top: 50px !important;
}

.mt-55 {
	margin-top: 55px !important;
}

.mt-60 {
	margin-top: 60px !important;
}

.mt-65 {
	margin-top: 65px !important;
}

.mt-70 {
	margin-top: 70px !important;
}

.mt-75 {
	margin-top: 75px !important;
}

.mt-80 {
	margin-top: 80px !important;
}

.mt-85 {
	margin-top: 85px !important;
}

.mt-90 {
	margin-top: 90px !important;
}

.mt-95 {
	margin-top: 95px !important;
}

.mt-100 {
	margin-top: 100px !important;
}

.mt-150 {
	margin-top: 150px !important;
}

.mt-200 {
	margin-top: 200px !important;
}

/* 12カラムグリッド */
.row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
	row-gap: 20px;
}

.row>[class*="col-"] {
	padding: 0 10px;
	box-sizing: border-box;
}

.row img {
	padding: 0 40px;
}

.col-l-3 {
	width: 25%;
}

.col-l-4 {
	width: 33.3333%;
}

.col-l-6 {
	width: 50%;
}

.col-l-12 {
	width: 100%;
}

@media only screen and (max-width: 768px) {
	.row img {
		padding: 0 10px;
	}

	.col-s-3 {
		width: 25%;
	}

	.col-s-4 {
		width: 33.3333%;
	}

	.col-s-6 {
		width: 50%;
	}

	.col-s-12 {
		width: 100%;
	}
}

/* 画像 */
.main-pic {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding-top: 50px;
}

/* リスト */
.list-dot {
	list-style: none !important;
	margin-top: 30px;
	font-size: 1.7rem;
}

.list-dot__item {
	position: relative;
	padding-left: 1.5em;
	margin-bottom: 10px;
}

.list-dot__item:last-child {
	margin-bottom: 0;
}

.list-dot__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.6em;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #76C8FF;
}

/* SP　画像、テーブルスクロール */
@media screen and (max-width: 768px) {
	.sp-scroll {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.sp-scroll img {
		max-width: none;
		width: 600px;
	}
}

/* テーブル */

.table-wrapper {
	margin: 30px auto 0;
}

.quota-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 6px;
	min-width: 600px;
}

.quota-table th {
	font-weight: bold;
}

/* --- セル共通のスタイル --- */
.quota-table th,
.quota-table td {
	padding: 16px 10px;
	vertical-align: middle;
}

/* --- ヘッダー・左カラム（水色の背景） --- */
.quota-table thead th,
.quota-table tbody th {
	background-color: #CAEAFF;
	/* 画像に近い水色 */
}

/* --- 右側データセル（白背景＋水色ボーダー） --- */
.quota-table tbody td {
	background-color: #ffffff;
	border: 1px solid #CAEAFF;
}