@charset "UTF-8";

/* ---------------------------------------------------------------------- */
/* PC */
/* ---------------------------------------------------------------------- */
@media (min-width: 1001px) {

	.contents {
		position: relative;
		width: 100%;
		overflow: hidden;
	}


	/* mainvisual
  ---------------------------------------------------------------------- */
	#mainvisual {
		width: 100%;
		height: 250px;
		position: relative;
		margin-top: 160px;
	}
	.mainvisual__ttl {
		position: absolute;
		left: 50%;
		top: 50%;
		z-index: 10;
		transform: translate(-50%, -50%);
		white-space: nowrap;
		font-size: clamp(1.8vw , 5rem , 2.25vw);
		font-weight: 500;
		color: #FFF;
        text-shadow: 1px 1px 5px rgba(0,0,0,.3),
                    -1px 1px 5px rgba(0,0,0,.3),
                    1px -1px 5px rgba(0,0,0,.3),
                    -1px -1px 5px rgba(0,0,0,.3);
	}
	#mainvisual picture {
		position: relative;
		z-index: 5;
	}
	#mainvisual picture img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}


	/* pagetop
  ---------------------------------------------------------------------- */
	#page-top {
		width: 80px;
		height: 80px;
		position: fixed;
		bottom: 50px;
		right: 10px;
		z-index: 150;
		transition: opacity 0.3s ease;
		cursor: pointer;
		display: none;
		background: url(../images/pagetop.svg);
		background-size: contain;
		border-radius: 50%;
	}

	#page-top.stop {
		position: absolute;
		bottom: 0;
	}

	#page-top:hover {
		opacity: 0.8;
	}


	/* cbg
---------------------------------------------------------------------- */
	.cbg1 {
		background-color: #f6f6f6;
		position: relative;
	}

	.cbg2 {
		background-color: #3d97d8;
		position: relative;
	}


	/* ch
---------------------------------------------------------------------- */

	.ch2 {
		font-size: 2.2rem;
		line-height: 1.5;
		font-weight: bold;
		color: var(--secondary-color);
		margin-bottom: 60px;
		position: relative;
		text-align: center;
	}
	.ch2 span {
		font-size: 7rem;
		color: #cdd4db;
		font-weight: normal;
	}
	.ch2::after {
		content: "";
		display: block;
		width: 150px;
		height: 3px;
		background-image: linear-gradient(
			  90deg,
			  #7ba596 0%,
			  #d2d354 25%,
			  #ffce2b 50%,
			  #4998d3 75%,
			  #7ba596 100%
		);
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		bottom: -10px;
	}

	.ch2_2 {
		font-size: 3.8rem;
		line-height: 1.2;
		font-weight: bold;
		color: var(--third-color);
		margin-bottom: 35px;
		position: relative;
		text-align: center;
	}

	.ch3 {
		font-size: 4.2rem;
		line-height: 1.2;
		color: var(--secondary-color);
		margin-bottom: 30px;
		text-align: center;
		font-style: italic;
	}

	.ch4 {
		color: #304d67;
		font-size: 3.1rem;
		line-height: 1.5;
		font-weight: bold;
		margin-bottom: 20px;
	}

	.ch5 {
		color: #3d97d8;
		font-size: 1.5rem;
		font-weight: bold;
		margin-bottom: 10px;
	}



	/* btn
---------------------------------------------------------------------- */
	.cbtn {
		font-size: min(1.5vw , 1.5rem);
		color: #fff;
		width: 250px;
		height: 60px;
		padding: 0 1em 0 ;
		letter-spacing: 0.04em;
		display: grid;
		place-items: center;
		position: relative;
		border: 1px solid #FFF;
		background-color: #3d97d8;
		border-radius: 5px;
		transition: .6s;
		cursor: pointer;
	}
	.cbtn:hover {
		color: #3d97d8;
		border: 1px solid #3d97d8;
		background-color: #FFF;
	}


	/* linkline
---------------------------------------------------------------------- */
	.linkline {
		border-bottom: 1px solid #FFF ;
	}



	/* icon
---------------------------------------------------------------------- */
/* 	.ipdf::before {
		content: "";
		display: inline-block;
		width: min(1.68vw , 24px);
		height: min(2.03vw , 29px);
		background: url('/images/icon_pdf_white.svg') center / contain no-repeat;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 25px;
	}
	.ipdf_red::before {
		content: "";
		display: inline-block;
		width: min(1.68vw , 24px);
		height: min(2.03vw , 29px);
		background: url('/images/icon_pdf_red.svg') center / contain no-repeat;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 25px;
	}
	.iexcel::before {
		content: "";
		display: inline-block;
		width: min(1.68vw , 24px);
		height: min(2.03vw , 29px);
		background: url('/images/icon_excel_white.svg') center / contain no-repeat;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 25px;
	}
	.iexcel_green::before {
		content: "";
		display: inline-block;
		width: min(1.68vw , 24px);
		height: min(2.03vw , 29px);
		background: url('/images/icon_excel_green.svg') center / contain no-repeat;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 25px;
	}
	.iword::before {
		content: "";
		display: inline-block;
		width: min(1.68vw , 24px);
		height: min(2.03vw , 29px);
		background: url('/images/icon_word_white.svg') center / contain no-repeat;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 25px;
	}
	.iword_blue::before {
		content: "";
		display: inline-block;
		width: min(1.68vw , 24px);
		height: min(2.03vw , 29px);
		background: url('/images/icon_word_blue.svg') center / contain no-repeat;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 25px;
	}

	a[href$=pdf] .cicon_w_r ,
	a[href$=pdf].cicon_w_r {
		padding-right: 30px;
		position: relative;
	}
	a[href$=pdf] .cicon_w_r::before ,
	a[href$=pdf].cicon_w_r::before {
		content: "";
		display: inline-block;
		width: 24px;
		height: 29px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		background: url('/images/icon_pdf_white.svg') center / contain no-repeat;
	}

	a[href$=pdf] .cicon_c_r ,
	a[href$=pdf].cicon_c_r {
		padding-right: 30px;
		position: relative;
	}
	a[href$=pdf] .cicon_c_r::before ,
	a[href$=pdf].cicon_c_r::before {
		content: "";
		display: inline-block;
		width: 24px;
		height: 29px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		background: url('/images/icon_pdf_red.svg') center / contain no-repeat;
	}

	a[href$=xlsx] .cicon_w_r ,
	a[href$=xlsx].cicon_w_r {
		padding-right: 30px;
		position: relative;
	}
	a[href$=xlsx] .cicon_w_r::before ,
	a[href$=xlsx].cicon_w_r::before {
		content: "";
		display: inline-block;
		width: 24px;
		height: 29px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		background: url('/images/icon_excel_white.svg') center / contain no-repeat;
	}

	a[href$=xlsx] .cicon_c_r ,
	a[href$=xlsx].cicon_c_r {
		padding-right: 30px;
		position: relative;
	}
	a[href$=xlsx] .cicon_c_r::before ,
	a[href$=xlsx].cicon_c_r::before {
		content: "";
		display: inline-block;
		width: 24px;
		height: 29px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		background: url('/images/icon_excel_green.svg') center / contain no-repeat;
	}

	a[href$=docx] .cicon_w_r ,
	a[href$=docx].cicon_w_r {
		padding-right: 30px;
		position: relative;
	}
	a[href$=docx] .cicon_w_r::before ,
	a[href$=docx].cicon_w_r::before {
		content: "";
		display: inline-block;
		width: 24px;
		height: 29px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		background: url('/images/icon_word_white.svg') center / contain no-repeat;
	}

	a[href$=docx] .cicon_c_r ,
	a[href$=docx].cicon_c_r {
		padding-right: 30px;
		position: relative;
	}
	a[href$=docx] .cicon_c_r::before ,
	a[href$=docx].cicon_c_r::before {
		content: "";
		display: inline-block;
		width: 24px;
		height: 29px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		background: url('/images/icon_word_blue.svg') center / contain no-repeat;
	}

	a[href$=pdf] .cicon_w_l ,
	a[href$=pdf].cicon_w_l {
		padding-left: 30px;
		position: relative;
	}
	a[href$=pdf] .cicon_w_l::before ,
	a[href$=pdf].cicon_w_l::before {
		content: "";
		display: inline-block;
		width: 24px;
		height: 29px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
		background: url('/images/icon_pdf_white.svg') center / contain no-repeat;
	}

	a[href$=pdf] .cicon_c_l ,
	a[href$=pdf].cicon_c_l {
		padding-left: 30px;
		position: relative;
	}
	a[href$=pdf] .cicon_c_l::before ,
	a[href$=pdf].cicon_c_l::before {
		content: "";
		display: inline-block;
		width: 24px;
		height: 29px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
		background: url('/images/icon_pdf_red.svg') center / contain no-repeat;
	}

	a[href$=xlsx] .cicon_w_l ,
	a[href$=xlsx].cicon_w_l {
		padding-left: 30px;
		position: relative;
	}
	a[href$=xlsx] .cicon_w_l::before ,
	a[href$=xlsx].cicon_w_l::before {
		content: "";
		display: inline-block;
		width: 24px;
		height: 29px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
		background: url('/images/icon_excel_white.svg') center / contain no-repeat;
	}

	a[href$=xlsx] .cicon_c_l ,
	a[href$=xlsx].cicon_c_l {
		padding-left: 30px;
		position: relative;
	}
	a[href$=xlsx] .cicon_c_l::before ,
	a[href$=xlsx].cicon_c_l::before {
		content: "";
		display: inline-block;
		width: 24px;
		height: 29px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
		background: url('/images/icon_excel_green.svg') center / contain no-repeat;
	}

	a[href$=docx] .cicon_w_l ,
	a[href$=docx].cicon_w_l {
		padding-left: 30px;
		position: relative;
	}
	a[href$=docx] .cicon_w_l::before ,
	a[href$=docx].cicon_w_l::before {
		content: "";
		display: inline-block;
		width: 24px;
		height: 29px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
		background: url('/images/icon_word_white.svg') center / contain no-repeat;
	}

	a[href$=docx] .cicon_c_l ,
	a[href$=docx].cicon_c_l {
		padding-left: 30px;
		position: relative;
	}

	a[href$=docx] .cicon_c_l::before ,
	a[href$=docx].cicon_c_l::before {
		content: "";
		display: inline-block;
		width: 24px;
		height: 29px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
		background: url('/images/icon_word_blue.svg') center / contain no-repeat;
	}
 */

	/* paragraph1
---------------------------------------------------------------------- */
	.paragraph1 {
		font-size: 1.4rem;
	}
	.paragraph15 {
		font-size: 1.5rem;
	}
	.paragraph2 {
		font-size: 1.6rem;
	}
	.paragraph3 {
		font-size: 1.8rem;
	}
	.paragraph4 {
		font-size: 2rem;
	}
	.paragraph5 {
		font-size: 2.2rem;
	}
	.paragraph6 {
		font-size: 2.4rem;
	}
	.paragraph7 {
		font-size: 2.6rem;
	}
	.paragraph8 {
		font-size: 2.8rem;
	}
	.paragraph9 {
		font-size: 3rem;
	}
	.paragraph10 {
		font-size: 3.2rem;
	}


	/* lead
---------------------------------------------------------------------- */
	.lead1 {
		color: #304d67;
		font-size: 1.7rem;
		font-weight: 600;
		line-height: 1.64706;
	}
	.lead2 {
		color: #304d67;
		font-size: 1.7rem;
		font-weight: 600;
		line-height: 1.64706;
		margin-bottom: 10px;
	}
	.lead3 {
		color: #FFF;
		font-size: 1.7rem;
		text-align: center;
	}


	/* remarks
---------------------------------------------------------------------- */
	.remarks {
		width: 100%;
		border: 1px solid #3d97d8;
		display: flex;
	}
	.remarks_heading {
		background-color: #3d97d8;
		color: #FFF;
		display: grid;
		place-items: center;
	}
	.remarks_detail {
		padding: 1rem;
	}


	/* note
---------------------------------------------------------------------- */
	.note1 {
		text-indent: -1em;
		padding-left: 1em;
	}
	.note2 {
		text-indent: -1.5em;
		padding-left: 1.5em;
	}
	.note3 {
		text-indent: -2em;
		padding-left: 2em;
	}
	.note4 {
		padding-left: 1em;
	}
	.note5 {
		text-indent: -2.5em;
		padding-left: 2.5em;
	}


	/* indent
---------------------------------------------------------------------- */
	.indent1 {
		text-indent: 1em;
	}
	.indent1_2 {
		text-indent: 1em;
		margin-bottom: 20px;
	}


	/* slider
---------------------------------------------------------------------- */
	.contents .slick-dotted.slick-slider {
        margin-bottom: 0;
    }
    .contents .slick-list,
    .contents .slick-track,
    .contents .slick-slide>div,
    .contents .slick-slide>div li,
    .contents .slick-slide {
        height: 100%;
    }

    .contents .slick-dots {
        display: flex;
        justify-content: center;
        bottom: 27px;
    }

    .contents .slick-dots li {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin: 0 10px;
        background: #FFFFFF;
        cursor: pointer;
    }

    .contents .slick-dots li button {
        display: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        outline: none;
        padding: 0;
        border: none;
        background-color: transparent;
    }

    .contents .slick-dots li:hover,
    .contents .slick-dots li.slick-active {
        background: var(--primary-color);
    }

    .slide_box1 {
    	width: 60%;
    	margin: 0 auto;
    }


	/* ctable
---------------------------------------------------------------------- */
	.ctable {
		width: 100%;
	}
	.ctable tr th {
		text-align: left;
		font-weight: normal;
		padding: 0.2em 0.8em;
		border-bottom: 1px solid #3d97d8;
		vertical-align: middle;
	}
	.ctable tr:first-of-type th {
		border-top: 1px solid #3d97d8;
	}
	.ctable tr td {
		text-align: left;
		font-weight: normal;
		padding: 0.2em 2em;
		vertical-align: middle;
		border-bottom: 1px solid #e6e6e6;
	}
	.ctable tr:first-of-type td {
		border-top: 1px solid #e6e6e6;
	}


	/* cdl
---------------------------------------------------------------------- */
	.cdl {
		display: flex;
		border-bottom: 1px solid #e6e6e6;
		position: relative;
	}
	.cdl::after {
		content: "";
		display: inline-block;
		height: 1px;
		background-color: #3d97d8;
		position: absolute;
		left: 0;
		bottom: -1px;
	}
