@charset "utf-8";


*, *::before, *::after {
  box-sizing: border-box;
}

/*cssのリセット*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,
blockquote,pre,abbr,address,cite,code,del,dfn,em,img,
ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,
ol,ul,li,fieldset,form,label,legend,table,caption,
tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,
figcaption,figure,footer,header,hgroup,menu,nav,section,
summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    border: 0;
    outline: 0;
    background: transparent;
}
html{
	margin-top: 0!important;
}
 
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
     display: block;
}
 
ul,ol {
    list-style: none;
}
 
blockquote,
q {
    quotes: none;
}
 
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}
 
a{
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
    transition: all .5s;
}

ins {
    text-decoration: none;
    color: #000;
    background-color: #ff9;
}
 
mark {
    font-weight: bold;
    font-style: italic;
    color: #000;
    background-color: #ff9;
}
 

abbr[title],
dfn[title] {
    cursor: help;
    border-bottom: 1px dotted;
}
 
table {
    border-spacing: 0;
    border-collapse: collapse;
}
 
hr {
    display: block;
    height: 1px;
    margin: 1em 0;
    padding: 0;
    border: 0;
    border-top: 1px solid #ccc;
}
input[type="submit"],input[type="text"],input[type="email"],input[type="tel"],input[type="button"], input[type="reset"] {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
  }
  button{
    outline: none;
    padding: 0;
    appearance: none;
    background-color: transparent;
    border: none;

  }
html {
    font-size: 62.5%;
}
 
body {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    font-size:1.6rem;/* 16px*/
    color: #000000;
    line-height: 1.5;
}
/* .grape-nuts-regular {
  font-family: "Grape Nuts", serif;
  font-weight: 400;
  font-style: normal;
} */
/* .noto-sans-jp-{
  font-family: "Noto Sans JP", serif;
} */
img{
    width: 100%;
    image-rendering: -webkit-optimize-contrast;
    vertical-align: bottom;
}

.inner{
    width: 95%;
    max-width:1345px;
    margin: 0 auto;
}
article{
    overflow: hidden;
}
@media screen and (max-width: 768px) {

	.inner{
	    width: 90%;
	}
}

/*-----------------------
         header
-------------------------*/
header {
    width: 100%;
    height: 145px;
    position: fixed;
    top: 0;
    z-index: 999999;
    background-color: #fff;
}


.header_inner{
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.header_logo{
	text-align: center;
	margin-top: 27px;
}

.header_logo img{
    width: 88%;
    max-width: 200px;
    vertical-align: middle;
    margin-left: 27px;
}


.header_nav {
    width: 100%;
    display: flex;
    align-items: flex-start;
    max-width: 1160px;
	margin-left: auto;
    justify-content: space-between;
	column-gap: 20px;
}

.header_nav ul{
	width: 76%;
	max-width: 860px;
	display: flex;
	column-gap: 20px;
	justify-content: flex-end;
	align-items: center;
	margin-top: 45px;
	text-align: center;
}
.header_nav ul li a{
    font-size: clamp(12px, 1.39vw, 20px);
    color: #333333;
    font-weight: bold;
    text-align: center;
}


.header_nav ul li{
	position: relative;
	display: inline-block;
}

 .h_cta{
	background-color: #D80E36;
	border-radius: 0 0 0 50px;
	padding: 36px 10px 40px 10px;
	text-align: center;
	width: 22%;
	max-width: 255px;
}
.h_cta .en_cta{
	display: block;
	color: #fff;
	font-weight:bold;
	font-size: clamp(18px, 2.778vw, 40px);
	margin-bottom: 14px;
}
.h_cta .site_cta{
	display: block;
	background-color: #fff;
	font-weight:bold;
	font-size: clamp(12px, 1.113vw, 16px);
	margin-bottom: 14px;
	color: #D80E36;
	padding: 16px 5px;
	max-width: 197px;
	margin: 0 auto;
	border-radius:  50px;
}
.sp_menu{
	display: none;
}
@media screen and (max-width: 870px) {
    
	
	.header_logo {
	    text-align: center;
	    margin-top: 15px;
		z-index: 999;
	}
	.header_logo img {
	    width: 88%;
	    max-width: 150px;
	    margin-left: 0;
	}
    header{
		height: 80px;
	}
    
    .header_nav {
    	display: none;
    }
    
    .sp_menu{
        display: block;
    }
 
    .nav-menu {
        position: fixed;
        overflow-y: scroll;
        z-index: 99;
        width: 100%;
        top: 0;
        height: 100vh;
        display: none;
        background-color: #fff;
    }

	.g-menu{
		width: 80%;
		margin: 0 auto;
		margin-top: 110px;
	}
 
    .g-menu ul li a{
        display: block;
        font-size: clamp(16px, 2.072vw, 18px);
        font-weight: bold;
        color: #000000;
        margin-bottom: 20px;
        position: relative;
    }
	.g-menu .h_cta {
	    background-color: #D80E36;
	    border-radius: 30px;
	    padding: 20px 10px 25px 10px;
	    text-align: center;
	    width: 100%;
	    max-width: 300px;
		margin-top: 60px;
	}

}

@media screen and (max-width: 768px) {
	
}

@media screen and (max-width: 870px) {
/* hamburger */
    .toggle {
        position: fixed;
        right: 15px;
        top: 24px;
        width: 36px;
        height: 36px;
        cursor: pointer;
        z-index: 999;
        display: block;
    }

   
        
    .toggle span {
        display: block;
        position: absolute;
        width: 30px;
        border-bottom: solid 2px  #000000;
        -webkit-transition: .35s ease-in-out;
        -o-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
        left: 50%;
        transform: translateX(-50%);
    }

    .toggle span:nth-child(1) {
        top: 9.3px;
    }
    .toggle span:nth-child(2) {
        top: 16px;
    }
    .toggle span:nth-child(3) {
        top: 23px;
    }
   
    .toggle.active span:nth-child(1) {
        top: 10%;
        left: 45%;
        -webkit-transform: rotate(-45deg) translate(-50%,-50%);
        -ms-transform: rotate(-45deg) translate(-50%,-50%);
        transform: rotate(-45deg) translate(-50%,-50%);
        border-bottom: solid 2px  #000000;
    }
    .toggle.active span:nth-child(2),
    .toggle.active span:nth-child(3) {
        top: 72%;
        left: 41%;
        -webkit-transform: rotate(45deg) translate(-50%,-50%);
        -ms-transform: rotate(45deg) translate(-50%,-50%);
        transform: rotate(45deg) translate(-50%,-50%);
        border-bottom: solid 2px  #000000;
    }
}


.sec_ttl h2 {
    font-size: clamp(20px, 2.499999vw, 36px);
    font-weight: bold;
    color: #023BAE;
    text-align: center;
}

@media screen and (max-width: 768px) {

	.sec_ttl h2{
    	font-size: 24px;
	}
}

.sp_br,.sp_img{
    display: none;
}

@media screen and (max-width: 768px) {

    .sp_br,.sp_img{
        display: block;
    }
    .pc_br,.pc_img{
        display: none;
    }
}
.cta{
	display: block;
	font-family: "EB Garamond", serif;
	width: 180px;
	text-align: center;
	color: #007E4A;
	border: 1px solid #007E4A;
	font-size:16px;
	font-weight: 500;
	padding: 11px 0;
	cursor: pointer;
	position: relative;
	/* overflow: hidden; */
	z-index: 1;
}
.cta::before {
  display: block;
  content: '';
  position: absolute;
  inset: 0;
  background-color: #007E4A;
  transition: transform 0.5s ease;
  transform: scaleX(0);
  transform-origin: right;
  z-index: -1;
}
.cta::after {
  display: block;
  content: '';
  position: absolute;
  width: 40px;
  height: 1px;
  top: 50%;
  right: -20px;
  background-color: #007E4A;
}
.cta:hover{
  color:#fff;
}
.cta:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/*-----------------------
         top
-------------------------*/
#maintop{
	position: relative;
	margin-top: 215px;
}
.fv_movie {
	width: 100%;
	text-align: center;
}
.movie_main {
	width: 100%;
}
.maintop_box{
	width:68%;
	max-width: 967px;
	margin: 0 auto;
}
@media screen and (max-width: 850px) {
	
	.maintop_box{
		width: 64%;
	}
}

.fv_txtbox{
	position: absolute;
	top: 89%;
	left: 44.5%;
	width: 85%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	row-gap: 20px;
}
.fv_txtbox p{
	font-size: clamp(22px, 3.4vw, 36px);
	font-weight: bold;
	display: inline;
	background-color: #fff;
	padding: 27px 40px 27px 20px;
}
.fv_txtbox p:last-child{
    padding: 17px 27px 17px 12px;
}
.fv_txtbox p .txtbig{
	    font-size: clamp(26px, 4.8vw, 48px);
	    position: relative;
	    font-weight: 700;
}
.fv_txtbox p .ten{
	width: 7%;
	max-width: 37px;
	vertical-align: super;
	margin-bottom: 8px;
	margin-right: -2px;
}
.fv_txtbox p .ten02{
	width: 6%;
	max-width: 36px;
	margin-bottom: 2px;
	margin-left: -7px;
}
.txt_img{
	width: 100%;
	max-width: 335px;
}
@media screen and (max-width: 1020px) {
	.fv_txtbox{
		position: absolute;
		top: 89%;
		left: 45.5%;
		width: 88%;
	}

}

@media screen and (max-width: 768px) {

	#maintop{
		position: relative;
		margin-top: 100px;
	}
	.maintop_box{
		width: 95%;
		max-width: 770px;
	}

	.fv_txtbox{
		position: static;
        top: 136%;
        left: 51.5%;
        width: 100%;
        row-gap: 10px;
        transform: none;
	}
	.fv_txtbox p{
		font-size: 17px;
		padding: 10px 15px 10px 20px;
	}
	.fv_txtbox p:last-child{
		width: 100%;
		padding: 10px 5px 10px 20px;
	}
	.fv_txtbox p .txtbig{
		    font-size: 22px;
	}
	.fv_txtbox p .ten{
		width: 7%;
		max-width: 15px;
		vertical-align: super;
		margin-bottom: 3px;
		margin-right: -2px;
	}
	.fv_txtbox p .ten02{
		width: 6%;
		max-width: 15px;
		margin-bottom: 0px;
		margin-left: -5px;
		margin-right: 2px;
	}
	.txt_img {
	    max-width: 220px;
	}
}
.ctaarea_link2 .cta_fx{
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 770px;
	margin: 0 auto;
	margin-top: 9.415%;
	column-gap: 10px;
}
.ctaarea_link2 .cta_fx a img{
	width: 24px;
	margin-left: 6px;
	vertical-align: middle;
}

.ctaarea_link2 .cta_fx a{
	display: block;
	width: 33%;
	max-width: 240px;
	text-align: center;
	color: #fff;
	border: 1px solid #fff;
	font-size: clamp(13px, 1.181vw, 17px);
	font-weight: bold;
	padding: 13px 0;
	cursor: pointer;
	position: relative;
}
.ctaarea_link2 .cta_fx:before{
	content: none;
}
@media screen and (max-width: 768px) {

	.ctaarea_link2 .cta_fx{
		flex-direction: column;
		max-width: 770px;
		margin: 0 auto;
		margin-top: 9.415%;
		row-gap: 10px;
	}
	.ctaarea_link2 .cta_fx a{
		width: 100%;
		padding: 13px 0;
	}

}


.modal_box{
	position: fixed;
    z-index: 5;
    right: 10px;
    bottom: 20px;
	    width: 30%;
    max-width: 428px;
/*     animation: 1.2s fadeup ease-in-out forwards; */
	    cursor: pointer;
	transition: all 1.5s;
	opacity: 0;
}

.modal_open{
	display: block;
	width:100%;
	height: 100%;
	position: relative;
}
.circle{
	width: 45%;
	max-width: 193px;
	border-radius: 50%;
	background-color: #023BAE;
	position: absolute;
	left: 0;
	bottom: 20px;
}
@media screen and (max-width: 1070px) {

	.circle{
		width: 50%;
		left: -9px;
		bottom: -15px;
	}
}
.circle02{
	width: 68%;
	max-width: 290px;
	border-radius: 50%;
	background-color: #023BAE;
	margin-left: -21%;
	left: auto;
	right: 0;
	bottom: 1px;
	z-index: -1;
}
.circle_inner{
	position: relative;
	padding-top: 100%;
	height: 0;
}
.circle_txt{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0;
	transform: translateY(-50%);
	text-align: center;
	color: #fff;
}
.circle02 .circle_txt{
	top: 54%;
}
.circle_txt p{
	margin-top: 4px;
	font-weight: bold;
	font-size: clamp(14px, 1.39vw, 20px);
}
.circle_txt span{
	font-weight: bold;
	font-size: 14px;
}
.circle02 .circle_txt p{
	margin-top: 7px;
	font-weight: bold;
	font-size: clamp(16px, 1.875vw, 27px);
}
.circle02 .circle_txt img{
	width: 75%;
	max-width: 216px;
}
@media screen and (max-width: 768px) {

	.modal_box{
		position: fixed;
		z-index: 5;
		right: 14px;
		bottom: 20px;
		width: 53%;
		max-width: 200px;
		animation: 1.2s fadeup ease-in-out forwards;
	}
	.modal_open{
		width: 200px;
	}
	.circle{
		width: 45%;
		max-width: 85px;
		left: 14px;
		bottom: -2px;
	}
	.circle02{
		width: 61%;
		max-width: 120px;
		margin-left: -21%;
		right: 0;
		left: auto;
		bottom: 1px;
	}
	.circle_txt {
	    position: absolute;
	    top: 45%;
	}
	.circle_txt p{
		margin-top: -1px;
		font-weight: bold;
		font-size: 10px;
	}
	.circle_txt span{
		font-weight: bold;
		font-size: 9px;
	}
	.circle02 .circle_txt p{
		font-size:14px;
	}

}



/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 999999; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.6);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 82%;
  max-width: 810px;
  padding: 120px 20px;
  border-radius: 50px;
  background-color: #023BAE;
}
.modalContents{
	max-width: 670px;
	margin: 0 auto;
	color: #fff;
	text-align: center;
}
.modalContents h2{
	font-size: clamp(16px, 1.666666vw, 24px);
	font-weight: bold;
	display: inline-block;
	padding: 16px 32px;
	background-color: #fff;
	color: #023BAE;
	margin-bottom: 65px;
}
.modalContents p{
	font-size: 16px;
	font-weight: bold;
	line-height:2;
	letter-spacing: .01em;
}
.closeModal {
  position: absolute;
  top: 44px;
  left: 55px;
  cursor: pointer;
	font-size: 24px;
	color: #fff;
}

@media screen and (max-width: 768px) {

	.modalContents h2{
		padding: 10px 15px;
		margin-bottom: 20px;
	}
	.modalContents p{
		font-size: 14px; 
	}
	.modalContents{
		max-width: 600px;
		margin: 0 auto;
		color: #fff;
		text-align: center;
	}
	.modalWrapper {
		width: 90%;
	  max-width: 550px;
	  padding: 50px 25px;
	  border-radius: 50px;
	}
	.closeModal {
	    position: absolute;
	    top: 13px;
	    left: 25px;
	    cursor: pointer;
		font-size: 24px;
		color: #fff;
	}
}

/*-----------------------
         entry
-------------------------*/

#entry{
	padding: 200px 0 0;
}
.entry_box{
	width: 77%;
	max-width: 967px;
	margin: 0 auto;
}
.entry_box a{
	display: block;
	color: #fff;
	position: relative;
}
.entry_box a img{
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 135px;
		border: 1px solid #000000;
		box-shadow: 0 10px 10px rgba(0,0,0,.25);
}
.entry_box p{
	font-family: "Noto Sans JP", serif;
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size:  clamp(35px, 4.445vw, 64px);
	text-align: center;
	line-height: 1.2;
	font-weight:600; 
	color: #fff;
}
.entry_box p span{
	display: block;
	font-size: clamp(22px, 2.499999vw, 36px);
}
.entry_box{
	position: relative;
}
@media screen and (max-width: 768px) {

	#entry {
		padding: 140px 0 0;
	}
	.entry_box{
		width: 100%;
		max-width: 550px;
		margin: 0 auto;
		
	}
	.entry_box a{
		height: 150px;
	}
	.entry_box a img{
		box-shadow: 0 5px 5px rgba(0,0,0,.25);
	}
}
.entry_bg{
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 17%;
	transform: translate(-50%,-50%);
	width: 67%;
	max-width: 637px;
}

@media screen and (max-width: 768px) {
	
	.entry_bg {
		top: 50%;
		left: 45%;
		width: 100%;
		max-width: 637px;
	}
	
}


/*-----------------------
         entrynews
-------------------------*/
#entrynews{
	padding: 120px 0 0;
}
.entrynews_box ul{
	padding: 33px 20px 33px 88px;
	max-width: 1272px;
	margin: 0 auto;
	border-radius: 50px;
	box-shadow: 4px 10px 10px 10px rgba(0,0,0,.25);
	margin-top: 33px;
}
.entrynews_box ul li{
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1100px;
	column-gap: 25px;
	margin-bottom: 37px;
}
.entrynews_box ul li:last-child{
	margin-bottom: 0;
}
.entrynews_data{
	width: 45%;
    max-width: 425px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 115px;
}
@media screen and (max-width: 1090px) {

	.entrynews_data{
	    column-gap: 40px;
	}
}

.entrynews_data .data{
	width: 25%;
	font-size: clamp(16px, 1.39vw, 20px);
	font-weight: bold;
}
.entrynews_data .en_cat{
	    display: block;
	    padding: 11px 60px;
	    text-align: center;
	    color: #fff;
	    background-color: #D80E36;
	    border-radius:100vw;
	    font-size: clamp(14px, 1.113vw, 16px);
}
.news_cat01{
	background-color: #D80E36;
}
.entrynews_data .news_cat02{
	background-color: #F69A37;
}
.entrynews_box ul li a{
	width: 51%;
	display: block;
	color: #000000;
}
.entrynews_box ul li h3{
	font-size: clamp(16px, 1.39vw, 20px);
	font-weight: bold;
}

@media screen and (max-width: 840px) {

	#entrynews{
		padding: 80px 0 0;
	}
	.entrynews_box ul {
	    padding: 33px 20px 33px 20px;
	    max-width: 840px;
	    border-radius: 25px;
	    margin-top: 33px;
		box-shadow: 2px 4px 4px 4px rgba(0,0,0,.25);
	}
	.entrynews_box ul li{
		flex-direction: column;
		align-items: flex-start;
		max-width: none;
		row-gap: 15px;
		margin-bottom: 37px;
	}
	.entrynews_data{
		width: 100%;
		column-gap: 20px;
	}
	.entrynews_box ul li a{
		width: 100%;
	}
	.entrynews_data .en_cat {
		font-size: 12px;
        padding: 5px 30px;
	}
}
.entrynews_box .more{
	margin-top: 38px;
	text-align: right;
}
.entrynews_box .more a{
	font-weight: bold;
	color: #000000;
	font-size: 18px;
	position: relative;
}
.entrynews_box .more a:after{
	content: "";
	display: inline-block;
	font-weight: bold;
	width: 24px;
	height: 24px;
	vertical-align:middle;
	background-color: #000000;
	border-radius: 100%;
	margin-left: 18px;
	margin-bottom: 6px;
}
.entrynews_box .more a:before{
	content: ">";
	display: inline-block;
	font-weight: bold;
	color: #fff;
	font-size: 20px;
	text-align: center;
	position: absolute;
	line-height: 1;
	right: 5px;
	top: 0;
}
/*-----------------------
         thought
-------------------------*/
#thought{
	margin-top: 120px;
	padding: 127px 0 133px;
	background-color: rgba(246, 154, 55, .1);
}
.thought_box{
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 20px;
}

