/*---------
共通
----------*/

.l-page {
  padding-top: 80px;
  position: relative;
  background-color: #fffdef;
}

.l-page > * {
  position: relative;
  z-index: 1;
}

.l-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/top/l-pg_bg.png") center / cover no-repeat;
  mix-blend-mode: multiply;
  z-index: 0;
}

[class^="section_content--"]:not(:last-child) {
  padding-bottom: 80px;
}

.section_title {
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  font-family: var(--en-point-font);
  text-align: center;
  margin-bottom: 10px;
}

/*---------
タイトルブロック
----------*/
.card_title {
  font-size: 20px;
  font-weight: bold;
  color: #111111;
  line-height: calc(28 / 20);
  letter-spacing: 0.1em;
  font-family: var(--sub-font);
}

.title_block {
  margin-bottom: 40px;
}
.post-type__no-post {
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  [class^="section_content--"]:not(:last-child) {
    padding-bottom: 160px;
  }

  .section_title {
    font-size: 64px;
    font-weight: 400;
  }

  .sub_tilte {
    font-size: 20px;
    letter-spacing: 0.01em;
  }

  .card_title {
    font-size: 24px;
    line-height: calc(40 / 24);
  }

  .title_block {
    margin-bottom: 50px;
  }
}

/*---------
mv
----------*/

/*---------
レイアウト
----------*/
.mv {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.mv-container {
  width: 100%;
  height: 375px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 15px;
}

.mv video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 375px;
  object-fit: cover;
  z-index: 0;
  border-bottom-right-radius: 100px;
}

/*---------
ゴールドボーダー
----------*/
.mv-container::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../images/top/mv-gold-border_sp.png") no-repeat bottom center;
  background-size: 100% 100%;
  z-index: 2;
  pointer-events: none;
}

/*---------
下部テクスチャ塗り
----------*/
.mv-bottom-fill {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #fffdef;
  border-radius: 60px 0 0 0;
  z-index: 1;
  pointer-events: none;
  isolation: isolate;
}

.mv-bottom-fill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/top/l-pg_bg.png") center / cover no-repeat;
  mix-blend-mode: multiply;
  border-radius: inherit;
}

.mv-bottom-fill::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 40px;
  width: 15%;
  height: 200%;
  background: url("../images/top/l-pg_bg.png") center / cover no-repeat;
  background-color: #fffdef;
  background-blend-mode: multiply;
  clip-path: polygon(85% 47%, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}

/*---------
テキスト・装飾
----------*/
.mv-deco-text {
  position: absolute;
  top: 42%;
  left: -15px;
  transform: translateY(-50%);
  font-size: 80px;
  font-weight: bold;
  color: #fff;
  mix-blend-mode: soft-light;
  font-family: var(--point-font);
  white-space: nowrap;
  z-index: 2;
  pointer-events: none;
  user-select: none;
  writing-mode: vertical-rl;
}

.main_catch {
  position: relative;
  z-index: 3;
  font-size: 20px;
  font-weight: 500;
  color: #111111;
  line-height: calc(28 / 20);
  letter-spacing: 0.1em;
  text-shadow: 0px 0px 10px rgba(0, 51, 44, 0.4);
  text-align: center;
  font-family: var(--sub-font);
}

.mv-note {
  position: absolute;
  bottom: 40px;
  left: 25px;
  z-index: 3;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  line-height: calc(32 / 12);
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 1);
}

/*---------
スクロールボタン
----------*/
.scroll_btn {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #ccac65, #64512b);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
  bottom: 20px;
  right: 10px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.scroll_btn span {
  font-size: 12px;
  color: #fff;
  font-family: var(--main-font);
  font-weight: 500;
}

.scroll_btn::after {
  content: "";
  display: block;
  background: url("../images/top/scroll_btn_arrow.png") center / cover no-repeat;
  width: 8px;
  height: 8px;
}

/*---------
PC
----------*/
@media (min-width: 768px) {
  .mv {
    margin-bottom: 158px;
  }

  .mv-container {
    height: 768px;
  }

  .mv video {
    height: 768px;
  }

  .mv-container::after {
    background: url("../images/top/mv-gold-border.png") no-repeat bottom center;
    background-size: 100% 100%;
  }

  .mv-bottom-fill {
    height: 80px;
    border-radius: 70px 0 0 0;
  }

  .mv-bottom-fill::after {
    bottom: 80px;
    width: 5%;
    height: 100%;
    clip-path: polygon(70% 47%, 100% 0, 100% 100%, 0 100%);
  }

  .mv-deco-text {
    font-size: 160px;
  }

  .main_catch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(1.25rem, 0.75rem + 1.04vw, 2rem);
    font-weight: 500;
    color: #fff;
    line-height: calc(48 / 32);
    letter-spacing: 0.2em;
  }

  .mv-note {
    top: 10px;
    right: 10px;
    bottom: auto;
    left: 0;
    margin: 0 0 0 auto;
    font-size: 14px;
    line-height: calc(32 / 14);
    width: fit-content;
  }

  .scroll_btn {
    width: 140px;
    height: 140px;
    bottom: 60px;
    right: 40px;
  }

  .scroll_btn span {
    font-size: 20px;
    color: #fff;
    font-family: var(--main-font);
  }

  .scroll_btn::after {
    content: "";
    display: block;
    background: url("../images/top/scroll_btn_arrow.png") center / cover
      no-repeat;
    width: 16px;
    height: 16px;
    animation: bounce 1.5s ease-in-out infinite;
  }

  @keyframes bounce {
    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(5px);
    }
  }
}