/* 	.cdl dt {
		border-bottom: 1px solid #3d97d8;
	}
	.cdl dd {
		border-bottom: 1px solid #e6e6e6;
	} */
	.cdl.fir {
		border-top: 1px solid #e6e6e6;
	}
	.cdl.fir::before {
		content: "";
		display: inline-block;
		height: 1px;
		background-color: #3d97d8;
		position: absolute;
		left: 0;
		top: -1px;
	}



	/* unit
---------------------------------------------------------------------- */
.unit1 {
	position: relative;
	padding: 55px 0;
	border-top:2px solid #f6f6f6;
}
.unit1::before {
	content: "";
	width: 90px;
	height: 2px;
	background-color: #3d97d8;
	position: absolute;
	z-index: 3;
	right: 0;
	top : -2px;
}
.unit2 {
	position: relative;
	padding: 55px 0;
	border-top:2px solid #f6f6f6;
}
.unit2::before {
	content: "";
	width: 90px;
	height: 2px;
	background-color: #3d97d8;
	position: absolute;
	z-index: 3;
	left: 0;
	top : -2px;
}


	/* cflex
---------------------------------------------------------------------- */
	.cflex {
		display: flex;
	}
	.jc_center {
		justify-content: center;
	}
	.jc_sb {
		justify-content: space-between;
	}
	.jc_end {
		justify-content: flex-end;
	}
	.ai_center {
		align-items: center;
	}
	.ai_end {
		align-items: flex-end;
	}
	.fd_row_r {
		flex-direction: row-reverse;
	}
	.fd_col {
		flex-direction: column;
	}
	.fd_col_r {
		flex-direction: column-reverse;
	}


	/* list
---------------------------------------------------------------------- */
.list1 {

}
.list1>li {
	padding-left: 1.2em;
	position: relative;
}
.list1>li::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #3d97d8;
	position: absolute;
	top: 0.7em;
	left: 0.3em;
}

