#logout {
  color: #fff;
}
#logout .mv {
  background-image: url(../img/index/mv_bg.webp);
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding: 0;
  text-align: center;
  margin: 0 calc(50% - 50vw);
  margin-top: -2rem;
  width: 100vw;
  height: 45vw;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #logout .mv {
    height: 60vw;
    background-image: url(../img/index/mv_bg_sp.webp);
    background-size: 100%;
  }
}
#logout .mv img {
  width: 100%;
  max-width: 30%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  #logout .mv img {
    max-width: 50%;
  }
}
#logout .inner {
  max-width: 1000px;
  margin: auto;
  padding-top: 3rem;
}
#logout .inner .img {
  margin-bottom: 4rem;
}
#logout .inner .img img {
  margin: auto;
}
#logout .inner .img .pc {
  display: block;
}
@media screen and (max-width: 767px) {
  #logout .inner .img .pc {
    display: none;
  }
}
#logout .inner .img .sp {
  display: none;
}
@media screen and (max-width: 767px) {
  #logout .inner .img .sp {
    display: block;
  }
}
#logout .inner .txt {
  max-width: 80%;
  margin: auto;
  margin-bottom: 4rem;
}
#logout .inner .txt span {
  display: block;
  font-size: clamp(1rem, 2vw, 1.8rem);
  font-weight: bolder;
  text-align: center;
}
#logout .inner .point {
  background-image: url(../img/index/point_bg.webp);
  background-repeat: no-repeat;
  background-size: 100% auto;
  margin: 0 calc(50% - 50vw);
  padding: 4rem 0;
}
@media screen and (max-width: 767px) {
  #logout .inner .point {
    padding: 1rem 2rem;
    background-size: cover;
  }
}
#logout .inner .point span {
  font-size: clamp(1rem, 2vw, 1.8rem);
  display: block;
  margin-bottom: 1.5rem;
  text-align: center;
}
#logout .inner .point .row {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
@media screen and (max-width: 767px) {
  #logout .inner .point .row {
    grid-template-columns: repeat(2, 1fr);
  }
}
#logout .inner .point .row::before {
  display: none;
}
#logout .inner .point .row .col .box {
  background-color: #fff;
  background-position: center bottom 40px;
  background-repeat: no-repeat;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  height: 150px;
  color: #000;
}
#logout .inner .point .row .col .box > p {
  text-align: center;
  padding-top: 85px;
}
#logout .inner .point .row .col > p {
  text-align: left;
  line-height: 1.2;
}
#logout .inner .point .row .col:nth-of-type(1) .box {
  background-image: url(../img/index/point01.webp);
}
#logout .inner .point .row .col:nth-of-type(2) .box {
  background-image: url(../img/index/point02.webp);
}
#logout .inner .point .row .col:nth-of-type(3) .box {
  background-image: url(../img/index/point03.webp);
}
#logout .inner .point .row .col:nth-of-type(4) .box {
  background-image: url(../img/index/point04.webp);
}
#logout .inner .reg {
  padding: 3rem 0;
  text-align: center;
}
#logout .inner .reg .btn {
  margin-bottom: 2rem;
}
#logout .inner .reg .btn a {
  display: inline-block;
  background: #333;
  background-image: url(../img/index/btn_icon.webp);
  background-repeat: no-repeat;
  background-position: left 20px center;
  padding: 1rem 120px;
  border-radius: 100px;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: #fff;
}
#logout .inner .reg .login a {
  color: #fff;
  display: inline-block;
  text-decoration: underline;
}