@charset "UTF-8";

:root {
  --color-primary-blue: #403f81;
  --color-secondary-blue: #29abe2;
  --japanese-font-family: '游ゴシック体', 'Yu Gothic', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  --font-roboto: 'Roboto', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  color: var(--black);
  font-family: 'Roboto', '游ゴシック体', 'Yu Gothic', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-feature-settings: "palt" 1;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  text-align: left;
  margin: 0;
  background-color: #ffffff;
}

.inner-custom {
  width: 100%;
  margin-top: 10rem;
  padding: 0 10px;
  @media screen and (max-width: 768px) {
    margin-top: 5rem;
  }
}

.container {
  max-width: 1250px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 50px;
  @media screen and (max-width: 1000px) {
    padding: 0 20px;
  }
  @media screen and (max-width: 768px) {
    padding: 0 10px;
  }
}

.news-detail-content a {
  text-decoration: underline;
}

/** -----------------------------------
  * 共通パーツ
  * ----------------------------------- */
/* 見出しセンタリング */
.heading-centered {
  font-family: var(--japanese-font-family);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.24em;
  text-indent: 0.24em;
  > span {
    display: block;
    margin-top: 8px;
    font-family: var(--font-roboto);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
    text-transform: uppercase;
    margin-top: 0.8em;
    color: #80808e;
  }
  br {
    display: none;
  }
  @media screen and (max-width: 768px) {
    font-size: 21px;
    line-height: 1.8;
    letter-spacing: 0.15em;
    text-indent: 0.15em;
    > span {
      margin-top: 0.2em;
      line-height: 1.6;
      letter-spacing: 0.15em;
      text-indent: 0.15em;
    }
    br {
      display: inline;
    }
  }
  @media screen and (max-width: 400px) {
    letter-spacing: 0.04em;
    text-indent: 0.04em;
    > span {
      letter-spacing: 0.1em;
      text-indent: 0.1em;
    }
  }
}

/* パンくずリスト */
.breadcrumb-container {
  margin-top: 30px;
  @media screen and (max-width: 1000px) {
    margin-top: 10px;
  }
}
.breadcrumb-list {
  display: flex;
  list-style: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #80808e;
  li + li::before {
    content: "";
    margin: 0 8px;
    display: inline-block;
    vertical-align: middle;
    width: 11px;
    height: 4px;
    background: url('../images/icon-arrow-bc.svg') no-repeat center center/ contain;
  }
  a {
    color: #29abe2;
    text-decoration: none;
    transition: color 0.35s ease;
    &:hover {
      color: #403f81;
    }
  }
}

/* ページネーション */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 140px;
  @media screen and (max-width: 768px) {
    margin-top: 70px;
  }
  ul {
    display: flex;
    gap: 8px;
    li {
      list-style: none;
      a, span {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 1.5em;
        height: 1em;
        font-family: var(--japanese-font-family);
        font-size: 16px;
        line-height: 1.2;
        font-weight: 500;
        text-align: center;
        color: #000000;
        transition: all 0.3s ease;
      }
      a:hover {
        opacity: 0.5;
      }
      &.current-page span {
        background-color: #000000;
        color: #ffffff;
        pointer-events: none;
      }
      .icon-prev {
        display: inline-block;
        width: 1.2em;
        height: 1.2em;
        background: url('../images/icon-angle-left-black.svg') no-repeat center / contain;
      }
      .icon-next {
        display: inline-block;
        width: 1.2em;
        height: 1.2em;
        background: url('../images/icon-angle-right-black.svg') no-repeat center / contain;
      }
    }
  }
}


/** -----------------------------------
  * 物件情報詳細ページ - 画像カルーセル
  * ----------------------------------- */
#main-slide {
  .splide__slide {
    cursor: grab;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
      max-width: 100%;
      max-height: 100%;
      /* width: auto;
      height: auto; */
      object-fit: contain;
      object-position: center;
    }
  }
}
#thumbnail-carousel  {
  .splide__slide {
    position: relative;
    cursor: grab;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 縦横比を保ち、高さのMAXはサムネイルの高さ（150px / 100px / 78px） */
    img {
      max-width: 100%;
      max-height: 150px;
      width: auto;
      height: auto;
      object-fit: contain;
      object-position: center;
    }
    @media screen and (max-width: 1000px) {
      img {
        max-height: 100px;
      }
    }
    @media screen and (max-width: 600px) {
      img {
        max-height: 78px;
      }
    }
    &.is-active {
      border: none !important;
      &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.25);
      }
    }
  }

  .splide__track--nav>.splide__list>.splide__slide {
    border: none;
  }

  .splide__track {
    margin-top: 10px;
    margin-left: calc((100% - 1150px) / 2);
    @media screen and (max-width: 1265px) {
      margin-left: 50px;
    }
    @media screen and (max-width: 1000px) {
      margin-left: 20px;
    }
    @media screen and (max-width: 768px) {
      margin-left: 10px;
    }
  }

  .splide__arrows {
    width: 100%;
    max-width: 1250px;
    padding: 0 50px;
    margin: 10px auto 0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    @media screen and (max-width: 1000px) {
      padding: 0 20px;
    }
    @media screen and (max-width: 768px) {
      padding: 0 10px;
    }
  }

  .splide__arrow {
    width: 1.25em;
    height: 1.25em;
    position: static;
    transform: none;
    background: transparent;
    border: 1px solid #000000;
    svg {
      width: 0.6em;
      height: 0.6em;
    }
  }
}

/** -----------------------------------
  * 会社概要ページ
  * ----------------------------------- */
