@charset "utf-8";

/*見出し
--------------------------------------------------*/

h1{
	font-size: 2.5rem;
	font-weight: 500;
	color: var(--main-color);
	margin: 30px 0 80px;
	padding-top: 20px;
	position: relative;
}
h1::before,
h1::after{
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 5px;
	position: absolute;
	top: 0;
}
h1::before{
	background: var(--sub-color01);
	left: 0;
}
h1::after{
	background: var(--main-color);
	left: 8px;
}
h2{
	font-size: 1.87rem;
	color: var(--main-color);
	margin: 80px 0 40px;
	padding-top: 20px;
	position: relative;
}
h2::before{
	content: '';
	display: block;
	width: 100%;
	height: 5px;
	background: var(--bg-grad02);
	border-radius: 5px;
	position: absolute;
	top: 0;
	left: 0;
}
h3{
	font-size: 1.56rem;
	padding: 5px 10px;
	margin: 40px 0 30px;
	position: relative;
}
h3::after{
	content: '';
	display: block;
	width: 100%;
	height: 13px;
	background: var(--bg-grad01);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
}
h4{
	font-size: 1.37rem;
	color: var(--main-color);
	padding-left: 25px;
	margin: 30px 0 20px;
	position: relative;
}
h4::before{
	content: '';
	display: block;
	width: 18px;
	height: 18px;
	background: var(--bg-grad01);
	border-radius: 50%;
	position: absolute;
	top: 4px;
	left: 0;
}
h4::after{
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: var(--sub-color01);
	border-radius: 50%;
	position: absolute;
	top: 8px;
    left: 4px;
}
h5{
	font-size: 1.25rem;
	padding-left: 25px;
	margin: 20px 0;
	position: relative;
}
h5::before,
h5::after{
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	position: absolute;
	top: 8px;
}
h5::before{
	background: var(--sub-color01);
	left: 0;
}
h5::after{
	background: var(--main-color);
	left: 8px;
}

p.strong{
	font-size: 1.12rem;
	padding-left: 25px;
	margin: 20px 0;
	position: relative;
}
p.strong::before{
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	background: var(--sub-color01);
	border-radius: 50%;
	position: absolute;
	top: 12px;
	left: 4px;
}

@media screen and (max-width:767px) {
	h1{
		font-size: 1.68rem;
		margin: 20px 0 50px;
	}
	h2{
		font-size: 1.5rem;
		margin: 50px 0 20px;
		padding-top: 15px;
	}
	h2::before{
		height: 3px;
	}
	h3{
		font-size: 1.37rem;
		padding: 2px 0;
		margin: 20px 0;
	}
	h3::after{
		height: 10px;
	}
	h4{
		font-size: 1.25rem;
		margin: 20px 0;
		padding-left: 22px;
	}
	h4::before{
		width: 16px;
		height: 16px;
		top: 5px;
	}
	h4::after{
		width: 8px;
		height: 8px;
		top: 9px;
	}
	h5{
		font-size: 1.12rem;
		margin: 20px 0;
		padding-left: 22px;
	}
	p.strong{
		font-size: 1rem;
		padding-left: 22px;
		margin: 20px 0;
	}
	p.strong::before{
		width: 8px;
		height: 8px;
		top: 11px;
	}
}



/*画像
--------------------------------------------------*/

figure figcaption{
	font-size: 0.875rem;
	padding: 3px 0 3px 13px;
	position: relative;
}
figure figcaption::before{
	content: '';
	display: block;
	background: var(--sub-color01);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	position: absolute;
	top: 10px;
	left: 0;
}

@media screen and (max-width:767px) {
	figure figcaption{
		font-size: 0.75rem;
	}
}

.img-round{
	border-radius: 30px;
	overflow: hidden;
}
.img-round img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.cont-img,
figure{
	width: 90%;
	margin: 0 auto;
}
.img-70{
	width: 70%;
	margin: 0 auto;
}
.img-70 img{
	width: 100%;
}

@media screen and (max-width:767px) {
	.img-round{
		width: 90%;
		margin: 0 auto;
	}
	.img-70{
		width: 90%
	}
}

/*ボタン
--------------------------------------------------*/

.button01,
.button02{
	margin: 15px 0;
}
.button01 a,
.button02 a{
	display: inline-block;
	padding: 8px 70px 10px 20px;
	border-radius: 30px;
	color: #333;
	font-size: 1.12rem;
	text-decoration: none;
	overflow: hidden;
	position: relative;
	transition: all .3s ease;
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0);
}
.button01 a{
	border: 1px solid var(--sub-color05);
}
.button02 a{
	background: var(--bg-grad01);
}
.button01 a::before,
.button01 a::after,
.button02 a::before,
.button02 a::after{
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border-top: 1px solid var(--sub-color01);
	border-right: 1px solid var(--sub-color01);
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	transition: all .3s ease;
}
.button01 a::before,
.button02 a::before{
	left: -10px;
}
.button01 a::after,
.button02 a::after{
	right: 20px;
}

