@charset "utf-8";

:root {
  --section_margin: 160px;
  --block_margin: 60px;
  --title_margin: 50px;
  --text_margin: 35px;
  --brand-color01: #1C1C1C;
  --brand-color02: #B0B2AF;
  --brand-color03: #EEF0F2;
  --brand-color04: #ECEBE4;
  --brand-color05: #D1D1D1;
}

@media screen and (max-width: 768px) {
  :root {
    --section_margin: 60px;
    --block_margin: 50px;
    --title_margin: 40px;
    --text_margin: 20px;
  }
}

.serif {
  font-family: "Yu Mincho", serif !important;
}

body {
  background: var(--brand-color04);
}

p {
  font-size: clamp(14px, 1.8vw, 15px);
  line-height: 1.86;
  text-align: justify;
}

.main_wrapper {
  display: flex;
  width: 100%;
  border-top: 1px solid #ffffff;
}

@media screen and (max-width: 768px) {
  .main_wrapper {
    flex-direction: column;
  }
}

.heading {
  margin-bottom: var(--title_margin);
  font-size: clamp(20px, 2.6vw, 27px);
  letter-spacing: 0.05em;
}

.heading-sub {
  margin-bottom: var(--text_margin);
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 2;
  display: flex;
  letter-spacing: 0.05em;

  &::before {
    content: "";
    width: 40px;
    height: 2px;
    background: #ffffff;
    display: block;
    margin: 15px 10px 0 0;
  }

  &.--border_none {
    &::before {
      content: "";
      display: none;
    }
  }
}

@media screen and (max-width: 768px) {
  .heading-sub {

    line-height: 1.7;

    &::before {
      margin: 12px 10px 0 0;
    }
  }
}

.text_photo_pattern1 {
  display: flex;
  justify-content: space-between;
  margin-top: var(--block_margin);

  &.--reverse {
    flex-direction: row-reverse;
  }

  .photo {
    width: 46%;
    max-width: 400px;

    img {
      aspect-ratio: 4/3;
      width: 100%;
    }
  }

  .text-wrap {
    margin-top: var(--title_margin);
    width: 50%;

    p:not(:first-of-type) {
      margin-top: 20px;
    }
  }
}

@media screen and (max-width: 768px) {
  .text_photo_pattern1 {
    flex-direction: column;
    align-items: center;

    &.--reverse {
      flex-direction: column;
    }

    .photo {
      width: 100%;
    }

    .text-wrap {
      margin-top: var(--title_margin);
      width: 100%;

      p:not(:first-of-type) {
        margin-top: 20px;
      }
    }
  }
}