.company {
  margin-top: 100px;
  @media screen and (max-width: 1000px) {
    margin-top: 40px;
  }
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  th, td {
    padding: 24px 0;
    font-family: var(--japanese-font-family);
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    vertical-align: top;
    letter-spacing: 0.12em;
    border-bottom: 1px solid #80808e;
  }
  th {
    width: 11em;
    padding-right: 6em;
    span {
      display: flex;
      justify-content: space-between;
      i {
        font-style: normal;
      }
    }
  }
  td {
    span {
      &.zip {
        display: inline-block;
        margin: 0 0.5em 0 0;
      }
    }
    a {
      display: inline;
      transition: all 0.35s ease;
      &:hover {
        opacity: 0.8;
      }
    }
    ol, ul {
      line-height: 2;
      li {
        display: flex;
        align-items: center;
        a {
          margin-right: 0.5em;
          color: #29abe2;
          text-decoration: underline;
          transition: color 0.35s ease;
          &:hover {
            color: #403f81;
          }
        }
      }
    }
  }
  @media screen and (max-width: 768px) {
    th, td {
      display: block;
      width: 100%;
      padding: 12px 0;
      font-size: 16px;
    }
    th {
      padding: 1.2em 0 0;
      border-bottom: none;
      span {
        display: block;
        letter-spacing: 0.06em;
      }
    }
    td {
      padding: 0.5em 0 1.2em;
      letter-spacing: 0;
      span {
        &.zip {
          display: block;
          margin: 0;
        }
      }
    }
    tr {
      &:last-child {
        td {
          border-bottom: none;
        }
      }
    }
  }
}

.company-note {
  margin-top: 80px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
  line-break: strict;
  word-break: break-all;
  padding: 1.3em 2em;
  border: 1px solid #80808e;
  a {
    display: inline;
    color: #29abe2;
    text-decoration: underline;
    transition: color 0.35s ease;
    &:hover {
      color: #403f81;
    }
  }
  @media screen and (max-width: 768px) {
    margin-top: 50px;
    letter-spacing: 0;
    padding: 1.3em 1.8em;
  }
}

.vision {
  margin-top: 140px;
}

.vision-lead {
  margin-top: 50px;
  font-family: var(--japanese-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  text-align: center;
  color: #000;
  @media screen and (max-width: 768px) {
    margin-top: 30px;
  }
}

.vision-text {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.12em;
  text-align: justify;
  color: #000;
  > p {
    & + & {
      margin-top: 2em;
    }
  }
  @media screen and (max-width: 768px) {
    margin-top: 25px;
  }
}

.vision-link {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: fit-content;
  margin: 50px auto 0;
  padding: 10px 24px;
  font-family: var(--japanese-font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  color: #fff;
  border: 1px solid #000;
  background-color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  &:hover {
    background-color: #ffffff;
    color: #000;
  }
  .icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    background: url('../images/icon-angle-right-white.svg') no-repeat center / contain;
  }
}

.system {
  margin-top: 140px;
}

.system-card {
  margin-top: 70px;
  @media screen and (max-width: 768px) {
    margin-top: 50px;
  }
}

.system-card-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 48px 38px;
  @media screen and (max-width: 768px) {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 38px 0;
  }
}

.system-card-item {
  flex-basis: calc((100% - 76px) / 3);
  text-align: center;
  list-style: none;
  &:nth-child(n+4) {
    .system-card-item-inner {
      min-height: 144px;
      @media screen and (max-width: 768px) {
        min-height: auto;
      }
    }
  }
}

.system-card-item-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 95px;
  padding: 25px 10px 12px;
  margin: 0 auto;
  border: 1px solid #80808e;
  h3 {
    position: absolute;
    top: -0.5em;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.06em;
    padding: 0 0.5em;
    background-color: #ffffff;
  }
  p {
    display: flex;
    flex-direction: column;
    font-family: var(--japanese-font-family);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.06em;
    span {
      display: inline-block;
      margin-bottom: 8px;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0;
    }
  }
}

.system-figure {
  margin-top: 60px;
  text-align: center;
  @media screen and (max-width: 768px) {
    margin-top: 35px;
  }
}

.system-text {
  margin-top: 55px;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.12em;
  text-align: justify;
  color: #000;
  > p {
    & + & {
      margin-top: 2em;
    }
  }
}

/** -----------------------------------
  * 物件情報一覧ページ
  * ----------------------------------- */
.property {
  margin-top: 100px;
  @media screen and (max-width: 1000px) {
    margin-top: 40px;
  }
}

.property-conditions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 120px;
  margin-top: 60px;
  border: 1px solid #403f81;
  > p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.12em;
    padding: 0.4em 0.8em;
    color: #fff;
    background-color: #ff7bac;
  }
  @media screen and (max-width: 1000px) {
    min-height: 160px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
  }
  @media screen and (max-width: 768px) {
    min-height: 240px;
    margin-top: 40px;
    > p {
      font-size: 12px;
    }
  }
}

/* 指定の条件で絞り込む（jdk-arc.com/works/ に合わせた表示） */
.property-tag-filter {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0;
  text-align: center;
  @media screen and (max-width: 768px) {
    padding: 0;
  }
}

.property-tag-filter-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 12px;
  color: #333;
  @media screen and (max-width: 768px) {
    font-size: 13px;
    margin-bottom: 10px;
  }
}

.property-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  @media screen and (max-width: 768px) {
    gap: 6px 8px;
  }
}

.property-tag-list > a {
  display: inline-block;
}

.property-tag-button {
  display: inline-block;
  padding: 6px 14px;
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #333;
  border: none;
  border-radius: 20px;
  background-color: #e8e8e8;
  transition: background-color 0.2s ease, color 0.2s ease;
  &:hover {
    background-color: #d8d8d8;
    color: #000;
  }
  &.is-active {
    color: #fff;
    background-color: #403f81;
  }
  &.is-active:hover {
    color: #fff;
    background-color: #35346b;
  }
  @media screen and (max-width: 768px) {
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 16px;
  }
}

/* 物件カテゴリー絞り込み（チェックボックス） */
.property-category-filter {
  width: 100%;
  padding: 20px;
  @media screen and (max-width: 768px) {
    padding: 15px;
  }
}

.property-category-filter-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 20px;
  @media screen and (max-width: 768px) {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

.property-category-form {
  width: 100%;
}

.property-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  @media screen and (max-width: 768px) {
    gap: 10px 16px;
    margin-bottom: 12px;
  }
}

