@charset "UTF-8";
/*
 * style.css
 *
 *  version --- 1.0
 *  updated --- 2017/11/30
 */

.sp{display: none!important;}
a[href^="tel:"] {
    cursor: default;
    pointer-events:none;
}
/* !wrapper
---------------------------------------------------------- */
#wrapper {
	overflow: hidden;
	width: 100%;
	padding-top: 11rem;
}
.menuOpen{
	overflow: hidden;
	height: 100vh;
}
.menuOpen #wrapper{
	position: fixed;
}
.overlay{
	display: none;
	position: fixed;
	left: 0;
	top: 11rem;
	width: 100vw;
	height: calc(100dvh - 11rem);
	background: none;
	z-index: 97;
	text-indent: -999rem;
	pointer-events: auto;
}

.inner,
.inner02 {
	margin: 0 auto;
	width: 100%;
	max-width: 110rem;
	padding: 0 5rem;
	position: relative;
	z-index: 3;
}
.inner02 {
	max-width: 130rem;
}
/* !header
---------------------------------------------------------- */
#header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 98;
	width: 100%;
	background-color: #fff;
}

#headerIn {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 5rem;
	height: 11rem;
}
#headerLogo a{
	display: block;
	width: 22.5rem;
}
#headerLogo a img{
	width: 100%;
}

.header_right{
	padding-right: 14.5rem;
	display: flex;
	align-items: center;
	grid-gap: 3rem;
}
.tag_search span,
.header_right a{
	cursor: pointer;
	width: 19rem;
	height: 5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.6rem;
	font-weight: 500;
	color: #5F5F5F;
	border: 1px solid currentColor;
	transition: all .3s;
}
.header_entry a{
	color: #3363CB;
}
.header_entry a:hover{
	opacity: 1;
	background: #3363CB;
	color: #fff;
}
.tag_search:hover span,
.tag_search.active span{
	background: #AFAFAF;
	color: #fff;
	border-color: #5F5F5F;
}

#headerLinks {
	
}

/* !breadcrumb
---------------------------------------------------------- */
#breadcrumb {
	
}

/* !gNavi
---------------------------------------------------------- */
.btnMenu {
	position: fixed;
	right: 1rem;
	top: 0;
	z-index: 99;
}
.btnMenu a {
  display: block;
  width: 13.5rem;
  height: 11rem;
  box-sizing: border-box;
  position: relative;
}

.btnMenu a span {
  display: block;
  background: #5F5F5F;
  width: 5.5rem;
  height: .2rem;
  position: absolute;
  left: 4rem;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

.btnMenu a span:first-child {
	top: 4.3rem;
}

.btnMenu a span:nth-child(2) {
	margin-top: -.1rem;
	top: 50%;
}

.btnMenu a span:last-child {
  bottom: 4.3rem;
}

	
.btnMenu.active a span:first-child {
  -webkit-transform: translateY(1.1rem) rotate(45deg);
  -moz-transform: translateY(1.1rem) rotate(45deg);
  -ms-transform: translateY(1.1rem) rotate(45deg);
  transform: translateY(1.1rem) rotate(45deg);
}

.btnMenu.active a span:nth-child(2) {
  opacity: 0;
}

.btnMenu.active a span:last-child {
  -webkit-transform: translateY(-1.1rem) rotate(-45deg);
  -moz-transform: translateY(-1.1rem) rotate(-45deg);
  -ms-transform: translateY(-1.1rem) rotate(-45deg);
  transform: translateY(-1.1rem) rotate(-45deg);
}

#gNavi {
	position: fixed;
	top: 11rem;
	right: 0;
	width: 100%;
	height: calc(100dvh - 11rem);
	z-index: 98;
	box-sizing: border-box;
	padding: 8rem 0 8rem;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s,right .3s;
	background: url(../img/common/bg_nav.jpg)no-repeat center center;
	background-size: cover;
}
#gNavi.active{
    opacity: 1;
    pointer-events: auto;
}
.nav_content {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 7rem 0;
	margin-left: -4.8rem;
}
.nav_item {
	padding-left: 4.8rem;
	width: 25%;
}
.nav_item.half {
	width: 50%;
}
.nav_item a{
	color: #fff;
	opacity: 1!important;
}
.nav_item_hd{
	font-size: 2.3rem;
	font-weight: 700;
	letter-spacing: .1em;
	border-bottom: 1px solid #FFFFFF;
	margin-bottom: 2rem;
	padding-bottom: .5rem;
	pointer-events: none;
}
.nav_list {
	display: grid;
	grid-template-columns: repeat(1,1fr);
	gap: 1.2rem 0;
}
.nav_item.half .nav_list {
	grid-template-columns: repeat(2, 38%);
	grid-template-rows: repeat(3, auto);
	grid-auto-flow: column;
}
.nav_list .img_box {
	display: none;
}
.nav_list .txt {
	font-size: 1.7rem;
	line-height: 1.3;
}
.nav_site {
	margin-top: 13rem;
}
.nav_site a {
	display: inline-flex;
	align-items: center;
	padding: 0 9.2rem 0 2.2rem;
	height: 4.5rem;
	background: url(../img/common/icon_window_wh.svg)no-repeat right 2rem center;
	background-size: 1.3rem;
	border: 1px solid;
	color: #fff;
	font-size: 1.35rem;
}

.tag_cont {
	position: fixed;
	top: 11rem;
	right: 0;
	width: 100%;
	height: calc(100dvh - 11rem);
	z-index: 98;
	box-sizing: border-box;
	padding: 8rem 0 8rem;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s,right .3s;
	background: url(../img/common/bg_nav.jpg)no-repeat center center;
	background-size: cover;
}
.tag_cont.active {
    opacity: 1;
    pointer-events: auto;
}	
.tag_categ {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 1rem 1.6rem;
}
.tag_categ li {
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 3.9rem;
	padding: 0 1.5rem;
	background: #fff;
	border-radius: .6rem;
	font-size: 1.8rem;
	font-weight: bold;
}
.tag_categ li:hover,
.tag_categ li.active {
	background: rgba(255,255,255,0.5);
	color: #fff;
}
.tag_list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 7.5rem;
	margin-left: -2rem;
}
.tag_list .item {
	padding-left: 2rem;
	width: 25%;
	transition: none !important;
}
.tag_list a {
	display: block;
	min-height: 19rem;
	margin-bottom: 2rem;
	background: #fff;
}
.tag_list .img_box {
	padding-top: 11.5rem;
}
.tag_list .box {
	padding: .8rem 1.5rem;
}
.tag_list .ttl{
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 3;
	padding: 0.5rem 0.7rem 0.4rem;
	background: #00AAE6;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: .1em;
	color: #fff;
}
.tag_list .sub_ttl{
	color: #373737;
	font-size: 1.6rem;
}
.tag_list .categ {
	color: #878787;
	font-size: 1.2rem;
}

/* !mainVisual
---------------------------------------------------------- */
#mainVisual {
	background: url(../img/top/bg_mv.jpg)no-repeat right bottom;
	background-size: 100% 75rem;	
	position: relative;
}
#mainVisual .inner{
	max-width: 140rem;
	padding: 0 7rem;
	display: flex;
	align-items: center;
	height: 76rem;
}
.mv_jap{
	min-width: 30rem;
}
.mv_jap img{
	width: 22.9rem;
}
.mv_slider{
	position: relative;
	top: 4rem;
	width: 91rem;
	pointer-events: none;
}
.mv_slider:before{
	content: '';
	position: absolute;
	left: 1px;
	bottom: 0;
	width: 100vw;
	height: 10rem;
	background: #fff;
	z-index: -1;
}
.mv_eng{
	position: absolute;
	left: 6.5rem;
	bottom: 6.5rem;
	z-index: 2;
	width: calc(100% - 6.5rem);
	max-width: 127rem;
}

@media screen and (max-width: 1280px) and (max-height: 720px) {
  #mainVisual .inner{
    max-width: 120rem;
    height: calc(100vh - 6rem);
  }
  .mv_slider{
    top: 6rem;
  }
  .mv_jap{
    margin-bottom: 9.5rem;
  }
  .mv_jap img{
    width: 16rem;
    margin-left: 4rem;
  }
  #mainVisual .mv_slider img{
    max-height: 60rem;
  }
  .mv_eng{
    max-width: 86rem;
    bottom: 10.5rem;
    left: 9.5rem;
  }
}

/* !teaser
---------------------------------------------------------- */
#teaser {
	position: relative;
}
.teaser_bg.img_box{
	padding-top: 50rem;
}
.teaser_bg.img_box img{
	object-fit: fill;
}
.teaser_ttl{
	font-size: 8rem;
	letter-spacing: .1em;
	color: #fff;
	text-shadow: 0 0 1rem rgba(55,55,55,.3);
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	z-index: 9;
	text-align: center;
}

.teaser_bg02{
	position: absolute;
	left: 50%;
	top: 52%;
	z-index: 2;
	transform: translate(-50%,-50%);
	width: calc(100% - 10rem);
	height: 64.6rem;
	text-align: center;
}
.teaser_bg02 img{
	height: 100%;
	object-fit: cover;
}
.teaser_sub_ttl{
	font-size: 3.5rem;
	letter-spacing: .1em;
	color: #fff;
	text-shadow: 0 0 1.5rem rgba(55,55,55,.3);
	position: absolute;
	left: 0;
	top: 63%;
	width: 100%;
	z-index: 9;
	text-align: center;
}
/* !contents
---------------------------------------------------------- */
#contents {
	
}

#main {
	
}

#side {
	
}

.inner {
	
}

