@charset "UTF-8";
/*==========================================
  Common
==========================================*/
/* base
==================================*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
ul,
li,
ol,
dl,
dd,
tr {
  font-size: 16px;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

a {
  color: #182F49;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  text-decoration: none;
}

a.tel {
  pointer-events: none;
  cursor: default;
}

a.hover_line,
.hover_line a,
a.hover_line,
a .hover_line {
  background: linear-gradient(currentColor,currentColor) left bottom no-repeat;
  background-size: 0 1px;
  transition: background-size .5s ease;
}

a.hover_line:hover,
.hover_line a:hover,
a:hover .hover_line {
  background-size: 100% 1px;
}

.hover_opacity:hover {
  opacity: .7;
}

.hover_scale img {
  transition: transform .5s ease;
}

.hover_scale:hover img {
  transform: scale(1.1);
}

.sp {
  display: none !important;
}
/* main
==================================*/
main {
  display: block; /*IE対策*/
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100dvh;
  left: 0;
  top: 0;
  z-index: 998;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s ease, visibility .4s ease;
}

.no_move .overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#AllBox {
  width: 100%;
  word-break: break-word;
  overflow: hidden;  
  background: #EEF3F6;
}

.anchor_wrap {
  position: relative;
}

.anchor_wrap .anchor {
  position: absolute;
  z-index: -1;
  top: -116px;
}

/*　Retina対応時のCSS↓　*/
/* header
==================================*/
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: none;
  z-index: 19;
  transition: background .3s;
}
header.scroll{
  position: fixed;
  background: #fff;
}
.header_inner{
  padding: 23px 27px 23px 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo{
  font-size: 0;
  width: 320px;
}
header.scroll .logo{
  background: url(../images/common/logo_blue.svg)no-repeat;
  background-size: 100% auto;
}
header.scroll .logo img{
  opacity: 0;
}
.header_right{
  display: flex;
  align-items: center;
  grid-gap: 15px;
}
.header_entry a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 172px;
  height: 50px;
  border-radius: 10px;
  background: #2B62DB;
  border: 1px solid #2B62DB;
  color: #fff;
  font-size: 20px;
  letter-spacing: .03em;
}
.header_entry a:hover{
  background: #fff;
  color: #2B62DB;
}

header #menu-toggle {
  transition: opacity .3s;

  position: relative;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #fff;
  transition: border .3s;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
}
header #menu-toggle:hover,
header.scroll #menu-toggle {
  border-color: #2B62DB;
}
header #menu-toggle .line {
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: #2B62DB;
  position: relative;
  z-index: 3;
  display: block;
  transition: transform .5s;
}
header #menu-toggle .line.show:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

header #menu-toggle .line.show:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
}

header .g-navi {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 998;
  width: 100%;
  height: 100dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .5s ease, visibility .5s ease;
  padding: 115px 0;
  display: none;
  background: #2B62DB;
}
header .g-navi:before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 857px;
  background: url(../images/common/icon_nav.png)no-repeat top -70px left 57% #2B62DB;
  background-size: 1508px auto;
}
header.open .g-navi {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav_icon{
  position: absolute;
  left: 50%;
  top: -70px;
  transform: translateX(-50%);
  width: 1508px;
  pointer-events: none;
}
.nav_list .column{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.g-navi .nav_list{
  grid-gap: 20px;
}
.g-navi .nav_list ul{
  grid-gap: 36px;
}
.g-navi .nav_list a{
  color: #fff;
}
.g-navi .subBox02{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-gap: 16px 36px;
}
.g-navi .parentLi .parentA{
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(209,218,223,.5);
  display: block;
  min-width: 300px;
}
.g-navi .parentA{
  font-size: 17px;
}
.g-navi .subLi02 a,
.g-navi .subLi>a{
  font-size: 16px;
}

.g-navi .common_bottom_list{
  display: flex;
  flex-wrap: wrap;
  margin-top: 65px;
  grid-gap: 20px;
}
.g-navi .common_bottom_list li{
  width: calc(50% - 10px);
}
.g-navi .common_bottom_list li:last-of-type{
  width: 100%;
}

.g-navi .common_bottom_list a{
  height: 95px;
  padding: 0 75px 0 32px;
}
.g-navi .link_eng_box{
  font-size: 25px;
}
.g-navi .link_jap_box{
  font-size: 16px;
}
.g-navi .link_arrow{
  width: 30px;
  height: 30px;
  right: 25px;
}
.g-navi .link_arrow img{
  margin: auto 9px;
  width: 12px;
}
.g-navi .link_arrow img.arrow_before {
  transform: translate(-30px);
}
.g-navi .link_arrow img.arrow_after {
  transform: translate(-30px);
}
@media screen and (max-width: 1199px) {
  .g-navi .parentLi .parentA{
    min-width: auto;
  }
  .g-navi .parentA{
    font-size: 16px;
  }
  .g-navi .subLi02 a,
  .g-navi .subLi>a{
    font-size: 15px;
  }
  .g-navi .subBox02{
    grid-gap: 16px 20px;
  }
}
@media screen and (max-width: 959px) {
  .g-navi .parentA{
    font-size: 15px;
  }
  .g-navi .subLi02 a,
  .g-navi .subLi>a{
    font-size: 13px;
  }
  .g-navi .common_bottom_list li{
    width: 100%;
  }
}


/* footer
==================================*/
footer{
  position: relative;
  z-index: 3;
}
.common_bottom{
  border-top-left-radius: 70px;
  padding: 100px 0 135px;
  background: #2B62DB;
  color: #fff;
  position: relative;
  z-index: 3;
}
.common_bottom_icon{
  position: absolute;
  left: calc(50.5% - 762px);
  top: -70px;
  width: 1523px;
  pointer-events: none;
}
.common_bottom_txt{
  font-size: 35px;
  line-height: 1.8;
  font-weight: bold;
  letter-spacing: .08em;
  margin-bottom: 40px;
  text-align: center;
}
.common_bottom_list{
  display: grid;
  grid-gap: 20px;
}
.common_bottom_list a{
  background: rgba(40,60,164,.93);
  color: #fff;
  border-radius: 20px;
  height: 170px;
  padding: 0 160px 0 83px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  line-height: 1.2;
}
.common_bottom_list a.white{
  background: #fff;
  color: #2B62DB;
}
.link_eng_box{
  font-size: 50px;
  font-weight: 700;

  display: block;
  overflow: hidden;
  position: relative;
}
.link_jap_box{
  font-size: 18px;
  font-weight: bold;

  display: block;
  overflow: hidden;
  position: relative;
}
.link_arrow{
  overflow: hidden;
  display: flex;
  position: absolute;
  right: 53px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
}
.common_bottom_list a.white .link_arrow{
  background: #2B62DB;
}
.link_arrow img{
  margin: auto 19px;
  width: 21px;
}

.link_eng_box .eng {
  display: block;
  position: relative;
  transform: translateY(0);
  transition: transform .3s ease;
}
.link_eng_box .eng:after {
  content: attr(data-text);
  display: block;
  position: absolute;
  transform: translateY(100%);
  top: 0;
  left: 0;
  transition: transform .3s ease;
}

.link_jap_box .jap {
  display: block;
  position: relative;
  transform: translateY(0);
  transition: transform .4s ease;
}
.link_jap_box .jap:after {
  content: attr(data-text);
  display: block;
  position: absolute;
  transform: translateY(102%);
  top: 0;
  left: 0;
  transition: transform .3s ease;
}

.link_arrow img.arrow_before {
  opacity: 1;
  transform: translate(-60px);
  transition: transform .25s .1s,opacity .15s ease .1s;
}
.link_arrow img.arrow_after {
  opacity: 0;
  transform: translate(-60px);
  transition: transform .25s,opacity .15s ease;
}

a:hover .link_eng_box .eng {
  transform: translateY(-100%);
}
a:hover .link_arrow img.arrow_before {
  opacity: 0;
  transform: translate(0)!important;
  transition: transform .25s,opacity .15s ease;
}
a:hover .link_arrow img.arrow_after {
  opacity: 1;
  transform: translate(0)!important;
  transition: transform .25s .1s,opacity .15s ease .1s;
}
a:hover .link_jap_box .jap {
  transform: translateY(-100%);
}

footer{
  background: #EEF3F6;
}
.footer_inner{
  padding: 85px 0 45px;
  position: relative;
}
.nav_list{
  display: flex;
  justify-content: space-between;
}
.nav_list ul{
  display: flex;
  flex-direction: column;
  grid-gap: 16px;
  letter-spacing: .06em;
  white-space: nowrap;
}
.nav_line{
  border-left: 1px solid #ccc;
}
.parentA{
  font-size: 15px;
  line-height: 24px;
  font-weight: bold;
  white-space: nowrap;
}
.subBox{
  display: grid;
  grid-gap: 16px;
  margin-top: 24px;
}
.subBox02{
  grid-gap: 11px;
}
.subLi>a{
  color: #5D6A79;
  font-size: 14px;
  line-height: 24px;
}
.subLi02{
  margin-top: 11px;
}
.subLi02 a{
  color: #5D6A79;
  font-size: 14px;
  line-height: 24px;
  margin-left: 1em;
}

@media screen and (max-width: 1049px) {
  .nav_list ul{
    letter-spacing: 0;
  }
  .parentA{
    font-size: 14px;
  }
  .subLi02 a,
  .subLi>a{
    font-size: 13px;
  }
}
@media screen and (max-width: 959px) {
  .nav_list ul{
    letter-spacing: -0.02em;
  }
  .parentA{
    font-size: 12px;
  }
  .subLi02 a,
  .subLi>a{
    font-size: 12px;
  }
  .common_bottom_list a{
    padding: 0 140px 0 60px;
  }
}

.footer_dl{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 75px;
}
.footer_dt .logo img{
  width: 185px;
}
.footer_addr{
  font-size: 15px;
  line-height: 2.13;
  margin-top: 12px;
  letter-spacing: .06em;
}

.footer_btn a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 215px;
  height: 50px;
  border-radius: 10px;
  background: url(../images/common/icon_target.svg)no-repeat right 9px top 9px #9DB7CD;
  background-size: 9px auto;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  letter-spacing: .06em;
}
.copy{
  font-size: 12px;
  margin-top: 28px;
  text-align: right;
  letter-spacing: .06em;
}
/* MV
==================================*/
.main_visual {}


/* teaser
==================================*/
.teaser {
  width: 100%;
  position: relative;
  z-index: 1;
  padding-top: 30px;
  height: 583px;
  background: url(../images/news/bg_teaser.jpg)no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}
.teaser:before{
  content: '';
  z-index: 1;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 270px;
  height: 19.28vw;
  background: url(../images/common/bg_linear.png)no-repeat;
  background-size: 100% 100%;
}

.page_title{
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: .2em;
  color: #fff;
}
.page_title .eng{
  display: block;
  font-size: 90px;
  line-height: 1.2;
  letter-spacing: 0;
}

.teaser_icon{
  position: absolute;
  z-index: 1;
}
.teaser_icon01{
  right: 50%;
  top: -26px;
  width: 122px;
}
.teaser_icon02{
  right: -40px;
  top: 169px;
  width: 90px;
}
.teaser_icon03{
  left: -40px;
  top: 292px;
  width: 157px;
}
.teaser_icon04{
  right: calc(50% + 135px);
  top: 468px;
  width: 138px;
}
.teaser_icon05{
  right: 52px;
  top: 460px;
  width: 163px;
}

/*==================================
  Breadcrumb
==================================*/

.breadcrumb {
  padding: 120px 0 50px;
  width: 100%;
  text-align: right;
}

.breadcrumb ul {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  font-size: 12px;
}

.breadcrumb ul li {
  word-break: keep-all;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  position: relative;
  color: #8B96A2;
  font-weight: 500;
}

.breadcrumb ul li + li:before {
  content: '-';
  z-index: 2;
  width: 20px;
  text-align: center;
  display: inline-block;
  text-indent: 0;
  color: #8B96A2;
  position:absolute;
  top:0;
  left:0;
}

.breadcrumb ul li + li {  
  padding:0 0 0 20px;
}

.breadcrumb ul li:last-child {
  word-break: break-word;
  white-space: unset;
}

.breadcrumb ul li a{
  color: #8B96A2;
  text-indent: 0;
}

/* heading
==================================*/
.heading_large {}

.heading_medium {}

.heading_small {}

/* links
==================================*/
.btn_links {}


/*================================
	pageTop
=================================*/
#pageTop {
  opacity: 0;
  position: absolute;
  right: 23px;
  top: 25px;
  z-index: 888;
  transition: 0.3s;
}
#pageTop.active {
  opacity: 1;
}
#pageTop a {
  display: block;
  width: 90px;
}
#pageTop a:hover {
  opacity: 0.7;
}