.property-category-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.12em;
  @media screen and (max-width: 768px) {
    font-size: 12px;
    gap: 6px;
  }
}

.property-category-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #403f81;
  @media screen and (max-width: 768px) {
    width: 16px;
    height: 16px;
  }
}

.property-category-label {
  user-select: none;
}

.property-category-item-all {
  width: 100%;
  margin-bottom: 4px;
}

.property-category-reset {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #403f81;
  text-decoration: underline;
  @media screen and (max-width: 768px) {
    font-size: 12px;
  }
}

.property-category-reset:hover {
  opacity: 0.8;
}

.property-category-actions {
  text-align: center;
}

.property-category-submit {
  display: inline-block;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #fff;
  background-color: #403f81;
  border: 1px solid #403f81;
  cursor: pointer;
  transition: opacity 0.3s ease;
  @media screen and (max-width: 768px) {
    padding: 8px 22px;
    font-size: 12px;
  }
}

.property-category-submit:hover {
  opacity: 0.9;
}

.property-list-wrapper {
  margin-top: 85px;
  @media screen and (max-width: 768px) {
    margin-top: 60px;
  }
}

.property-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 90px 8px;
  @media screen and (max-width: 1000px) {
    gap: 70px 15px;
    max-width: 750px;
    margin: 0 auto;
  }
  @media screen and (max-width: 768px) {
    flex-direction: column;
    gap: 50px 0;
  }
}

.property-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-basis: calc((100% - 40px) / 3);
  @media screen and (max-width: 1000px) {
    flex-basis: calc((100% - 15px) / 2);
  }
  @media screen and (max-width: 768px) {
    flex-basis: 100%;
  }
  a {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    transition: all 0.35s ease;
    &:hover {
      opacity: 0.5;
    }
  }
}

.property-thumbnail {
  display: block;
  width: 370px;
  height: 220px;
  overflow: hidden;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
}

.property-text {
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.property-title {
  font-size: 16px;
  font-weight: 700;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.property-summary {
  margin-top: 8px;
  li {
    list-style: none;
    font-size: 14px;
    font-weight: 400;
  }
}

.property-rating {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  margin-top: 8px;
}

.property-rating--centered  {
  justify-content: center;
  margin-top: 0;
}

/* 査定基準項目 table内で使用 */
.property-rating--ta-centered  {
  justify-content: center;
  margin-top: 0;
  @media screen and (max-width: 1000px) {
    flex-direction: column-reverse;
    .property-rating-text {
      .star {
        font-size: 17px;
      }
    }
    .property-rating-score {
      margin-left: 0;
      font-size: 25px;
    }
  }
  @media screen and (max-width: 768px) {
    .property-rating-text {
      .star {
        font-size: 15px;
      }
    }
    .property-rating-score {
      font-size: 24px;
    }
  }
}

.property-rating-text {
  display: flex;
  align-items: center;
  white-space: nowrap;
  .prefix {
    margin-right: 8px;
    transform: translateY(2px);
  }
  .star {
    font-size: 25px;
    letter-spacing: 0;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    &::before {
      content: "★★★★★";
      color: #fee7c4;
    }
    &::after {
      content: "★★★★★";
      position: absolute;
      width: calc(var(--star-fill, 0) * 20%);
      z-index: 1;
      top: 0;
      left: 0;
      overflow: hidden;
      white-space: nowrap;
      color: #fbb03b;
    }
  }
}

.property-rating-text--large {
  .star {
    font-size: 50px;
    @media screen and (max-width: 1000px) {
      font-size: 38px;
    }
  }
}

.property-rating-score {
  margin-left: 12px;
  font-family: var(--japanese-font-family);
  font-size: 30px;
  font-weight: 700;
}

.property-rating-score--large {
  font-size: 60px;
  margin-left: 20px;
  @media screen and (max-width: 1000px) {
    font-size: 38px;
    margin-left: 15px;
  }
}

.property-note {
  margin-top: 65px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  letter-spacing: .1em;
  @media screen and (max-width: 768px) {
    margin-top: 55px;
  }
}

/** -----------------------------------
  * 物件情報詳細ページ
  * ----------------------------------- */
.propertyDetail {
  margin-top: 100px;
  @media screen and (max-width: 1000px) {
    margin-top: 50px;
  }
}

.propertyDetail-main {
  display: flex;
  margin-top: 50px;
  @media screen and (max-width: 1000px) {
    flex-direction: column-reverse;
    margin-top: 60px;
  }
  .propertyDetail-content {
    width: calc(100% - 330px);
    @media screen and (max-width: 1000px) {
      width: 100%;
      margin-top: 12px;
    }
  }
  .propertyDetail-side {
    width: 280px;
    margin-left: auto;
    @media screen and (max-width: 1000px) {
      width: 100%;
      margin-left: 0;
    }
  }
  .propertyDetail-side-inner {
    position: sticky;
    top: 100px;
    @media screen and (max-width: 1000px) {
      position: static;
      top: auto;
    }
  }
}

.propertyDetail-content-row {
  & + & {
    margin-top: 140px;
  }
}

.propertyDetail-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
  @media screen and (max-width: 1000px) {
    font-size: 21px;
  }
}

.propertyDetail-summary {
  margin-top: 2px;
  li {
    list-style: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.06em;
    text-align: justify;
    @media screen and (max-width: 1000px) {
      font-size: 14px;
    }
  }
}

.propertyDetail-description {
  margin-top: 55px; 
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: justify;
  @media screen and (max-width: 1000px) {
    margin-top: 15px;
    font-size: 16px;
  }
}

.propertyDetail-tables {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 55px;
  table {
    width: 50%;
    border-collapse: collapse;
    border-top: 1px solid #000;
    th, td {
      padding: 12px 0;
      font-family: var(--japanese-font-family);
      font-size: 16px;
      font-weight: 500;
      line-height: 1.5;
      vertical-align: middle;
      letter-spacing: 0.12em;
      border-bottom: 1px solid #000;
    }
    th {
      width: 6em;
      text-align: left;
      color: #8daedb;
    }
    td {
      text-align: left;
    }
  }
  @media screen and (max-width: 1000px) {
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
    border-top: 1px solid #000;
    table {
      width: 100%;
      border-top: none;
      th, td {
        letter-spacing: 0.02em;
      }
      th {
        width: auto;
      }
    }
  }
}

.propertyDetail-table {
  margin-top: 35px;
  @media screen and (max-width: 1000px) {
    margin-top: 25px;
  }
}

.table-assessment {
  width: 100%;
  border-collapse: collapse;
  thead {
    border-bottom: 1px solid #000;
    background-color: transparent;
    th {
      padding: 1em 0;
      font-family: var(--japanese-font-family);
      font-size: 16px;
      font-weight: 400;
      line-height: 1;
      vertical-align: middle;
      letter-spacing: 0.12em;
      text-align: center;
      color: #000;
      .border {
        position: relative;
        &::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 1px;
          height: 100%;
          background-color: #000;
          pointer-events: none;
        }
      }
      @media screen and (max-width: 1000px) {
        padding: 0.6em 0;
      }
    }
  }
  tbody {
    th, td {
      font-family: var(--japanese-font-family);
      font-size: 16px;
      line-height: 1;
      vertical-align: middle;
      letter-spacing: 0.02em;
      word-break: break-all;
      border-bottom: 1px solid #000;
      color: #000;
    }
    th {
      width: 8em;
      padding: 1em 0;
      font-weight: 500;
      text-align: center;
      letter-spacing: 0.2em;
      color: #8daedb;
      @media screen and (max-width: 1000px) {
        width: auto;
        padding: 0.4em 0.4em;
      }
    }
    td {
      padding: 1em 1em;
      font-weight: 400;
      text-align: left;
      word-break: break-all;
      color: #000;
      @media screen and (max-width: 1000px) {
        padding: 0.4em 0.4em;
      }
      &:last-child {
        width: 220px;
        @media screen and (max-width: 1000px) {
          width: auto;
          padding: 0.4em 0.4em;
        }
      }
      .border {
        position: relative;
        &::before {
          content: '';
          position: absolute;
          top: 0;
          left: -1em;
          width: 1px;
          height: 100%;
          background-color: #000;
          pointer-events: none;
          @media screen and (max-width: 1000px) {
            left: -0.4em;
          }
        }
      }
    }
  }
}

