@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP&display=swap");

:root {
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
  --color-black: #231815;
  --color-white: #ffffff;
  --color-base: #f8f8f8;
  --color-gray: #ddd;
  --color-theme: #00a9c9;
  --color-navy: #082a49;
}

/* ======================================================================
   module
====================================================================== */
.mt20 {
  margin-block-start: 20px;
}

.mt60 {
  margin-block-start: 60px;
}

.mt70 {
  margin-block-start: 70px;
}

.mt100 {
  margin-block-start: 100px;
}

.mt150 {
  margin-block-start: 150px;
}

.mb150 {
  margin-block-end: 150px;
}

@media screen and (width <=768px) {
  .mt60 {
    margin-block-start: 30px;
  }

  .mt70 {
    margin-block-start: 35px;
  }

  .mt100 {
    margin-block-start: 50px;
  }

  .mt150 {
    margin-block-start: 75px;
  }

  .mb150 {
    margin-block-end: 75px;
  }
}

/* ======================================================================
   br
====================================================================== */
.sp {
  display: none;
}

@media screen and (width <=768px) {
  .sp {
    display: block;
  }
}

/* ======================================================================
   white
====================================================================== */
.white {
  color: var(--color-white);
}

/* ======================================================================
   black
====================================================================== */
.black {
  color: var(--color-black);
}

/* ======================================================================
   textCenter
====================================================================== */
.textCenter {
  text-align: center;
  line-height: 2;
}

@media screen and (width <=768px) {
  .textCenter {
    text-align: left;
  }
}

/* ======================================================================
   body
====================================================================== */
body {
  inline-size: 100%;
  block-size: auto;
  font-size: 16px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-navy);
  word-break: break-all;
  letter-spacing: 1;
  background: url(../img/common/bgImg_pc.webp) top center / 100% no-repeat;
}

@media screen and (width <=768px) {
  body {
    font-size: 14px;
    background: url(../img/common/bgImg_sp.webp) top center / 125% no-repeat;
  }
}

/* ======================================================================
   ul ol
====================================================================== */
ul,
ol {
  margin: 0;
  padding: 0;

  & li {
    list-style-type: none;
  }
}

/* ======================================================================
/* a:hover
====================================================================== */
a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

/* ======================================================================
   img
====================================================================== */
img {
  max-inline-size: 100%;
  block-size: auto;
  vertical-align: bottom;
}

/* ======================================================================
/* inner
====================================================================== */
.inner {
  position: relative;
  max-inline-size: 1200px;
  margin: 0 auto;
}

@media screen and (width <=768px) {
  .inner {
    inline-size: 100%;
    block-size: auto;
    padding-inline: 20px;
  }
}

/* ======================================================================
/* inner-1080
====================================================================== */
.inner-1080 {
  position: relative;
  max-inline-size: 1080px;
  margin: 0 auto;
}

@media screen and (width <=768px) {
  .inner-1080 {
    inline-size: 100%;
    block-size: auto;
    padding-inline: 20px;
  }
}

/* ======================================================================
/* #出し分け
====================================================================== */
.sp-only {
  display: none;
}

@media screen and (width <=768px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

/* ======================================================================
/* #secFv
====================================================================== */
#secFv {
  position: relative;
  inline-size: 100%;
  block-size: auto;

  & img {
    inline-size: 100%;
  }

  & .conversion {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);

    & .entry {
      display: grid;
      place-items: center;
      z-index: 10;

      & img {
        display: block;
        margin: 0 auto;
        max-inline-size: 80%;
      }
    }

    & .insta {
      display: grid;
      place-items: center;
      color: var(--color-white);
      font-size: 14px;

      & img {
        display: block;
        margin: 15px auto 0;
        max-inline-size: 70%;
        z-index: 10;
      }
    }
  }
}

@media screen and (width <=768px) {
  #secFv {
    & .conversion {
      position: absolute;
      bottom: -26%;
      left: 50%;
      transform: translate(-50%, 26%);
      inline-size: 100%;

      & .entry {
        display: grid;
        place-items: center;
        z-index: 10;

        & img {
          display: block;
          margin: 0 auto;
          max-inline-size: 80%;
        }
      }

      & .insta {
        display: grid;
        place-items: center;
        color: var(--color-white);
        font-size: 14px;

        & img {
          display: block;
          margin: 15px auto 0;
          max-inline-size: 70%;
          z-index: 10;
        }
      }
    }
  }
}