/*================================
	.test-container
=================================*/
.test-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 200px 0;
}
.test-container .box {
  width: 200px;
  height: 200px;
  background-color: red;
}
.test-container .box .text {
  font-size: 16px;
  color: #fff;
}

/* loader
==================================*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1001;
}

/* Animation
==================================*/
.c-anim-up {
  transform: translate(0, 30px);
  opacity: 0;
  transition: 0.3s ease;
}

.move {
  transform: translate(0, 0);
  opacity: 1;
}

/*==================================
  Component
==================================*/
html {
  overflow: auto;
}
html.no_move {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}
img[src$=".png"], img[src$=".jpg"] {
  backface-visibility: hidden;
}

.container02,
.container {
  width: 100%;
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
@media (max-width: 799px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.row .col {
  position: relative;
  width: 100%;
  min-height: 1px;
  box-sizing: border-box;
}
.row .col.col_4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

/*==================================
  リスト系
==================================*/
.cate_wrap{
  display: flex;
  align-items: center;
  margin: 50px 0;
  grid-gap: 25px;
}
.cate_txt{
  color: #2B62DB;
  font-size: 19PX;
}
.cate_list{
  display: flex;
  flex-wrap: wrap;
}
.cate_list li{
  padding-right: 15px;
  border-right: 1px solid #BBC1C4;
  margin-right: 15px;
  font-size: 15px;
  line-height: 1;
}
.cate_list li:last-of-type{
  border-right: 0;
}
.cate_list a{
}

.news_ul {
  display: grid;
  grid-gap: 20px;
}

.news_ul .news_li {
}

.news_ul .news_li > a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 33px 80px 33px 40px;
  border-radius: 20px;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
  background: url(../images/common/arrow_right_blue.svg)no-repeat right 32px center #fff;
  background-size: 22px auto;
}
.news_ul .news_li > a:hover{
  background-position: right 26px center;
}

.news_ul .news_li > a .date {
  font-size: 14px;
  letter-spacing: .03em;
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  min-width: 90px;
  color: #667381;
}

.news_ul .news_li > a .cate {
  padding: 0 10px;
  height: 24px;
  background: #2B62DB;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 13px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .03em;
  margin-right: 25px;
  gap: 6px;
  min-width: 115px;
}

.news_ul .news_li > a .title {
  font-size: 17px;
  letter-spacing: .06em;
  line-height: 1.5;
  font-weight: bold;
  background: linear-gradient(#182F49, #182F49) 0 100%/0 1px no-repeat;
  transition: background 0.4s ease;

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.news_ul .news_li > a:hover .title {
  background-size: 100% 1px;
}

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

}

/*==================================
  ページナビ
==================================*/
/*==================================
  ページナビ
==================================*/
.page_navigation .wp-pagenavi .nav-links{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 70px 0 0;
}
.page_navigation .wp-pagenavi .page-numbers {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0;
  border: 0;
  width: 47px;
  height: 47px;
  border-radius: 13px;
  color: #11243A;
  background: #fff;
  margin: 0 7px;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
}
.page_navigation .wp-pagenavi .page-numbers.dots{
  border-radius: 0;
  width: auto;
  background: none;
  pointer-events: none;
  color: #56453B;
  box-shadow: none;
  background: none;
  margin: 0 10px;
  border: 0;
}
.page_navigation .wp-pagenavi .page-numbers.prev,
.page_navigation .wp-pagenavi .page-numbers.next{
  font-size: 0;
}

.page_navigation .wp-pagenavi .page-numbers.prev:before,
.page_navigation .wp-pagenavi .page-numbers.next:after {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  background: url(../images/common/next.svg) center center no-repeat;
  background-size: auto 12px;
}

.page_navigation .wp-pagenavi .page-numbers.prev:before {
  transform: scaleX(-1);
}

.page_navigation .wp-pagenavi .page-numbers.next:hover:after,
.page_navigation .wp-pagenavi .page-numbers.prev:hover:before {
  background: url(../images/common/next_hover.svg) center center no-repeat;
  background-size: auto 12px;
}

.page_navigation .wp-pagenavi .page-numbers:not(.current):hover,
.page_navigation .wp-pagenavi .current:not(.current):hover,
.page_navigation .wp-pagenavi > .page.current,
.page_navigation .wp-pagenavi .current.current {
  background: #2B62DB;
  color: #fff;
}

.page_navigation .wp-pagenavi .first,
.page_navigation .wp-pagenavi .last {
  display: none;
}


/*news*/
.news_wrap{
  position: relative;
}
.news_wrap .wrap_bg{
  background: url(../images/news/bg_left.png)no-repeat left -136px top 1061px,
  url(../images/news/bg_right.png)no-repeat right -80px top 905px;
  background-size: 280px auto,223px auto;
}

/*news_detail*/
.news_detail_wrap{
  position: relative;
}
.news_detail_wrap .wrap_bg{
  background: url(../images/news/bg_left.png)no-repeat left -136px top 1061px,
  url(../images/news/bg_right.png)no-repeat right -80px top 905px;
  background-size: 280px auto,223px auto;
}
.white_box{
  margin-top: -50px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
  padding: 90px;
}
.news_head {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.news_head .date {
  font-size: 14px;
  letter-spacing: .03em;
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  min-width: 90px;
  color: #667381;
}
.news_head .cate {
  padding: 0 10px;
  height: 24px;
  background: #2B62DB;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 13px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .03em;
  margin-right: 25px;
  gap: 6px;
  min-width: 115px;
}
.news_head .title{
  margin-top: 19px;
  width: 100%;
  font-size: 25px;
  line-height: 1.44;
  letter-spacing: .06em;
  font-weight: bold;
}

.news_body p{
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: .06em;
}
.news_body p+p{
  margin-top: 33px;
}
.news_body figure{
  display: block;
  margin: 0;
}
.news_body figure+p,
.news_body p+figure{
  margin-top: 60px;
}


.pager_wrap {
  width: 100%;
  max-width: 534px;
  margin: 67px auto 0;
}
.pager_wrap ul {
  position: relative;
  text-align: center;
}

.pager_wrap ul li {
  line-height: 1;
}

.pager_wrap ul li a:hover {
  opacity: 0.7;
}

.pager_wrap ul .prev, 
.pager_wrap ul .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
}

.pager_wrap ul .prev {
  left: 0;
}

.pager_wrap ul .next {
  right: 0;
}

.pager_wrap ul .prev a, 
.pager_wrap ul .next a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 47px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .03em;
  position: relative;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
  padding-right: 15px;
  opacity: 1!important;
}
.pager_wrap ul .prev a{
  padding: 0 0 0 15px;
}

.pager_wrap ul .prev a:before,
.pager_wrap ul .next a:after {
  width: 15px;
  height: 100%;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 16px;
  transition: all .3s;
}
.pager_wrap ul .next a:after {
  left: auto;
  right: 16px;
}

.pager_wrap ul .prev a:before {
  background: url(/images/common/arrow_right_black.svg) center center no-repeat;
  background-size: auto 12px;
  transform: rotate(180deg);
}

.pager_wrap ul .next a:after {
  background: url(/images/common/arrow_right_black.svg) center center no-repeat;
  background-size: auto 12px;
}

.pager_wrap ul .prev a:hover:before {
  left: 10px;
}
.pager_wrap ul .next a:hover:after {
  right: 10px;
}

@media screen and (max-width: 1299px) {
  .white_box{
    padding: 90px 45px;
  }
}

/*grads*/
.hd_m{
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
  margin-bottom: 30px;
}
.hd_m .eng{
  font-size: 17px;
  line-height: 1.2;
  color: #2B62DB;
}
.hd_m .jap{
  font-size: 32px;
  font-weight: bold;
  letter-spacing: .06em;
}
.grads_wrap{
  position: relative;
}
.grads_wrap .wrap_bg{
  background: url(../images/news/bg_left.png)no-repeat left -136px top 1061px,
  url(../images/grads/bg_right.png)no-repeat right -78px top 905px;
  background-size: 280px auto,532px auto;
}
.grads_wrap .teaser {
  background: url(../images/grads/bg_teaser.jpg)no-repeat center center;
  background-size: cover;
}
.grads_table{
  width: 100%;
  border-top: 1px solid #D1DADF;
}
.grads_table th,
.grads_table td{
  font-size: 16px;
  line-height: 2.2;
  padding: 12px 0;
  font-weight: 500;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #D1DADF;
}
.grads_table th{
  padding: 12px 6px;
  width: 168px;
}
.dot_ul li{
  font-size: 16px;
  line-height: 2.2;
  padding-left: 1em;
  position: relative;
}
.dot_ul li:before{
  content: '・';
  position: absolute;
  left: 0;
  top: 0;
}
.grads_table p{
  font-size: 16px;
  line-height: 2.2;
}
.grads_table_list{
  display: flex;
  grid-gap: 45px;
}
.grads_btn{
  text-align: center;
  margin-top: 60px;
}
.btn_link01 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 193px;
  height: 47px;
  background: #2B62DB;
  color: #fff;
  border: 1px solid #2B62DB;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .03em;
  text-align: center;
  margin: auto;
}
.btn_link01:hover {
  opacity: 1;
  color: #2B62DB;
  background: #fff;
}
.grads_btn .btn_link01{
  width: 400px;
  height: 80px;
  border-radius: 10px;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0;
}