@media (hover: hover) {
	.button01 a:hover,
	.button02 a:hover{
		/*padding: 8px 40px 10px 50px;*/
		color: var(--main-color);
		box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
	}
	/*.button01 a:hover::before,
	.button02 a:hover::before{
		left: 20px;
	}*/
	.button01 a:hover::after,
	.button02 a:hover::after{
		right: 15px;
	}
}

@media screen and (max-width:767px) {
	.button01 a,
	.button02 a{
		font-size: 1rem;
		padding: 8px 55px 10px 20px;
	}
	
	@media (hover: hover) {
		/*.button01 a:hover,
		.button02 a:hover{
			padding: 8px 35px 10px 40px;
		}*/
	}
}

/*テキストカラー
--------------------------------------------------*/

.font-red{
	color: #CC0000;
}
.font-blue{
	color: var(--main-color);
}
.font-darkblue{
	color: var(--sub-color03);
}
.font-green{
	color: #008364 ;
}
.font-gray{
	color: #666666;
}

/*テーブル設定
--------------------------------------------------*/
table {
	border-collapse: collapse;
	max-width: 100%;
	margin-top: 20px;
}
table caption {
	color: #666;
	font-size: 1rem;
	font-weight: bold;
	text-align: left;
	padding: 0;
	margin-bottom: 5px;
	caption-side: top;
}
table thead th {
	color: var(--main-color);
	background: var(--bg-color02);
	font-weight: bold;
}
table th {
	padding: 10px;
	border: 1px solid var(--sub-color05);
	font-weight: bold;
	background: #f2f2f2;
}
table td {
	padding: 10px;
	border: 1px solid var(--sub-color05);
}

@media (max-width: 767px) {
	table.res{
		border-top: 1px solid var(--sub-color05);
	}
	table.res th,
	table.res td{
		display: block;
		border-top: none;
	}
}

@media screen and (max-width:767px) {
	table th {
		padding: 5px 10px;
	}
	table td {
		padding: 5px 10px;
	}
	table caption {
		font-size: 0.875rem;
	}
}

.table02 th{
	border: none;
	padding: 5px 30px 5px 0;
	background: none;
	position: relative;
	white-space: nowrap;
	vertical-align: top;
}
.table02 th::after{
	content: '';
	display: block;
	width: 1px;
	height: 14px;
	background: var(--sub-color01);
	transform: rotate(30deg);
	position: absolute;
	top: 12px;
    right: 10px;
}
.table02 td{
	border: none;
	padding: 5px 0 5px 10px;
}

@media screen and (max-width:767px) {
	.table02 th::after{
		top: 10px;
	}
}

/*リンク設定
--------------------------------------------------*/

/*----　単体リンク　----*/

.link a{
	display: inline-block;
	padding: 1px 0 1px 30px;
	position: relative;
}
.link a::before{
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid transparent;
	background: var(--bg-grad03) border-box border-box;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    mask-composite: exclude;
	position: absolute;
	top: 6px;
	left: 0;
	transition: all .3s ease;
}
.link a::after{
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px solid var(--sub-color01);
	border-right: 1px solid var(--sub-color01);
	transform: rotate(45deg);
	position: absolute;
	top: 13px;
	left: 6px;
	transition: all .3s ease;
}

@media (hover: hover) {
	.link a:hover::before{
		left: 5px;
	}
	.link a:hover::after{
		left: 11px;
	}
}


@media (max-width: 767px) {
	.link a{
		padding: 3px 0 3px 25px;
		margin-left: 0;
	}
	.link a::before{
		width: 16px;
		height: 16px;
		top: 8px;
		left: 0;
	}
	.link a::after{
		width: 4px;
		height: 4px;
		top: 14px;
		left: 5px;
	}
}


/*---- リンク用アイコン ----*/

.ic-newwin{
	width: auto;
	padding-left: 5px;
	padding-right: 5px;
	vertical-align: middle;
}
.ic-pdf,
.ic-word,
.ic-excel,
.ic-zip{
	display: inline-block;
    padding: 3px 7px;
	font-family: var(--font-en);
	font-size: 0.75rem;
	text-decoration: none;
	line-height: 1;
	text-decoration: none;
	color: #fff;
	border-radius: 10px;
	margin-left: 5px;
	margin-right: 5px;
	vertical-align: middle;
}
.ic-pdf{
	background: #CC0000;
}
.ic-word{
	background: var(--main-color);
}
.ic-excel{
	background: #008364;
}
.ic-zip{
	background: #666666;
}