/* ======================================================================
/* #secCampaign
====================================================================== */
#secCampaign {
  position: relative;
  margin-block-start: 100px;

  & .conversion {
    position: absolute;
    bottom: 3.5%;
    left: 50%;
    transform: translate(-50%, -7.5%);
    z-index: 10;

    & img {
      display: block;
      margin: 0 auto;
      max-inline-size: 100%;
    }
  }
}

@media screen and (width <=768px) {
  #secCampaign {
    position: relative;
    margin-block-start: 150px;

    & .conversion {
      position: absolute;
      bottom: 26%;
      left: 50%;
      transform: translate(-50%, -26%);
      z-index: 10;
      inline-size: 90%;

      & img {
        display: block;
        margin: 0 auto;
        max-inline-size: 100%;
      }
    }
  }
}

/* ======================================================================
/* #secFaq
====================================================================== */
#secFaq {
  position: relative;
  margin-block-start: 100px;

  & ul {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    margin-block-start: 50px;

    & li {
      inline-size: calc(100% / 2 - 15px);

      & img {
        display: block;
        margin: 0 auto;
        inline-size: auto;
        block-size: 80px;
      }

      & p {
        margin-block-start: 10px;
        text-indent: -1em;
        padding-inline-start: 1em;
      }
    }
  }
}

@media screen and (width <=768px) {
  #secFaq {
    position: relative;
    margin-block-start: 50px;

    & ul {
      flex-direction: column;
      margin-block-start: 25px;
      gap: 15px;

      & li {
        inline-size: 100%;

        & img {
          display: block;
          margin: 0 auto;
          block-size: auto !important;
        }

        & p {
          margin-block-start: 10px;
          text-indent: -1em;
          padding-inline-start: 1em;
        }
      }
    }
  }
}

/* ======================================================================
/* bottomContent
====================================================================== */
.bottomContent {
  margin-block-start: 100px;

  & hr {
    background-color: var(--color-navy);
    border: none;
    block-size: 3px;
    margin-block: 50px;
  }

  & p {
    font-size: 27px;
    font-family: AdjustedYuGothic, Yu Gothic, YuGothic, sans-serif;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;

    & span {
      font-size: 35px;
    }
  }

  & .conversion {
    display: grid;
    place-items: center;
    margin-block: 50px 100px;
  }
}

@media screen and (width <=768px) {
  .bottomContent {
    margin-block-start: 50px;

    & hr {
      margin-block: 25px;
    }

    & p {
      font-size: 12px;
      font-family: AdjustedYuGothic, Yu Gothic, YuGothic, sans-serif;
      font-weight: bold;
      text-align: center;
      line-height: 1.5;

      & span {
        font-size: 20px;
      }
    }

    & .conversion {
      margin-block: 25px 50px;
    }
  }
}

/* ======================================================================
   #footer
====================================================================== */
footer {
  background-color: #f6e38b;
  padding-block: 50px;
  font-family: AdjustedYuGothic, Yu Gothic, YuGothic, sans-serif;

  & dl {
    display: grid;
    place-items: center;

    & dt {
      font-size: 21px;
      font-weight: bold;
    }

    & dd {
      font-size: 28px;
      line-height: 1.2;
    }
  }

  & hr {
    background-color: var(--color-navy);
    border: none;
    block-size: 1px;
    margin-block: 5px;
  }

  & small {
    display: grid;
    place-items: center;
  }
}

@media screen and (width <=768px) {
  footer {
    padding-block: 25px;

    & dl {
      text-align: center;

      & dt {
        font-size: 12px;
        font-weight: bold;
        margin-block-end: 10px;
      }

      & dd {
        font-size: 16px;
      }
    }

    & hr {
      background-color: var(--color-navy);
      border: none;
      block-size: 1px;
      margin-block: 10px;
    }

    & small {
      display: grid;
      place-items: center;
    }
  }
}