/*---------
business
----------*/

/*---------
共通ブロック
----------*/

.section_content--business {
  padding-bottom: 0;
}

.section_content--business .section_space {
  width: 100%;
}

.section_content--business .content_box {
  display: flex;
  flex-direction: column;
}

/*---------
コンテンツブロック
----------*/

.business_top_block {
  margin-bottom: 80px;
}

/*---------
ビジネスカード：画像
----------*/
.business-card__img {
  width: 95%;
  position: relative;
  overflow: hidden;
  margin: 0 0 16px;
}

.business-card__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #d9d9d9;
  mix-blend-mode: multiply;
}

.article_content_box--luxsis .business-card__img {
  margin-left: auto;
}

.business-card__img img {
  aspect-ratio: 351 / 139;
  object-fit: cover;
  display: block;
  width: 100%;
  height: auto;
}

.business-card__img-note {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 1);
}

.business-card__img-label {
  position: absolute;
  bottom: 16px;
  left: 15px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  font-family: var(--sub-font);
  opacity: 0.7;
}

.article_content_box--luxsis .business-card__img-label {
  left: auto;
  right: 15px;
}

.business-card__img-label .light_label_text {
  font-weight: 300;
}

/*---------
ビジネスカード：テキスト
----------*/
.business-card__body {
  padding: 0 23px;
}

.article_content_box--resort .business-card__body {
  margin-bottom: 40px;
}

.business-card__title {
  font-size: clamp(1.125rem, 0.875rem + 0.52vw, 1.5rem);
  font-weight: bold;
  color: #000000;
  line-height: calc(28 / 20);
  letter-spacing: 0.1em;
  font-family: var(--sub-font);
  margin-bottom: 15px;
}

.business-card__text {
  font-size: clamp(0.875rem, 0.792rem + 0.17vw, 1rem);
  font-weight: 500;
  color: #111111;
  line-height: calc(32 / 16);
  font-family: var(--sub-font);
}

/*---------
プロパティスライダー
----------*/

.business_bottom_block {
  position: relative;
}

.business_bottom_block::after {
  content: "";
  position: absolute;
  background: url("../images/top/property_bg_deco_sp.png") center / cover
    no-repeat;
  width: 100%;
  height: 210px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.property-slider__head {
  width: 90%;
  background: linear-gradient(to bottom, #ccac65, #64512b);
  border-radius: 0 100px 100px 0;
  padding: 21px 20px 21px 23px;
  margin-bottom: 18px;
  gap: 12px;
}

.property-slider__head-left,
.property-slider__head-right {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 5px;
}

.property-slider.property-slider--left {
  margin-bottom: 80px;
}

.property-slider__heading {
  flex: 1 1 auto;
  flex-shrink: 0;
}

.property-slider__heading-en {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  line-height: calc(24 / 20);
  font-family: var(--sub-font);
}

.property-slider__heading-ja {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
  font-family: var(--sub-font);
}

.property-slider_swiper {
  overflow: hidden;
}

.property-slide_link {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/*---------
暗くするマスク
----------*/
.property-slide_link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #9f9f9f;
  mix-blend-mode: multiply;
  transition: opacity 0.4s ease;
}

.property-slide_img {
  overflow: hidden;
  aspect-ratio: 320 / 213;
  position: relative;
}

/*---------
物件が0件のときのプレースホルダー
（実物のスライドと高さを揃えるため .property-slide_img を流用）
----------*/
.property-slide_img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #f2f2f2; */
}

.property-slide_img--empty .post-type__no-post {
  padding: 0 20px;
}

.property-slide_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  object-fit: cover;
  transform: translateY(-50%) translateX(-50%);
}