.grads_table_list.space_between{
  justify-content: space-between;
}
.grads_table_list.space_between .grads_table_list{
  justify-content: space-between;
  width: 68%;
}

.sp02{
  display: none;
}
@media screen and (max-width: 1122px) {
  .grads_table_list{
    grid-gap: 25px;
  }
  .grads_table th{
    width: 108px;
  }
  .grads_table th,
  .grads_table td,
  .dot_ul li,
  .grads_table p{
    font-size: 15px;
  }
}
@media screen and (max-width: 959px) {
  .grads_table_list{
    grid-gap: 15px;
  }
  .grads_table th{
    width: 85px;
  }
  .grads_table th,
  .grads_table td,
  .dot_ul li,
  .grads_table p{
    font-size: 14px;
  }
  .sp02{
    display: block;
  }
  .grads_table_list.space_between .grads_table_list{
    justify-content: space-between;
    width: 64%;
  }
}

/*environment*/
.environment_wrap .teaser {
  background: url(../images/environment/bg_teaser.jpg)no-repeat center center;
  background-size: cover;
}
.environment_stage_hd{
  font-size: 15px;
  font-weight: bold;
  letter-spacing: .06em;
  margin-bottom: 34px;
  color: #2B62DB;
}
.environment_stage_hd .eng{
  font-size: 55px;
  line-height: 1.2;
  font-weight: 600;
  margin-right: 15px;
}
.environment_item{
  margin-top: 72px;
  display: grid;
  grid-gap: 25px;
}
.environment_item dl{
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
  grid-gap: 50px;
  grid-gap: 4.3%;
  display: flex;
  align-items: center;
}
.environment_item dt{
  width: 375px;
  width: 33%;
}
.environment_item dd{
  width: calc(100% - 375px - 50px);
  width: 62.7%;
}
.environment_item .ttl{
  font-size: 27px;
  font-weight: bold;
  margin-bottom: 6px;
}
.environment_item .txt{
  font-size: 16px;
  line-height: 2;
  letter-spacing: .06em;
}
@media screen and (max-width: 1023px) {
  .environment_item .ttl{
    font-size: 20px;
  }
  .environment_item .txt{
    font-size: 14px;
    line-height: 2;
  }
}

/*entry*/
.entry_wrap{
  position: relative;
}
.entry_wrap .wrap_bg{
  background: url(../images/entry/bg_left.png)no-repeat left -136px top 1481px,
  url(../images/entry/bg_right.png)no-repeat right -78px top 1519px;
  background-size: 280px auto,459px auto;
}
.entry_wrap .teaser {
  background: url(../images/entry/bg_teaser.jpg)no-repeat center center;
  background-size: cover;
}
.entry_notes{
  font-size: 16px;
  line-height: 2;
  margin-bottom: 38px;
}
.form_box h2{
  overflow: hidden;
  font-size: 19px;
  font-weight: bold;
  display: flex;
}
.form_box h2 span{
  padding-right: 15px;
  position: relative;
}
.form_box h2 span:before{
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  width: 100vw;
  height: 1px;
  background: #D1DADF;
}
.form_item{
  padding: 30px 0;
  background-image: linear-gradient(to right, #939393 0%, #939393 50%, transparent 50%);
  background-size: 5px 1px;
  background-position: bottom center;
  background-repeat: repeat-x;
  display: flex;
  justify-content: space-between;
}
.form_item dl{
  width: 100%;
}
.form_item dt{
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.need{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  min-width: 45px;
  height: 21px;
  font-size: 13px;
  border-radius: 5px;
  background: #FE5662;
  color: #fff;
  margin-right: 10px;
}
.form_subitem{
  width: calc(50% - 14px);
}

/*==================================
  Contact_reset
==================================*/
#Entry input {
  -webkit-appearance: none;
}
#Entry input[type=text] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}
#Entry input[type=radio] {
  opacity: 0;
  margin: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 1;
}
#Entry input[type=checkbox] {
  opacity: 0;
  margin: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 1;
}
#Entry input::-moz-placeholder,
#Entry textarea::-moz-placeholder  {
  color: #C1C7CB;
}
#Entry input::placeholder,
#Entry textarea::placeholder {
  color: #C1C7CB;
}
#Entry input:-ms-input-placeholder,
#Entry textarea:-ms-input-placeholder {
  color: #C1C7CB;
}
#Entry input::-webkit-input-placeholder,
#Entry textarea::-webkit-input-placeholder {
  color: #C1C7CB;
}
#Entry button,
#Entry input[type=button],
#Entry input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}
#Entry textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  border-radius: 0;
}
#Entry select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 0;
}

/*==================================
  Contact_base
==================================*/
/* input, textarea
--------------------------------*/
/* radio_button
--------------------------------*/
#Entry span.error {
  color: #f00;
  display: block;
  margin: 7px 0 0;
}

#Entry input[type=text]:focus,
#Entry input[type=email]:focus,
#Entry input[type=tel]:focus,
#Entry input[type=search]:focus,
#Entry input[type=url]:focus,
#Entry textarea:focus {
  color: #182F49;
  background-color: #F0F3F5;
}
#Entry .ERR {
  color: #f00;
}
#Entry input[type=text] {
  font-size: 16px;
  line-height: 1.44;
  font-weight: 500;
  padding: 0 24px;
  border: 0;
  background: #F0F3F5;
  color: #182F49;
  width: 100%;
  height: 55px;
  border-radius: 7px;
}
#Entry select {
  font-size: 16px;
  line-height: 1.44;
  font-weight: 500;
  padding: 0 24px;
  border: 0;
  color: #182F49;
  border: 1px solid #D1DADF;
  background: url(../images/entry/select_entry.svg)no-repeat right 20px center #fff;
  background-size: 15px auto;
  width: 100%;
  height: 55px;
  border-radius: 7px;
}

#Entry input[type=checkbox] + span + label,
#Entry input[type=checkbox] + label {
  padding-left: 55px;
  position: relative;
  margin-right: 20px;
  cursor: pointer;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 16px;
  line-height: 2.22;
  font-weight: 500;
}
#Entry input[type=checkbox] + span + label::before,
#Entry input[type=checkbox] + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  background: url(/images/entry/icon_checkbox.svg) center center no-repeat;
  background-size: cover;
}
#Entry input[type=checkbox] + span + label::after,
#Entry input[type=checkbox] + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  background: url(/images/entry/icon_checkbox_checked.svg) center center no-repeat;
  background-size: cover;
  opacity: 0;
}

