@charset "utf-8";
:root{
  --vis-color:#002A63;
}
main{
  padding-bottom: var(--sp-100);
}
.page_visual {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #909090;
}
.vis_inner {
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 50px 100px;
  position: relative;
  width: 100%;
}

.vis_head{
  color: var(--vis-color);
  font-size: var(--fs-40);
  letter-spacing: var(--ls);
  .str{
    font-size: var(--fs-48);
  }
}
.vis_head {
  position: absolute;
  top: 100px;
  right: 60px;
}

.intro{
  padding: 60px 0;
  overflow: hidden;
}
.intro_flex{
  display: flex;
  max-width: 1024px;
  width: 90%;
  margin: auto;
  gap: 20px 10px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.intro_left{
  max-width: 589px;
  width: 100%;
}
.intro_head{
  font-size: var(--fs-24);
  font-weight: bold;
}


.strength {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 30px 0 0px;
}
.str_card {
  display: flex;
  flex-wrap: wrap;
  gap:20px 30px;
  background: #F4F4F4;
  width: 100%;
  padding: 40px 35px;
  position: relative;
}
.str_num {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--fs-24);
  background: var(--main-blue);
  min-width: 40px;
  width: 40px;
  height: 47px;
  border-radius: 4px;
  color: #fff;
}
.str_box{
  max-width: 413px;
  width: 100%;
}
.str_name {
  font-size: var(--fs-24);
  font-weight: bold;
  line-height: 1.5;
}
.str_com {
  margin-top: 20px;
}
figure.center{
  display: flex;
  justify-content: center;
}

.flow{
  margin-top: 40px;
}
.flow_inner{
  display: flex;
  flex-direction: column;
  gap:60px;
  padding-left: 75px;
  position: relative;
  &::before{
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background: var(--deep-blue);
    position: absolute;
    top: 0;
    left: 7px;
  }
}
.flow_row{
  width: 100%;
  position: relative;
}
.flow_head{
  font-size: var(--fs-24);
  color: var(--deep-blue);
  position: relative;
  display: flex;
  align-items: center;
  &::before{
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--deep-blue);
    position: absolute;
    left: -75px;  
  }
  &::after{
    content: '';
    display: block;
    width: 50px;
    height: 0;
    border-bottom: 1px dashed #707070;
    position: absolute;
    left: -55px;
  }
}
.flow_com{
  margin-top: 10px;
}

.np_menu {
  max-width: 1024px;
  margin: auto;
  width: 90%;
  margin-top: 60px;
  border-top: 1px solid #707070;
  padding-top: 60px;
}
.np_flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap-reverse;
  gap: 30px 60px;
}
.np_col {
  max-width: 392px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.np_head {
  font-size: var(--fs-24);
  font-weight: bold;
}
.np_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--deep-blue);
  font-size: var(--fs-24);
  width: 100%;
  height: 60px;
  margin-top: 20px;
  border-radius: 10px;
  padding: 15px 30px;
  color: #fff;
  &::after{
    content: '';
    background: #fff url(/ems/img/arrow_btn.svg) no-repeat center left 8px;
    display: block;
    min-width: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
  }
  &.prev{
    flex-direction: row-reverse;
    background: #707070;
    &::after{
      transform: rotate(180deg);
      filter: grayscale(1);
    }
  }
}
@media screen and (max-width: 767px){
.vis_inner {
  padding: 40px 5% 40px 0;
}
.vis_head {
  font-size: min(3.2rem, 5vw);
  right: 2.5%;
  top: 10%;
}
.intro_flex {
  flex-direction: column;
  align-items: center;
}

.str_card {
  padding: 20px 5% 30px;
  gap:20px 15px;
}
.str_num {
  min-width: 30px;
  width: 30px;
  height: 36px;
}
.str_box {
  max-width: calc(100% - 45px);
  margin-top: 5px;
}
.flow_inner {
  padding-left: 25px;
}
.flow_head{
  align-items: flex-start;
  &::before{
    left: -25px;
    top: 8px;
  }
  &::after{
    display: none;
  }
}
}