.table-basic {
  width: 100%;
  border-collapse: collapse;
  tbody {
    tr {
      &:nth-child(odd) {
        background-color: #f2f2f4;
      }
    }
  }
  th, td {
    padding: 1.1em 1em;
    font-family: var(--japanese-font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    vertical-align: middle;
    word-break: break-all;
    letter-spacing: 0.12em;
  }
  th {
    width: 8em;
    color: #8daedb;
  }
  caption {
    margin-top: 2em;
    caption-side: bottom;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.06em;
    text-align: center;
  }
  @media screen and (max-width: 1000px) {
    th, td {
      padding: 1.1em 0.5em;
      letter-spacing: 0;
    }
    th {
      width: auto;
      min-width: 5.5em;
      text-align: center;
    }
  }
}

.propertyDetail-rating-overview {
  margin-top: 20px;
  text-align: center;
  @media screen and (max-width: 1000px) {
    margin-top: 25px;
  }
}

.propertyDetail-rating-overview-title {
  margin-bottom: 1em;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
}

.propertyDetail-architect-evaluation {
  margin-top: 40px;
}

.propertyDetail-architect-evaluation-title {
  margin-bottom: 0.75em;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
}

.propertyDetail-architect-evaluation-body {
  font-size: 16px;
  line-height: 1.8;
}

.propertyDetail-price-group {
  line-height: 1;
  margin-top: 0;
}

.propertyDetail-price-label {
  display: block;
  font-size: 60px;
  font-family: var(--japanese-font-family);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: right;
  color: #ed1c24;
  span {
    font-size: 30px;
  }
  @media screen and (max-width: 1000px) {
    font-size: 48px;
    text-align: left;
    span {
      font-size: 26px;
    }
  }
}

.propertyDetail-heading {
  padding-left: 8px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  border-left: 3px solid #403f81;
}

.propertyDetail-contact-group {
  margin-top: 65px;
  @media screen and (max-width: 1000px) {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 20px 20px;
    margin-top: 0;
    background-color: rgba(0, 0, 0, 0.5);
  }
}

.propertyDetail-heading-side {
  padding-left: 8px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  border-left: 3px solid #403f81;
  @media screen and (max-width: 1000px) {
    display: none;
  }
}

.propertyDetail-description-side {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.06em;
  text-align: justify;
  @media screen and (max-width: 1000px) {
    margin-top: 0;
    text-align: center;
    color: #fff;
  }
}

.propertyDetail-button-side {
  display: block;
  margin-top: 30px;
  padding: 0.6em 0;
  border-radius: 5em;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  color: #fff;
  background-color: #403f81;
  transition: all 0.35s ease;
  &:hover {
    opacity: 0.8;
    color: #fff;
  }
  @media screen and (max-width: 1000px) {
    margin-top: 10px;
    font-size: 18px;
    border: 1px solid #fff;
  }
}

.propertyInfo {
  margin-top: 35px;
  @media screen and (max-width: 1000px) {
    margin-top: 30px;
  }
}

.propertyInfo-list {
  margin-top: 20px;
}
.propertyInfo-item {
  display: flex;
  & + & {
    margin-top: 40px;
  }
  @media screen and (max-width: 1000px) {
    flex-direction: column;
    & + & {
      margin-top: 50px;
    }
  }
}

.propertyInfo-thumbnail {
  width: 48.79%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    margin: auto;
    object-fit: contain;
    object-position: center;
  }
  @media screen and (max-width: 1000px) {
    width: 100%;
    aspect-ratio: 4 / 3;
  }
}

