html{
    font-size: 62.5%;
}

body{
	color: #333;
	background-color: #fff;
	background-repeat: repeat;
	-webkit-font-smoothing: antialiased;/*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-size: 1.5rem;
	line-height: 1.9;
}

.b_wrap{
	position: relative;
}




*{
	margin: 0;
	box-sizing: border-box;
}

a{
	text-decoration: none;
	color: #fff;
	transition: .3s;
}

ul,ol{
	list-style: none;
	padding: 0;
}
svg{
	padding: 0;
	margin: 0;
	vertical-align: bottom;
	min-height: 0%;
}
img{
  	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
	font-size: 0;
}


/*フェードイン*/
.flowup{
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 1200ms, transform 2400ms cubic-bezier(0.165, 0.84, 0.44, 1);
	transition-delay: 350ms;
}

.flowup.de02{
	transition-delay: 400ms;
}
.flowup.de03{
	transition-delay: 450ms;
}
.flowup.de04{
	transition-delay: 500ms;
}

.flowup.inview{
	opacity: 1;
	transform: translateY(0);
}

.flow_left{
	opacity: 0;
	transform: translateX(-100px);
	transition: opacity .6s, transform .5s;
	transition-delay: 0.3s;
}
.flow_left.inview{
	opacity: 1;
	transform: translateX(0);
}

.flow_right .wrap{
	opacity: 0;
	transform: translateX(100px);
	transition: opacity .6s, transform .5s;
	transition-delay: 0.3s;
}
.flow_right.inview .wrap{
	opacity: 1;
	transform: translateX(0);
}

.blurup{
	filter: blur(20px);
	opacity: 0;
	transform: translateY(10%);
	transition: all 3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.blurup.inview{
	filter: blur(0);
	transform: translateY(0%);
	opacity: 1;
}

.ch_blur{
	filter: blur(20px);
	opacity: 0;
	transition: all 3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.ch_blur.inview{
	opacity: 1;
	filter: blur(0px);
}

.flowup2{
	transform: translateY(-40%);
	opacity: 0;
}
.flowup2.inview{
	transform: translateY(0);
	opacity: 1;
}


.imgup {
	position: relative;
	overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition: .4s;
    transition-delay: clip-path 0.9s, scale .6s;
}



.imgup.inview {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.imgup img {
    transition: 2.2s cubic-bezier(0.6, 0, 0.07, 1);
    transform: translateX(-10%) scale(1.4);
}

.imgup.inview img {
    transform: translateX(0) scale(1);
}

.rotation {
    animation: rotateanim 10s linear infinite normal;
}
@keyframes rotateanim{
  0% {
	transform: translate(-50%,-50%) rotate(0);
  }
  100% {
	transform: translate(-50%,-50%) rotate(360deg);
  }
}



.op{
	position: relative;
	z-index: 5;
	opacity: 0;
	transition: all .2s;
	transition-delay: 200ms;
}

.op.inview{
	opacity: 1;
}

span.marker {
    background: linear-gradient(transparent 50%, rgb(235, 252, 4,0.6) 50%);
}


.br_650.marker{
	background: none;
}


.inner{
	margin-left: 60px;
	margin-right: 60px;
}

.wrapper{
	max-width: 1280px;
	margin: 0 auto;
}

.inner.min{
	max-width: 1360px;
	margin: 0 auto;
	width: 86%;
}


.container{
	padding-left: 5%;
	padding-right: 5%;
	margin: 0 auto;
}


.flex_center{
	display: flex;
	justify-content: center;
}

.flex{
    display: flex;
}

.flex_end{
	display: flex;
	justify-content: flex-end;
}

.flex_start{
	display: flex;
	justify-content: flex-start;
}

.flex_bet{
	display: flex;
	justify-content: space-between;
}

.flex_ar{
	display: flex;
	justify-content: space-around;
}

span.zo{
	font-size: 1.2em;
	padding: 5px;
	font-weight: bold;
}



.tate{
	-webkit-writing-mode: vertical-rl; /* Safari用 */
  writing-mode: vertical-rl; /* 縦書き（右から左） */
  /* text-orientation: upright; */ /* 文字を回転させない */
}



.w100{
	width: 100%;
}

.kizi{
	line-height: 2.2;
	font-size: min(1.2vw,1.6rem);
	font-weight: 600;
}

.kizi p{
	letter-spacing: 0.1em;
}

@media (max-width: 1200px){
	.kizi{
		font-size: 1.5rem;
	}
}

@media (max-width: 740px){
	.kizi{
		line-height: 2.2;
		font-size: 1.4rem;
	}
}




/*フィルター*/

.filter{
    position: relative;
}

filter::after{
    content: "";
    display: block;
    position: absolute;
    background-color: rgb(0, 0, 0,0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.filter_w{
	position: relative;
}

.filter_w::after{
    content: "";
    display: block;
    position: absolute;
    background-color: rgb(255, 255, 255,0.4);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/*改行*/

.br_960{
}




.br_none740{
	display: block;
}

.br_none1200{
	display: block;
}

section{
	position: relative;
	padding: 100px 0;
}

@media (max-width: 1400px){
	section{
		padding: 100px 0;
	}
}

@media (max-width: 1200px){
	.br_1200{
		display: block;
	}
	.br_none1200{
		display: inline;
	}
	section{
		padding: 100px 0;
	}
	.kasou .inner{
		margin-left: 40px;
		margin-right: 40px;
	}
}

@media (max-width: 960px){
	.br_960{
		display: block;
	}	
}
@media (max-width: 740px){
	.br_740{
		display: block;
	}
	.br_740.marker{
		background: linear-gradient(transparent 75%, rgb(241, 156, 167,0.7) 75%);;
	}
	section{
        padding: 60px 0;
    }
	.container{
		padding: 0;
	}
	.br_none740{
		display: inline;
	}
	body{
		font-size: 1.4rem;
	}
	.kasou .inner{
		margin-left: 20px;
		margin-right: 20px;
	}
}




/* 文字間 */

.space{
	letter-spacing: 0.05em;
}

.space2{
	letter-spacing: 0.1em;
}

/*  */
.txt_wrappper{
	background-color: #fef8e5;
}

/* 
.txt{
	font-size: 1.45rem;
	font-weight: 500;
	color: #333;
	line-height: 2.5;
} */


@media (max-width: 960px){
	.none_960{
		display: none;
	}
}

@media (max-width: 740px){
	.none_650{
		display: none;
	}
	
	
}


.reverse{
	flex-direction: row-reverse;
}


.center_l{
	display: flex;
	align-items: center;
}

.center_b{
	display: flex;
	align-items: flex-end;
}

body p{
	letter-spacing: 0.05em;
}

i{
	padding-right: 0.4em;
}


.scale-big{
	transform: scale(0);
}

.scale-big.inview{
	animation: scalebig 700ms ease 300ms 1 forwards;
}


@keyframes scalebig{
	0%{
		transform: scale(0);
	}
	60%{
		transform: scale(103%);
	}
	100%{
		transform: scale(100%);
	}
}


.flow_right{
	opacity: 0;
	transform: translateX(100px);
	transition: opacity .6s, transform .5s;
	transition-delay: 0.4s;
}
.flow_right.inview{
	opacity: 1;
	transform: translateX(0);
}
.center{
	text-align: center;
}



/* sub_ttl */



.sub_ttl{
	position: relative;
	text-align: center;
	margin-bottom: 40px;
	background-color: #fff;
	width: fit-content;
	margin: 0 auto 40px;
}

.sub_ttl .en{
	font-size: 6rem;
	display: block;
	letter-spacing: 0.1em;
	line-height: 1.2;
}

.sub_ttl .ja{
	font-size: 1.8rem;
	letter-spacing: 0.1em;
}

.js-text span{
	display: inline-block;
	position: relative;
	transform: translateY(40%);
	opacity: 0;
	transition: all .6s;
}

.js-text.inview span{
	transform: translateY(0);
	opacity: 1;
}

.js-text.inview span:nth-child(1){
	transition-delay: 300ms;
}
.js-text.inview span:nth-child(2){
	transition-delay: 340ms;
}
.js-text.inview span:nth-child(3){
	transition-delay: 380ms;
}
.js-text.inview span:nth-child(4){
	transition-delay: 420ms;
}
.js-text.inview span:nth-child(5){
	transition-delay: 460ms;
}
.js-text.inview span:nth-child(6){
	transition-delay: 500ms;
}
.js-text.inview span:nth-child(7){
	transition-delay: 540ms;
}
.js-text.inview span:nth-child(8){
	transition-delay: 580ms;
}
.js-text.inview span:nth-child(9){
	transition-delay: 620ms;
}
.js-text.inview span:nth-child(10){
	transition-delay: 660ms;
}
.js-text.inview span:nth-child(11){
	transition-delay: 700ms;
}
.js-text.inview span:nth-child(12){
	transition-delay: 740ms;
}
.js-text.inview span:nth-child(13){
	transition-delay: 780ms;
}
.js-text.inview span:nth-child(14){
	transition-delay: 820ms;
}
.js-text.inview span:nth-child(15){
	transition-delay: 860ms;
}
.js-text.inview span:nth-child(16){
	transition-delay: 900ms;
}

.en{
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
}



/* btn */


.m_btn{
	width: 300px;
	margin: 40px auto 0;
}

.m_btn a{
	position: relative;
	display: block;
	padding: 20px 0;
	text-align: center;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	border: solid 1px #fff;
	padding-left: 10px;
	background: linear-gradient(315deg,#00184f 0%, rgba(0, 101, 181, 1) 100%);
}

.m_btn a::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/arrow.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	width: 12px;
	top: 50%;
	left: calc(50% - 86px);
	transform: translate(-50%,-50%);
	transition: all .3s;
}

.m_btn a:hover::before{
	left: calc(50% - 82px);
}

.m_btn a:hover{
	opacity: 0.75;
}



/* header */


.side_menu{
	position: sticky;
	width: 350px;
	
	height: 100vh;
	/* background-color: #333; */
	background: linear-gradient(-90deg,#00184f 0%, rgba(0, 101, 181, 1) 65%);
	top: 0;
}

.side_menu .ch_box{
	min-height: 500px;
	padding: 50px 40px 20px;
	height: 100%;
	overflow-y: scroll;
	-ms-overflow-style: none;
    scrollbar-width: none;	
}

.side_menu .ch_box::-webkit-scrollbar {
    display: none;
}

.side_menu .btn_area{
	margin-top: 40px;
}

.side_menu .btn_area a{
	position: relative;
	border: solid 1px #fff;
	box-shadow: -1px -1px #a3ceff,
    0 0 0.1em #a3ceff, 0 0 0.1em #a3ceff inset,
    0 0 0.15em #a3ceff, 0 0 0.15em #a3ceff inset,
    0 0 0.3em #a3ceff, 0 0 0.3em #a3ceff;
	display: block;
	width: 100%;
	padding: 10px 0;
	padding-left: 25px;
	font-size: 1.8rem;
	letter-spacing: 0.05em;
}

.side_menu .btn_area a::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fff;
	height: 1px;
	width: 7px;
	top: 50%;
	left: 0;
	transition: all .3s;
}

.side_menu .btn_area a:hover::before{
	left: 5px;
}

.side_menu .btn_area .btn+.btn{
	margin-top: 20px;
}

.side_menu .btn_area .btn .mini{
	font-size: 0.86em;
}

.side_menu .btn_area .btn i{
	font-size: 0.86em;
	margin-right: 0.2em;
	color: #f5f5f5;
}

.main_wrap{
	width: calc(100% - 350px);
}

h1{
	margin-bottom: 30px;
}

h1 .txt{
	display: block;
	font-size: 3rem;
	line-height: 1.2;
	letter-spacing: 0.05em;
	padding-right: 20px;
}

h1 .txt .mini{
	display: block;
	font-size: 1.5rem;
	margin-bottom: 3px;
}

h1 .img{
	margin-right: 15px;
}

h1 .img img{
	height: 60px;
}

h1 a{
	align-items: center;
	width: fit-content;
	margin: 0 auto;
}

h1 a:hover{
	opacity: 0.75;
}

.main_nav .en{
	display: block;
	font-size: 1.4rem;
}

.main_nav li a{
	position: relative;
	display: block;
	padding: 18px 0;
	border-bottom: dashed 1px #ccc;
	line-height: 1.5;
	font-size: 1.7rem;
	letter-spacing: 0.04em;
	padding-left: 20px;
}

.main_nav li a::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/arrow.png);
	background-size: cover;
	background-position: center;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	aspect-ratio: 1 / 1;
	width: 10px;
	transition: all .3s;
}

.main_nav li a:hover::before{
	left: 3px;
}

.main_nav li a:hover{
	opacity: 0.75;
}

.hd_btn{
	max-width: 600px;
	margin: 0 auto;
}

.hd_btn a{
	position: relative;
	display: block;
	border: solid 1px #fff;
	box-shadow: -1px -1px #a3ceff,
    0 0 0.1em #a3ceff, 0 0 0.1em #a3ceff inset,
    0 0 0.15em #a3ceff, 0 0 0.15em #a3ceff inset,
    0 0 0.3em #a3ceff, 0 0 0.3em #a3ceff;
	padding: 20px 0;
	
}

.hd_btn a::before {
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fff;
	height: 1px;
	width: 7px;
	top: 50%;
	left: 0;
	transition: all .3s;
}

.hd_btn a:hover::before{
	left: 5px;
}

.hd_btn i{
	margin-right: 0.3em;
}

.main_nav .m_drop .m_drop_area li a{
	display: block;
	width: 100%;
	padding-bottom: 5px;
	border-bottom: 0;
	padding-top: 10px;
	margin-bottom: 0;
	border-bottom: solid 1px rgb(204, 204, 204,0.6);
}

.main_nav .m_drop .m_drop_area li a:hover{
	opacity: 0.75;
	color: #ffff;
}





@media (max-width: 1200px){
	.side_menu{
		position: fixed;
		top: 0;
		height: 80px;
		z-index: 99;
		width: 100%;
		display: flex;
		justify-content: space-between;
		padding: 0;
		padding-left: 20px;
		padding-right: 20px;
	}
	.side_menu .main_nav{
		display: none;
	}
	.side_menu .btn_area{
		display: none;
	}
	.main_wrap{
		width: 100%;
	}
	h1{
		margin: 0;
		display: flex;
		align-items: center;
	}
	h1 .txt{
		padding: 0;
		font-size: 2.4rem;
	}
	h1 .img img{
		height: 50px;
	}
	.side_menu .ch_box{
		display: contents;
	}
}

@media (max-width: 740px){
	.side_menu{
		height: 60px;
		padding-right: 10px;
	}
	h1 .img img{
		height: 36px;
	}
	h1 .txt{
		font-size: 2rem;
	}
	h1 .txt .mini{
		font-size: 1.25rem;
		margin-bottom: 0;
	}
	h1 .img{
		margin-right: 10px;
	}
}





/* fv */


.fv{
	position: relative;
	overflow: hidden;
}


.top_slider{
	position: relative;
	height: 100vh;
	min-height: 400px;
	width: 100%;
	top: 0;
}



.top_slider .slider{
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 2;
	margin: 0 0 0 auto;
}

/* .top_slider .slider::before{
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	background: url(../img/pattern-01.png);
	background-attachment: fixed;
	width: 100%;
	height: 100%;
	z-index: 5;
} */

.top_slider .slider li{
	position: relative;
	width: 100%;
	height: 100%;
	background-size: cover;
	margin: 0;
}

.top_slider .slider li.top01{
	background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0)),url(../img/top02.jpg);
	background-position: center;
	background-size: cover;
	background-position-x: 25%;
}


.catch{
	position: absolute;
	top: 50%;
	left: 50%;
	white-space: nowrap;
	z-index: 5;
	transform: translate(-50%,-50%);
}

.catch h2{
	font-size: min(3.1vw,4.8rem);
	font-weight: 600;
	color: #0065b5;
	text-shadow: 0px 0px 15px rgba(255,255,255,0.9),0px 0px 15px rgba(255,255,255,0.9),0px 0px 15px rgba(255,255,255,0.9),0px 0px 15px rgba(255,255,255,0.9),0px 0px 15px rgba(255,255,255,0.9),0px 0px 15px rgba(255,255,255,0.9),0px 0px 15px rgba(255,255,255,0.9),0px 0px 15px rgba(255,255,255,0.9);
	letter-spacing: 0.03em;
}

.catch h2 .bb{
	font-size: 1.8em;
}

.catch h2 .blo{
	position: relative;
	display: block;
	width: fit-content;
	padding: 0 20px;
	overflow: hidden;
}

.catch h2 .blo+.blo{
	margin-top: 20px;
}
/* 
.catch h2 .mask{
	position: relative;
	opacity: 0;
	z-index: 3;
	transition-delay: .4s;
}

.catch h2 .blo::before{
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #0065b5;
	z-index: 1;
	transform: translateX(-101%);
	transition: all .3s;
}

.catch.inview h2 .blo::before{
	transform: translateX(0);
}

.catch h2 .blo::after{
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 2;
	transform: translateX(-101%);
	transition: all .3s;
	transition-delay: .5s;
}

.catch.inview h2 .blo::after{
	transform: translateX(0);
}

.catch.inview h2 .blo .mask{
	opacity: 1;
} */


.fv_txt{
	position: absolute;
	white-space: nowrap;
	text-align: right;
	bottom: 0;
	right: 0;
	font-size: min(11vw,20rem);
	opacity: 0;
	z-index: 3;
	line-height: 1;
	transform: translateX(20%);
	opacity: 0;
	transition: all 1s;
}

.fv_txt.inview{
	transform: translateX(0);
	opacity: 0.7;
}

@media (max-width: 1200px){
	.top_slider{
		height: 90vh;
	}
	.catch h2{
		font-size: 3.2rem;
	}
}

@media (max-width: 740px){
	.catch h2{
		font-size:2rem;
	}
	.catch h2 .blo{
		padding: 0 10px;
	}
	.sub_ttl .en{
		font-size: 4rem;
	}
	.sub_ttl .ja{
		font-size: 1.5rem;
	}
	.m_btn{
		width: 240px;
	}
	.inner{
		margin-left: 20px;
		margin-right: 20px;
	}
	.m_btn a{
		font-size: 1.4rem;
		padding: 16px 0;
	}
	.sub_ttl{
		margin-bottom: 25px;
	}
	.top_slider{
		height: 80vh;
	}
	.fv_txt br{
		display: none;
	}
}




/* news */


.news{
	position: relative;
}

.naname01::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #075a9e;
	top: 0;
	right: 0;
	height: 100%;
	width: 400px;
	clip-path: polygon(35% 0, 100% 0, 65% 100%, 0 100%);
	z-index: -1;
}
.naname02::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #075a9e;
	top: 0;
	left: 0;
	height: 100%;
	width: 400px;
	clip-path: polygon(0 0, 65% 0, 100% 100%, 35% 100%);
	z-index: -1;
}


.news_wrapper {
	max-width: 1080px;
	margin: 0 auto;
}

.news_wrapper li a{
	display: block;
	border-top: solid 1px #aaa;
	padding: 20px 0;
	padding-left: 10px;
	color: #333;
}

.news_wrapper li .up_ymd{
	display: inline-block;
	border: solid 1px #0065b5;
	font-size: 1.5rem;
	padding: 3px 10px;
	margin-right: 16px;
	letter-spacing: 0.05em;
	color: #0065b5;
}

.news_wrapper li:last-child a{
	border-bottom: solid 1px #aaa;
}

.news .kiri{
	position: absolute;
	bottom: -80px;
	left: 60px;
	width: 11%;
	z-index: 5;
	min-width: 150px;
}

.news_wrapper li a:hover{
	opacity: 0.75;
}

@media (max-width: 740px){
	.news_wrapper li .up_ymd{
		font-size: 1.25rem;
		padding: 3px 6px;
	}
	.news .kiri{
		width: 80px;
		left: 10px;
		min-width: auto;
	}
	.naname01::before{
		width: 60%;
	}
	.naname02::before{
		width: 60%;
	}
}




/* greeting */


.greeting{
	padding-top: 0;
	padding-bottom: 0;
}
.greeting h3{
	font-size: 3.8rem;
	letter-spacing: 0.03em;
	text-align: center;
	margin-bottom: 40px;
	color: #fff;
	font-weight: 600;
}

.greeting .item .qq{
	font-size: 2.4rem;
	font-weight: 600;
}

.greeting .item .aa{
	font-size: 3rem;
	font-weight: 600;
}

.greeting .item{
	position: relative;
	background-color: #fff;
	width: 48.5%;
	padding: 30px;
}

.greeting .item::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #ccc;
	bottom: 0;
	right: 0;
	aspect-ratio: 1 / 1;
	width: 60px;
	height: 60px;
	clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.greeting .txt_box{
	font-size: 1.8rem;
}

.greeting .top_area{
	position: relative;
	background: url(../img/gre_bg02.jpg);
	background-size: cover;
	background-position: center;
	padding: 100px 0;
}

.greeting .top_area::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: rgb(7, 90, 158,0.65);
	backdrop-filter: blur(3px);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
}