#Entry input[type=checkbox]:checked + span + label::after,
#Entry input[type=checkbox]:checked + label::after {
  opacity: 1;
}
#Entry input[type=radio] + label {
  padding-left: 54px;
  position: relative;
  margin-right: 20px;
  cursor: pointer;
  width: 240px;
  font-size: 18px;
  line-height: 2.22;
  font-weight: 700;
  display: inline-block;
}
#Entry input[type=radio] + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: url(/images/entry/icon_radio.svg) center center no-repeat;
  background-size: cover;
}
#Entry input[type=radio] + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: url(/images/entry/icon_radio_checked.svg) center center no-repeat;
  background-size: cover;
  opacity: 0;
}

#Entry input[type=radio]:checked + label::after {
  opacity: 1;
}
#Entry textarea {
  font-size: 16px;
  line-height: 1.44;
  font-weight: 500;
  border: 0;
  background: #F0F3F5;
  width: 100%;
  padding: 14px 24px;
  min-height: 355px;
  border-radius: 7px;
  margin-top: 8px;
}
#Entry .submit_area {
  margin-top: 53px;
  text-align: center;
}
#Entry .submit_area span {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  width: 390px;
  background: #2B62DB;
  font-feature-settings: "palt";
  position: relative;
  display: inline-block;
  text-align: center;
  border: 1px solid #2B62DB;
  transition: all 0.3s ease;
  border-radius: 10px;
}
#Entry .submit_area span input[type=submit] {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  width: 100%;
  height: 75px;
}

#Entry .submit_area span:hover {
  background: #fff;
}
#Entry .submit_area span:hover input[type=submit] {
  color: #2B62DB;
}
#Entry .koumoku {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
#Entry .send {
  color: #fff;
  background: #2B62DB;
  font-feature-settings: "palt";
  position: relative;
  display: inline-block;
  text-align: center;
  border: 1px solid #2B62DB;
  transition: all 0.3s ease;


  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  width: 300px;
  border-radius: 10px;
}

#Entry .send input {
  color: #fff;
  cursor: pointer;

  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  width: 300px;
  height: 75px;
  border-radius: 10px;
}
#Entry .send:hover {
  background: #fff;
}
#Entry .send:hover input {
  color: #2B62DB;
}

#Entry .btn_back {
  color: #fff;
  background: #ddd;
  font-feature-settings: "palt";
  position: relative;
  display: inline-block;
  text-align: center;
  border: 1px solid #ddd;
  transition: all 0.3s ease;

  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  width: 300px;
  border-radius: 10px;
}
#Entry .btn_back input {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #182F49;
  cursor: pointer;
  width: 100%;
  height: 75px;
}

#Entry .btn_back:hover {
  background: #fff;
}
#Entry .btn_back:hover input {
  color: #182F49;
}

#Entry .contact_back {
  margin-top: 40px;
  text-align: center;
}
#Entry .contact_back a {
  font-size: 18px;
  font-weight: 700;
  width: 390px;
  height: 75px;
}
@media screen and (min-width: 960px) {
  .sfm3 .entry_notes{
    text-align: center;
  }
}

/*==================================
  Contact
==================================*/

#Entry .agree_area a {
  text-decoration: underline;
}
#Entry .agree_area a:hover{
  text-decoration: none;
}

#Entry table {
  width: 100%;
  table-layout: fixed;
}

#Entry table tr th {
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
  text-align: left;
  width: 260px;
  vertical-align: top;
  padding: 32px 0;

}
#Entry table tr td {
  padding: 15px 0;
}
#Entry table tr td .text02 {
  margin-top: 8px;
}

#Entry .check-list li {
  display: inline-block;
  padding: 10px 0;
}
#Entry .form_wrap > p {
  font-size: 16px;
  line-height: 2;
  text-align: center;
  margin-bottom: 32px;
}

#Entry.sfm2 table tr td {
  padding: 32px 0;
}

#Entry.sfm2 td p {
  overflow-wrap: break-word;
  font-size: 18px;
  line-height: 1.44;
  font-weight: 500;
}

#Entry .send_comp > p {
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
  text-align: center;
}

.graduation{
  display: flex;
  align-items: center;
  grid-gap: 18px;
}
#Entry .graduation select{
  max-width: 263px;
}
.birthday{
  display: flex;
  align-items: flex-start;
  grid-gap: 18px;
}
.birthday .birthday_text{
  height: 55px;
  display: flex;
  align-items: center;
}
#Entry .birthday select{
  background: #F0F3F5;
  border: 0;
  width: 135px;
  max-width: 135px;
}
#Entry .birthday_year select{
  width: 185px;
  max-width: 185px;
}

main#Entry .form_item.is-column dl {
  display: flex;
  align-items: flex-start;
}

main#Entry .form_item.is-column dl dt {
  width: 180px;
  padding-top: 17px;
}

main#Entry .form_item.is-column dl dd {
  width: calc(100% - 180px);
}

main#Entry .address .address_item + .address_item {
  margin-top: 15px;
}

main#Entry .address .address_item {
  display: flex;
  align-items: flex-start;
}

main#Entry .address .address_item .address_title {
  width: 120px;
  padding-top: 17px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 1.5;
}

main#Entry .address .address_item .address_box {
  width: calc(100% - 120px);
}
.phone_box,
.tel_box{
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
main#Entry .phone_box input,
main#Entry .tel_box input{
  max-width: 155px;
}

main#Entry .address select,
main#Entry .phone input[type=text] {
  max-width: 368px;
}

main#Entry .status select {
  max-width: 480px;
}

main#Entry .form_wrap .form_notes {
  font-size: 15px;
  letter-spacing: .03em;
  font-weight: 500;
  line-height: 1.45;
  margin-top: 17px;
}

main#Entry .zip-wrap {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
main#Entry input[type=text].zip {
  max-width: 368px;
  width: 100%;
}

main#Entry .ad_btn {
  margin-left: 20px;
  width: 140px;
  height: 55px;
}

main#Entry .form_wrap .form_box + .form_box{
  margin-top: 30px;
}

main#Entry .documents .form_item {
  display: block;
}

main#Entry .documents .custom_upload_item {
  position: relative;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

main#Entry .documents .custom_upload_item label {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .03em;
}

main#Entry .documents .custom_upload_item label:before {
  width: 190px;
  min-width: 190px;
  height: 55px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  content: 'ファイルの選択';
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .03em;
  background: #2B62DB;
}

main#Entry .documents .custom_upload_item input {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
}

main#Entry .documents p {
  padding-left: 1.3em;
  text-indent: -1.3em;
}

main#Entry .message p {
  margin-bottom: 5px;
}

main#Entry .agree_area {
  margin: 24px 0 0;
  position: relative;
}

main#Entry .agree_area input[type=checkbox] {
  position: absolute;
  top: 0;
  z-index: -1;
}

main#Entry .agree_area a {
  text-decoration: underline;
}

main#Entry .agree_area a:hover {
  text-decoration: none;
}

main#Entry .send_comp {
  text-align: center;
}

main#Entry .send_comp p {
  font-size: 15px;
  line-height: 2;
  letter-spacing: .05em;
  font-weight: 500;
}

main#Entry .invalid_feedback1,
main#Entry .invalid_feedback2 {
  color: #ffe725;
  display: none;
}

main#Entry .form_wrap p{
  font-size: 16px;
  line-height: 2;
  letter-spacing: .05em;
}
.form_item:last-of-type{
  background: none;
}
@media screen and (max-width: 959px) {
  main#Entry .form_item.is-column dl dt {
    width: 150px;
  }
  main#Entry .form_item.is-column dl dd {
    width: calc(100% - 150px);
  }
}

/*about*/
.about_wrap .teaser {
  background: url(../images/about/bg_teaser.jpg)no-repeat center center;
  background-size: cover;
}
.about_list{
  display: grid;
  grid-gap: 20px;
  margin-top: -35px;
}
.about_list a{
  display: block;
  border-radius: 20px;
  background: url(../images/common/arrow_right_blue.svg)no-repeat right 50px center #fff;
  background-size: 22px auto;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
  padding: 30px;
}
.about_list a:hover{
  background-position: right 40px center;
}
.about_list dl{
  display: flex;
  align-items: center;
  grid-gap: 45px;
}
.about_list dt{
  width: 267px;
}
.about_list dd{
  width: calc(100% - 45px - 267px);
}
.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);
}
.about_list .img_box{
  border-radius: 15px;
  padding-top: 58%;
  padding-top: 155px;
}
.about_list_jap{
  font-size: 17px;
  font-weight: bold;
  color: #2B62DB;
  margin-bottom: 12px;
}
.about_list_eng{
  font-size: 42px;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 959px) {
  .about_list dl{
    grid-gap: 25px;
  }
  .about_list a{
    background-position: right 30px center;
  }
  .about_list a:hover{
    background-position: right 22px center;
  }
  .about_list_jap{
    font-size: 16px;
  }
  .about_list_eng{
    font-size: 32px;
  }
}

