@charset "utf-8";

/*見出し
--------------------------------------------------*/

h2{
	font-size: 2.81rem;
	font-family: var(--font-zenmaru);
	font-weight: 500;
	color: var(--main-color);
	margin-top: 120px;
	margin-bottom: 80px;
}
h2 span{
	display: block;
	font-size: 2rem;
	color: var(--sub-color01);
	margin-bottom: 20px;
}
h3{
	font-size: 2rem;
	font-family: var(--font-zenmaru);
	font-weight: 500;
	color: var(--main-color);
	margin-top: 60px;
	margin-bottom: 50px;
	padding: 15px 0;
	border-top: 6px dotted var(--sub-color03);
	border-bottom: 6px dotted var(--sub-color03);
}
h4{
	/*display: inline-block;*/
	font-size: 1.56rem;
	font-family: var(--font-zenmaru);
	font-weight: 500;
	background: var(--bg-color03);
	margin-top: 30px;
	margin-bottom: 15px;
	padding: 8px 20px;
	border-radius: 30px; 
}

@media screen and (max-width:767px){
	h2{
		font-size: 1.43rem;
		margin-top: 60px;
		margin-bottom: 40px;
	}
	h2 span{
		font-size: 1rem;
		margin-bottom: 5px;
	}
	h3{
		font-size: 1.31rem;
		margin-top: 40px;
		margin-bottom: 30px;
		padding: 10px 0;
		border-top: 4px dotted var(--sub-color03);
		border-bottom: 4px dotted var(--sub-color03);
	}
	h4{
		font-size: 1.12rem;
    	padding: 5px 10px;
		margin-top: 15px;
    	margin-bottom: 10px;
	}
}


/*画像キャプション
--------------------------------------------------*/

/*figure figcaption{
	font-size: 0.875rem;
	padding-left: 20px;
	position: relative;
}
figure figcaption::before{
	content: '';
	display: block;
	background: var(--main-color);
	width: 15px;
	height: 1px;
	position: absolute;
	top: 9px;
	left: 0;
}

figure.img-ws{
	max-width: 400px;
	margin: 0 auto;
}
figure.img-ws img{
	width: 100%;
}


@media screen and (max-width:767px) {
	figure.img-ws{
		width: 70%;
		margin: 0 auto;
	}
	figure.img-ws img{
		width: 100%;
	}
	figure figcaption{
		font-size: 0.75rem;
		padding-left: 15px;
	}
	figure figcaption::before{
		width: 10px;
		top: 10px;
	}
}*/


/*ボタン
--------------------------------------------------*/



.button01{
	display: block;
	margin: 20px auto 0;
}
.button01 > a{
	display: inline-block;
	padding: 15px 80px 15px 40px;
	font-size: 1.37rem;
	font-family: var(--font-zenmaru);
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	background: var(--sub-color01);
	border-radius: 60px;
	position: relative;
	transition: all .3s ease;
}
.button01 > a::after{
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 10px solid var(--sub-color03);
	border-right: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 40px;
	margin: auto 0;
	transition: all .3s ease;
}

@media (hover: hover) {
	.button01 > a:hover{
		background: var(--main-color);
	}
	.button01 > a:hover::after{
		right: 35px;
	}
}

@media screen and (max-width:767px){
	.button01 > a{
		font-size: 1.12rem;
		padding: 10px 50px 10px 20px;
	}
	.button01 > a::after{
		right: 20px;
	}
	
	@media (hover: hover) {
		.button01 > a:hover::after{
			right: 15px;
		}
	}
}



/*テキスト
--------------------------------------------------*/

/*　テキストサイズ　*/

.fs-7 {
    font-size: 0.9rem!important;
}

/*　テキストカラー　*/

/*.font-red{
	color: var(--sub-color07);
}
.font-blue{
	color: var(--sub-color08);
}
.font-darkblue{
	color: #274A78;
}
.font-green{
	color: var(--main-color);
}
.font-gray{
	color: #666666;
}*/

/*　縦書きの指定　*/

.text-upright{
	text-orientation: upright;
}

/*テーブル設定
--------------------------------------------------*/
/*table {
	border-collapse: collapse;
	max-width: 100%;
	margin-top: 30px;
}
table caption {
	color: var(--main-color);
	font-size: 1rem;
	font-weight: bold;
	text-align: left;
	padding: 0;
	margin-bottom: 5px;
	caption-side: top;
}
table thead th {
	color: #fff;
	background: var(--sub-color01);
	font-weight: bold;
	border: solid 3px #fff;
}
table th {
	padding: 5px 10px;
	border: solid 3px #fff;
	font-weight: bold;
	background: var(--bg-color01);
	color: #333;
	white-space: normal;
    word-break: break-word;
}
table td {
	padding: 5px 10px;
	background: var(--bg-color02);
	border: solid 3px #fff;
}


@media screen and (max-width:767px){
	table.res th,
	table.res td{
		display: block;
		border: solid 2px #fff;
	}
}*/

