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

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

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

.pc {
  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: -85px;
}

/*　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: 10px 10px 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo{
  width: 195px;
  font-size: 0;
}
header.scroll .logo{
  background: url(../images/common/logo_blue.svg)no-repeat;
  background-size: 100% auto;
}
header.scroll .logo img{
  opacity: 0;
}
.header_right{
}
.header_entry{
  background: #EEF3F6;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px;
}
.header_entry a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 43px;
  border-radius: 9px;
  background: #2B62DB;
  border: 1px solid #2B62DB;
  color: #fff;
  font-size: 20px;
  letter-spacing: .03em;
}

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

  position: relative;
  right: 0;
  top: 0;
  width: 45px;
  height: 45px;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
  background: #fff;
  border-radius: 7px;
  border: 1px solid #fff;
  transition: border .3s;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
}
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: 55px 0 80px;
  display: none;
  background: #2B62DB;
}
header .g-navi:before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1289px;
  background: url(../images/common/icon_nav_sp.png)no-repeat top -26px left 58% #2B62DB;
  background-size: 456px 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;
  grid-gap: 30px;
}
.g-navi .nav_list{
  grid-gap: 29px;
  display: grid;
  padding: 0 5px;
}
.g-navi .nav_list ul{
  grid-gap: 14px;
}
.g-navi .nav_list a{
  color: #fff;
}
.g-navi .subBox{
  display: block;
  padding: 10px 0 0 17px;
  border-bottom: 0;
}
.g-navi .subBox02{
}
.g-navi .parentLi .parentA{
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(209,218,223,.5);
  display: block;
}
.g-navi .parentA{
  font-size: 16px;
  line-height: 1.5;
  padding: 0;
  border-bottom: none;
}
.g-navi .subLi02{
  /*margin-top: 7px;*/
}
.g-navi .subLi02 a,
.g-navi .subLi>a{
  font-size: 15px;
  line-height: 1.5;
}

.g-navi .common_bottom_list{
  display: grid;
  flex-wrap: wrap;
  margin-top: 33px;
  grid-gap: 10px;
}

.g-navi .common_bottom_list a{
  height: 90px;
  padding: 0 25px;
}
.g-navi .link_eng_box{
  font-size: 25px;
}
.g-navi .link_jap_box{
  font-size: 13px;
}
.g-navi .link_arrow{
  right: 16px;
  width: 32px;
  height: 32px;
}

/* footer
==================================*/
footer{
  position: relative;
  z-index: 3;
}
.common_bottom{
  border-top-left-radius: 50px;
  padding: 50px 0 66px;
  background: #2B62DB;
  color: #fff;
  position: relative;
  z-index: 3;
}
.common_bottom_icon{
  position: absolute;
  left: 51.5%;
  top: -46px;
  left: calc(51.5% - 230px);
  width: 460px;
  pointer-events: none;
}
.common_bottom_txt{
  font-size: 19px;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: .08em;
  margin-bottom: 32px;
  text-align: center;
}
.common_bottom_list{
  display: grid;
  grid-gap: 10px;
}
.common_bottom_list a{
  background: rgba(40,60,164,.93);
  color: #fff;
  border-radius: 13px;
  height: 110px;
  padding: 0 25px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  position: relative;
  line-height: 1.2;
}
.common_bottom_list a.white{
  background: #fff;
  color: #2B62DB;
}
.link_eng_box{
  font-size: 29px;
  line-height: 1.3;
  font-weight: 700;

  display: block;
  overflow: hidden;
  position: relative;
}
.link_jap_box{
  font-size: 14px;
  line-height: 1.4;
  font-weight: bold;

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

.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 {
  display: none;
}

footer{
  background: #EEF3F6;
}
.footer_inner{
  padding: 32px 0 82px;
  position: relative;
  background: #EEF3F6;
}
.nav_list{
}
.nav_list ul{
  display: flex;
  flex-direction: column;
  letter-spacing: .06em;
}
.nav_list a{
  display: block;
}
.nav_line{
}

.parentLi{
  position: relative;
}
.subBtn{
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  width: 50%;
  height: 44px;
  background: url(../images/common/sub_close.svg)no-repeat right 10px center;
  background-size: 9px auto;
  cursor: pointer;
}
.subBtn.open{
  background: url(../images/common/sub_open.svg)no-repeat right 10px center;
  background-size: 9px auto;
}
.subBox{
  display: none;
}
.parentA{
  font-size: 14px;
  line-height: 44px;
  font-weight: bold;
  white-space: nowrap;
  padding: 0 7px;
  border-bottom: 1px solid #ccc;
}
.subBox{
  grid-gap: 10px;
  padding: 15px 23px;
  border-bottom: 1px solid #ccc;
}
.subBox .subLi{
  width: 100%;
}
.subBox .subLi+.subLi{
  margin-top: 10px;
}
.subBox02{
  font-size: 0;
  padding-top: 5px;
}
.subBox02 .subLi{
  width: calc(50% - 5px);
  display: inline-block;
}
.subLi>a{
  color: #5D6A79;
  font-size: 13px;
  line-height: 1.5;
}
.subLi02{
  margin-top: 6px;
}
.subLi02 a{
  color: #5D6A79;
  font-size: 13px;
  line-height: 1.5;
  margin-left: 1em;
}


.footer_dl{
  display: grid;
  grid-gap: 9px;
  text-align: center;
  margin-top: 34px;
}
.footer_dt .logo img{
  width: 153px;
}
.footer_addr{
  font-size: 14px;
  line-height: 2;
  margin-top: 9px;
  letter-spacing: .05em;
}
.footer_addr b{
  font-size: 15px;
}

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


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

.page_title{
  font-size: 14px;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: .2em;
  color: #fff;
}
.page_title .eng{
  display: block;
  font-size: 50px;
  line-height: .94;
  letter-spacing: 0;
  margin-top: 10px;
}

.teaser_icon{
  position: absolute;
  z-index: 1;
}
.teaser_icon01{
  right: 74px;
  top: -27px;
  width: 88px;
}
.teaser_icon02{
  right: -38px;
  top: 125px;
  width: 58px;
}
.teaser_icon03{
  left: -33px;
  top: 85px;
  width: 70px;
}
.teaser_icon04{
  left: 83px;
  top: 283px;
  width: 62px;
}
.teaser_icon05{
  right: -31px;
  top: 263px;
  width: 74px;
}

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

.breadcrumb {
  padding: 50px 0 43px;
  width: 100%;
}

.breadcrumb .container{
  display: flex;
  justify-content: flex-end;
}

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

.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: 0;
  top: 0;
  z-index: 888;
  transition: 0.3s;
}
#pageTop.active {
  opacity: 1;
}
#pageTop a {
  display: block;
  width: 95px;
  padding: 15px 15px 0 0;
}
/*================================
  .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: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.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{
  margin: -90px 0 22px;
}
.select_box select{
  width: 100%;
  background: url(../images/common/select.svg)no-repeat right 14px center #fff;
  background-size: 27px auto;
  border-radius: 13px;
  height: 55px;
  padding: 0 24px;
  font-size: 14px;
  letter-spacing: .06em;
  border: 0;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
}

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

.news_ul .news_li {
}

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

.news_ul .news_li > a .date {
  font-size: 13px;
  letter-spacing: .03em;
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  min-width: 84px;
  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;
  gap: 6px;
}

.news_ul .news_li > a .title {
  margin-top: 9px;
  width: 100%;
  font-size: 15px;
  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: 2;
  -webkit-box-orient: vertical;
}

/*==================================
  ページナビ
==================================*/
/*==================================
  ページナビ
==================================*/
.page_navigation .wp-pagenavi .nav-links{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px 0 0;
}
.page_navigation .wp-pagenavi .page-numbers {
  font-size: 15px;
  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: 40px;
  height: 40px;
  border-radius: 10px;
  color: #11243A;
  background: #fff;
  margin: 0 5px;
  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.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_sp.png)no-repeat left -87px top 914px,
  url(../images/news/bg_right_sp.png)no-repeat right -59px top 563px;
  background-size: 132px auto,122px auto;
}