/*リスト設定
--------------------------------------------------*/

/*アイコン付きリスト*/

.list > li,
.list-s > li{
	padding: 1px 0 1px 15px;
	position: relative;
}
.list > li::before{
	content: '';
	display: block;
	width:  10px;
	height: 10px;
	background: var(--bg-grad03);
	border-radius: 50%;
	position: absolute;
	top: 10px;
	left: 0;
}
.list-s > li::before,
.list-s > li::after{
	content: '';
	display: block;
	width:  4px;
	height: 3px;
	position: absolute;
	top: 13px;
}
.list-s > li::before{
	background: var(--sub-color01);
	border-radius: 5px 0 0 5px;
	left: 0;
}
.list-s > li::after{
	background: var(--main-color);
	border-radius: 0 5px 5px 0;
	left: 4px;
}

.linklist > li > a{
	display: inline-block;
	padding: 1px 0 1px 30px;
	position: relative;
} 
.linklist > li > a::before{
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid transparent;
	background: var(--bg-grad03) border-box border-box;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    mask-composite: exclude;
	position: absolute;
	top: 6px;
	left: 0;
	transition: all .3s ease;
}
.linklist > li > a::after{
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px solid var(--sub-color01);
	border-right: 1px solid var(--sub-color01);
	transform: rotate(45deg);
	position: absolute;
	top: 13px;
	left: 6px;
	transition: all .3s ease;
}

.linklist-s > li > a{
	display: inline-block;
	padding: 1px 0 1px 20px;
	position: relative;
}
.linklist-s > li > a::before{
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-top: 1px solid var(--sub-color01);
	border-right: 1px solid var(--sub-color01);
	transform: rotate(45deg);
	position: absolute;
	top: 12px;
	left: 0;
	transition: all .3s ease;
}

@media (hover: hover) {
	.linklist > li > a:hover::before{
		left: 5px;
	}
	.linklist > li > a:hover::after{
		left: 11px;
	}
	.linklist-s > li > a:hover::before{
		left: 5px;
	}
}

@media (max-width: 767px) {
	.list > li::before{
		top: 8px;
	}
	.list-s > li::before,
	.list-s > li::after{
		top: 11px;
	}

	.linklist > li > a{
		padding: 3px 0 3px 25px;
		margin-left: 0;
	}
	.linklist > li > a::before{
		width: 16px;
		height: 16px;
		top: 8px;
		left: 0;
	}
	.linklist > li > a::after{
		width: 4px;
		height: 4px;
		top: 14px;
		left: 5px;
	}
	.linklist-s > li > a::before{
		top: 10px;
	}
}

/*番号リスト:ローマ大文字*/
ol {
	list-style-type: decimal;
}
.ollist-ur {
	list-style-type: upper-roman;
}
/*番号リスト:ローマ小文字*/
.ollist-lr {
	list-style-type: lower-roman;
}
/*番号リスト:アルファベット大文字*/
.ollist-ua {
	list-style-type: upper-alpha;
}
/*番号リスト:アルファベット小文字*/
.ollist-la {
	list-style-type: lower-alpha;
}

/*ボックス
--------------------------------------------------*/
.box01,
.box02,
.box03,
.box04{
	padding: 30px;
	border-radius: 30px; 
}
.box01{
	background: var(--bg-grad01);
}
.box01 .box-title{
	width: calc(100% + 60px);
	padding: 4px 30px;
	font-size: 1.25rem;
	color: var(--main-color);
	background: linear-gradient(90deg,#fff 0,#fff 85%, transparent 100%);
	margin-bottom: 20px;
	position: relative;
	left: -30px;
}

.box02{
	position: relative;
}
.box02::before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	border: 3px solid transparent;
	border-radius: 30px;
	background: var(--bg-grad03) border-box border-box;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    mask-composite: exclude;
	position: absolute;
	top: 0;
	left: 0;
}
.box02 .box-title{
	font-size: 1.25rem;
	color: var(--main-color);
	padding-bottom: 10px;
	margin-bottom: 20px;
	position: relative;
}
.box02 .box-title::before,
.box02 .box-title::after{
	content: '';
    display: block;
    width: 20px;
    height: 3px;
    position: absolute;
	bottom: 0;
}
.box02 .box-title::before{
	background: var(--sub-color01);
	border-radius: 5px 0 0 5px;
	left: 0;
}
.box02 .box-title::after{
	background: var(--main-color);
	border-radius: 0 5px 5px 0;
	left: 20px;
}

