@charset "utf-8";
main{
  padding-bottom: var(--sp-100);
}
.page_visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.vis_inner {
  position: absolute;
  text-align: center;
  color: #fff;
  line-height: 1.5;
}
.vis_head{
  font-size: var(--fs-40);
  letter-spacing: var(--ls);
  .str{
    font-size: var(--fs-48);
  }
}
.vis_com{
  margin-top: 20px;
  font-size: var(--fs-24);
  letter-spacing: var(--ls_s);
}


.intro{
  padding: 60px 0;
  overflow: hidden;
}
.intro_flex{
  display: flex;
  max-width: 1024px;
  width: 90%;
  margin: auto;
  gap: 20px 10px;
  justify-content: space-between;
}
.intro_left{
  max-width: 589px;
  width: 100%;
}
.intro_head{
  font-size: var(--fs-24);
  font-weight: bold;
}
.intro_sc{
  display: flex;
  width: max-content;
  animation: scroll_left 90s linear infinite;
  margin-top: 60px;
}
.intro_sc img{
  display: block;
}
@keyframes scroll_left{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-50%);
  }
}

.strength {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 60px 0 90px;
}
.str_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 4px;
  width: calc((100% / 3) - (40px / 3));
  padding: 50px 30px 30px;
  position: relative;
}
.str_num {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--fs-24);
  background: var(--main-blue);
  width: 47px;
  height: 47px;
  border-radius: 4px;
  color: #fff;
  position: absolute;
  top: -23px;
}
.str_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 130px;
  padding: 10px;
}
.str_name {
  text-align: center;
  font-size: var(--fs-24);
  font-weight: bold;
}
.str_com {
  margin-top: 20px;
}
figure.center{
  display: flex;
  justify-content: center;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 60px;
}
.menu_card{
  max-width: 328px;
  width: 100%;
  background: #F4F6FB;
  border-radius: 10px;
}
.menu_plate {
  padding: 20px 60px 20px 15px;
  line-height: 1.5;
  color: var(--txt-color);
  position: relative;
  &::after{
    content: '';
    background: url(../img/arrow.svg) no-repeat center;
    background-size: contain;
    width: 33px;
    height: 33px;
    position: absolute;
    top: calc(50% - 16.5px);
    right: 15px;
  }
}
.menu_name {
  font-size: var(--fs-24);
  font-weight: bold;
  margin-bottom: 10px;
}

.mov{
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
}
@media screen and (max-width: 767px){
.page_visual{
  figure{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    img{
      max-width: none;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
    }
  }
}
.vis_inner{
  position: relative;
  width: 90%;
  margin: auto;
  padding: 40px 0;
}
.vis_head {
  font-size: min(3.2rem, 9vw);
  .str{
    font-size: min(3.6rem, 11vw);
  }
}
.vis_com {
  font-size: min(1.6rem);
  text-align: left;
}
.intro_flex {
  flex-direction: column;
  align-items: center;
}
.strength {
  gap: 40px 0;
}
.str_card {
  width: 100%;
  padding: 30px 5%;
}
.menu {
  gap: 20px 10px;
}
.menu_card {
  width: calc(50% - 5px);
  position: relative;
}
.menu_plate {
  position: static;
  padding: 10px 5% 40px;
  &::after{
    width: 27px;
    height: 27px;
    top: auto;
    right: 10px;
    bottom: 10px;
  }
}
.mov {
  flex-direction: column;
  align-items: center;
  gap: 30px;
  video{
    max-width: 100%;
  }
}
}