/*news_detail*/
.news_detail_wrap{
  position: relative;
}
.news_detail_wrap .wrap_bg{
  background: url(../images/news/bg_left_detail_sp.png)no-repeat left -87px top 688px,
  url(../images/news/bg_right_detail_sp.png)no-repeat right -59px top 516px;
  background-size: 132px auto,122px auto;
}
.white_box{
  margin-top: -90px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
  padding: 32px 20px;
}
.news_head {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.news_head .date {
  font-size: 13px;
  letter-spacing: .03em;
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  margin-right: 10px;
  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: 10px;
  width: 100%;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: .06em;
  font-weight: bold;
}

.news_body p{
  font-size: 14px;
  line-height: 2;
  letter-spacing: .06em;
}
.news_body p+p{
  margin-top: 28px;
}
.news_body figure{
  display: block;
  margin: 0;
}
.news_body figure+p,
.news_body p+figure{
  margin-top: 28px;
}


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

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

.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: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  font-size: 0;
  line-height: 1.5;
  letter-spacing: .03em;
  position: relative;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
}

.pager_wrap ul .prev a:before,
.pager_wrap ul .next a:after {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  transition: all .3s;
}

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

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

.btn_link01 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 193px;
  height: 40px;
  background: #2B62DB;
  color: #fff;
  border: 1px solid #2B62DB;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  margin: auto;
}

/*grads*/
.hd_m{
  display: flex;
  flex-direction: column;
  grid-gap: 3px;
  margin-bottom: 14px;
}
.hd_m .eng{
  font-size: 12px;
  line-height: 1.2;
  color: #2B62DB;
}
.hd_m .jap{
  font-size: 20px;
  font-weight: bold;
  letter-spacing: .06em;
}
.grads_wrap{
  position: relative;
}
.grads_wrap .wrap_bg{
  background: url(../images/grads/bg_left_sp.png)no-repeat left -73px top 899px,
  url(../images/grads/bg_right_sp.png)no-repeat right -59px top 654px;
  background-size: 101px auto,322px auto;
}
.grads_wrap .teaser {
  background: url(../images/grads/bg_teaser_sp.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: 14px;
  line-height: 1.7;
  padding: 10px 0;
  font-weight: 500;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #D1DADF;
}
.grads_table th{
  width: 71px;
}
.dot_ul li{
  font-size: 14px;
  line-height: 1.7;
  padding-left: .9em;
  position: relative;
}
.dot_ul li:before{
  content: '・';
  position: absolute;
  left: 0;
  top: 0;
}
.grads_table p{
  font-size: 14px;
  line-height: 1.7;
}
.grads_table_list{
}
.grads_btn{
  text-align: center;
  margin-top: 26px;
}
.btn_link01 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 193px;
  max-width: 100%;
  height: 47px;
  background: #2B62DB;
  color: #fff;
  border: 1px solid #2B62DB;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .03em;
  text-align: center;
  margin: auto;
}
.grads_btn .btn_link01{
  width: 290px;
  height: 55px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0;
}

.grads_table_list.space_between{
  display: grid;
  grid-gap: 10px;
}