.thought_img01{
	width: 38%;
	max-width: 503px;
}
.thought_txt01{
	width: 30%;
	max-width: 397px;
}
.thought_txt01 p{
	font-size: clamp(18px, 2.223vw, 32px);
	font-weight: bold;
}
.thought_txt01 p .txtbig{
	font-size: clamp(22px, 2.499999vw, 36px);
	color: #023BAE;
}
.thought_img02{
	width: 27%;
	max-width: 357px;
}
.thought_img03{
	width: 62%;
	max-width: 832px;
}
.thought_txt02{
	width: 36%;
	max-width: 476px;
	position: relative;
}
.thought_txt02_p{
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	text-align: center;
	width: 100%;
}
.thought_txt02_p p{
	font-size: clamp(22px, 2.499999vw, 36px);
	color: #023BAE;
	font-weight: bold;
}
.thought_txt02_p a{
	display: block;
	font-size: 16px;
	background-color: #023BAE;
	font-weight: bold;
	color: #fff;
	border-radius: 50px;
	width: 194px;
	margin: 0 auto;
	padding: 12px 0;
	margin-top: 18px;
}
@media screen and (max-width: 768px) {

	#thought{
		margin-top: 70px;
		padding: 70px 0 70px;
	}
	.thought_box{
		flex-wrap: wrap;
		column-gap: 0;
		row-gap: 20px;
	}
	.thought_box02{
		row-gap: 0;
	}
	.thought_img01{
		width: 65%;
		max-width: 503px;
	}
	.thought_txt01{
		width: 93%;
		max-width: 397px;
	}
	.thought_img02{
		width: 100%;
		max-width: 170px;
		margin-left: auto;
	}
	.thought_txt01 p{
		font-size: 19px;
		font-weight: bold;
	}
	.thought_txt01 p .txtbig{
		font-size: 22px;
		color: #023BAE;
	}
	.thought_img03{
		width: 87%;
		max-width: 600px;
	}
	.thought_txt02 {
	    width: 100%;
	    max-width: 476px;
	    position: relative;
	}
}

/*-----------------------
         charm
-------------------------*/
#charm{
	padding-top: 72px;
}
.charm_box{
	width: 95%;
	max-width: 1345px;
	margin: 60px auto 0;
	display: flex;
	align-items: center;
	column-gap: 23px;
}
.charm_box li{
	position: relative;
	
}
.charm_box li a{
	display: block;
	color: #000000;
}
.charm_box li a img{
	border-radius: 50px;
	box-shadow: 0 10px 4px rgba(0, 0, 0, .25);
}
.charm_txt{
	background-color:#fff;
	position: absolute;
	left: 0;
	bottom: 0;
	border-radius: 0 50px 0 50px;
	height: 157px;
	    width: 56%;
    max-width: 239px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.charm_txt h3{
	line-height: 1.8;
	font-weight: bold;
	letter-spacing: .05em;
	font-size: clamp(16px, 1.666666vw, 24px);
}
@media screen and (max-width: 768px) {

	.charm_box{
		width: 95%;
		max-width: 550px;
		margin: 40px auto 0;
		flex-direction: column;
		row-gap: 40px;
	}
	.charm_box li {
	    position: relative;
	    width: 100%;
	    max-width: 300px;
		
	}
	.charm_box li a {
	    display: block;
		width: 100%;
		height: 280px;
	}
	.charm_box li a img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.charm_txt{
		height: 120px;
		    width: 56%;
	    max-width: 190px;
	}

}
#charm .more{
	max-width: 647px;
	padding: 56px 0 60px;
	margin: 0 auto;
	margin-top: 77px;
	border-radius: 50px;
	box-shadow: 0 10px 4px rgba(0,0,0,.25);
}
#charm .more_txt{
	width: 95%;
	max-width: 445px;
	margin: 0 auto;
}
#charm .more_txt h3{
	color: #023BAE;
	font-weight: bold;
	margin-bottom: 15px;
    font-size: clamp(16px, 1.666666vw, 24px);
}
#charm .more_txt p{
	display: flex;
	align-items: center;
	column-gap: 42px;
	line-height: 1.8;
	font-size: 16px;
	color: #000000;
	font-weight: bold;
}
#charm .more_txt p img{
	width: 67px;
}
@media screen and (max-width: 768px) {
	
	#charm .more{
		width: 90%;
		max-width: 500px;
		padding: 30px 0 20px;
		margin: 0 auto;
		margin-top: 40px;
		border-radius: 30px;
		box-shadow: 0 10px 4px rgba(0,0,0,.25);
	}

	#charm .more_txt{
		width: 90%;
		margin: 0 auto;
	}
	#charm .more_txt h3{
	    font-size: 16px;
	}
	#charm .more_txt p{
		flex-direction: column;
		row-gap: 10px;
		font-size: 14px;
	}
	#charm .more_txt p img{
		width: 35px;
		margin-left: auto;
	}
}
/*-----------------------
         staff
-------------------------*/

#staff{
	padding-top: 19.723%;
}
@media screen and (min-width: 1441px) {

	#staff{
		padding-top: 284px;
	}
}

.staff_box{
	margin-top: 70px;
}
.staff_box li a{
	display: block;
	max-width: 613px;
	margin: 0 auto;
	color: #fff;
	margin-bottom: 30px;
}
.staff_box .slick-slide{
	margin: 0 25px !important;
}
.staff_list{
	padding: 44px 34px 27px;
	background-color: #D80E36;
	border-radius: 50px;
	height: 739px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.staff_list02{
	background-color: #023BAE;
}
.staff_list03{
	background-color: #F69A37;
}
.staff_list_txt li{
	font-weight: bold;
    font-size: clamp(14px, 1.666666vw, 24px);
}
.staff_list_img{
	width: 90%;
	max-width: 392px;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}
.staff_list_txt02 p{
	font-family: "Grape Nuts", serif;
	text-align: center;
	font-size: clamp(80px, 8.889vw, 122px);
	word-break: keep-all;
}
@media screen and (max-width: 1170px) {
	.staff_list_txt02 p {
		font-size: clamp(60px, 8.889vw, 90px);
	}
	
}

@media screen and (max-width: 1000px) {

	.staff_list{
		height: 500px;
	}
	.staff_list_img{
		max-width: 260px;
	}
}
@media screen and (max-width: 768px) {

	#staff{
		padding-top: 80px;
	}
	.staff_box {
	    margin-top: 50px;
	}
	.staff_box li a{
		max-width: 330px;
		margin-bottom: 30px;
	}
	.staff_list{
		padding: 25px 20px 27px;
		border-radius: 25px;
		height: 300px;
	}
	.staff_list_img {
	    max-width: 150px;
	}
	.staff_list_txt02 p {
	    font-size: 70px;
		line-height: 1;
	}
}
	
.staff_list_btn{
	color: #D80E36;
	max-width: 400px;
	margin: 0 auto;
	margin-top: 90px;
	text-align: center;
	box-shadow: 0 10px 4px rgba(0,0,0,.25);
	border-radius: 50px;
	padding: 21px 0;
}
.staff_list02_btn{
	color: #023BAE;
}
.staff_list03_btn{
	color: #F69A37;
}
.staff_list_btn p{
	font-size: clamp(16px, 1.666666vw, 24px);
	font-weight: bold;
}
@media screen and (max-width: 768px) {

	.staff_list_btn{
		max-width: 300px;
		margin-top: 40px;
		padding: 16px 0;
	}
}
/*-----------------------
         movie
-------------------------*/
#movie{
	padding-top: 115px;
}
.movie_box{
	display: block;
	max-width: 1062px;
	margin: 0 auto;
	position: relative;
}
.movie_txt{
	width: 90%;
	max-width: 683px;
	position: absolute;
	left: 61.5%;
	top: 43%;
	transform: translate(-50%,-50%);
	display: flex;
	align-items: center;
}
.movie_txt_l{
	width: 65%;
	max-width: 434px;
	text-align: center;
	color: #fff;
	margin-top: 45px;
}


.movie_txt_r{
	width: 37%;
	max-width: 248px;
}
@media screen and (max-width: 768px) {

	#movie{
		padding-top: 50px;
	}
	.movie_txt{
		width: 79%;
		max-width: 500px;
		left: 63.5%;
		top: 40%;
	}
	.movie_txt_l{
		width: 65%;
		max-width: 434px;
		margin-top: 22px;
	}
	.movie_txt_r{
		width: 28%;
		max-width: 200px;
		min-width: 75px;
	}
}
/*-----------------------
         ob_data
-------------------------*/

#ob_data{
	padding-top: 22.431%;
}
@media screen and (min-width: 1441px) {

	#ob_data{
		padding-top: 323px;
	}
}
#ob_data .data_box{
	display: block;
	max-width: 1297px;
	margin: 60px auto 0;
	position: relative;
}
#ob_data .data_box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50px;
	box-shadow: 0 10px 4px rgba(0,0,0,.25);
}
#ob_data .data_txt{
	position: absolute;
	background-color: #fff;
	width: 60%;
	max-width: 748px;
	height: 273px;
	bottom: 0;
	right: 0;
	border-radius: 50px 0 50px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
#ob_data .data_txt p{
	font-size: clamp(16px, 1.39vw, 20px);
    color: #333333;
    font-weight: bold;
	letter-spacing: .05em;
}

@media screen and (max-width: 768px) {

	#ob_data .data_box{
		display: block;
		max-width: 550px;
		height: 300px;
		margin: 60px auto 0;
		position: relative;
		border-radius: 50px;
	}
	#ob_data .data_box img{
		border-radius: 30px;
	}
	#ob_data .data_txt{
		width: 100%;
        max-width: 300px;
        height: 70%;
        border-radius: 30px 0 30px 0;
        padding: 5px;
	}
	#ob_data .data_txt p{
		font-size: 14px;
	}
}
/*-----------------------
         recruitment
-------------------------*/

#recruitment{
	padding-top: 24.098%;
}
#recruitment .sec_ttl p{
	font-size: 16px;
	color: #023BAE;
	font-weight: bold;
	text-align:center; 
	margin-top: 35px;
}
@media screen and (min-width: 1441px) {

	#recruitment{
		padding-top: 347px;
	}
}

.recruitment_box{
	margin-top: 70px;
	    margin-bottom: 55px;
}
.recruitment_area{
	width: min(90%, 1195px);
  margin: 0 auto;
}
.recruitment_inner{
	position: relative;
  width: calc(100% + (100vw - 100%) / 2);
	    overflow: hidden;
}
.recruitment_box li a{
	display: block;
	max-width: 350px;
	    height: 360px;
	margin: 0 auto;
	color: #000000;
	padding: 45px 20px 45px 20px;
	margin-bottom: 30px;
	border-radius: 50px;
	box-shadow: 5px 10px 4px rgba(0,0,0,.25);
}
@media screen and (max-width: 768px) {
	
	#recruitment{
		padding-top: 80px;
	}
	.recruitment_box{
		margin-top: 30px;
		    margin-bottom: 55px;
	}

	.recruitment_area{
		width: min(90%, 600px);
		  margin: 0 auto;
	}
	.recruitment_inner{
		position: relative;
		width: 100%;
		overflow: hidden;
	}
	.recruitment_box li a{
		display: block;
		max-width: 330px;
	}
}
.recruitment_box .slick-slide{
	margin: 0 22px !important;
}
.recruitment_box .slick-list{
  overflow: visible !important;
}

.data_col{
	display: flex;
	column-gap: 45px;
}

.post_type{
	padding: 2px 18px;
	border-radius: 50px;
	color: #fff;
	font-size: clamp(12px, 1.113vw, 16px);
}
.post_type.orange{
	background-color: #F69A37;
}
.post_type.red{
	background-color: #D80E36;
}
.list_date{
	display: inline-block;
	margin-right: 20%;
	font-weight: 700;
	font-size: clamp(12px, 1.113vw, 16px);
}
.recruitment_box li h3{
	margin-top: 17px;
	line-height: 1.8;
	font-weight: bold;
	border-bottom: 1px solid #000000;
	padding-bottom: 20px;
    font-size: clamp(14px, 1.113vw, 16px);
}
.recruitment_box li dl{
	margin-top: 28px;
	display: flex;
	flex-wrap: wrap;
}
.recruitment_box li dt{
	width: 25.2%;
	margin-bottom: 12px;
	font-weight: bold;
	font-size: clamp(14px, 1.113vw, 16px);
}
.recruitment_box li dd{
	width: 74%;
	font-size: clamp(14px, 1.113vw, 16px);
	margin-bottom: 12px;
}
.recruitment_box li dt:last-child,
.recruitment_box li dd:last-child{
	margin-bottom: 0;
}


/* 矢印 */
.slick__prev,
.slick__next {
  position: absolute;
  bottom: -50px;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 4px 4px rgba(0,0,0,.25);
}

.slick__prev {
  right: calc((100vw - 63%) + (30px + 50px + 15px));
}

.slick__next {
  right: calc((100vw - 63%) + (30px));
}
@media screen and (max-width: 768px) {

	.slick__prev {
	  right: calc((100vw - 115%) + (30px + 50px + 15px));
	}
	
	.slick__next {
	  right: calc((100vw - 115%) + (30px));
	}

}
.slick__prev:before,
.slick__next:before {
  position: absolute;
  opacity: 1;
  content: '';
}
.slick__prev:before {
  position: absolute;
  top: 55%;
  left: 19%;
  border: 11px solid transparent;
  border-right: 23px solid #D9D9D9;   
}
.slick__next:before {
  position: absolute;
  top: 55%;
  left: 81%;
  border: 11px solid transparent;
  border-left: 23px solid #D9D9D9;   
}

.slick__prev:before {
  transform: translate(-25%, -50%);
}

.slick__next:before {
  transform: translate(-75%, -50%);
}

#recruitment .more a{
	display: block;
	font-size: 16px;
	color: #023BAE;
	font-weight: bold;
	text-align:center; 
	margin-top: 50px;
}
@media screen and (max-width: 768px) {

	#recruitment .more a{
		margin-top: 30px;
	}

}
.more_arrow{
	width: 166px;
	margin: 11px auto 0;
	height: 5px;
	background-color: #023BAE;
	position: relative;
}
.more_arrow::before,
.more_arrow::after {
  content: ""; 
  width: 24px; 
  height: 4px; 
  display: inline-block;
  border-radius: 2px; 
  background: #023BAE; 
  position: absolute; 
  right: -6px; 
}

.more_arrow::before {
  top: calc(50% - 10px);     
  transform: rotate(45deg); 
}
.more_arrow::after {
  bottom: calc(50% - 10px);   
  transform: rotate(-45deg); 
}

/*-----------------------
         sitelink
-------------------------*/

#sitelink{
	padding-top: 27.431%;
}

@media screen and (min-width: 1441px) {

	#sitelink{
		padding-top: 396px;
	}
}

#sitelink a{
	display: block;
	max-width: 1320px;
	margin: 0 auto;
	position: relative;
	color: #fff;
}
#sitelink a img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50px;
}
.sitelink_box{
	position: absolute;
	background-color: #1C978B;
	bottom: 0;
	right: 0;
	width: 50%;
	max-width: 646px;
	height: 100%;
	border-radius: 100% 50px 50px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.sitelink_box h2{
	padding-left: 14%;
	padding-top: 13%;
	font-size: clamp(20px, 2.499999vw, 36px);
}


@media screen and (max-width: 768px) {

	#sitelink{
		padding-top:70px;
	}
	#sitelink a{
		display: block;
		max-width: 600px;
		height: 200px;
	}
	#sitelink a img{
		border-radius: 20px;
	}
	.sitelink_box{
		width: 70%;
		max-width: 200px;
		border-radius: 78% 20px 20px 0;
	}
	.sitelink_box h2{
		padding-left: 4%;
		padding-top: 12%;
		font-size: 14px;
	}
}


/*-----------------------
         link
-------------------------*/

#link{
	background-image: url('../img/contact_bg.jpg');
	background-size: cover;
	background-position: center;
	color: #fff;
	text-align: center;
	padding: 170px 0;
	margin-top: 150px;
	position: relative;
}
#link h2{
	font-size: clamp(20px, 2.223vw, 32px);
}
.linkbox{
	display:flex;
	justify-content: center;
	align-items: center;
	column-gap: 36px;
	margin-top: 30px;
	position: relative;
	z-index: 1;
}
.linkbox a{
	display: block;
	color: #fff;
	background-color:#D80E36;
	max-width: 400px;
	width: 30%;
	padding: 21px 0;
	font-size: clamp(20px, 1.666666vw, 24px);
	border-radius: 50px;
	font-weight: bold;
}
.linkbox .recruitcta{
	background-color: #023BAE;
}
.bigtxt{
	position: absolute;
	width: 51%;
	left: 72%;
	bottom: 93px;
	transform: translateX(-50%) rotate(-18deg);
	font-family: "Grape Nuts", serif;
	font-size: clamp(100px, 10.42vw, 150px);
	line-height: 1;
	z-index: 0;
}
@media screen and (max-width: 768px) {

	#link{
		background-position: center;
		padding: 80px 0 100px;
		margin-top: 110px;
		overflow: hidden;
	}
	.linkbox{
		flex-direction: column;
		row-gap: 30px;
		margin-top: 30px;
	}
	.linkbox a{
		display: block;
		color: #fff;
		background-color:#D80E36;
		max-width: 300px;
		width: 100%;
		padding: 18px 0;
		font-size: 18px;
		border-radius: 50px;
		font-weight: bold;
	}
	.linkbox .recruit_cta{
		background-color: #023BAE;
	}
	.bigtxt{
		position: absolute;
		width: 100%;
		left: 63%;
		bottom: 39px;
		font-size: 55px;
	}

}

/*-----------------------
         footer
-------------------------*/
footer{
	background-color: #F69A37;
	color: #fff;
	padding: 50px 0 115px;
}
.footer_inner{
	width: 95%;
	max-width: 1267px;
	margin: 0 auto; 
}
footer h2{
	font-size: 16px;
	font-weight: bold;
}
.f_logo{
	width: 96px;
	margin: 0 auto;
	display: block;
}

.footer_nav{
	display: flex;
	justify-content: space-between;
	column-gap: 10px;
	margin-top: 40px;
}
.footer_nav > li{
	width: 45%;
	max-width: 160px;
}
.footer_nav li .line_b{
	display: flex;
	height: 82px;
	padding-bottom: 23px;
	border-bottom: 1px solid #fff;
	margin-bottom: 30px;
	font-size: clamp(16px, 1.39vw, 20px);
	align-items: flex-end;
	font-weight: bold;
}
.footer_nav li a{
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    color: #fff;
    font-weight: bold;
}
.f_txt{
	margin-top: 80px;
	    position: relative;
}
.f_txt_l p{
	text-align: center;
	margin-bottom: 20px;
	font-size: clamp(16px, 1.39vw, 20px);
}
.f_txt_l a{
	display: block;
	text-align: center;
	color: #fff;
	font-size: clamp(16px, 1.39vw, 20px);
}
.f_txt_l a img{
	width: 30px;
	margin-left: 12px;
	vertical-align: sub;
}
.f_txt_r{
	display: flex;
	align-items: center;
	column-gap: 20px;
	    position: absolute;
    right: 0;
    bottom: 0;
}
.f_txt_r img{
	width: 55px;
}
@media screen and (max-width: 768px) {

	.footer_nav{
		margin: 0 auto;
		flex-wrap: wrap;
		column-gap: 20px;
		margin-top: 50px;
		row-gap: 40px;
		max-width: 350px;
		width: 95%;
	}
	.footer_nav li .line_b{
		display: flex;
		height: 75px;
		padding-bottom: 20px;
		margin-bottom: 20px;
		font-size: 16px;
	}
	.footer_nav li a {
	    font-size: 14px;
	}
	.f_txt {
	    width: 100%;
	    max-width: 600px;
	    margin: 60px auto 0;
		display: flex;
		align-items: center;
	    flex-direction: column;
	    row-gap: 30px;
	}
	.f_txt_l a img {
	    width: 20px;
	}
	.f_txt_r{
		position: static;
	}
	.f_txt_r img {
	    width: 40px;
	}
	
}