/* !pageTop
---------------------------------------------------------- */
.pageTop {
	position: fixed;
	right: 5rem;
	bottom: 3rem;
	z-index: 99;
	width: 6rem;
	transform: translateY(9rem);
	transition: all .3s ease;
}

.pageTop.is-scrolling {
	transform: translateY(0);;
}

.pageTop.end {
	bottom: 11rem;
}

/* !footer
---------------------------------------------------------- */
#footer {
	position: relative;
	background: #F3F3F3;
}

#footer .footerIn {
	padding: 7.8rem 5rem 6.8rem;
}
.footer_list{
	display: flex;
	justify-content: space-between;
}
.footer_item_hd a{
	font-size: 1.4rem;
	line-height: 2.5rem;
	font-weight: bold;
	color: #005ADC;
	pointer-events: none;
}
.footer_list ul{
	margin-top: .5rem;
}
.footer_list ul a{
	font-size: 1.2rem;
	line-height: 2.5rem;
}
.footer_btn{
	margin-top: 1.5rem;
}

.footer_bottom{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	height: 8rem;
	padding: 0 5rem;
}
.footer_logo{
	width: 22.5rem;
}
#copyright {
	font-size: 1.1rem;
}

/* !h(n)eading
---------------------------------------------------------- */
.img_box {
    position: relative;
    width: 100%;
    padding-top: 66%;
    overflow: hidden;
}
.img_box img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    object-fit: cover;
    transition: transform .4s ease;
}
a:hover .img_box img{
	transform: scale(1.05);
}

.btn_target{
	display: inline-flex;
	align-items: center;
	padding: 0 2rem;
	width: 21rem;
	height: 4rem;
	font-size: 1.2rem;
	font-weight: 500;
	color: #5F5F5F;
	border: 1px solid;
	background: url(../img/common/btn_target.svg)no-repeat right 2rem center;
	background-size: 1.2rem auto;
}

.common_txt,
.common_txt p{
	font-size: 1.6rem;
	line-height: 2.1875;
}
.common_txt p+p{
	margin-top: 3.5rem;
}

/*message*/
.message_wrap{
	padding: 8.8rem 0 15rem;
	text-align: center;
}
.message_ttl{
	font-size: 4.5rem;
	letter-spacing: .1em;
	color: #1B1C80;
	margin-bottom: 4.5rem;
}

.other_bottom{
	background: rgba(191,213,246,.35);
	position: relative;
	margin-bottom: 2rem;
	padding: 5.5rem 0 6rem;
}
.other_bottom_hd{
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%,-59%) rotate(-5deg);
	z-index: 9;
	/*font-size: 7rem;*/
	color: #1B1C80;
	text-shadow: .5px .5px 0 #1B1C80;
}
.other_bottom_btn{
	display: flex;
	justify-content: center;
	grid-gap: 3rem;
}

.other_bottom_btn li {
	width: 100%;
	max-width: 40rem;
}
.other_bottom_btn a{
	display: inline-flex;
	align-items: center;
	padding: 0 3.3rem;
	width: 100%;
	height: 7.3rem;
	font-size: 2rem;
	font-weight: 400;
	letter-spacing: .1em;
	background: url(../img/common/arrow_right.svg)no-repeat right 2.5rem center;
	background-size: .8rem auto;
	border: 1px solid;
}

/*training*/
.training_sec01{
	overflow: hidden;
	padding: 8.4rem 0 10rem;
}
.training_item+.training_item{
	margin-top: 7rem;
}
.training_hd{
	margin-bottom: 4.5rem;
	font-size: 4.5rem;
	line-height: 1.4;
	letter-spacing: .1em;
	color: #1B1C80;
}
.training_other{
	font-size: 2.1rem;
	font-weight: 400;
	color: #005ADC;
}
.training_item_dl{
	display: flex;
	align-items: center;
	justify-content: space-between;
	grid-gap: 3rem;
	position: relative;
	background: #F3F3F3;
	padding: 4rem 4rem 4rem 0;
}
.training_item_dl:after{
	content: '';
	z-index: -1;
	position: absolute;
	right: 99%;
	top: 0;
	width: 100vw;
	height: 100%;
	background: #F3F3F3;
}
.training_item_dt{
	font-size: 1.6rem;
	line-height: 1.875;
}
.training_item_dd{
	display: flex;
	grid-gap: 1.5rem;
}
.training_item_dd img{
	width: 28rem;
	min-width: 28rem;
	max-width: none;
}

.training_sec02{
	background: url(../img/training/bg_color.jpg)no-repeat center center;
	background-size: 100% 100%;
	padding: 8.4rem 0 10rem;
	margin-bottom: 6.7rem;
}
.training_sec02_list{
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap: 2.5rem;
}
.training_sec02_list li{
	background: #fff;
	padding: 2rem 2.5rem 3.6rem;
}
.training_sec02_list dl{
	display: flex;
	align-items: center;
	margin-bottom: 2rem;
}
.training_sec02_list dt{
	width: 10.2rem;
	min-width: 10.2rem;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	z-index: 2;
}
.training_sec02_list dd{
	width: 100%;
	height: 4.2rem;
	background: url(../img/training/bg_ttl.png)no-repeat right center;
	background-size: 100% 100%;
	color: #fff;
	font-size: 2.1rem;
	font-weight: 400;
	letter-spacing: .075em;
	margin-left: -4.7rem;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 2.3rem;
}
.training_sec02_list .txt{
	font-size: 1.6rem;
	line-height: 1.75;
}

/*internship*/
.internship_sec01{
	padding: 14rem 0 13rem;
}
.internship_sec01_item+.internship_sec01_item{
	margin-top: 10rem;
}
.internship_dl{
	display: flex;
	justify-content: space-between;
}
.internship_dt{
	width: 54.8rem;
}
.internship_dd{
	margin-right: -20rem;
	width: 56.5rem;
}
.internship_sec01_item:nth-of-type(even) .internship_dl{
	flex-direction: row-reverse;
	margin-bottom: 3.6rem;
}
.internship_sec01_item:nth-of-type(even) .internship_dd{
	margin-right: 0;
	margin-left: -20rem;
	width: 58.5rem;
}
.internship_dl .training_hd{
	margin-bottom: 3rem;
}
.internship_box{
	position: relative;
	margin-top: 5.5rem;
	background: #F3F3F3;
	padding: 3.5rem 8rem 5rem;
}
.internship_box_ttl{
	position: relative;
	z-index: 2;
	color: #fff;
	font-size: 2.6rem;
	line-height: 4.1rem;
	font-weight: 400;
	margin-bottom: 3rem;
}
.internship_box_ttl:before{
	width: 30.8rem;
	height: 100%;
	content: '';
	position: absolute;
	left: -8.8rem;
	top: 0;
	z-index: -1;
	background: url(../img/internship/bg_ttl.png)no-repeat right center;
	background-size: 100% 100%;
}
.internship_box_list{
	display: flex;
	grid-gap: 7.5rem;
	margin-top: 2rem;
}
.internship_box_list li{
	font-size: 2.2rem;
	line-height: 1.95;
	padding-left: 4rem;
	background: url(../img/internship/icon_li.svg)no-repeat left center;
	background-size: 2.4rem auto;
}
.internship_box_btn{
	position: absolute;
	right: 8rem;
	bottom: 5rem;
	z-index: 3;
}
.btn_target.btn_blue{
	padding: 0 2.5rem;
	width: 23rem;
	height: 5rem;
	font-size: 1.5rem;
	letter-spacing: .1em;
	font-weight: 400;
	color: #fff;
	border: 0;
	background: url(../img/common/btn_target_white.svg)no-repeat right 2.5rem center #4C8BE6;
	background-size: 1.7rem auto;
}

.internship_eng{
	font-weight: 400;
	color: #2673E1;
	padding: 3rem 0 .6rem;
}
.internship_eng span{
	width: 13.1rem;
	display: inline-block;
	/*transform: rotate(343.7deg);*/
	text-shadow: .5px .5px 0 #2673E1;
}
.internship_box_note{
	margin-top: 2rem;
	font-size: 1.2rem;
}

.internship_sec02{
	margin-bottom: 2rem;
}
.internship_sec02 .training_hd{
	text-align: center;
}

/*business*/
.business_sec01{
	padding: 13rem 0 8.5rem;
}
.business_sec01_list{
	background: #F3F3F3;
	padding: 4rem;
}
.business_sec01_list li+li{
	border-top: 2px solid #FFFFFF;
	padding-top: 4rem;
	margin-top: 4rem;
}
.business_sec01_dl{
	display: flex;
	justify-content: space-between;
	grid-gap: 4rem;
}
.business_sec01_dt{
	width: calc(100% - 32rem);
}
.business_sec01_dd{
	width: 28rem;
}
.business_ttl{
	font-size: 2.1rem;
	font-weight: 400;
	color: #005ADC;
	display: flex;
	align-items: center;
	grid-gap: 1rem;
	margin-bottom: 1.3rem;
}
.business_ttl:before{
	content: '';
	width: 2.5rem;
	height: 1px;
	background: #005ADC;
}
.business_sec01_dl .txt{
	font-size: 1.6rem;
	line-height: 1.875;
}
.business_sec01_dl .btn{
	margin-top: 2.3rem;
}

.business_sec02{
	margin-bottom: 0;
}
.business_sec02 .business_sec01_dl{
	background: #fff;
	padding: 4rem;
}
.business_sec02 .business_sec01_dl+.business_sec01_dl{
	margin-top: 2rem;
}
.business_sec02_dl01 .business_sec01_dt{
	width: 31.5rem;
}
.business_sec02_dl01 .business_sec01_dd{
	width: 56.2rem;
}
.business_sec02_dl02 .business_sec01_dt{
	width: 67.6rem;
}
.business_sec02_dl02 .business_sec01_dd{
	width: 20.5rem;
}