/*environment*/
.environment_wrap{
  position: relative;
}
.environment_wrap .wrap_bg{
  background: url(../images/environment/bg_left_sp.png)no-repeat left -87px top 996px,
  url(../images/environment/bg_right_sp.png)no-repeat right -59px top 553px;
  background-size: 115px auto,297px auto;
}
.environment_wrap .teaser {
  background: url(../images/environment/bg_teaser_sp.jpg)no-repeat center center;
  background-size: cover;
}
.environment_stage_hd{
  margin-top: -46px;
  display: flex;
  flex-direction: column-reverse;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: .06em;
  margin-bottom: 20px;
  color: #2B62DB;
}
.environment_stage_hd .eng{
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
}
.environment_stage{
  position: relative;
}
.environment_stage_cont{
  overflow-x: auto;
}
.environment_stage_cont img{
  width: 1055px;
  max-width: none;
}
.is_desktop .environment_stage_cont img{
  pointer-events: none;
}
.environment_stage_tip{
  pointer-events: none;
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
}
.is_desktop .environment_stage_tip{
  pointer-events: auto;
}
.environment_stage_tip img{
  width: 150px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.environment_item{
  margin-top: 36px;
  display: grid;
  grid-gap: 15px;
}
.environment_item dl{
  background: #fff;
  border-radius: 13px;
  padding: 17px;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
  grid-gap: 12px;
  display: grid;
}
.environment_item dt{
}
.environment_item dd{
}
.environment_item .ttl{
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 6px;
}
.environment_item .txt{
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .06em;
}

/*entry*/
.entry_wrap{
  position: relative;
}
.entry_wrap .wrap_bg{
  background: url(../images/entry/bg_left_sp.png)no-repeat left -56px top 1253px,
  url(../images/entry/bg_right_sp.png)no-repeat right -59px top 993px;
  background-size: 109px auto,136px auto;
}
.entry_wrap .teaser {
  background: url(../images/entry/bg_teaser_sp.jpg)no-repeat center center;
  background-size: cover;
}
.entry_notes{
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
}
.form_box h2{
  overflow: hidden;
  font-size: 15px;
  font-weight: bold;
  display: flex;
}
.form_box h2 span{
  padding-right: 10px;
  position: relative;
}
.form_box h2 span:before{
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  width: 100vw;
  height: 1px;
  background: #D1DADF;
}
.form_item{
  padding: 24px 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: grid;
  grid-gap: 12px;
}
.form_box.message .form_item{
  padding-top: 13px;
}
.form_item dl{
  width: 100%;
}
.form_item dt{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.form_box.message .form_item dt{
  font-size: 14px;
  align-items: flex-start;
}
.form_box.message .form_item dt .need{
  margin-top: 2px;
}
.need{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  min-width: 38px;
  height: 18px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 4px;
  background: #FE5662;
  color: #fff;
  margin-right: 7px;
}
.form_subitem{
}

/*==================================
  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: 15px;
  line-height: 1.44;
  letter-spacing: .05em;
  font-weight: 500;
  padding: 0 14px;
  border: 0;
  background: #F0F3F5;
  color: #182F49;
  width: 100%;
  height: 45px;
  border-radius: 5px;
}
#Entry select {
  font-size: 15px;
  line-height: 1.44;
  font-weight: 500;
  padding: 0 14px;
  border: 0;
  color: #182F49;
  border: 1px solid #D1DADF;
  background: url(../images/entry/select_entry.svg)no-repeat right 15px center #fff;
  background-size: 12px auto;
  width: 100%;
  height: 45px;
  border-radius: 5px;
}

#Entry input[type=checkbox] + span + label,
#Entry input[type=checkbox] + label {
  padding-left: 45px;
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.93;
  font-weight: 500;
}
.checkAgree .need{
  margin-top: 3px;
}
#Entry input[type=checkbox] + span + label::before,
#Entry input[type=checkbox] + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  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: 3px;
  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: 15px;
  line-height: 1.44;
  font-weight: 500;
  border: 0;
  background: #F0F3F5;
  width: 100%;
  padding: 7px 14px;
  min-height: 235px;
  border-radius: 5px;
}
#Entry .submit_area {
  margin-top: 18px;
  text-align: center;
}
#Entry .submit_area span {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  width: 290px;
  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: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  width: 100%;
  height: 55px;
}

#Entry .koumoku {
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
#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: 16px;
  line-height: 1.5;
  font-weight: 700;
  width: 300px;
  border-radius: 10px;
}

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

  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  width: 300px;
  height: 55px;
  border-radius: 10px;
}
#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: 16px;
  line-height: 1.5;
  font-weight: 700;
  width: 300px;
  border-radius: 10px;
}
#Entry .btn_back input {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #182F49;
  cursor: pointer;
  width: 100%;
  height: 55px;
}


#Entry .contact_back {
  margin-top: 20px;
  text-align: center;
}
#Entry .contact_back a {
  font-weight: 700;
  width: 100%;
  height: 55px;
}

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

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

#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: 16px;
  line-height: 1.5;
  font-weight: 500;
}

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

.graduation{
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
#Entry .graduation select{
  max-width: 200px;
}
.birthday{
  display: flex;
  flex-wrap: wrap;
  grid-gap: 12px;
}
.birthday .birthday_text{
  height: 45px;
  display: flex;
  align-items: center;
}
#Entry .birthday select{
  background: #F0F3F5;
  border: 0;
  width: 115px;
  max-width: 115px;
}
#Entry .birthday_year select{
  width: 115px;
  max-width: 115px;
}
#Entry .birthday_year+.birthday_text{
  width: calc(100% - 140px);
}


main#Entry .form_item.is-column dl {
}

main#Entry .form_item.is-column dl dt {
}

main#Entry .form_item.is-column dl dd {
}

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

main#Entry .address .address_item {
}

main#Entry .address .address_item .address_title {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 1.5;
  margin-bottom: 9px;
}

main#Entry .address .address_item .address_box {
}
.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 .phone input[type=text] {
  max-width: 368px;
}

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

main#Entry .form_wrap .form_notes {
  font-size: 12px;
  letter-spacing: .03em;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 13px;
  padding-left: 1em;
  text-indent: -1em;
}
main#Entry .form_wrap .documents .form_notes {
  text-align: center;
}
main#Entry .zip-wrap {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
main#Entry input[type=text].zip {
  max-width: 163px;
  width: 100%;
}

main#Entry .ad_btn {
  margin-left: 17px;
  width: 110px;
  height: 45px;
}

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

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

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

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

main#Entry .documents .custom_upload_item label:before {
  width: 290px;
  max-width: 100%;
  height: 45px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  content: 'ファイルの選択';
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  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 {
  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 .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: 14px;
  line-height: 1.8;
}
.form_item:last-of-type{
  background: none;
}

/*about*/
.about_wrap .teaser {
  background: url(../images/about/bg_teaser_sp.jpg)no-repeat center center;
  background-size: cover;
}
.about_list{
  display: grid;
  grid-gap: 15px;
  margin-top: -90px;
}
.about_list a{
  display: block;
  border-radius: 13px;
  background: url(../images/common/arrow_right_blue.svg)no-repeat right 22px bottom 30px #fff;
  background-size: 16px auto;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
  padding: 17px 17px 20px;
}
.about_list dl{
  display: grid;
  grid-gap: 17px;
}
.about_list dt{
}
.about_list dd{
}
.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;
}
.about_list .img_box{
  border-radius: 10px;
  padding-top: 58.3%;
}
.about_list_jap{
  font-size: 13px;
  font-weight: bold;
  color: #2B62DB;
  margin-bottom: 4px;
}
.about_list_eng{
  font-size: 25px;
  font-weight: bold;
  line-height: 1.2;
}

/*minute*/
.minute_wrap{
  position: relative;
}
.minute_wrap .wrap_bg{
  background: url(../images/news/bg_left_sp.png)no-repeat left -87px top 843px,
  url(../images/minute/bg_right_sp.png)no-repeat right -59px top 530px;
  background-size: 132px auto,153px auto;
}
.minute_wrap .teaser {
  background: url(../images/minute/bg_teaser_sp.jpg)no-repeat center center;
  background-size: cover;
}
.minute_list{
  display: grid;
  grid-gap: 15px;
  margin-top: -90px;
}
.minute_list li{
  position: relative;
  border-radius: 13px;
  background: #fff;
  overflow: hidden;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
}
.minute_list_ttl{
  position: absolute;
  left: 8px;
  top: 20px;
  transform: translateY(-50%);
  min-width: 105px;
  padding: 1px 15px;
  background: #2B62DB;
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  display: flex;
  justify-content: center;
}
.minute_list_date{
  position: absolute;
  right: 15px;
  top: 20px;
  transform: translateY(-50%);
  font-size: 10px;
  letter-spacing: .08em;
  color: #5D6A79;
}
.minute_list_mark{
  position: absolute;
  right: 8vw;
  top: 16vw;
  width: 19.73vw;
}


/*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_sp.png)no-repeat left -87px top 756px,
  url(../images/news/bg_right_sp.png)no-repeat right -59px top 503px;
  background-size: 132px auto,122px auto;
}
.company_wrap .teaser {
  background: url(../images/company/bg_teaser_sp.jpg)no-repeat center center;
  background-size: cover;
}
.company_list{
  margin-top: -90px;
  display: grid;
  grid-gap: 15px;
}
.company_list a{
  display: block;
  position: relative;
  border-radius: 13px;
  background: #fff;
  overflow: hidden;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
  padding: 17px 17px 20px;
}
.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: 45px auto;
  z-index: 9;
}
.company_list_ttl{
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 13px;
  letter-spacing: .06em;

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


/*is_here*/
.is_here_wrap{
  position: relative;
}
.is_here_wrap .wrap_bg{
  background: url(../images/is_here/bg_right_sp.png)no-repeat right -59px top 587px;
  background-size: 92px auto;
}
.is_here_wrap .teaser {
  background: url(../images/is_here/bg_teaser_sp.jpg)no-repeat center center;
  background-size: cover;
}
.is_here_inner{
  padding: 0 11px;
}
.is_here_txt{
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: .06em;
  line-height: 1.8;
  margin: -38px 0 35px;
}
.is_here_cont{
  position: relative;
  max-width: 353px;
  margin: 0 auto;
}
.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;
  white-space: nowrap;
  min-width: 64px;
  height: 30px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: .06em;
  background: #2B62DB;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 10px;
}
.is_here_btn01{
  left: 12.92%;
  top: 5.95%;
}
.is_here_btn02{
  left: 23.72%;
  top: 18.45%;
}
.is_here_btn03{
  left: 50.99%;
  top: 12.5%;
}
.is_here_btn04{
  left: 72.86%;
  top: 2.77%;
}
.is_here_btn05{
  left: 89.91%;
  top: 11.6%;
}
.is_here_btn06{
  left: 11.22%;
  top: 38.88%;
}
.is_here_btn07{
  left: 44.03%;
  top: 35.11%;
}
.is_here_btn08{
  left: 68.18%;
  top: 48.9%;
}
.is_here_btn09{
  left: 88.63%;
  top: 66.17%;
}
.is_here_btn10{
  left: 15.05%;
  top: 97.22%;
}
.is_here_btn11{
  left: 41.61%;
  top: 75.59%;
}
.is_here_btn12{
  left: 76.27%;
  top: 97.4%;
}