.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}
.fadeup {
  animation: fadeup 2.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
 
@keyframes fadeup {
  0% {
    transform: translateY(80px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/*-----------------------
      staffpage_fv
-------------------------*/
.staff_page{
	position: relative;
	padding-top: 12px;
	background-color: rgba(216, 14, 54, .38);
}
.staff_page:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 82px solid transparent;
  border-top: 100px solid rgba(216, 14, 54, .38);
}
.staffpage_fv{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	column-gap: 10px;
	    width: 96%;
	max-width: 1370px;
	margin: 0 auto;
	margin-top: 145px;
	position: relative;
}
@media screen and (max-width: 870px) {

	.staffpage_fv{
		margin-top: 80px;
	}
}
@media screen and (max-width: 768px) {

	.staff_page{
		padding: 30px 0 0;
	}
	.staffpage_fv{
		flex-direction: column-reverse;
		align-items: center;
		    width: 96%;
		max-width: 600px;
		margin-top: 80px;
	}
	.staff_page:before {
	  border: 60px solid transparent;
	  border-top: 75px solid rgba(216, 14, 54, .38);
	}

}
.staffpage_fv_l{
	width: 51%;
	max-width: 650px;
	position: relative;
}
.staffpage_fv_l:before{
	content: "";
	display: inline-block;
	background-image: url(../img/stf_fv01.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 95%;
	max-width: 650px;
	height: 35vw;
	max-height: 517px;
	position: absolute;
	top: 0;
	left:-40px;
	z-index: -1;
}
.staffpage_fv_r{
	width: 52%;
	max-width: 708px;
}
.staffpage_fv_r img{
	margin-bottom: 35px;
}
@media screen and (max-width: 768px) {

	.staffpage_fv_l{
		width: 100%;
		max-width: 350px;
		margin-right: auto;
	}
	.staffpage_fv_l:before{
		width: 100%;
		max-width: 650px;
		height: 68vw;
		max-height: 517px;
		left: -36px;
	}
	.staffpage_fv_r{
		width: 95%;
		max-width: 708px;
		margin-left: auto;
	}
	.staffpage_fv_r img{
		margin-bottom: 35px;
	}

}

@media screen and (max-width: 479px) {

	.staffpage_fv_l{
		width: 100%;
		max-width: 250px;
		position: relative;
	}
	.staffpage_fv_l:before{
		max-width: 250px;
		height: 60vw;
		max-height: 230px;
		top: 0;
		left: -16px;
	}

}
.staffpage_fv_r li{
	position: absolute;
	width: 23%;
	max-width: 312px;
	top: 22%;
	left: 50.6%;
	transform: translate(-50%,-50%);
}
.staffpage_fv_r li:nth-of-type(2){
	top: 36%;
	left: 82.6%;
	width: 19%;
	max-width: 258px;
}
.staffpage_fv_r li:nth-of-type(3){
	top: 54%;
	left: 89.6%;
	width: 21%;
	max-width: 287px;
}
.staffpage_fv_r li:nth-of-type(4){
	top: 78%;
	left: 69.6%;
	width: 23%;
}

.staffpage_fv h2{
	color: #fff;
	position: absolute;
	top: 48%;
    left: 55.6%;
	transform: translate(-50%,-50%);
	font-size: clamp(20px, 2.499999vw, 36px);
}
@media screen and (max-width: 768px) {

	.staffpage_fv h2{
		top: 38%;
		left: 53%;
		width: 100%;
		font-size: 22px;
	}
	.staffpage_fv_r li{
		position: absolute;
		width: 43%;
		max-width: 312px;
		top: 17%;
		left: 29.6%;
		transform: translate(-50%,-50%);
		margin: 0;
	}
	.staffpage_fv_r li:nth-of-type(2){
		top: 30%;
		left: 64.6%;
		width: 36%;
		max-width: 258px;
	}
	.staffpage_fv_r li:nth-of-type(3){
		top: 57%;
		left: 79.6%;
		width: 35%;
		max-width: 287px;
	}
	.staffpage_fv_r li:nth-of-type(4){
		top: 68%;
		left: 63.6%;
		width: 41%;
	}
}
@media screen and (max-width: 479px) {

	.staffpage_fv h2{
		top: 38%;
		left: 53%;
		width: 100%;
		font-size: 22px;
	}
	.staffpage_fv_r li{
		position: absolute;
		width: 43%;
		max-width: 312px;
		top: 17%;
		left: 29.6%;
		transform: translate(-50%,-50%);
		margin: 0;
	}
	.staffpage_fv_r li:nth-of-type(2){
		top: 30%;
		left: 64.6%;
		width: 36%;
		max-width: 258px;
	}
	.staffpage_fv_r li:nth-of-type(3){
		top: 57%;
		left: 79.6%;
		width: 35%;
		max-width: 287px;
	}
	.staffpage_fv_r li:nth-of-type(4){
		top: 68%;
		left: 63.6%;
		width: 41%;
	}
}
.staffpage_link{
	padding-top: 194px !important;
	display: flex;
	justify-content: space-between;
	max-width: 582px !important;
	margin: 0 auto !important;
}
.staffpage_link li h3{
	display: block;
	position: relative;
	color: #000000;
	font-weight: bold;
	font-size: clamp(16px, 1.666666vw, 24px)
}
.staffpage_link li h3:before{
	content: "";
	display: inline-block;
	background-image: url('../img/arrow02.png');
	background-repeat: no-repeat;
	background-size: cover;
	width: 27px;
	height: 26px;
	margin-right: 20px;
	vertical-align: middle;
	margin-bottom: 6px;
}

@media screen and (max-width: 768px) {

	.staffpage_link{
		padding-top:100px;
		flex-direction: column;
		max-width: fit-content;
		margin: 0 auto;
		row-gap: 15px;
		align-items: center;
	}
	
	.staffpage_link li h3:before{
		width: 20px;
		height: 19px;
		margin-right: 12px;
		margin-bottom: 5px;
	}
	.staffpage_link li{
		width: fit-content !important;
	}
}


.pink_bg{
	width: 95%;
	max-width: 1365px;
	margin: 0 auto;
	background-color: #FBF0F2;
	border-radius: 50px;
	margin-top: 85px;
	padding: 110px 20px 110px 20px;
	position: relative;
}
.pink_bg:after {
  content: "";
  position: absolute;
  top: 99.7%;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  border-right: 45vw solid transparent;
  border-left: 45vw solid transparent;
  border-top: 24.6vw solid #FBF0F2;
}
@media screen and (min-width: 1441px) {

	.pink_bg:after{
		border-right: 665px solid transparent;
        border-left: 665px solid transparent;
		border-top: 345px solid #FBF0F2;
	}

}
@media screen and (max-width: 1300px) {

	
	.pink_bg:after {
	  top: 99.8%;
	  left: 50%;
	  border-right: 45vw solid transparent;
	  border-left: 45vw solid transparent;
	  border-top: 24.6vw solid #FBF0F2;
	}
}
@media screen and (max-width: 1060px) {

	.pink_bg:after {
	  top: 99.7%;
	}
}
@media screen and (max-width: 900px) {

	.pink_bg:after {
	  top: 99.6%;
	}
}

.img_01{
	width: 95%;
	max-width: 1210px;
	margin: 0 auto;
}
.staff_ttl{
	display: inline-block;
	padding: 17px 58px;
	margin-bottom: 30px;
	color: #fff;
	font-weight: bold;
	background-color: #D80E36;
	font-size: clamp(16px, 1.666666vw, 24px)
}
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.7%;
  z-index: 1;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}


@media screen and (max-width: 768px) {

	.pink_bg{
		width: 95%;
		max-width: 600px;
		border-radius: 25px;
		margin-top: 40px;
		padding: 50px 15px 110px 15px;
	}
	.pink_bg:after {
	  top: 99.7%;
	  border-right: 39.5vw solid transparent;
	  border-left: 39.5vw solid transparent;
	  border-top: 100px solid #FBF0F2;
	}
	.staff_ttl{
		padding: 7px 30px;
		margin-bottom: 30px;
	}

}
@media screen and (max-width: 570px) {
	.pink_bg:after {
	  top: 99.78%;
	  border-right: 47vw solid transparent;
	  border-left: 47vw solid transparent;
	  border-top: 100px solid #FBF0F2;
	}

}
#clause{
	width: 95%;
	max-width: 1210px;
	margin: 0 auto;
	padding-top:113px;
}
.clause_fx{
	display: flex;
}
.clause_fx li{
	position: relative;
}
.clause_txt{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content:center;
	text-align: center;
	align-items: center;
	background:rgba(0,0,0,0.37);
	border-radius: 12% 0 0 12%;
}
.clause_fx li:nth-of-type(2) .clause_txt{
	border-radius: 0;
}
.clause_fx li:nth-of-type(3) .clause_txt{
	border-radius: 0 12% 12% 0;
}
.clause_txt h3{
	color: #fff;
	font-weight: bold;
	font-size: clamp(16px, 1.666666vw, 24px);
	margin-bottom: 30px;
}
.clause_txt p{
	font-weight: bold;
	color: #fff;
	font-size: clamp(13px, 1.113vw, 16px);
	padding: 0 2px;
}
@media screen and (max-width: 895px) {
	.clause_txt .pc_br{
		display: none;
	}
}

@media screen and (max-width: 768px) {

	#clause{
		width: 95%;
		max-width: 500px;
		padding-top:70px;
	}
	.clause_fx{
		flex-direction: column;
		overflow: hidden;
		border-radius: 25px;
	}
	.clause_fx li{
		width: 100%;
		height: 220px;
	}
	.clause_fx li img{
		width: 112%;
		position: relative;
		margin: 0 auto;
		left: 50%;
		transform: translateX(-50%);
		height: 100%;
		object-fit: cover;
		border-radius: 25px 25px 0 0;
	}
	.clause_txt{
		border-radius: 25px 25px 0 0;
	}
	.clause_fx li:nth-of-type(3) .clause_txt {
	    border-radius: 0 0 25px 25px;
	}
	.clause_txt .pc_br{
		display: block;
	}
	.clause_txt p{
		font-size:14px;
	}
}
#work_flow{
	width: 95%;
	max-width: 1210px;
	margin: 0 auto;
	padding-top: 112px;
}
.flow_area{
	width: 93%;
	margin: 0 auto;
	margin-top: 65px;
}
.flow_area dl{
	position: relative;
	margin-bottom: 37px;
}
.flow_area dl.last{
	margin-bottom: 0;
}
.flow_area dl::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 33px;
    height: 33px;
    background-color: #D80E36;
    border-radius: 50%;
    z-index: 1;
}
.flow_area dl::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 9px;
    bottom: -76px;
    background-color: #FFFFFF;
    width: 3px;
    z-index: 0;
}
.flow_area dl.last::after{
	content: none;
}
.flow_area dl dt {
	display: flex;
	column-gap: 56px;
	align-items: center;
	letter-spacing: .1em;
	padding-left: 65px;
	font-weight: bold;
	margin-bottom: 13px;
	font-size: clamp(16px, 1.666666vw, 24px);
}
.flow_area dl dt h3{
	font-size: clamp(16px, 1.666666vw, 24px);
}
.flow_area dl dd {
	padding-left: 65px;
	letter-spacing: .05em;
    font-size: clamp(14px, 1.113vw, 16px);
}
.flow_area dl dd {
	padding-left: 65px;
	letter-spacing: .05em;
    font-size: clamp(14px, 1.113vw, 16px);
	position: relative;
	z-index: 0;
}
.flow_area dl dd span.bg_w{
	display: inline-block;
	position: relative;
	font-weight: bold;
	background: linear-gradient(transparent 10%,rgba(255, 255, 255, 0.5) 1%,rgb(255, 255, 255) 65%,rgba(255, 255, 255, 0.5));
	transform: skewX(150deg);
}
.flow_area dl dd span.bg_txt{
	display: block;
  transform: skewX(-150deg)
}
.flow_area p{
	text-align: center;
	font-weight: bold;
	color: #D80E36;
	margin-top: 85px;
	font-size: clamp(14px, 1.666666vw, 24px);
}

@media screen and (max-width: 768px) {

	#work_flow{
		width: 95%;
		max-width: 600px;
		padding-top: 80px;
	}
	.flow_area{
		width: 100%;
		margin: 0 auto;
		margin-top: 10px;
	}
	.flow_area dl{
		margin-bottom: 40px;
	}
	.flow_area dl::before {
	    top: 0;
	    width: 20px;
	    height: 20px;
	}
	.flow_area dl::after {
	    left: 8px;
	    top: 9px;
	    bottom: -55px;
	    width: 3px;
	}
	.flow_area dl dt {
		column-gap: 15px;
		align-items: flex-start;
		padding-left: 35px;
		margin-bottom: 13px;
		font-size: 14px;
	}
	.flow_area dl dt h3{
		margin-top: -3px;
	}
	.flow_area dl dd {
		padding-left: 35px;
		letter-spacing: .05em;
		font-size: clamp(14px, 1.113vw, 16px);
	}
	.flow_area p {
	    margin-top: 40px;
	}
}

#interview{
	padding-top: 116px;
}
.interview_fx{
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1243px;
	margin: 0 auto;
}
.interview_l{
	width: 45%;
	max-width: 549px;
}
.interview_r{
	width: 60%;
	max-width: 742px;
	margin-left: -50px;
	position: relative;
}
.interview_r_txt{
	position: absolute;
	    width: 80%;
    max-width: 410px;
    top: 43%;
    left: 64%;
	transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media screen and (max-width: 1090px) {
	
	.interview_r_txt ul{
			max-width: 300px;
			margin: 0 auto;
	}
}
.interview_r_txt h3{
	text-align: center;
	font-size: clamp(18px, 1.666666vw, 24px);
	margin-bottom: 34px;
	letter-spacing: .1em;
}
.interview_r_txt h3 span{
	font-size: clamp(20px, 2.3vw, 32px);
}
.interview_r_txt li{
	font-size: clamp(12px, 1.39vw, 20px);
	font-weight: bold;
	margin-bottom: 27px;
	padding-bottom: 12px;
	border-bottom: 1px dashed #000000;
	letter-spacing: .1em;
	    display: inline-block;
    padding-right: 5px;
	text-indent: -1em;
	padding-left: 1em;
}
.interview_r_txt li span{
	color: #D80E36;
	font-size: clamp(18px, 1.666666vw, 24px);
}


@media screen and (max-width: 768px) {

	#interview{
		padding-top: 20px;
	}
	.interview_fx{
		flex-direction: column-reverse;
		max-width: 550px;
	}
	.interview_l{
		width: 90%;
		max-width: 549px;
	}
	.interview_r{
		width: 100%;
		max-width: 742px;
		margin: 0 auto;
		position: relative;
	}
	.interview_r_txt{
		position: absolute;
		width: 79%;
		max-width: 410px;
		top: 45%;
		left: 64%;
	}
	.interview_r_txt ul{
		max-width: 200px;
		margin: 0 auto;
	}
	.interview_r_txt h3{
		margin-bottom: 20px;
		letter-spacing: .1em;
	}
	.interview_r_txt h3 span{
		font-size: clamp(20px, 2.3vw, 32px);
	}
	.interview_r_txt li{
		font-size: 14px;
		font-weight: bold;
		margin-bottom: 8px;
		padding-bottom: 5px;
		padding-right: 5px;
	}
	.interview_r_txt li span{
		font-size: 14px;
	}

}
@media screen and (max-width: 479px) {

	
	.interview_r_txt {
        position: absolute;
        width: 79%;
        max-width: 410px;
        top: 45%;
        left: 67%;
    }
	.interview_r_txt ul{
		max-width: 85%;
		margin: 0 auto;
	}
	
}
.interview_box{
	display: flex;
	flex-wrap: wrap;
	width: 96%;
	max-width: 1375px;
	margin: 0 auto;
	margin-top: 16.806%;
	padding-top: 10.417%;
	justify-content: space-between;
	column-gap: 15px;
	row-gap: 32px;
	padding-bottom: 200px;
}
@media screen and (min-width: 1441px) {
	
	.interview_box{
		margin-top: 242px;
		padding-top: 150px;
	}
	
}
@media screen and (max-width: 1000px) {

	.interview_box{
		flex-direction: column;
		align-items: center;
		width: 90%;
		row-gap: 32px;
        padding-top: 100px;
		padding-bottom: 200px;
	}
}
.interview_box li{
	width: 49%;
	max-width: 672px;
	border-radius: 50px;
	padding: 65px 20px 54px 39px;
	display: flex;
	column-gap: 5px;
	box-shadow: 0 5px 10px rgba(0,0,0,.25);
}

.interview_img{
	width: 35%;
	max-width: 206px;
}
.interview_txt{
	width: 65%;
    max-width: 394px;
}
.interview_txt .topic{
	font-size: 16px;
	font-weight: bold;
	letter-spacing: .1em;
}
.interview_txt .topic span{
	color: #D80E36;
}
.interview_txt h3{
	font-size: clamp(16px, 1.39vw, 20px);
	font-weight: bold;
	color: #D80E36;
	margin-top: 19px;
	letter-spacing: .1em;
	padding-bottom: 25px;
	border-bottom: 3px solid #D80E36;
}
.interview_box li p{
	font-size: 16px;
	font-weight: bold;
	letter-spacing: .1em;
	line-height: 1.8;
	margin-top: 24px;
}
@media screen and (max-width: 1000px) {
	
	.interview_box li{
		width: 95%;
	}
	
}


@media screen and (max-width: 768px) {

	.interview_box li{
		width: 95%;
		max-width: 500px;
		border-radius: 25px;
		padding: 25px 10px 30px 10px;
		flex-direction: column;
		align-items:center;
		row-gap: 25px;
		box-shadow: 0 5px 5px rgba(0,0,0,.25);
	}
	
	.interview_img{
		width: 60%;
		max-width: 206px;
	}
	.interview_txt{
		width: 95%;
	    max-width: 394px;
	}
	.interview_txt .topic{
		font-size: 14px;
	}
	.interview_txt .topic span{
		color: #D80E36;
	}
	.interview_txt h3{
		font-size: clamp(16px, 1.39vw, 20px);
		margin-top: 10px;
		letter-spacing: .1em;
		padding-bottom: 15px;
		border-bottom: 2px solid #D80E36;
	}
	
}

/*-----------------------
         basic
-------------------------*/
.page_view_fv {
    margin-top: 145px;
    padding-top: 65px;
    position: relative;
}

.basic_ttl {
	width: 83%;
	max-width: 1188px;
	margin-left: -34px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 295px;
	border-radius: 50px;
	border: 5px solid #023BAE;
	box-shadow: 5px 10px 10px rgba(0,0,0,.25);
}
@media screen and (max-width: 1200px) {
	.basic_ttl{
		height: 250px;
	}
}
@media screen and (max-width: 870px) {
	.page_view_fv {
	    margin-top: 80px;
	    padding-top: 40px;
	    position: relative;
	}
}
.basic_ttltxt{
	    width: 100%;
	    margin-left: 17%;
	    border-left: 3px solid #023BAE;
	    padding: 25px 0 25px 23px;
}
.basic_ttl p{
	color: #023BAE;
	font-size: clamp(14px, 1.666666vw, 24px);
	font-weight: 900;
}
.basic_ttl h1{
	color: #023BAE;
	font-weight: bold;
	font-size: clamp(20px, 2.499999vw, 36px);
}
.basic_img{
	width: 45%;
	max-width: 648px;
	position: absolute;
	left: 76%;
	top: 91%;
	transform: translate(-50%, -50%);
}
.basic_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.basic_contents{
	margin-top: 120px;
}

@media screen and (max-width: 768px) {
	.basic_contents{
		margin-top: 70px;
	}

	.basic_ttl p{
		font-size: 12px;
	}
	.basic_ttl{
		width: 85%;
		height: 145px;
		border-radius: 25px;
		border: 3px solid #023BAE;
		box-shadow: 3px 5px 5px rgba(0,0,0,.25);
		margin-left: -15px;
	}
	.basic_img{
		width: 54%;
		left: 71%;
		top: 106%;
	}

}

/*-----------------------
	      futher
-------------------------*/
.futher .basic_ttl{
	border: none;
	background-color: #F69A37;
}
.futher .basic_ttltxt {
    border-left: 3px solid #fff;
}
.futher .basic_ttl h1,
.futher .basic_ttl p{
    color: #fff;
}


.page_link ul{
	padding-top:50px;
	display: flex;
	flex-wrap: wrap;
	column-gap: 30px;
	row-gap: 18px;
	width: 52%;
	max-width: 710px;
	margin-left: 5%;
}
@media screen and (max-width: 1180px) {

	.page_link ul{
		margin-left: 20px;
	}

}
.page_link ul li{
	width: fit-content;
}
.page_link ul li a{
	display: block;
	position: relative;
	color: #000000;
	font-weight: bold;
	font-size: clamp(14px, 1.666666vw, 24px)
}
.page_link li a:before{
	content: "";
	display: inline-block;
	background-image: url('../img/arrow03.png');
	background-repeat: no-repeat;
	background-size: cover;
	width: 27px;
	height: 26px;
	margin-right: 20px;
	vertical-align: middle;
	margin-bottom: 6px;
}