.list2>li {
	padding-left: 1.2em;
	position: relative;
}
.list2>li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}

/* 
.list3 {
	padding-left: 1em;
	position: relative;
	margin-bottom: 20px;
}
.list4 {

}
.list4>li {
	position: relative;
	margin-bottom: 10px;
}
 */
.number>li {
	padding-left: 1.5em;
	counter-increment: number;
	position: relative;
}
.number>li::before {
	content:counter(number) ". ";
	position: absolute;
	left: 0;
}
.cnt>li {
	counter-increment: cnt;
	padding-left: 2.5em;
	position: relative;
}
.cnt>li::before {
	content: "( "counter(cnt) " ) ";
	position: absolute;
	left: 0;
	/* display: marker; */
}
.cnt_maru>li {
	text-indent: 0;
	padding-left: 1.5em;
	position: relative;
}
.cnt_maru>li::before {
	content: "";
	position: absolute;
	left: 0;
}
.cnt_maru>li:nth-child(1)::before {
	content: "①";
}
.cnt_maru>li:nth-child(2)::before {
	content: "②";
}
.cnt_maru>li:nth-child(3)::before {
	content: "③";
}
.cnt_maru>li:nth-child(4)::before {
	content: "④";
}
.cnt_maru>li:nth-child(5)::before {
	content: "⑤";
}
.cnt_maru>li:nth-child(6)::before {
	content: "⑥";
}
.cnt_maru>li:nth-child(7)::before {
	content: "⑦";
}
.cnt_maru>li:nth-child(8)::before {
	content: "⑧";
}
.cnt_maru>li:nth-child(9)::before {
	content: "⑨";
}
.cnt_maru>li:nth-child(10)::before {
	content: "⑩";
}
.cnt_maru>li:nth-child(11)::before {
	content: "⑪";
}
.cnt_maru>li:nth-child(12)::before {
	content: "⑫";
}
.cnt_maru>li:nth-child(13)::before {
	content: "⑬";
}
.cnt_maru>li:nth-child(14)::before {
	content: "⑭";
}
.cnt_maru>li:nth-child(15)::before {
	content: "⑮";
}
.cnt_maru>li:nth-child(16)::before {
	content: "⑯";
}
.cnt_maru>li:nth-child(17)::before {
	content: "⑰";
}
.cnt_maru>li:nth-child(18)::before {
	content: "⑱";
}
.cnt_maru>li:nth-child(19)::before {
	content: "⑲";
}
.cnt_maru>li:nth-child(20)::before {
	content: "⑳";
}