/*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: 13px;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);

  width: calc(100vw - 40px);
  max-width: calc(100vw - 40px);
  max-height: calc(100dvh - 85px - 85px);
  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: 100%;
  max-width: 100%;
  padding: 15px 17px 25px;
}
.modal__box.is_active{
  display: block;
}

.closeBtn a{
  width: 20px;
  height: 20px;
  position: fixed;
  top: 97px;
  right: 35px;
  z-index: 99;

  display: flex;
  align-items: center;
  justify-content: center;
}
.closeBtn__line {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.closeBtn__line span {
  display: block;
  width: 20px;
  height: 2px;
  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: 23px;
}
.modal_ttl span{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 13px;
  background: #2B62DB;
  color: #fff;
  border-radius: 6px;
  font-size: 19px;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: .06em;
}
.modal_list li+li{
  padding-top: 25px;
  margin-top: 25px;
  border-top: 1px solid #D1DADF;
}
.modal_list dl{
  display: grid;
  grid-gap: 12px;
}
.modal_list dt{
}
.modal_list dd{
}
.modal_list .img_box{
  border-radius: 10px;
  padding-top: 68.5%;
}
.modal_list_ttl{
  font-size: 19px;
  font-weight: bold;
  letter-spacing: .06em;
  line-height: 1.44;
  margin-bottom: 5px;
}
.modal_list_txt{
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .06em;
}

/*office*/
.office_wrap{
  position: relative;
}
.office_wrap .wrap_bg{
  background: url(../images/office/bg_left_sp.png)no-repeat left -87px top 1271px,
  url(../images/office/bg_right_sp.png)no-repeat right -59px top 790px;
  background-size: 130px auto,204px auto;
}
.office_wrap .teaser {
  background: url(../images/office/bg_teaser_sp.jpg)no-repeat center center;
  background-size: cover;
}
.office_wrap .white_box{
  padding: 15px 17px 30px;
}
.white_box+.white_box{
  margin-top: 60px;
}
.office_floor{
  display: grid;
  grid-gap: 59px;
  margin-bottom: 25px;
}
.office_floor li{
  width: 100%;
  position: relative;
}
.office_floor_number{
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #2B62DB;
  color: #fff;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
} 
.office_floor_img{
  height: 105px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.office_floor_img img{
  max-height: 155px;
}
.office_floor_img.big img{
  max-height: 159px;
}
.office_list{
  display: grid;
  grid-gap: 25px;
}
.office_list_img img{
  border-radius: 10px;
}
.office_list_ttl{
  text-align: center;
  font-size: 18px;
  letter-spacing: .06em;
  line-height: 1.44;
  font-weight: bold;
  margin-top: 9px;
}
.office_list_txt{
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.8;
}

/*interview*/
.interview_wrap{
  position: relative;
}
.interview_wrap .wrap_bg{
  background: url(../images/interview/bg_left_sp.png)no-repeat left -73px top 1128px,
  url(../images/interview/bg_right_sp.png)no-repeat right -59px top 706px;
  background-size: 101px auto,126px auto;
}
.interview_wrap .teaser {
  background: url(../images/interview/bg_teaser_sp.jpg)no-repeat center center;
  background-size: cover;
}
.interview_list{
  display: grid;
  grid-gap: 30px;
  margin-top: -50px;
}
.interview_list a{
  height: 100%;
  display: block;
  background: #fff;
  position: relative;
  border-radius: 13px;
  padding: 0 8px 16px;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
  text-align: center;
}
.interview_list .img{
  position: relative;
  left: 50%;
  top: -40px;
  transform: translate(-50%,0%);
  transition: transform .3s;
  width: 58.1%;
  margin-bottom: -25px;
}
.interview_list .ttl{
  font-size: 17px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 13px;
  letter-spacing: .04em;
}
.interview_list .txt{
  font-size: 14px;
  font-weight: bold;
  color: #8B96A2;
  letter-spacing: .06em;
}

/*interview_detail*/
.interview_detail_wrap{
  position: relative;
}
.interview_detail_wrap .wrap_bg{
  background: url(../images/nt/bg_left_sp.png)no-repeat left -77px top 1206px,
  url(../images/nt/bg_right_sp.png)no-repeat right -49px top 736px;
  background-size: 116px auto,136px auto;
}
.interview_detail_wrap .teaser{
  justify-content: flex-start;
  align-items: flex-end;
  text-align: left;
  height: 530px;
  padding:  0 0 47px;
}
.interview_detail_wrap .teaser_icon04{
  left: 30px;
  top: 254px;
}
.interview_detail_wrap .teaser_icon05{
  top: 285px;
  right: -35px;
}
#nt .teaser {
  background: url(../images/nt/bg_teaser_sp.jpg)no-repeat top 30% center;
  background-size: cover;
}
#kt .teaser {
  background: url(../images/kt/bg_teaser_sp.jpg)no-repeat top 30% center;
  background-size: cover;
}
#sr2 .teaser {
  background: url(../images/sr2/bg_teaser_sp.jpg)no-repeat top 30% center;
  background-size: cover;
}
#kh .teaser {
  background: url(../images/kh/bg_teaser_sp.jpg)no-repeat top 30% center;
  background-size: cover;
}
#sr .teaser {
  background: url(../images/sr/bg_teaser_sp.jpg)no-repeat top 30% center;
  background-size: cover;
}
#kt2 .teaser {
  background: url(../images/kt2/bg_teaser_sp.jpg)no-repeat top 30% center;
  background-size: cover;
}
#ir .teaser {
  background: url(../images/ir/bg_teaser_sp.jpg)no-repeat top 30% center;
  background-size: cover;
}
.interview_detail_head{
  display: grid;
  grid-gap: 6px;
  color: #fff;
  margin-bottom: 10px;
}
.interview_detail_head .eng{
  font-size: 12px;
}
.interview_detail_head .jap{
  font-size: 23px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: .06em;
}
.interview_detail_intro{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 5px;
}
.interview_detail_intro span{
  background: #0D2239;
  color: #fff;
  padding: 2px 9px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: .06em;
}
.interview_detail_item{
  display: flex;
  grid-gap: 24px;
  flex-direction: column-reverse;
  margin-top: -15px;
  position: relative;
  z-index: 2;
}
.interview_detail_item:nth-of-type(even){
  /*flex-direction: column;*/
}
.interview_detail_item+.interview_detail_item{
  margin-top: 25px;
}
.interview_detail_item_img{
}
.interview_detail_item_img img{
  border-radius: 13px;
}
.interview_detail_item_cont{
}
.interview_detail_item_img+.interview_detail_item_cont{
}
.interview_detail_item_img_big{
  margin: 0 -20px;
}
.interview_detail_item_img_big img{
  width: 100%;
  height: 81.86vw;
  object-fit: cover;
}