@media screen and (max-width: 768px) {

	.page_link ul{
		padding-top:100px;
		justify-content: center;
		margin: 0 auto;
		column-gap: 5px;
		width: 90%;
	}
	.futher .page_link ul {
        width: 100%;
    }
	.page_link ul li{
		width: 70%;
	}
	.page_link li a:before{
		width: 20px;
		height: 19px;
		margin-right: 12px;
		margin-bottom: 5px;
	}
}

.futher_contents .read{
	margin-top: 100px;
	text-align: center;
	font-weight: bold;
	color: #F69A37;
	letter-spacing: .1em;
	font-size: clamp(16px, 1.39vw, 20px);
}
@media screen and (max-width: 768px) {

	
	.futher_contents .read{
		margin-top: 50px;
		font-size: 14px;
	}

}
#careerpass{
	width: 95%;
	max-width: 1348px;
	margin: 0 auto;
	padding-top: 16.32%;
}
@media screen and (min-width: 1441px) {
	#careerpass{
		padding-top: 235px;
	}
}
.futher_ttl{
	display: flex;
}
.careerpass_flow{
	display: flex;
	justify-content: space-between;
	max-width: 1260px;
	margin: 77px auto 0;
}
.career_img{
	width: 90%;
	max-width: 1129px;
}
.career_link{
	width: 9%;
	max-width: 110px;
	position: relative;
}
.career_modal{
	display: flex;
	flex-direction: column;
}
.career_modal a{
	position: absolute;
	top: 13%;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}
.career_modal a:nth-of-type(2){
	top: 48%;
}

.career_link .circle {
    width: 100%;
    max-width: 193px;
    border-radius: 50%;
    background-color: #023BAE;
    position: static; 
    left: 0;
    bottom: 0;
}
.career_link a:nth-of-type(1) .circle{
	background-color: #D80E36;
}
.career_link .circle_txt p {
    margin-top: 4px;
    font-weight: bold;
    font-size: clamp(12px, 1.113vw, 16px);
}
.career_link .circle_txt img{
	width: 22%;
	max-width: 24px;
}
.modalWrapper2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 94%;
    max-width: 1348px;
    padding: 33px 20px;
    border-radius: 50px;
    background-color: #F3B7C3;
}
.modalWrapper3{
	background-color: #CCD8EF;
}
.modalWrapper2 .modalContents {
    max-width: none;
    margin: 0 auto;
    color: #000000;
    text-align: center;
}
.modalWrapper2 .closeModal{
	display: none;
}

@media screen and (max-width: 768px) {

	.career_img{
		width: 85%;
		max-width: 1129px;
	}
	.career_link{
		width: 16%;
		max-width: 110px;
		position: relative;
	}
	.modalWrapper2 {
        width: 90%;
        max-width: 550px;
        padding: 40px 15px 30px;
        border-radius: 25px;
    }
	.career_link .circle_txt p{
		font-size: 9px;
	}
}


.futher_ttl h2{
	padding-left: 18px;
	line-height: 1;
	font-size: clamp(22px, 2.499999vw, 36px);
	border-left: 3px solid #F69A37;
	padding-bottom: 15px;
	letter-spacing: .1em;
}
.futher_ttl h2 span{
	font-weight: bold;
	color: #F69A37;
	font-size: clamp(12px, 1.39vw, 20px);
}
.futher_ttl .num{
	display: block;
	padding-right: 18px;
	color: #F69A37;
	font-size: clamp(35px, 4.445vw, 64px);
	font-weight: bold;
	line-height: 1;
	letter-spacing: .1em;
}
@media screen and (max-width: 768px) {

	.futher_ttl h2{
		padding-left: 10px;
		line-height: 1.3;
		font-size: 20px;
		border-left: 3px solid #F69A37;
		padding-bottom: 10px;
	}
	
	.futher_ttl .num{
		padding-right: 10px;
	}

	
}

.careerpass_txt{
	margin-top: 55px;
}
.careerpass_txt p{
	text-align: center;
	font-size: clamp(13px, 1.39vw, 20px);
	font-weight: bold;
	letter-spacing: .1em;
	max-width: 1280px;
	margin: 0 auto;
}

.careerpass_arrow{
	margin-top: 98px;
}
.careerpass_arrow p{
	position: relative;
	background-color: #F69A37;
	width: 97%;
	max-width: 1300px;
	padding: 10px 0;
	font-size: clamp(14px, 1.39vw, 20px);
	text-align: center;
	font-weight: bold;
	color: #fff;
	letter-spacing: .1em;
	 font-family: "Noto Sans JP", serif;
}
.careerpass_arrow p::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: 0;
  left: 100%;
  border-top: 34px solid transparent;
  border-right: 0 solid transparent;
  border-left: 45px solid #F69A37;
  border-bottom: 35px solid transparent;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
	
	.careerpass_caree{
		width: 18%;
		max-width: 100px;
	}
	.careerpass_flow{
		display: flex;
		justify-content: center;
		column-gap: 0;
		margin-top: 30px;
	}
	.careerpass_arrow p{
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
		width: 100%;
		height: 83%;
		max-height: 710px;
		display: flex;
        justify-content: center;
        align-items: center;
	}
	.careerpass_arrow p::after {
	    content: '';
        position: absolute;
        top: 97%;
        transform: rotate(90deg);
        left: 10px;
        border-top: 30px solid transparent;
        border-right: 0 solid transparent;
        border-left: 20px solid #F69A37;
        border-bottom: 30px solid transparent;
	}
	.careerpass_arrow {
	    margin-top: 0;
		        width: 15%;
        max-width: 40px;
	}
}
.careerpass_caree ul{
	display: flex;
	column-gap: 14px;
	width: 96%;
	max-width: 1287px;
	margin: 23px 0;
}
.careerpass_caree ul li{
	width: 33%;
	background-color: #F69A37;
	max-width: 418px;
	color: #fff;
	font-size: clamp(14px, 1.39vw, 20px);
	text-align: center;
	padding: 3px 0;
	font-weight: bold;
	letter-spacing: .1em;
}
.careerpass_caree ul li:nth-of-type(2){
	background-color: #023BAE;
	max-width: 418px;
}
.careerpass_caree ul li:nth-of-type(3){
	width: 22%;
	background-color: #D80E36;
	max-width: 275px;
}
.careerpass_caree ul li:nth-of-type(4){
	width: 11%;
	background-color: #1C978B;
	max-width: 133px;
}

@media screen and (max-width: 768px) {

	.careerpass_step{
		width: 50%;
		max-width: 200px;
	}
	.careerpass_caree ul{
		flex-direction: column;
		align-items: center;
		row-gap: 15px;
		width: 100%;
		margin: 0 auto;
		max-height: 710px;
	}
	.careerpass_caree ul li {
	    width: 90% !important;
	    -ms-writing-mode: tb-rl;
	    writing-mode: vertical-rl;
	    max-width: 100px;
	    height: 34%;
	    display: flex;
	    justify-content: center;
	    align-items: center;
	}
	.careerpass_caree ul li:nth-of-type(3){
		height: 22%;
	}
	.careerpass_caree ul li:nth-of-type(4){
		height: 10%;
	}
}

.careerpass_step ul{
  /* overflow:hidden; */
  display: flex;
  list-style: none;
  position: relative;
  width: 98%;
}
.careerpass_step li{
  position: relative;
  width: 10.9%;
  max-width: 134px;
  height: 171px;
  margin: 0 10px 0 0;
  background: #FEF5EB;
}

.careerpass_step li p{
	position: absolute;
	width: 100%;
	text-align: center;
	top: 48%;
	left: 84%;
	transform: translate(-50%,-50%);
	z-index: 10;
	font-size: clamp(12px, 1.39vw, 20px);
	font-weight: bold;
	letter-spacing: .1em;
}
@media screen and (max-width: 1160px) {

	.careerpass_step li p{
		top: 48%;
		left: 95%;
	}
}
@media screen and (max-width: 1000px) {

	.careerpass_step li p{
		top: 48%;
		left: 78%;
	}
}
@media screen and (max-width: 768px) {

	.careerpass_step{
		width: 50%;
		max-width: 200px;
	}
	.careerpass_step ul{
	  overflow:hidden;
	  flex-direction: column;
	  padding-bottom: 100px;
	}
	.careerpass_step li {
	    position: relative;
	    width: 100%;
	    max-width: 180px;
	    height: 70px;
	    margin: 0 0 10px 0;
	    background: #FEF5EB;
	}
	.careerpass_step li p{
		width: 100%;
		top: 70%;
		left: 50%;
	}
}
 /*　先端部分 */
.careerpass_step li::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -112px;
  border-width: 85px 56px;
  border-color: transparent transparent transparent #FEF5EB;
  border-style: solid;
  z-index: 10;
}

/* 白いスペース部分 */
.careerpass_step li::after{
	 content: "";
	 position: absolute;
	 top: 50%;
	 transform: translateY(-50%);
	 right: -122px;
	 border-width:  85px 56px;
	 border-color: transparent transparent transparent white;
	 border-style: solid;
	 z-index: 5;
}
.careerpass_step ul::before{
	 content: "";
	 position: absolute;
	 top: 50%;
	 transform: translateY(-50%);
	 left: -1px;
	 border-width: 85px 56px;
	 border-color: transparent transparent transparent white;
	 border-style: solid;
	 z-index: 5;
}
@media screen and (max-width: 1000px) {


	 /*　先端部分 */
	.careerpass_step li::before{
	  transform: translateY(-50%);
	  right: -60px;
	  border-width: 87px 30px;
	  border-color: transparent transparent transparent #FEF5EB;
	}
	
	/* 白いスペース部分 */
	.careerpass_step li::after{

		 transform: translateY(-50%);
		 right: -70px;
		 border-width: 87px 30px;
		 border-color: transparent transparent transparent white;
	}
	.careerpass_step ul::before{
		 transform: translateY(-50%);
		 left: -1px;
		 border-width: 87px 30px;
		 border-color: transparent transparent transparent white;
	}
}

@media screen and (max-width: 768px) {

	 	 /*　先端部分 */
	.careerpass_step li::before{
	  top: 128.5%;
	  transform: translateY(-50%) rotate(90deg);
	  right: 71px;
	  border-width: 90px 20px;
	  border-color: transparent transparent transparent #FEF5EB;
	}
	
	/* 白いスペース部分 */
	.careerpass_step li::after{
		 top: 141%;
		 transform: translateY(-50%) rotate(90deg);
		 right: 71px;
		 border-width: 90px 20px;
		 border-color: transparent transparent transparent white;
	}
	.careerpass_step ul::before{
		 top: 2%;
		 transform: translateY(-50%) rotate(90deg);
		 left: 71px;
		 border-width: 100px 20px;
		 border-color: transparent transparent transparent white;
	}
}

/* 色 */
.careerpass_step li:nth-of-type(2){
	background: rgba(246, 154, 55, .3);
}
.careerpass_step li:nth-of-type(2)::before{
  border-color: transparent transparent transparent rgba(246, 154, 55, .3);
}
.careerpass_step li:nth-of-type(3){
	background: rgba(246, 154, 55, .5);
}
.careerpass_step li:nth-of-type(3)::before{
  border-color: transparent transparent transparent rgba(246, 154, 55, .5);
}
.careerpass_step li:nth-of-type(4){
	background: rgba(2, 59, 174, .1);
}
.careerpass_step li:nth-of-type(4)::before{
  border-color: transparent transparent transparent rgba(2, 59, 174, .1);
}
.careerpass_step li:nth-of-type(5){
	background: rgba(2, 59, 174, .3);
}
.careerpass_step li:nth-of-type(5)::before{
  border-color: transparent transparent transparent rgba(2, 59, 174, .3);
}
.careerpass_step li:nth-of-type(6){
	background: rgba(2, 59, 174, .5);
}
.careerpass_step li:nth-of-type(6)::before{
  border-color: transparent transparent transparent rgba(2, 59, 174, .5);
}
.careerpass_step li:nth-of-type(7){
	background: rgba(216, 14, 54, .3);
}
.careerpass_step li:nth-of-type(7)::before{
  border-color: transparent transparent transparent rgba(216, 14, 54, .3);
}
.careerpass_step li:nth-of-type(8){
	background: rgba(216, 14, 54, .5);
}
.careerpass_step li:nth-of-type(8)::before{
  border-color: transparent transparent transparent rgba(216, 14, 54, .5);
}
.careerpass_step li:nth-of-type(9){
	background: rgba(28, 151, 139, .5);
}
.careerpass_step li:nth-of-type(9)::before{
  border-color: transparent transparent transparent rgba(28, 151, 139, .5);
}
.careerpass_position{
	background-color: rgba(246, 154, 55, .3);
	border-radius: 50px;
	margin-top: 23px;
	padding: 33px 0;
}
.position_box{
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 15px;
	width: 93%;
	max-width: 1197px;
	margin: 0 auto;
}
.position_ttl{
	width: 13%;
	max-width: 155px;
}
.position_list{
	width: 82%;
	max-width: 977px;
}
.position_list ul{
	display: flex;
	flex-wrap:wrap;
	column-gap: 25px;
}
.position_list ul:last-child{
	margin-top: 30px;
	justify-content: flex-end;
}
.modalWrapper3 .position_list ul:last-child{
	margin-top: 0;
	justify-content: space-between;
}
.position_list ul li{
	text-align: left;
	position: relative;
	width: 27%;
	max-width: 267px;
	background-color: #fff;
	border-radius: 20px;
	padding: 11px 0;
	height: 226px;
	box-shadow: 0 10px 10px rgba(0,0,0,.25);
}
.position_list01 ul:first-child li:first-child{
	width: 56%;
	max-width: 559px;
	padding-top: 20px;
}
.modalWrapper3 .position_list ul li{
	width: 48%;
	max-width: 474px;
	height: 187px;
}
.position_list ul li h4{
	font-size: clamp(14px, 1.39vw, 20px);
	font-weight: bold;
	position: relative;
	margin-bottom: 5px;
	padding-left: 15px;
	
}
.position_list ul li h4:after{
	content:"";
	display: inline-block;
	position: absolute;
	bottom: -8px;
	left: 0;
	height: 1px;
	width: 63%;
	background-color: #D80E36;
}
.modalWrapper3 .position_list ul li h4:after{
	background-color: #023BAE;
}
.position_list ul li p{
	font-weight: bold;
	font-size: clamp(10px, 1.113vw, 16px);
	line-height: 1.7;
	margin-top: 19px;
	padding: 0 5px;
	width: 92%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.position_list02 ul li p{
	width: max-content;
	margin: 19px auto 0;
}
.position_list ul:first-child li:nth-of-type(3) p,
.position_list ul:last-child li:nth-of-type(1) p{
	margin-top: 19px;
}
.position_ttl{
	width: 13%;
	max-width: 155px;
	border: 3px solid #D80E36;
	border-radius: 20px;
	padding: 0 2px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #D80E36;
	height: 260px;
	background-color: rgba(255,255,255,.2);
}
.modalWrapper3 .position_ttl{
	width: 14%;
	max-width: 155px;
	border: 3px solid #023BAE;
	color: #023BAE;
	height: 186px;
}
.position_ttl h3{
	line-height: 2;
	font-size: clamp(18px, 1.666666vw, 24px);
	letter-spacing: .1em;
}
.sp_list{
	display: none !important;
}
@media screen and (max-width: 1180px) {
	
	
	.pc_list{
		display: none !important;
	}
	
	.sp_list{
		display: block !important;
	}
	.position_box{
		max-width: 770px;
	}
	.position_ttl{
		width: 20%;
	}
	.position_list {
	    width: 80%;
	}
	.position_list ul{
		flex-wrap: wrap;
		justify-content: center;
		row-gap: 40px;
	}
	.position_list ul:last-child{
		justify-content: center;
		margin-top: 20px;
	}
	.position_list ul li{
		width: 44%;
	}
	.position_list01 ul:first-child li:first-child {
	    width: 44%;
	    max-width: 559px;
	    padding-top: 20px;
	}
	.modalWrapper3 .position_list ul li {
	    width: 47%;
	    max-width: 267px;
	    height: 187px;
	    margin: 0 auto;
	}

}

@media screen and (max-width: 768px) {
	
	.careerpass_position {
		border-radius: 25px;
		margin-top: 23px;
		padding: 40px 0;
	}
	.position_box{
		flex-direction: column;
		row-gap: 30px;
		height: 450px;
		overflow: scroll;
		width: 100%;
	}
	.modalWrapper3 .position_box{
		justify-content: flex-start;
		row-gap: 20px;
		height: auto;
	}
	.position_ttl,.modalWrapper3 .position_ttl {
	    width: 100%;
	    max-width: 300px;
	    padding: 10px 25px;
	    height: auto;
	}
	.position_ttl h3{
		line-height: 1.7;
	}
	.position_list {
        width: 100%;
		padding-bottom: 30px;
    }
	.position_list ul,.modalWrapper3 .position_list ul:last-child{
		row-gap: 20px;
		column-gap: 20px;
	}
	.position_list ul li ,
	.position_list01 ul:first-child li:first-child{
        width: 90%;
        height: auto;
        padding: 30px 0;
		        max-width: 267px;
    }
	.position_list ul li p{
		position: static;
		transform: none;
		width: 90%;
		margin-right: auto;
		margin-left: auto;
	}
	.modalWrapper3 .position_list ul li h4{
		font-size: 17px;
	}
	.modalWrapper3 .position_list ul li p{
		font-size: 14px;
	}
	.position_list ul li:nth-of-type(2) p{
		margin-top: 30px;
	}
	.modalWrapper3 .position_list ul li {
        width: 90%;
        max-width: 267px;
        height: 187px;
        margin: 0 auto;
    }
	.modalWrapper3 .position_list ul li {
        width: 90%;
        max-width: 267px;
        height: 165px;
        margin: 0 auto;
    }
}

.careerpass_fukidashi{
	width: 82%;
	max-width: 906px;
	margin-top: 17px;
	margin-left: 6%;
	position: relative;
}
.ca_fkds_txt {
    position: absolute;
    top: 55%;
    left: 54%;
    width: 100%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.ca_fkds_txt p{
	font-size: clamp(12px, 1.39vw, 20px);
	font-weight: bold;
}
.ca_fkds_txt p span{
	color: #F69A37;
}
@media screen and (max-width: 768px) {

	.careerpass_fukidashi{
		width: 97%;
		max-width: 906px;
		margin-top: 10px;
		margin-left: 0;
		position: relative;
	}
	.ca_fkds_txt p {
		font-size: clamp(12px, 2.9vw, 20px);
		font-weight: bold;
	}

}

#system{
	width: 95%;
    margin: 0 auto;
    padding-top: 19%;
    max-width: 1335px;
}
@media screen and (min-width: 1441px) {

	#system{
		padding-top: 360px;
	}
}

.system_list{
	margin-top: 140px;
}
.system_list:not(:first-child){
	margin-top: 135px;
}
.system_list h3{
	color: #F69A37;
	font-weight: bold;
	font-size: clamp(20px, 2.223vw, 32px);
	position: relative;
	display: inline-block;
	margin-left: 50px;
}
rt {
    font-size: 11px;
}
.system_list h3:after{
	content: "";
	display: inline-block;
	width: 210px;
	height: 3px;
	background-color: #F69A37;
	position: absolute;
	top: 50%;
	left: 100%;
	margin-left: 27px;
}
.system_list h3::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -45px;
    width: 0;
    height: 0;
    margin: auto;
    border-top: 15px solid transparent;
    border-right: 0 solid transparent;
    border-left: 30px solid #F69A37;
    border-bottom: 15px solid transparent;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {

	.system_list{
		margin-top: 80px;
	}
	.system_list:not(:first-child){
		margin-top: 70px;
	}
	.system_list h3{
		margin-left: 30px;
	}
	rt {
		font-size: 8px;
	}
	.system_list h3:after{
		width: 60px;
		height: 3px;
		margin-left: 15px;
	}
	.system_list h3::before {
	    left: -25px;
	    border-top: 10px solid transparent;
	    border-right: 0 solid transparent;
	    border-left: 18px solid #F69A37;
	    border-bottom: 10px solid transparent;
	}

}
.system_fx{
	display: flex;
	align-items: center;
	column-gap: 30px;
	margin-top: 40px;
}
.system_list:nth-child(even) .system_fx{
	flex-direction: row-reverse;
}
.system_img{
	width: 44%;
	max-width: 586px;
}
.system_txt{
	   width: 55%;
    max-width: 720px;
}
@media screen and (max-width: 768px) {

	.system_fx{
		flex-direction: column;
		row-gap: 30px;
		margin-top: 40px;
	}
	.system_list:nth-child(even) .system_fx{
		flex-direction: column;
	}
	.system_img{
		width: 95%;
		max-width: 600px;
	}
	.system_txt{
		   width: 95%;
	    max-width: 550px;
	}

}