.iroha>li {
	text-indent: 0;
	padding-left: 2em;
	position: relative;
}
.iroha>li::before {
	content: "";
	position: absolute;
	left: 0;
}
.iroha>li:nth-child(1)::before {
	content: "イ";
}
.iroha>li:nth-child(2)::before {
	content: "ロ";
}
.iroha>li:nth-child(3)::before {
	content: "ハ";
}
.iroha>li:nth-child(4)::before {
	content: "ニ";
}
.iroha>li:nth-child(5)::before {
	content: "ホ";
}
.iroha>li:nth-child(6)::before {
	content: "ヘ";
}
.iroha>li:nth-child(7)::before {
	content: "ト";
}
.annotation_number>li {
	padding-left: 2.5em;
	counter-increment: number;
	position: relative;
}
.annotation_number>li::before {
	content: "※"counter(number)"　";
	position: absolute;
	left: 0;
}

.list3 {
	display: flex;
	flex-wrap: wrap;
	gap: 0.90909%;
}
.list3 li {
	width: 19.09091%;
	margin-bottom: 10px;
}
.list3 li a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	position: relative;
	border: 2px solid #bd7b7b;
	border-radius: 100px;
	background-color: #fff8f8;
	line-height: 1.2;
	width: 100%;
	height: 65px;
	font-size: 1.3rem;
}
.list3 li a span {
	font-size: 1.8rem;
}

.list3 li a::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-right: 2px solid #bd7b7b;
	border-bottom: 2px solid #bd7b7b;
	transform: rotate(45deg) translateY(-65%);
	position: absolute;
	top: 50%;
	right: 15px;
}
.list3 li:nth-child(even) a {
	border-color: #7c9369;
	background-color: #f9fff3;
}
.list3 li:nth-child(even) a::after {
	border-color: #7c9369;
}




	/* dl
---------------------------------------------------------------------- */
.cdl1 {
	display: flex;
	flex-wrap: wrap;
	background-color: #FFF;
	padding: 0.4em 1em;
	font-size: 1.8rem;
}
.cdl1>dt {
	display: inline-block;
	width: 50%;
	font-weight: 500;
}
.cdl1>dd {
	display: inline-block;
	width: 50%;
	font-weight: 500;
}
/* 
.cdl2 {
	background-color: #FFF;
	padding: 20px 20px 20px 0;
	display: flex;
	gap: 1.5em;
	margin-bottom: 15px;
	border-radius: 10px;
}
.cdl2>dt {
	display: inline-block;
	min-width: 3em;
	font-size: 3rem;
	line-height: 1;
	font-weight: bold;
	text-align: center;
	border-right: 1px solid #cfefe2;
}
.cdl2.ptblue>dt {
	border-right: 1px solid rgba(102, 170, 215, 1.0);
}
.cdl2>dt>span {
	color: #1eb17b;
}
.cdl2.ptblue>dt>span {
	color: rgba(102, 170, 215, 1.0);
}
.cdl2>dd {

}
.cdl2>dd>h4 {
	font-size: 2.3rem;
	font-weight: bold;
	line-height: 1.3;
	margin-bottom: 30px;
}
.cdl3 {
	margin-bottom: 15px;
}
.cdl3>dt {
}
.cdl3>dt>span {
	font-weight: bold;
}
.cdl3>dd {

}
.cdl4 {
	display: flex;
	flex-wrap: wrap;
}
.cdl4 dt {
	width: 15%;
	padding-right: 0.5em;
}
.cdl4 dd {
	width: 85%;
	padding-left: 0.5em;
}
 */


	/* departmentBox
---------------------------------------------------------------------- */
	.departmentBox {
		position: relative;
		border-top: 2px solid #e4e4e4;
		padding-top: 24px;
		display: flex;
		justify-content: space-between;
		margin-bottom: 30px;
	}
	.departmentBox::before {
		content: "";
		display: inline-block;
		width: 60px;
		height: 2px;
		background-color: var(--primary-color);
		position: absolute;
		top: -2px;
		left: 0;
	}
	.departmentBox .thumbArea {
		position: relative;
		width: 22.64151%;
	}
	.departmentBox .thumbArea img {
		width: 100%;
	}
	.departmentBox .txtArea {
		width: 71.69812%;
		display: flex;
		flex-direction: column;
		height: 100%;
	}
	.departmentBox .txtArea h4 {
		font-size: 2.2rem;
		font-weight: bold;
		color: var(--primary-color);
		line-height: 1;
		margin-bottom: 15px;
	}
	.departmentBox .txtArea p {
		font-size: 1.5rem;
		line-height: 1.8;
		margin-bottom: 15px;
	}
	.departmentBox .txtArea a {
		margin-top: auto;
	}



	/* dec_pic_box
---------------------------------------------------------------------- */
	.dec_pic_box {
		display: flex;
		justify-content: space-between;
	}
	.dec_pic_box .pic {
		width: 49%;
	}
	.dec_pic_box .pic img {
		width: 100%;
	}
	.dec_pic_box .dec {
		width: 49%;
	}

	.dec_pic_box2 {
		display: flex;
		justify-content: center;
		gap: 2%;
	}
	.dec_pic_box2 .pic {
		width: 40%;
	}
	.dec_pic_box2 .pic img {
		width: 100%;
	}
	.dec_pic_box2 .dec {
		width: 40%;
	}


	/* cborder1
---------------------------------------------------------------------- */
	.cborder1 {
		border: 1px solid #005083;
		border-radius: 20px;
		padding: 1em;
	}


	/* canchor
---------------------------------------------------------------------- */
	.canchor {
		scroll-margin-top: 70px;
	}


	/* marker
---------------------------------------------------------------------- */
  .marker1 {
    background-image: linear-gradient(180deg, transparent 50%, rgba(235, 236, 0, .5) 50%);
  }




}/* End PC */

/* ---------------------------------------------------------------------- */