.business_sec03 {
	padding: 9rem 0 10rem;
	margin: 0;
}

.business_sec03_dl{
	padding: 4rem;
	background: #fff;
	display: flex;
	justify-content: space-between;
}
.business_sec03_dt{
	width: 59rem;
}
.business_sec03_dd{
	width: 29.4rem;
}
.business_sec03_dl .txt{
	font-size: 1.6rem;
	line-height: 1.875;
}
.business_sec03_list{
	margin-top: 3rem;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap: 1rem;
}
.business_sec03_list li{
	background: #4C8BE6;
	color: #fff;
	text-align: center;
	padding: 4rem 0;
}
.business_sec03_list .ttl{
	font-size: 2.1rem;
	font-weight: 400;
	margin-bottom: 4.7rem;
}
.business_sec03_list .number{
	font-size: 2.3rem;
	font-weight: 400;
	margin-top: 3.8rem;
}
.business_sec03_list .number span{
	font-size: 5.4rem;
	line-height: 1;
	letter-spacing: 0;
}
.business_sec03_list .icon img{
	width: auto;
	max-width: none;
	height: 8rem;
}

.business_sec04{
	padding: 9rem 0 10rem;
}

.business_sec04_box01{
	background: #F3F3F3;
	padding: 4rem;
}
.business_sec04_box02{
	margin-top: 2rem;
	background: #F3F3F3;
	padding: 4rem;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-gap: 8rem;
	position: relative;
}
.business_sec04_box02:before{
	content: '';
	position: absolute;
	left: calc(50% - 1px);
	top: 4rem;
	width: 2px;
	height: calc(100% - 8rem);
	background: #fff;
}
.business_sec04_dl01{
	display: flex;
	align-items: center;
	margin-bottom: 2.5rem;
}
.business_sec04_dl01 dt{
	width: 12rem;
	height: 12rem;
	text-align: center;
	position: relative;
	z-index: 3;
}
.business_sec04_dl01 dt img{
	height: 100%;
	max-width: none;
	width: auto;
}
.business_sec04_dl01 dd{
	width: 35rem;
	height: 7rem;
	margin-left: -4.5rem;
	padding-left: 4.8rem;

	background: url(../img/training/bg_ttl.png)no-repeat right center;
	background-size: 100% 100%;
	color: #fff;
	font-size: 2.1rem;
	font-weight: 400;
	display: flex;
	align-items: center;
}
.business_sec04_list{
	margin-bottom: 2rem;
}
.business_sec04_list li{
	padding-left: 1em;
	text-indent: -1em;
	font-size: 1.6rem;
	line-height: 1.75;
}
.business_sec04_list li span{
	text-indent: 0;
	color: #4C8BE6;
}
.business_sec04_dl02{
	display: flex;
	color: #CC75B6;
	margin-bottom: 3.5rem;
}
.business_sec04_dl02 dt{
	padding-top: .5rem;
	width: 9rem;
	line-height: 1;
	text-shadow: .5px .5px 0 #CC75B6;
}
.business_sec04_dl02 dd{
	width: calc(100% - 9rem);
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.75;
}
.business_sec04_date{
	font-size: 2.1rem;
	font-weight: 400;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 4.5rem;
	color: #005ADC;
	border-top: 1px solid #005ADC;
	border-bottom: 1px solid #005ADC;
	margin-bottom: 2rem;
}
.business_sec04_table{
	width: 100%;
}
.business_sec04_table th,
.business_sec04_table td{
	font-size: 1.6rem;
	line-height: 1.375;
	padding: .4rem 0;
	vertical-align: top;
}
.business_sec04_table th{
	letter-spacing: -.05em;
	font-weight: bold;
	color: #005ADC;
	width: 14rem;
	white-space: nowrap;
}


/*rinen*/
.rinen_sec01{
	margin-top: 14rem;
	padding: 13.4rem 0 11rem;
	color: #fff;
	position: relative;
	overflow: hidden;
}
.rinen_sec01:before{
	content: '';
	position: absolute;
	right: 10rem;
	top: 0;
	height: 100%;
	width: calc(100% - 10rem);
	z-index: 1;
	background: url(../img/rinen/bg_sec01.jpg)no-repeat bottom right;
	background-size: cover;
}

@media screen and (max-width: 1299px) {
	.rinen_sec01:before{
		right: 5rem;
		width: calc(100% - 5rem);
	}
}