.system_txt p,.system_listbox li,
.system_hukidashi p{
	font-weight: bold;
	letter-spacing: .15em;
    font-size: clamp(14px, 1.113vw, 16px);
}
.system_listbox{
	margin-top: 66px;
	position: relative;
	background-color: #FFFAF5;
	border-radius: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 70px 15px 20px;
	margin-bottom: 30px;
}
.system_listbox li{
	line-height: 1.7;
}
.system_list01 .system_listbox li{
	text-indent: -1em;
	padding-left: 1em;
}
.system_hukidashi{
	background-image: url('../img/hukidashi03.png');
	background-size: contain;
	background-repeat: no-repeat;
	width: 48%;
	max-width: 325px;
	height: 105px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -34px;
	left: -13px;
}
.system_hukidashi p{
	margin-bottom: 23px;
}
@media screen and (max-width: 768px) {

	.system_listbox{
		margin-top: 40px;
		border-radius: 25px;
		padding: 60px 15px 20px;
		margin-bottom: 30px;
	}
	.system_hukidashi{
		width: 100%;
		max-width: 270px;
		height: 105px;
		top: -34px;
		left: -13px;
	}
	.system_hukidashi p{
		margin-bottom: 23px;
	}

}
/* system_list02 */
.system_list02 .system_listbox{
	padding: 70px 30px 39px;
}
.system_list02 .system_listbox > ul{
	display: flex;
	flex-wrap: wrap;
	column-gap: 13px;
	row-gap: 13px;
}
.system_list02 .system_listbox > ul > li{
	padding: 6px 10px;
	background-color: #1C978B;
	color: #fff;
}
.system_list02 .system_listbox ul:last-child{
	margin-left: 10px;
}
.nado{
	position: absolute;
	right: 20px;
	top: 80%;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: .1em;
}
@media screen and (max-width: 768px) {

	.system_list02 .system_listbox > ul > li{
		padding: 5px 10px;
	}
	.system_list02 .system_listbox ul:last-child li{
		font-size: 12px;
	}
	.system_list02 .system_listbox{
		padding: 60px 15px 30px;
	}
	.nado{
		font-size: 12px;
		top: 92%;
	}
}
/* system_list03 */
.system_list03 .system_listbox{
	padding-bottom: 34px;
}
.system_list03 .system_listbox ul{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	column-gap: 30px;
	width: 82%;
}
.system_list03 .system_listbox ul li{
	width: fit-content;
}
.l_txt{
	max-width: 635px;
	margin: 0 auto;
	margin-top: 65px;
	font-weight: bold;
	letter-spacing: .15em;
    font-size: clamp(14px, 1.113vw, 16px);
}
#system02{
	width: 95%;
	max-width: 1342px;
	margin: 0 auto;
	padding-top: 15%;
}
#system02 .futher_ttl {
   margin-left: 2%;
}

@media screen and (min-width: 1441px) {

	#system02{
		padding-top: 288px;
	}
}

.system02_read{
	width: 95%;
	max-width: 770px;
	margin: 50px auto 0;
	text-align: center;
}
.system02_read p{
	font-size: clamp(14px, 1.39vw, 20px);
    letter-spacing: .1em;
    font-weight: bold;
}
.system02_fx{
	display: flex;
	justify-content: center;
	margin-top: 100px;
	column-gap: 9px;
}
.system02_fx li{
	position: relative;
	width: 50%;
	max-width: 679px;
}
.system02_txt{
	width: 79%;
	max-width: 520px;
	height: 328px;
	margin: -24% auto 0;
	background-color: #fff;
	text-align: center;
	border-radius: 30px;
	padding: 32px 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-shadow: 0 5px 10px rgba(0,0,0,.25);
	position: relative;
	z-index: 1;
}
.system02_txt h3{
	color: #F69A37;
	font-size:clamp(20px, 1.666666vw, 24px);
	padding: 0 23%;
	padding-bottom: 18px;
	margin-bottom: 30px;
	border-bottom: 2px solid #000000;
}
.system02_txt p{
	font-size: clamp(13px, 1.113vw, 16px);
	font-weight: bold;
	letter-spacing: .1em;
	line-height: 1.8;
}
@media screen and (max-width: 768px) {

	.system02_fx{
		flex-direction: column;
		align-items: center;
		margin-top: 70px;
	}
	.system02_fx li{
		width: 95%;
		max-width: 500px;
	}
	.system02_fx li:last-child{
		margin-top: 60px;
	}
	.system02_txt{
		width: 90%;
		max-width: 400px;
		height: auto;
		margin: -24% auto 0;
		border-radius: 25px;
		padding: 25px 10px;
	}
	.system02_txt h3{
		padding: 0 45px;
		padding-bottom: 10px;
		margin-bottom: 20px;
		border-bottom: 1px solid #000000;
	}
}

.system_point{
	background-color: #E9F9FF;
	border-radius: 50px;
	padding: 64px 0;
	margin-top: 75px;
}

.system_pointimg{
	width: 95%;
	max-width: 1223px;
	margin: 0 auto;
	position: relative;
}
.system_pointimg .new_txt{
	position: absolute;
	top: 88%;
	left: 50%;
	width: 118%;
	max-width: 1440px;
	transform: translate(-50%,-50%);
}
.system_pointtxt{
	position: absolute;
	top: 72%;
	left: 114%;
	width: 100%;
	transform: translate(-50%,-50%);
}
.system_pointtxt p{
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: clamp(22px, 2.499999vw, 36px);
	font-weight: 800;
	color: #fff;
}
.system_point_sec01{
	width: 90%;
	max-width: 1215px;
	margin: 0 auto;
	margin-top: 170px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	column-gap: 10px;
}
.point_ttl .p_txt{
	color: #000000;
	display: inline-block;
	font-weight: bold;
	padding-bottom: 12px;
	border-bottom: 1px solid #000000;
    font-size: clamp(20px, 2.223vw, 32px);
}
.point_ttl{
	color: #F69A37;
    font-size: clamp(20px, 2.223vw, 32px);
}
.system_point_sec01 .point_ttl .p_txt{
	margin-bottom: 30px;
}
.system_point_sec01 .point_ttl{
	margin-bottom: 50px;
}
.system_point_sec01 .point_sec_l{
	    width: 32%;
    margin-bottom: 180px;
}
.system_point_sec01 .point_sec_l p{
	font-weight: bold;
    letter-spacing: .15em;
    font-size: clamp(14px, 1.113vw, 16px);
	margin-top: 30px;
}
.point_ttl .b_txt{
	text-shadow: 1px 2px 0 rgba(97, 185, 241, .4);
}
.system_point_sec01 .point_sec_r{
	width: 71%;
	max-width: 808px;
}
.system_point_sec01 .point_sec_r ul{
	display: flex;
	justify-content: space-between;
	column-gap: 10px;
}
.system_point_sec01 .point_sec_r ul li{
	width: 49%;
	max-width: 392px;
	border-radius: 50px;
	position: relative;
	z-index: 1;
	padding: 19px 10px 47px;
}
.system_point_sec01 .point_sec_r ul li:after{
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%,-50%);
	background-color: #D1ECFC;
	filter: blur(15px);
	border-radius: 50px;
	z-index: -1;
}
.system_point_sec01 .point_sec_r ul li img{
	max-width: 105px;
	display: block;
	margin: 0 auto;
}
.system_point_sec01 .point_sec_r ul li h4{
	color: #fff;
	font-weight: bold;
	display: inline-block;
	background-color: #F69A37;
	text-align: center;
	margin-bottom: 7px;
	padding: 10px;
    font-size: clamp(14px, 1.113vw, 16px);
}
.system_point_sec01 .point_sec_r ul li:nth-of-type(1) h4{
	margin-bottom: 22px;
}
.system_point_sec01 .point_sec_r ul li p{
	width: 93%;
	max-width: 310px;
	margin: 20px auto 0;
	font-weight: bold;
    font-size: clamp(14px, 1.113vw, 16px);
	line-height: 1.7;
}
.system_point_sec01 .point_sec_r ul li p .txtblue{
	color: #61B9F1;
}
.system_point_sec01 .point_sec_r ul li p .txtorng{
	color: #F69A37;
}
@media screen and (max-width: 1050px) {

	.system_point_sec01{
		width: 90%;
		max-width: 1215px;
		margin: 0 auto;
		margin-top: 145px;
		flex-direction: column;
		align-items: flex-start;
		column-gap: 10px;
	}
	.system_point_sec01 .point_sec_l {
	    width: 95%;
	    margin-bottom: 50px;
	}
	.system_point_sec01 .point_sec_r {
	    width: 100%;
	    max-width: none;
	    margin: 0 auto;
	}
	.system_point_sec01 .point_sec_r ul li {
	    width: 49%;
	    max-width: 392px;
	    padding: 19px 10px 47px;
	}
}
@media screen and (max-width: 768px) {

	.system_pointtxt p{
		font-size: 16px;
	}
	.system_pointtxt {
	    position: absolute;
	    top: 72%;
	    left: 103%;
	    width: 78%;
	    transform: translate(-50%, -50%);
	}
	.system_pointimg .new_txt {
		position: absolute;
		top: 77%;
	}
	.system_point {
	    border-radius: 25px;
	    padding: 50px 0;
	    margin-top: 50px;
	}
	.system_point_sec01{
		width: 90%;
		max-width: 1215px;
		margin: 0 auto;
		margin-top: 65px;
	}
	.system_point_sec01 .point_ttl {
	    margin-bottom: 0;
	}
	.system_point_sec01 .point_sec_l p {
		margin-top: 20px;
	}
	.system_point_sec01 .point_sec_r ul {
	    flex-direction: column;
		align-items: center;
	    row-gap: 20px;
	}
	.system_point_sec01 .point_sec_r ul li {
	    width: 100%;
	    max-width: 392px;
	    padding: 19px 10px 47px;
	}
	.system_point_sec01 .point_sec_r ul li:after {
	    filter: blur(8px);
	    border-radius: 25px;
	    z-index: -1;
	}
}
@media screen and (max-width: 479px) {

	.system_pointtxt {
	    left: 92%;
	}
}
.system_point_sec02{
	display: flex;
	justify-content: space-between;
	column-gap: 20px;
	width: 95%;
	max-width: 1260px;
	margin: 0 auto;
	position: relative;
	padding-top: 195px;
	padding-bottom: 50px;
	z-index: 1;
}
.point_sec02_bg{
	margin: 0 calc(50% - 50vw);
	width: 100vw;
	position: relative;
}
.point_sec02_bg:before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fff;
	width: 100vw;
	height: 66%;
	top: 56%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.system_point_sec02:before{
	background-image: url(../img/new_bg_t.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
	content: "";
	display: inline-block;
	position: absolute;
	bottom: 75%;
	left: 50%;
	width: 100vw;
	/* height: 199px; */
	padding-top: 19.5%;
	transform: translateX(-50%);
	z-index: -1;
}
.system_point_sec02:after{
	background-image: url(../img/new_bg_b.svg);
	background-repeat: no-repeat;
	background-size: cover;
	    background-position: bottom;
    content: "";
    display: inline-block;
    position: absolute;
        top: 89%;
    left: 50%;
    width: 100vw;
    /* height: 199px; */
    padding-top: 18.5%;
    transform: translateX(-50%);
    z-index: -1;
}
.system_point_sec02 .point_ttl .p_txt {
    margin-bottom: 60px;
}
.system_point_sec02 .point_sec_l02{
	width: 43%;
	max-width: 530px;
	display: flex;
	flex-direction: column;
	row-gap: 55px;
}
.system_point_sec02 .point_sec_r02{
	width: 49%;
	max-width: 595px;
	display: flex;
	flex-direction: column;
}
.system_point_sec02 .point_sec_r02 p,
.system_point_sec02 .point_sec_r02 dd{
	font-weight: bold;
    font-size: clamp(14px, 1.113vw, 16px);
	line-height: 1.6;
}
.system_point_sec02 .point_sec_r02 p{
	margin-top: 45px;
}
.system_point_sec02 .point_sec_r02 dl{
	margin-top: 90px;
}
.system_point_sec02 .point_sec_r02 dt{
	padding: 10px 40px;
	margin-bottom: 25px;
	color: #fff;
	display: inline-block;
	background-color: #F69A37;
	font-size: clamp(14px, 1.113vw, 16px);
}
.system_point_sec02 .point_sec_r02 dd{
	margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
	
	.system_point_sec02 .point_ttl .p_txt {
	    margin-bottom: 20px;
	}

	.system_point_sec02 {
	    flex-direction: column-reverse;
	    align-items: center;
	    row-gap: 20px;
	    width: 90%;
	    max-width: 1260px;
	    padding-top: 140px;
	    padding-bottom: 50px;
	}
	.system_point_sec02 .point_sec_l02{
		width: 95%;
		max-width: 550px;
		flex-direction: row;
		justify-content: center;
		column-gap: 10px;
	}
	.system_point_sec02 .point_sec_l02{
		width: 49%;
	}
	.system_point_sec02 .point_sec_r02{
		width: 100%;
		max-width: 550px;
	}
	.system_point_sec02 .point_sec_r02 dl {
	    margin-top: 30px;
	}
	.system_point_sec02 .point_sec_r02 dt {
	    padding: 5px 40px;
	    margin-bottom: 10px;
	}
	.system_point_sec02:before {
	    bottom: 84%;
	}
	.point_sec02_bg:before {
	    height: 75%;
	    top: 52%;
	    left: 50%;
	}
}

.system_point_sec03{
	width: 95%;
	max-width: 1220px;
	margin: 0 auto;
	background-image: url(../img/new_img04.png);
	background-size: cover;
	background-position: center;
	position: relative;
	padding: 53px 0;
	border-radius: 50px;
	margin-top: 155px;
	position: relative;
}
.dogu{
	position: absolute;
	width: 54%;
	max-width: 251px;
	right: -5%;
	bottom: -5%;
}
.point_sec03box{
	width: 90%;
	max-width: 1150px;
	margin: 0 auto;
	border-radius: 50px;
	padding-bottom: 75px;
	background-color: rgba(255,255,255,.7);
}
.point_sec03box .point_ttl{
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.point_sec03box .point_ttl .p_txt{
	padding-bottom: 3px;
	padding-right: 30px;
	margin-right: 37px;
}
.sec03_read{
	text-align: center;
	margin-top: 35px;
	font-size: clamp(14px, 1.113vw, 16px);
	font-weight: bold;
}
.point_sec03box ul{
	display: flex;
	justify-content: space-between;
	width: 95%;
	max-width: 960px;
	margin: 43px auto 0;
	text-align: center;
	column-gap: 10px;
}
.point_sec03box ul li{
	width: 33%;
	max-width: 310px;
}
.point_sec03box ul li h4{
	font-weight: bold;
	position: relative;
	color: #F69A37;
    font-size: clamp(18px, 1.666666vw, 24px);
	margin-right: 4%;
}
.point_sec03box ul li h4 img{
	width: 11%;
	max-width: 35px;
	margin-right: 5px;
}
.point_sec03box ul li p{
	font-size: 14px;
	margin-top: 10px;
}
@media screen and (max-width: 768px) {

	.dogu {
	    position: absolute;
	    width: 54%;
	    max-width: 251px;
	    right: -15%;
	    bottom: -5%;
	}
	.point_sec03box .point_ttl {
	   flex-direction: column;
	   align-items: flex-start;
	   justify-content: center;
	   width: fit-content;
	   margin: 0 auto;
	}
	.point_sec03box .point_ttl br{
		display: none;
	}
	.point_sec03box .point_ttl .p_txt {
	    padding-bottom: 3px;
	    padding-right: 30px;
	    margin-right: 0; 
		margin-bottom: 10px;
	}
	.system_point_sec03{
		border-radius: 25px;
		margin-top: 60px;
	}
	.point_sec03box {
	    width: 95%;
	    max-width: 1150px;
	    margin: 0 auto;
	    border-radius: 25px;
		padding: 30px 10px 75px;
	}
	.point_sec03box ul{
		flex-direction: column;
		align-items: center;
		width: 95%;
		max-width: 960px;
		margin: 43px auto 0;
		text-align: center;
		row-gap: 30px;
	}
	.point_sec03box ul li{
		width: 100%;
		max-width: 310px;
	}
	.point_sec03box ul li h4 {
		margin-right: 7%;
	}
}
.futher_link{
	margin-top: 0 !important;
}
/* welfare */
#welfare{
	margin-top: 24.653%;
	background-color: #FFFAF5;
	padding: 13% 20px 200px;
}
@media screen and (min-width: 1441px) {

	#welfare{
		margin-top: 355px;
	}
}
@media screen and (max-width: 768px) {

	#welfare{
		margin-top: 80px;
		padding: 13% 15px 200px;
	}

}
.welfare_ttl{
	text-align: center;
}
.welfare_ttl p{
	color: #F69A37;
	font-weight: bold;
	letter-spacing:.1em;
	font-size:clamp(18px, 1.666666vw, 24px);
	margin-bottom: 34px;
}
.welfare_ttl h2{
	color: #fff;
	width: 80%;
    max-width: 511px;
	margin: 0 auto;
	background-color: #F69A37;
	font-weight: bold;
	letter-spacing:.1em;
	padding: 19px 0;
	font-size:clamp(20px, 2.499999vw, 36px);
}
@media screen and (max-width: 768px) {

	.welfare_ttl h2{
		padding: 10px 0;
		font-size:clamp(20px, 2.499999vw, 36px);
	}
}
.welfare_list{
	margin: 107px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	max-width: 1100px;
	column-gap: 20px;
	row-gap: 135px;
}
.welfare_list02{
	max-width: 1082px;
	margin: 60px auto 0 0;
	column-gap: 10px;
}
.welfare_list li.normal{
	width: 30%;
    max-width: 300px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 17px;
}
.welfare_list li.normal:nth-of-type(5){
	width: 38%;
	max-width: 397px;
}
.welfare_list02 li.normal{
	margin-top: 118px;
}
.welfare_list li.normal .sp_br02{
		display: none;
}
@media screen and (max-width: 1060px) {
	/* .welfare_list li.picup .sp_br{
		display: block;
	}
	.welfare_list li.normal .sp_br02{
		display: block;
	} */

	.welfare_list{
		max-width: 760px;
		row-gap: 100px;
		align-items: flex-start;
	}
	.welfare_list li.normal{
		width: 48%;
		max-width: 296px;
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
		row-gap: 17px;
	}
	.welfare_list li.normal:nth-of-type(5){
		width: 42%;
		max-width: 397px;
	}
	.welfare_list li.normal:nth-of-type(5) .pc_br{
		display: none;
	}
}

@media screen and (max-width: 768px) {


	.welfare_list li.normal .sp_br02{
		display: none;
	}
	.welfare_list{
		margin: 80px auto 0;
		flex-direction: column;
		align-items: center;
		row-gap: 60px;
	}
	.welfare_list02{
		max-width: 1082px;
		flex-direction: column-reverse;
		margin: 70px auto 0 0;
	}
	.welfare_list li.normal{
		width: 95%;
		max-width: 300px;
		row-gap: 17px;
	}
	.welfare_list02 li.normal{
		margin-top: 0;
	}
	.welfare_list li.normal:nth-of-type(5) {
        width: 95%;
        max-width: 397px;
    }

}

.welfare_list li img{
	width: 46px;
}
.welfare_list li h3{
	color: #F69A37;
	font-size: clamp(16px, 1.39vw, 20px);
    letter-spacing: .1em;
    font-weight: bold;
}
.welfare_list li p{
	font-size: 15px;
	line-height: 1.8;
	font-weight: bold;
}
@media screen and (max-width: 875px) {
	.welfare_list li p {
    	font-size: 13px;
	}
}
.picup{
	width: 69%;
	max-width: 746px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 24px;
	background-color: #F8B267;
	border-radius: 50px;
	padding: 80px 20px 60px;
	position: relative;
}
.welfare_list li.picup h3{
	color: #fff;
}
.picup_img{
	    position: absolute;
	    top: 60px;
	    left: 70px;
	    width: 25%;
	    max-width: 184px;
}
.picup_img img{
	width: 100% !important;
}
@media screen and (max-width: 768px) {
	.welfare_list li p {
    	font-size: 15px;
	}
	.picup{
		width: 100%;
		max-width: 746px;
		border-radius: 25px;
		padding: 50px 5px;
		position: relative;
	}
}

