@charset "utf-8";
.vis_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px;
  text-shadow: 0 0 10px #014099;
}
.vis_head {
  color: #fff;
  font-size: 4rem;
  font-weight: normal;
  line-height: 1.5;
}
.vis_com {
  font-size: var(--fs-20);
  margin-top: 30px;
  color: #fff;
  font-weight: normal;
}

.welfare {
  display: flex;
  justify-content: space-between;
  flex-wrap:wrap;
  margin-top: 40px;
  gap: 20px 10px;
}
.wel_card {
  max-width: 236px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wel_bold{
  font-size: var(--fs-24);
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  margin-top: 15px;
}
.wel_com {
  width: 100%;
  margin-top: 15px;
}

.article.com_bg{
  margin-top: 60px;
  padding-bottom: 60px;
}
.entry {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 850px;
  width: 100%;
  margin: 40px auto 0;
  padding-bottom: 40px;
  border-radius: 29px;
  box-shadow: 0 0 30px #187FC48A;
  background: url(../img/bg_02.png) no-repeat center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  font-size: var(--fs-24);
  font-weight: bold;
  text-align: center;
  color: var(--deep-blue);
  min-height: 292px;
  &::after{
    content: '';
    display: block;
    width: 33px;
    height: 33px;
    background: url(../img/arrow_blue.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    right: 150px;
  }
}
.entry_img {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: -100px;
  pointer-events: none;
}


.bnr {
  display: flex;
  align-items: center;
  max-width: 850px;
  width: 100%;
  margin: 40px auto;
  border-radius: 29px;
  box-shadow: 0 0 30px #CC003333;
  position: relative;
  overflow: hidden;
  &::after{
    content: '';
    display: block;
    width: 33px;
    height: 33px;
    background: url(../img/arrow.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    right: 35px;
    bottom: 40px;
  }
}
.bnr_img {
  position: relative;
  &::after{
    content: '';
    display: block;
    width: 100px;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg,transparent,#fff);
  }
}
.bnr_data{
  padding-left: 40px;
}
.bnr_bold {
  font-size: var(--fs-24);
  font-weight: bold;
  color: #c03;
}
.bnr_com{
  color: var(--txt-color);
  margin-top: 5px;
}
@media screen and (max-width: 767px){
.vis_inner {
  padding: 0 5% 20px;
}
.vis_head {
  font-size: min(4rem, 5vw);
}
.vis_com {
  font-size: min(2rem, 4vw);
  margin-top: 10px;
}


.welfare {
  justify-content: center;
}
.entry {
  padding: 0 5% 40px;
  &::after {
    right: 5%;
    top: 15px;
  }
}
.bnr {
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
  overflow: hidden;
  &::after{
    bottom: 10px;
    right: 15px;
  }
}
.bnr_img {
  position: relative;
  &::after{
    content: '';
    display: block;
    width: 100%;
    height: 60px;
    position: absolute;
    background: linear-gradient(180deg,transparent,#fff);
  }
}
.bnr_data {
  padding: 20px 0 60px;
}
}