.property-slide_name {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: calc(32 / 16);
  font-family: var(--sub-font);
  text-align: center;
  z-index: 1;
  transition: opacity 0.4s ease;
}

.property-slider_nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 20px 0;
}

.property-slider_prev,
.property-slider_next {
  max-width: 120px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  color: #111111;
  padding: 0 0 2px;
  font-family: var(--point-font);
  border-bottom: 1px solid #111111;
  position: relative;
}

.property-slider_prev::before,
.property-slider_next::after {
  content: "";
  display: block;
  position: absolute;
  background: #111111;
  width: 20px;
  height: 1px;
  bottom: 6px;
}

/*---------
左側：右上がりの斜め線
----------*/
.property-slider_prev::before {
  left: -5px;
  transform: rotate(-50deg);
}

/*---------
右側：左上がりの斜め線
----------*/
.property-slider_next::after {
  right: -5px;
  transform: rotate(50deg);
}

@media (min-width: 768px) {
  /*---------
共通ブロック
----------*/

  .section_content--business .section_space {
    max-width: 100%;
  }

  /*---------
コンテンツブロック
----------*/

  .business_top_block {
    margin-bottom: 160px;
  }

  .article_content_box--resort,
  .article_content_box--luxsis {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .article_content_box--resort {
    padding-right: 20px;
  }

  .article_content_box--luxsis {
    flex-direction: row-reverse;
    padding-left: 20px;
  }

  /*---------
ビジネスカード：画像
----------*/
  .business-card__img {
    margin: 0;
    width: clamp(53.563rem, 42.604rem + 22.83vw, 70rem);
  }

  .article_content_box--luxsis .business-card__img {
    margin-left: 0;
  }

  .business-card__img-note {
    font-size: clamp(12px, calc(14px + 50vw - 570px), 14px);
  }

  .business-card__img-label {
    bottom: 0px;
    left: 40px;
    font-size: clamp(2rem, 1rem + 2.08vw, 3.5rem);
  }

  .article_content_box--luxsis .business-card__img-label {
    left: auto;
    right: 40px;
  }

  /*---------
ビジネスカード：テキスト
----------*/
  .business-card__body {
    max-width: 348px;
    padding: 0;
  }

  .article_content_box--resort .business-card__body {
    margin-bottom: 0;
  }

  .business-card__title {
    font-size: 24px;
    line-height: calc(40 / 24);
    font-family: var(--sub-font);
    margin-bottom: 20px;
  }

  /*---------
プロパティスライダー
----------*/

  .business_bottom_block::after {
    content: "";
    position: absolute;
    background: url("../images/top/property_bg_deco.png") center / cover
      no-repeat;
    width: 100%;
    height: 768px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }

  .property-slider__head {
    position: absolute;
    width: 25.48vw;
    height: 25.48vw;
    background: linear-gradient(to bottom right, #ccac65, #64512b);
    padding: 0;
    margin: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    top: 40%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .property-slider__head-left,
  .property-slider__head-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
    flex-direction: column;
    gap: clamp(10px, calc(20px + 50vw - 570px), 20px);
  }

  .property-slider {
    position: relative;
  }

  .property-slider.property-slider--left {
    margin-bottom: 150px;
  }

  .property-slider__heading {
    text-align: center;
  }

  .property-slider__heading-en {
    font-size: clamp(1.25rem, 0.75rem + 1.04vw, 2rem);
    line-height: calc(40 / 32);
  }

  .property-slider__heading-ja {
    font-size: clamp(1rem, 0.833rem + 0.35vw, 1.25rem);
    color: #fff;
    word-break: keep-all;
    overflow-wrap: anywhere;
    margin-top: clamp(10px, calc(20px + 50vw - 570px), 20px);
  }

  .property-slider--left .property-slider__head {
    right: 59%;
    transform: translateY(-50%);
  }

  /*---------
    右スライダー（LUXSIS）：ヘッドを右側に配置
    ----------*/
  .property-slider--right .property-slider__head {
    left: 59%;
    transform: translateY(-50%);
  }

  .property-slider_main {
    width: 80%;
    position: relative;
  }

  /*---------
    スライダー本体の位置も左右で調整
    ----------*/
  .property-slider--left .property-slider_main {
    margin-left: auto;
  }

  .property-slider--right .property-slider_main {
    margin-right: auto;
  }

  .property-slider_swiper {
    overflow: hidden;
    margin-bottom: 20px;
  }

  /*---------
暗くするマスク
----------*/
  .property-slide_link::after {
    opacity: 1;
    transition: opacity 0.4s ease;
  }

  .property-slide_name {
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 0.4s ease,
      transform 0.4s ease;
    font-size: clamp(0.875rem, 0.458rem + 0.87vw, 1.5rem);
  }

  /*---------
ホバー時
----------*/

  /*---------
    マスクを外す
    ----------*/
  .property-slide_link:hover::after {
    opacity: 0;
  }

  /*---------
    文字が上に動きながらふわっと消える
    ----------*/
  .property-slide_link:hover .property-slide_name {
    opacity: 0;
    transform: translateY(-15px);
  }

  .property-slider_nav {
    gap: 25px;
    padding: 0;
    justify-content: center;
  }

  .property-slider_prev,
  .property-slider_next {
    max-width: clamp(100px, calc(120px + 50vw - 570px), 120px);
    font-size: 14px;
  }

  .property-slider--left .property-slider_nav {
    margin-left: -21.5vw;
  }

  .property-slider--right .property-slider_nav {
    margin-right: -18.1vw;
  }
}

/*---------
our-services
----------*/

/*---------
共通ブロック
----------*/

.section_content--our-services .en_card_title {
  max-width: 290px;
  width: 100%;
  text-align: center;
  margin-bottom: 8px;
}

.section_content--our-services .en_card_title span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #b89a30;
  letter-spacing: 0.25em;
  font-family: var(--point-font);
  text-align: center;
}

.section_content--our-services .title_block {
  margin-bottom: 35px;
}

/*---------
コンテンツブロック
----------*/

.our-services_list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.our-services_items {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background-size: cover;
  background-position: center;
}

.our-services_items:nth-child(1) {
  background: url("../images/top/our-services_items_img01.jpg") center / cover
    no-repeat;
}

.our-services_items:nth-child(2) {
  background: url("../images/top/our-services_items_img02.jpg") center / cover
    no-repeat;
}

.our-services_items:nth-child(3) {
  background: url("../images/top/our-services_items_img03.jpg") center / cover
    no-repeat;
}

.our-services_items_detail {
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: 420px;
  text-decoration: none;
  position: relative;
}

.our-services_items_detail_box {
  z-index: 2;
  padding: 20px 10px;
  width: 100%;
}

.our-services_items_detail_text {
  position: absolute;
  top: 8px;
  right: 8px;
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 1);
}

