@charset "UTF-8";

.block-kimawashi {
  letter-spacing: 0.04em;
}

@media screen and (min-width: 769px) {
  .block-kimawashi {
    padding-bottom: 100px;
  }

  .pane-contents .container:has(#page-kimawashi) {
    width: 100%;

    .pane-main {
      margin-top: 0;
    }

    .pane-left-menu {
      display: none;
    }

    .kimawashi-container {
      width: 1180px;
      margin: 0 auto;
    }
  }
}

@media screen and (max-width: 768px) {
  .block-kimawashi {
    padding-bottom: 64px;
  }
}

.kimawashi-header {
  background-color: #f8f8f8;

  h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
    text-align: center;
    line-height: 1.1;

    .txt-en {
      font-weight: 900;
    }

    .txt-ja {
      font-weight: 700;
    }
  }
}

@media screen and (min-width: 769px) {
  .kimawashi-header {
    padding: 56px 0;

    h1 {
      .txt-en {
        font-size: 44px;
      }

      .txt-ja {
        margin-top: 24px;
        font-size: 24px;
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .kimawashi-header {
    padding: 40px 0;

    h1 {
      .txt-en {
        font-size: 32px;
      }

      .txt-ja {
        margin-top: 16px;
        font-size: 20px;
      }
    }
  }
}

.kimawashi-mv {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  img {
    display: block;
    width: 100%;
    height: auto;
  }
}

@media screen and (min-width: 769px) {
  .kimawashi-mv {
    gap: 30px;
    margin-top: 40px;

    li {
      width: calc((100% - 120px) / 5);
    }
  }
}

@media screen and (max-width: 768px) {
  .kimawashi-mv {
    gap: 10px;
    margin-top: 32px;
    padding: 0 20px;

    li {
      width: calc((100% - 20px) / 3);
    }
  }
}

.kimawashi-item {
  background-color: #444444;
  color: #ffffff;
}

.kimawashi-item-content {
  .item-img {
    img {
      display: block;
      width: 100%;
      height: auto;
    }
  }

  .item-tag {
    display: flex;

    span {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 32px;
      padding: 0 15px;
      background-color: #222222;
      font-size: 16px;
      font-weight: 700;
      line-height: 1;
    }
  }

  .item-name {
    font-weight: 700;
    line-height: 1.4;
  }

  .item-price {
    font-weight: 700;

    .tax {
      font-weight: 500;
    }
  }

  .item-comment {
    border-top: 1px solid #555555;
    font-weight: 500;
    line-height: 1.6;
  }

  .item-btn {
    a {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #ffffff;
      color: #444444;
      font-weight: 700;
      text-align: center;
      text-decoration: none;
      line-height: 1;
    }
  }
}

@media screen and (min-width: 769px) {
  .kimawashi-item {
    padding: 56px 0;
  }

  .kimawashi-item-content {
    display: flex;

    .item-img {
      width: 290px;
    }

    .item-detail {
      display: flex;
      flex-direction: column;
      width: calc(100% - 290px);
      padding-left: 64px;
    }

    .item-name {
      margin-top: 24px;
      font-size: 24px;
    }

    .item-price {
      margin-top: 16px;
      font-size: 20px;

      .tax {
        margin-left: 6px;
        font-size: 10px;
      }
    }

    .item-comment {
      margin: 24px 0;
      padding-top: 24px;
      font-size: 18px;
    }

    .item-btn {
      a {
        width: 340px;
        height: 48px;
        font-size: 18px;
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .kimawashi-item {
    padding: 40px;
  }

  .kimawashi-item-content {
    .item-img {
      width: 100%;
    }

    .item-detail {
      margin-top: 24px;
    }

    .item-name {
      margin-top: 16px;
      font-size: 20px;
    }

    .item-price {
      margin-top: 16px;
      font-size: 20px;

      .tax {
        margin-left: 6px;
        font-size: 10px;
      }
    }

    .item-comment {
      margin: 16px 0;
      padding-top: 16px;
      font-size: 14px;
    }

    .item-btn {
      margin-top: 24px;

      a {
        width: 100%;
        height: 48px;
        font-size: 18px;
      }
    }
  }
}

.kimawashi-example-items {
  .list-catchcopy {
    display: flex;
    align-items: baseline;

    .no {
      position: relative;
      font-weight: 900;

      &::after {
        content: "";
        display: block;
        position: absolute;
        background-color: #444444;
        transform: rotate(45deg);
      }
    }

    .txt {
      font-weight: 700;
    }
  }

  .list-content {
    .list-img-main,
    .list-img-slider {
      img {
        display: block;
        width: 100%;
        height: auto;
      }
    }

    .list-img-slider {
      .slick-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 16px;

        li {
          position: relative;
          width: 10px;
          height: 10px;

          button {
            width: 10px;
            height: 10px;
            margin: 0;
            padding: 0;
            border: none;
            border-radius: 10px;
            background-color: #f2f2f2;
            text-indent: -9999px;
            cursor: pointer;
          }

          &.slick-active button {
            background-color: #444444;
          }
        }
      }
    }
  }
}

@media screen and (min-width: 769px) {
  .kimawashi-example {
    padding: 100px 0;
  }

  .kimawashi-example-items {
    .list-item {
      & + .list-item {
        margin-top: 100px;
      }
    }

    .list-catchcopy {
      .no {
        width: 127px;
        font-size: 60px;

        &::after {
          top: 12px;
          left: 79px;
          width: 2px;
          height: 86px;
        }
      }

      .txt {
        width: calc(100% - 127px);
        font-size: 28px;
      }
    }

    .list-content {
      display: flex;
      justify-content: space-between;
      margin-top: 56px;

      .list-img {
        display: grid;
        grid-template-columns: 330px 240px;
        grid-template-rows: auto 1fr;
        gap: 0px 24px;
        grid-auto-flow: row;
        grid-template-areas:
          "list-img-main list-img-slider"
          "list-img-main list-img-point";
        width: 594px;

        .list-img-main {
          grid-area: list-img-main;
        }

        .list-img-slider {
          grid-area: list-img-slider;
        }

        .list-img-point {
          grid-area: list-img-point;
          margin-top: 24px;
          font-size: 14px;
          font-weight: 500;
        }
      }

      .list-detail {
        position: relative;
        width: 505px;

        &::before {
          content: "";
          display: block;
          position: absolute;
          top: 0;
          left: -40px;
          width: 1px;
          height: 100%;
          background-color: #cccccc;
        }
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .kimawashi-example {
    padding: 64px 30px;
  }

  .kimawashi-example-items {
    .list-item {
      & + .list-item {
        margin-top: 64px;
      }
    }

    .list-catchcopy {
      align-items: flex-start;

      .no {
        width: 94px;
        font-size: 40px;

        &::after {
          top: 3px;
          left: 42px;
          width: 2px;
          height: 86px;
        }
      }

      .txt {
        width: calc(100% - 94px);
        padding-top: 8px;
        font-size: 20px;
        line-height: 1.4;
      }
    }

    .list-content {
      margin-top: 30px;

      .list-img {
        display: flex;
        flex-direction: column;

        .list-img-main {
          width: 300px;
          order: 10;
        }

        .list-img-slider {
          width: 240px;
          margin-top: 30px;
          margin-left: auto;
          order: 30;
        }

        .list-img-point {
          margin-top: 30px;
          font-size: 14px;
          font-weight: 500;
          order: 20;
        }
      }

      .list-detail {
        position: relative;
        margin-top: 30px;
        padding-top: 30px;

        &::before {
          content: "";
          display: block;
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 1px;
          background-color: #cccccc;
        }
      }
    }
  }
}

.kimawashi-item-list {
  display: flex;
  flex-wrap: wrap;

  a {
    display: flex;
    position: relative;
    background-color: #f8f8f8;
    text-decoration: none;

    &::before {
      content: "";
      display: block;
      position: absolute;
      right: 0;
      bottom: 0;
      background-position: center;
      background-repeat: no-repeat;
      background-size: contains;
    }
  }

  .list-item-img {
    img {
      display: block;
      width: 100%;
      height: auto;
    }
  }
}

@media screen and (min-width: 769px) {
  .kimawashi-item-list {
    gap: 16px;

    li {
      width: 100%;
    }

    a {
      padding: 10px;

      &::before {
        width: 44px;
        height: 18px;
        background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDQiIGhlaWdodD0iMTgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iIzQ0NCIgZD0iTTAgMGg0NHYxOEgweiIvPjxwYXRoIGQ9Ik0xMiAxMGgyMC41bC02LTQiIHN0cm9rZT0iI2ZmZiIvPjwvc3ZnPg==");
      }
    }

    .list-item-img {
      width: 116px;
    }

    .list-item-detail {
      width: calc(100% - 116px);
      padding: 10px 0 0 24px;
    }

    .list-item-name {
      font-size: 14px;
    }

    .list-item-price {
      margin-top: 16px;
      font-size: 14px;
      font-weight: 700;

      .tax {
        font-size: 10px;
        font-weight: 500;
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .kimawashi-item-list {
    gap: 10px;

    li {
      width: 100%;
    }

    a {
      padding: 16px;

      &::before {
        width: 32px;
        height: 14px;
        background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMTQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iIzQ0NCIgZD0iTTAgMGgzMnYxNEgweiIvPjxwYXRoIGQ9Ik05IDcuNjY3aDEzLjUxMUwxOC41NTcgNSIgc3Ryb2tlPSIjZmZmIi8+PC9zdmc+");
      }
    }

    .list-item-img {
      width: 80px;
    }

    .list-item-detail {
      width: calc(100% - 80px);
      padding: 0 0 0 16px;
    }

    .list-item-name {
      font-size: 13px;
    }

    .list-item-price {
      margin-top: 16px;
      font-size: 14px;
      font-weight: 700;

      .tax {
        font-size: 10px;
        font-weight: 500;
      }
    }
  }
}

.kimawashi-list-content {
  .content-ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    .no {
      font-weight: 900;
      line-height: 1;
    }

    .txt {
      font-weight: 700;
    }
  }
}

@media screen and (min-width: 769px) {
  .kimawashi-list {
    margin-top: 100px;
  }

  .kimawashi-list-content {
    display: flex;

    & + .kimawashi-list-content {
      margin-top: 64px;
    }

    .content-ttl {
      width: calc(100% - 1026px);
      border-left: 2px solid #444444;

      .no {
        font-size: 60px;
      }

      .txt {
        margin-top: 16px;
        font-size: 16px;
      }
    }

    .kimawashi-item-list {
      width: 1026px;

      li {
        width: calc((100% - 16px) / 2);
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .kimawashi-list {
    margin-top: 80px;
    padding: 0 30px;
  }

  .kimawashi-list-content {
    & + .kimawashi-list-content {
      margin-top: 40px;
    }

    .content-ttl {
      padding: 24px 0;
      border-top: 2px solid #444444;

      .no {
        font-size: 40px;
      }

      .txt {
        margin-top: 10px;
        font-size: 13px;
      }
    }
  }
}

.kimawashi-list-btn {
  a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #444444;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    line-height: 1;
  }
}

@media screen and (min-width: 769px) {
  .kimawashi-list-btn {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 100px;

    li {
      width: 500px;
    }

    a {
      height: 64px;
      font-size: 20px;
    }
  }
}

@media screen and (max-width: 768px) {
  .kimawashi-list-btn {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 80px;

    li {
      width: 100%;
    }

    a {
      height: 64px;
      font-size: 16px;
      line-height: 1.4;
    }
  }
}

@media screen and (min-width: 769px) {
  .block-event-page--goods,
  .block-event-page--accessory {
    width: 1180px;
    margin: 0 auto;
  }

  .block-thumbnail-t li {
    width: 200px;
  }
}

@media screen and (max-width: 768px) {
}