.box03{
	background: #f2f2f2;
}
.box03 .box-title{
	color: var(--main-color);
	margin-bottom: 10px;
}

.box04{
	position: relative;
}
.box04::before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	border: 3px solid transparent;
	border-radius: 30px;
	background: var(--bg-grad01) border-box border-box;
	-webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    mask-composite: exclude;
	position: absolute;
	top: 0;
	left: 0;
}
.box04 .box-title{
	color: var(--main-color);
	margin-bottom: 10px;
}

@media (max-width: 767px) {
	.box01,
	.box02,
	.box03,
	.box04{
		padding: 15px;
		border-radius: 20px; 
	}
	.box01 .box-title{
		width: calc(100% + 30px);
		font-size: 1.12rem;
		left: -15px;
    	padding: 2px 15px;
		margin-bottom: 10px;
	}
	.box02::before{
		border-radius: 20px;
	}
	.box02 .box-title{
		font-size: 1.12rem;
		padding-bottom: 5px;
		margin-bottom: 10px;
	}
	.box04::before{
		border-radius: 20px;
	}
	
}


/*ページネーション
--------------------------------------------------*/
.pager .pagination {
	display: flex;
	justify-content: center;
	margin: 0;
}

.pager .pagination li{
	position: relative;
	margin: 0 5px;
}
.pager .pagination li::before,
.pager .pagination li::after{
	content: '';
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	transition: all .3s ease;
	position: absolute;
	top: 0;
	left: 0;
}
.pager .pagination li::before{
    background: var(--bg-grad01);
	z-index: -1;
}
.pager .pagination li::after{
	background: var(--main-color);
	opacity: 0;
	z-index: -1;
}
.pager .pagination li:has(> a.active)::before{
	background: #f2f2f2;
}

.pager .pagination li a{
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 30px;
    height: 30px;
    position: relative;
    border-radius: 50%;
	z-index: 1;
}

.pager .pagination .pre{
	margin-right: 20px;
}
.pager .pagination .next{
	margin-left: 20px;
}

.pager .pagination .first a::before,
.pager .pagination .first a::after,
.pager .pagination .pre a::before,
.pager .pagination .next a::before,
.pager .pagination .last a::before,
.pager .pagination .last a::after{
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border-top: 1px solid var(--main-color);
	border-right: 1px solid var(--main-color);
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	z-index: 2;
}
.pager .pagination .first a::before{
	transform: rotate(-135deg);
	left: 10px;
}
.pager .pagination .first a::after{
	transform: rotate(-135deg);
	left: 16px;
}
.pager .pagination .pre a::before{
	transform: rotate(-135deg);
	left: 13px;
}
.pager .pagination .next a::before{
	transform: rotate(45deg);
	left: 10px;
}
.pager .pagination .last a::before{
	transform: rotate(45deg);
	left: 7px;
}
.pager .pagination .last a::after{
	transform: rotate(45deg);
	left: 13px;
}

@media (hover: hover) {
	.pager .pagination li a:hover{
		color: #fff;
	}
	.pager .pagination li:hover::after{
		opacity: 1;
	}
	.pager .pagination .first a:hover::before,
	.pager .pagination .first a:hover::after,
	.pager .pagination .pre a:hover::before,
	.pager .pagination .next a:hover::before,
	.pager .pagination .last a:hover::before,
	.pager .pagination .last a:hover::after{
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
	}
}

@media (max-width: 767px) {
	.pager .pagination li{
		margin: 0 4px;
	}
	.pager .pagination li::before,
	.pager .pagination li::after{
		width: 26px;
		height: 26px;
	}
	.pager .pagination li a{
		width: 26px;
		height: 26px;
	}
	
	.pager .pagination .pre{
		margin-right: 15px;
	}
	.pager .pagination .next{
		margin-left: 15px;
	}
	.pager .pagination .first a::before{
		left: 8px;
	}
	.pager .pagination .first a::after{
		left: 14px;
	}
	.pager .pagination .pre a::before{
		left: 11px;
	}
	.pager .pagination .next a::before{
		left: 8px;
	}
	.pager .pagination .last a::before{
		left: 5px;
	}
	.pager .pagination .last a::after{
		left: 11px;
	}
}


/*アンカー
----------------------------------------*/
.anchor {
	padding-top: 60px;
	margin-top: -60px;
}

@media (max-width: 767px) {
	.anchor {
		padding-top: 30px;
		margin-top: -30px;
	}
}

/*フォントサイズ追加
----------------------------------------*/
.fs-7 {
    font-size: 0.9rem!important;
}