.rinen_dl01{
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.rinen_dl01_dt{
	position: relative;
	width: 35rem;
}
.rinen_dl01_dt:before{
	content: '';
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translate(-65%,-50%);
	width: 13.6rem;
	height: 20rem;

	background: url(../img/rinen/line_sec01.svg)no-repeat center center;
	background-size: 100% auto;
	background-size: cover;
}
.rinen_dl01_dd{
	width: 65rem;
	font-size: 4.5rem;
	line-height: 1.55;
	padding-top: 6.4rem;
}
.eng_philosophy{
	width: 29.6rem;
	transform: rotate(-2deg);
}
.rinen_dl01 .jap{
	margin-top: 1rem;
	font-size: 2.2rem;
	letter-spacing: .1em;
}

.rinen_sec02{
	padding: 13rem 0;
	background: url(../img/rinen/bg_sec02.jpg)no-repeat right bottom;
	background-size: auto 90rem;
}
.rinen_dl02{
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	color: #1B1C80;
	margin-bottom: 8.5rem;
}
.rinen_dl02_dt{
	position: relative;
	width: 25rem;
}
.rinen_dl02_dt:before{
	content: '';
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translate(-65%,-50%);
	width: 13.6rem;
	height: 20rem;

	background: url(../img/rinen/line_sec02.svg)no-repeat center center;
	background-size: 100% auto;
	background-size: cover;
}
.rinen_dl02_dd{
	width: 75rem;
	font-size: 3.5rem;
	line-height: 1.71;
	padding-top: 7.4rem;
}
.eng_vision{
	width: 17.2rem;
	transform: rotate(-2deg);
}
.rinen_dl02 .jap{
	margin-top: 2rem;
	font-size: 2.2rem;
	letter-spacing: .1em;
}
.rinen_sec02_list{
	display: grid;
	grid-gap: 5rem;
}
.rinen_sec02_list dl{
	display: flex;
}
.rinen_sec02_list dt{
	width: 5rem;
	font-size: 4.2rem;
	line-height: 1;
	color: #005ADC;
	font-weight: 400;
}
.rinen_sec02_list dd{
	width: calc(100% - 5rem);
}
.rinen_sec02_list .ttl{
	font-size: 2.8rem;
	color: #005ADC;
	font-weight: 400;
}
.rinen_sec02_list .txt{
	margin-top: 2rem;
	font-size: 1.8rem;
	line-height: 2.22;
}

.rinen_sec03{
	background: #F3F3F3;
	padding: 8.7rem 0 15rem;
}
.rinen_hd span{
	color: #1B1C80;
	display: inline-flex;
	font-size: 4.5rem;
	letter-spacing: .1em;
	padding-bottom: .7rem;
	margin-bottom: 7rem;
	position: relative;
}
.rinen_hd span:before{
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	height: .4rem;
	width: calc(100% + 25vw);
	background-image: linear-gradient(to left,#B63A97 0%,#B63A97 5%,#003CBE 30%,#005ADC 50%,#00AAE6 100% );
}
.rinen_sec03_img{
	text-align: center;
}
.rinen_sec03_img img{
	width: 78.6rem;
}

.rinen_sec04{
	padding: 8.5rem 0 15rem;
}
.rinen_sec04_img{
	text-align: center;
}
.rinen_sec04_img img{
	width: 69.2rem;
}

.rinen_sec05{
	padding: 8.5rem 0 10rem;
	margin-bottom: 6.6rem;
	background: #F3F3F3;	
}
.rinen_table{
	width: 100%;
	border-top: 1px solid #919191;	
}
.rinen_table th,
.rinen_table td{
	font-size: 1.6rem;
	line-height: 1.875;
	font-weight: 500;
	vertical-align: top;
	padding: .7rem 3rem;
	border-bottom: 1px solid #919191;	
	background: #fff;
}
.rinen_table th{
	width: 23rem;
	background: #D9E6FA;
}
.rinen_table th span{
	float: right;
}
.rinen_table .dashed th,
.rinen_table .dashed td{
	border-bottom: 1px dashed #919191;	
}


.eng_about{
	width: 14.2rem;
}

/*tuyomi*/
.tuyomi_sec01{
	padding: 7rem 0 8rem;
}
.tuyomi_sec01_hd{
	font-size: 4.5rem;
	line-height: 1.4;
	letter-spacing: .1em;
	color: #fff;
	text-align: center;
	margin-bottom: 4.2rem;
}

.tuyomi_sec02{
	padding: 10rem 0 11.6rem;
}
.tuyomi_sec02_dl+.tuyomi_sec02_dl{
	margin-top: 5rem;
}
.tuyomi_sec02_dl{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 5rem 10rem 7rem;
	background: #F3F3F3;
	border-left: .4rem solid #50E6C8;
	position: relative;
}
.tuyomi_sec02_dl:before{
	content: '';
	z-index: -1;
	position: absolute;
	left: 99%;
	top: 0;
	width: 100vw;
	height: 100%;
	background: #F3F3F3;
}
.tuyomi_sec02_item02.tuyomi_sec02_dl{
	border-color: #78DCFF;
}
.tuyomi_sec02_item03.tuyomi_sec02_dl{
	border-color: #D296FA;
}
.tuyomi_sec02_dt{
	width: calc(100% - 38rem - 4rem);
}
.tuyomi_sec02_dd{
	width: 38rem;
}
.eng_icon img{
	transform: rotate(-5deg);
}
.tuyomi_sec02_dl .eng_icon{
	margin-left: -5rem;
	margin-bottom: 1.4rem;
}
.eng_close img{
	width: 10.7rem;
}
.eng_support img{
	width: 17.1rem;
}
.eng_stability img{
	width: 17.6rem;
}
.tuyomi_sec02_dl .ttl{
	font-size: 2.8rem;
	font-weight: 400;
	margin-bottom: 2rem;
}
.tuyomi_sec02_dl ul{
	display: grid;
	grid-gap: 1.5rem;
}
.tuyomi_sec02_dl li{
	padding-left: 1em;
	text-indent: -1em;
	font-size: 1.6rem;
	line-height: 1.75;
}
.tuyomi_sec02_dl li span{
	text-indent: 0;
	color: #50E6C8;
}
.tuyomi_sec02_item02.tuyomi_sec02_dl li span{
	color: #78DCFF;
}
.tuyomi_sec02_item03.tuyomi_sec02_dl li span{
	color: #D296FA;
}

/*tiiki*/
.tiiki_wrap{
	background: url(../img/tiiki/bg_sec01.jpg)no-repeat left top;
	background-size: auto 65rem;
	padding-top: 13rem;
}
.tiiki_hd01{
	font-size: 3rem;
	letter-spacing: .1em;
	color: #005ADC;
	margin-bottom: 1rem;
}
.tiiki_hd02{
	font-size: 4.5rem;
	line-height: 1.4;
	letter-spacing: .1em;
	color: #1B1C80;
	margin-bottom: 2.3rem;
}
.tiiki_hd03{
	font-size: 2.2rem;
	letter-spacing: .1em;
}
.tiiki_people{
	margin-top: 10rem;
	display: flex;
	justify-content: flex-start;
	flex-direction: row-reverse;
}
.tiiki_people dt{
	width: 25rem;
}
.tiiki_people dd{
	width: 60rem;
	background: rgba(191,213,246,.35);
	padding: 3.5rem 4rem;
}
.tiiki_people .name{
	font-size: 2rem;
	line-height: 1.3;
	margin-bottom: 1.5rem;
}
.tiiki_people .name span{
	font-size: 1.6rem;
}
.tiiki_people .txt{
	font-size: 1.4rem;
	line-height: 2;
}

.tiiki_cont{
	padding: 10rem 0;
}
.tiiki_item+.tiiki_item{
	margin-top: 10rem;
}
.tiiki_item:nth-of-type(even){
	padding: 10rem 0;
	position: relative;
}
.tiiki_item:nth-of-type(even):before{
	content: '';
	position: absolute;
	right: 10rem;
	top: 0;
	width: 100vw;
	height: 100%;
	background: #F3F3F3;
	z-index: 1;
}
.tiiki_item_hd{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	grid-gap: 1rem;
	margin-bottom: 3.5rem;
	position: relative;
	z-index: 2;
}
.tiiki_item_hd span{
	padding: 0 2rem;
	border-left: .5rem solid #3363CB;
	background: #F3F3F3;
	color: #1B1C80;
	font-size: 2.3rem;
	line-height: 2;
}
.tiiki_item:nth-of-type(even) .tiiki_item_hd span{
	background: #fff;
}

.tiiki_item_dl{
	z-index: 2;
	position: relative;
	display: flex;
	justify-content: space-between;
}
.tiiki_item_dt{
	width: 64rem;
}
.tiiki_item_dd{
	width: 50rem;
	margin-right: -20rem;
}
.tiiki_item:nth-of-type(odd) .tiiki_item_dl{
	flex-direction: row-reverse;
}
.tiiki_item:nth-of-type(odd) .tiiki_item_dd{
	margin-right: 0;
	margin-left: -20rem;
}

.eng_culture{
	width: 15rem;
}

/*sdgs*/
.sdgs_wrap .tiiki_people dd{
	width: 40rem;
}
.tiiki_item_dd .img{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	grid-gap: 2rem;
}
.tiiki_item_dd .img img{
	width: 24rem;
}
.tiiki_item_dd .img img:nth-of-type(1){
	width: 40rem;
	margin-left: 10rem;
}
.sdgs_wrap .tiiki_item:nth-of-type(even):before{
	content: '';
	position: absolute;
	right: auto;
	left: 10rem;
	top: 0;
	width: 100vw;
	height: 100%;
	background: #F3F3F3;
	z-index: 1;
}
.sdgs_wrap .tiiki_item .tiiki_item_dl{
	flex-direction: row-reverse;
}
.sdgs_wrap .tiiki_item:nth-of-type(odd) .tiiki_item_dl{
	flex-direction: row;
}
.sdgs_wrap .tiiki_item .tiiki_item_dd{
	margin-right: 0;
	margin-left: -20rem;
}
.sdgs_wrap .tiiki_item:nth-of-type(odd) .tiiki_item_dd{
	margin-right: -20rem;
	margin-left: 0;
}
@media screen and (max-width: 1299px) {
	.sdgs_wrap .tiiki_item .tiiki_item_dt{
		width: 54rem;
	}
	.sdgs_wrap .tiiki_item .tiiki_item_dd{
		margin-left: -10rem;
	}

	.sdgs_wrap .tiiki_item:nth-of-type(odd) .tiiki_item_dd {
		margin-right: -10rem;
	}
}
/*diversity*/
.diversity_wrap{
	background: url(../img/diversity/bg_wrap.jpg)no-repeat center center;
	background-size: 100% 100%;
	padding-bottom: 5rem;
	margin-bottom: 6.6rem;
}
.diversity_box{
	margin: 0 auto;
	padding: 8.4rem 5rem 10rem;
	max-width: 140rem;
	background: #fff;
}
.diversity_sec01{
	position: relative;
	margin-top: 3.5rem;
	background: #F1F4F9;
	padding: 6.8rem 4rem 4rem;
}
.diversity_hd01{
	background: url(../img/diversity/bg_hd01.png)no-repeat right center;
	background-size: 100% 100%;
	height: 7rem;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	transform: translateY(-50%);
	color: #fff;
	font-size: 2.1rem;
	font-weight: 400;
	display: inline-flex;
	align-items: center;
	padding: 0 4.4rem 0 2.5rem;
}
.diversity_list01{
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap: 2.3rem;
}
.diversity_list01_item{
	background: #fff;
	padding: 2.4rem 2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.diversity_list01_item .ttl{
	font-size: 1.9rem;
	font-weight: 400;
	line-height: 1.26;
	color: #005ADC;
	margin-bottom: 2.5rem;
}
.diversity_list01_item .cont{
	font-size: 1.6rem;
	line-height: 1.75;
}
.diversity_list01_item li{
	font-size: 1.6rem;
	line-height: 1.75;
	padding-left: 1em;
	position: relative;
}
.diversity_list01_item li:before{
	content: '●';
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	color: #4C8BE6;
}

/*interview_sec*/
.interview_sec{
	margin-top: 10rem;
}
.eng_interview img{
	width: 29.4rem;
	margin-left: -2%;
}
.interview_hd .jap{
	display: block;
	font-size: 2.2rem;
	letter-spacing: .1em;
	color: #005ADC;
	margin: 1.8rem 0 0;
}
.diversity_list02{
	margin-top: 1.8rem;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-gap: 5rem;
}
.diversity_list02 li{
}
.diversity_list02 .img_box{
	padding-top: 50%;
}
.diversity_list02 .cont{
	background: #F1F4F9;
	padding: 5rem 2.5rem 2.5rem;
	margin-top: 1rem;
	position: relative;
}
.diversity_list02 .name{
	background: url(../img/diversity/bg_name.png)no-repeat right center;
	background-size: 100% 100%;
	color: #fff;
	width: 35rem;
	height: 7rem;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
	transform: translateY(-50%);
	font-size: 1.7rem;
	line-height: 1.5;
	display: flex;
	align-items: center;
	padding: 0 6.2rem;
}
.diversity_list02 .name span{
	font-size: 2.2rem;
	line-height: 1.2;
	display: block;
	font-weight: bold;
}
.diversity_list02 .ttl{
	font-size: 1.9rem;
	letter-spacing: -.03em;
	line-height: 3.5rem;
	font-weight: 400;
	color: #005ADC;
}
.interview_note{
	margin-top: 2.5rem;
	font-size: 1.2rem;
}

.eng_business{
	width: 17.5rem;
}
.eng_info{
	width: 32.5rem;
}
.eng_point img{
	width: 7.3rem;
}

/*fukuri*/
.diversity_sec01+.diversity_sec01{
	margin-top: 8rem;
}
.fukuri_hd{
	font-size: 2.8rem;
	font-weight: 400;
	color: #005ADC;
	margin-bottom: 8.5rem;
}
.diversity_list01_item .icon{
	display: flex;
	justify-content: center;
	grid-gap: 1.2rem;
	margin-top: 1rem;
}
.diversity_list01_item .icon img{
	height: 9rem;
}
.fukuri_list{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	grid-gap: 3.3rem 1.8rem;
	padding: 0 6rem;
}
.fukuri_list li{
	width: 13.5rem;
	height: 13.5rem;
	border-radius: 50%;
	background: #fff;
	color: #0058C6;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.28;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	border: 2px solid #4C8BE6;
}
.fukuri_list li:nth-of-type(1){
	margin-left: 3rem;
}
.fukuri_list li:nth-of-type(4){
	margin-right: 3rem;
}

/*education*/
.btn_link01{
	display: inline-flex;
	align-items: center;
	padding: 0 2.5rem;
	width: 23rem;
	height: 5rem;
	font-size: 1.5rem;
	letter-spacing: .1em;
	font-weight: 400;
	color: #fff;
	border: 1px solid;
	background: url(../img/common/arrow_right_white.svg)no-repeat right 1.5rem center #4C8BE6;
	background-size: .75rem auto;
}
.education_item+.education_item{
	margin-top: 4.5rem;
}
.education_dl{
	display: flex;
	justify-content: space-between;
}
.education_dl dt{
	width: calc(100% - 35rem - 5rem);
}
.education_dl dd{
	width: 35rem;
}
.education_item .btn{
	margin-top: 1.8rem;
}
.education_table{
	margin-top: 2rem;
}

.histroy_box{
	border-bottom: 1px solid #72AEFA;
	padding-bottom: 2rem;
	margin-bottom: 2rem;
}
.histroy_hd{
	font-size: 1.8rem;
	margin-bottom: .3rem;
	font-weight: 400;
	color: #005ADC;
}
.histroy_table{
	width: 100%;
}
.histroy_table th,
.histroy_table td{
	font-size: 1.4rem;
	line-height: 2;
	font-weight: 500;
	vertical-align: top;
}
.histroy_table th{
	width: 5.7rem;
}

/*recruit*/
.recruit_sec01{
	padding: 13rem 0 8rem;
}
.recruit_table{
	width: 100%;
	border-top: 1px solid #878787;
}
.recruit_table th,
.recruit_table td{
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2.1875;
	vertical-align: top;
	border-bottom: 1px solid #878787;
	padding: 4rem 4.5rem;
}
.recruit_table th{
	font-size: 2.3rem;
	line-height: 1.6;
	letter-spacing: .1em;
	font-weight: 400;
	color: #005ADC;
	background: rgba(224,235,251,.5);
	padding: 4rem 3rem;
}
.recruit_table p+p{
	margin-top: 3.5rem;
}
.recruit_table .btn{
	margin-top: 2rem;
}
.recruit_btn{
	margin-top: 6rem;
	text-align: center;
}
.btn_link02{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40rem;
	height: 8rem;
	font-size: 2.5rem;
	letter-spacing: .1em;
	font-weight: 400;
	color: #fff;
	background-image: linear-gradient(-90deg,#005ADC 0%,#005ADC 50%,#00AAE6 100% );
	position: relative;
}
.btn_link02:hover{
	/*opacity: 1;*/
	/*background-image: linear-gradient(90deg,#005ADC 0%,#005ADC 50%,#00AAE6 100% );*/
}
.btn_link02:before{
	content: '';
	position: absolute;
	right: 3rem;
	top: 0;
	z-index: 1;
	width: .9rem;
	height: 100%;
	background: url(../img/common/arrow_right_white.svg)no-repeat center center;
	background-size: 100% auto;
}

.recruit_sec02{
	padding: 5rem 0;
	margin-bottom: 6.7rem;
	background: url(../img/recruit/bg_sec02.jpg)no-repeat left center;
	background-size: 90% auto;
}
.recruit_sec02_hd{
	text-align: center;
	font-size: 4.5rem;
	letter-spacing: .1em;
	margin-bottom: 4rem;
	color: #1B1C80;
}
.recruit_sec02_box{
	background: #fff;
	padding: 5rem 7.5rem 6rem;
	text-align: center;
}
.recruit_sec02_list li{
	position: relative;
	padding-bottom: 2.4rem;
	border-bottom: 1px solid #373737;
}
.recruit_sec02_list li:not(:last-of-type):before{
	content: '';
	position: absolute;
	left: 0;
	top: calc(100% + 1px);
	width: 100%;
	height: 1.6rem;
	z-index: 1;
	background: url(../img/recruit/arrow_li.svg)no-repeat bottom center;
	background-size: auto 100%;
}
.recruit_sec02_list li+li{
	margin-top: 3rem;
}
.recruit_sec02_list .ttl{
	font-size: 2.2rem;
	line-height: 1.5;
	font-weight: 400;
	letter-spacing: .1em;
	color: #005ADC;
}
.recruit_sec02_list .txt{
	margin-top: .5rem;
	font-size: 1.6rem;
	line-height: 1.75;
}

/*top*/
.top_sec01{
	background: url(../img/top/bg_message.jpg)no-repeat right top,
	url(../img/top/bg_mv.jpg)no-repeat left top 74.5rem;
	background-size: 100% 75rem,100% auto;
	position: relative;
	color: #fff;
	padding: 20rem 0 15rem;
}

.top_sec01_eng img{
	width: 20.2rem;
}
.top_sec01 .rinen_dl01_dt{
	width: 23rem;
}
.top_sec01 .rinen_dl01_dt:before {
    transform: translate(-55%, -28%);
    width: 16.6rem;
    height: 24.5rem;
}
.top_sec01 .rinen_dl01_dd{
	width: 66rem;
	font-size: 2.2rem;
	line-height: 2.7;
	letter-spacing: .2em;
	padding-top: 4.4rem;
}
.mito_3min{
	margin-right: -20rem;
	background: url(../img/top/bg_mito.png)no-repeat right center;
	background-size: cover;
	display: flex;
	align-items: center;
	padding-left: 15rem;
	height: 42rem;
	margin-top: 13rem;
}
.mito_3min_jap{
	background: url(../img/top/bg_jap.jpg)no-repeat center center;
	background-size: 100% 100%;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 5rem;
	letter-spacing: .1em;
	width: 70rem;
	height: 12rem;
	position: relative;
}
.mito_3min_jap img{
	position: absolute;
	left: -6rem;
	top: -3rem;
	z-index: 2;
	width: 31.1rem;
}

.top_sec02{
	background: #F3F3F3;
	padding: 11rem 0 15rem;
}
.top_eng_about img{
	width: 28.5rem;
}
.top_sec02_list{
	display: flex;
	justify-content: space-between;
	margin: 6.5rem -20rem 0;
}
.top_sec02_list li{
	width: 65rem;
	position: relative;
}
.top_sec02_list li:nth-of-type(even){
	top: -10rem;
}
.top_sec02_list a{
	display: block;
	color: #fff;
	background: url(../img/top/border_about.jpg)no-repeat center center;
	background-size: 100% 100%;
	padding-bottom: .7rem;
	opacity: 1!important;
	position: relative;
}
.top_sec02_list .img_box{
	padding-top: 35rem;
}
.top_sec02_list .ttl{
	position: absolute;
	z-index: 9;
	right: 3rem;
	bottom: 3rem;
}
.top_sec02_list li:nth-of-type(even) .ttl{
	right: auto;
	left: 3rem;
}

.btn_dot{
	display: inline-flex;
	align-items: center;
	min-width: 4rem;
	min-height: 4rem;
	padding-right: 5rem;
	background: url(../img/top/bg_dot.svg)no-repeat right center;
	background-size: 4rem auto;
	position: relative;
	font-size: 4.2rem;
	font-weight: 400;
	letter-spacing: .1em;
	color: #fff;
}
.btn_dot:after,
.btn_dot:before{
	content: '';
	position: absolute;
	right: 2rem;
	top: 50%;
	transform: translate(50%,-50%);
	z-index: 9;
	width: .8rem;
	height: .8rem;
	background: #005ADC;
	border-radius: 50%;
	transition: all .3s;
}
a:hover .btn_dot:before,
.btn_dot:hover:before{
	width: 4rem;
	height: 4rem;
}
.btn_dot:after{
	width: 0;
	height: 0;
}
a:hover .btn_dot:after,
.btn_dot:hover:after{
	width: .8rem;
	height: .8rem;
	background: #fff;
}

.top_sec03{
	background: #F3F3F3;
	padding: 0 0 9.5rem;
	margin-bottom: 13rem;
}
.top_eng_business img{
	width: 35rem;
}
.top_sec03_box{
	background: #fff;
	padding: 15rem 10rem 4.5rem;
	position: relative;
}
.top_sec03_box .interview_hd{
	position: absolute;
	left: 50%;
	top: 0;
	z-index: 1;
	transform: translate(-50%,-30%);
	text-align: center;
}
.top_sec03_list{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-gap: 4.5rem;
}
.top_sec03_list a{
	display: block;
	opacity: 1;
}
.top_sec03_list .img_box{
	padding-top: 24rem;
	clip-path: polygon(1.5rem 0, calc(100% - 1.5rem) 0%, 100% 1.5rem, 100%  100%,1.5rem 100%,0 calc(100% - 1.5rem),0 1.5rem);
}
.top_sec03_list .btn_dot{
	position: absolute;
	right: 2rem;
	bottom: 2rem;
	z-index: 9;
}
.top_sec03_list .ttl{
	font-size: 3.5rem;
	font-weight: 400;
	letter-spacing: .1em;
	display: flex;
	align-items: flex-start;
	grid-gap: 2rem;
	margin-top: 1.5rem;
	word-break: keep-all;
}
.top_sec03_list .ttl:before{
	content: '';
	width: 7rem;
	height: 1px;
	background: #005ADC;
	margin-top: .75em;
}
.top_sec03_list .ttl span{
	font-size: 2.5rem;
	letter-spacing: 0;
}

.top_sec04{
	background: url(../img/top/bg_mv.jpg)no-repeat right bottom;
	background-size: cover;	
	color: #fff;
	padding: 15.6rem 0 11.6rem;
}
.top_eng_employee img{
	width: 36.7rem;
}
.top_sec04 .interview_hd{
	position: absolute;
	left: 5rem;
	top: -15.6rem;
	z-index: 1;
	transform: translateY(-30%);
}
.top_sec04 .interview_hd .jap{
	color: #fff;
}
.top_sec04_slider{
	margin-right: -50rem;
}
.top_sec04_slider .slick-list{
	/*overflow: visible;*/
}
.top_sec04_item{
	width: 44rem;
	margin-right: 3rem;
}
.top_sec04_item a{
	display: block;
	opacity: 1;
	color: #fff;
}
.top_sec04_item .img_box{
	padding-top: 27rem;
	clip-path: polygon(0 0,100% 0,100% calc(100% - 8rem),calc(100% - 8rem) 100%,0 100%);
}
.top_sec04_item .txt{
	font-size: 2.3rem;
	letter-spacing: .05em;
	line-height: 1.75;
	margin: 2.7rem 0 1.3rem;
	
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.top_sec04_item .name{
	font-size: 1.8rem;
}
.top_sec04_slider .slick-prev,
.top_sec04_slider .slick-next{
    width: 5rem;
    height: 5rem;
    z-index: 3;
    background: url(../img/top/slick_next.svg)no-repeat;
    background-size: 100% auto;
    left: 95rem;
    right: auto;
    top: -9rem;
    transform: translateY(0%);
}
.top_sec04_slider .slick-prev{
    background: url(../img/top/slick_prev.svg)no-repeat;
    background-size: 100% auto;
    left: 88rem;
}


.top_sec05{
	margin-top: 3rem;
	padding: 8.5rem 0;
	background: url(../img/top/bg_left.jpg)no-repeat center center;
	background-size: 100% 100%;	
}
.top_sec05_dl{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.top_sec05_dt{
	width: 43rem;
}
.top_sec05_dd{
	width: 70rem;
	margin-right: -20rem;
	display: grid;
}
.top_eng_culture img{
	width: 30.2rem;
	max-width: none;
}
.top_sec05_list{
	margin-top: 7rem;
	border-top: 1px solid #fff;
}
.top_sec05_list li{
	border-bottom: 1px solid #fff;
}
.top_sec05_list a{
	opacity: 1;
	width: 100%;
	font-size: 2.8rem;
	letter-spacing: .1em;
	height: 9rem;
	color: #373737;
}
.top_sec05_img01{
	width: 30rem;
}
.top_sec05_img02{
	width: 33rem;
	margin-left: auto;
	margin-top: -13.6rem;
	position: relative;
	z-index: 2;
}
.top_sec05_img03{
	width: 25rem;
	margin-left: 16.3rem;
	margin-top: -12.5rem;
}

.top_sec06{
	padding: 8.5rem 0;
	background: url(../img/top/bg_right.jpg)no-repeat center center;
	background-size: 100% 100%;	
}
.top_sec06 .top_sec05_dl{
	flex-direction: row-reverse;
}
.top_sec06_dt{
	width: 43rem;
}
.top_sec06_dd{
	width: 63rem;
	margin-left: -20rem;
	display: grid;
}
.top_eng_environment img{
	width: 50.8rem;
	max-width: none;
}
.top_sec06_img01{
	width: 30rem;
	margin-left: auto;
	position: relative;
	z-index: 2;
}
.top_sec06_img02{
	width: 38rem;
	margin-top: -12rem;
}

.top_sec07{
	padding: 14rem 0 15rem;
}
.top_sec07_dl{
	display: flex;
	justify-content: space-between;
}
.top_sec07_dt{
	width: calc(50% - 10rem);
}
.top_sec07_dd{
	width: 50%;
	padding-left: 10rem;
	border-left: 2px solid #D7D7D7;
}
.top_sec07_hd{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 3rem;
}
.top_eng_info img{
	width: 41.9rem;
	max-width: none;
}
.top_eng_internship img{
	width: 27.4rem;
}
.top_sec07_list{
	display: grid;
	grid-gap: 2rem;
}
.top_sec07_list a{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 10rem;
	background: #809DDE;
	color: #fff;
	font-size: 2.8rem;
	letter-spacing: .1em;
	font-weight: 400;
	border: 1px solid #809DDE;
}
.top_sec07_list a:hover{
	opacity: 1;
	color: #809DDE;
	background: #fff;
}
.top_sec07_btn a{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 34rem;
	background: #DA9CCB;
	color: #fff;
	font-size: 2rem;
	letter-spacing: .1em;
	font-weight: 400;
	grid-gap: .6rem;
	border: 1px solid #DA9CCB;
}
.top_sec07_btn a:hover{
	opacity: 1;
	color: #DA9CCB;
	background: #fff;
}
.top_sec07_btn a .ttl{
	font-size: 3.2rem;
}


/*kojin*/
.kojin_wrap{
	background: url(../img/kojin/bg_kojin.png)no-repeat top center;
	background-size: 100% auto;
}
.kojin_top_img{
	margin-right: -10rem;
	margin-top: -3.7rem;
}
.kojin_top_hd{
	position: absolute;
	left: 5rem;
	top: 7.7rem;
	top: 11.5rem;
	z-index: 9;
	font-size: 4.5rem;
	font-weight: 400;
	letter-spacing: .05em;
}
.kojin_top_hd p{
	padding: 0 2.5rem;
	background: #FFFFFF;
	color: #7D57BE;
	border: 1px solid #7D57BE;
}
.kojin_top_hd:before{
	content: '';
	position: absolute;
	left: 0;
	top: .5rem;
	width: calc(100% + .5rem);
	height: 100%;
	z-index: -1;
	background: #9D81CE;
	border: 1px solid #7D57BE;
}
.kojin_top_hd span{
	font-size: 3.5rem;
	letter-spacing: .1em;
}
.kojin_top_box{
	width: 83.5rem;
	position: absolute;
	z-index: 9;
	left: 50%;
	transform: translateX(-50%);
	bottom: 2.5rem;
	background: url(../img/kojin/bg_box.png)no-repeat top center;
	background-size: cover;
	color: #fff;
	padding: 4rem 6rem;
}
.kojin_top_box .ttl{
	font-size: 2rem;
	margin-bottom: 1.5rem;
}
.kojin_top_box .ttl span{
	font-size: 4rem;
}


.kojin_cont{
	padding: 9.5rem 0 13rem;
}
.kojin_list{

}
.kojin_list li{
	position: relative;
}
.kojin_list li:not(:last-of-type){
	border-bottom: 1px solid #003CBE;
	padding-bottom: 5rem;
	margin-bottom: 8rem;
}
.kojin_list li:not(:last-of-type):after{
	content: '';
	position: absolute;
	left: 0;
	top: 1.2rem;
	width: .4rem;
	height: calc(100% + 10rem);
	background: #003CBE;
}
.kojin_list li:not(:last-of-type):before{
	content: '';
	position: absolute;
	left: 0;
	top: calc(100% + 1px);
	width: 100%;
	height: 2.7rem;
	z-index: 1;
	background: url(../img/recruit/arrow_li.svg)no-repeat left 24rem center;
	background-size: auto 100%;
}
.kojin_list .ttl{
	font-size: 3.5rem;
	font-weight: 500;
	color: #00AAE6;
	margin-left: -1.3rem;
	margin-bottom: 2.8rem;
	padding-left: 5rem;
	background: url(../img/kojin/dot.svg)no-repeat left center;
	background-size: 2.9rem auto;
	position: relative;
	z-index: 5;
}
.kojin_list .ttl span{
	color: #003CBE;
	font-weight: 400;
	display: inline-block;
	width: 11.3rem;
}
.kojin_list dl{
	padding-left: 5rem;
	display: flex;
	justify-content: space-between;
}
.kojin_list dt{
	width: 42.6rem;
}
.kojin_list dd{
	width: 48.5rem;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-gap: 1rem;
}

.kojin_bottom{
	padding: 10.7rem 0 7.5rem;
	background: url(../img/kojin/bg_kojin.jpg)no-repeat center center;
	background-size: cover;
	color: #fff;
	margin-bottom: 6.6rem;
}
.kojin_bottom_box{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.kojin_bottom_box dt{
	width: 25.8rem;
	position: relative;
}
.kojin_bottom_box dd{
	width: 67.8rem;
}
.eng_policy{
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%,-65%);
	z-index: 9;
	width: 24.2rem;
}


/*taidan_cul*/
.taidan_wrap{
	background: url(../img/taidan_cul/bg_wrap.jpg)no-repeat top center;
	background-size: 100% auto;
}
.taidan_top{
	padding-top: 12rem;
}
.taidan_top_ttl{
	position: absolute;
	left: -5rem;
	top: -6rem;
	z-index: 9;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.eng_talk{
	width: 53.6rem;
	margin-left: -2rem;
	margin-bottom: 1rem;
}
.taidan_top_ttl .jap{
	font-size: 2.2rem;
	letter-spacing: .1em;
	padding: .8rem 1.2rem;
	background: url(../img/taidan_cul/border_left.svg)no-repeat left top,
	url(../img/taidan_cul/border_right.svg)no-repeat right bottom;
	background-size: 1.6rem auto,1.6rem auto;
	color: #337BE3;
}
.taidan_top_img{
	margin: 0 -20rem 0 10rem;
}
.taidan_top_box{
	position: relative;
	z-index: 9;
	background: #337BE3;
	color: #fff;
	padding: 6rem 7.5rem;
	margin-top: -7rem;
}
.taidan_top_box .ttl{
	font-size: 2.8rem;
	font-weight: 400;
	line-height: 1.785;
	margin-bottom: 2.4rem;
}
.taidan_top_box .txt{
	font-size: 1.8rem;
	line-height: 2;
}

@media screen and (max-width: 1299px) {
	.taidan_top_ttl{
		left: 1rem;
	}

	.taidan_top_img {
		margin-right: -10rem;
	}
}

.taidan_member{
	padding: 10rem 0 15rem;
}
.taidan_member_hd{
	position: relative;
	margin-bottom: 6rem;
}
.taidan_member_hd:before{
	content: '';
	position: absolute;
	right: 0;
	top: 75%;
	z-index: 1;
	width: calc(100% - 27rem);
	height: 1px;
	background: #005ADC;
}
.taidan_member_hd span{
	width: 27rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
.taidan_member_hd span img{
	width: 37rem;
	max-width: none;
}
.taidan_member_list{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-gap: 7.4rem;
}
.taidan_member_list dl{
	display: flex;
	grid-gap: 3.5rem;
}
.taidan_member_list dt{
	width: 20rem;
}
.taidan_member_list dd{
	width: calc(100% - 23.5rem);
}
.taidan_member_list .name{
	font-size: 2.8rem;
	line-height: 1.2;
}
.taidan_member_list .name:before{
	content: '●';
	margin-right: .2em;
	color: #A078DC;
}
.dot_blue:before{
	color: #72AEFA!important;
}
.taidan_member_list .department{
	font-size: 1.5rem;
}
.taidan_member_list .txt{
	margin-top: 1rem;
	font-size: 1.6rem;
	line-height: 1.6875;
}

.taidan_cont{
	padding-bottom: 12rem;
}
.taidan_item+.taidan_item{
	margin-top: 13.5rem;
}
.taidan_item_cont{
}
.taidan_item_img{
	float: right;
	width: 57.3rem;
	margin: 0 -20rem 2rem 5.5rem;
	padding-bottom: .9rem;
	background: url(../img/taidan_cul/bg_rainbow.jpg)no-repeat center center;
	background-size: 100% 100%;
}
.taidan_career_wrap .taidan_item_img{
	background: url(../img/taidan_cul/bg_rainbow02.jpg)no-repeat center center;
	background-size: 100% 100%;
}
.taidan_item_img.small_img{
	width: 49rem;
}
.taidan_item:nth-of-type(even) .taidan_item_img{
	float: left;
	margin: 0 5.5rem 2rem -20rem;
}
.taidan_item_hd{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	grid-gap: 1.3rem;
	margin-bottom: 4rem;
}
.taidan_item_hd p{
	position: relative;
	padding-left: .5rem;
}
.taidan_item_hd p span{
	display: flex;
	align-items: center;
	font-size: 2.3rem;
	height: 4.2rem;
	padding: 0 1.3rem;
	background: #fff;
	border: 1px solid #72AEFA;
	position: relative;
	z-index: 2;
	white-space: nowrap;
}
.taidan_item_hd p:before{
	content: '';
	position: absolute;
	left: 0;
	top: .5rem;
	width: calc(100% - .5rem);
	height: 100%;
	background: url(../img/taidan_cul/bg_line.jpg)no-repeat center center;
	background-size: 100% 100%;
}
.taidan_career_wrap .taidan_item_hd p span{
	border-color: #A078DC;
}
.taidan_career_wrap .taidan_item_hd p:before{
	background: url(../img/taidan_cul/bg_line02.jpg)no-repeat center center;
	background-size: 100% 100%;
}
.taidan_item_cont dl{
	display: flex;
	justify-content: space-between;
}
.taidan_item_cont dl+dl{
	margin-top: 4rem;
}
.taidan_item_cont dt{
	width: 6.6rem;
	overflow: hidden;
}
.taidan_item_cont dt img{
	border-radius: 50%;
}
.taidan_item_cont dd{
	width: calc(100% - 2.3rem - 6.6rem);
}
.taidan_item_cont .name{
	font-size: 1.6rem;
	line-height: 1.2;
	font-weight: bold;
	margin-bottom: 1rem;
}
.taidan_item_cont .name:before{
	content: '●';
	margin-right: .2em;
	color: #A078DC;
}

/*taidan_career*/
.taidan_career_wrap{
	background: url(../img/taidan_career/bg_wrap.jpg)no-repeat top center;
	background-size: 100% auto;
}
.taidan_career_wrap .taidan_top_box{
	background: #6978E6;
}
.taidan_career_wrap .taidan_top_ttl .jap{
	background: url(../img/taidan_career/border_left.svg)no-repeat left top,
	url(../img/taidan_career/border_right.svg)no-repeat right bottom;
	background-size: 1.6rem auto,1.6rem auto;
	color: #5C64BE;
}
.taidan_career_wrap .taidan_member_list{
	grid-template-columns: repeat(1,1fr);
	grid-gap: 5rem;
}
.taidan_career_wrap .taidan_member_list dd{
	display: flex;
	justify-content: space-between;
	grid-gap: 4rem;
}
.taidan_career_wrap .taidan_member_list dd .cont{
	width: 18rem;
}
.road_map{
	width: calc(100% - 18rem - 3rem);
}

.road_map .road_map_title {
	width: 15.4rem;
}

.road_map .road_map_title img {
	width: 100%;
}

.road_map .road_map_box {
	border: .3rem solid;
	padding: 1.5rem 1.8rem;
	display: grid;
	grid-auto-flow: column;
 	grid-template-rows: repeat(3, auto);
	gap: 1.3rem 1rem;
}

.road_map.is_blue .road_map_box {
	border-color: #8ECDDE;
}

.road_map.is_pink .road_map_box {
	border-color: #E3C1D6;
}

.road_map .road_map_item {
	display: flex;
	gap: .8rem;
	align-items: center;
}

.road_map .road_map_year {
	width: 6rem;
	height: 2.6rem;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.3rem;
	line-height: 1.5;
	color: #fff;
	font-weight: 500;
}
.road_map.is_blue .road_map_year  {
	background: #8ECDDE;
}

.road_map.is_pink .road_map_year  {
	background: #E3C1D6;
}

.road_map .road_map_text {
	width: calc(100% - 6.8rem);
	font-size: 1.2rem;
	line-height: 1.25;
}

.dot_green:before{
	color: #32A5C3!important;
}
.dot_link:before{
	color: #CD8FC8!important;
}

/*people_ns*/
.people_top{
	padding-bottom: 6.7rem;
	background: url(../img/people_ns/bg01.jpg)no-repeat bottom center;
	background-size: 100% 50rem;
}
.people_main{
	position: relative;
}
.people_main_hd{
	position: absolute;
	right: 11rem;
	top: 44%;
	z-index: 9;
	display: flex;
	flex-direction: column;
	grid-gap: 1rem;
	align-items: flex-start;
}
.people_main_hd span{
	font-size: 3.2rem;
	line-height: 1.625;
	padding: 0 1rem;
	background: #fff;
}
.people_main_hd span+span{
	margin-left: 5rem;
}

.people_profile{
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 7rem;
	color: #fff;
}
.people_profile dt{
	position: relative;
	width: 26rem;
}
.people_profile dt:before{
	content: '';
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translate(-93%,-22%);
	width: 11.3em;
	height: 16.7rem;

	background: url(../img/rinen/line_sec01.svg)no-repeat center center;
	background-size: 100% auto;
	background-size: cover;
}
.people_profile dd{
	width: calc(100% - 26rem);
}
.people_profile img{
	width: 13.9rem;
}
.people_profile .ttl{
	font-size: 1.8rem;
	margin-bottom: 2.5rem;
}
.people_profile .ttl span{
	font-size: 3.5rem;
	margin-right: .2em;
}
.people_profile .txt{
	font-size: 1.5rem;
	line-height: 2;
}

.people_sec01{
	padding: 18rem 0 12rem;
}
.people_item01+.people_item01{
	margin-top: 12rem;
}
.people_item01{
	display: flex;
	justify-content: space-between;
}
.people_item01 dt{
	width: 55rem;
	margin-left: -20rem;
}
.people_item01 dd{
	width: 60rem;
	position: relative;
}
.eng_style{
	position: absolute;
	left: -2rem;
	bottom: 102%;
	width: 17.4rem;
}
.eng_episode{
	position: absolute;
	left: -2rem;
	bottom: 102%;
	width: 12.8rem;
}
.eng_future img{
	width: 11.4rem;
	margin: 1rem 0 1rem -2rem;
}
.people_item01 .ttl{
	font-size: 2.8rem;
	line-height: 1.64;
	letter-spacing: .1em;
	color: #005ADC;
	margin-bottom: 3rem;
}

.people_item01.rt{
	flex-direction: row-reverse;
}
.people_item01.rt dt{
	margin-left: 0;
	margin-right: -20rem;
}
.people_item01.big{
	display: grid;
}
.people_item01.big dt{
	width: auto;
	margin: 0 0 2rem;
}
.people_item01.big dd{
	width: auto;
}

.people_sec02{
	padding: 6.5rem 0 5rem;
	background: url(../img/people_ns/bg02.jpg)no-repeat;
	background-size: 100% 100%;
	margin-bottom: 5rem;
}
.eng_schedule img{
	width: 29.2rem;
}

.eng_career_step img{
	width: 38.4rem;
}

.people_sec02_box{
	background: #fff;
	margin: 2.4rem 9rem 0 -6rem;
	padding: 6rem;
	position: relative;
}

@media screen and (max-width: 1299px) {
	.people_sec02_box {
		margin-right: 25rem;
	}
}

.people_sec02_list li{
	position: relative;
}
.people_sec02_list li+li{
	margin-top: 6rem;
}
.people_sec02_list li+li:before{
	content: '';
	position: absolute;
	left: 16rem;
	bottom: calc(100% + 1.7rem);
	transform: translateX(-50%);
	width: 1.9rem;
	height: 1.9rem;
	background: url(../img/people_ns/arrow.svg)no-repeat center center;
	background-size: 100% auto;
}
.people_sec02_list dl{
	display: flex;
}
.people_sec02_list dt{
	width: 16rem;
	font-size: 1.8rem;
	line-height: 1.33;
	font-weight: 500;
	letter-spacing: .1em;
	color: #005ADC;
	border-right: 1px solid #373737;
}
.people_sec02_list dd{
	display: flex;
	align-items: center;
	width: calc(100% - 16rem);
	padding-left: 4rem;
	font-size: 1.6rem;
	line-height: 1.75;
}
.people_sec02_list dt span{
	display: block;
	font-size: 3.3rem;
	font-weight: bold;
}
.people_sec02_img{
	position: absolute;
	left: 100%;
	bottom: 6rem;
	width: 30.6rem;
}

.people_sec02.is-career .people_sec02_box {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-right: 0;
	padding-right: 0;
}

.people_sec02.is-career .people_sec02_list {
	width: calc(100% - 30.6rem);
	padding-right: 2rem;
}

.people_sec02.is-career .people_sec02_list dt {
	font-size: 2.4rem;
}

.people_sec02.is-career .people_sec02_list dt span {
	display: inline-block;
}

.people_sec02.is-career .people_sec02_img {
	position: relative;
	left: 0;
	bottom: 0;
}

.people_sec03{
	background: url(../img/people_ns/bg03.jpg)no-repeat;
	background-size: 100% 100%;
	color: #fff;
	padding: 8.5rem 0;
}
.people_sec03_item{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.people_sec03_item dt{
	width: 34rem;
}
.people_sec03_item dd{
	width: calc(100% - 34rem);
}
.people_sec03_item dt img{
	width: 26.7rem;
}

.people_note{
	text-align: right;
	padding: 2.5rem 0 9rem;
	font-size: 1.6rem;
}

.people_other{
	background: rgba(191,213,246,.35);
	color: #fff;
	padding: 5.5rem 0 6rem;
	margin-bottom: 2rem;
	position: relative;
}
.people_other_hd{
	position: absolute;
	left: 50%;
	top: 0;
	z-index: 2;
	transform: translate(-50%,-50%);
	width: 18.4rem;
}
.people_other_list{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	grid-gap: 3.5rem 4.4rem;
}
.people_other_list li{
	width: 22.4rem;
}
.people_other_list a{
	display: block;
	opacity: 1;
}
.people_other_list a.is_active{
	pointer-events: none;
}
.people_other_list .img_box{
	padding-top: 61.43%;
}
.people_other_list a.is_active .img_box:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.25);
	z-index: 9;
}
.people_other_list .name{
	margin-top: -1px;
	position: relative;
	z-index: 9;
	font-size: 1.2rem;
	font-weight: 400;
	color: #fff;
	padding: 0 2.8rem;
	display: flex;
	align-items: center;
	height: 5rem;
	background: url(../img/people_ns/bg_name.jpg)no-repeat right center;
	background-size: 100% 100%;
}
.people_other_list .name span{
	font-size: 1.75rem;
}

.caps{
  text-align: right;
  padding-top: 1.5em;
}

/* 20251119 mito_3min.html */
.teaser_bg03 {
	position: relative;
	background: url(../img/mito_3min/bg_color.jpg)no-repeat left 10rem center;
	background-size: calc(100% - 10rem) 100%;
	color: #fff;
}
.teaser_bg03 .teaser_bg03_ban {
	position: relative;
	padding-right: 2rem;
}
.teaser_ttl2 {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 9;
	max-width: 75rem;
	text-align: center;
}
.teaser_ttl2 .jap {
	padding: 3.4rem 3rem;
	background: linear-gradient(90deg, #00AAE6 0%, #005ADC 50%, #003CBE 70%, #B63A97 90%);
	font-size: 6.6rem;
	letter-spacing: .1em;
	color: #fff;
	display: block;
	text-align: center;
}

.teaser_ttl2 .jap br {
	display: none;
}

@media screen and (max-width: 1379px) {
	.teaser_ttl2 .jap {
		font-size: 5.6rem;
	}

	.teaser_ttl2 .jap br {
		display: block;
	}
}

.teaser_ttl2 .eng {
	position: absolute;
	top: 0;
	left: -8rem;
	transform: translateY(-50%);
	width: 40.8rem;
}
.teaser_txt {
	padding: 3.2rem 0 3.2rem 8rem;
	margin: 0 auto;
	max-width: 75rem;
	line-height: 1.777;
	font-size: 1.8rem;
	font-weight: 500;
}

.mito_3min_wrap {
	padding: 0 0 6.5rem;
}

.mito_3min_hd {
	margin-bottom: 4.5rem;
	padding: 8rem 0 0 2.5rem;
	border-left: 2px solid #00A0FF;
	letter-spacing: 0.1em;
	color: #1B1C80;
	font-size: 4.5rem;
}

.mito_3min_sec01 {
	padding: 0 0 10rem;
	background: url(../img/mito_3min/bg_sec01.png)no-repeat right bottom;
	background-size: 44rem;
}

.mito_3min_list {
	display: flex;
	flex-wrap: wrap;
	gap: 4rem;
	align-items: flex-start;
}
.mito_3min_list.align_center {
	align-items: center;
}
.mito_3min_list.align_end {
	align-items: flex-end;
}
.mito_3min_list .item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 2.5rem 0;
	position: relative;
	z-index: 2;
	padding: 3.5rem 3rem 3rem;
	width: calc(50% - 2rem);
	min-height: 34rem;
	line-height: 1.7778;
	font-size: 1.8rem;
	font-weight: 500;
}
.mito_3min_list .item:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
}
.mito_3min_list .title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	line-height: 1.3;
	font-size: 2.9rem;
}
.mito_3min_list .title .icon img {
	width: auto;
	height: 10rem;
}
.mito_3min_list .title .data {
	color: #005ADC;
	font-size: 4.2rem;
}
.mito_3min_list .title .data .small {
	font-size: 3rem;
}

.mito_3min_list .title .data small {
	font-size: 3.8rem;
}

.mito_3min_list .sex_ratio {
	display: flex;
	gap: 0 1.2rem;
}
.mito_3min_list .sex_ratio li {
	display: flex;
	align-items: center;
	gap: 0 0.3rem;
	color: #005ADC;
	font-size: 4.5rem;
}
.mito_3min_list .sex_ratio li:before {
	content: "";
	line-height: 1;
	letter-spacing: 0.1em;
	writing-mode: tb-rl;
	writing-mode: vertical-lr;
	color: #333;
	font-size: 2.2rem;
}
.mito_3min_list .sex_ratio .male:before {
	content: "男性";
}
.mito_3min_list .sex_ratio .female:before {
	content: "女性";
}
.mito_3min_list .sex_ratio li .small {
	font-size: 3.4rem;
}
.mito_3min_list .sex_ratio li .per {
	font-size: 2.4rem;
}

.mito_3min_list .tit {
	margin-bottom: 0.5rem;
	font-weight: 700;
}
.mito_3min_list .number li {
	padding-left: 1em;
	text-indent: -1em;
}

.mito_3min_sec01 .mito_3min_list .item:before {
	opacity: 0.15;
	background: linear-gradient(160deg, #0078FF 10%, #00FFE6 110%);
}
.mito_3min_sec01 .mito_3min_list.row2 .item:nth-child(1) {
	margin-top: 4rem;
}

.mito_3min_sec02 {
	position: relative;
	z-index: 2;
	padding: 0 0 10rem;
}
.mito_3min_sec02:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	opacity: 0.4;
	background: linear-gradient(160deg, #46AAFF 10%, #AA82E6 110%);
}
.mito_3min_sec02 .mito_3min_hd {
	border-color: #AA5AC8;
}
.mito_3min_sec02 .mito_3min_list .item,
.mito_3min_sec04 .mito_3min_list .item {
	background: #fff;
}
.mito_3min_sec02 .mito_3min_list .item + .item,
.mito_3min_sec03 .mito_3min_list .item + .item,
.mito_3min_sec04 .mito_3min_list .item + .item {
	margin-top: 4rem;
}

.mito_3min_sec03 {
	padding: 0 0 10rem;
	background: url(../img/mito_3min/bg_sec03.png)no-repeat right bottom;
	background-size: 44rem;
}
.mito_3min_sec03 .mito_3min_list .item:before {
	opacity: 0.15;
	background: linear-gradient(160deg, #41B4FF 10%, #FFAAF0 110%);
}
.mito_3min_sec03 .mito_3min_hd {
	border-color: #F06E96;
}
.mito_3min_sec03 .mito_3min_list .item + .item {
	margin-top: 4rem;
}

.mito_3min_sec04 {
	position: relative;
	z-index: 2;
	padding: 0 0 10rem;
}
.mito_3min_sec04:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	opacity: 0.4;
	background: linear-gradient(160deg, #00BEFF 10%, #8CDCB4 110%);
}
.mito_3min_sec04 .mito_3min_hd {
	border-color: #1EBE96;
}



/*.people_wrap .common_txt,
.people_wrap .common_txt p{
	font-size: 1.8rem;
}*/