/* ---------------------------------------------------------------------- */
/* SP */
/* ---------------------------------------------------------------------- */
@media (max-width: 1000px) {

	.contents {
		overflow: hidden;
	}

	#mainvisual {
		width: 100%;
		margin: auto;
		position: relative;
		overflow: hidden;
		height: calc(250 / 750 * 100vw);
		margin-top: 13.4444vw;
	}
	.mainvisual__ttl {
		position: absolute;
		left: 50%;
		top: 50%;
		z-index: 10;
		transform: translate(-50%, -50%);
		font-size: 2.5rem;
		font-weight: 500;
		line-height: 1;
		white-space: nowrap;
        text-shadow: 1px 1px 2vw rgba(0,0,0,.3),
                    -1px 1px 2vw rgba(0,0,0,.3),
                    1px -1px 2vw rgba(0,0,0,.3),
                    -1px -1px 2vw rgba(0,0,0,.3);
                    color: #FFF;
	}
	#mainvisual picture {
		position: relative;
		z-index: 5;
	}
	#mainvisual picture img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}


	/* pagetop
	  ---------------------------------------------------------------------- */
	#page-top {
		width: 15vw;
		height: 15vw;
		position: fixed;
		right: 3vw;
		bottom: 3vw;
		z-index: 1500;
		display: none;
		transition: all 0.3s ease;
		cursor: pointer;
		background: url("../images/pagetop.svg");
		background-size: contain;
		border-radius: 50%;
	}


	/* cbg
---------------------------------------------------------------------- */
	.cbg1 {
		background-color: #f6f6f6;
		position: relative;
	}

	.cbg2 {
		background-color: #3d97d8;
		position: relative;
	}

	/* ch
---------------------------------------------------------------------- */

	.ch2 {
		font-size: 4.8vw;
		line-height: 1.3;
		font-weight: bold;
		color: var(--secondary-color);
		margin-bottom: 12vw;
		position: relative;
		text-align: center;
	}
	.ch2 span {
		font-size: 10.66667vw;
		color: #cdd4db;
		font-weight: normal;
	}
	.ch2::after {
		content: "";
		display: block;
		width: 28vw;
		height: 3px;
		background-image: linear-gradient(
			  90deg,
			  #7ba596 0%,
			  #d2d354 25%,
			  #ffce2b 50%,
			  #4998d3 75%,
			  #7ba596 100%
		);
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		bottom: -4vw;
	}

	.ch2_2 {
		font-size: 5.866667vw;
		line-height: 1.2;
		font-weight: bold;
		color: var(--third-color);
		margin-bottom: 9.33334vw;
		position: relative;
		text-align: center;
	}

	.ch3 {
		font-size: 8vw;
		line-height: 1.2;
		color: var(--secondary-color);
		margin-bottom: 5.33334vw;
		text-align: center;
		font-style: italic;
	}

	.ch4 {
		color: #304d67;
		font-size: 5.86667vw;
		line-height: 1.5;
		font-weight: bold;
		margin-bottom: 4vw;
	}

	.ch5 {
		color: #3d97d8;
		font-size: 3.73334vw;
		font-weight: bold;
		margin-bottom: 2.66667vw;
	}


	/* btn
---------------------------------------------------------------------- */
	.cbtn {
		font-size: 4vw;
		color: #fff;
		width: 66.66667vw;
		height: 16vw;
		padding: 0 1em 0 ;
		letter-spacing: 0.04em;
		display: grid;
		place-items: center;
		position: relative;
		border: 1px solid #FFF;
		background-color: #3d97d8;
		border-radius: 1vw;
	}
	/* .cbtn:hover {
		color: #3d97d8;
		border: 1px solid #3d97d8;
		background-color: #FFF;
	} */


	/* linkline
---------------------------------------------------------------------- */
	.linkline {
		border-bottom: 1px solid #FFF ;
	}


	/* icon
---------------------------------------------------------------------- */

	.ipdf::before {
		content: "";
		display: inline-block;
		width: 4vw;
		height: 4.83334vw;
		background: url('/images/icon_pdf_white.svg') center / contain no-repeat;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 4vw;
	}
	.ipdf_red::before {
		content: "";
		display: inline-block;
		width: 4vw;
		height: 4.83334vw;
		background: url('/images/icon_pdf_red.svg') center / contain no-repeat;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 4vw;
	}
	.iexcel::before {
		content: "";
		display: inline-block;
		width: 4vw;
		height: 4.83334vw;
		background: url('/images/icon_excel_white.svg') center / contain no-repeat;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 4vw;
	}
	.iexcel_green::before {
		content: "";
		display: inline-block;
		width: 4vw;
		height: 4.83334vw;
		background: url('/images/icon_excel_white.svg') center / contain no-repeat;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 4vw;
	}
	.iword::before {
		content: "";
		display: inline-block;
		width: 4vw;
		height: 4.83334vw;
		background: url('/images/icon_word_white.svg') center / contain no-repeat;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 4vw;
	}
	.iword_blue::before {
		content: "";
		display: inline-block;
		width: 4vw;
		height: 4.83334vw;
		background: url('/images/icon_word_blue.svg') center / contain no-repeat;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 4vw;
	}

	a[href$=pdf] .cicon_w_r ,
	a[href$=pdf].cicon_w_r {
		padding-right: 6vw;
		position: relative;
	}
	a[href$=pdf] .cicon_w_r::before ,
	a[href$=pdf].cicon_w_r::before {
		content: "";
		display: inline-block;
		width: 4vw;
		height: 4.83334vw;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		background: url('/images/icon_pdf_white.svg') center / contain no-repeat;
	}

	a[href$=pdf] .cicon_c_r ,
	a[href$=pdf].cicon_c_r {
		padding-right: 6vw;
		position: relative;
	}
	a[href$=pdf] .cicon_c_r::before ,
	a[href$=pdf].cicon_c_r::before {
		content: "";
		display: inline-block;
		width: 4vw;
		height: 4.83334vw;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		background: url('/images/icon_pdf_red.svg') center / contain no-repeat;
	}

	a[href$=xlsx] .cicon_w_r ,
	a[href$=xlsx].cicon_w_r {
		padding-right: 6vw;
		position: relative;
	}
	a[href$=xlsx] .cicon_w_r::before ,
	a[href$=xlsx].cicon_w_r::before {
		content: "";
		display: inline-block;
		width: 4vw;
		height: 4.83334vw;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		background: url('/images/icon_excel_white.svg') center / contain no-repeat;
	}

	a[href$=xlsx] .cicon_c_r ,
	a[href$=xlsx].cicon_c_r {
		padding-right: 6vw;
		position: relative;
	}
	a[href$=xlsx] .cicon_c_r::before ,
	a[href$=xlsx].cicon_c_r::before {
		content: "";
		display: inline-block;
		width: 4vw;
		height: 4.83334vw;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		background: url('/images/icon_excel_green.svg') center / contain no-repeat;
	}

	a[href$=docx] .cicon_w_r ,
	a[href$=docx].cicon_w_r{
		padding-right: 6vw;
		position: relative;
	}
	a[href$=docx] .cicon_w_r::before ,
	a[href$=docx].cicon_w_r::before {
		content: "";
		display: inline-block;
		width: 4vw;
		height: 4.83334vw;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		background: url('/images/icon_word_white.svg') center / contain no-repeat;
	}

	a[href$=docx] .cicon_c_r ,
	a[href$=docx].cicon_c_r {
		padding-right: 6vw;
		position: relative;
	}
	a[href$=docx] .cicon_c_r::before ,
	a[href$=docx].cicon_c_r::before {
		content: "";
		display: inline-block;
		width: 4vw;
		height: 4.83334vw;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		background: url('/images/icon_word_blue.svg') center / contain no-repeat;
	}

	a[href$=pdf] .cicon_w_l ,
	a[href$=pdf].cicon_w_l {
		padding-left: 6vw;
		position: relative;
	}
	a[href$=pdf] .cicon_w_l::before ,
	a[href$=pdf].cicon_w_l::before {
		content: "";
		display: inline-block;
		width: 4vw;
		height: 4.83334vw;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
		background: url('/images/icon_pdf_white.svg') center / contain no-repeat;
	}

	a[href$=pdf] .cicon_c_l ,
	a[href$=pdf].cicon_c_l {
		padding-left: 6vw;
		position: relative;
	}
	a[href$=pdf] .cicon_c_l::before ,
	a[href$=pdf].cicon_c_l::before {
		content: "";
		display: inline-block;
		width: 4vw;
		height: 4.83334vw;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
		background: url('/images/icon_pdf_red.svg') center / contain no-repeat;
	}

	a[href$=xlsx] .cicon_w_l ,
	a[href$=xlsx].cicon_w_l {
		padding-left: 6vw;
		position: relative;
	}
	a[href$=xlsx] .cicon_w_l::before ,
	a[href$=xlsx].cicon_w_l::before {
		content: "";
		display: inline-block;
		width: 4vw;
		height: 4.83334vw;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
		background: url('/images/icon_excel_white.svg') center / contain no-repeat;
	}

	a[href$=xlsx] .cicon_c_l ,
	a[href$=xlsx].cicon_c_l {
		padding-left: 6vw;
		position: relative;
	}
	a[href$=xlsx] .cicon_c_l::before ,
	a[href$=xlsx].cicon_c_l::before {
		content: "";
		display: inline-block;
		width: 4vw;
		height: 4.83334vw;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
		background: url('/images/icon_excel_green.svg') center / contain no-repeat;
	}

	a[href$=docx] .cicon_w_l ,
	a[href$=docx].cicon_w_l {
		padding-left: 6vw;
		position: relative;
	}
	a[href$=docx] .cicon_w_l::before ,
	a[href$=docx].cicon_w_l::before {
		content: "";
		display: inline-block;
		width: 4vw;
		height: 4.83334vw;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
		background: url('/images/icon_word_white.svg') center / contain no-repeat;
	}

	a[href$=docx] .cicon_c_l ,
	a[href$=docx].cicon_c_l {
		padding-left: 6vw;
		position: relative;
	}
	a[href$=docx] .cicon_c_l::before ,
	a[href$=docx].cicon_c_l::before {
		content: "";
		display: inline-block;
		width: 4vw;
		height: 4.83334vw;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 0;
		background: url('/images/icon_word_blue.svg') center / contain no-repeat;
	}


	/* paragraph1
---------------------------------------------------------------------- */
	.paragraph1 {
		font-size: 1.4rem;
	}
	.paragraph2 {
		font-size: 1.6rem;
	}
	.paragraph3 {
		font-size: 1.8rem;
	}
	.paragraph4 {
		font-size: 2rem;
	}
	.paragraph5 {
		font-size: 2.2rem;
	}
	.paragraph6 {
		font-size: 2.4rem;
	}
	.paragraph7 {
		font-size: 2.6rem;
	}
	.paragraph8 {
		font-size: 2.8rem;
	}
	.paragraph9 {
		font-size: 3rem;
	}
	.paragraph10 {
		font-size: 3.2rem;
	}
	.lead {
		margin-bottom: 8vw;
	}



	/* lead
---------------------------------------------------------------------- */
	.lead1 {
		color: #304d67;
		font-size: 3.73334vw;
		font-weight: 600;
	}
	.lead2 {
		color: #304d67;
		font-size: 3.73334vw;
		line-height: 1.64706;
		font-weight: 600;
		margin-bottom: 5.33334vw;
	}
	.lead3 {
		color: #FFF;
		font-size: 3.73334vw;
		text-align: center;
	}


	/* remarks
---------------------------------------------------------------------- */
	.remarks {
		width: 100%;
		border: 1px solid #3d97d8;
	}
	.remarks_heading {
		background-color: #3d97d8;
		color: #FFF;
		display: grid;
		place-items: center;
	}
	.remarks_detail {
		padding: 1rem;
	}

	/* note
---------------------------------------------------------------------- */
	.note1 {
		text-indent: -1em;
		padding-left: 1em;
	}
	.note2 {
		text-indent: -1.5em;
		padding-left: 2.5em;
	}
	.note3 {
		text-indent: -2em;
		padding-left: 2em;
	}
	.note4 {
		padding-left: 1em;
	}
	.note5 {
		text-indent: -2.5em;
		padding-left: 2.5em;
	}


	/* indent
---------------------------------------------------------------------- */
	.indent1 {
		text-indent: 1em;
	}
	.indent1_2 {
		text-indent: 1em;
		margin-bottom: 3vw;
	}



	/* slider
---------------------------------------------------------------------- */

	.contents .slick-dotted.slick-slider {
        margin-bottom: 0;
    }

    .contents .slick-list,
    .contents .slick-track,
    .contents .slick-slide>div,
    .contents .slick-slide>div li,
    .contents .slick-slide {
        height: 100%;
    }

    .contents .slick-dots {
        display: flex;
        justify-content: center;
        bottom: 5vw;
    }

    .contents .slick-dots li {
        width: 2.2vw;
        height: 2.2vw;
        border-radius: 50%;
        margin: 0 1.5vw;
        background: #FFFFFF;
        cursor: pointer;
    }

    .contents .slick-dots li button {
        display: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        outline: none;
        padding: 0;
        border: none;
        background-color: transparent;
    }

    .contents .slick-dots li:hover,
    .contents .slick-dots li.slick-active {
        background: var(--primary-color);
    }

    .slide_box1 {
    	margin: 0 auto;
    }



	/* radius__box
---------------------------------------------------------------------- */
	.radius__box1 {
		border: 1px solid #b29d8a;
		border-radius: 4vw;
		overflow: hidden;
	}
	.radius__box2 {
		border: 1px solid #7c9369;
		border-radius: 4vw;
		overflow: hidden;
	}
	.radius__box3 {
		border: 1px solid #bd7b7b;
		border-radius: 4vw;
		overflow: hidden;
	}


	/* ctable
---------------------------------------------------------------------- */
	.ctable {
		width: 100%;
	}
	.ctable tr th {
		text-align: left;
		font-weight: normal;
		padding: 0.2em 0.8em;
		border-bottom: 1px solid #3d97d8;
		vertical-align: middle;
	}
	.ctable tr:first-of-type th {
		border-top: 1px solid #3d97d8;
	}
	.ctable tr td {
		text-align: left;
		font-weight: normal;
		padding: 0.2em 2em;
		vertical-align: middle;
		border-bottom: 1px solid #e6e6e6;
	}
	.ctable tr:first-of-type td {
		border-top: 1px solid #e6e6e6;
	}


	/* cdl
---------------------------------------------------------------------- */
	.cdl {
		border-bottom: 1px solid #e6e6e6;
		position: relative;
	}
	.cdl::after {
		content: "";
		display: inline-block;
		height: 1px;
		background-color: #3d97d8;
		position: absolute;
		left: 0;
		bottom: -1px;
	}