/*minute*/
.minute_wrap .teaser {
  background: url(../images/minute/bg_teaser.jpg)no-repeat center center;
  background-size: cover;
}
.minute_list{
  display: flex;
  grid-gap: 10px 0;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: -35px;
}
.minute_list li{
  position: relative;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
  width: calc(33.33% - 7px);
}
.minute_list li:nth-of-type(1),
.minute_list li:nth-of-type(2){
  width: calc(50% - 5px);
}
.minute_list_ttl{
  position: absolute;
  left: 15px;
  top: 32px;
  transform: translateY(-50%);
  max-width: calc(100% - 30px);
  min-width: 146px;
  padding: 1px 15px;
  background: #2B62DB;
  color: #fff;
  border-radius: 8px;
  font-size: 22px;
  line-height: 1.5;
  font-weight: bold;
  display: flex;
  justify-content: center;
}
.minute_list_date{
  position: absolute;
  right: 15px;
  top: 32px;
  transform: translateY(-50%);
  font-size: 12px;
  letter-spacing: .08em;
  color: #5D6A79;
}
.minute_list_mark{
  position: absolute;
  right: 25px;
  top: 22px;
  width: 80px;
}
@media screen and (max-width: 1099px) {
  .minute_list li{
    border-radius: 1.4vw;
  }
  .minute_list_ttl{
    min-width: 10.4vw;
    padding: 1px 10px;
    border-radius: .57vw;
    font-size: 1.57vw;
    top: 2.28vw;
    left: 1.07vw;
  }
  .minute_list_date{
    right: 1.07vw;
    top: 2.28vw;
    letter-spacing: 0;
  }
  .minute_list_mark{
    right: 1.78vw;
    top: 1.57vw;
    width: 5.7vw;
  }
}

/*company*/
.company_wrap{
  position: relative;
}
.wrap_bg{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 110%;
  z-index: 1;
  pointer-events: none;
}
.company_wrap .wrap_bg{
  background: url(../images/news/bg_left.png)no-repeat left -136px top 1061px,
  url(../images/company/bg_right.png)no-repeat right -80px top 905px;
  background-size: 280px auto,223px auto;
}
.company_wrap .teaser {
  background: url(../images/company/bg_teaser.jpg)no-repeat center center;
  background-size: cover;
}
.company_list{
  margin-top: -8px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap: 30px 27px;
}
.company_list a{
  display: block;
  position: relative;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
  padding: 30px;
}
.company_list .img_box{
  padding-top: 55.9%;
}
.company_list .img_box:before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/company/icon_play.svg)no-repeat center center;
  background-size: 50px auto;
  z-index: 9;
}
.company_list_ttl{
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  margin-top: 16px;

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1023px) {
  .company_list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 15px 15px;
  }
  .company_list a{
    border-radius: 15px;
    padding: 20px;
  }
  .company_list_ttl{
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
  }
}

/*is_here*/
.is_here_wrap{
  position: relative;
}
.is_here_wrap .wrap_bg{
  background: url(../images/is_here/bg_left.png)no-repeat left -76px top 1061px,
  url(../images/is_here/bg_right.png)no-repeat right -80px top 834px;
  background-size: 96px auto,196px auto;
}
.is_here_wrap .teaser {
  background: url(../images/is_here/bg_teaser.jpg)no-repeat center center;
  background-size: cover;
}
.is_here_inner{
  max-width: 1091px;
}
.is_here_txt{
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: .06em;
  line-height: 1.7;
  margin: 95px 0 105px;
}
.is_here_cont{
  position: relative;
}
.is_here_map{
  pointer-events: none;
}
.is_here_btn{
  position: absolute;
  z-index: 9;
  transform: translate(-50%,-50%);
}
.is_here_btn a{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 130px;
  height: 36px;
  padding: 0 17px;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: .06em;
  background: #2B62DB;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 12px;
}
.is_here_btn a:hover{
  border-color: #2B62DB;
  color: #2B62DB;
  background: #fff;
}
.is_here_btn01{
  left: 10.09%;
  top: 4.06%;
}
.is_here_btn02{
  left: 33.14%;
  top: 2.29%;
}
.is_here_btn03{
  left: 51.26%;
  top: 5.98%;
}
.is_here_btn04{
  left: 70.38%;
  top: 3.84%;
}
.is_here_btn05{
  left: 92.07%;
  top: 24.75%;
}
.is_here_btn06{
  left: 18.51%;
  top: 25.05%;
}
.is_here_btn07{
  left: 59.33%;
  top: 25.2%;
}
.is_here_btn08{
  left: 70.93%;
  top: 44.64%;
}
.is_here_btn09{
  left: 91.32%;
  top: 64.52%;
}
.is_here_btn10{
  left: 10.84%;
  top: 60.82%;
}
.is_here_btn11{
  left: 43.08%;
  top: 41.61%;
}
.is_here_btn12{
  left: 53.88%;
  top: 68.36%;
}

/*modal*/
html.is-popup{
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s;
  background: rgba(9, 26, 45, 0.85);
}
.modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: opacity .5s;
}
.modal__contents {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.is-open .modal__contents {
  opacity: 1;
}
.modal__body {
  overflow: hidden;
  pointer-events: auto;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);

  width: auto;
  max-width: calc(100vw - 100px);
  max-height: calc(100dvh - 50px - 50px);
  margin: 0 auto;
}
.modalMedicine__body {
  overflow: hidden;
  pointer-events: auto;
}
.modalMedicine__body.is-show {
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  position: auto;
}
.modal__box{
  display: none;

  width: 1150px;
  max-width: 100%;
  padding: 68px 50px 58px;
}
.modal__box.is_active{
  display: block;
}

.closeBtn a{
  background: #fff;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 25px;
  right: 30px;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;
}
@media (any-hover:hover){
  .closeBtn a:hover{
    opacity: .7;
  }
}
.closeBtn__line {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.closeBtn__line span {
  display: block;
  width: 25px;
  height: 3px;
  margin: auto;
  background-color: #182F49;
  position: absolute;
  transition: .4s ease-out;
}
.closeBtn__line span:nth-child(1) {
  top: 0;
  bottom: 0;
  transform: rotate(-41deg);
}
.closeBtn__line span:nth-child(2) {
  top: 0;
  bottom: 0;
  transform: rotate(41deg);
}

.modal_ttl{
  margin-bottom: 36px;
}
.modal_ttl span{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 42px;
  padding: 0 24px;
  background: #2B62DB;
  color: #fff;
  border-radius: 8px;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: .06em;
}
.modal_list li+li{
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid #D1DADF;
}
.modal_list dl{
  display: flex;
  justify-content: space-between;
}
.modal_list dt{
  width: 34.6%;
}
.modal_list dd{
  width: 60.85%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal_list .img_box{
  border-radius: 15px;
  padding-top: 68.5%;
}
.modal_list_ttl{
  font-size: 25px;
  font-weight: bold;
  letter-spacing: .06em;
  line-height: 1.44;
  margin-bottom: 8px;
}
.modal_list_txt{
  font-size: 16px;
  line-height: 2;
  /*letter-spacing: .06em;*/
}
@media screen and (max-width: 959px) {
  .modal_list_ttl{
    font-size: 20px;
  }
  .modal_list_txt{
    font-size: 14px;
  }
}

/*office*/
.office_wrap{
  position: relative;
}
.office_wrap .wrap_bg{
  background: url(../images/office/bg_left.png)no-repeat left -136px top 1062px,
  url(../images/office/bg_right.png)no-repeat right -105px top 906px;
  background-size: 287px auto,712px auto;
}
.office_wrap .teaser {
  background: url(../images/office/bg_teaser.jpg)no-repeat center center;
  background-size: cover;
}
.office_wrap .white_box{
  padding: 50px 66px 70px;
}
@media screen and (max-width: 1299px) {
  .office_wrap .white_box{
    padding: 50px 50px 70px;
  }
}
.white_box+.white_box{
  margin-top: 125px;
}
.office_floor{
  display: flex;
  grid-gap: 47px;
  margin-bottom: 88px;
}
.office_floor li{
  width: 100%;
  position: relative;
}
.office_floor_number{
  position: absolute;
  left: 0;
  top: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #2B62DB;
  color: #fff;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
} 
.office_floor_img{
  height: 218px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.office_floor_img img{
  max-height: 345px;
}
.office_floor_img.big img{
  max-height: 352px;
}
.office_list{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-gap: 47px;
}
.office_list_img img{
  border-radius: 15px;
}
.office_list_ttl{
  text-align: center;
  font-size: 25px;
  letter-spacing: .06em;
  line-height: 1.44;
  font-weight: bold;
  margin-top: 13px;
}
.office_list_txt{
  margin-top: 5px;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 999px) {
  .office_floor{
    grid-gap: 24px;
    margin-bottom: 48px;
  }
  .office_list{
    grid-gap: 24px;
  }
  .office_list_ttl{
    font-size: 20px;
  }
  .office_list_txt{
    font-size: 14px;
  }
  .office_floor_number{
    width: 70px;
    height: 70px;
    font-size: 30px;
  }
  .office_list_img img{
    border-radius: 10px;
  }
}

/*interview*/
.interview_wrap{
  position: relative;
}
.interview_wrap .wrap_bg{
  background: url(../images/office/bg_left.png)no-repeat left -136px top 1062px,
  url(../images/interview/bg_right.png)no-repeat right -79px top 906px;
  background-size: 314px auto,657px auto;
}
.interview_wrap .teaser {
  background: url(../images/interview/bg_teaser.jpg)no-repeat center center;
  background-size: cover;
}
.interview_list{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap: 130px 42px;
  margin-top: 78px;
}
.interview_list a{
  height: 100%;
  display: block;
  background: #fff;
  position: relative;
  border-radius: 20px;
  padding: 0 10px 43px;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
  text-align: center;
}
.interview_list a:hover{
  color: #fff;
  background-color: #2B62DB;
}
.interview_list a:hover .txt{
  color: #fff;
}
.interview_list .img{
  position: relative;
  left: 50%;
  top: -78px;
  transform: translate(-50%,0%);
  transition: transform .3s;
  width: 280px;
  width: 78%;
  margin-bottom: -53px;
}
.interview_list .ttl{
  font-size: 21px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 17px;
}
.interview_list .txt{
  font-size: 14px;
  font-weight: bold;
  color: #8B96A2;
  transition: all .3s;
  letter-spacing: .06em;
}
@media screen and (min-width: 960px) and (max-width: 1099px) {
  .interview_list{
    grid-gap: 110px 24px;
  }
  .interview_list .ttl{
    font-size: 18px;
  }
}
@media screen and (max-width: 959px) {
  .interview_list{
    grid-gap: 110px 24px;
    grid-template-columns: repeat(2,1fr);
  }
  .interview_list .ttl{
    font-size: 20px;
  }
}

/*interview_detail*/
.interview_detail_wrap{
  position: relative;
}
.interview_detail_wrap .wrap_bg{
  background: url(../images/nt/bg_left.png)no-repeat left -161px top 892px,
  url(../images/nt/bg_right.png)no-repeat right -110px top 1095px;
  background-size: 281px auto,868px auto;
}
.interview_detail_wrap .teaser{
  justify-content: flex-start;
  text-align: left;
  height: 680px;
  padding-top: 65px;
}
.interview_detail_wrap .teaser_icon03{
  top: 110px;
  left: -60px;
}
.interview_detail_wrap .teaser_icon04{
  top: 495px;
}
.interview_detail_wrap .teaser_icon05{
  top: 606px;
}
#nt .teaser {
  background: url(../images/nt/bg_teaser.jpg)no-repeat right 20% center;
  background-size: cover;
}
#kt .teaser {
  background: url(../images/kt/bg_teaser.jpg)no-repeat right 20% center;
  background-size: cover;
}
#sr2 .teaser {
  background: url(../images/sr2/bg_teaser.jpg)no-repeat right 20% center;
  background-size: cover;
}
#kh .teaser {
  background: url(../images/kh/bg_teaser.jpg)no-repeat right 20% center;
  background-size: cover;
}
#sr .teaser {
  background: url(../images/sr/bg_teaser.jpg)no-repeat right 20% center;
  background-size: cover;
}
#kt2 .teaser {
  background: url(../images/kt2/bg_teaser.jpg)no-repeat right 20% center;
  background-size: cover;
}
#ir .teaser {
  background: url(../images/ir/bg_teaser.jpg)no-repeat right 20% center;
  background-size: cover;
}
.interview_detail_head{
  display: grid;
  grid-gap: 12px;
  color: #fff;
  margin-bottom: 30px;
}
.interview_detail_head .eng{
  font-size: 18px;
}
.interview_detail_head .jap{
  font-size: 40px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: .06em;
}
.interview_detail_intro{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 7px;
}
.interview_detail_intro span{
  background: #0D2239;
  color: #fff;
  padding: 3px 15px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: .06em;
}
.interview_detail_item{
  display: flex;
  justify-content: space-between;
  margin-top: 92px;
  position: relative;
  z-index: 2;
}
.interview_detail_item:nth-of-type(even){
  flex-direction: row-reverse;
}
.interview_detail_item+.interview_detail_item{
  margin-top: 115px;
}
.interview_detail_item_img{
  width: 40%;
}
.interview_detail_item_img img{
  border-radius: 20px;
}
.interview_detail_item_cont{
  max-width: 1052px;
  margin: 0 auto;
}
.interview_detail_item_img+.interview_detail_item_cont{
  width: 56%;
  max-width: 673px;
  margin: 0;
}
.interview_detail_item_img_big{
  margin: 0 -220px 17px;
}
.interview_detail_item_img_big img{
  width: 100%;
}