/*リスト設定
--------------------------------------------------*/

/*　単体リンク　*/

/*.link{
	margin-top: 10px;
}
.link a{
	display: block;
	padding-left: 20px;
	position: relative;
}
.link a::before{
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
	border-left: 10px solid var(--sub-color03);
	border-right: 0;
	position: absolute;
	top: 10px;
	left: 0;
	transition: all .3s ease;
}

@media (hover: hover) {
	.link a:hover::before{
		left: 5px;
	}
}

@media screen and (max-width:768px){
	.link a::before{
		border-top: 3px solid transparent;
		border-bottom: 3px solid transparent;
		border-left: 9px solid var(--sub-color03);
		top: 8px;
	}
}*/

/*　アイコン付リスト　*/
/*.list,
.list-s{
	margin-top: 10px;
	margin-left: 0;
	margin-right: 0;
}

.list > li,
.list-s > li{
	display: block;
	padding-left: 18px;
	position: relative;
}
.list > li::before{
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	background: var(--sub-color03);
	border-radius: 50%;
	position: absolute;
	top: 10px;
	left: 3px;
}
.list-s > li::before{
	content: '';
	display: block;
	width: 10px;
	height: 1px;
	background: var(--sub-color03);
	position: absolute;
	top: 12px;
	left: 0;
}

@media screen and (max-width:767px){
	.list > li,
	.list-s > li{
		padding-left: 13px;
	}
	.list > li::before{
		width: 5px;
		height: 5px;
		top: 8px;
	}
	.list-s > li::before{
		width: 8px;
		top: 10px;
	}
}*/

/*　アイコン付リンクリスト　*/

/*.linklist,
.linklist-s{
	margin-top: 10px;
	margin-left: 0;
	margin-right: 0;
}
.linklist > li > a,
.linklist-s > li > a{
	display: block;
	padding-left: 20px;
	position: relative;
}
.linklist > li > a::before{
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
	border-left: 10px solid var(--sub-color03);
	border-right: 0;
	position: absolute;
	top: 10px;
	left: 0;
	transition: all .3s ease;
}
.linklist-s > li > a::before,
.linklist-s > li > a::after{
	content: '';
	display: block;
	width: 10px;
	height: 1px;
	background: var(--sub-color03);
	position: absolute;
	left: 0;
	transition: all .3s ease;
}
.linklist-s > li > a::before{
	transform: rotate(16deg);
	top: 11px;
}
.linklist-s > li > a::after{
	transform: rotate(-16deg);
	top: 14px;
}

@media screen and (max-width:767px){
	.linklist,
	.linklist-s{
		margin-left: 0;
	}
	.linklist > li > a,
	.linklist-s > li > a{
		padding-left: 15px;
	}
	.linklist > li > a::before{
		border-left: 9px solid var(--sub-color03);
		top: 7px;
	}
	.linklist-s > li > a::before,
	.linklist-s > li > a::after{
		width: 9px;
	}
	.linklist-s > li > a::before{
		transform: rotate(18deg);
		top: 9px;
	}
	.linklist-s > li > a::after{
		transform: rotate(-18deg);
		top: 12px;
	}
}*/


/*---- リンク用アイコン ----*/

/*.ic-newwin{
	width: auto;
	padding-left: 5px;
	padding-right: 5px;
	vertical-align: middle;
}
.ic-pdf,
.ic-word,
.ic-excel,
.ic-zip{
	padding: 2px 4px 1px;
	font-family: var(--font-title);
	font-size: 0.75rem;
	margin-left: 5px;
	margin-right: 5px;
	vertical-align: middle;
}
.ic-pdf{
	color: var(--sub-color07);
	background: rgba(186,38,54,0.15);
}
.ic-word{
	color: var(--sub-color08);
	background: rgba(62,98,173,0.15);
}
.ic-excel{
	color: var(--main-color);
	background: rgba(0,82,67,0.15);
}
.ic-zip{
	color: #333;
	background: rgba(51,51,51,0.15);
}


@media screen and (min-width:768px),print {
table .ic-pdf,
table .ic-word,
table .ic-excel,
table .ic-zip{
	font-size: 0.75rem;
	padding: 3px;
}
}*/