.greeting .top_area .inner{
	position: relative;
	z-index: 1;
}

.greeting .btm_area{
	background-color: #fff;
	padding: 80px 0;
}

.greeting .btm_area .left{
	width: 38%;
}
.greeting .btm_area .right{
	width: 55%;
}

.greeting .btm_area .left img{
	width: 100%;
	height: 270px;
	object-fit: cover;
}

.greeting .right .m_btn{
	margin-left: 0;
}

.greeting .wrap{
	max-width: 1080px;
	margin: 0 auto;
}


@media (max-width: 1200px){
	.greeting .top_area .flex_bet{
		flex-direction: column;
	}
	.greeting .item{
		width: 100%;
	}
	.greeting .item+.item{
		margin-top: 20px;
	}
	.greeting .wrap{
		flex-direction: column;
	}
	.greeting .btm_area .right{
		width: 100%;
		justify-content: center;
	}
	.greeting .btm_area .left{
		width: 100%;
		margin-bottom: 40px;
	}
	.greeting .btm_area .left .img img{
		height: 380px;
		width: 100%;
		object-fit: cover;
	}
	.greeting .right .m_btn{
		margin: 40px auto 0;
	}
}

@media (max-width: 740px){
	.greeting h3{
		font-size: 2rem;
		margin-bottom: 25px;
	}
	.greeting .item .qq{
		font-size: 1.7rem;
	}
	.greeting .item .aa{
		font-size: 2rem;
	}
	.greeting .item{
		padding: 15px;
	}
	.greeting .top_area{
		padding: 60px 0;
	}
	.greeting .btm_area{
		padding: 60px 0;
	}
	.greeting .btm_area .left .img img{
		height: 220px;
	}
	.greeting .txt_box{
		font-size: 1.5rem;
	}
	.greeting .right .m_btn{	
		margin: 40px auto 0;
	}
}




