@charset "UTF-8";

:root {
  --cl-bl: #00289c;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  color: #444444;
  font-size: 1.6rem;
  font-family: "Lato", "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,
    Osaka, "Helvetica Neue", HelveticaNeue, Helvetica, sans-serif;
  letter-spacing: 0.04em;
}

@media screen and (min-width: 769px) {
  body {
    min-width: 1180px;
  }

  .sp-only {
    display: none !important;
  }

  .ambassador_lp_2025-container {
    width: 1180px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  body {
    max-width: 100vw;
  }

  .pc-only {
    display: none !important;
  }

  .ambassador_lp_2025 {
    max-width: 100vw;
    overflow: hidden;
  }

  .ambassador_lp_2025-container {
    width: 100vw;
    padding: 0 20px;
  }
}

header {
  width: 100%;
  border-bottom: 1px solid #cccccc;

  .ambassador_lp_2025-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;

    h1 {
      margin: 0;
      padding: 0;

      img {
        display: block;
        height: auto;
      }
    }
  }
}

footer {
  display: flex;
  align-items: center;
  height: 100px;
  margin-top: 110px;
  background-color: #f7f7f7;
  text-align: center;
}

.ambassador_lp_2025-footer-copyright {
  width: 100%;
  font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
  header {
    .ambassador_lp_2025-container {
      height: 48px;

      h1 {
        img {
          width: 160px;
        }
      }
    }
  }

  footer {
    height: 50px;
    margin-top: 60px;
  }

  .ambassador_lp_2025-footer-copyright {
    font-size: 1rem;
  }
}

main {
  margin-top: 40px;
}