.propertyInfo-text {
  width: 48%;
  margin-left: 20px;
  @media screen and (max-width: 1000px) {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
}

.propertyInfo-title {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
}

.propertyInfo-description {
  margin-top: 1em;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.06em;
  word-break: break-all;
  text-align: justify;
  @media screen and (max-width: 1000px) {
    margin-top: 0.6em;
  }
}

.propertyAddress {
  margin-top: 140px;
  margin-bottom: 140px;
  @media screen and (max-width: 768px) {
    margin-bottom: 70px;
  }
}

.propertyAddress-heading {
  padding-left: 8px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  border-left: 3px solid #403f81;
}

.propertyAddress-map {
  margin-top: 35px;
  position: relative;
  width: 100%;
  height: 500px;
  iframe {
    width: 100%;
    height: 100%;
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.propertyRelated {
  margin-top: 140px;
  margin-bottom: 10rem;
  @media screen and (max-width: 768px) {
    margin-bottom: 5rem;
  }
}

.propertyRelated-heading {
  padding-left: 8px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  border-left: 3px solid #403f81;
}

.propertyRelated-body {
  margin-top: 35px;
  @media screen and (max-width: 1000px) {
    margin-top: 25px;
  }
}

.propertyRelated-spacer {
  margin-bottom: 10rem;
  @media screen and (max-width: 768px) {
    margin-bottom: 5rem;
  }
}

/** -----------------------------------
  * お問合せフォーム
  * ----------------------------------- */
.contact-form-wrapper {
  margin-top: 100px;
  @media screen and (max-width: 1000px) {
    margin-top: 40px;
  }
}

.contact-form {
  margin-top: 50px;
  @media screen and (max-width: 1000px) {
    margin-top: 0;
  }
  table {
    width: 100%;
    border-collapse: collapse;
    th, td {
      font-family: var(--japanese-font-family);
      font-size: 16px;
      font-weight: 500;
      line-height: 1.5;
      letter-spacing: 0.06em;
      vertical-align: top;
      @media screen and (max-width: 1000px) {
        display: block;
        width: 100%;
      }
    }
    th {
      position: relative;
      width: 280px;
      padding: calc(14px + 0.35em) 0;
      span {
        display: inline-block;
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 0;
      }
      .required {
        display: flex;
        justify-content: center;
        position: absolute;
        top: calc(14px + 0.4em);
        right: 2em;
        font-size: 14px;
        line-height: 1;
        text-align: center;
        color: #fff;
        background-color: #ed1c24;
        padding: 0.3em 0.6em;
        border-radius: 15px;
      }
      @media screen and (max-width: 1000px) {
        width: 100%;
        padding: 2.2em 0 0;
        .required {
          right: 0;
          top: 2.4em;
        }
        br.pcbr {
          display: none;
        }
      }
    }
    td {
      padding: 14px 0;
      input[type="text"],
      input[type="tel"],
      input[type="email"],
      select,
      textarea {
        width: 100%;
        padding: 0.35em 0.8em;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.5;
        letter-spacing: 0.06em;
        border: 1px solid #00001e;
        border-radius: 3px;
        resize: vertical;
        transition: box-shadow 0.35s ease;
        &::placeholder {
          color: #b2b2bb;
        }
        &:focus {
          outline: none;
          border-color: #403f81;
          box-shadow: 0 0 8px rgba(64, 63, 129, 0.5);
        }
      }
      textarea {
        min-height: 110px;
      }
      @media screen and (max-width: 1000px) {
        padding: 10px 0 0;
        textarea {
          min-height: 200px;
        }
      }
    }
  }
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  input[type="checkbox"] {
    margin-right: 8px;
  }
  ~ p {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.06em;
    color: #000;
  }
}

.c-checkbox {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  margin-top: 0.5em;
  margin-bottom: 0.8em;
  input[type=checkbox] {
    display: none;
    &:checked + .c-checkbox__label::before {
      border-color: #ed1c24;
      background-color: #fff;
    }
    &:checked + .c-checkbox__label::after {
      opacity: 1;
      transform: rotate(45deg) scale3d(1,1,1);
    }
  }
}

.c-checkbox__label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 1.8em;
  position: relative;
  transition: all .35s ease;
  &:hover {
    opacity: 0.8;
  }
  &::before {
    border-radius: 3px;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1.25em;
    height: 1.25em;
    margin-top: -0.15em;
    border: 1px solid #000;
    background-color: #fff;
    transition: all .2s ease-in-out;
  }
  &::after {
    opacity: 0;
    content: '';
    display: block;
    position: absolute;
    top: 0em;
    left: 0.4em;
    width: 8px;
    height: 13px;
    border-right: 3px solid #ed1c24;
    border-bottom: 3px solid #ed1c24;
    transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
    transition: all .2s ease-in-out;
  }
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: fit-content;
  margin: 50px auto 0;
  padding: 12px 35px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  color: #fff;
  border: 1px solid #000;
  background-color: #000;
  text-decoration: none;
  transition: all 0.35s ease;
  &:hover {
    background-color: #ffffff;
    color: #000;
  }
  button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: transparent;
    border: none;
    color: inherit;
  }
  .icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    background: url('../images/icon-angle-right-white.svg') no-repeat center / contain;
  }
}

/** -----------------------------------
  * プライバシーポリシーページ
  * ----------------------------------- */
.privacy-policy {
  margin-top: 100px;
  @media screen and (max-width: 1000px) {
    margin-top: 40px;
  }
}

.privacy-content {
  margin-top: 50px;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.12em;
  text-align: left;
  color: #000;
  > p {
    margin-bottom: 1.5em;
    &:first-child {
      margin-top: 0;
    }
  }
  > h3 {
    margin-top: 2.5em;
    margin-bottom: 1em;
    font-family: var(--japanese-font-family);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.12em;
    color: #000;
    &:first-of-type {
      margin-top: 0;
    }
  }
  > ul {
    margin-top: 1em;
    margin-bottom: 1.5em;
    padding-left: 0;
    list-style: none;
    li {
      position: relative;
      padding-left: 1.2em;
      margin-top: 0.5em;
      line-height: 2;
      letter-spacing: 0.12em;
      &::before {
        content: "・";
        position: absolute;
        left: 0;
        color: #000;
      }
      &:first-child {
        margin-top: 0;
      }
    }
  }
  @media screen and (max-width: 600px) {
    margin-top: 30px;
    font-size: 14px;
    letter-spacing: 0.08em;
    > h3 {
      font-size: 16px;
      margin-top: 2em;
    }
    > ul {
      li {
        letter-spacing: 0.08em;
      }
    }
  }
}