/* video */



.video_sec .video iframe{
	max-width: 1080px;
	width: 100%;
	aspect-ratio: 16 / 9;
	margin: 0 auto;
	display: block;
}

.video_sec .inner{
	position: relative;
}

.video_sec .ac_img{
	position: absolute;
	bottom: -260px;
	left: 0;
	width: 13%;
	max-width: 200px;
	min-width: 130px;
	z-index: 2;
}

@media (max-width: 1200px){
	.video_sec .ac_img{
		width: 130px;
		min-width: auto;
		left: -40px;
	}
}
@media (max-width: 740px){
	.video_sec .ac_img{
		width: 100px;
		left: -20px;
		bottom: -150px;
	}
}




/* promise */


.promise{
	position: relative;
	background-color: #e5f3ff;
}

.promise .sub_ttl{
	background-color: rgb(255, 255, 255,0);
}

.promise .item{
	position: relative;
	width: 100%;
	background-color: #fff;
	padding: 20px 0;
	max-width: 700px;
	margin: 0 auto;
}

.promise .item+.item{
	margin-top: 20px;
}

.promise .item h4{
	position: relative;
	font-size: 2rem;
	text-align: center;
	font-weight: 700;
	color: #0065b5;
}

.promise .item h4::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/check.jpg);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	width: 19px;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
}

