@charset "utf-8";
/* CSS Document */

#header::before {
    background: url(../images/special/sp-head_bg.webp) no-repeat;
    background-position: center bottom;
	top: 0;
}

/*------------------------------------------------*/
/*コンテンツ*/
section .w1180, section .w1000, section .w990, section .w840, section .sw600{
	width: 83.33%;
	margin-left: auto;
	margin-right: auto;
}
section .sw605{
	width: 84.03%;
	margin-left: auto;
	margin-right: auto;
}

/*見出し*/
h3.h03-1 dl{
	position: relative;
	padding-left: 25px;
	display: flex;
	flex-direction: column;
	gap: 15px 0;
}
h3.h03-1 dl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(235, 161, 34, 1) 0%,
    rgba(53, 145, 99, 1) 26%,
    rgba(11, 105, 166, 1) 66%,
    rgba(134, 106, 169, 1) 100%
  );
}
h3.h03-1 dt{
	width: fit-content;
	font-size: 4.2rem;
	letter-spacing: 0.1em;
	line-height: 100%;
	background: linear-gradient(
	90deg,
	rgba(235, 161, 34, 1) 0%,
	rgba(53, 145, 99, 1) 26%,
	rgba(11, 105, 166, 1) 66%,
	rgba(134, 106, 169, 1) 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
h3.h03-1 dd{
	width: fit-content;
	font-size: 2.3rem;
	letter-spacing: 0.1em;
	color: #064e7a;
	line-height: 100%;
	padding-bottom: 15px;
}

h4.h04-1 {
	position: relative;
}
h4.h04-1::before{
	content: '';
	background: url(../images/special/h4_bg01.webp) 0 0 / cover no-repeat;
	height: auto;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
}
.column.domain h4.h04-1::before{
	background: url(../images/special/h4_bg01.webp) 0 0 / cover no-repeat;
	width: 320px;
	aspect-ratio: 320 / 64;
	top: -33px;
} 
.column.flow h4.h04-1::before{
	background: url(../images/special/h4_bg02.webp) 0 0 / cover no-repeat;
	width: 155px;
	aspect-ratio: 155 / 51;
	top: -20px;
}

h4.h04-1 dl{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0 0;
}
h4.h04-1 dt{
	font-size: 4.2rem;
	font-weight: 400;
	color: #fff;
	letter-spacing: 0.1em;
	line-height: 100%;
}
h4.h04-1 dd{
	font-size: 1.8rem;
	font-weight: 500;
	color: #064e7a;
	letter-spacing: 0.1em;
	line-height: 100%;
}

/*色*/
.color333{
	color: #333;
}

/*------------------------------------------------*/
.page_tit_wrap.special{
	background: url(../images/special/mainvisualSmh.webp?20250228) 0 0 / cover no-repeat;
	width: 100%;
	height: auto;
	aspect-ratio: 720 / 1300;
	position: relative;
}
.page_tit_wrap.special:before{
	display: none;
}
.page_tit_wrap.special .page_tit{
	width: 100%;
	height: auto;
	aspect-ratio: 298 / 55;
	z-index: 1;
	position: absolute;
	top: 300px;
	left: 0;
	right: 0;
	margin: auto;
}
.page_tit_wrap.special .page_tit h2.page_title{
	display: flex;
	justify-content: center;
}

/*------------------------------------------------*/
section.block01{
	position: relative;
}
section.block01::before{
	content: '';
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 720 / 356;
	background: #7F66A1;
	background: linear-gradient(90deg, rgba(127, 102, 161, 1) 0%, rgba(11, 105, 166, 1) 33%, rgba(53, 145, 99, 1) 73%, rgba(235, 161, 34, 1) 100%);
	position: absolute;
	bottom: 0;
}
section.block01 .inn{
	padding: 45px 0 32px;
	background: url(../images/special/bg01Smh.webp) 0 0 / cover no-repeat;
	width: 100%;
	height: auto;
}
section.block01 h3.h03-1{
	font-size: 2.4rem;
	color: #fff;
	font-weight: 400;
	text-align: center;
	letter-spacing: 0.2em;
}
section.block01 .txts{
}
section.block01 .txts > p{
	font-size: 1.3rem;
	color: #fff;
	font-weight: 600;
	line-height: 153.8%;
}
section.block01 .txts > p:first-of-type{
	margin-top: 32px;
}
section.block01 .txts > p:not(:first-of-type){
	margin-top: 25px;
}

/*スライド*/
section.block01 .slider {
	overflow: hidden;
	width: 100%;
	min-height: 203px;
	margin: 35px auto 0;
	display: flex;
	gap: 0 13px;
	width: 200vw; /* 中身2周分 */
	animation: infinity-scroll-left 40s linear infinite;
	will-change: transform;
	position: relative;
}
section.block01 .slider .scrollItem{
	flex: 0 0 157px;/*スライドサイズ*/
    aspect-ratio: 175 / 151;
}
/* 偶数だけ下げる */
section.block01 .slider .scrollItem:nth-child(odd) {
  transform: translateY(52px);
}
section.block01 .slider img {
	width: 100%;
	height: auto;
	display: block;
	-webkit-user-drag: none;
	pointer-events: none;
}
@keyframes infinity-scroll-left {
	from {
	transform: translateX(0);
	}
	to {
	transform: translateX(-50%);
	}
}

/*------------------------------------------------*/
section.block02{
	position: relative;
	background-color: #dcf0f9;
}
section.block02::before{
	content: '';
	background: url(../images/special/parts02Smh.webp) 0 0 / contain no-repeat;
	width: 100%
	height: auto;
	aspect-ratio: 720 / 585;
	position: absolute;
	top: 0;
	left: 0;
}

/*キャッチ*/
section.block02 .column.catch{
	padding-top: 40px;
}
section.block02 .column.catch > .inn{
	position: relative;
	z-index: 1;
}
section.block02 .column.catch .txts{
	margin-top: 35px;
	letter-spacing: 0.1em;
	line-height: 153.8%;
}
section.block02 .column.catch .images{
	margin-top: 45px;
}

/*専門職領域*/
section.block02 .column.domain{
	position: relative;
	padding-bottom: 75px;
	z-index: 1;
}
section.block02 .column.domain::before{
	content: '';
	background: url("../images/special/parts03Smh.webp") 0 0 / contain no-repeat;
	width: 100%;
	height: auto;
	aspect-ratio: 720 / 631;
	position: absolute;
	top: 274px;
	z-index: -1;
}

section.block02 .column.domain > .inn > .txts{
	margin-top: 20px;
	letter-spacing: 0.1em;
	line-height: 187.5%;
}

section.block02 .column ul.area{
	margin-top: 25px;
	display: flex;
	flex-direction: column;
	gap: 13px 0;
}
section.block02 .column ul.area li{
    transition: all 0.5s;
}
section.block02 .column ul.area li.bgon{
	background-color: #fff;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}

section.block02 .column .title {
    position: relative;
    cursor: pointer;
    transition: all 0.5s;
	background-color: #fff;
	border: 1px solid #026a9e;
	box-sizing: border-box;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	
}
section.block02 .column .title::before{
    content: '';
	width: 27px;
	height: 27px;
	background-color: #f28e1e;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	position: absolute;
	bottom: 11px;
	right: 15px;
}
section.block02 .column .title .inn{
	position: relative;
	padding: 7px 7px 14px 7px;
	display: grid;
    grid-template-columns: 30% 70%;
	gap: 10px;
    grid-template-rows: auto;
}
section.block02 .column .title .inn::before,
section.block02 .column .title .inn::after{
    content:'';
	position: absolute;
	bottom: 24px;
    width: 17px;
    height: 1px;
    background-color: #fff;
}
section.block02 .column .title .inn::before{
	right: 20px;
    transform: rotate(0deg);
}
section.block02 .column .title .inn::after{    
	right: 20px;
    transform: rotate(90deg);
}
section.block02 .column .title.close .inn::after{
	display: none;
}
section.block02 .column .title .thumb{
	width: fit-content;
}
section.block02 .column .title .thumb > img{
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
section.block02 .column .title .txts{
	font-size: 2.0rem;
	letter-spacing: 0.1em;
	color: #064e7a;
	line-height: 100%;
	display: flex;
	/*align-items: center;*/
	padding-top: 10px;
}
section.block02 .column .title .comment{
	grid-column: span 2 / span 2;
	font-size: 1.2rem;
	letter-spacing: 0.1em;
	line-height: 100%;
	padding: 0 45px 0 5px;
}
section.block02 .column .title .status{
	position: absolute;
	/*
	top: 28px;
	right: 10px;
	*/
	top: 45px;
	left: 105px;
	width: 88px;
	height: 27px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #f3fcff;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	z-index: 1;
	font-size: 1.0rem;
	color: #0071b7;
	font-weight: 500;
	letter-spacing: 0.05em;
}
section.block02 .column .title .status::before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 2px; /* 枠線太さ */
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	background: linear-gradient(
	90deg,
	rgba(235, 161, 34, 1) 0%,
	rgba(53, 145, 99, 1) 26%,
	rgba(11, 105, 166, 1) 66%,
	rgba(134, 106, 169, 1) 100%
	);
	-webkit-mask:
	linear-gradient(#fff 0 0) content-box,
	linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

/*中身*/
section.block02 .column .box{
    display: none;
	padding: 20px 20px 40px;
}
section.block02 .column .box > .txts{
    letter-spacing: 0.05em;
	line-height: 153.8%;
}
section.block02 .column .box h5.hd{
	font-size: 1.4rem;
    color: #026a9e;
    letter-spacing: 0.05em;
	border-bottom: 1px solid #026a9e;
	padding-bottom: 7px;
	margin-top: 30px;
}
section.block02 .column .box h5.hd > span{
}
section.block02 .column .box h5.hd.orange::first-letter{
	color: #f28e1e;
}
section.block02 .column .box .txt{
	margin-top: 10px;
    letter-spacing: 0.05em;
	line-height: 153.8%;
}
section.block02 .column .box ul.list{
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	gap: 10px 0;
}
section.block02 .column .box ul.list li{
	padding-left: 17px;
	position: relative;
}
section.block02 .column .box ul.list li::before{
	content: '';
	width: 11px;
	height: 11px;
	background-color: #f28e1e;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	position: absolute;
	top: 5px;
	left: 0;
}

section.block02 .column.domain .notice{
	margin-top: 25px;
	border: 1px solid #e81c24;
	box-sizing: border-box;
	background-color: #fff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
section.block02 .column.domain .notice > ul{
	padding: 15px;
	display: flex;
	flex-direction: column;
	gap: 20px 0;
}
section.block02 .column.domain .notice > ul li{
	padding-left: 14px;
	position: relative;
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 165.3%;
	text-align: justify;
}
section.block02 .column.domain .notice > ul li::before{
	content: '※';
	color: #e81c24;
	position: absolute;
	left: 0;
	font-weight: 700;
}

/*応募フロー*/
section.block02 .column.flow{
	position: relative;
}
section.block02 .column.flow::before{
	content: '';
	background: url("../images/special/parts04Smh.webp") 0 0 / contain no-repeat;
	width: 100%;
	height: auto;
	aspect-ratio: 720 / 481;
	position: absolute;
	top: -235px;
}
section.block02 .column.flow .parent{
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(5, 0fr);
	gap: 20px;
}
section.block02 .column.flow .parent > div:not(:last-of-type){
	position: relative;
}
section.block02 .column.flow .parent > div:not(:last-of-type)::after{
    content: '';
    background: url("../images/special/icon_circleBlue.svg") center / contain no-repeat;
    width: 24px;
	height: auto;
    aspect-ratio: 24 / 11;
    position: absolute;
	bottom: -16px;
	left: 0;
	right: 0;
	margin: auto;
}
/*競争試験には矢印をもう一つ付ける*/
section.block02 .column.flow .parent > div.div1::before{
    content: '';
    background: url("../images/special/icon_circleBlue.svg") center / contain no-repeat;
    width: 24px;
	height: auto;
    aspect-ratio: 24 / 11;
    position: absolute;
	bottom: -19px;
	right: -24px;
	transform: rotate(317deg);
}
section.block02 .column.flow .parent .div1, section.block02 .column.flow .parent .div2l{
    display:flex;
	justify-content:space-between;
}
section.block02 .column.flow .parent .div1 > dl, section.block02 .column.flow .parent .div2 > dl{
	width: 100%;
    border: 1px solid #064e7a;
	box-sizing: border-box;
	background-color: #fff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	overflow: hidden;
	display:flex;
	flex-direction:column;

}
section.block02 .column.flow .parent .div1 > dl > dt, section.block02 .column.flow .parent .div2 > dl > dt{
	height: 31px;
	background-color: #064e7a;
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
section.block02 .column.flow .parent .div1 > dl > dt::before{
    content: '';
    background: url("../images/special/flowicon01.svg") center / contain no-repeat;
    width: 16px;
	height: auto;
    aspect-ratio: 16 / 17;
    position: absolute;
    top: 0;
	bottom: 0;
	margin: auto;
    left: 20px;
}
section.block02 .column.flow .parent .div2 > dl > dt::before{
    content: '';
    background: url("../images/special/flowicon02.svg") center / contain no-repeat;
    width: 12px;
	height: auto;
    aspect-ratio: 12 / 15;
    position: absolute;
    top: 0;
	bottom: 0;
	margin: auto;
    left: 25px;
}
section.block02 .column.flow .parent .div1 > dl > dd, section.block02 .column.flow .parent .div2 > dl > dd{
	padding-top: 8px;
	padding-bottom: 16px;
	flex-grow:1;
}
section.block02 .column.flow .parent .div1 > dl > dd ul, section.block02 .column.flow .parent .div2 > dl > dd ul{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 9px 0;
}
section.block02 .column.flow .parent .div1 > dl > dd ul li, section.block02 .column.flow .parent .div2 > dl > dd ul li{
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #333;
}

section.block02 .column.flow .parent .div3, section.block02 .column.flow .parent .div4, section.block02 .column.flow .parent .div5{
	padding: 10px 18px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 11px;
	font-size: 1.2rem;
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 120%;
	text-align: center;
}
section.block02 .column.flow .parent .div3{
	background-color: #f28e1e;
}
section.block02 .column.flow .parent .div4{
	background-color: #026a9e;
}
section.block02 .column.flow .parent .div5 {
    grid-column: span 2 / span 2;
	background-color: #ec5a24;
}
section.block02 .column.flow .parent .div3::before{
	content: '';
    background: url("../images/special/flowicon03.svg") center / contain no-repeat;
    width: 19px;
	height: auto;
    aspect-ratio: 19 / 25;
}
section.block02 .column.flow .parent .div4::before{
	content: '';
    background: url("../images/special/flowicon04.svg") center / contain no-repeat;
    width: 19px;
	height: auto;
    aspect-ratio: 1 / 1;
}
section.block02 .column.flow .parent .div5::before{
	content: '';
    background: url("../images/special/flowicon05.svg") center / contain no-repeat;
    width: 26px;
	height: auto;
    aspect-ratio: 26 / 19;
}

section.block02 .column.flow .parent .div6, section.block02 .column.flow .parent .div7{
    grid-column: span 2 / span 2;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #ec5a24;
	box-sizing: border-box;
	background-color: #fff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	color: #333;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 13px 38px;
}
section.block02 .column.flow .parent .div6 > p.orange, section.block02 .column.flow .parent .div7 > p.orange{
    font-size: 1.2rem;
	color: #ec5a24;
	width: 24%;
}
section.block02 .column.flow .parent .div6 > p:not(.orange), section.block02 .column.flow .parent .div7 > p:not(.orange){
    font-size: 1.2rem;
	width: 76%;
}

section.block02 .column.flow .parent .div6 {
    grid-row-start: 4;
}
section.block02 .column.flow .parent .div7 {
    grid-row-start: 5;
}

section.block02 .column.flow .btnsList{
	margin: 35px auto 0;
	display: flex;
	flex-direction: column;
	gap: 20px 0;
	position: relative;
	z-index: 1;
}
section.block02 .column.flow .btnsList > a{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 35px 0;
	width: calc( 100% - 30px );
	height: 60px;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid #fff;
	box-sizing: border-box;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #fff;
	position: relative;
	padding-right: 45px;
}
section.block02 .column.flow .btnsList > a.entry{
	background: linear-gradient(90deg, rgba(235, 161, 34, 1) 0%, rgba(53, 145, 99, 1) 50%, rgba(11, 105, 166, 1) 100%);
}
section.block02 .column.flow .btnsList > a.rehiring{
	background-color: #00417c;
}
section.block02 .column.flow .btnsList > a::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 18px;
}
section.block02 .column.flow .btnsList > a.entry::before{
	content: 'Entry';
	font-family: "Josefin Sans", sans-serif;
	font-size: 2.3rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	color: #fff;
    display: flex;
    align-items: center;
}
section.block02 .column.flow .btnsList > a.rehiring::before{
	content: '';
    background: url("../images/special/flowicon06.svg") center / contain no-repeat;
    width: 30px;
	height: auto;
    aspect-ratio: 30 / 38;
}
section.block02 .column.flow .btnsList > a::after{
	content: '';
    background: url("../images/special/flowicon07.svg") center / contain no-repeat;
    width: 20px;
	height: auto;
    aspect-ratio: 1 / 1;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 18px;
}

/*------------------------------------------------*/
section.block03{
	position: relative;
	background-color: #0b69a6;
}
section.block03::before{
	content: '';
	width: 100%;
	height: auto;
	aspect-ratio: 720 / 512;
	position: absolute;
	background: #DCF0F9;
	background: linear-gradient(180deg, rgba(220, 240, 249, 1) 0%, rgba(11, 105, 166, 1) 100%);
	top: -50px;
	position: absolute;
}
section.block03::after{
	content: '';
	width: 100%;
	max-height: 311px;
	aspect-ratio: 720 / 622;
	position: absolute;
	background: #006FB2;
	background: linear-gradient(90deg, rgba(0, 111, 178, 1) 0%, rgba(52, 150, 102, 1) 50%, rgba(245, 165, 23, 1) 100%);
	bottom: 0;
	position: absolute;
}
section.block03 > .inn{
	position: relative;
	z-index: 1;
	padding: 50px 0 60px;
}

section.block03 h3.h03-2{
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px 0;
}
section.block03 h3.h03-2 > p:nth-of-type(1){
	font-size: 4.2rem;
	letter-spacing: 0.1em;
	line-height: 100%;
}
section.block03 h3.h03-2 > p:nth-of-type(2){
	font-size: 2.4rem;
	letter-spacing: 0.2em;
	line-height: 100%;
}

/**/
section.block03 .slick_wrap {
    width: 100vw;
    margin-top: 10px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
section.block03 .slick02 {
    width: 100%;
}
section.block03 .slick02 > button {
    width: 11.1111%; /*80*/
    max-width: 40px;
    position: absolute;
    top: 86px;
    z-index: 1;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    color: inherit;
    font: inherit;
    line-height: normal;
    overflow: visible;
    cursor: pointer;
}
section.block03 .slick02 > button img {
    width: 100%;
    height: auto;
}
section.block03 .slick02 > button.slick-prev {
    left: 9.7222%; /*70*/
}
section.block03 .slick02 > button.slick-next {
    right: 11.1111%; /*80*/
}
section.block03 .slick02 .s-slide {
    width: 61.3888%; /*442*/
    max-width: 221px;
    margin: 0 9px;
}
section.block03 .slick02 .s-slide .s_inner {
    width: 100%;
    position: relative;
    cursor: pointer;
}
section.block03 .slick02 .s-slide .s_inner .thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(2, 106, 158, 0.5);
    border-radius: 50%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}
section.block03 .slick02 .s-slide .s_inner .thumb .thumb_inner {
    width: 88.6877%; /*392*/
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
}
section.block03 .slick02 .s-slide .s_inner .thumb .thumb_inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.block03 .slick02 .s-slide .category_area {
    width: 94.5701%; /*418*/
    padding: 8px 0 9px;
    margin: 0 0 -72px 3.1674%; /*14*/
    position: relative;
    ;
    top: -72px;
    z-index: 1;
}
section.block03 .slick02 .s-slide .category_area::before {
    content: '';
    width: 110.0478%; /*460*/
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
section.block03 .slick02 .s-slide .category_area.bumon01::before {
    background: rgba(34, 72, 150, 0.9);
}
section.block03 .slick02 .s-slide .category_area.bumon02::before {
    background: rgba(0, 164, 152, 0.9);
}
section.block03 .slick02 .s-slide .category_area.bumon03::before {
    background: rgba(2, 106, 158, 0.9);
}
section.block03 .slick02 .s-slide .category_area.bumon04::before {
    background: rgba(77, 77, 77, 0.9);
}
section.block03 .slick02 .s-slide .category_area.bumon05::before {
    background: rgba(0, 160, 216, 0.9);
}
section.block03 .slick02 .s-slide .category_area.bumon06::before {
    background: rgba(33, 57, 79, 0.9);
}
section.block03 .slick02 .s-slide .category_area.bumon08::before {
    background: rgba(15, 122, 71, 0.9);
}
section.block03 .slick02 .s-slide .category_area p {
    padding-left: 5.5023%; /*23*/
    box-sizing: border-box;
    font-size: 1.3rem;
    line-height: 1.2573;
    letter-spacing: 0.05em;
    color: #fff;
}
section.block03 .slick02 .s-slide .txt_area {
    width: 81.4479%; /*360*/
    /*min-height: 69px;*/
	min-height: 95px;
    padding: 11px 1.9259em 0 0.9629em; /*52 26*/
    box-sizing: border-box;
    margin-left: 15.6108%; /*69*/
    position: relative;
    z-index: 1;
}
section.block03 .slick02 .s-slide .txt_area::before {
    content: '';
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    /*height: 69px;*/
	height: 95px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
section.block03 .slick02 .s-slide .txt_area::after {
    content: '';
    background: url("../images/common/link_ico_ora.webp")no-repeat;
    background-size: cover;
    width: 11.1111%; /*40*/
    height: auto;
    aspect-ratio: 24 / 7;
    position: absolute;
    bottom: 10px;
    right: -2.7777%; /*-10*/
}
section.block03 .slick02 .s-slide .txt_area p {
    font-size: 1.3rem;
    line-height: 1.3846;
    letter-spacing: 0.1em;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
/**/
section.block03 .no-post-message{
	margin: 100px auto 100px;
	font-size: 1.8rem;
	letter-spacing: 0.2em;
	color: #fff;
	text-align: center;
}
section.block03 .toList{
	width: 82.64%;/*595*/
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
	justify-content: center;
}
section.block03 .toList > a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 45px;
	background-color: #fff;
	-webkit-border-radius: 23px;
	-moz-border-radius: 23px;
	border-radius: 23px;
	box-shadow: 5px 5px 3.5px rgba(140, 211, 242, 0.45);	
	position: relative;
}
a.bgleft::before {
    background: #ef7c1d;
}
section.block03 .toList > a::after{
	content: '';
	width: 20px;
	height: 20px;
	aspect-ratio: 1 / 1;
    background: url("../images/special/icon_circleorangearrow.svg") 0% 0% / contain no-repeat;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
    right: 12px;
}
section.block03 .toList > a span{
	font-size: 1.3rem;
	color: #026a9e;
}

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

section.block04{
	position: relative;
}
section.block04::before{
	content: '';
	width: 100%;
	height: auto;
	aspect-ratio: 721 / 659;
	background: url(../images/special/bg02Smh.webp) center top / cover no-repeat;
	position: absolute;
	top: 0;
	z-index: -1;
}
section.block04 > .inn{
	padding: 42px 0 34px;
}

section.block04 .banneres{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px 0;
}
section.block04 .banneres > a{
	width: calc( 100% - 60px );
	height: auto;
	aspect-ratio: 600 / 200;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #fff;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	background-color: rgba(6,78,122,0.70);
	position: relative;
}
section.block04 .banneres > a::before{
    content: '';
    height: auto;
    aspect-ratio: 1 / 1;
    position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
    left: 25px;
}
section.block04 .banneres > a.question::before{
    background: url("../images/special/icon_question.svg") left top / contain no-repeat;
    width: 30px;
}
section.block04 .banneres > a.guidelines::before{
    background: url("../images/special/icon_guidelines.svg") left top / contain no-repeat;
    width: 25px;
}
section.block04 .banneres > a::after{
    content: '';
    background: url("../images/special/icon_circleorangearrow.svg") left top / contain no-repeat;
    width: 20px;
    height: auto;
    aspect-ratio: 1 / 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
    right: 25px;
}
section.block04 .banneres > a span{
	font-size: 1.6rem;
	color: #fff;
}

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

#footer{
	background: #866AA9;
	background: linear-gradient(55deg, rgba(134, 106, 169, 1) 0%, rgba(11, 105, 166, 1) 33%, rgba(53, 145, 99, 1) 73%, rgba(235, 161, 34, 1) 100%);
}


























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