.privacy-contact {
  margin-top: 3em;
  padding: 2em;
  border: 1px solid #80808e;
  background-color: #f9f9f9;
  h3 {
    margin-top: 0;
    margin-bottom: 1em;
    font-family: var(--japanese-font-family);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.12em;
    color: #000;
  }
  p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.12em;
    color: #000;
  }
  @media screen and (max-width: 600px) {
    margin-top: 2.5em;
    padding: 1.5em;
    h3 {
      font-size: 16px;
    }
    p {
      font-size: 14px;
      letter-spacing: 0.08em;
    }
  }
}

/** -----------------------------------
  * 中古物件を売りたい！
  * ----------------------------------- */
.wantTo {
  margin-top: 100px;
  @media screen and (max-width: 1000px) {
    margin-top: 40px;
  }
}

.wantTo-head {
  margin-top: 65px;
  @media screen and (max-width: 1000px) {
    margin-top: 40px;
  }
  @media screen and (max-width: 768px) {
    margin-top: 22px;
  }
  h2 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.06em;
    text-indent: 0.06em;
    text-align: center;
    br {
      display: none;
    }
    @media screen and (max-width: 1000px) {
      font-size: 56px;
      line-height: 1.5;
      br {
        display: block;
      }
    }
    @media screen and (max-width: 768px) {
      font-size: 42px;
    }
  }
  p {
    margin-top: 35px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-indent: 0.06em;
    text-align: center;
    @media screen and (max-width: 1000px) {
      font-size: 18px;
      margin-top: 0.8em;
    }
    @media screen and (max-width: 768px) {
      font-size: 16px;
    }
  }
}

.wantTo-head--buy {
  h2 {
    line-height: 1.2;
    br.pcbr {
      display: inline;
    }
  }
  @media screen and (max-width: 1000px) {
    h2 {
      line-height: 1.5;
    }
  }
}

.wantTo-body {
  margin-top: 140px;
  @media screen and (max-width: 768px) {
    margin-top: 125px;
  }
}

.wantTo-image {
  display: block;
  text-align: center;
  margin: 65px auto 0;
  > figcaption {
    margin-top: 25px;
  }
  @media screen and (max-width: 1000px) {
    margin-top: 40px;
    max-width: 600px;
    > figcaption {
      margin-top: 12px;
    }
  }
}

.wantTo-text {
  margin-top: 50px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-align: center;
  color: #000;
  strong {
    position: relative;
    &::after {
      content: '';
      position: absolute;
      bottom: -0.1em;
      left: 0;
      width: 100%;
      height: 5px;
      background-color: #000;
      z-index: -1;
    }
  }
  br.spbr {
    display: none;
  }
  @media screen and (max-width: 1000px) {
    margin-top: 30px;
    font-size: 32px;
    line-height: 1.7;
    br.spbr {
      display: block;
    }
  }
  @media screen and (max-width: 768px) {
    font-size: 28px;
    > strong::after {
      height: 4px;
    }
  }
}

/* アンカーリンクのスクロール位置調整 */
#thk-appraisal {
  scroll-margin-top: 100px;
}

#building-consultant {
  scroll-margin-top: 100px;
}

@media screen and (max-width: 768px) {
  #thk-appraisal {
    scroll-margin-top: 80px;
  }
  #building-consultant {
    scroll-margin-top: 80px;
  }
}

.wantTo-list {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  margin: 130px auto 0;
  > * {
    flex: 1;
  }
  @media screen and (max-width: 1000px) {
    gap: 35px;
    margin-top: 100px;
  }
  @media screen and (max-width: 768px) {
    flex-direction: column;
    gap: 70px;
    margin-top: 130px;
  }
}

.wantTo-desc {
  margin-top: 1em;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: justify;
  color: #000;
}

.difference {
  margin-top: 100px;
}

.difference-table {
  padding: 30px;
  margin-top: 40px;
  border-radius: 10px;
  background-color: #f2f2f4;
  table {
    width: 100%;
    border-collapse: collapse;
    thead {
      tr {
        th {
          padding: 10px 0;
          font-family: var(--japanese-font-family);
          font-size: 21px;
          font-weight: 500;
          line-height: 1;
          letter-spacing: 0;
          text-align: center;
          color: #000;
          border-bottom: 1px solid #000;
        }
        td {
          padding: 10px 0;
          font-family: var(--japanese-font-family);
          font-size: 21px;
          font-weight: 500;
          line-height: 1;
          letter-spacing: 0;
          text-align: center;
          color: #000;
          border-bottom: 1px solid #000;
          border-left: 1px solid #000;
          br {
            display: none;
          }
        }
      }
    }
    tbody {
      tr {
        th {
          padding: 8px 0;
          font-family: var(--japanese-font-family);
          font-size: 18px;
          font-weight: 500;
          line-height: 1.45;
          letter-spacing: 0.06em;
          text-align: left;
          color: #000;
          border-bottom: 1px solid #000;
        }
        td {
          padding: 0;
          font-family: var(--japanese-font-family);
          font-size: 24px;
          font-weight: 500;
          line-height: 1.45;
          letter-spacing: 0.06em;
          text-align: center;
          color: #000;
          border-bottom: 1px solid #000;
          border-left: 1px solid #000;
        }
      }
    }
  }
  @media screen and (max-width: 768px) {
    padding: 30px 10px;
    margin-top: 30px;
    table {
      thead {
        tr {
          th, td {
            font-size: 16px;
            padding: 8px 0;
          }
          td {
            br {
              display: block;
            }
          }
        }
      }
      tbody {
        tr {
          th {
            font-size: 18px;
            padding: 6px 0;
          }
          td {
            min-width: 60px;
            font-size: 24px;
            padding: 18px 0;
          }
        }
      }
    }
  }
}