.promise .item .ac_txt{
	position: absolute;
	top: -35px;
	left: 10px;
	font-size: 5.6rem;
	line-height: 1;
	opacity: 0.4;
}

.promise .ac_img01{
	position: absolute;
	top: 0;
	right: 0;
	width: 130px;
	z-index: 2;
}
.promise .ac_img02{
	position: absolute;
	top: -20px;
	right: 0;
	width: 180px;
	z-index: 2;
}

.promise .inner{
	position: relative;
}


@media (max-width: 1200px){
	.promise .ac_img02{
		width: 140px;
	}
}

@media (max-width: 740px){
	.promise .item h4{
		font-size: 1.6rem;
	}
	.promise .item h4::before{
		width: 15px;
	}
	.promise .item+.item{
		margin-top: 10px;
	}
	.promise .ac_img02{
		width: 100px;
		top: -100px;
	}
}






/* sec_img */




.sec_img .img img{
	height: 650px;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.sec_img{
	position: relative;
}

.sec_img::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: linear-gradient(315deg,rgba(0, 9, 30, 0.6) 0%, rgba(4, 57, 101, 0.6) 100%);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.sec_img .ac_txt{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #fff;
	white-space: nowrap;
	font-size: 8rem;
	font-style: italic;
	/* background: linear-gradient(#fff 60%, #0065b5 50%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-transform: uppercase; */
	white-space: nowrap;
	z-index: 2;
	letter-spacing: 0.05em;
}

.sec_img .ac_img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 160px;
	opacity: 0.5;
}


@media (max-width: 1200px){
	.sec_img .ac_txt{
		font-size: 5.4rem;
	}
}

@media (max-width: 740px){
	.sec_img .ac_txt{
		font-size: 3.4rem;
	}
	.sec_img .ac_img{
		width: 100px;
	}
	.sec_img .img img{
		height: 300px;
	}
	
}







/* contents */



.contents{
	position: relative;
}

.contents .kiri{
	position: absolute;
	top: -60px;
	left: 40px;
	width: 140px;
}

.contents .item{
	width: calc(100% / 3);
}

.contents .item_list{
	background-image: url(../img/con_bg.jpg);
	background-size: cover;
	background-position: center;
	border: solid 1px #ccc;
}

.contents .item a{
	position: relative;
	display: block;
	padding: 270px 0;
	overflow: hidden;
	border-right: solid 1px #ccc;
}

.contents .item:last-child a{
	border-right: 0;
}

.contents .item .txt{
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.contents .item .txt .en{
	display: block;
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.1em;
}

.contents .item .txt h4{
	position: relative;
	text-align: center;
	font-size: 2.6rem;
	letter-spacing: 0.1em;
	line-height: 1.4;
	padding-bottom: 90px;
	white-space: nowrap;
}

.contents .item .txt h4::before{
	content: "";
	display: inline-block;
	position: absolute;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	border: solid 1px #fff;
	width: 42px;
	left: 50%;
	bottom: -15px;
	transform: translateX(-50%);
}

.contents .item .txt h4::after{
	content: "\f124";
	position: absolute;
	display: inline-block;
	bottom: -1px;
	left: 50%;
	font-family: "Font Awesome 7 Free";
	font-weight: bold;
	transform: translateX(-50%) rotate(45deg);
	font-size: .9rem;
	opacity: 0.9;
}

.contents .item .bg{
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all .5s;
}

.contents .item .bg img{
	width: 100%;
	height: 540px;
	object-fit: cover;
	transition: all 1.4s;
}

.contents .item a:hover .bg{
	opacity: 1;
}

.contents .item a:hover .bg img{
	transform: scale(1.08);
}

@media (max-width: 1400px){
	.contents .item a{
		padding: 200px 0;
	}
	.contents .item .bg img{
		height: 400px;
	}
	.contents .kiri{
		width: 140px;
		min-width: auto;
	}
}

@media (max-width: 1200px){
	.contents .kiri{
		width: 110px;
	}
	.contents .item .txt h4{
		font-size: 2.2rem;
	}
}


@media (max-width: 740px){
	.contents .kiri{
		left: 20px;
		width: 80px;
		min-width: auto;
	}
	.contents .item_list{
		flex-direction: column;
	}
	.contents .item a{
		border-right: 0;
		border-bottom: solid 1px #ccc;
		padding: 120px 0;
	}
	.contents .item{
		width: 100%;
	}
	.contents .item .txt h4{
		padding-bottom: 40px;
		font-size: 1.8rem;
	}
	.contents .item .bg img{
		height: 240px;
	}
	.contents .item .txt .en{
		font-size: 2.2rem;
	}
	.contents .item .txt h4::before{
		width: 36px;
	}
	.contents .item .txt h4::after{
		font-size: .7rem;
		bottom: -3px;
	}
}




/* footer */



.foo_top{
	position: relative;
	background: url(../img/foo_bg.jpg);
	background-size: 100% auto;
	background-position: center;
	padding: 100px 0;
	background-attachment: fixed;
}

.foo_top::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: linear-gradient(315deg,rgba(0, 9, 30, 0.8) 0%, rgba(4, 57, 101, 0.8) 100%);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.foo_top .inner{
	position: relative;
	z-index: 1;
}

.foo_top .btn_area{
	max-width: 1080px;
	margin: 0 auto;
}

.foo_top .btn{
	max-width: 300px;
	width: 32%;
}

.foo_top .btn .mini{
	font-size: 0.86em;
}

.foo_top .btn a{
	display: block;
	border: solid 1px #fff;
	text-align: center;
	padding: 18px 0;
	font-size: 2rem;
	letter-spacing: 0.1em;
}

.foo_top .btn i{
	margin-right: 0.3em;
	font-size: 0.9em;
}

.foo_top .btn a:hover{
	opacity: 0.75;
}

.foo_top .sub_ttl{
	background-color: rgb(255, 255, 255,0);
}

.foo_top .sub_ttl .en{
	color: #fff;
}
.foo_top .sub_ttl .ja{
	color: #fff;
}

.foo_btm{
	padding-bottom: 100px;
}

.foo_btm .left{
	width: 380px;
}
.foo_btm .right{
	width: calc(96% - 380px);
}

.foo_btm .map{
	margin-bottom: 100px;
}

.foo_btm iframe{
	width: 100%;
	height: 450px;
}

.foo_btm table{
	position: relative;
	width: 100%;
}

.foo_btm table::before{
	content: "";
	display: inline-block;
	position: absolute;
	width: 10px;
	height: calc(100% + 1px);
	background-color: #fff;
	z-index: 1;
	top: 0;
	left: 23%;
}

.foo_btm table th{
	width: 25%;
}

.foo_btm table td{
	width: 75%;
}

.foo_btm table th,.foo_btm table td{
	padding: 20px 0;
	border-top: solid 1px #ccc;
	padding-left: 5px;
}
.foo_btm table tr:last-child th,.foo_btm table tr:last-child td{
	border-bottom: solid 1px #ccc;
}

.site_map{
	position: relative;
	background-color: #075a9e;
	padding: 80px 0;
}

.site_map .foo_nav{
	margin-bottom: 30px;
}

.site_map .foo_nav a{
	position: relative;
	padding-left: 14px;
	letter-spacing: 0.03em;
	display: block;
}

.site_map .foo_nav li+li{
	margin-left: 30px;
}

.site_map .foo_nav a::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/arrow.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	width: 10px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	transition: all .3s;
}

.site_map .foo_nav a.mini{
	position: relative;
	font-size: 0.86em;
	margin-top: 10px;
}

.site_map .foo_nav a.mini+a.mini{
	margin-top: 3px;
}

.site_map .foo_nav a.mini::after{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fff;
	top: 50%;
	left: 2px;
	height: 1px;
	width: 5px;
}