/* 	.cdl dt {
		border-bottom: 1px solid #3d97d8;
	}
	.cdl dd {
		border-bottom: 1px solid #e6e6e6;
	} */
	.cdl.fir {
		border-top: 1px solid #e6e6e6;
	}
	.cdl.fir::before {
		content: "";
		display: inline-block;
		height: 1px;
		background-color: #3d97d8;
		position: absolute;
		left: 0;
		top: -1px;
	}



	/* unit
---------------------------------------------------------------------- */
.unit1 {
	position: relative;
	padding: 6.66667vw 0;
	border-top:2px solid #f6f6f6;
}
.unit1::before {
	content: "";
	width: 9.33334vw;
	height: 2px;
	background-color: #3d97d8;
	position: absolute;
	z-index: 3;
	/* right: 0; */
	left: 0;
	top : -2px;
}
.unit2 {
	position: relative;
	padding: 6.66667vw 0;
	border-top:2px solid #f6f6f6;
}
.unit2::before {
	content: "";
	width: 9.33334vw;
	height: 2px;
	background-color: #3d97d8;
	position: absolute;
	z-index: 3;
	left: 0;
	top : -2px;
}




	/* picture
---------------------------------------------------------------------- */
.picture1 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.picture1 .picture1_inner {
	width: 48.18182%;
	margin-bottom: 3.63636vw;
}
.picture2 {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.picture2 .picture2_inner {
	width: 32%;
	margin-bottom: 4vw;
}
.picture2 .picture2_inner img {
	width: 100%;
}
.picture2_2 {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.8%;
}
.picture2_2 .picture2_2_inner {
	width: 32%;
	margin-bottom: 4vw;
}
.picture2_2 .picture2_2_inner img {
	width: 100%;
}
.picture2_3 {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 1.8%;
}
.picture2_3 .picture2_3_inner {
	width: 32%;
	margin-bottom: 4vw;
}
.picture2_3 .picture2_3_inner img {
	width: 100%;
}

.picture3 {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 3%;
}
.picture3 .picture3_inner {
	width: 48.18182%;
	margin-bottom: 3.63636vw;
}
.picture3 .picture3_inner img {
	width: 100%;
	height: 100%;
	object-fit: center;
}


	/* list
---------------------------------------------------------------------- */
.list1 {

}
.list1>li {
	padding-left: 1.2em;
	position: relative;
	font-size: 3.73334vw;
}
.list1>li::before {
	content: "";
	display: inline-block;
	width: 2.13334vw;
	height: 2.13334vw;
	border-radius: 50%;
	background-color: #3d97d8;
	position: absolute;
	top: 0.7em;
	left: 0.3em;
}

.list2>li {
	padding-left: 1.2em;
	position: relative;
}
.list2>li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}