.ambassador_lp_2025-ambassador-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;

  li {
    width: calc((100% - 100px) / 3);

    img {
      display: block;
      width: 100%;
      height: auto;
    }

    .list-detail {
      display: flex;
      align-items: flex-end;
      margin-top: 16px;

      .list-name {
        font-weight: 700;

        a {
          text-decoration: none;
        }
      }

      .list-ig {
        margin-left: auto;
        font-size: 1.3rem;

        a {
          display: flex;
          align-items: center;
          position: relative;

          &::before {
            content: "";
            display: inline-block;
            position: relative;
            width: 16px;
            height: 16px;
            margin-right: 5px;
            background-image: url(../../img/usr/freepage/2025_ambassador/icon_ig.png);
            background-position: center;
            background-repeat: no-repeat;
            background-size: contain;
          }
        }
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .ambassador_lp_2025-ambassador-list {
    &.col-1 {
      gap: 40px;
      padding: 0 20px;

      li {
        width: 100%;
      }
    }

    &.col-2 {
      gap: 37px 20px;

      li {
        width: calc((100% - 20px) / 2);

        img {
          display: block;
          width: 100%;
          height: auto;
        }

        .list-detail {
          flex-direction: column;
          align-items: flex-start;
          margin-top: 16px;

          .list-ig {
            margin-top: 12px;
            margin-left: 0;
          }
        }
      }
    }
  }
}

.ambassador_lp_2025-content {
  display: flex;

  .item-img {
    width: 480px;

    img {
      display: block;
      width: 100%;
      height: auto;
    }
  }

  .item-detail {
    width: 600px;
    margin-left: auto;
  }

  .item-no {
    font-size: 2rem;
    font-weight: 700;
  }

  .item-name_ig {
    display: flex;
    align-items: baseline;
    margin-top: 40px;
  }

  .item-name {
    font-size: 2.8rem;
    font-weight: 700;
  }

  .item-ig {
    margin-left: auto;

    a {
      display: flex;
      align-items: center;
      position: relative;
      font-size: 1.3rem;

      &::before {
        content: "";
        display: inline-block;
        position: relative;
        width: 16px;
        height: 16px;
        margin-right: 5px;
        background-image: url(../../img/usr/freepage/2025_ambassador/icon_ig.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
      }
    }
  }

  .item-comment {
    margin-top: 40px;
    font-size: 1.6rem;

    p + p {
      margin-top: 1.5em;
    }
  }

  .item-profile {
    margin-top: 40px;
    padding: 40px;
    background-color: #f7f7f7;

    .ttl {
      font-size: 2rem;
      font-weight: 700;
    }

    dl {
      display: table;
      margin-top: 16px;
      font-size: 1.4rem;

      > div {
        display: table-row;

        dt,
        dd {
          display: table-cell;
          padding-top: 16px;
        }

        dt {
          padding-right: 24px;
        }

        dd {
          position: relative;
          padding-left: calc(24px + 1em);

          &::before {
            content: "：";
            display: block;
            position: absolute;
            top: 16px;
            left: 0;
          }
        }
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .ambassador_lp_2025-content {
    margin-top: -20px;
    flex-direction: column;

    .item-img {
      width: 100%;
    }

    .item-detail {
      width: 100%;
      margin-top: 40px;
      margin-left: 0;
    }

    .item-no {
      margin-bottom: 16px;
      font-size: 2rem;
    }

    .item-name_ig {
      margin-top: 24px;
    }

    .item-ig {
      margin-top: 4px;
    }

    .item-name {
      font-size: 2.4rem;
    }

    .item-profile {
      margin-top: 24px;
      padding: 24px;

      .ttl {
        font-size: 1.8rem;
        font-weight: 700;
      }

      dl {
        display: table;
        margin-top: 0;
        font-size: 1.4rem;

        > div {
          dt,
          dd {
            padding-top: 8px;
          }

          dt {
            padding-right: 0.1em;
          }

          dd {
            padding-left: 1.1em;

            &::before {
              top: 8px;
            }
          }
        }
      }
    }
  }
}

.ambassador_lp_2025-coordination,
.ambassador_lp_2025-related {
  margin-top: 90px;

  h2 {
    margin: 0 0 40px;
    padding: 0;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
  }
}

.ambassador_lp_2025-coordination {
  .list-items {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;

    .list-item {
      width: calc((100% - 120px) / 4);

      img {
        display: block;
        width: 100%;
        height: auto;
      }
    }
  }
}

.ambassador_lp_2025-related {
  .list-items {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;

    .list-item {
      width: calc((100% - 100px) / 3);

      a {
        display: flex;
        text-decoration: none;

        img {
          display: block;
          width: 120px;
          height: auto;
        }

        .list-detail {
          width: 216px;
          margin-left: auto;
        }

        .list-name {
          font-size: 1.4rem;
          line-height: 1.4;
        }

        .list-price {
          margin-top: 10px;
          font-size: 1.4rem;
          font-weight: 700;
          text-align: right;
        }
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .ambassador_lp_2025-coordination,
  .ambassador_lp_2025-related {
    margin-top: 60px;

    h2 {
      margin: 0 0 30px;
      font-size: 2rem;
    }
  }

  .ambassador_lp_2025-coordination {
    .list-items {
      gap: 20px;

      .list-item {
        width: calc((100% - 20px) / 2);
      }
    }
  }

  .ambassador_lp_2025-related {
    .list-items {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;

      .list-item {
        width: 100%;

        a {
          img {
            display: block;
            width: 100px;
            height: auto;
          }

          .list-detail {
            width: calc(100% - 116px);
            margin-left: auto;
          }

          .list-price {
            margin-top: 16px;
          }
        }
      }
    }
  }
}

.ambassador_lp_2025-other {
  margin-top: 80px;

  a {
    display: flex;
    align-items: center;
    padding: 11px;
    border: 5px solid #f7f7f7;
    text-decoration: none;

    img {
      display: block;
      height: auto;
    }

    .list-ttl {
      width: calc(100% - 120px);
      padding-left: 40px;
      line-height: 1.4;

      .ttl-en {
        font-size: 2.4rem;
        font-weight: 700;
      }

      .ttl-ja {
        margin-top: 24px;
        font-size: 1.6rem;
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .ambassador_lp_2025-other {
    margin-top: 60px;

    a {
      img {
        width: 80px;
      }

      .list-ttl {
        width: calc(100% - 80px);
        padding-left: 24px;

        .ttl-en {
          font-size: 2rem;
        }

        .ttl-ja {
          margin-top: 20px;
        }
      }
    }
  }
}