/*-----------------------
	   aboutpage
-------------------------*/
.aboutpage .basic_ttl{
	border: none;
	background-color: #023BAE;
}
.aboutpage .basic_ttltxt {
    border-left: 3px solid #fff;
}
.aboutpage .basic_ttl h1,
.aboutpage .basic_ttl p{
    color: #fff;
}
.aboutpage .page_link li a:before {
    background-image: url(../img/arrow04.png);
}
.aboutpage .page_link ul {
    padding-top: 50px;
    flex-direction: column;
    justify-content: center;
    row-gap: 20px;
    width: 50%;
    max-width: 290px;
    margin-left: 16%;
}
@media screen and (max-width: 768px) {

	.aboutpage .page_link ul {
	    padding-top: 110px;
	    row-gap: 20px;
	    width: 50%;
	    max-width: 290px;
	    margin: 0 auto;
	}
	.aboutpage .page_link ul li {
        width: fit-content;
    }
}
.about_top{
	margin-top: 115px;
	background-image: url(../img/about_bg.png);
	background-size: cover;
	background-position: bottom;
    padding-top: 16.459%;
    padding-bottom: 16.584%;
}
@media screen and (min-width: 1441px) {
	.about_top{
		padding-top: 237px;
	}
}
.about_txt{
	width: 90%;
	max-width: 1165px;
	margin: 0 auto;
}
.about_txt01 p{
	padding: 16px 2px 16px 28px;
	margin-bottom: 8px;
	font-weight: bold;
	background-color: #fff;
	display: inline-block;
	color: #023BAE;
    font-size: clamp(22px, 2.499999vw, 36px);
}
.about_txt01 p:first-child{
	margin-left: -15px;
	padding-left: 42px;
}
.about_txt02{
	margin-top:95px;
}
.about_txt02 .blue{
	padding: 13px 21px 13px 17px;
	margin-bottom: 15px;
	color:#fff;
	background-color: #023BAE;
	display: inline-block;
	font-weight: bold;
    font-size: clamp(20px, 1.666666vw, 24px);
}
.about_txt02 .txtbig{
	font-weight: 600;
	padding: 27px 10px 27px 25px;
	line-height: 1;
	font-size: clamp(70px, 8.8889vw, 128px);
	color: #474747;
	font-family: "Klee One", serif;
	margin-bottom: 15px;
	display: inline-block;
	background-color: #fff;
}
.about_txt02 .txtbig span{
	font-weight: 400;
}
.about_txt03 {
	font-size: clamp(16px, 1.39vw, 20px);
	font-weight: bold;
	display: inline-block;
	letter-spacing: .05em;
	background-color: #fff;
	padding: 33px 6.867% 33px 6.867%;
	line-height: 2;
	max-width: 968px;
}
.about_txt03 p:not(:last-child){
	margin-bottom: 20px;
}
@media screen and (max-width: 768px) {

	.about_top{
		margin-top: 70px;
	    padding-top: 60px;
	    padding-bottom: 100px;
		background-position: left;
	}
	.about_txt01 p{
		padding: 5px 2px 5px 15px;
		margin-bottom: 8px;
	    font-size: 18px;
	}
	.about_txt01 p:first-child{
		margin-left: 0;
		padding-left: 15px;
	}
	.about_txt02{
		margin-top:30px;
	}
	.about_txt02 .blue{
		padding: 10px 15px 10px 15px;
		margin-bottom: 15px;
	    font-size: clamp(20px, 1.666666vw, 24px);
	}
	.about_txt02 .txtbig{
		padding: 20px 20px 20px 20px;
		font-size: 40px;
		text-align: center;
		display: block;
		margin: 0 auto;
		max-width: 350px;
		margin-bottom: 15px;
	}

}
#culture{
	background-color: #FEF5EB;
	width: 95%;
	max-width: 1372px;
	margin: 0 auto;
	margin-top: 110px;
	border-radius: 50px;
	padding: 70px 15px 107px;
	text-align: center;
}
#culture h2{
	padding: 15px 44px 18px 44px;
	margin-bottom: 15px;
	color:#fff;
	background-color: #023BAE;
	display: inline-block;
	font-weight: bold;
	margin-bottom: 85px;
	font-size: clamp(20px, 2.499999vw, 36px);
}
#culture h2 .txtbig{
	font-size: clamp(26px, 3.334vw, 48px);
}
@media screen and (max-width: 768px) {

	#culture{
		width: 95%;
		max-width: 1372px;
		margin: 0 auto;
		margin-top: 60px;
		border-radius: 25px;
		padding: 60px 15px;
	}
	#culture h2{
		padding: 10px 44px 10px 44px;
		margin-bottom: 15px;
		margin-bottom: 70px;
	}
}

.culture_fx li{
	display: flex;
	justify-content: center;
	max-width: 1251px;
	margin: 0 auto;
}
.culture_fx li:last-child{
	flex-direction: row-reverse;
	margin-top: 72px;
}
.culture_fx_img{
	width: 47%;
	max-width: 577px;
}
.culture_fx_txt{
	background-color: #fff;
	width: 62%;
	max-width: 751px;
	margin-top: 7.994%;
	margin-left: -5.994%;
	border-radius: 50px;
	padding: 74px 15px 112px 15px;
	box-shadow: 0 4px 4px rgba(0,0,0,.25);
}
.culture_fx li:last-child .culture_fx_txt{
	margin-right: -5.994%;
	margin-left: 0;
	position: relative;
}
.culture_fx_txt h3{
	width: 80%;
	max-width: 640px;
	margin: 0 auto;
	margin-bottom: 50px;
	color: #023BAE;
	padding-bottom: 50px;
	border-bottom: 2px solid #000000;
	font-size: clamp(20px, 1.666666vw, 24px);
}
.culture_fx_txt p{
	font-weight: bold;
	line-height: 2.5;
    font-size: clamp(14px, 1.113vw, 16px);
}
@media screen and (max-width: 768px) {

	.culture_fx li{
		flex-direction: column;
		align-items: center;
		max-width: 550px;
	}
	.culture_fx li:last-child {
	    flex-direction: column;
	    margin-top: 100px;
	}
	.culture_fx li:last-child .culture_fx_txt{
		margin-right: auto;
		margin-left: auto;
	}
	.culture_fx_img{
		width: 95%;
		max-width: none;
	}
	.culture_fx_txt{
		width: 90%;
		max-width: 400px;
		margin-top: -20%;
		margin-left: auto;
		margin-right:auto;
		border-radius: 25px;
		padding: 40px 10px 30px 10px;
	}
	.culture_fx_txt h3{
		width: 80%;
		max-width: 640px;
		margin-bottom: 20px;
		padding-bottom: 20px;
		font-size: 18px;
	}
	.culture_fx_txt p{
	    font-size: clamp(14px, 1.113vw, 16px);
		line-height: 2;
	}
}

#ideal{
	padding-top: 15.5%;
    margin-top: 15.5%;
	text-align: center;
	position: relative;
	z-index: 0;
}
#ideal h2{
	width: 80%;
    max-width: 470px;
    margin: 0 auto;
    padding: 25px 10px 25px 10px;
    color: #fff;
    background-color: #023BAE;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 85px;
	font-size: clamp(22px, 2.499999vw, 36px);
}
@media screen and (min-width: 1441px) {
	#ideal{
		padding-top: 228px;
   		 margin-top: 228px;
	}
}
@media screen and (max-width: 768px) {

	#ideal{
		padding-top: 50px;
		margin-top: 50px;
	}
	#ideal h2{
		padding: 15px 10px ;
		margin-bottom: 30px;
	}
}


.ideal_area{
	width: 46%;
	max-width: 660px;
	margin: 0 auto;
	margin-top: 20.834%;
	position: relative;
}
@media screen and (min-width: 1441px) {
	.ideal_area{
		margin-top: 300px;
	}
}

.ideal_area .ideal_img01{
	margin-left: 2%;
}

.ideal_area ul li{
	width: 69%;
	position: absolute;
	max-width: 450px;
	height: 328px;
	border-radius: 30px;
	background-color: #fff;
	padding: 0 5px;
	box-shadow: 0 10px 10px rgba(0,0,0,.25);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -6%;
	left: 42%;
	transform: translate(-50%,-50%);
}
.ideal_area ul li:nth-of-type(2){
	top: 12%;
	left: 118%;
}
.ideal_area ul li:nth-of-type(4){
	top: 92%;
    left: -12%;
}
.ideal_area ul li:nth-of-type(3){
	top: 111%;
	left: 71%;
}
@media screen and (max-width: 1290px) {

	.ideal_area ul li{
		top: -10%;
		left: 42%;
	}
	.ideal_area ul li:nth-of-type(4){
		top: 99%;
		left: -12%;
	}

}
@media screen and (max-width: 1050px) {

	.ideal_area ul li .pc_br{
		display: none;
	}

}
@media screen and (max-width: 1020px) {

	.ideal_area ul li{
		width: 70%;
		top: -10%;
		left: 35%;
		height: 300px;
	}
	.ideal_area ul li:nth-of-type(4){
		top: 107%;
		left: -12%;
	}

}
@media screen and (max-width: 768px) {

	.ideal_area {
		width: 95%;
        padding: 0 10px;
	    max-width: 660px;
	    margin: 0 auto;
	    margin-top: 30px;
	    position: relative;
	}
	.ideal_area ul li{
		width: 90%;
		max-width: 450px;
		margin: 0 auto 40px;
		height: 300px;
		border-radius: 30px;
		position: static;
		transform: none;
	}
}
.ideal_area ul li img{
	width: 41px;
	margin-bottom: 16px;
}
.ideal_area ul li h3{
	color: #023BAE;
	margin-bottom: 28px;
	font-size: clamp(20px, 1.666666vw, 24px);
}
.ideal_area ul li:nth-of-type(2) h3{
	color: #D80E36;
	margin-bottom: 32px;
}
.ideal_area ul li:nth-of-type(4) h3{
	color: #1C978B;
	margin-bottom: 25px;
}
.ideal_area ul li:nth-of-type(3) h3{
	color: #F69A37;
}
.ideal_area ul li p{
	font-weight: bold;
	line-height: 2;
	letter-spacing: .1em;
    font-size: clamp(14px, 1.113vw, 16px);
}
.about_icon{
	width: 10%;
	max-width: 100px;
	position: absolute;
	top: 79%;
	left: 50px;
	z-index: -1;
	transform: translateY(-50%);
}
@media screen and (max-width: 768px) {

	.ideal_area ul li h3{
		margin-bottom: 15px;
		font-size: 18px;
	}
	.ideal_area ul li:nth-of-type(2) h3 {
		margin-bottom: 15px;
	}
	.ideal_area ul li:nth-of-type(3) h3 {
		margin-bottom: 15px;
	}
	.about_icon{
		width: 10%;
		max-width: 100px;
		position: absolute;
		top: 25%;
		left: 0;
		z-index: -1;
		transform: translateY(-50%);
	}
}
.atr_bnr{
	width: 90%;
	max-width: 893px;
	margin: 0 auto;
	text-align: center;
	padding-top: 41.459%;
	margin-bottom: 230px;
}
.atr_bnr h2{
	font-size: clamp(20px, 2.223vw, 32px);
	letter-spacing: .1em;
	margin-bottom: 20px;
}
@media screen and (min-width: 1441px) {
	.atr_bnr{
		padding-top: 597px;
	}
}

@media screen and (max-width: 768px) {

	.atr_bnr{
		width: 90%;
		max-width: 600px;
		padding-top: 90px;
		margin-bottom: 100px;
	}
}


/*-----------------------
      新着情報
-------------------------*/
.contents_box{
	max-width: 1188px;
	margin: 0 auto;
	padding: 175px 0;
	margin-top: 250px;
	border: 5px solid #023BAE;
	border-radius: 50px;
	box-shadow: 5px 10px 10px rgba(0, 0, 0, .25);
}

.news_listarea{
	width: 90%;
	max-width: 1055px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {

	.contents_box{
		padding: 50px 0;
		margin-top: 150px;
		border: 2px solid #023BAE;
		border-radius: 25px;
	}
}
.news_listarea li{
	display: flex;
	align-items: center;
	padding-bottom:21px;
	margin-bottom: 21px;
	border-bottom: 2px solid #023BAE;
}
.news_listarea li:last-child{
	margin-bottom: 0;
}
.news_coldata{
	width: 41%;
	max-width: 355px;
}
.news_coldata .wp-block-group__inner-container{
	display: flex;
	align-items: center;
	justify-content:space-between;
	column-gap: 15px;
}
@media screen and (max-width: 768px) {

	.news_listarea li{
		flex-direction: column;
		align-items: flex-start;
		border-bottom: 1px solid #023BAE;
		row-gap: 10px;
	}

	.news_coldata{
		width: 100%;
		max-width: 355px;
	}
	.news_coldata .wp-block-group__inner-container{
		justify-content:flex-start;
		column-gap: 15px;
	}

}
.news_coldata time{
	color: #023BAE;
	font-size: 16px;
	font-weight: bold;
}
.news_coldata .taxonomy-news_cat{
	width: 90%;
	max-width: 170px;
	text-align: center;
}
.news_coldata .taxonomy-news_cat a{
	color: #fff;
	padding: 12px 5px;
	border-radius: 100vw;
	display: block;
	width: 100%;
	font-size: 16px;
	pointer-events:none
}
.news_cat02 {
    background-color: #F69A37;
}
.news_listarea li h2{
	padding-left: 11.602%;
}
.news_listarea li h2 a{
	font-size: 16px;
	font-weight: bold;
	color: #023BAE;
}

@media screen and (max-width: 768px) {

	.news_coldata time{
		font-size: 14px;
	}
	.news_coldata .taxonomy-news_cat{
		width: 90%;
		max-width: 100px;
	}
	.news_coldata .taxonomy-news_cat a{
		padding: 6px 5px;
		font-size: 12px;
	}
	.news_listarea li h2{
		padding-left: 0;
	}
}

/*-----------------------
      新着情報個別
-------------------------*/
.news_entry_box{
	margin: 100px auto;
}
.news-detail_page {
    padding: 95px 0 180px;
}
.detail_txtbox{
	width: 90%;
	max-width: 768px;
	margin: 0 auto;
	text-align: center; 
}
.news-detail_page .data{
	width: 90%;
	display: block;
	max-width: 895px;
	margin: 0 auto;
	margin-bottom: 40px;
	color: #023BAE;
	font-size: 16px;
	font-weight: bold;
}
.detail_txtbox h2{
	font-weight: bold;
	margin-bottom: 100px;
	font-size: clamp(18px, 1.666666vw, 24px);
}
.detail_txtbox p{
	font-size: 16px;
	line-height: 2;
}
.news_entry_box02{
	margin: 150px auto 100px;
}
.back_btn {
    display: block;
    text-align: center;
    margin-top: 100px;
    font-weight: bold;
    color: #023BAE;
    font-size: clamp(14px, 1.666666vw, 24px);
}

@media screen and (max-width: 768px) {

	.news-detail_page {
	    padding: 60px 0 80px;
	}
	.detail_txtbox p{
		font-size: 14px;
	}
	.detail_txtbox h2{
		margin-bottom: 40px;
	}
	.news_entry_box02{
		margin: 100px auto 100px;
	}
}

/*-----------------------
      採用情報
-------------------------*/

.recruit_ttl{
	background-color: #1C978B;
	border: 5px solid #1C978B;
}
.recruit_ttl .basic_ttltxt{
	    border-left: 3px solid #fff;
}
.recruit_ttl h1,.recruit_ttl p{
	color: #fff;
}
.recruit_page{
	max-width: 1130px;
	margin: 0 auto;
	padding-top: 180px;
}
.recruit_page a{
	display: block;
	width: 100%;
}
.recruit_cta{
	margin-top: 30px;
	position: relative;
	font-size: clamp(16px, 1.666666vw, 24px);
    font-weight: bold;
	padding-bottom: 20px;
}
.recruit_cta a{
	color: #000000;
	position: relative;
}
.recruit_cta a:before,
.recruit_cta a:after {
  position: absolute;
  top: 75%;
  right: 0;
  height: 1px;
  background: #000000;
  content: '';
  transition: all .4s ease-in-out;
}

.recruit_cta a:before {
  width: 80px;
  transform: translateY(-50%);
}

.recruit_cta a:after {
  width: 35px;
  transform: translateY(-50%) rotate(35deg);
  transform-origin: right center;
}
/* .recruit_bnnn:hover .recruit_cta a:before,
.recruit_bnnn:hover .recruit_cta a:after {
  right: -10px;
} */
.recruit_cta::before {
	background: #D9D9D9;
	bottom: 0;
	content: '';
	display: block;
	height: 2px;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: -1;
}
.recruit_cta::after {
	background: #1C978B;
	bottom: 0;
	content: '';
	display: block;
	height: 2px;
	left: 0;
	position: absolute;
	transition: all .4s ease-in-out;
	width: 300px;
	z-index: 1;
}
.recruit_bnnn:hover .recruit_cta::after{
	width: 100%;
}
.recruit_bnnn:last-child{
	margin-top: 108px;
	margin-bottom: 250px;
}

@media screen and (max-width: 768px) {

	.recruit_page{
		padding-top: 100px;
	}
	.recruit_cta a:before {
	  width: 40px;
	}
	.recruit_cta a:after {
	  width: 15px;
	}
	.recruit_cta::after {
		width: 100px;
	}
	.recruit_bnnn:last-child{
		margin-top: 50px;
		margin-bottom: 100px;
	}
}
/*-----------------------
      採用情報　個別
-------------------------*/
.recruit_ttl h1 .txtsmall{
	font-size: clamp(16px, 1.666666vw, 24px);
}
.recruit_flow{
	max-width: 1185px;
	margin: 0 auto;
	text-align: center;
}
.recruit_flow h2{
	background-color: #1C978B;
	width: 278px;
	margin:0 auto;
	color: #fff;
	padding: 12px 0;
	display: block;
	font-size: clamp(20px, 2.499999vw, 36px);
}
.recruit_flowlist{
	display: flex;
	flex-direction: column;
	row-gap: 40px; 
}
.recruit_step{
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
	position: relative;
}
.recruit_step:before{
	content: "";
	display: inline-block;
	width: 95%;
	height: 3px;
	background-color:#1C978B; 
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0;
	transform: translateY(-50%);
	z-index: -1;
}
.recruit_step li{
	width: 14%;
	max-width: 165px;
	border-radius: 50%;
	background-color: #A4D5D1;
}
.recruit_step li:nth-of-type(2){
	background-color: #8DCBC5;
}
.recruit_step li:nth-of-type(3){
	background-color: #77C1B9;
}
.recruit_step li:nth-of-type(4){
	background-color: #49ACA2;
}
.recruit_step li:nth-of-type(5){
	background-color: #1C978B;
}
.recruit_step_inner{
	position: relative;
	padding-top: 100%;
	height: 0;
}
.recruit_step_inner p{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0;
	transform: translateY(-50%);
	text-align: center;
	color: #fff;
	font-weight: bold;
    letter-spacing: .1em;
    font-size: clamp(16px, 1.666666vw, 24px);
}
.recruit_step_inner p .num{
	line-height: 1.1;
	font-size: clamp(30px, 3.199vw, 46px);
}
@media screen and (max-width: 768px) {

	.recruit_flowlist {
		row-gap: 20px;
	}
	.recruit_step li{
		width: 18.5%;
		max-width: 165px;
	}
	.recruit_step_inner p{
	    font-size:12px;
	}
	.recruit_step li:nth-of-type(3) .recruit_step_inner p{
	    font-size:12px;
		line-height: 1.09;
	}
	.recruit_step_inner p .num{
		line-height: 1.1;
		font-size: 15px;
	}
}
.flow_line{
	width: 17%;
    max-width: 185px;
	margin-left: 21%;
	border-top: 3px solid #1C978B;
	padding-top: 20px;
	position: relative;
}
.flow_line::before,.flow_line::after {
  content: '';
  position: absolute;
  top: -2px;
  transform: translateY(-50%);
  bottom: 0;
  left: 0;
  width: 0;
  height: 0px;
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #1C978B;
}
.flow_line::after {
  left: auto;
  right: 0;
  border-width: 10px 20px 10px 0;
  border-color: transparent #1C978B transparent transparent ;
}
.flow_line p{
	color: #1C978B;
	font-weight: bold;
	font-size: clamp(11px, 1.666666vw, 24px);
}
.flow_line2{
	width: 38%;
	max-width: 450px;
}
.flow_line2 p{
	font-size: clamp(13px, 1.666666vw, 24px);
}
@media screen and (max-width: 768px) {

	.flow_line::before,.flow_line::after {
	  border-width: 7px 0 7px 10px;
	  border-color: transparent transparent transparent #1C978B;
	}
	.flow_line::after {
	  border-width: 7px 10px 7px 0;
	  border-color: transparent #1C978B transparent transparent;
	}

}



.staff_tabarea {
    display: none;
}
.staff_tabarea.show {
    display: block;
}
.recruit_pagearea .page_link li a:before {
    background-image: url(../img/arrow05.png);
}
.recruit_pagearea .page_link{
	padding-top: 0;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 30px;
	row-gap: 60px;
	width: 100%;
	max-width: 1245px;
	margin-left: 0;
	margin: 0 auto;
}
.recruit_pagearea .page_link ul{
	padding-top: 210px;
}
@media screen and (max-width: 768px) {

	.recruit_pagearea .page_link ul{
		padding-top: 90px;
	}

}
.recruit_pagearea .page_link li h3{
	position: relative;
	    color: #000000;
    font-weight: bold;
    font-size: clamp(14px, 1.666666vw, 24px);
	    cursor: pointer;
}
.recruit_pagearea .page_link li h3:before {
    background-image: url(../img/arrow05.png);
    content: "";
    display: inline-block;
    background-repeat: no-repeat;
    background-size: cover;
    width: 27px;
    height: 26px;
    margin-right: 23px;
    vertical-align: middle;
    margin-bottom: 6px;
}

.recruit_pagearea .page_link ul{
	padding-top: 0;
	display: flex;
	/* justify-content: space-between; */
	flex-wrap: wrap;
	column-gap: 60px;
	row-gap: 60px;
	width: 102%;
	max-width: 1250px;
	margin-left: 0;
	margin: 0 auto;
}
.recruit_pagearea .page_link ul{
	padding-top: 210px;
}
@media screen and (max-width: 768px) {

	.recruit_pagearea .page_link ul{
		padding-top: 90px;
		row-gap: 20px;
		justify-content: center;
		max-width: 400px;
	}

}
.recruit_pagearea .recruit_list ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 20px;
	row-gap: 26px;
	margin-top: 200px;
	margin-bottom: 30px;
}
.recruit_pagearea .recruit_list ul:after {
    content: "";
    display: block;
    width: 32%;  /* .boxに指定したwidthと同じ幅を指定する */
    max-width: 434px;
	height: 0;
}
.recruit_pagearea .recruit_list ul li{
	width: 32%;
	max-width: 434px;
	padding: 30px 35px;
	background-color: #fff;
	box-shadow: 0 10px 10px rgba(0,0,0,.25);
	border-radius: 30px;
}
@media screen and (max-width: 1050px) {
	.recruit_pagearea .recruit_list ul li{
		width: 31%;
	}

}
@media screen and (max-width: 1000px) {
	.recruit_pagearea .recruit_list ul li{
		width: 45%;
	}
	.recruit_pagearea .recruit_list ul:after {
	    width: 45%; 
	}
	.recruit_pagearea .recruit_list ul{
		justify-content: center;
		column-gap: 25px;
	}
}
}
.recruit_list{
	margin-bottom: 200px;
}
.recruit_pagearea .recruit_list ul li a{
	display: block;
	color:#4B544A;
}
.recruit_pagearea .recruit_list ul li .recruit_img{
	max-width: 350px;
	height: 120px;
	margin: 10px auto 20px;
}
.recruit_pagearea .recruit_list ul li .recruit_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.recruit_pagearea .recruit_list ul li .list_date{
	background-color: #1C978B;
	display: inline-block;
	color: #fff;
	padding:3px 14px;
	font-size: clamp(12px, 1.12vw, 14px);
}
.recruit_pagearea .recruit_list ul li h3{
	    font-size: clamp(14px, 1.12vw, 16px);
    font-weight: bold;
	margin-top: 10px;
}
.recruit_pagearea .catbox{
	display: flex;
	column-gap: 10px;
}
.recruit_pagearea .catbox .cat01,
.recruit_pagearea .catbox .cat02{
	display: inline-block;
	padding:3px 28px;
	font-size: clamp(12px, 1.12vw, 14px);
	font-weight: bold;
	color: #fff;
	background-color: #D80E36;
}
.recruit_pagearea .catbox .cat01{
	background-color: #F69A37;
}
@media screen and (max-width: 768px) {

	.recruit_pagearea .recruit_list ul{
		flex-direction: column;
		align-items: center;
		margin-top: 80px;
	}
	.recruit_pagearea .recruit_list ul li{
		width: 95%;
	}
	.recruit_pagearea .recruit_list ul li h3 {
	    font-size: 16px;
	}
	.recruit_pagearea .catbox .cat01, .recruit_pagearea .catbox .cat02 {
	    font-size:14px;
	}
	.recruit_pagearea .recruit_list ul li .list_date {
	    font-size: 14px;
	}
	.recruit_list{
		margin-bottom: 50px;
	}

}
/*-----------------------
      privacypolicy
-------------------------*/
.privacypolicy h2{
	text-align: center;
	margin-bottom: 40px;
	font-weight: bold;
	font-size: 22px;
}
.privacypolicy h3{
	position: relative;
	padding-bottom:20px;
	margin-bottom: 20px;
	font-weight: 500;
	font-size: 16px;
	margin-top: 48px;
}
.privacypolicy h3:nth-of-type(1){
	margin-top: 65px;
}
.privacypolicy h3::before {
    background: #CBC9C9;
    bottom: 0;
    content: '';
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -1;
}
.privacypolicy h3::after {
    background: #007E4A;
    bottom: 0;
    content: '';
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    width: 70px;
    z-index: 1;
}
.privacypolicy li,
.privacypolicy p{
	font-size: 15px;
	font-weight: 500;
}
.privacypolicy li{
	margin-bottom: 15px;
}
.privacypolicy li:last-child{
	margin-bottom: 0;
}
.privacypolicy .num4_list{
	margin-top: 5px;
	margin-bottom: 15px;
	margin-left: 20px;
}
.btm_p{
	padding-bottom: 10px;
}
.privacypolicy a{
	color: #333333;
	text-decoration: underline;
}
@media screen and (max-width: 768px) {
	.privacypolicy h2{
		font-size: 18px;
	}
	.privacypolicy .num4_list{
		margin-left: 10px;
	}
}


