@charset "UTF-8";

/* dlight */
.dm {}

/* ==================================================
/* SMARTPHONE
================================================== */
@media screen and (max-width: 768px) {

  #pagekv p {
    color: #FFF;
  }

  .pg--header-t1>.inner>.txt {
    width: 430px;
  }

  #cuisine>section {
    position: relative;
  }

  #cuisine>section>.inner {
    display: flex;
    flex-flow: column;
    margin: auto;
  }

  #cuisine>section>.inner .header {
    width: 80%;
    margin: auto;
    order: 2;
  }

  #cuisine>section>.inner .header .txt {
    white-space: nowrap;
  }

  #cuisine>section>.inner .header .txt .sec-tt-en {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }

  #cuisine>section>.inner .header .txt .sec-catch {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  #cuisine>section>.inner .header .sec-read {
    margin-top: -1em;
  }

  #cuisine>section>.inner .gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    /* Redundant: grid-template-rows: auto; will override this */
    grid-template-rows: auto;
    /* This one takes precedence */
    gap: 6px;
    margin: 0 auto 40px;
  }

  #cuisine>section>.inner .gallery .ph1 {
    grid-column: span 2 / span 2;
    grid-column-start: 1;
    grid-row-start: 2;
  }

  #cuisine>section>.inner .gallery .ph2 {
    grid-column-start: 1;
    grid-row-start: 1;
  }

  #cuisine>section>.inner .gallery .ph3 {
    grid-column-start: 2;
    grid-row-start: 1;
  }

  #cuisine>section>.inner .slider {
    margin-bottom: 50px;
    order: 1;
  }

  #cuisine>section>.inner .capa {
    margin: auto;
  }

  #french {
    margin-bottom: 60px;
  }

  #french>.inner .header .txt {
    /* No specific styles here, rule exists for nesting context */
  }

  #mix {
    padding-bottom: 80px;
  }

  #mix>.inner .header .txt {
    margin-right: 86px;
  }

  #cake {
    background: #EDE9E6;
    margin-bottom: 60px;
  }

  #cake .cake_bg {
    margin-bottom: 30px;
  }

  #cake>.inner .header {
    margin-bottom: 50px !important;
    order: 1;
  }

  #cake>.inner .gallery {
    order: 2;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(1, 1fr) !important;
    gap: 10px;
    margin: 0 !important;
  }

  #cake>.inner .gallery .ph1 {
    grid-column: 1 !important;
    grid-row-start: 1 !important;
  }

  #cake>.inner .gallery .ph2 {
    grid-column-start: 2 !important;
  }

  #cake>.inner>.slider {
    order: 3 !important;
  }

  #cake>.inner .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  #shef {
    /* Styles for #shef::after are moved outside the inner block */
  }

  #shef>.inner {
    padding-bottom: 80px;
  }

  #shef>.inner .header {
    margin-bottom: 40px !important;
    padding: 0 !important;
    order: 1 !important;
  }

  #shef>.inner .header .title {
    font-size: 1.6rem !important;
    margin-bottom: 30px !important;
  }

  #shef>.inner>.list {
    width: 60%;
    margin: auto;
    order: 2;
  }

  #shef>.inner>.list>section+section {
    margin-top: 50px;
  }

  #shef>.inner>.list>section {
    display: flex;
    flex-flow: column;
  }

  #shef>.inner>.list>section .txt {
    display: flex;
    flex-flow: column;
    order: 2;
  }

  #shef>.inner>.list>section .txt .sec-tt-ja {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.25em;
    margin-bottom: 8px;
    order: 2;
  }

  #shef>.inner>.list>section .txt .sec-catch {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
    order: 1;
  }

  #shef>.inner>.list>section .txt .sec-read {
    letter-spacing: 0.05em;
    line-height: 2;
    order: 3;
  }

  #shef>.inner>.list>section .ph {
    margin-bottom: 10px;
    order: 1;
  }

  #shef::after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: '';
    width: 100%;
    height: calc(100% - 50%);
    background: #EDE9E6;
    z-index: -1;
  }

  /* Slider */
  .slider .arrow-button-next,
  .slider .arrow-button-prev {
    display: none;
  }

}

/* ==================================================
/* DESKTOP
================================================== */
@media (768px < width) {

  #pagekv p {
    color: #FFF;
  }

  .pg--header-t1 {
    >.inner {
      >.txt {
        width: 430px;
      }
    }
  }

  #cuisine>section {
    position: relative;

    >.inner {
      position: relative;
      width: 880px;
      margin: auto;
      z-index: 1;

      .header {
        display: flex;
        justify-content: center;
        margin-bottom: 50px;

        .txt {
          white-space: nowrap;

          .sec-tt-en {
            font-size: 2.2rem;
            margin-bottom: 5px;
          }

          .sec-catch {
            font-size: 2.1rem;
          }
        }

        .sec-read {
          margin-top: -1em;
        }
      }

      .gallery {
        display: flex;
        justify-content: space-between;

        >div {
          width: 288px;
        }
      }

      .capa {
        margin: auto;
      }
    }

    >.cake_bg {
      padding-bottom: 30px;
    }
  }

  #french {
    margin-bottom: 100px;

    >.inner {
      .header {
        .txt {
          margin-right: 42px;
        }
      }
    }
  }

  #mix {
    padding: 100px 0;
    background: #EDE9E6;

    >.inner {
      .header {
        .txt {
          margin-right: 86px;
        }
      }
    }
  }

  #cake {
    margin-bottom: 100px;

    >.inner {
      .header {
        .txt {
          margin-right: 60px;
        }
      }
    }
  }

  #shef {
    padding: 100px 0 80px;
    background: #EDE9E6;

    >.inner {
      width: 730px !important;

      .header {
        padding: 0 !important;

        .txt {
          margin-right: 100px;
        }
      }

      >.list {
        >section {
          display: flex;
          justify-content: space-between;

          .txt {
            display: flex;
            flex-flow: column;
            width: 381px;
            order: 1;

            .sec-tt-ja {
              font-size: 2.4rem;
              font-weight: 200;
              line-height: 1;
              letter-spacing: 0.25em;
              margin-bottom: 12px;
              order: 2;
            }

            .sec-catch {
              font-size: 1.6rem;
              margin-bottom: 5px;
              order: 1;
            }

            .sec-read {
              font-size: 1.1;
              line-height: 2.1;
              order: 3;
            }
          }

          .ph {
            width: 300px;
            order: 2;
          }
        }
      }
    }
  }

  /* Slider */
  .slider {
    position: relative;

    >div:first-child {
      overflow: hidden;
    }

    .arrow-button-next {
      left: -18px;
    }

    .arrow-button-prev {
      right: -18px;
    }
  }

}