.site_map .foo_nav a.mini::before{
	display: none;
}

.site_map .foo_nav a:hover::before{
	left: 2px;
}

.site_map .foo_nav a:hover{
	opacity: 0.75;
}

.site_map .inner{
	position: relative;
	z-index: 1;
	margin-left: 20px;
	margin-right: 20px;
}

.copy{
	text-align: center;
}

.copy p{
	letter-spacing: 0.1em;
	color: #fff;
}


@media (max-width: 1200px){
	.foo_btm .flex_bet{
		flex-direction: column-reverse;
	}
	.foo_btm .right{
		width: 100%;
	}
	.foo_btm .left{
		width: 50%;
		margin: 0 auto;
		margin-top: 40px;
	}
}


@media (max-width: 740px){
	.foo_top .btn_area{
		flex-direction: column;
	}
	.foo_top .btn{
		width: 100%;
		margin: 0 auto;
	}
	.foo_top .btn a{
		font-size: 1.6rem;
	}
	.foo_top .btn+.btn{
		margin-top: 16px;
	}
	.foo_top{
		padding: 60px 0;
	}
	.foo_btm{
		padding-bottom: 50px;
	}
	.foo_btm iframe{
		height: 300px;
	}
	.foo_btm .map{
		margin-bottom: 50px;
	}
	.foo_btm .left{
		width: 70%;
	}
	.site_map .foo_nav{
		flex-direction: column;
	}
	.site_map .foo_nav li+li{
		margin-left: 0;
		margin-top: 15px;
	}
	.site_map .foo_nav li a{
		border-bottom: solid 1px #777;
		padding-bottom: 5px;
	}
	.site_map .foo_nav li a.mini{
		border: 0;
		padding: 0;
		padding-left: 15px;
	}
	.site_map .foo_nav a::before{
		top: 42%;
	}
	.copy{
		font-size: 1.2rem;
	}
	.site_map{
		padding-top: 50px;
	}
	.foo_btm table th, .foo_btm table td{
		padding-top: 14px;
		padding-bottom: 14px;
	}
}



/* page top */




.page_top.is_animation{
	opacity: 1;
	pointer-events: all;
}

.page_top{
	opacity: 0;
    pointer-events: none;
    width: 100px;
    position: fixed;
    right: 3%;
    bottom: 5%;
    opacity: 0;
    transition: 1s;
    z-index: 49;
}


.page_top a {
    display: block;
    position: relative;
	font-size: 1.8rem;
    z-index: 10;
    width: 100%;
    height: 100%;
}

.page_top a .en{
	display: inline-block;
	background-color: #000;
	line-height: 1.4;
	padding: 0 3px;
}


.page_top.is_animation:hover {
    transform: translateY(-5px);
}

@media (max-width: 740px){
    .page_top {
		width: 70px;
		bottom: 3%;
    }
	.page_top a{
		font-size: 1.4rem;
	}
	.page_top a .en{
		padding: 0;
	}
}


/* 下層トップ */


.kasou_top{
	position: relative;
	background: url(../img/sec_img.jpg);
	background-size: cover;
	background-position: center;
}

.kasou_top::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: rgb(0, 0, 0,0.8);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.kasou_top .inner{
	position: relative;
	padding: 100px 0;
	z-index: 1;
}

.kasou_top h2{
	text-align: center;
	color: #fff;
}

.kasou_top h2 .en{
	font-size: 8.2rem;
	display: block;
	letter-spacing: 0.05em;
	line-height: 1.4;
}

.kasou_top h2 .ja{
	font-size: 1.8rem;
}

.kasou_top ol{
	position: relative;
	background-color: #eee;
	padding: 3px 20px;
	font-size: 1.3rem;
	z-index: 1;
}

.kasou_top ol li a{
	position: relative;
	display: block;
	padding-right: 20px;
	color: #333;
	font-size: 1.3rem;
}

.kasou_top ol li{
	letter-spacing: 0.04em;
}

.kasou_top ol li+li{
	margin-left: 8px;
}

.kasou_top ol li a::before{
	content: ">";
	display: inline-block;
	position: absolute;
	font-size: 1.6rem;
	top: 44%;
	right: 0;
	transform: translateY(-50%);
}


@media (max-width: 1200px){
	.kasou_top h2 .en{
		font-size: 6.8rem;
	}
	.kasou_top{
		padding-top: 70px;
	}
}
@media (max-width: 740px){
	.kasou_top h2 .en{
		font-size: 5rem;
	}
	.kasou_top .inner{
		padding: 60px 0 80px;
	}
}




/* 下層　仕事内容 */

.job_top {
	position: relative;
	background-color: #075a9e;
}

.job_top .inner{
	position: relative;
	max-width: 1080px;
	margin: 0 auto;
	background-color: #f5f5f5;
	padding-left: 80px;
	padding-top: 50px;
	padding-bottom: 80px;
	width: 90%;
}


.job_top .ac_txt{
	position: absolute;
	bottom: 0;
	right: 20px;
	font-size: 14rem;
	color: #777;
	line-height: 1;
	opacity: 0.1;
}

.job_top h4{
	position: relative;
	font-size: 3.8rem;
	letter-spacing: 0.05em;
	border-right: solid 2px #ccc;
	padding: 10px 0;
	padding-right: 5px;
}

.job_top h4::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #075a9e;
	top: 0;
	right: -2px;
	width: 2px;
	height: 40px;
	z-index: 1;
}

.job_top .left{
	width: 75%;
	margin-top: 40px;
}
.job_top .right{
	width: 25%;
}

.job_top .right .tate{
	margin: 0 auto;
}

.job_top .txt_box{
	max-width: 700px;
}

.job_top .txt_box p+p{
	margin-top: 15px;
}

.job_top .ac_img{
	position: absolute;
	bottom: -40px;
	right: 30px;
	max-width: 120px;
	width: 10%;
	transform: rotate(5deg);
}
.job_top .ac_img02{
	position: absolute;
	bottom: -40px;
	left: 30px;
	width: 10%;
	max-width: 120px;
	transform: rotate(-5deg);
}



.p_job .inner{
	max-width: 1200px;
	margin: 0 auto;
	width: 90%;
}



.sub_ttl02{
	position: relative;
	font-size: 2.6rem;
	letter-spacing: 0.1em;
	margin-bottom: 40px;
	border: solid 2px #ccc;
	padding: 14px 0;
	padding-left: 30px;
}


.sub_ttl02 .en{
	letter-spacing: normal;
	font-size: 1.6rem;
	color: #777;
	display: inline-block;
	margin-left: 10px;
}

.sub_ttl02::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #075a9e;
	height: 3px;
	width: 20px;
	top: 50%;
	left: -10px;
}

.p_job .left{
	width: 35%;
}

.p_job .left .img img{
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.p_job .right{
	width: 65%;
	background-color: #eee;
	padding: 0 40px;
}

.p_job h4{
	position: relative;
	font-size: 2.4rem;
	letter-spacing: 0.04em;
	margin-bottom: 20px;
	border-bottom: solid 2px #ccc;
	padding-bottom: 5px;
	color: #075a9e;
}

.p_job h4::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #075a9e;
	bottom: -2px;
	left: 0;
	width: 80px;
	height: 2px;
	z-index: 1;
}

.p_job h4 .en{
	display: inline-block;
	margin-right: 10px;
	letter-spacing: 0.04em;
}

.p_job .item+.item{
	margin-top: 20px;
}

.p_job .wrap+.wrap{
	margin-top:120px;
}


@media (max-width: 1200px){
	.p_job h4{
		font-size: 2.2rem;
	}
	.p_job .right{
		padding: 0 20px;
	}
	.sub_ttl02{
		font-size: 2.2rem;
		margin-bottom: 20px;
	}
	.job_top .ac_img{
		width: 100px;
	}
	.job_top .ac_img02{
		width: 100px;
	}
}