.interview_detail_item_ttl{
  font-size: 17px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 0 12px;
}
.common_txt p,
.common_txt{
  font-size: 14px;
  line-height: 1.8;
  text-align: justify;
}
.common_txt p+p{
  margin-top: 25px;
}

.schedule_wrap{
  background: #fff;
  position: relative;
  border-radius: 13px;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
  padding: 30px 20px 35px 30px;  
  margin-top: 43px;
}
.schedule_head{
  line-height: 1.2;
  color: #2B62DB;
  display: grid;
}
.schedule_head .eng{
  font-size: 39px;
  line-height: 1.2;
}
.schedule_head .jap{
  font-size: 13px;
  font-weight: bold;
  letter-spacing: .06em;
}
.schedule_list{
  display: grid;
  border-left: 2px dotted #2B62DB;
  grid-gap: 39px;
  padding-bottom: 22px;
  margin: 32px 0 0 46px;
}
.schedule_list li{
  position: relative;
  margin-top: 39px;
  padding-left: 24px;
}
.schedule_list li:before{
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  transform: translate(-50%,0);
  width: 21px;
  height: 21px;
  border: 3px solid #2B62DB;
  background: #fff;
  border-radius: 50%;
}
.schedule_list_time{
  position: absolute;
  left: -1px;
  top: -39px;
  transform: translateX(-50%);
  z-index: 1;
  min-width: 90px;
  height: 26px;
  border-radius: 10px;
  background: #2B62DB;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
.schedule_list_time:before{
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 2px;
  height: 11px;
  background: #2B62DB;
}
.schedule_list_ttl{
  font-size: 17px;
  font-weight: bold;
}
.schedule_list_txt{
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.6;
}
.interview_detail_btn{
  text-align: center;
  margin-top: 33px;
}
.interview_detail_btn .btn_link01{
  font-size: 16px;
}
.schedule_icon01{
  position: absolute;
  right: 40px;
  top: -29px;
  width: 54px;
  z-index: 2;
}
.schedule_icon02{
  position: absolute;
  right: -12px;
  bottom: -31px;
  width: 82px;
  z-index: -1;
}
.schedule_note{
  display: flex;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 12px;
  line-height: 1.875;
  letter-spacing: .04em;
  margin-top: 20px;
}

/*work*/
.work_wrap{
  position: relative;
}
.work_wrap .wrap_bg{
  background: url(../images/work/bg_left_sp.png)no-repeat left -73px top 1282px,
  url(../images/work/bg_right_sp.png)no-repeat right -49px top 803px;
  background-size: 101px auto,231px auto;
}
.work_wrap .teaser {
  background: url(../images/work/bg_teaser_sp.jpg)no-repeat center center;
  background-size: cover;
  margin-bottom: -45px;
}
.work_item+.work_item{
  margin-top: 33px;
}
.work_item_head{
  margin-bottom: 21px;
}
.work_item_head span{
  display: inline-block;
  position: relative;
  padding-right: 12px;
  font-size: 22px;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: .06em;
} 
.work_item_head span:before{
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  width: 90px;
  height: 1px;
  background: currentColor;
}
.work_talk_list{
  display: grid;
  grid-gap: 15px;
}
.work_talk_list a{
  display: block;
  position: relative;
  background: #fff;
  background: url(../images/common/arrow_right_black.svg)no-repeat right 20px bottom 20px #fff;
  background-size: 16px auto;
  border-radius: 13px;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
  padding: 20px 20px 23px;  
}
.work_talk_list_top{
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.work_talk_list_point{
  padding-top: 10px;
  font-size: 15px;
  color: #2B62DB;
}
.work_talk_list_top .img_box{
  width: 206px;
  width: 54.93vw;
  max-width: calc(100% - 35px);
  padding-top: 138px;
  padding-top: 36.8vw;
  border-radius: 50px;
  border-radius: 13.3vw;
}
.work_talk_list_ttl{
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.work_talk_list_name{
  font-size: 11px;
  line-height: 1.2;
  color: #2B62DB;
}

.work_job_list{
  display: grid;
  grid-gap: 20px;
}
.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: 18px;
  top: 15px;
  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: 23px 21px;
}
.work_job_list_ttl{
  margin-top: 5px;
  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: 21px;
  font-weight: 600;
  line-height: 1.62;
  letter-spacing: .02em;
  padding: 0 10px;
}
.work_job_list_ttl.sub_ttl div{
  font-size: 12px;
  line-height: 1.66;
}
.work_job_list_categ{
  margin-top: 10px;
  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: 3px;
  transform: translateY(0%);
  width: 60px;
  height: 60px;
  background: none;
}
.work_job_list .link_arrow img{
  width: 16px;
}

/*job*/
.job_wrap{
  position: relative;
}
.job_wrap .wrap_bg{
  background: url(../images/job/bg_left_sp.png)no-repeat left -73px top 756px,
  url(../images/job/bg_right_sp.png)no-repeat right -54px top 503px;
  background-size: 101px auto,207px auto;
}
.job_wrap .teaser {
  background: url(../images/job/bg_teaser_sp.jpg)no-repeat center center;
  background-size: cover;
  margin-bottom: -90px;
}
.job_list{
  display: grid;
  grid-gap: 15px;
}
.job_list dl{
  position: relative;
  background: #fff;
  border-radius: 13px;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
  padding: 17px 17px 23px;  
  display: grid;
  grid-gap: 10px;
}
.job_list dt{
  position: relative;
}
.job_list dt img{
  border-radius: 10px;
}
.job_list dd{
}
.job_list_ttl{
  font-size: 19px;
  font-weight: bold;
  letter-spacing: .06em;
  margin-bottom: 3px;
}

/*crosstalk*/
.crosstalk_wrap{
  position: relative;
}
.crosstalk_wrap .wrap_bg{
  background: url(../images/crosstalk_1/bg_left_sp.png)no-repeat left -57px top 1015px,
  url(../images/crosstalk_1/bg_right_sp.png)no-repeat right -46px top 842px;
  background-size: 105px auto,217px auto;
}
.crosstalk_wrap .teaser{
  height: auto;
  padding: 0;
  background: none;
}
.crosstalk_wrap .teaser:before{
  height: 115px;
}
.crosstalk_teaser_img img{
  width: 100%;
}
.crosstalk_top{
  margin: -56px 0 33px;
  position: relative;
  background: #fff;
  border-radius: 13px;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
  padding: 23px 30px;  
  text-align: center;
}
.crosstalk_top .teaser_icon04{
  right: auto;
  left: 20px;
  top: -40px;
}
.crosstalk_top .teaser_icon05{
  right: -50px;
  top: 12px;
  bottom: auto;
}
.crosstalk_top_job{
  display: inline-block;
  font-size: 12px;
  line-height: 1.91;
  font-weight: bold;
  background: #2B62DB;
  color: #fff;
  border-radius: 8px;
  padding: 0 18px;
}
.crosstalk_head{
  font-size: 20px;
  line-height: 1.3;
  font-weight: bold;
  margin: 7px 0 6px;
  position: relative;
  z-index: 9;
}
.crosstalk_top_text span{
  display: inline-block;
  position: relative;
  padding: 0 15px;
  font-size: 14px;
  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: 20px;
  height: 1px;
  background: currentColor;
}
.crosstalk_top_text span:before{
  left: auto;
  right: 100%;
}

.crosstalk_item+.crosstalk_item{
  margin-top: 30px;
}
.crosstalk_img_big{
  margin: 35px -20px 40px;
}
.crosstalk_img_big img{
  width: 100%;
}
.crosstalk_item_head{
  text-align: center;
  margin-bottom: 18px;
}
.crosstalk_item_head span{
  display: inline-block;
  font-size: 19px;
  line-height: 1.5;
  font-weight: bold;
}
.crosstalk_item_head span.small_span{
  font-size: 14px;
}
.crosstalk_dl{
  display: flex;
  justify-content: space-between;
}
.crosstalk_box+.crosstalk_dl,
.crosstalk_dl+.crosstalk_box{
  margin-top: 28px;
}
.crosstalk_dl+.crosstalk_dl{
  margin-top: 15px;
}
.crosstalk_dl dt{
  width: 45px;
}
.crosstalk_dl dt img{
  border-radius: 50%;
}
.crosstalk_dl dd{
  width: calc(100% - 45px - 12px);
  display: flex;
  align-items: center;
}
.crosstalk_box{
  display: grid;
  grid-gap: 25px;
}
.crosstalk_box_img img{
  border-radius: 13px;
}


/*top*/
.main_visual{
  color: #fff;
  text-align: center;
  position: relative;
}
.main_visual_icon{
  content: '';
  position: absolute;
  left: calc(50% - 13px - 223px);
  top: -27px;
  width: 478px;
  height: 930px;
  z-index: 3;
  background: url(../images/top/before_mv_sp.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_sp.jpg)no-repeat center center;
  background-size: cover;
}
.main_visual_bg:after{
  content: '';
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url(../images/top/bg_mv02.png)no-repeat top center;
  background-size: cover;
  transition: opacity 1s;
}
header.scroll+main .main_visual_bg:after{
  transition: opacity 1s .1s;
  opacity: 1;
}
.main_visual_sec01{
  height: 100dvh;
  height: calc(100dvh - 63px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-bottom: 45px;
}
.main_visual_sec01 .container{
  z-index: 4;
}
.main_visual_news{
  position: absolute;
  left: 0;
  bottom: 63px;
  bottom: 0;
  padding: 20px;
  z-index: 3;
  width: 100%;
}
.main_visual_news a{
  display: block;
  border-radius: 8px;
  background: rgba(255,255,255,.85);
  padding: 16px;
  width: 100%;
}
.main_visual_news_head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  letter-spacing: .03em;
}
.main_visual_news_categ{
  font-size: 11px;
  display: flex;
  align-items: center;
  background: #2B62DB;
  color: #fff;
  padding: 0 10px;
  height: 19px;
  border-radius: 12px;
}
.main_visual_news_date{
  font-size: 12px;
  color: #667381;
}
.main_visual_news_text{
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
  letter-spacing: .06em;

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.main_visual_sec01_svg img{
  width: 182px;
}
.main_visual_sec01_eng{
  font-size: 30px;
  line-height: 1.2;
  margin: -19px 0 9px;
}
.main_visual_sec01_jap{
  line-height: 1.5;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: .44em;
}

.main_visual_sec02{
  position: relative;
  padding: 90px 0 200px;
}
.main_visual_sec02:before{
  content: '';
  z-index: 1;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 184px;
  background: url(../images/common/bg_linear.png)no-repeat;
  background-size: 100% 100%;
}
.main_visual_sec02_title{
  font-size: 23px;
  line-height: 1.565;
  font-weight: bold;
  letter-spacing: .06em;
  margin-bottom: 25px;
}
.main_visual_sec02_text{
  font-size: 15px;
  line-height: 2.3;
}

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

.top_about{
  position: relative;
  z-index: 2;
  padding: 0 0 34px;
}
.top_about_icon{
  content: '';
  position: absolute;
  left: calc(50% - 3px - 210px);
  top: -176px;
  width: 419px;
  height: 950px;
  z-index: 1;
  background: url(../images/top/before_about_sp.png)no-repeat top center;
  background-size: 100% auto;
  pointer-events: none;
}
.top_about .container{
  padding-top: 87px;
}
.top_about img{
  border-radius: 12px;
}
.top_about_img01{
  position: absolute;
  right: 146px;
  top: -110px;
  width: 199px;
}
.top_about_img02{
  position: absolute;
  right: -50px;
  top: -33px;
  width: 167px;
}
.top_about_img03{
  position: absolute;
  right: 22px;
  top: 184px;
  width: 149px;
}
.top_hd{
  display: flex;
  flex-direction: column;
  color: #2B62DB;
  grid-gap: 3px;
  position: relative;
  z-index: 3;
}
.top_hd .jap{
  font-size: 14px;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: .06em;
}
.top_hd .eng{
  font-size: 47px;
  line-height: 1.2;
}
.top_text{
  font-size: 19px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: .06em;
  position: relative;
  z-index: 3;
}
.top_about_text{
  margin: 35px 0 70px 13px;
}
.top_about_list{
  display: grid;
  grid-gap: 10px;
}
.top_about_list a{
  display: flex;
  align-items: center;
  min-height: 65px;
  padding: 17px 43px 17px 20px;
  border-radius: 13px;
  background: url(../images/common/arrow_right_blue.svg)no-repeat right 17px center #fff;
  background-size: 15px auto;
  font-size: 16px;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: .06em;
  box-shadow: 4px 4px 13px rgba(13,28,39,.05);
}
.top_work{
  padding: 33px 0 70px;
  position: relative;
}
.top_work_icon{
  content: '';
  position: absolute;
  left: calc(50% + 11px - 235px);
  top: 190px;
  width: 470px;
  height: 1650px;
  z-index: 1;
  background: url(../images/top/before_work_sp.png)no-repeat top center;
  background-size: 100% auto;
  pointer-events: none;
}
.top_work_text{
  margin: 11px 0 22px;
}

.top_environment{
  background: #E0E7EB;
  border-radius: 0 50px 0 0;
  padding: 69px 0 61px;
  position: relative;
}
.top_environment_icon{
  content: '';
  position: absolute;
  left: calc(50% - 12px - 233px);
  top: -43px;
  width: 466px;
  height: 600px;
  z-index: 1;
  background: url(../images/top/before_environment_sp.png)no-repeat top center;
  background-size: 100% auto;
  pointer-events: none;
}
.top_environment_link a{
  margin-top: 27px;
  min-height: 272px;
  padding: 40px 25px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 13px;
  background: url(../images/top/img_environment_sp.jpg)no-repeat right center;
  background-size: cover;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.top_environment_title{
  font-size: 18px;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 11px;
  position: relative;
  z-index: 3;
}
.top_environment_txt{
  font-size: 12px;
  line-height: 1.6;
  position: relative;
  z-index: 3;
}

.cl-button {
  position: absolute;
  width: 41px;
  height: 41px;
  width: 200%;
  height: 400%;
  right: 20px;
  bottom: 20px;
  transform: translate(50%,50%);
  z-index: 1;
  overflow: hidden;
  transform-origin: bottom right;
  transition: all .5s ease .05s,border-radius .3s ease 0s;
  border-radius: 0;
  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: 20px;
  right: 20px;
  font-size: 0;
  display: flex;
  opacity: 0;
  transform: translate3d(-22px,0,0);
  width: 41px;
  height: 41px;
}

.cl-arrow02 img,
.cl-arrow img {
    width: 13px;
    margin: auto;
}
.cl-arrow02{
  background: #fff;
  opacity: 1;
  border-radius: 50%;
  transform: translate3d(0,0,0);
  transition: opacity .5s ease;
}

.top_interview{
  padding: 67px 0 71px;
  text-align: center;
  position: relative;
}
.top_interview_icon{
  content: '';
  position: absolute;
  left: calc(50% - 8px - 218px);
  top: 167px;
  width: 435px;
  height: 1030px;
  z-index: 1;
  background: url(../images/top/before_interview_sp.png)no-repeat top center;
  background-size: 100% auto;
  pointer-events: none;
}
.top_interview_text{
  margin: 11px 0 50px;
}

.top_interview .interview_list{
  margin: 0;
  grid-gap: 44px 12px;
  grid-template-columns: repeat(2,1fr);
}
.top_interview .interview_list li:nth-of-type(even){
  position: relative;
  top: 38px;
}
.top_interview .interview_list .img{
  width: 79%;
  top: -29px;
  margin-bottom: -20px;
}
.top_interview .interview_list .ttl{
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 7px;
  min-height: 4.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top_interview .interview_list .txt{
  font-size: 10px;
}
/*0109*/
.schedule_icon01,
.schedule_icon02,
.wrap_bg,
.common_bottom_icon,
.teaser_icon,
.js_rellax {
  -webkit-transition: -webkit-transform 300ms ease-out;
  transition: -webkit-transform 300ms ease-out;
  transition: transform 300ms ease-out;
  transition: transform 300ms ease-out, -webkit-transform 300ms ease-out;
}

.minute_list_img img{
  width: 100%;
}
.modal_iframe {
  position: relative;
  width: 100%;
  padding-top: 56%;
}
.modal_iframe iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.minute_list .obj{
  position: absolute;
  font-family: "Figtree", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  color: #2B62DB;
  font-size: 13.33vw;
  line-height: 1.2;
}

.minute_list li:nth-of-type(1) .obj01{
  font-size: 8.8vw;
  right: 70%;
  bottom: 27.7%;
}
.minute_list li:nth-of-type(1) .obj02{
  font-size: 14.4vw;
  right: 26.83%;
  bottom: 22%;
}

.minute_list li:nth-of-type(2) .obj01{
  font-size: 12.53vw;
  right: 71.94%;
  bottom: 21.1%;
}
.minute_list li:nth-of-type(2) .obj02{
  font-size: 12.53vw;
  right: 25.82%;
  right: 27.82%;
  bottom: 21.1%;
}

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

.minute_list li:nth-of-type(4) .obj01{
  font-size: 10.13vw;
  right: 62.39%;
  bottom: 17.27%;
}
.minute_list li:nth-of-type(4) .obj02{
  font-size: 10.13vw;
  right: 11.94%;
  bottom: 17.27%;
  color: #FF7C7C;
}

.minute_list li:nth-of-type(5) .obj{
  font-size: 7.2vw;
}
.minute_list li:nth-of-type(5) .obj01{
  right: 72%;
  bottom: 69%;
}
.minute_list li:nth-of-type(5) .obj02{
  right: 82%;
  bottom: 35.17%;
}
.minute_list li:nth-of-type(5) .obj03{
  right: 63.5%;
  bottom: 9.06%;
}
.minute_list li:nth-of-type(5) .obj04{
  right: 14.39%;
  bottom: 12.9%;
}
.minute_list li:nth-of-type(5) .obj05{
  right: 16%;
  bottom: 61.7%;
}

.minute_list li:nth-of-type(6) .obj{
  font-size: 7.2vw;
}
.minute_list li:nth-of-type(6) .obj01{
  right: 74%;
  bottom: 67.5%;
}
.minute_list li:nth-of-type(6) .obj02{
  right: 80.04%;
  bottom: 15%;
}
.minute_list li:nth-of-type(6) .obj03{
  right: 15%;
  bottom: 10.15%;
}

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

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

.minute_list li:nth-of-type(9) .obj01{
  right: 26.35%;
  right: 32.35%;
  bottom: 16.28%;
}

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

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