.list3 {
	display: flex;
	flex-wrap: wrap;
	gap: 2%;
}
.list3 li {
	width: 49%;
	margin-bottom: 1.8vw;
}
.list3 li a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	position: relative;
	border: 2px solid #bd7b7b;
	border-radius: 100px;
	background-color: #fff8f8;
	line-height: 1.2;
	width: 100%;
	height: 13vw;
	font-size: 1.1rem;
}
.list3 li a span {
	font-size: 1.5rem;
}

.list3 li a::after {
	content: "";
	display: block;
	width: 1.5vw;
	height: 1.5vw;
	border-right: 2px solid #bd7b7b;
	border-bottom: 2px solid #bd7b7b;
	transform: rotate(45deg) translateY(-65%);
	position: absolute;
	top: 50%;
	right: 3vw;
}
.list3 li:nth-child(even) a {
	border-color: #7c9369;
	background-color: #f9fff3;
}
.list3 li:nth-child(even) a::after {
	border-color: #7c9369;
}

.number>li {
	padding-left: 1.5em;
	counter-increment: number;
	position: relative;
}
.number>li::before {
	content:counter(number) ". ";
	position: absolute;
	left: 0;
}
.cnt>li {
	counter-increment: cnt;
	padding-left: 2.5em;
	position: relative;
}
.cnt>li::before {
	content: "( "counter(cnt) " ) ";
	position: absolute;
	left: 0;
	/* display: marker; */
}

