@charset "UTF-8";
/* CSS Document */

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;

  * {
    box-sizing: border-box;
  }
}

.store {
  background: #fff;
  color: var(--module-color-black);

  .store__contents {
    padding-block-start: 50px;

    @media (width <= 768px) {
      padding-block-start: 25px;
    }
  }

  .store__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-block-end:80px;

    @media (width <= 768px) {
      padding-block-end: 56px;
    }
  }

  .store__title {
    margin: 0;
    font-family: var(--module-font-inter), var(--module-font-sans);
    font-size: 38px;
    font-weight: 500;
    line-height: 1.37;
    letter-spacing: 0;

    @media (width <= 768px) {
      font-size: 32px;
    }
  }

  .store__real {
    margin-block-start: 105px;

    @media (width <= 768px) {
      margin-block-start: 64px;
    }
  }

  .store__subtitle {
    margin: 0;
    font-family: var(--module-font-inter), var(--module-font-sans);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;

    @media (width <= 768px) {
      font-size: 22px;
    }
  }

  .store__real-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-block-start: 48px;

    @media (width <= 768px) {
      margin-block-start: 34px;
    }
  }

  .store__real-item {
    position: relative;
    height: 64px;

    img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
    }
  }

  .store__note {
    margin: 0;
    margin-block-start: 26px;
    font-family: var(--module-font-inter), var(--module-font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.125;

    @media (width <= 768px) {
      margin-block-start: 40px;
      line-height: 1.5;
    }
  }

  .store__online {
    background: #f9fafa;
    min-height: 370px;
    padding-block: 56px 80px;

    @media (width <= 768px) {
      padding-block: 48px 64px;
      min-height: 0;
    }
  }

  .store__online-title {
    margin: 0;
    font-family: var(--module-font-inter), var(--module-font-sans);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.125;
    text-align: center;
    color: var(--module-color-black);

    @media (width <= 768px) {
      font-size: 22px;
    }
  }

  .store__online-channels {
    list-style: none;
    margin: 0;
    margin-block-start: 48px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px;

    @media (width <= 768px) {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      max-width: 400px;
      margin-inline: auto;
      margin-block-start: 40px;
      gap: 24px;
    }
  }

  .store__online-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 178px;
    height: 65px;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 32px;
    text-decoration: none;
    transition: opacity 0.2s ease;

    @media (width <= 768px) {
      width: 100%;
    }

    @media (hover: hover) {
      &:hover {
        opacity: 0.7;
      }
    }

    &:focus-visible {
      outline: 2px solid var(--module-color-primary);
      outline-offset: 2px;
    }
  }

  .store__online-logo {
    display: block;
  }

  .store__online-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .store__online-logo--official {
    width: 127px;
    height: 35px;
  }

  .store__online-logo--rakuten {
    width: 93px;
    height: 30px;
  }

  .store__online-logo--amazon {
    width: 99px;
    height: 34px;
  }

  .store__online-logo--yahoo {
    width: 129px;
    height: 24px;
  }

  .store__online-logo--aupay {
    width: 126px;
    height: 18px;
  }

  .store__online-logo--qoo10 {
    width: 97px;
    height: 30px;
  }
}