.text_photo_pattern2 {
  display: flex;
  justify-content: space-between;
  margin-top: var(--block_margin);

  &.--reverse {
    flex-direction: row-reverse;
  }

  .photo {
    width: 46%;
    max-width: 393px;

    img {
      aspect-ratio: 393/524;
      width: 100%;
    }
  }

  .text-wrap {
    margin-top: 50px;
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .text_photo_pattern2 {
    flex-direction: column-reverse;
    align-items: center;

    &.--reverse {
      flex-direction: column;
    }

    .photo {
      width: 75%;
      max-width: 400px;
      margin-bottom: 30px;
    }

    .text-wrap {
      margin: 0 0 30px 0;
      width: 100%;
    }
  }
}

.photo_pattern1 {
  margin-top: var(--block_margin);

  ul {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    aspect-ratio: 900 / 500;
  }

  li {
    &:nth-of-type(1) {
      max-width: 500px;
      width: 56%;
      aspect-ratio: 1 / 1;

      img {
        aspect-ratio: 1/1;
        width: 100%;
      }
    }

    &:nth-of-type(2) {
      max-width: 390px;
      width: 44%;
      display: flex;
      flex-direction: column;
      gap: 10px;

      img {
        aspect-ratio: 390/245;
        width: 100%;
        display: block;
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .photo_pattern1 {

    ul {
      flex-direction: column;
      gap: 10px;
      align-items: center;

      li {
        &:nth-of-type(1) {
          max-width: 400px;
          width: 100%;
        }

        &:nth-of-type(2) {
          max-width: 400px;
          width: 100%;
        }
      }
    }
  }
}

.photo_pattern2 {
  margin: var(--block_margin) 0 var(--block_margin) 0;

  ul {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }

  li {
    max-width: 445px;
    width: 100%;

    img {
      width: 100%;
      aspect-ratio: 445/300;
    }
  }
}

@media screen and (max-width: 768px) {
  .photo_pattern2 {

    ul {
      flex-direction: column;
      align-items: center;
    }

    li {
      max-width: 400px;
      width: 100%;
    }
  }
}

.photo_pattern3 {
  margin-top: var(--block_margin);

  img {
    width: 100%;
    aspect-ratio: 2/1;
  }
}

.sidebar {
  width: 23%;
  margin-top: 50px;
  position: sticky;
  top: 110px;
  display: block;
  height: 100vh;

  .sidebar-photo {
    width: 62%;
    margin: 0 auto;

    img {
      aspect-ratio: 195 / 260;
      width: 100%;
    }

    span {
      display: block;
      margin: 10px 0 30px;
    }

    p {
      letter-spacing: 0.05em;
      line-height: 1.6;
      text-align: left;
    }
  }

  .sns-share {
    width: 57%;
    margin: 60px auto 0;

    span {
      text-align: center;
      display: block;
      margin-bottom: 10px;
      font-size: clamp(10px, 1.3vw, 16px);
      letter-spacing: 0.1em;
      white-space: nowrap;
    }

    .sns-icon-list {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    li {
      width: 23px;
    }

    a {
      display: block;
    }

    img {
      width: 100%;
      aspect-ratio: 1 / 1;
    }
  }
}

@media screen and (max-width: 768px) {
  .sidebar {
    width: 100%;
    margin: 0 auto;
    position: static;
    height: auto;

    .sidebar_inner {
      width: 93%;
      margin: 30px auto;
    }

    .sidebar-photo {
      width: 100%;
      margin: 0 auto;
      display: flex;
      gap: 10px;

      img {
        width: 44%;
        max-width: 240px;
      }

      span {
        margin: 0;
      }

      p {
        font-size: clamp(13px, 1.7vw, 15px);
      }
    }

    .sidebar-text-wrap {
      display: flex;
      flex-direction: column-reverse;
      justify-content: space-between;
    }

    .sns-share {
      width: 100%;
      margin: 0 auto;
      padding: 20px 0;
      border-top: solid 1px #ffffff;
      border-bottom: solid 1px #ffffff;

      li {
        width: 20px;
      }
    }
  }
}

.main-text_wrapper {
  width: 77%;
  padding-top: 120px;
  border-left: 1px solid #ffffff;

  .main-text_innner {
    width: 95%;
    max-width: 900px;
    margin: 0 auto;
  }

  .top-text {
    margin-bottom: 60px;
    font-size: clamp(14px, 1.8vw, 15px);
    text-align: left;
  }

  .interview-photo {
    width: 100%;

    img {
      width: 100%;
      aspect-ratio: 900/600;
    }
  }

  .section_wrapper {
    margin-top: var(--section_margin);
  }

  .bottom-text {
    margin-top: 60px;
    padding-bottom: 150px;
  }
}

@media screen and (max-width: 768px) {
  .main-text_wrapper {
    width: 100%;
    padding-top: 30px;
    border-left: none;

    .main-text_innner {
      width: 93%;
      margin: 0 auto;
    }

    .interview-photo {
      width: 100%;

      img {
        width: 100%;
        aspect-ratio: 900/600;
      }
    }

    .section_wrapper {
      margin-top: var(--section_margin);
    }

    .bottom-text {
      margin-top: 0;
      padding-bottom: 60px;
    }
  }
}

.favorite_wrapper {
  background: #ffffff;
  padding: 140px 0 110px;

  .favorite_inner {
    max-width: 1000px;
    width: 95%;
    margin: 0 auto;
  }

  .heading-favorite {
    font-size: clamp(30px, 3.9vw, 40px);
    display: flex;
    align-items: baseline;
    border-bottom: solid 1px var(--brand-color05);
    padding-bottom: 20px;

    div {
      letter-spacing: -0.02em;
    }

    span {
      font-size: clamp(13px, 1.69vw, 19px);
      letter-spacing: 0.1em;
      line-height: 1.78;
      display: block;
      margin-left: 30px;
    }
  }

  .text_photo_pattern3 {
    display: flex;
    justify-content: space-between;
    margin-top: var(--block_margin);

    .photo {
      width: 46%;
      max-width: 400px;
      display: flex;
      flex-direction: column;
      gap: 10px;

      img {
        aspect-ratio: 400/250;
        width: 100%;
        display: block;
      }
    }

    .text-wrap {
      margin-top: var(--title_margin);
      width: 50%;

      p:last-of-type {
        margin-top: 20px;
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .favorite_wrapper {
    padding: 60px 0;

    .favorite_inner {
      max-width: unset;
      width: 93%;
      margin: 0 auto;
    }

    .heading-favorite {
      padding-bottom: 10px;

      span {
        margin-left: 15px;
      }
    }

    .text_photo_pattern3 {
      flex-direction: column-reverse;
      align-items: center;
      margin-top: 0;

      .photo {
        width: 100%;
      }

      .text-wrap {
        margin-top: var(--title_margin);
        width: 100%;
        margin-bottom: 30px;

        p:last-of-type {
          margin-top: 20px;
        }
      }
    }
  }
}

.the_sofa_wrapper {
  background: var(--brand-color05);
  padding: 140px 0 110px;

  .the_sofa_inner {
    max-width: 1000px;
    width: 95%;
    margin: 0 auto;
  }

  .heading-the_sofa {
    font-size: clamp(30px, 3.9vw, 40px);
    display: flex;
    align-items: baseline;
    border-bottom: solid 1px var(--brand-color02);
    padding-bottom: 20px;
    margin-bottom: var(--block_margin);

    div {
      letter-spacing: -0.02em;
    }

    span {
      font-size: clamp(13px, 1.69vw, 19px);
      letter-spacing: 0.1em;
      line-height: 1.78;
      display: block;
      margin-left: 30px;
    }
  }

  .text_photo_pattern1 {
    display: flex;
    justify-content: space-between;
    margin-top: var(--block_margin);

    &.--reverse {
      flex-direction: row-reverse;
    }

    .product-name {
      margin-bottom: var(--text_margin);

      .kana {
        font-size: clamp(11px, 1.4vw, 14px);
        letter-spacing: 0.02em;
        line-height: 1.7;
      }

      .en-text {
        font-size: clamp(23px, 2.9vw, 32px);
        letter-spacing: 0.03em;
        line-height: 1.25;
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .the_sofa_wrapper {
    padding: 60px 0;

    .the_sofa_inner {
      max-width: unset;
      width: 93%;
      margin: 0 auto;
    }

    .heading-the_sofa {
      padding-bottom: 10px;

      span {
        margin-left: 15px;
      }
    }

    .text_photo_pattern1 {
      display: flex;
      justify-content: space-between;
      margin-top: 0;

      &.--reverse {
        flex-direction: row-reverse;
      }

      .product-name {
        margin-bottom: var(--text_margin);
        text-align: center;
      }
    }
  }
}