.interview_detail_item_ttl{
  font-size: 27px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: .06em;
  margin: 18px 0;
  margin: 0 0 18px;
}
.common_txt p,
.common_txt{
  font-size: 16px;
  line-height: 2;
  text-align: justify;
}
.common_txt p+p{
  margin-top: 32px;
}

.schedule_wrap{
  background: #fff;
  position: relative;
  border-radius: 20px;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
  padding: 80px 70px;  
  margin-top: 63px;
}
.schedule_head{
  line-height: 1.2;
  color: #2B62DB;
}
.schedule_head .eng{
  font-size: 55px;
  line-height: 1.2;
  margin-right: 12px;
}
.schedule_head .jap{
  font-size: 15px;
  font-weight: bold;
  letter-spacing: .06em;
}
.schedule_list{
  display: flex;
  justify-content: space-between;
  border-top: 2px dotted #2B62DB;
  margin-top: 115px;
  grid-gap: 10px;
}
.schedule_list li{
  text-align: center;
  position: relative;
  padding-top: 22px;
  min-width: 106px;
}
.schedule_list li:before{
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%,-50%);
  width: 21px;
  height: 21px;
  border: 3px solid #2B62DB;
  background: #fff;
  border-radius: 50%;
}
.schedule_list_time{
  position: absolute;
  left: 50%;
  bottom: calc(100% + 27px);
  transform: translateX(-50%);
  z-index: 1;
  min-width: 106px;
  height: 26px;
  border-radius: 10px;
  background: #2B62DB;
  color: #fff;
  font-size: 14px;
  padding: 0 6px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
.schedule_list_time:before{
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 2px;
  height: 10px;
  background: #2B62DB;
}
.schedule_list_ttl{
  font-size: 18px;
  font-weight: bold;
}
.schedule_list_txt{
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.5;
}
.interview_detail_btn{
  text-align: center;
  margin-top: 70px;
}
.interview_detail_btn .btn_link01{
  width: 220px;
  height: 60px;
  font-size: 18px;
}
.schedule_icon01{
  position: absolute;
  left: calc(50% + 256px);
  top: -57px;
  width: 105px;
  z-index: 2;
}
.schedule_icon02{
  position: absolute;
  right: calc(50% + 246px);
  bottom: -96px;
  width: 122px;
  z-index: -1;
}
.schedule_note{
  display: flex;
  justify-content: center;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 13px;
  letter-spacing: .04em;
  margin-top: 50px;
}
@media screen and (max-width: 1099px) {
  .interview_detail_head .jap{
    font-size: 35px;
  }
  .interview_detail_item_ttl{
    font-size: 23px;
  }
  .schedule_wrap{
    padding: 80px 35px;
  }

  .schedule_list_txt{
    font-size: 14px;
  }
  .schedule_list_ttl{
    font-size: 16px;
  }
  .schedule_list_txt br{
    display: none;
  }
  .schedule_list_time{
    border-radius: 7px;
  }
  .schedule_list_time,
  .schedule_list li{
    min-width: 84px;
  }
  .schedule_list{
    grid-gap: 8px;
  }
}
@media screen and (max-width: 959px) {
  .interview_detail_head .jap{
    font-size: 30px;
  }
  .interview_detail_item_ttl{
    font-size: 20px;
    margin-bottom: 10px;
  }
  .common_txt p,
  .common_txt{
    font-size: 14px;
    line-height: 1.8;
  }
  .common_txt p+p{
    margin-top: 25px;
  }
}

/*work*/
.work_wrap{
  position: relative;
}
.work_wrap .wrap_bg{
  background: url(../images/work/bg_left.png)no-repeat left -136px top 1061px,
  url(../images/work/bg_right.png)no-repeat right -79px top 906px;
  background-size: 281px auto,400px auto;
}
.work_wrap .teaser {
  background: url(../images/work/bg_teaser.jpg)no-repeat center center;
  background-size: cover;
  margin-bottom: 42px;
}
.work_item+.work_item{
  margin-top: 90px;
}
.work_item_head{
  margin-bottom: 42px;
}
.work_item_head span{
  display: inline-block;
  position: relative;
  padding-right: 12px;
  font-size: 32px;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: .06em;
} 
.work_item_head span:before{
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  width: 115px;
  height: 1px;
  background: currentColor;
}
.work_talk_list{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap: 30px 2.2%;
}
.work_talk_list a{
  display: block;
  position: relative;
  background: #fff;
  background: url(../images/common/arrow_right_black.svg)no-repeat right 35px bottom 31px #fff;
  background-size: 16px auto;
  border-radius: 20px;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
  padding: 30px;  
}
.work_talk_list a:hover{
  color: #fff;
  background: url(../images/common/arrow_right_white.svg)no-repeat right 25px bottom 31px #2B62DB;
  background-size: 16px auto;
}
.work_talk_list a:hover .work_talk_list_name,
.work_talk_list a:hover .work_talk_list_point{
  color: #fff;
}
.work_talk_list a:hover .img_box img{
  transform: scale(1);
}
.work_talk_list_top{
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}
.work_talk_list_point{
  padding-top: 30px;
  font-size: 17px;
  color: #2B62DB;
}
.work_talk_list_top .img_box{
  width: 255px;
  max-width: calc(100% - 35px);
  padding-top: 170px;
  border-radius: 70px;
}
.work_talk_list_ttl{
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.work_talk_list_name{
  font-size: 12px;
  line-height: 1.2;
  color: #2B62DB;
}

.work_job_list{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap: 2.4%;
}
.work_job_list a{
  display: block;
  position: relative;
}
.work_job_list .img_box{
  border-radius: 20px;
  padding-top: 86.77%;
}
.work_job_list_point{
  position: absolute;
  left: 22px;
  top: 13px;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #000;
}
.work_job_list_point_number {
  font-size: 32px;
  line-height: 1.2;
  border-bottom: 1px dotted currentColor;
  margin-bottom: 4px;
}
.work_job_list_point_eng{
  font-size: 10px;
  line-height: 1;
}
.work_job_list_cont{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9;
  padding: 29px;
}
.work_job_list_ttl{
  margin-top: 6px;
  font-size: 0;
}
.work_job_list_ttl span{
  position: relative;
  z-index: 2;
}
.work_job_list_ttl div{
  display: inline-block;
  position: relative;
  color: #fff;
  background-color: rgba(13,34,57,.9);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .02em;
  padding: 5px 10px;
  transition: color .2s ease,background-color .2s ease;
}
.work_job_list_ttl div:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2B62DB;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .35s
}
a:hover .work_job_list_ttl div:before {
  transform-origin: 0% 50%;
  transform: scaleX(1) translateZ(0);
}
.work_job_list a:hover .link_arrow img.arrow_before {
  opacity: 1;
  transform: translate(-60px)!important;
}
.work_job_list a:hover .link_arrow img.arrow_after {
  opacity: 0;
  transform: translate(-60px)!important;
}
.work_job_list_ttl.sub_ttl div{
  font-size: 13px;
  line-height: 1.36;
  padding: 2px 10px;
}
.work_job_list_categ{
  margin-top: 15px;
  padding-right: 21px;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 3px;
  font-size: 0;
}
.work_job_list_categ span{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 7px;
  min-width: 26px;
  font-size: 10px;
  line-height: 1.9;
  white-space: nowrap;
  font-weight: bold;
  color: #182F49;
  background: #fff;
  border-radius: 20px;
}
.work_job_list .link_arrow {
  z-index: 9;
  top: auto;
  right: 0;
  bottom: 9px;
  transform: translateY(0%);
  width: 60px;
  height: 60px;
  background: none;
}
.work_job_list .link_arrow img{
  width: 18px;
  margin: auto 21px;
}
@media screen and (min-width: 960px) and (max-width: 1150px) {
  .work_talk_list_top .img_box{
    width: calc(100% - 35px);
    border-radius: 45px;
    padding-top: 51.2%;
  }
  .work_talk_list_ttl{
    font-size: 20px;
  }
  .work_job_list_cont{
    padding: 29px 20px;
  }
  .work_talk_list a{
    padding: 20px;
  }
}
@media screen and (max-width: 959px) {
  .work_talk_list,
  .work_job_list{
    grid-template-columns: repeat(2,1fr);
  }
}

/*job*/
.job_wrap{
  position: relative;
}
.job_wrap .wrap_bg{
  background: url(../images/news/bg_left.png)no-repeat left -136px top 1061px,
  url(../images/work/bg_right.png)no-repeat right -79px top 906px;
  background-size: 280px auto,417px auto;
}
.job_wrap .teaser {
  background: url(../images/job/bg_teaser.jpg)no-repeat center center;
  background-size: cover;
  margin-bottom: -12px;
}
.job_list{
  display: grid;
  grid-gap: 25px;
}
.job_list dl{
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
  padding: 50px;  
  display: flex;
  justify-content: space-between;
}
.job_list dt{
  width: 33%;
  width: 375px;
  position: relative;
}
.job_list dt img{
  border-radius: 15px;
}
.job_list dd{
  width: 62.7%;
  width: calc(100% - 375px - 50px);
}
.job_list_ttl{
  font-size: 27px;
  font-weight: bold;
  letter-spacing: .06em;
  margin: 10px 0 5px;
}
@media screen and (max-width: 959px) {
  .job_list_ttl{
    font-size: 24px;
    margin: 0 0 3px;
  }
  .job_list dl{
    padding: 30px 30px;
  }
  .job_list dd,
  .job_list dt{
    width: calc(50% - 15px);
  }

}

/*crosstalk*/
.crosstalk_wrap{
  position: relative;
}
.crosstalk_wrap .wrap_bg{
  background: url(../images/crosstalk_1/bg_left.png)no-repeat left -161px top 892px,
  url(../images/crosstalk_1/bg_right.png)no-repeat right -88px top 1095px;
  background-size: 281px auto,811px auto;
}
.crosstalk_wrap .teaser{
  height: auto;
  padding: 0;
  background: none;
}
.crosstalk_teaser_img img{
  width: 100%;
}
.crosstalk_top{
  margin: -85px 0 100px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
  padding: 57px 30px;  
  text-align: center;
}
.crosstalk_wrap .teaser_icon03{
  top: 110px;
  left: -60px;
}
.crosstalk_top .teaser_icon04{
  right: calc(50% + 280px);
  top: -81px;
}
.crosstalk_top .teaser_icon05{
  right: -50px;
  top: auto;
  bottom: -27px;
}
.crosstalk_top_job{
  display: inline-block;
  font-size: 16px;
  line-height: 1.81;
  font-weight: bold;
  background: #2B62DB;
  color: #fff;
  border-radius: 10px;
  padding: 0 20px;
}
.crosstalk_head{
  font-size: 40px;
  line-height: 1.45;
  font-weight: bold;
  margin: 12px 0 9px;
  position: relative;
  z-index: 9;
}
.crosstalk_top_text span{
  display: inline-block;
  position: relative;
  padding: 0 10px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
}
.crosstalk_top_text span:before,
.crosstalk_top_text span:after{
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: 25px;
  height: 1px;
  background: currentColor;
}
.crosstalk_top_text span:before{
  left: auto;
  right: 100%;
}

.crosstalk_item+.crosstalk_item{
  margin-top: 65px;
}
.crosstalk_img_big{
  margin: 118px -220px 140px;
}
.crosstalk_img_big img{
  width: 100%;
}
.crosstalk_item_head{
  text-align: center;
  margin-bottom: 36px;
}
.crosstalk_item_head span{
  display: inline-block;
  font-size: 30px;
  line-height: 1.5;
  font-weight: bold;
}
.crosstalk_item_head span.small_span{
  font-size: 20px;
}
.crosstalk_dl{
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.crosstalk_box+.crosstalk_dl,
.crosstalk_dl+.crosstalk_box{
  margin-top: 30px;
}
.crosstalk_dl+.crosstalk_dl{
  margin-top: 20px;
}
.crosstalk_dl dt{
  width: 90px;
}
.crosstalk_dl dt img{
  border-radius: 50%;
}
.crosstalk_dl dd{
  width: calc(100% - 90px - 30px);
  display: flex;
  align-items: center;
}
.crosstalk_box{
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.crosstalk_box_cont{
  width: 54.3%;
}
.crosstalk_box_img{
  width: 40.94%;
}
.crosstalk_box_img img{
  border-radius: 20px;
}

@media screen and (max-width: 959px) {
  .crosstalk_top .teaser_icon04{
    right: calc(50% + 168px);
    top: -50px;
    width: 100px;
  }
  .crosstalk_top .teaser_icon05{
    width: 116px;
    right: -20px;
  }
  .crosstalk_head{
    font-size: 33px;
  }
}

/*top*/
.main_visual{
  color: #fff;
  text-align: center;
  position: relative;
}
.main_visual_icon{
  content: '';
  position: absolute;
  left: calc(50% - 33px - 800px);
  top: -26px;
  width: 1598px;
  height: 1700px;
  z-index: 3;
  background: url(../images/top/before_mv.png)no-repeat top center;
  background-size: 100% auto;
  pointer-events: none;
}
.main_visual_bg{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100dvh;
  background: url(../images/top/bg_mv.jpg)no-repeat center center;
  background-size: cover;
}
.main_visual_bg:after{
  content: '';
  opacity: 0;
  transition: opacity 1s;
  pointer-events: none;
  z-index: 1;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../images/top/bg_mv02.png)no-repeat top center;
  background-size: cover;
}
header.scroll+main .main_visual_bg:after{
  transition: opacity 1s .1s;
  opacity: 1;
}
.main_visual_sec01{
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.main_visual_sec01 .container{
  z-index: 4;
}
.main_visual_news{
  position: absolute;
  right: 36px;
  bottom: 36px;
  z-index: 3;
}
.main_visual_news a{
  display: block;
  border-radius: 10px;
  background: rgba(255,255,255,.85);
  padding: 18px;
  width: 260px;
}
.main_visual_news_head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  letter-spacing: .03em;
}
.main_visual_news_categ{
  font-size: 13px;
  display: flex;
  align-items: center;
  background: #2B62DB;
  color: #fff;
  padding: 0 13px;
  height: 23px;
  border-radius: 12px;
}
.main_visual_news_date{
  font-size: 13px;
  color: #667381;
}
.main_visual_news_text{
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  letter-spacing: .06em;

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.main_visual_sec01_svg img{
  width: 419px;
  width: 421px;
}
.main_visual_sec01_eng{
  font-size: 70px;
  line-height: 1.2;
  margin: -42px 0 13px;
}
.main_visual_sec01_jap{
  line-height: 1.5;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: .44em;
}

.main_visual_sec02{
  position: relative;
  padding: 250px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main_visual_sec02:before{
  content: '';
  z-index: 2;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 258px;
  background: url(../images/common/bg_linear.png)no-repeat;
  background-size: 100% 100%;
}
.main_visual_sec02_title{
  font-size: 35px;
  line-height: 1.8;
  font-weight: bold;
  letter-spacing: .08em;
  margin-bottom: 28px;
}
.main_visual_sec02_text{
  font-size: 19px;
  line-height: 2.6;
}

.top_wrap{
  position: relative;
  z-index: 2;
  background: #EEF3F6;
}

.top_about{
  position: relative;
  z-index: 2;
  padding: 0 0 66px;
}
.top_about_icon{
  content: '';
  position: absolute;
  left: calc(50% - 49px - 695px);
  top: -231px;
  width: 1390px;
  height: 1250px;
  z-index: 1;
  background: url(../images/top/before_about.png)no-repeat top center;
  background-size: 100% auto;
  pointer-events: none;
}
.top_about .container{
  padding-top: 140px;
}
.top_about img{
  border-radius: 20px;
}
.top_about_img01{
  position: absolute;
  right: 389px;
  top: -92px;
  width: 444px;
  width: 31.71vw;
  right: 27.78vw;
}
.top_about_img02{
  position: absolute;
  right: -66px;
  top: 120px;
  width: 372px;

  width: 26.57vw;
  right: -4.7vw;
}
.top_about_img03{
  position: absolute;
  right: 120px;
  top: 645px;
  width: 272px;

  right: 8.57vw;
  width: 19.42vw;
}
.top_hd{
  display: flex;
  flex-direction: column;
  color: #2B62DB;
  grid-gap: 6px;
  position: relative;
  z-index: 3;
}
.top_hd .jap{
  font-size: 15px;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: .06em;
}
.top_hd .eng{
  font-size: 90px;
  line-height: 1.2;
}
.top_text{
  font-size: 35px;
  font-weight: bold;
  line-height: 1.6;
  position: relative;
  z-index: 3;
}
.top_about_text{
  margin: 35px 0 50px 67px;
}
.top_about_list{
  display: grid;
  grid-gap: 10px;
  width: 750px;
  max-width: calc(100% - 290px);
}
.top_about_list a{
  display: flex;
  align-items: center;
  min-height: 90px;
  padding: 0 80px 0 50px;
  border-radius: 20px;
  background: url(../images/common/arrow_right_blue.svg)no-repeat right 43px center #fff;
  background-size: 22px auto;
  font-size: 21px;
  font-weight: bold;
  letter-spacing: .06em;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
}
.top_about_list a:hover{
  color: #fff;
  background: url(../images/common/arrow_right_white.svg)no-repeat right 33px center #2B62DB;
  background-size: 22px auto;
}

.top_work{
  padding: 62px 0 165px;
  position: relative;
}
.top_work_icon{
  content: '';
  position: absolute;
  left: calc(50% + 26px - 731px);
  top: 247px;
  width: 1462px;
  height: 1100px;
  z-index: 1;
  background: url(../images/top/before_work.png)no-repeat top center;
  background-size: 100% auto;
  pointer-events: none;
}
.top_work_text{
  display: flex;
  justify-content: flex-end;
  margin: -38px 0 19px auto;
}

.top_environment{
  background: #E0E7EB;
  border-radius: 0 70px 0 0;
  padding: 138px 0 145px;
  position: relative;
}
.top_environment_icon{
  content: '';
  position: absolute;
  left: calc(50% - 22px - 770px);
  top: -105px;
  width: 1540px;
  height: 1010px;
  z-index: 1;
  background: url(../images/top/before_environment.png)no-repeat top center;
  background-size: 100% auto;
  pointer-events: none;
}
.top_environment_link a{
  margin-top: 48px;
  min-height: 385px;
  padding: 70px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 20px;
  background: url(../images/top/img_environment.jpg)no-repeat left center;
  background-size: cover;
  color: #182F49;
  overflow: hidden;
  position: relative;
}
.top_environment_title{
  font-size: 30px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 25px;
  position: relative;
  z-index: 3;
}
.top_environment_txt{
  font-size: 16px;
  line-height: 1.9;
  max-width: 600px;
  position: relative;
  z-index: 3;
}
.top_environment_link a:hover{
  color: #fff;
}

.cl-button {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  right: 75px;
  bottom: 75px;
  transform: translate(50%,50%);
  z-index: 1;
  overflow: hidden;
  transform-origin: bottom right;
  transition: all .5s ease .05s,border-radius .3s ease 0s;
  pointer-events: none
}

.cl-button:before,.cl-button:after {
  content: "";
  position: absolute;
  inset: 0
}

.cl-button:after {
  background: linear-gradient(92deg,#0450d1e6 43.42%,#003fabcc 89.31%)
}

.cl-arrow02,
.cl-arrow {
  position: absolute;
  z-index: 3;
  bottom: 40px;
  right: 40px;
  font-size: 0;
  display: flex;
  opacity: 0;
  transform: translate3d(-22px,0,0);
  width: 70px;
  height: 70px;
}

.cl-arrow02 img,
.cl-arrow img {
    width: 21px;
    margin: auto;
}
.cl-arrow{
  opacity: 1;
  background: none;
  border-radius: 50%;
  transform: translate3d(0,0,0);
  transition: opacity .5s ease,background .5s ease;
}
a:hover .cl-button {
  width: 200%;
  height: 400%;
  border-radius: 0;
  transition: all .5s ease .05s,border-radius .3s ease 0s;
}
a:hover .cl-arrow02 {
  opacity: 1;
  transform: translateZ(0);
  transition: opacity .5s ease .4s,transform .5s ease .4s
}
a:hover .cl-arrow{
  background: #fff;
}

.top_interview{
  padding: 125px 0 185px;
  text-align: center;
  position: relative;
}
.top_interview_icon{
  content: '';
  position: absolute;
  left: calc(50% + 1px - 691px);
  top: 92px;
  width: 1382px;
  height: 1140px;
  z-index: 1;
  background: url(../images/top/before_interview.png)no-repeat top center;
  background-size: 100% auto;
  pointer-events: none;
}
.top_interview_text{
  margin: 6px 0 111px;
}

.top_interview .interview_list{
  grid-gap: 105px 20px;
  grid-template-columns: repeat(4,1fr);
}
.top_interview .interview_list li:nth-of-type(even){
  position: relative;
  top: 50px;
}

@media screen and (min-width: 960px){
  .top_interview .interview_list .ttl{
    font-size: 19px;
    line-height: 1.5;
  }
  .top_interview .interview_list .txt{
    font-size: 13px;
  }
}
@media screen and (min-width: 960px) and (max-width: 1199px) {
  .top_interview .interview_list .ttl{
    font-size: 16px;
  }
}
@media screen and (max-width: 959px) {
  .main_visual_sec01_eng{
    font-size: 63px;
  }
  .main_visual_sec02_title{
    font-size: 29px;
  }
  .top_text{
    font-size: 34px;
  }
  .top_about_list{
    max-width: calc(100% - 200px);
  }
  .top_work_text{
    margin-top: -8px;
  }

  .top_interview .interview_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*0109*/
.schedule_icon01,
.schedule_icon02,
.wrap_bg,
.common_bottom_icon,
.teaser_icon,
.js_rellax {
  -webkit-transition: -webkit-transform 600ms ease-out;
  transition: -webkit-transform 600ms ease-out;
  transition: transform 600ms ease-out;
  transition: transform 600ms ease-out, -webkit-transform 600ms ease-out;
}

#company .modal__box{
  width: 954px;
}
.modal_iframe {
  position: relative;
  width: 100%;
  padding-top: 56%;
  margin: 0 auto;
}
.modal_iframe iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}



.minute_inner{
  max-width: 95.7vw!important;
  padding: 0 3.57vw!important;
}
.minute_list .obj{
  position: absolute;
  font-family: "Figtree", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  color: #2B62DB;
  font-size: 6vw;
  line-height: 1.2;
}

.minute_list li:nth-of-type(1) .obj01{
  font-size: 4.2vw;
  right: 69%;
  bottom: 28.5%;
}
.minute_list li:nth-of-type(1) .obj02{
  font-size: 7vw;
  right: 26.83%;
  bottom: 23.2%;
}

.minute_list li:nth-of-type(2) .obj01{
  font-size: 5.35vw;
  right: 68.6%;
  bottom: 26.4%;
}
.minute_list li:nth-of-type(2) .obj02{
  font-size: 5.35vw;
  right: 29.26%;
  right: 30.5%;
  bottom: 26.4%;
}

.minute_list li:nth-of-type(3) .obj01{
  right: 36.1%;
  bottom: 18.8%;
}

.minute_list li:nth-of-type(4) .obj01{
  font-size: 3.5vw;
  right: 64.86%;
  bottom: 14%;
}
.minute_list li:nth-of-type(4) .obj02{
  font-size: 3.5vw;
  right: 15.8%;
  bottom: 14%;
  color: #FF7C7C;
}

.minute_list li:nth-of-type(5) .obj{
  font-size: 2.5vw;
}
.minute_list li:nth-of-type(5) .obj01{
  right: 73.43%;
  bottom: 67%;
}
.minute_list li:nth-of-type(5) .obj02{
  right: 82.9%;
  bottom: 34.17%;
}
.minute_list li:nth-of-type(5) .obj03{
  right: 62.85%;
  bottom: 8.06%;
}
.minute_list li:nth-of-type(5) .obj04{
  right: 14.39%;
  bottom: 11.34%;
}
.minute_list li:nth-of-type(5) .obj05{
  right: 13.77%;
  bottom: 59.7%;
}

.minute_list li:nth-of-type(6) .obj{
  font-size: 2.5vw;
}
.minute_list li:nth-of-type(6) .obj01{
  right: 75.15%;
  bottom: 65.97%;
}
.minute_list li:nth-of-type(6) .obj02{
  right: 82.04%;
  bottom: 14.92%;
}
.minute_list li:nth-of-type(6) .obj03{
  right: 12.67%;
  bottom: 10.15%;
}

.minute_list li:nth-of-type(7) .obj01{
  right: 36.9%;
  bottom: 17.16%;
}

.minute_list li:nth-of-type(8) .obj01{
  right: 39.3%;
  bottom: 16.71%;
}

.minute_list li:nth-of-type(9) .obj01{
  right: 24.35%;
  right: 35.35%;
  bottom: 28.28%;
}

.minute_list li:nth-of-type(10) .obj01{
  font-size: 5vw;
  letter-spacing: -.02em;
  right: 34.19%;
  bottom: 34.6875%;
}

.minute_list li:nth-of-type(11) .obj01{
  right: 28.04%;
  bottom: 27.65%;
}