/*-----------------------
      entry
-------------------------*/
.entry_ttl{
	background-color: #D80E36;
	border: none;
}
.entry_ttl .basic_ttltxt {
    border-left: 3px solid #fff;
}
.entry_ttl h1,.entry_ttl p {
    color: #fff;
}
.r_bnn_01{
	position: relative;
	margin: 0 calc(50% - 50vw);
	width: 100vw;
	margin-top: 220px;
}
@media screen and (max-width: 768px) {

	.r_bnn_01{
		position: relative;
		margin: 0 calc(50% - 50vw);
		width: 100vw;
		height: 160px;
		margin-top: 120px;
	}
	.r_bnn_01 > .wp-block-group__inner-container{
		height: 160px;
	}
	.r_bnn_01 img,
	.r_bnn_01 figure{
		width: 100%;
		height: 100% !important;
		object-fit: cover;
	}
}
.r_bnntxt{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0;
	transform: translateY(-50%);
	text-align: center;
}
.r_bnntxt .read{
	font-weight: bold;
	margin-top: 15px;
    font-size: clamp(18px, 2.499999vw, 36px);
}
.r_bnn_fx{
	column-gap: 19px;
}
.r_circle{
	width: 14%;
	max-width: 165px;
	border-radius: 50%;
	background-color: rgba(255,255,255,.56);
}
.r_circle_inner{
	position: relative;
	padding-top: 100%;
	height: 0;
}
.r_circle p{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0;
	transform: translateY(-50%);
	text-align: center;
	font-weight: bold;
    letter-spacing: .1em;
    font-size: clamp(14px, 1.666666vw, 24px);
}
.r_bnn{
	width: 90%;
	max-width: 1036px;
	margin: 0 auto;
	margin-top: 120px;
}
@media screen and (max-width: 768px) {
	
	.r_bnn_fx{
		column-gap: 19px;
	}
	.r_circle{
		width: 24%;
	}
	.r_bnn{
		width: 100%;
		max-width: 650px;
		margin: 0 auto;
		margin-top: 50px;
	}
}
.entry_pagettl{
	text-align: center;
	background-color: #D80E36;
	width: 278px;
	padding: 9px 0 10px;
	margin: 134px auto 0;
	color: #fff;
	font-size: clamp(18px, 2.778vw, 40px);
}
@media screen and (max-width: 768px) {

	.entry_pagettl{
		width: 140px;
		padding: 5px 0 7px;
		margin: 87px auto 0;
	}
}
.entry_area{
	font-family: "Noto Sans JP", serif;
	border: 2px solid #D80E36;
	border-radius: 50px;
	max-width: 1215px;
	margin: 0 auto;
	padding: 80px 0 0;
	margin-top: 57px;
	box-shadow: 0 10px 10px rgba(0,0,0,.25);
	margin-bottom: 60px;
}
.entry_area .read {
	    display: block;
    text-align: center;
    font-weight: bold;
    font-size: clamp(16px, 1.666666vw, 24px);
}
.entry_area .read span{
	color: #D80E36;
}
.flee-form{
	width: 95%;
	max-width: 1150px;
	margin: 0 auto;
	margin-top: 64px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.required{
	display: inline;
	color: #D80E36;
	line-height: 1;
	font-size: clamp(12px, 1.666666vw, 16px);
	font-weight: bold;
}

.flee-form dt{
	font-weight: bold;
	font-size: clamp(16px, 1.666666vw, 24px);
	margin-bottom: 35px;
	text-align: center;
	width: 23%;
	max-width: 260px;
	border-bottom: 1px solid #D80E36;
	padding-bottom: 35px;
	display: flex;
	/* align-items: center; */
	justify-content: center;
	word-break: keep-all;
	position: relative;
}
.kome{
	position: absolute;
	left: 22%;
}
.flee-form dt:nth-of-type(9),
.flee-form dt:nth-of-type(14){
	align-items: flex-start;
}
.flee-form dd{
	width: 77%;
	max-width: 873px;
	padding-bottom: 30px;
	margin-bottom: 35px;
	border-bottom: 1px solid #D80E36;
}
.flee-form dt:nth-of-type(13),
.flee-form dd:last-child{
	border-bottom: none;
}
.flee-form textarea{
	height: 185px;
}
.flee-form .wpcf7-checkbox{
	display: flex;
	flex-wrap: wrap;
	column-gap: 50px;
	row-gap: 40px;
}
.policy_area{
	height: 83px;
	overflow: scroll;
	border: 1px solid #000000;
	padding: 9px 0 2px 11px;
	margin-top: 14px;
}
.policy_area span,.policy_area h3{
	display: block;
	font-size: clamp(12px, 1.39vw, 20px);
	font-weight: 300;
	margin-bottom: 15px;
}
@media screen and (max-width: 768px) {

	.flee-form{
		width: 90%;
		max-width: 1150px;
		margin-top: 50px;
	}
	.kome{
		position: static;
	}
	.flee-form dt{
		font-size: 16px;
		margin-bottom: 0;
		width: 100%;
		max-width: none;
		border-bottom: none;
		padding-bottom: 25px;
		justify-content: flex-start;
	}
	.flee-form dd{
		width: 100%;
		max-width: none;
		padding-bottom: 30px;
		margin-bottom: 35px;
	}

	.flee-form textarea{
		height: 150px;
	}
	.flee-form .wpcf7-checkbox{
		display: flex;
		flex-wrap: wrap;
		column-gap: 20px;
		row-gap: 20px;
	}
}

/* エラーメッセージ非表示 */
.wpcf7-not-valid-tip {
  display: none !important;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,select{
	font-size:  clamp(14px, 1.666666vw, 24px);
	padding: 27px 16px 27px 54px;
	width: 100%;
	border: 1px solid #000000;
}
.fxbox{
	display: flex;
	justify-content: flex-start;
	width: 100%;
	column-gap: 27px;
	border: 1px solid #000000;
	padding-left: 54px;
}
.fxbox .number01,
.fxbox .number02,
.fxbox .number03{
	max-width: 130px;
	display: flex;
	align-items: center;
	width: 25%;
	font-size:  clamp(14px, 1.666666vw, 24px);
}
.fxbox .number02,
.fxbox .number03{
	width: 15%;
	display: flex;
	max-width: 60px;
}
input[type="number"]{
	border: none;
	width: 100%;
	padding: 27px 0 27px 0;
	font-size:  clamp(14px, 1.666666vw, 24px);
}
.fxbox .wpcf7-not-valid-tip {
    position: absolute;
	font-size: 10px;
    word-break: keep-all;
}
input[type="checkbox"] {
    border: 1px solid #000000;
    width: 20px;
    height: 20px;
    vertical-align: sub;
}
.wpcf7-list-item-label {
    font-weight: bold;
    font-size: clamp(14px, 1.666666vw, 24px);
}
.wpcf7-submit {
    font-size: clamp(18px, 2.778vw, 40px);
    display: block;
    margin: 0 auto;
    width: 90%;
    max-width:278px;
    color: #fff;
    font-weight: bold;
    padding: 15px 0;
    background-color: #D80E36;
    transition: all .5s;
    border: 2px solid #D80E36;
    cursor: pointer;
    font-family: "Zen Maru Gothic", serif;
}
.wpcf7-submit:hover{
	color: #D80E36;
	background-color: #fff;
}
.wpcf7-spinner{
	display: none !important;
}
.radio_btn .wpcf7-list-item {
    display: inline-block;
    margin: 0;
}

@media screen and (max-width: 768px) {
	
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	textarea,select{
		font-size: 14px;
		padding: 12px 16px;
	}
	.fxbox{
		padding-left: 16px;
		            padding-right: 15%;
        column-gap: 10px;
        justify-content: space-around;
	}
	.fxbox .number01,
	.fxbox .number02,
	.fxbox .number03{
		width: 30%;
	}
	.fxbox .number02,
	.fxbox .number03{
		width: 80px;
		display: flex;
	}
	input[type="number"]{
		padding: 12px 0 12px 0;
		width: 50px;
	}
	.fxbox .number01 input[type="number"]{
		padding: 12px 0 12px 0;
		width: 100%;
	}
	.fxbox .wpcf7-not-valid-tip {
	    position: absolute;
	    font-size: 8px;
	    word-break: normal;
	}
	input[type="checkbox"] {
	    border: 1px solid #000000;
	    width: 15px;
	    height: 15px;
	    vertical-align: sub;
	}
}

input[type="text"]::placeholder ,
input[type="email"]::placeholder ,
input[type="tel"]::placeholder ,
textarea::placeholder{
	font-size:  clamp(14px, 1.666666vw, 24px);
	font-weight:bold; 
  color: #858585;
}
/* Microsoft Edge */
input[type="text"]::-ms-input-placeholder ,
input[type="email"]::-ms-input-placeholder ,
input[type="tel"]::-ms-input-placeholder ,
textarea::-ms-input-placeholder {
	font-size:  clamp(14px, 1.666666vw, 24px);
	font-weight:bold; 
  color: #858585;
}

/* Internet Explorer */
input[type="text"]:-ms-input-placeholder ,
input[type="email"]:-ms-input-placeholder ,
input[type="tel"]:-ms-input-placeholder ,
textarea:-ms-input-placeholder {
	font-size:  clamp(14px, 1.666666vw, 24px);
	font-weight:bold; 
  color: #858585;
}

@media screen and (max-width: 768px) {
	input[type="text"]::placeholder ,
	input[type="email"]::placeholder ,
	input[type="tel"]::placeholder ,
	textarea::placeholder{
		font-size: 13px;
	}
	/* Microsoft Edge */
	input[type="text"]::-ms-input-placeholder ,
	input[type="email"]::-ms-input-placeholder ,
	input[type="tel"]::-ms-input-placeholder ,
	textarea::-ms-input-placeholder {
		font-size: 13px;
	}

	/* Internet Explorer */
	input[type="text"]:-ms-input-placeholder ,
	input[type="email"]:-ms-input-placeholder ,
	input[type="tel"]:-ms-input-placeholder ,
	textarea:-ms-input-placeholder {
		font-size: 13px;
	}
	
}


/* ラジオボタンcustom */

.radio_btn input[type="radio"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
	
}

.radio_btn{
	display: flex;
	flex-wrap: wrap;
	row-gap: 10px;
	column-gap: 43px;
	margin-left: 6%;
}
.radio_btn .wpcf7-list-item {
    margin: 0;
}
.radio_btn4 .wpcf7-list-item.first,
.radio_btn4 .wpcf7-list-item{
  margin: 0;
}
.radio_btn4{
	display: flex;
	flex-wrap: wrap;
	column-gap: 30px;
	row-gap: 40px;
	margin-left: 6%;
}
.radio_btn4 .wpcf7-list-item:nth-of-type(8){
	width: 100%;
}
.radio_btn span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: clamp(14px, 1.666666vw, 24px);
}

.radio_btn span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 50%;
  border: 1px solid #000000;
     width: 25px;
    height: 25px;
    margin-top: 3px;
}

.radio_btn span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 14px;
    height: 14px;
    background-color: #000000;
    left: 5px;
    top: 54%;;
  transform: translateY(-50%);
  display: none;
}

.radio_box .wpcf7-list-item.last{
	margin-left: 30px;
}
.radio_btn input[type="radio"]:checked + span.wpcf7-list-item-label::after {
  display: block;
}

@media screen and (max-width: 768px) {
	
	.radio_btn{
		row-gap: 10px;
		column-gap: 20px;
		margin-left: 0;
	}
	.radio_btn span.wpcf7-list-item-label::before {
	     width: 20px;
	    height: 20px;
	    margin-top: 0;
	}
	.radio_btn .wpcf7-list-item.first {
	  margin-left: 0;
	}
	.wpcf7-list-item {
		margin: 0 !important;
	}

	.radio_btn span.wpcf7-list-item-label::after {
		width: 10px;
	    height: 10px;
	    left: 5px;
	    top: 50%;
	}
	.radio_btn4{
		display: flex;
		flex-wrap: wrap;
		column-gap: 30px;
		row-gap: 20px;
		margin-left: 0;
	}
}


/* ラジオボタンcustom */




/*-----------------------
    ページネーション
-------------------------*/

.wp-block-query-pagination{
	margin-top:64px;
	justify-content: center;
}
.page_num {
    display: flex;
    column-gap: 10px;
    align-items: center;
    margin: 0 !important;
    margin-top: 90px !important;
}
.page_num a,.page_num .current,
.wp-block-query-pagination-next{
	display: inline-block;
	text-align: center;
	line-height:56px;
	font-weight: bold;
	width: 56px;
	height: 62px;
	color: #023BAE;
	border: 3px solid #023BAE;
	border-radius: 20px;
	font-size: clamp(14px, 1.666666vw, 24px);
}
.page_num .current{
	color: #fff;
	background-color: #023BAE;
}


/*-----------------------
    数字で見る
-------------------------*/
.datapage_ttl{
	width: 95%;
	padding-top: 110px;
	margin: 0 auto;
	text-align: center;
}
.datapage_ttl img{
	max-width: 360px;
	margin-bottom: 27px;
}
.datapage_ttl p{
	font-size: clamp(14px, 1.39vw, 20px);
    color: #000000;
    font-weight: bold;
	letter-spacing: .05em;
}

