body {
  background-color: white;
}

/** value model */

.value-model {
  max-width: 880px;
  margin: 96px auto 144px auto;

  @media (width < 768px) {
    width: 100%;
    padding: 0 16px;
  }

  @media (width >= 768px) and (width <= 960px) {
    width: 100%;
    padding: 0 40px;
  }

  @media (width <= 960px) {
    margin-top: 40px;
    margin-bottom: 64px;
  }

  > .title {
    color: #ed6103;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.1em;
    margin-bottom: 24px;

    @media (width <= 960px) {
      font-size: 24px;
      letter-spacing: 0.05em;
    }
  }

  > .description {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.15em;
    margin-bottom: 32px;
  }

  > picture .image {
    border-radius: 16px;
    width: 100%;
  }
}

/** // value model */
/** fam-hub */

.fam-hub {
  max-width: 880px;
  margin: 0 auto 96px auto;

  @media (width < 768px) {
    width: 100%;
    padding: 0 16px;
  }

  @media (width >= 768px) and (width <= 960px) {
    width: 100%;
    padding: 0 40px;
  }

  @media (width <= 960px) {
    margin-bottom: 48px;
  }

  > .title {
    color: #ed6103;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.1em;
    margin-bottom: 24px;

    @media (width <= 960px) {
      font-size: 24px;
      letter-spacing: 0.05em;
    }
  }

  > .description {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.15em;
    margin-bottom: 32px;
  }

  .panel {
    > .title {
      font-size: 24px;
      font-weight: bold;
      line-height: 1.6;
      letter-spacing: 0.1em;
      padding-bottom: 16px;
      border-bottom: 1px solid;
      border-image: linear-gradient(to right, #ed6103 80px, #a5a5a5 0) 1;
      margin-bottom: 32px;

      @media (width <= 960px) {
        font-size: 20px;
        padding-bottom: 20px;
        margin-bottom: 24px;
      }
    }

    > .sub-title {
      font-size: 20px;
      font-weight: bold;
      line-height: 1.6;
      letter-spacing: 0.1em;
      margin-bottom: 16px;
    }

    > .description {
      font-size: 14px;
      line-height: 2;
      letter-spacing: 0.1em;
      margin-bottom: 48px;

      @media (width <= 960px) {
        margin-bottom: 24px;
      }
    }

    .offices {
      display: flex;
      gap: 48px;
      margin-bottom: 72px;

      @media (width < 768px) {
        flex-wrap: wrap;
        gap: 24px;
      }

      @media (width <= 960px) {
        gap: 32px;
        margin-bottom: 48px;
      }

      .office {
        width: 160px;

        @media (width < 768px) {
          width: calc(50% - 16px);
        }

        .prefecture {
          font-size: 14px;
          font-weight: bold;
          line-height: 1;
          letter-spacing: 0.1em;
          margin-bottom: 8px;
        }

        .name {
          font-size: 14px;
          font-weight: bold;
          line-height: 1;
          letter-spacing: 0.1em;
          margin-bottom: 16px;
        }

        .address {
          font-size: 14px;
          line-height: 1.8;
          letter-spacing: 0.1em;
        }
      }
    }
  }
}

/** // fam-hub */
/** hub images */

.hub_images {
  margin-bottom: 98px;

  @media (width <= 960px) {
    margin-bottom: 64px;
  }

  .image {
    width: 280px;
    height: 280px;

    @media (width <= 960px) {
      width: 160px;
      height: 160px;
    }
  }

  .menu {
    max-width: 880px;
    margin: 26px auto 0 auto;
    text-align: right;
    display: flex;
    justify-content: flex-end;

    @media (width < 768px) {
      margin: 12px 16px 0 16px;
    }

    @media (width >= 768px) and (width <= 960px) {
      margin: 26px 40px 0 40px;
    }
  }
}

/** // hub images */
/** ceo greeting */

.ceo-greeting {
  max-width: 880px;
  margin: 0 auto 144px auto;

  @media (width <= 960px) {
    margin-bottom: 64px;
  }

  @media (width < 768px) {
    width: 100%;
    padding: 0 16px;
  }

  @media (width >= 768px) and (width <= 960px) {
    width: 100%;
    padding: 0 40px;
  }

  > .title {
    color: #ed6103;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0.1em;
    margin-bottom: 32px;

    @media (width <= 960px) {
      font-size: 24px;
      letter-spacing: 0.05em;
    }
  }

  > .content {
    display: flex;
    gap: 24px;

    @media (width <= 960px) {
      flex-direction: column;
    }

    > .image {
      width: 250px;
      height: 240px;
      object-fit: cover;
      border-radius: 16px;

      @media (width <= 960px) {
        width: 100%;
        height: auto;
      }
    }

    > .text {
      font-size: 14px;
      line-height: 2;
      letter-spacing: 0.1em;
      margin-bottom: 32px;

      > .paragraph {
        margin-bottom: 28px;
      }

      > .signature {
        font-weight: bold;
        text-align: right;
      }
    }
  }
}

/** // ceo greeting */