.our-services_items_detail_title {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  line-height: calc(36 / 20);
  font-family: var(--sub-font);
  text-align: center;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 1);
}

@media (min-width: 768px) {
  .l-page .section_content--our-services {
    padding-bottom: 190px;
    padding-inline: 20px;
  }

  .section_content--our-services .section_space {
    max-width: 1084px;
  }

  .section_content--our-services .en_card_title {
    max-width: 524px;
    margin-bottom: 40px;
  }

  .section_content--our-services .title_block {
    margin-bottom: 60px;
  }

  /*---------
コンテンツブロック
----------*/

  .our-services_list {
    flex-direction: row;
    justify-content: center;
  }

  .our-services_items {
    max-width: 348px;
    flex: 1 1 50%;
  }

  .our-services_items::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    transition: transform 0.4s ease;
    z-index: 0;
  }

  .our-services_items:hover::before {
    transform: scale(1.1);
  }

  .our-services_items_detail_text {
    font-size: clamp(10px, calc(12px + 50vw - 570px), 12px);
  }

  .our-services_items_detail_title {
    font-size: clamp(16px, calc(20px + 50vw - 570px), 20px);
    line-height: calc(24 / 20);
  }
}

/*---------
company-profile
----------*/

/*---------
共通ブロック
----------*/

.l-page .section_content--company-profile {
  padding-bottom: 100px;
  overflow: visible;
}

.section_content--company-profile .section_space {
  width: 100%;
}

.section_content--company-profile .en_card_title {
  max-width: 209px;
  margin: 0 auto 20px;
}

.section_content--company-profile .card_title {
  color: #fff;
  text-align: center;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 1);
}

.section_content--company-profile .content_box {
  display: flex;
  flex-direction: column;
  position: relative;
}

.section_content--company-profile .ui_more_btn.yellow_btn {
  margin: 0 auto;
}