.cnt_maru>li {
	text-indent: 0;
	padding-left: 1.5em;
	position: relative;
}
.cnt_maru>li::before {
	content: "";
	position: absolute;
	left: 0;
}
.cnt_maru>li:nth-child(1)::before {
	content: "①";
}
.cnt_maru>li:nth-child(2)::before {
	content: "②";
}
.cnt_maru>li:nth-child(3)::before {
	content: "③";
}
.cnt_maru>li:nth-child(4)::before {
	content: "④";
}
.cnt_maru>li:nth-child(5)::before {
	content: "⑤";
}
.cnt_maru>li:nth-child(6)::before {
	content: "⑥";
}
.cnt_maru>li:nth-child(7)::before {
	content: "⑦";
}
.cnt_maru>li:nth-child(8)::before {
	content: "⑧";
}
.cnt_maru>li:nth-child(9)::before {
	content: "⑨";
}
.cnt_maru>li:nth-child(10)::before {
	content: "⑩";
}
.cnt_maru>li:nth-child(11)::before {
	content: "⑪";
}
.cnt_maru>li:nth-child(12)::before {
	content: "⑫";
}
.cnt_maru>li:nth-child(13)::before {
	content: "⑬";
}
.cnt_maru>li:nth-child(14)::before {
	content: "⑭";
}
.cnt_maru>li:nth-child(15)::before {
	content: "⑮";
}
.cnt_maru>li:nth-child(16)::before {
	content: "⑯";
}
.cnt_maru>li:nth-child(17)::before {
	content: "⑰";
}
.cnt_maru>li:nth-child(18)::before {
	content: "⑱";
}
.cnt_maru>li:nth-child(19)::before {
	content: "⑲";
}
.cnt_maru>li:nth-child(20)::before {
	content: "⑳";
}

.iroha>li {
	/* text-indent: -2.5em; */
	text-indent: 0;
	padding-left: 2em;
	position: relative;
}
.iroha>li::before {
	content: "";
	position: absolute;
	left: 0;
}
.iroha>li:nth-child(1)::before {
	content: "イ";
}
.iroha>li:nth-child(2)::before {
	content: "ロ";
}
.iroha>li:nth-child(3)::before {
	content: "ハ";
}
.iroha>li:nth-child(4)::before {
	content: "ニ";
}
.iroha>li:nth-child(5)::before {
	content: "ホ";
}
.iroha>li:nth-child(6)::before {
	content: "ヘ";
}
.iroha>li:nth-child(7)::before {
	content: "ト";
}
.chushaku>li {
	text-indent: -1.5em;
	padding-left: 1.5em;
	counter-increment: number;
}
.chushaku>li::before {
	content: "※"counter(number);
}



	/* dl
---------------------------------------------------------------------- */
.cdl1 {
	display: flex;
	flex-wrap: wrap;
	background-color: #FFF;
	padding: 0.4em 1em;
	font-size: 1.5rem;
}
.cdl1>dt {
	display: inline-block;
	width: 50%;
	font-weight: 500;
}
.cdl1>dd {
	display: inline-block;
	width: 50%;
	font-weight: 500;
}



.cdl2 {
	background-color: #FFF;
	padding: 4vw 4vw 4vw 0;
	display: flex;
	gap: 1.5em;
	margin-bottom: 4vw;
	border-radius: 2vw;
}
.cdl2>dt {
	display: inline-block;
	min-width: 3em;
	font-size: 4vw;
	line-height: 1;
	font-weight: bold;
	text-align: center;
	border-right: 1px solid #cfefe2;
}
.cdl2.ptblue>dt {
	border-right: 1px solid rgba(102, 170, 215, 1.0);
}
.cdl2>dt>span {
	color: #1eb17b;
}
.cdl2.ptblue>dt>span {
	color: rgba(102, 170, 215, 1.0);
}
.cdl2>dd {

}
.cdl2>dd>h4 {
	font-size: 4vw;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 4vw;
}
.cdl3 {
	margin-bottom: 4vw;
}
.cdl3>dt {
}
.cdl3>dt>span {
	font-weight: bold;
}
.cdl3>dd {

}

.cdl4 {
}
.cdl4 dt {

}
.cdl4 dd {
	margin-bottom: 4vw;
}



	/* departmentBox
---------------------------------------------------------------------- */
	.departmentBox {
		position: relative;
		border-top: 2px solid #e4e4e4;
		padding-top: 4vw;
		display: flex;
		justify-content: space-between;
		margin-bottom: 6vw;
	}
	.departmentBox::before {
		content: "";
		display: inline-block;
		width: 8vw;
		height: 2px;
		background-color: var(--primary-color);
		position: absolute;
		top: -2px;
		left: 0;
	}
	.departmentBox .thumbArea {
		position: relative;
		width: 22.64151%;
		width: 35%;
	}
	.departmentBox .thumbArea img {
		width: 100%;
	}
	.departmentBox .txtArea {
		width: 71.69812%;
		width: 60%;
		display: flex;
		flex-direction: column;
		height: 100%;
	}
	.departmentBox .txtArea h4 {
		font-size: 4.6vw;
		font-weight: bold;
		color: var(--primary-color);
		line-height: 1;
		margin-bottom: 2vw;
	}
	.departmentBox .txtArea p {
		font-size: 3.2vw;
		line-height: 1.8;
		margin-bottom: 2vw;
	}
	.departmentBox .txtArea a {
		margin-top: auto;
	}


	/* dec_pic_box
---------------------------------------------------------------------- */
	.dec_pic_box {
		display: flex;
		flex-direction: column;
	}
	.dec_pic_box .pic {
		margin-bottom: 6vw;
	}
	.dec_pic_box .pic img {
		width: 100%;
	}
	.dec_pic_box .dec {
		margin-bottom: 6vw;
	}
	.dec_pic_box2 {
		display: flex;
		justify-content: center;
	}
	.dec_pic_box2 .pic {
		margin-bottom: 6vw;
	}
	.dec_pic_box2 .pic img {
		width: 100%;
	}
	.dec_pic_box2 .dec {
		margin-bottom: 6vw;
	}


	/* cborder1
---------------------------------------------------------------------- */
	.cborder1 {
		border: 1px solid #005083;
		border-radius: 4vw;
		padding: 1em;
	}


	/* canchor
---------------------------------------------------------------------- */
	.canchor {
		scroll-margin-top: 13vw;
	}


	/* marker
---------------------------------------------------------------------- */
  .marker1 {
    background-image: linear-gradient(180deg, transparent 50%, rgba(235, 236, 0, .5) 50%);
  }



	/* quality__scroll__X
---------------------------------------------------------------------- */
	.quality__scroll__X {
		overflow-x: scroll;
		scrollbar-color: #800202 #c4c4c4;
		scrollbar-width: bold;
		padding-bottom: 5px;
	}




} /* End @media (max-width:1000px) */