@charset "UTF-8";
body {
  box-sizing: border-box;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
}

header, footer {
  box-sizing: border-box;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.5;
}

section, div {
  box-sizing: border-box;
}

ul, li, p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .is-onlyPC {
    display: inline-block;
  }

  .is-onlySP {
    display: none;
  }

  .header {
    z-index: 10;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    padding: 16px 20px;
    background: #fff;
  }

  .car-premier {
    display: flex;
    justify-content: center;
    padding: 60px 0 50px;
    background: #efefef;
  }
  .car-premier__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    gap: 30px;
  }
  .car-premier__link {
    color: #111;
    font-size: 14px;
    font-weight: bold;
    text-decoration: underline;
    transition: 0.3s;
  }
  .car-premier__link:hover {
    color: #E60012;
  }

  .premier {
    display: flex;
    justify-content: center;
    padding: 60px 70px;
    background: #f5f3eb;
  }
  .premier__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1000px;
  }
  .premier__text {
    max-width: 1000px;
    margin: 20px auto 0;
  }
  .premier__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    margin: 20px auto 0;
    padding: 10px 10px;
    border: 2px solid #E60012;
    border-radius: 100vh;
    color: #E60012;
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s;
  }
  .premier__button:hover {
    background: #efefef;
  }

  .copyright {
    padding: 10px 0;
    background: #111;
    color: #fff;
    text-align: center;
  }

  .about__inner {
    display: flex;
    justify-content: end;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 0 0 500px;
  }
  .about__inner::before {
    content: "";
    position: absolute;
    top: 20px;
    left: -150px;
    width: 860px;
    height: 500px;
    background: url("../images/img_about.png") no-repeat center/contain;
  }
  .about__box {
    max-width: 500px;
    margin: 50px 0 140px;
  }
  .about__text {
    font-size: 18px;
    line-height: 2;
  }

  .about-headding {
    font-size: 40px;
    font-weight: 900;
  }
  .about-headding__color {
    color: #E60012;
  }

  .cta__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 0;
  }
  .cta__box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 48px 0 0;
    gap: 80px;
  }
  .cta__logo {
    display: flex;
    justify-content: space-between;
    margin: 56px 0 0;
  }
  .cta__text-area {
    width: 520px;
  }
  .cta__text {
    margin: 24px 0 0;
    font-size: 16px;
  }
  .cta__text:first-child {
    margin: 32px 0 0;
  }

  .cta-heading {
    font-size: 40px;
    font-weight: 900;
    text-align: center;
  }
  .cta-heading__sub {
    position: relative;
    font-size: 28px;
    font-weight: 900;
    text-align: center;
  }
  .cta-heading__sub::after {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: -24px;
    left: 50%;
    width: 48px;
    height: 8px;
    transform: translateX(-50%);
    border-radius: 100vh;
    background: linear-gradient(90deg, #E60012, #FF974D);
  }

  .download {
    padding: 16px 0;
    background: #E60012;
    color: #fff;
    font-weight: 900;
  }
  .download__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 48px;
  }
  .download__box {
    display: flex;
    flex-direction: row;
    gap: 32px;
  }
  .download__logo {
    display: flex;
    position: relative;
    gap: 3%;
  }
  .download__appstore, .download__google, .download__qr {
    width: 100%;
    height: auto;
  }
  .download__appstore {
    max-width: 163px;
    flex: 1;
  }
  .download__google {
    max-width: 203px;
    flex: 1;
  }
  .download__qr {
    max-width: 60px;
    flex: 0 0 auto;
  }

  .download-heading {
    font-size: 18px;
    font-weight: bold;
  }

  .feature {
    background: #E60012;
  }
  .feature__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 72px 0 80px;
  }
  .feature__box {
    display: flex;
    flex-wrap: wrap;
    margin: 48px 0 0;
    gap: 32px;
  }
  .feature__item {
    box-sizing: border-box;
    width: calc((100% - 32px) / 2);
    padding: 24px 32px;
    background: #fff;
    border-radius: 16px;
  }
  .feature__title-area {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.5;
    gap: 24px;
  }
  .feature__text {
    margin: 24px 0 0;
    font-size: 16px;
  }
  .feature__note {
    position: relative;
    margin: 8px 0 0;
    font-size: 14px;
    text-indent: -1em;
    padding-left: 1em;
  }
  .feature__note::before {
    content: "※";
  }

  .feature-heading {
    color: #fff;
    font-size: 40px;
    font-weight: 900;
    text-align: center;
  }

  .follow {
    z-index: 10;
    position: sticky;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.9);
    font-weight: 900;
  }

  .hero {
    background: linear-gradient(90deg, #fafafa, #e7e7E7);
  }
  .hero__inner {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
  }
  .hero__logo {
    width: 100%;
    max-width: 376px;
    height: auto;
  }
  .hero__image {
    display: inline-block;
    flex: 0 1 auto;
    max-width: 500px;
    height: auto;
  }

  .hero-heading {
    display: flex;
    flex: 0 1 460px;
    flex-direction: column;
    margin: 71px 0 0;
    font-size: 40px;
    font-weight: 900;
    gap: 16px;
  }

  .slider {
    position: relative;
    width: 290px;
  }
  .slider::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: -16px;
    left: -19px;
    width: 329px;
    height: 599px;
    background: url("../images/img_smartphone.png") center/100% 100% no-repeat;
    z-index: 1;
  }
  .slider__item {
    margin: 0;
    padding: 0;
  }
  .slider__image {
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 30px;
  }

  .slick-dots {
    bottom: -55px;
  }

  .slick-dots li button:before {
    font-size: 14px;
  }

  .autoplay-buttons[data-play="play"]:before,
  .autoplay-buttons[data-play="stop"]:before {
    content: "";
    display: inline-block;
    position: relative;
    top: 13px;
    left: 10px;
    width: 30px;
    height: 30px;
  }

  .autoplay-buttons[data-play="play"]:before {
    background: url("../images/ico_play.svg") no-repeat center/contain;
  }

  .autoplay-buttons[data-play="stop"]:before {
    background: url("../images/ico_pause.svg") no-repeat center/contain;
  }
}
@media screen and (max-width: 767px) {
  .is-onlyPC {
    display: none;
  }

  .is-onlySP {
    display: inline-block;
  }

  .header {
    width: 100%;
    padding: 16px 20px;
    background: #fff;
  }

  .car-premier {
    display: flex;
    justify-content: center;
    padding: 60px 0 50px;
    background: #efefef;
  }
  .car-premier__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1000px;
    gap: 30px;
  }
  .car-premier__link {
    color: #111;
    font-size: 14px;
    font-weight: bold;
    text-decoration: underline;
    transition: 0.3s;
  }
  .car-premier__link:hover {
    color: #E60012;
  }

  .premier {
    display: flex;
    justify-content: center;
    padding: 60px 70px;
    background: #f5f3eb;
  }
  .premier__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1000px;
  }
  .premier__text {
    max-width: 1000px;
    margin: 20px auto 0;
  }
  .premier__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    margin: 20px auto 0;
    padding: 10px 10px;
    border: 2px solid #E60012;
    border-radius: 100vh;
    color: #E60012;
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s;
  }
  .premier__button:hover {
    background: #efefef;
  }

  .copyright {
    padding: 10px 0;
    background: #111;
    color: #fff;
    text-align: center;
  }

  .about {
    overflow: hidden;
    position: relative;
  }
  .about::before {
    content: "";
    z-index: 1;
    position: absolute;
    left: 50%;
    bottom: -20px;
    width: 860px;
    height: 300px;
    transform: translateX(-45%);
    background: url("../images/img_about.png") no-repeat center/contain;
  }
  .about__inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 24px 16px 260px;
  }
  .about__box {
    max-width: 500px;
    margin: 24px 0 0;
  }
  .about__text {
    margin: 24px 0;
    font-size: 18px;
    line-height: 2;
  }

  .about-headding {
    font-size: 24px;
    font-weight: 900;
    text-align: center;
  }
  .about-headding__color {
    color: #E60012;
  }

  .cta__inner {
    width: 100%;
    padding: 40px 16px;
  }
  .cta__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 16px 0;
    gap: 60px;
  }
  .cta__logo {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 48px 0 0;
  }
  .cta__text {
    margin: 24px 0 0;
    font-size: 16px;
  }
  .cta__text:first-child {
    margin: 32px 0 0;
  }

  .cta-heading {
    font-size: 24px;
    font-weight: 900;
    text-align: center;
  }
  .cta-heading__sub {
    position: relative;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
  }
  .cta-heading__sub::after {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: -24px;
    left: 50%;
    width: 48px;
    height: 8px;
    transform: translateX(-50%);
    border-radius: 100vh;
    background: linear-gradient(90deg, #E60012, #FF974D);
  }

  .download {
    padding: 16px 0;
    background: #E60012;
    color: #fff;
    font-weight: 900;
  }
  .download__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 8px;
  }
  .download__box {
    display: flex;
    flex-direction: row;
    gap: 24px;
  }
  .download__logo {
    display: flex;
    gap: 24px;
  }
  .download__appstore, .download__google {
    width: auto;
    height: 40px;
  }
  .download__qr {
    display: none;
  }

  .download-heading {
    font-size: 16px;
    font-weight: bold;
  }

  .feature {
    margin-top: -45px;
    background: #E60012;
  }
  .feature__inner {
    width: 100%;
    padding: 64px 16px 40px;
  }
  .feature__box {
    display: flex;
    flex-direction: column;
    margin: 24px 0 0;
    gap: 16px;
  }
  .feature__item {
    box-sizing: border-box;
    width: 100%;
    padding: 24px 16px;
    background: #fff;
    border-radius: 16px;
  }
  .feature__title-area {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.5;
    gap: 24px;
  }
  .feature__icon {
    width: 70px;
    height: 70px;
  }
  .feature__text {
    margin: 8px 0 0;
    font-size: 16px;
  }
  .feature__note {
    position: relative;
    margin: 8px 0 0;
    font-size: 14px;
    text-indent: -1em;
    padding-left: 1em;
  }
  .feature__note::before {
    content: "※";
  }

  .feature-heading {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    text-align: center;
  }

  .follow {
    z-index: 10;
    position: sticky;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.9);
    font-weight: 900;
  }

  .hero {
    display: flex;
    flex-direction: column;
    background: linear-gradient(90deg, #fafafa, #e7e7E7);
  }
  .hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto -40px;
  }
  .hero__logo {
    width: 172px;
    height: auto;
    margin: 0 auto;
  }
  .hero__image {
    display: inline-block;
    position: relative;
    top: -40px;
    width: 100%;
    max-width: 260px;
    height: auto;
  }

  .hero-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    gap: 8px;
  }

  .slider {
    position: relative;
    width: 166px;
  }
  .slider::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: -9px;
    left: -8px;
    width: 182px;
    height: 340px;
    background: url("../images/img_smartphone.png") center/100% 100% no-repeat;
    z-index: 1;
  }
  .slider__image {
    width: 165px;
    height: auto;
    border-radius: 18px;
  }

  .slick-dots {
    bottom: -50px;
  }

  .slick-dots li button:before {
    font-size: 14px;
  }

  .autoplay-buttons[data-play="play"]:before,
  .autoplay-buttons[data-play="stop"]:before {
    content: "";
    display: inline-block;
    position: relative;
    top: 18px;
    left: 10px;
    width: 40px;
    height: 40px;
  }

  .autoplay-buttons[data-play="play"]:before {
    background: url("../images/ico_play.svg") no-repeat center/contain;
  }

  .autoplay-buttons[data-play="stop"]:before {
    background: url("../images/ico_pause.svg") no-repeat center/contain;
  }
}