.datapage_box{
	max-width: 1390px;
	margin: 0 auto;
	margin-top: 190px;
	    row-gap: 45px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.datapage_box li{
	width: 48%;
	max-width: 655px;
	position: relative;
}
.datapage_box li.bg_blue{
	background-color: rgb(202,212,239,.5);
	position: relative;
}
.datapage_box li h2{
	color: #fff;
	background-color: #023BAE;
	letter-spacing: .05em;
	display: inline-block;
	text-align: center;
	padding: 11px 20px;
	font-size: clamp(16px, 1.39vw, 20px);
}

@media screen and (max-width: 768px) {

	.datapage_box{
		max-width: 1390px;
		margin: 0 auto;
		margin-top: 190px;
		    row-gap: 35px;
		flex-direction: column;
		align-items: center;
	}
	.datapage_box li{
		width: 100%;
		max-width: 600px;
		position: relative;
	}
	.datapage_box li h2{
		font-size: 15px;
		width: auto !important;
		padding: 5px 15px !important;
	}
}

/* 設立 */
.founding_box:after {
    content: "";
    display: inline-block;
    height: 100%;
    border-right: 2px dashed rgb(202, 212, 239, .5);
    position: absolute;
    top: 50%;
    left: 104%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.founding_box{
	background-color: rgb(202,212,239,.8);
	padding: 26px 0 60px;
	position: relative;
}
.founding_box .icon{
	position: absolute;
	bottom: 100%;
}
.founding_box .icon05 {
    position: absolute;
    width: 11%;
    max-width: 65px;
    top: 100%;
    left: 55%;
    transform: translate(-50%, -50%);
}
.founding_box .icon11 {
    position: absolute;
       width: 22%;
    max-width: 140px;
    top: 102%;
    left: 15%;
    transform: translate(-50%, -50%);
	z-index: 1;
}
.founding{
	width: 90%;
	background-color: #fff;
	max-width: 504px;
	margin: 0 auto;
	padding: 18px 0 50px 0;
}
.founding p{
	font-size: clamp(20px, 2.499999vw, 36px);
	font-weight: bold;
	color: #000000;
	letter-spacing: .05em;
	text-align: center;
	line-height: 1;
}
.datapage_box li .founding h2{
	margin-left: 20px;
	padding-left: 32px;
	padding-right: 32px;
	font-size: clamp(18px, 1.666666vw, 24px);
}
.founding p .txtbig{
	font-size: clamp(50px, 6.95vw, 100px);
	display: inline-block;
	    margin-right: 35px;
    font-weight: 900;
/*     letter-spacing: -.3em; */
	color: #D80E36;
	font-family: "Noto Sans JP", serif;
}
@media screen and (max-width: 768px) {
	
	.founding_box:after {
    	content: none;
	}
	.founding_box .icon11 {
		top: 107%;
		left: 15%;
	}
}


/* 通勤 */
.commute_box:before {
	content: "";
	display: inline-block;
	width: 100%;
    border-top: 2px dashed rgb(202, 212, 239, .5);
    position: absolute;
    top: -4.5%;
    left: 0;
    transform: translateY(-50%);
	z-index: -1;
}
.commute_box:after {
    content: "";
    display: inline-block;
    height: 110%;
    border-right: 2px dashed rgb(202, 212, 239, .5);
    position: absolute;
    bottom: 0;
    left: 104%;
    transform: translateX(-50%);
    z-index: -1;
}
.commute_box{
	background-color:rgb(202,212,239,.8);
	padding: 60px 0 60px;
	position: relative;
	margin-top: 45px;
}
.commute_box .icon04 {
    position: absolute;
    width: 14%;
    max-width: 75px;
    top: 83%;
    left: 103%;
    transform: translate(-50%, -50%) rotate(90deg);
}
.commute{
	display: flex;
	margin: 0 auto;
	width: 90%;
	max-width: 546px;
	justify-content: space-between;
	column-gap: 10px;
}
.commute div:nth-of-type(1){
	width: 47%;
	max-width: 255px;
}
.commute div:nth-of-type(1) img{
	max-width: 244px;
	display: block;
	margin: 0 auto;
	margin-top: 45px;
}
.commute div:nth-of-type(2){
	width: 44%;
	max-width: 240px;
}
.datapage_box li .commute h2 {
    padding: 8px 15px;
}
.commute div:nth-of-type(2) p:nth-of-type(1){
	font-size: clamp(20px, 2.499999vw, 36px);
	font-weight: 900;
	color: #000000;
	letter-spacing: .05em;
	line-height: 1.2;
    margin-top: 30px;
}
.commute div:nth-of-type(2) p:nth-of-type(1) .txtbig{
	font-size: clamp(26px, 3.334vw, 48px);
	font-weight: 900;
/* 	letter-spacing: -.14em; */
	display: inline-block;
	margin-right: 5px;
	color: #D80E36;
	font-family: "Noto Sans JP", serif;
}
.commute div:nth-of-type(2) p:nth-of-type(2){
	font-size: clamp(18px, 1.666666vw, 24px);
	text-align: right;
	font-weight: 900;
	color: #000000;
	letter-spacing: .05em;
	line-height: 1.8;
	margin-top: 10px;
}
.commute div:nth-of-type(2) p:nth-of-type(2) .txtbig{
	font-size: clamp(20px, 2.499999vw, 32px);
	color: #D80E36;
	line-height: 1;
	letter-spacing: -.14em;
	font-family: "Noto Sans JP", serif;
}
.sp_box{
		display: none;
}

@media screen and (max-width: 768px) {
	.pc_commute{
		display: none;
	}
	.sp_box{
		display: block;
	}
	.commute_box{
		background-color: transparent;
		margin-top: 0;
	}
	.commute_box:after{
		content: none;
	}
	.commute_box:before {
		width: 98%;
		top: -3.9%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}


/* 人 */
.people_data{
	margin-top: 8%;
	padding-top: 40px;
}
.people_data .icon{
	position: absolute;
    bottom: 100%;
}
.people_data .icon2{
	position: absolute;
        bottom: -24px;
    right: -25px;
    max-width: 180px;
}
.people_data_box{
	width: 87%;
	margin: 0 auto;
	max-width: 535px;
}
.people_data_box h2:not(:first-child){
	margin-top: 35px;
	margin-bottom: 10px;
}
.people_data_fx{
	display: flex;
	align-items: flex-start;
}
.pict{
	max-width: 500px;
	display: block;
	margin: 0 auto;
}
.datapage_box li.people_data h2 {
       padding: 11px 5px;
    width: 113px;
}
.people_data_fx p {
	font-size: clamp(20px, 2.499999vw, 36px);
	font-weight: bold;
	color: #000000;
	width: 79%;
	max-width: 420px;
	text-align: center;
	margin-top: 4px;
	margin-bottom: 15px;
}
.people_data_fx p .txtbig{
	font-size: clamp(30px, 3.334vw, 48px);
	font-weight: 900;
/* 	letter-spacing: -.3em; */
	display: inline-block;
	margin-right: 5px;
	color: #D80E36;
	font-family: "Noto Sans JP", serif;
}
.people_data_fx:nth-of-type(2) p .txtbig{
/* 	letter-spacing: -.15em; */
	margin-right: 5px;
	    margin-bottom: 7px;
}
.people_data_fx:nth-of-type(2) p{
	font-size: 16px;
	color: #023BAE;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: -10px;
}
.people_data_fx:nth-of-type(2) p .col02{
	color: #fff;
}
.people_data_fx:nth-of-type(2) {
	margin-top: 35px;
}
.graph_img{
	position: relative;
	    margin-top: -8%;
}
.care_txt {
    width: 23%;
    max-width: 131px;
    position: absolute;
    left: 95%;
    top: 11%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
	
	.people_data .icon{
		display: none;
	}
	.people_data{
		margin-top: 0;
		padding: 40px 0;
	}
	.people_data:before {
		content: "";
		display: inline-block;
		border-top: 2px dashed rgb(202, 212, 239, .5);
		position: absolute;
		width: 98%;
		top: -2.9%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
	}
	.people_data_fx p {
    	width: 70%;
	}
	.people_data .icon2 {
        position: absolute;
        bottom: -44px;
        right: -16px;
        max-width: 134px;
    }
}


/* 出身 */
.from:before {
	content: "";
	display: inline-block;
	width: 105%;
    border-top: 2px dashed rgb(202, 212, 239, .5);
    position: absolute;
    top: -6.5%;
    left: 0;
    transform: translateY(-50%);
}
.from:after {
    content: "";
    display: inline-block;
    height: 100%;
    border-right: 2px dashed rgb(202, 212, 239, .5);
    position: absolute;
    top: 50%;
    left: 104%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.from{
		display: flex;
		flex-direction: column;
		justify-content: center;
}
.from .icon08 {
    position: absolute;
          width: 25%;
    max-width: 160px;
    bottom: 92%;
    left: 50%;
    transform: translateX(-50%);
}
.from .icon10 {
    position: absolute;
           width: 25%;
    max-width: 160px;
    top: 102%;
    left: 14%;
    transform: translate(-50%, -50%);
}
.frombox{
	    width: 93%;
	    max-width: 535px;
	margin: 0 auto;
	padding: 33px 0 40px;
}
.datapage_box li .frombox h2{
	margin-bottom: 10px;
	padding: 12px 10px;
}
.datapage_box li .frombox h2:nth-of-type(2){
	margin-top: 45px;
}
	
@media screen and (max-width: 768px) {
	
	.from:after{
		content: none;
	}
	.from:before {
		width: 98%;
		top: -6%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.from .icon08 {
		bottom: 95%;
		left: 50%;
		transform: translateX(-50%);
	}
	.from .icon10 {
		top: 107%;
	}
}
/* イベント */
.eventbox:before {
	content: "";
	display: inline-block;
	width: 105%;
    border-top: 2px dashed rgb(202, 212, 239, .5);
    position: absolute;
    top: -6.5%;
    right: 0;
    transform: translateY(-50%);
}
.eventbox{
	    width: 93%;
	max-width: 594px;
	margin: 0 auto;
	padding: 45px 0 58px;
}
.datapage_box li .eventbox h2{
	margin-bottom: 40px;
}
.event_fx{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	column-gap: 10px;
}
.ranking{
	width: 39%;
	max-width: 230px;
}
.ranking li{
	display: flex;
	align-items: center;
	column-gap: 20px;
	text-align: center;
	width: 100%;
}
.ranking li .num,
.ranking li .ttl{
	display: block;
	font-weight: bold;
	letter-spacing: .05em;
	color: #023BAE;
	font-size: clamp(14px, 1.113vw, 16px);
}
.ranking li .num{
	width: 27%;
	max-width: 58px;
	position: relative;
	z-index: 0;
}
.ranking li .num1 img{
	position: absolute;
	top: 35%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: -1;
}
.ranking li:nth-of-type(2){
	margin-top: 25px;
}
.ranking li:last-child{
	margin-top: 15px;
}

.ranking li .txtbig{
	    font-size: clamp(18px, 1.666666vw, 24px);
}
.ranking li .ttl{
	width: 70%;
}
.event_txt{
	width: 57%;
	max-width: 336px;
	position: relative;
	z-index: 0;
}
.event_txt p{
	text-align: center;
	font-weight: bold;
	letter-spacing: .05em;
	line-height: 1.7;
	color: #023BAE;
	font-size: clamp(14px, 1.113vw, 16px);
}
.event_txt img{
	position: absolute;
	bottom: -5px;
	right: 0;
	z-index: -1;
	width: 53%;
	max-width: 175px;
}
@media screen and (max-width: 960px) {

	.event_fx{
		row-gap: 20px;
		flex-direction: column;
		align-items: center;
	}
	
	.ranking {
	    width: 95%;
	    max-width: none;
	}
	.event_txt {
	    width: 95%;
	    max-width: none;
	}
	
}
@media screen and (max-width: 768px) {
	.datapage_box li .eventbox h2 {
		margin-bottom: 40px;
		margin-left: 10px;
	}
	.eventbox{
	    width: 98%;
	}
	.eventbox:before {
		width: 98%;
		top: -4%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}

/* 趣味 */
.hobby:before {
	content: "";
	display: inline-block;
	width: 105%;
    border-top: 2px dashed rgb(202, 212, 239, .5);
    position: absolute;
    top: -6.5%;
    left: 0;
    transform: translateY(-50%);
}
.hobby:after {
    content: "";
    display: inline-block;
        height: 98%;
    border-right: 2px dashed rgb(202, 212, 239, .5);
    position: absolute;
    top: 50%;
    left: 105%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.hobby .icon05 {
    position: absolute;
        width: 13%;
    max-width: 70px;
    top: 100%;
    left: 55%;
    transform: translate(-50%, -50%);
}
.datapage_box li.hobby {
    width: 40%;
    max-width: 535px;
    position: relative;
		display: flex;
    flex-direction: column;
    justify-content: center;
}
.hobbybox{
	width: 93%;
	max-width: 421px;
	margin: 0 auto;
	padding: 40px 0 40px;
}
.datapage_box li .hobbybox h2{
	margin-bottom: 32px;
	padding: 10px 26px;
}


@media screen and (max-width: 768px) {
	
	.datapage_box li.hobby {
		width: 100%;
        max-width: 600px;
	}
	.hobby:after {
    	content: none;
	}
	.hobby:before {
		width: 98%;
		top: -6%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}

/* 福利厚生 */
.benefits:before {
	content: "";
	display: inline-block;
	width: 105%;
    border-top: 2px dashed rgb(202, 212, 239, .5);
    position: absolute;
    top: -6.5%;
    right: 0;
    transform: translateY(-50%);
}
.datapage_box li.benefits {
    width: 56%;
    max-width: 766px;
    position: relative;
}
.benefits .icon09 {
    position: absolute;
      width: 18%;
    max-width: 130px;
    bottom: 97%;
    left: 93%;
    transform: translateX(-50%);
}
.benefitsbox{
	width: 94%;
	max-width: 700px;
	margin: 0 auto;
	padding: 35px 0 40px;
}
.datapage_box li .benefitsbox h2{
	margin-bottom: 30px;
	padding: 10px 26px;
}

.benefitsbox ul{
	display: flex;
	justify-content: space-between;
	max-width: 700px;
	column-gap: 10px;
	margin: 0 auto;
	text-align: center;
}
.benefitsbox ul li{
	width: auto;
	position: relative;
}
.benefitsbox ul li:nth-of-type(2):before,
.benefitsbox ul li:nth-of-type(2):after{
	content: "";
	display: inline-block;
	width: 100%;
	height: 100%;
	border-left: 3px dashed #023BAE;
	position: absolute;
	left: -3px;
}
.benefitsbox ul li:nth-of-type(2):after{
	left: auto;
	right: -4px;
	top: 0;
	border-left: none;
	border-right: 3px dashed #023BAE;
}
.benefitsbox ul li h3{
	color: #023BAE;
	font-weight: bold;
	letter-spacing: .05em;
	margin-bottom: 9px;
	font-size: clamp(16px, 1.39vw, 20px);
}
.benefitsbox ul li p{
	text-align: center;
	font-weight: bold;
	letter-spacing: .05em;
	line-height: 1.7;
	color: #000000;
	font-size: clamp(12px, 1.113vw, 16px);
}
@media screen and (max-width: 1045px) {

	.benefitsbox ul{
		flex-direction: column;
		max-width: 400px;
		row-gap: 15px;
	}
	.benefitsbox ul li{
		width: 100%;
		max-width: none;
		text-align: left;
	}
	.benefitsbox ul li p{
		text-align: left;
	}
	.benefitsbox ul li br{
		display: none;
	}
	.benefitsbox ul li:nth-of-type(2):before,
	.benefitsbox ul li:nth-of-type(2):after {
	    content: "";
	    display: inline-block;
	    width: 100%;
	    height: 100%;
	    border-left:none;
	    border-top: 2px dashed #023BAE;
	    position: absolute;
	    left: auto;
	    top: -7px;
	}
	.benefitsbox ul li:nth-of-type(2):after{
		top: auto;
		bottom: -10px;
		border-top: none;
		border-right: none;
		border-bottom: 2px dashed #023BAE;
	}
}
@media screen and (max-width: 768px) {
	
	.datapage_box li.benefits {
		width: 100%;
        max-width: 600px;
	}
	.benefits:before {
		width: 98%;
		top: -4.5%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.benefits .icon09 {
		bottom: 99%;
	}
}
/* 理由 */
.reasonarea .icon19 {
    position: absolute;
     width: 8%;
    max-width: 95px;
    bottom: 98%;
    left: 79%;
    transform: translateX(-50%);
}
.datapage_box li.reasonarea{
	width: 100%;
	max-width: none;
	padding: 60px 0 35px;
}
.reasonarea:before {
	content: "";
	display: inline-block;
	width: 100%;
	border-top: 2px dashed rgb(202,212,239,.5);
	position: absolute;
	top: -2.5%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.reasonarea_box{
	width: 93%;
	max-width: 1265px;
	margin: 0 auto;
	background-color: #fff;
}

.reasonarea_txt{
	padding: 46px 0 55px;
	width: 93%;
	max-width: 1060px;
	margin: 0 auto;
}
.datapage_box li .reasonarea_txt h2 {
    margin-bottom: 37px;
	padding: 10px 14px;
}
.datapage_box li .reasonarea_txt h2:nth-of-type(2){
    margin-bottom: 26px;
	margin-top: 39px;
}
.reasonarea_txt ul{
	margin-left: 4.717%;
}
.reasonarea_txt ul li{
	width: 100%;
	max-width: none;
	font-weight: bold;
	letter-spacing: .05em;
	color: #000000;
	margin-bottom: 16px;
	font-size: clamp(14px, 1.113vw, 16px);
}
.reasonarea_txt ul li.blue{
	color: #023BAE;
}
.reasonarea_txt ul li:last-child{
	margin-bottom: 0;
}

.datapage_contents .right{
	text-align: right;
	margin-top: 14px;
	color: #000000;
	    font-size: clamp(12px, 1.39vw, 20px);
    letter-spacing: .05em;
    font-weight: bold;
}


.datapage_contents{
	margin-bottom: 280px;
}

@media screen and (max-width: 768px) {
	
	.datapage_box li.reasonarea {
		width: 100%;
        max-width: 600px;
	}
	.datapage_contents{
		margin-bottom: 150px;
	}
	.reasonarea:before {
		width: 98%;
		top:-2%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.reasonarea .icon19 {
		width: 13%;
		max-width: 97px;
		bottom: 99.12%;
		left: 80%;
		transform: translateX(-50%);
	}
}

.job_contents .inner{
	max-width: 1215px;
}
.job_post{
	border: 2px solid #1C978B;
	border-radius: 50px;
	padding: 135px 0 ;
}
.job_post dl{
	width: 90%;
	margin: 0 auto;
	max-width: 1006px;
	display: flex;
	flex-wrap: wrap;
	margin-top: 100px;
}
.job_post h2{
	text-align:center;
	color: #1C978B;
	width:90%;
	margin: 0 auto;
	font-size: clamp(20px, 2.23vw, 32px);
}
.job_post dt{
	width: 16%;
	max-width: 160px;
	border-bottom: 1px solid #000000;
	padding-bottom: 40px;
	margin-bottom: 40px;
	font-size: 16px;
	font-weight: bold;
}
.job_post dd{
	width: 83%;
	max-width: 830px;
	border-bottom: 1px solid #000000;
	padding-bottom: 40px;
	margin-bottom: 40px;
	padding-left: 20px;
	font-size: 16px;
}

.job_contents{
	margin-bottom: 30px;
}
.job_contents .back_btn{
	background-color: #1C978B;
	display: block;
	width: 90%;
	max-width: 490px;
	margin: 80px auto 0;
	color: #fff;
	box-shadow: 0 10px 10px rgba(0,0,0,.25);
	border-radius: 30px;
	font-size: clamp(20px, 2.23vw, 32px);
	padding: 45px 0;
	border: 2px solid #1C978B;
	transition: all .5s;
}
.job_contents .back_btn:last-child{
	background-color: #fff;
	color: #1C978B;
	margin-top: 50px;
}
.job_contents .back_btn:hover{
	background-color: #fff;
	color: #1C978B;
}
.job_contents .back_btn:hover:last-child{
	background-color: #1C978B;
	color: #fff;
}
@media screen and (max-width: 768px) {

	.job_contents .back_btn{
		font-size: 18px;
		padding: 30px 0;
		transition: all .5s;
	}

	.job_post {
	    border-radius: 25px;
	    padding: 80px 0;
	}
	.job_post dl{
		flex-direction: column;
		margin-top: 80px;
	}
	.job_post dt{
		width: 100%;
		max-width: none;
		padding-bottom: 15px;
		margin-bottom: 0;
		border: none;
	}
	.job_post dd{
		width: 100%;
		padding-bottom: 30px;
		margin-bottom: 30px;
		padding-left: 0;
		font-size: 14px;
	}

}