@media (max-width: 740px){
	.sub_ttl02{
		padding-left: 20px;
		font-size: 2rem;
		line-height: 1.6;
	}
	.p_job .item .flex_bet{
		flex-direction: column;
	}
	.p_job h4{
		font-size: 1.8rem;
	}
	.p_job .left{
		width: 100%;
	}
	.p_job .right{
		width: 100%;
		padding: 20px;
	}
	.p_job .left .img img{
		height: 200px;
	}
	.sub_ttl02 .en{
		display: block;
		margin-left: 0;
		font-size: 1.2rem;
	}
	.p_job .wrap+.wrap{
		margin-top: 50px;
	}
	.job_top .inner{
		padding-left: 20px;
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.job_top h4{
		font-size: 2.4rem;
	}
	.job_top .ac_txt{
		font-size: 8rem;
	}
	.job_top .ac_img{
		width: 60px;
	}
	.job_top .ac_img02{
		width: 60px;
	}
}





/* 下層　働く環境 */


.setting_top .left{
	width: 46%;
}
.setting_top .left .img img{
	width: 100%;
	height: 440px;
	object-fit: cover;
}

.setting_top .right{
	width: 50%;
}

.setting_top h3{
	position: relative;
	font-size: 2rem;
	border-bottom: solid 3px #ccc;
	margin-bottom: 30px;
	padding-bottom: 7px;
	font-weight: 700;
	color: #075a9e;
}

.setting_top h3 .bb{
	font-size: 3.2rem;
	color: #333;
	display: block;
}

.setting_top h3::before{
	content: "";
	display: inline-block;
	position: absolute;
	background:#075a9e;
	bottom: -3px;
	left: 0;
	width: 80px;
	height: 3px;
	z-index: 1;
}

.point{
	background-color: #e5f3ff;
}

.point .item_area{
	gap: 10px;
	flex-wrap: wrap;
}

.point .item{
	background-color: #fff;
	width: calc((100% - 10px) / 2);
	padding: 30px;
}

.point .item h4{
	position: relative;
	font-size: 2.2rem;
	border-bottom: solid 2px #ccc;
	padding-bottom: 5px;
	margin-bottom: 15px;
	font-weight: 600;
}

.point .item h4::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #075a9e;
	height: 2px;
	bottom: -2px;
	left: 0;
	width: 40px;
	z-index: 1;
}

.point .item h4 .en{
	position: relative;
	display: block;
	font-size: 1.6rem;
	padding-left: 14px;
	color: #075a9e;
}

.point .item h4 .en::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #075a9e;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	top: 50%;
	left: 0;
	width: 5px;
	transform: translateY(-50%);
}


.shien{
	background: url(../img/blue_bg.jpg);
	background-size: cover;
	background-position: center;
}

.shien ul{
	flex-wrap: wrap;
	margin-bottom: 10px;
}

.shien ul li{
	position: relative;
	padding-left: 20px;
	letter-spacing: 0.04em;
	margin-right: 20px;
}

.shien ul li::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/check.jpg);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	width: 14px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.shien .btm_box{
	background-color: #f5f5f5;
	margin-top: 40px;
	padding: 25px;
}

.shien .inner{
	background-color: rgb(255, 255, 255,0.85);
	padding: 60px 80px;
}

.shien .btm_box h4{
	position: relative;
	font-size: 2.2rem;
	letter-spacing: 0.05em;
	padding-bottom: 3px;
	border-bottom: solid 2px #ccc;
	margin-bottom: 20px;
}

.shien .btm_box h4::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #075a9e;
	width: 50px;
	height: 2px;
	left: 0;
	bottom: -2px;
	z-index: 1;
}

.shien .sub_ttl{
	background-color: rgb(255, 255, 255,0);
}

.number{
	background-color: #eee;
}

.number h3 .ac{
	background-color: #075a9e;
	color: #fff;
	display: inline-block;
	padding: 3px 10px;
	letter-spacing: 0.1em;
	display: block;
	width: fit-content;
	font-size: 1.6rem;
	margin: 0 auto;
}

.number h3{
	font-size: 3.6rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 40px;
}

.number h3 .mini{
	font-size: 0.6em;
}

.number .item_list{
	gap: 10px;
	flex-wrap: wrap;
}

.number .item{
	background-color: #fff;
	width: calc((100% - 20px) / 3);
	padding: 25px;
	border: solid 2px #777;
}

.number .inner{
	max-width: 1200px;
	margin: 0 auto;
	width: 90%;
}

.number .item {
	position: relative;
}

.number .item p.mini{
	font-size: 1.4rem;
}
.number .item .num{
	font-weight: 900;
	font-size: 2.2rem;
}
.number .item .num .color{
	font-size: 6.2rem;
	color: #075a9e;
	display: inline-block;
	margin-right: 7px;
	margin-left: 7px;
}

.number .item h4{
	font-size: 2rem;
	letter-spacing: 0.07em;
	font-weight: 700;
	border-left: solid 4px #075a9e;
	padding-left: 10px;
	line-height: 1.6;
}

.number .item span.red{
	color: #c92664;
}

.number .item span.bla{
	color: #333;
}

.number .item.tp03 .ac_img{
	position: absolute;
	top: 30px;
	right: 30px;
	width: 100px;
}
.number .item.tp06 .ac_img{
	position: absolute;
	bottom: 15px;
	right: 30px;
	width: 150px;
}

.number .item.tp01 .ac_img{
	position: absolute;
	bottom: 0px;
	right: 30px;
	width: 110px;
}

.number .item.tp02 .ac_img{
	position: absolute;
	bottom: 0px;
	right: 30px;
	width: 110px;
}
.number .item.tp04 .ac_img{
	position: absolute;
	top: 70px;
	right: 30px;
	width: 90px;
}
.number .item.tp05 .ac_img{
	position: absolute;
	top: 70px;
	right: 30px;
	width: 90px;
}

.flow .inner{
	max-width: 1200px;
	margin: 0 auto;
	width: 90%;
}

.flow .txt_box{
	text-align: center;
	margin-bottom: 40px;
}



.flow .item p{
	font-size: 1.8rem;
	font-weight: 700;
	padding: 10px 0;
	padding-left: 50px;
}

.flow .item .en{
	display: inline-block;
	color: #075a9e;
	font-weight: 900;
	margin-right: 20px;
}
.flow .item{
	position: relative;
	background-color: #eee;
	border-radius: 50px;
}

.flow .item+.item{
	margin-top: 10px;
}

.flow .item::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #075a9e;
	aspect-ratio: 1 / 1;
	width: 10px;
	border-radius: 50%;
	top: 50%;
	left: 18px;
	transform: translateY(-50%);
}

.flow .left{
	width: 40%;
}

.flow .right{
	width: 55%;
}

.flow .left .img img{
	width: 100%;
	height: 600px;
	object-fit: cover;
}

.flow .ch{
	font-size: 1.5rem;
	text-align: left;
	text-decoration: underline;
}

.sdg{
	background-color: #075a9e;
}

.sdg h3{
	position: relative;
	font-size: 3.2rem;
	letter-spacing: 0.04em;
	border-bottom: solid 2px #ccc;
	margin-bottom: 20px;
}

.sdg h3::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #075a9e;
	height: 2px;
	bottom: -2px;
	left: 0;
	width: 80px;
	z-index: 1;
}

.sdg .txt_box{
	font-size: 1.8rem;
}

.sdg .inner{
	max-width: 1200px;
	margin: 0 auto;
	width: 90%;
}

.sdg .left{
	width: 30%;
}

.sdg .right{
	width: 70%;
	padding: 0 60px;
	padding-top: 30px;
}

.sdg .wrap{
	position: relative;
	background-color: #fff;
	padding: 40px;
}

.sdg .ac_img{
	position: absolute;
	bottom: 40px;
	right: 40px;
	width: 150px;
}


@media (max-width: 1400px){
	.number .item .num .color{
		font-size: 5rem;
	}
	.number .item h4{
		font-size: 1.8rem;
	}
	.number .item{
		padding: 15px;
	}
	.number .item.tp03 .ac_img{
		width: 80px;
		top: 20px;
		right: 20px;
	}
	.number .item.tp05 .ac_img{
		width: 70px;
		top: 55px;
	}
	.number .item.tp04 .ac_img{
		width: 70px;
		top: 50px;
	}
	.number .item.tp06 .ac_img{
		width: 120px;
	}
	.sdg .ac_img{
		bottom: 0;
		right: 0;
		width: 100px;
	}
	.setting_top h3 .bb{
		font-size: 2.8rem;
	}
}