.sample {
  margin-top: 140px;
  @media screen and (max-width: 768px) {
    margin-top: 130px;
  }
}

.sample-image {
  display: block;
  max-width: 250px;
  margin: 40px auto 0;
  border: 1px solid #000;
  @media screen and (max-width: 768px) {
    margin-top: 30px;
  }
}

.sample-link {
  min-width: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: fit-content;
  margin: 50px auto 0;
  padding: 10px 24px;
  font-family: var(--japanese-font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  color: #fff;
  border: 1px solid #000;
  background-color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  &:hover {
    opacity: 0.5;
  }
  .icon {
    display: inline-block;
    width: 13px;
    height: 13.5px;
    background: url('../images/icon-external.svg') no-repeat center / contain;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
  }
  @media screen and (max-width: 768px) {
    min-width: 320px;
    margin-top: 35px;
  }
}

.system {
  margin-top: 140px;
}

.system-body {
  width: 100%;
  border: 1px solid #000;
  margin: 0 auto;
  img {
    width: 100%;
    height: auto;
  }
  @media screen and (max-width: 1000px) {
    max-width: 600px;
  }
}

.stepsToSell {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 140px;
  margin-top: 140px;
  background-color: #f2f2f4;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  @media screen and (max-width: 768px) {
    padding-top: 130px;
  }
}

.stepsToSell-body {
  max-width: 1150px;
  padding: 40px 50px;
  margin: 60px auto 0;
  border-radius: 10px;
  background-color: #fff;
  @media screen and (max-width: 768px) {
    padding: 22px 30px;
    margin: 35px auto 0;
  }
}

.stepsToSell-list {
  margin-top: 40px;
  @media screen and (max-width: 768px) {
    margin-top: 25px;
  }
}

/** -----------------------------------
  * ステップカード（灰色に変更）
  * ----------------------------------- */
.step-card--gray {
  background-color: #f2f2f4;
}

.button-more {
  min-width: 250px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: fit-content;
  margin: 50px auto 0;
  padding: 10px 24px;
  font-family: var(--japanese-font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  color: #fff;
  border: 1px solid #000;
  background-color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  &:hover {
    opacity: 0.5;
  }
  .icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    background: url('../images/icon-angle-right-white.svg') no-repeat center / contain;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
  }
  @media screen and (max-width: 768px) {
    margin-top: 40px;
  }
}

.button-more--pc {
  @media screen and (max-width: 1000px) {
    display: none;
  }
}
.button-more--sp {
  display: none;
  @media screen and (max-width: 1000px) {
    display: flex;
    margin-top: 0;
  }
}

.houseListings {
  width: 100vw;
  padding-right: 15px;
  padding-left: 15px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 140px;
  padding-bottom: 140px;
  background-color: #f2f2f4;
}

.houseListings-body {
  margin-top: -30px;
  @media screen and (max-width: 768px) {
    margin-top: 25px;
  }
}

.houseListings-item {
  list-style: none;
}

.companyOverview {
  margin-top: 140px;
}

.companyOverview-inner {
  display: flex;
  align-items: center;
  gap: 90px;
  @media screen and (max-width: 1000px) {
    flex-direction: column;
    gap: 40px;
  }
}

.companyOverview-thumbnail {
  border-radius: 10px;
  overflow: hidden;
  img {
    display: block;
    width: 100%;
    height: auto;
  }
  @media screen and (max-width: 1000px) {
    width: 100%;
    max-width: 600px;
  }
}

#carousel-slider {
  .splide__arrows {
    width: 100%;
    max-width: 1250px;
    padding: 0 50px;
    margin: 0 auto 50px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    @media screen and (max-width: 1000px) {
      padding: 0 20px;
    }
    @media screen and (max-width: 768px) {
      padding: 0 0;
      margin: 0 auto 25px;
      justify-content: center;
      gap: 20px;
    }
  }

  .splide__arrow {
    width: 1.5em;
    height: 1.5em;
    position: static;
    transform: none;
    background: transparent;
    border: 1px solid #000000;
    svg {
      width: 0.75em;
      height: 0.75em;
    }
  }
}

.guide {
  margin-top: 130px;
}

.guide-inner {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  @media screen and (max-width: 768px) {
  }
}

.guide-head {
  display: flex;
  align-items: center;
  gap: 3.5%;
  @media screen and (max-width: 1000px) {
    max-width: 600px;
    flex-direction: column;
    gap: 25px;
    margin: 0 auto;
  }
}

.guide-thumbnail {
  width: 550px;
  border-radius: 10px;
  overflow: hidden;
  img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  @media screen and (max-width: 1000px) {
    width: 100%;
    flex: 1;
  }
}

.guide-lead {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.06em;
  text-align: justify;
  color: #000;
  @media screen and (max-width: 768px) {
    letter-spacing: 0.04em;
  }
}

.guide-body {
  max-width: 550px;
  margin: 70px auto 0;
  @media screen and (max-width: 768px) {
    margin-top: 50px;
  }
}

.guide-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.24em;
  text-align: center;
  br {
    display: none;
  }
  @media screen and (max-width: 768px) {
    font-size: 22px;
    line-height: 1.8;
    br {
      display: inline;
    }
  }
}

.guide-description {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.06em;
  text-align: justify;
  @media screen and (max-width: 768px) {
    margin-top: 15px;
    letter-spacing: 0.04em;
  }
}

.searchExamples-list {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  margin: 130px auto 0;
  > * {
    flex: 1;
  }
  @media screen and (max-width: 1000px) {
    flex-direction: column;
    gap: 35px;
    max-width: 600px;
    margin-top: 100px;
  }
  @media screen and (max-width: 768px) {
    gap: 30px;
    margin-top: 130px;
  }
}

