@charset "UTF-8";

/*-------------------------------------------
common
-------------------------------------------*/
:root {
  --green: #129459;
  --red: #FF3301;
}
body {
  line-height: 1.5;
}
.container {
  max-width: 1000px;
  padding-inline: 20px;
  margin-inline: auto;
}
.smartphone-heading {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: bold;
  color: var(--green);
}
.smartphone-text {
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 600;
  line-height: 1.8;
  text-align: justify;
}

/*-------------------------------------------
mv
-------------------------------------------*/
.page-mv {
  background-image: url(../img/smartphone/smartphone-mv.jpg);
}

/*-------------------------------------------
スマートフォン
-------------------------------------------*/
.smartphone {
  margin-bottom: 80px;
}
.smartphone-lead {
  margin-bottom: 165px;
}
.smartphone .page-section-title {
  margin-bottom: 50px;
}

.smartphone-img-flex {
  max-width: 800px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.smartphone-img-flex img {
  width: 50%;
  max-width: 520px;
}
.smartphone-lead .smartphone-heading {
  text-align: center;
  margin-bottom: 20px;
}
.smartphone-download {
  display: flex;
  gap: 3.75%;
  justify-content: center;
  margin-bottom: 20px;
}
.smartphone-download  a {
  display: block;
  width: 220px;
  height: 66px;
}
.smartphone-download img {
  width: 100%;
  height: 100%;
}
.smartphone-lead .smartphone-text {
  padding-inline: 100px;
}
.smartphone-inner {
  display: grid;
  grid-template-columns: 1fr 36.7%;
  gap: 0 5%;
  margin-bottom: 0;
}
.smartphone-inner .smartphone-heading {
  margin-bottom: 25px;
}
.smartphone-inner .smartphone-text {
  margin-bottom: 80px;
}
.smartphone-img {
  margin-bottom: 40px;
}
.smartphone-imgarea {
  max-width: 440px;
}


/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 767px) {
  /* common
  -------------------------------------------*/
  .smartphone-heading {
    font-size: clamp(20px, 4.2vw, 24px);
  }
  .smartphone-text {
    font-size: clamp(16px, 2.9vw, 18px);
    line-height: 1.8;
  }

  /* mv
  -------------------------------------------*/
  .page-mv {
    background-image: url(../img/smartphone/smartphone-mv-sp.jpg);
  }

    /* スマートフォン
  -------------------------------------------*/
  .smartphone {
    margin-bottom: 20px;
  }
  .smartphone-lead {
    margin-bottom: 60px;
  }
  .smartphone-img-flex {
    margin-bottom: 20px;
  }
  .smartphone-download {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .smartphone-download  a {
    width: 167px;
    height: 50px;
  }
  .smartphone-lead .smartphone-text {
    padding-inline: 0;
  }
  .smartphone-textarea,
  .smartphone-imgarea {
    display: contents;
  }
  .smartphone-inner {
    grid-template-columns: 1fr;
    /* gap: 5%; */
    margin-bottom: 0;
  }
  .smartphone-img:nth-of-type(1) {
    grid-area: 2/1/3/2;
  }
  .smartphone-img:nth-of-type(2) {
    grid-area: 7/1/8/2;
  }
  .smartphone-img:nth-of-type(3) {
    grid-area: 10/1/11/2;
  }
  .smartphone-inner .smartphone-heading {
    text-align: center;
    margin-bottom: 15px;
  }
  .smartphone-inner .smartphone-text {
    margin-bottom: 40px;
  }
  .smartphone-img {
    margin-bottom: 20px;
  }
}