@media (max-width: 1200px){
	.number .item{
		width: calc((100% - 10px) / 2);
	}
	.sdg .right{
		padding-top: 10px;
		padding-left: 30px;
		padding-right: 30px;
	}
	.sdg h3{
		font-size: 2.8rem;
	}
	.sdg .wrap{
		padding: 30px;
	}
	.sdg{
		padding: 80px 0;
	}
	.shien .inner{
		padding: 60px 40px;
	}
	.setting_top .flex_bet{
		flex-direction: column;
	}
	.setting_top .right{
		width: 100%;
		background-color: rgb(255, 255, 255,0.9);
		padding: 20px;
	}
	
	.setting_top .left{
		width: 100%;
		margin-bottom: 30px;
	}
	.sdg .left{
		width: 40%;
	}
	.sdg .right{
		width: 60%;
	}
	.flow .flex_bet{
		flex-direction: column;
	}
	.flow .left{
		width: 100%;
		margin-bottom: 50px;
	}
	.flow .left .img img{
		height: 400px;
	}
	.flow .right{
		width: 100%;
	}
}


@media (max-width: 740px){
	.setting_top .left .img img{
		height: 200px;
	}
	.point .item{
		width: 100%;
	}
	.point .item h4{
		font-size: 1.8rem;
	}
	.shien .inner{
		padding: 50px 20px;
	}
	.shien .txt_box{
		text-align: left;
	}
	.shien .btm_box h4{
		font-size: 1.8rem;
	}
	.shien ul{
		display: block;
	}
	.number h3{
		font-size: 3rem;
	}
	.number h3 .ac{
		font-size: 1.4rem;
	}
	.number .item{
		width: 100%;
	}
	.number .item .num .color{
		font-size: 4rem;
	}
	.number .item.tp06 .ac_img{
		width: 80px;
	}
	.number .item.tp05 .ac_img{
		width: 50px;
	}
	.number .item.tp04 .ac_img{
		width: 50px;
	}
	.number .item.tp01 .ac_img{
		width: 80px;
	}
	.number .item.tp02 .ac_img{
		width: 80px;
	}
	.flow .left .img img{
		height: 200px;
	}
	.flow .item p{
		font-size: 1.6rem;
		padding-left: 30px;
	}
	.flow .item::before{
		width: 6px;
		left: 10px;
	}
	.flow .item .en{
		margin-right: 10px;
	}
	.flow .txt_box{
		margin-bottom: 25px;
	}
	.flow .left{
		margin-bottom: 30px;
	}
	.sdg .wrap{
		flex-direction: column;
	}
	.sdg .left{
		width: 100%;
	}
	.sdg .right{
		width: 100%;
		padding-left: 0;
		padding-right: 0;
		padding-top: 20px;
	}
	.sdg h3{
		font-size: 2rem;
		margin-bottom: 15px;
	}
	.sdg .txt_box{
		font-size: 1.4rem;
	}
	.sdg .ac_img{
		bottom: -50px;
		right: -18px;
		width: 80px;
	}
	.sdg{
		padding: 50px 0;
	}
	.setting_top h3 .bb{
		font-size: 2.2rem;
	}
	.setting_top h3{
		font-size: 1.6rem;
		margin-bottom: 20px;
	}
}


/* 下層　会社の雰囲気 */


.message{
	position: relative;
	background: url(../img/top01.jpg);
	background-size: cover;
	background-position: center;
}

.message::before {
    content: "";
    display: inline-block;
    position: absolute;
    background-color: rgb(7, 90, 158, 0.65);
    backdrop-filter: blur(3px);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.message .txt_box p+p{
	margin-top: 15px;
}

.message h4{
	position: relative;
	font-size: 3rem;
	border-bottom: solid 3px #ccc;
	padding-bottom: 7px;
	margin-bottom: 40px;
}

.message h4::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #075a9e;
	bottom: -3px;
	left: 0;
	width: 120px;
	height: 3px;
	z-index: 0;
}

.message .btm_box{
	text-align: right;
	margin-top: 40px;
	font-size: 1.8rem;
}

.message .wrap{
	background-color: rgb(245, 245, 245,0.9);
	padding: 50px;
}

.message .btm_box .bb{
	font-size: 1.4em;
}

.message .inner{
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	z-index: 1;
	width: 90%;
}
.message .sub_ttl{
	background-color: rgb(255, 255, 255,0);
}


.staff {
	background-color: #075a9e;
}

.staff .item p{
	font-size: 2.2rem;
	padding-left: 34px;
	padding-right: 34px;
	letter-spacing: 0.1em;
	font-weight: 600;
}

.staff .sub_ttl{
	background-color: rgb(255, 255, 255,0);
	color: #fff;
}


.staff .qq{
	position: relative;
	background-color: #e5f3ff;
	padding: 20px 0;
	border-radius: 10px;
}

.staff .qq::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/hukidashi.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	width: 68px;
	top: 46px;
	left: 10px;
	transform: translateY(-50%);
}


.staff .aa{
	position: relative;
	background-color: #fff;
	padding: 20px 0;
	border-radius: 10px;
	margin-top: 10px;
}

.staff .aa::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/hukidashi.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	width: 68px;
	top: 46px;
	left: 10px;
	transform: translateY(-50%);
}

.staff .mark{
	position: relative;
	font-size: 1.2em;
	z-index: 1;
	display: inline-block;
	color: #fff;
	margin-right: 30px;
}

.staff .item+.item{
	margin-top: 30px;
}

.staff .inner{
	max-width: 1200px;
	margin: 0 auto;
	width: 90%;
}



.gallery{
	background-color: #eee;
}

.gallery .sub_ttl{
	background-color: rgb(255, 255, 255,0);
}

@media (max-width: 1200px){
	.message h4{
		font-size: 2.6rem;
	}
	.staff .item p{
		font-size: 2rem;
		padding-left: 30px;
	}
	.staff .qq::before{
		top: 43px;
		width: 60px;
	}
	.staff .aa::before{
		width: 60px;
		top: 43px;
	}
}

@media (max-width: 740px){
	.message h4{
		font-size: 2rem;
		margin-bottom: 20px;
	}
	.message .wrap{
		padding: 50px 20px;
	}
	.message .btm_box{
		font-size: 1.6rem;
		margin-top: 20px;
	}
	.none_box{
		padding: 60px 0;
	}
	.none_box p{
		font-size: 3rem;
	}
	.staff .item p{
		font-size: 1.7rem;
		padding-left: 21px;
	}
	.staff .qq::before{
		width: 50px;
		top: 39px;
		left: 4px;
	}
	.staff .aa::before{
		width: 50px;
		top: 39px;
		left: 4px;
	}
	.staff .mark{
		margin-right: 22px;
	}
	
}





/* 下層　募集内容 */



.b_top .inner{
	max-width: 1200px;
	margin: 0 auto;
	width: 90%;
}

.b_top .left{
	width: 48%;
}

.b_top .right{
	width: 48%;
}

.b_top .left .img img{
	width: 100%;
	height: 320px;
	object-fit: cover;
}

.b_top .txt_box p+p{
	margin-top: 15px;
}


.bosyu{
	background-color: #e5f3ff;
}

.bosyu .sub_ttl{
	background-color: rgb(255, 255, 255,0);
}

.bosyu .inner{
	max-width: 1200px;
	margin: 0 auto;
	width: 90%;
}

.bosyu .info_table td{
	background-color: #fff;
}

.info_table{
	width: 100%;
}

.info_table th{
	width: 25%;
	background-color: #075a9e;
	color: #fff;
	border-bottom: solid 1px #f5f5f5;
}
.info_table td{
	width: 75%;
	border-bottom: solid 1px #ccc;
	background-color: #f5f5f5;
}

.info_table th,.info_table td{
	padding: 24px 0;
	padding-left: 15px;
	padding-right: 15px;
}