.section_content--company-profile .content_box::after {
  content: "";
  position: absolute;
  background: url("../images/top/other_card_bg_deco_sp.png") center / cover
    no-repeat;
  width: 100%;
  height: 210px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

/*---------
コンテンツブロック
----------*/

.article_content_box--company {
  padding: 40px 23px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/top/company-profile_bg_sp.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 80px;
}

.company-profile_text {
  font-size: 16px;
  line-height: calc(30 / 16);
  color: #fff;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 1);
  margin-bottom: 15px;
}

.other_card {
  background-image: url("../images/top/other_card_bg_sp.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%) brightness(100%);
  margin: 0 20px;
  border-radius: 8px;
  overflow: hidden;
}

.other_box {
  width: 100%;
  height: 100%;
  min-height: 305px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.other_title_block {
  width: 100%;
  padding: 40px 0;
  position: relative;
}

.other_title_block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #444444;
  mix-blend-mode: multiply;
}

.other_title {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  line-height: calc(36 / 20);
  letter-spacing: 0.1em;
  font-family: var(--sub-font);
  text-align: center;
}

@media (min-width: 768px) {
  /*---------
共通ブロック
----------*/

  .section_content--company-profile .section_space {
    width: 100%;
    max-width: 100%;
  }

  .section_content--company-profile .en_card_title {
    max-width: 783px;
    margin: 0 auto;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .section_content--company-profile .content_box {
    position: relative;
  }

  .section_content--company-profile .content_box::after {
    background: url("../images/top/other_card_bg_deco.png") center / cover
      no-repeat;
    height: 768px;
    bottom: -250px;
  }

  /*---------
コンテンツブロック
----------*/

  .article_content_box--company {
    flex-direction: column;
    padding: 90px 20px;
    background: none;
    margin-bottom: 160px;
    min-height: 480px;
    position: relative;
    overflow: hidden;
  }

  .article_content_box--company::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/top/company-profile_bg.jpg") center / cover
      no-repeat;
    filter: grayscale(100%);
    transition:
      filter 0.8s ease,
      transform 1.1s ease;
    z-index: 0;
  }

  .article_content_box--company:hover::after {
    filter: grayscale(0%);
    transform: scale(1.1);
  }

  .article_content_box--company > * {
    position: relative;
    z-index: 1;
  }

  .company-profile_text {
    text-align: center;
    margin-bottom: 40px;
  }

  .article_content_box--other {
    padding: 0 20px;
  }

  .other_card {
    max-width: 896px;
    width: 100%;
    background-image: url("../images/top/other_card_bg.jpg");
    margin: 0 auto;
  }

  .other_title_block {
    padding: 33px 0;
  }

  .other_title {
    font-size: 24px;
    line-height: calc(36 / 24);
  }
}

/*---------
news
----------*/

/*---------
共通ブロック
----------*/

.news_shadow_wrapper {
  clip-path: inset(-20px -20px 0 -20px);
  /*---------
    上・左・右は影を見せ、下はカット
    ----------*/
}

.section_content--news {
  padding: 60px 0 60px;
  background: url("../images/top/news_bg_sp.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.16));
}

.section_content--news .title_block {
  margin-bottom: 40px;
}

.section_content--news .en_card_title {
  font-size: 40px;
  font-weight: bold;
  color: #000000;
  letter-spacing: 0;
  margin-bottom: 10px;
  font-family: var(--sub-font);
}

.section_content--news .en_card_title span {
  font-weight: 300;
}

.section_content--news .card_title {
  font-size: 22px;
}

.section_content--news .ui_more_btn.black_btn.pc_in {
  display: none;
}

/*---------
コンテンツブロック
----------*/

.news_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.news__item {
  border-bottom: 1px solid #707070;
}

.news__link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 0 20px 30px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.news__date {
  background: #000000;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: calc(20 / 16);
  font-family: var(--sub-font);
  padding: 2px 8px;
}

.news__title {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  line-height: calc(20 / 14);
}

@media (min-width: 768px) {
  /*---------
共通ブロック
----------*/

  .section_content--news {
    padding: 260px 20px 90px;
    background: url("../images/top/news_bg.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }

  .content_flexbox {
    max-width: 919px;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
  }

  .news__heading_block {
    display: flex;
    flex-direction: column;
    gap: 140px;
  }

  .section_content--news .en_card_title {
    font-size: clamp(68px, calc(80px + 50vw - 570px), 80px);
    margin-bottom: 20px;
  }

  .section_content--news .card_title {
    font-size: 32px;
    line-height: calc(36 / 32);
  }

  .section_content--news .ui_more_btn.black_btn.pc_in {
    display: flex;
  }

  .news__link {
    padding: 0 9px 30px;
  }

  .news__link:hover {
    opacity: 0.7;
  }
}