.searchExamples-thumbnail {
  border-radius: 10px;
  overflow: hidden;
  img {
    display: block;
    width: 100%;
    height: auto;
  }
}

.searchExamples-note {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
  margin: 0 auto;
  @media screen and (max-width: 1000px) {
    max-width: 600px;
    text-align: justify;
    line-height: 2;
    margin-top: 20px;
  }
}

.recommend {
  margin-top: 140px;
}

.recommend-body {
  padding: 40px 30px;
  border-radius: 10px;
  background-color: #f2f2f4;
  @media screen and (max-width: 768px) {
    padding: 20px 15px 30px;
  }
}

.recommend-list {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  @media screen and (max-width: 1000px) {
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 20px auto 0;
  }
}

.recommend-item {
  min-height: 124px;
  padding: 1em 0;
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  background-color: #fff;
  br.pcbr {
    display: inline;
  }
  @media screen and (max-width: 1000px) {
    min-height: 70px;
    padding: 0.5em 0;
    br.pcbr {
      display: none;
    }
  }
}

.recommend-button {
  min-width: 290px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: fit-content;
  margin: 50px auto 0;
  padding: 10px 24px;
  font-family: var(--japanese-font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  color: #fff;
  border: 1px solid #000;
  background-color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  &:hover {
    opacity: 0.5;
  }
  .icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    background: url('../images/icon-angle-right-white.svg') no-repeat center / contain;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
  }
  @media screen and (max-width: 768px) {
    margin-top: 60px;
  }
}

/** -----------------------------------
  * お知らせ一覧ページ
  * ----------------------------------- */
.news-archive {
  margin-top: 100px;
  @media screen and (max-width: 1000px) {
    margin-top: 40px;
  }
}

.news-list-wrapper {
  margin-top: 85px;
  @media screen and (max-width: 600px) {
    margin-top: 60px;
  }
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item {
  border-bottom: 1px solid #80808e;
  &:first-child {
    border-top: 1px solid #80808e;
  }
}

.news-link {
  display: flex;
  align-items: center;
  padding: 20px 0;
  text-decoration: none;
  color: #000;
  transition: opacity 0.35s ease;
  &:hover {
    opacity: 0.5;
  }
  @media screen and (max-width: 600px) {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 0;
  }
}

.news-date {
  font-family: var(--japanese-font-family);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  min-width: 120px;
  @media screen and (max-width: 600px) {
    font-size: 14px;
    margin-bottom: 8px;
    min-width: auto;
  }
}

.news-title {
  font-family: var(--japanese-font-family);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  flex: 1;
  @media screen and (max-width: 600px) {
    font-size: 14px;
  }
}

/* WordPress標準のページネーションスタイル（お知らせページ用） */
.news-archive .pagination {
  margin-top: 80px;
  text-align: center;
  @media screen and (max-width: 600px) {
    margin-top: 60px;
  }
  .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    .page-numbers {
      display: flex;
      justify-content: center;
      align-items: center;
      min-width: 40px;
      height: 40px;
      padding: 0 12px;
      font-family: var(--japanese-font-family);
      font-size: 16px;
      font-weight: 500;
      line-height: 1;
      text-align: center;
      text-decoration: none;
      color: #000;
      border: 1px solid #80808e;
      transition: all 0.3s ease;
      @media screen and (max-width: 600px) {
        min-width: 36px;
        height: 36px;
        padding: 0 8px;
        font-size: 14px;
      }
      &:hover {
        background-color: #f2f2f4;
      }
      &.current {
        background-color: #000;
        color: #fff;
        border-color: #000;
      }
    }
  }
}

/** -----------------------------------
  * お知らせ詳細ページ
  * ----------------------------------- */
.news-breadcrumb {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  @media screen and (max-width: 600px) {
    padding: 0 10px;
  }
}

.news-detail {
  max-width: 800px;
  margin: 100px auto 0;
  padding: 0 20px;
  @media screen and (max-width: 1000px) {
    margin-top: 50px;
  }
  @media screen and (max-width: 600px) {
    padding: 0 10px;
  }
}

.news-detail-header {
  margin-bottom: 50px;
  @media screen and (max-width: 600px) {
    margin-bottom: 30px;
  }
}

.news-detail-title {
  font-family: var(--japanese-font-family);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #000;
  @media screen and (max-width: 1000px) {
    font-size: 21px;
  }
}

.news-detail-date {
  display: block;
  margin-top: 20px;
  font-family: var(--japanese-font-family);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #80808e;
  @media screen and (max-width: 600px) {
    margin-top: 15px;
    font-size: 14px;
  }
}

.news-detail-content {
  font-family: var(--japanese-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.12em;
  color: #000;
  > p {
    margin-top: 1em;
    &:first-child {
      margin-top: 0;
    }
  }
  > h2 {
    margin-top: 2em;
    margin-bottom: 1em;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.06em;
    padding-left: 8px;
    border-left: 3px solid #403f81;
    &:first-child {
      margin-top: 0;
    }
  }
  > h3 {
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.06em;
  }
  > ul, > ol {
    margin-top: 1em;
    margin-bottom: 1em;
    padding-left: 1.5em;
    li {
      margin-top: 0.5em;
      line-height: 2;
    }
  }
  @media screen and (max-width: 600px) {
    font-size: 14px;
    letter-spacing: 0.08em;
    > h2 {
      font-size: 18px;
      margin-top: 1.5em;
    }
    > h3 {
      font-size: 16px;
    }
  }
}

.news-detail-footer {
  margin-top: 80px;
  margin-bottom: 10rem;
  text-align: center;
  @media screen and (max-width: 600px) {
    margin-top: 60px;
    margin-bottom: 5rem;
  }
}

.news-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 35px;
  font-family: var(--japanese-font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: #000;
  border: 1px solid #000;
  background-color: #fff;
  transition: all 0.35s ease;
  &:hover {
    background-color: #000;
    color: #fff;
  }
  @media screen and (max-width: 600px) {
    padding: 10px 25px;
    font-size: 14px;
  }
}