.apply .inner{
	max-width: 1200px;
	margin: 0 auto;
	width: 90%;
}

.apply p.fir{
	font-size: 1.8rem;
	margin-bottom: 20px;
	border-bottom: solid 1px #ccc;
	padding-bottom: 7px;
	letter-spacing: 0.1em;
}

@media (max-width: 740px){
	.b_top .flex_bet{
		flex-direction: column;
	}
	.b_top .left{
		width: 100%;
		margin-bottom: 20px;
	}
	.b_top .right{
		width: 100%;
		padding: 20px;
		background-color: rgb(255, 255, 255,0.9);
	}
	.b_top .left .img img{
		height: 200px;
	}
	.info_table th{
		width: 30%;
	}
	.info_table td{
		width: 70%;
	}
	.apply p.fir{
		font-size: 1.6rem;
	}
}






/* 下層　お問い合わせ */




input[type="text"]{
	height: 45px;
	padding: 10px;
	background: #eee;
	width: 100% !important;
}

input[type="text"].mini{
	width: 120px !important;
}

input[type="email"]{
	height: 45px;
	padding: 10px;
	background: #eee;
}


input{
	appearance: auto;
}


input[type="checkbox"] + label{
	cursor: pointer;
}

input[type="checkbox"].toggle{
	display: none;
}

.toggle:checked + .Label::before{
	transform: rotate(-45deg);
	text-decoration: transparent;
}

.toggle:checked + .Label + .co_open{
	height: auto;
	transition: all .5s;
}

textarea{
	padding: 10px;
	font-size: 1.6rem;
	background: #eeee;
	width: 100% !important;
	height: 120px !important;
}

.contact_table{
	width: 100%;
}


.contact_table .ib td .che_box{
	margin-right: 40px;
	display: inline;
}

.contact_table th span,.form_attention span{
	padding: 2px 0;
	margin-right: 10px;
	font-size: 1.4rem;
}

.contact_table th span.ac,.form_attention span.ac{
	background-color: #075a9e;
	padding: 4px 8px 3px;
	color: #fff;
}

.contact_table th span.ac.nini{
	border: solid 1px #075a9e;
	background-color: #fff;
	color: #075a9e;
}

.contact_table th{
	font-weight: 500;
	letter-spacing: 0.1em;
	padding: 20px 0;
	display: table-cell;
	vertical-align: middle;
	width: 30%;
	border-bottom: solid 1px #ccc;
}

.contact_table td{
	padding: 20px 0;
	width: 70%;
	border-bottom: solid 1px #ccc;
}



button[type="submit"]{
	font-size: 1.8rem;
	padding: 6px 0;
}

.form_btn button{
	cursor: pointer;
	display: block;
	margin: 0 auto 5px;
	padding: 18px 0 16px;
	letter-spacing: 0.05em;
	text-align: center;
	width: 260px;
	transition: all 0.5s;
	background: linear-gradient(315deg, #00184f 0%, rgba(0, 101, 181, 1) 100%);
	color: #fff;
	font-size: 1.5rem;
	margin-top: 40px;
}

.form_btn button:hover{
	opacity: 0.7;
}

.form_attention{
	margin-top: 50px;
	line-height: 2;
	font-size: 1.4rem;
}


.form_attention p+p{
	margin-top: 10px;
}

.form_attention p a:hover{
	opacity: 0.75;
}


.postal_btn{
	background-color: #075a9e;
	color: #fff;
	font-weight: 600;
	height: 40px;
	margin-left: 10px;
	padding: 0 30px;
	transition: all .3s;
	text-align: center;
}

.postal_btn:hover{
	opacity: 0.7;
}

.contact_table .flex{
	margin-bottom: 10px;
}

.contact_table .mark{
	line-height: 40px;
	padding: 0 5px;
	padding-right: 10px;
}

.form_accordion{
	text-align: left;
	margin-top: 40px;
}


.toggle:checked + .Label::before{
	transform: translate(-50%,-50%) rotate(-45deg);
	text-decoration: transparent;
}

.toggle:checked + .Label + .co_open{
	height: auto;
	transition: all .5s;
	height: 370px;
	padding-bottom: 40px;
}

.form_accordion p{
	font-size: 1.4rem;
	text-align: left;
	letter-spacing: 2px;
	line-height: 200%;
	color: #555;
}

.form_accordion h4{
	margin-top: 20px;
	margin-bottom: 5px;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	position: relative;
	padding-left: 26px;
	font-weight: 500;
	padding-top: 5px;
	padding-bottom: 5px;
	border-bottom: solid 1px #ccc;
}

.form_accordion h4::before{
	content: "";
	position: absolute;
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url(../img/check.jpg);
	background-size: cover;
	background-position: center;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.form_attention p+p{
	margin-top: 10px;
}

input[type="checkbox"] + label{
	cursor: pointer;
}

.Label{
	position: relative;
	font-size: 1.5rem;
	letter-spacing: 2px;
	padding: 8px 0;
	display: block;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.2em;
	background-color: #eee;
	text-decoration: underline;
	border-bottom: solid 2px #fff;
}



.Label, .co_open{
	backface-visibility: hidden;
	transition: all 0.5s;
	padding-left: 60px;
	padding-right: 60px;
}

input[type="checkbox"].toggle{
	display: none;
}

.co_open{
	height: 0;
	width: 100%;
	-webkit-overflow-scrolling: touch;
	transform: translateZ(0);
	overflow-y: scroll;
	background-color: #eee;
}


.mailform .inner{
	max-width: 1200px;
	margin: 0 auto;
	width: 90%;
}


.mailform .box+.box{
	margin-top: 80px;
}

.line_banner a:hover{
	opacity: 0.75;
}

@media (max-width: 1200px){
	.co_top{
		padding: 60px 0;
	}
}

@media (max-width: 740px){
	.co_top h3{
		font-size: 2.6rem;
	}
	.co_top .btn img{
		width: 90px;
	}
	.co_top{
		padding: 50px 0;
	}
	.contact_table th{
		width: 100%;
		display: block;
		padding-bottom: 0;
		border-bottom: 0px;
	}
	.contact_table td{
		width: 100%;
		display: block;
	}
	.Label, .co_open{
		padding-left: 20px;
		padding-right: 20px;
	}
}


.p_works .gap_area{
	flex-wrap: wrap;
	gap: 40px;
}

.p_works .item{
	width: calc((100% - 80px) / 3);
}

.p_works .item a{
	display: block;
	width: 100%;
}

.p_works .item a img{
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

@media (max-width: 1200px){
	.p_works .item{
		width: calc((100% - 50px) / 3);
	}
	.p_works .gap_area{
		gap: 40px 25px;
	}
}

@media (max-width: 650px){
	.p_works .item{
		width: calc((100% - 20px) / 2);
	}
	.p_works .gap_area{
		gap: 30px 20px;
	}
}




/*thanksページ*/



.kasou.thanks .kasou_top{
	margin-bottom: 0;
}

.thanks_ttl{
	text-align: center;
	line-height: 1.7;
	margin-bottom: 30px;
}

.thanks_ttl .ja{
	font-size: 3.4rem;
	display: block;
	margin-top: 10px;
}

.thanks_ttl .en{
	display: inline-block;
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: 1.5px;
	color: #075a9e;
	line-height: 1;
}

.thanks_txt p{
	text-align: center;
}

.thanks_attention{
	font-size: 1.6rem;
	margin-top: 40px;
}

.sbtn{
    margin-top: 40px;
}

.sbtn a {
    font-size: 1.6rem;
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border: solid 2px #075a9e;
    color: #075a9e;
    letter-spacing: 2px;
    padding: 15px 0;
    text-align: center;
}

.sbtn a:hover{
    background-color: #075a9e;
	color: #fff;
}

.thanks .custom-shape-divider-bottom-1763002765 .shape-fill{
	fill: #fff;
}

@media (max-width: 650px){
	.thanks_txt p{
		text-align: left;
	}
	.thanks_attention{
		font-size: 1.4rem;
	}
	.thanks_ttl .ja{
		font-size: 2.6rem;
		margin-top: 5px;
	}
}