/*番号リスト:ローマ大文字*/
ol {
	list-style-type: decimal;
	margin-left: 30px;
}
.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: 20px;
}
.box01{
	background: var(--bg-color01);
}
.box01 .box-title{
	padding-bottom: 8px;
	font-size: 1.25rem;
	color: #222;
	font-family: var(--font-title);
	border-bottom: 1px solid var(--main-color);
	margin-bottom: 15px;
}

.box02{
	background: var(--bg-color02);
}
.box02 .box-title{
	padding-bottom: 8px;
	font-size: 1.25rem;
	color: var(--main-color);
	font-family: var(--font-title);
	border-bottom: 1px solid var(--sub-color02);
	margin-bottom: 15px;
}

.box03{
	border: 1px solid var(--sub-color04);
}
.box03 .box-title{
	display: inline-block;
	padding: 3px 10px;
	font-size: 1.125rem;
	font-family: var(--font-title);
	color: var(--main-color);
	background: var(--bg-color01);
	margin-bottom: 15px;
}

.box04{
	border: 1px solid var(--main-color);
}
.box04 .box-title{
	font-size: 1.125rem;
	font-family: var(--font-title);
	color: var(--main-color);
	margin-bottom: 15px;
}

@media screen and (max-width:767px) {
	.box01,
	.box02,
	.box03,
	.box04{
		padding: 12px;
	}
	
	.box01 .box-title,
	.box02 .box-title{
		padding-bottom: 5px;
		font-size: 1rem;
		margin-bottom: 10px;
	}
	
	.box03 .box-title{
		padding: 2px 5px 0;
		font-size: 1rem;
		margin-bottom: 10px;
	}
	
	.box04 .box-title{
		font-size: 1rem;
		margin-bottom: 10px;
	}
}*/


/*ページネーション
--------------------------------------------------*/
/*.pager .pagination {
	display: flex;
	justify-content: center;
}
.pager .pagination li a,
.pager .pagination li span {
	margin: 0 5px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
	color: var(--main-color);
    text-decoration: none;
    width: 35px;
    height: 35px;
    position: relative;
	transition: all .3s ease;
}
.pager .pagination li a{
    border: 1px solid var(--sub-color04);
}

.pager .pagination li.pre a{
	margin-right: 20px;
}
.pager .pagination li.next a{
	margin-left: 20px;
}

.pager .pagination li.first a::before,
.pager .pagination li.pre a::before,
.pager .pagination li.last a::before,
.pager .pagination li.next a::before,
.pager .pagination li.first a::after,
.pager .pagination li.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;
}

.pager .pagination li.pre a::before{
	left: 13px;
	transform: rotate(-135deg);
}
.pager .pagination li.next a::before{
	left: 10px;
	transform: rotate(45deg);
}
.pager .pagination li.first a::before{
	left: 10px;
	transform: rotate(-135deg);
}
.pager .pagination li.first a::after{
	left: 18px;
	transform: rotate(-135deg);
}
.pager .pagination li.last a::before{
	left: 6px;
	transform: rotate(45deg);
}
.pager .pagination li.last a::after{
	left: 14px;
	transform: rotate(45deg);
}

.pager .pagination li a.active {
	color: #333;
	background: var(--bg-color01);
	border: 1px solid var(--sub-color04);
}

@media (hover: hover) {
	.pager .pagination li a:hover {
		border: 1px solid var(--main-color);
	}
	.pager .pagination li.first a:hover,
	.pager .pagination li.pre a:hover,
	.pager .pagination li.last a:hover,
	.pager .pagination li.next a:hover{
		border: 1px solid var(--main-color);
	}
}

@media screen and (max-width:767px) {
	.pager .pagination li a,
	.pager .pagination li span {
	    width: 26px;
	    height: 26px;
		font-size: 0.875rem;
	}
	
	
	
	.pager .pagination li.pre a::before{
		left: 10px;
	}
	.pager .pagination li.next a::before{
		left: 6px;
	}
	.pager .pagination li.first a::before{
		left: 7px;
	}
	.pager .pagination li.first a::after{
		left: 13px;
	}
	.pager .pagination li.last a::before{
		left: 3px;
	}
	.pager .pagination li.last a::after{
		left: 9px;
	}
}*/

/*動画
----------------------------------------*/

.youtube{
  position: relative;
  width: 100%;
}
.youtube{
  padding-top: 56.25%;
}
.youtube iframe{
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*アンカーリンク
----------------------------------------*/

.anchor{
	margin-top: -1px;
	padding-top: 1px;
}
