@charset "UTF-8";
/*==========================================
コンポーネントファイル
===========================================*/
/*
# パンくずリスト
------------------------*/
div .bread {
  display: none;
}

/*
# 一覧ぺージ用カテゴリ(セレクトボックス)
------------------------*/
.global-select {
  width: 64%;
  margin: 0 0 23% auto;
}
.global-select select {
  padding: 6% 10% 6% 6%;
}

/*
# ドロワーメニュー
------------------------------------ */
.sp-menu-btn-wrp {
  top: 2vw;
  right: 3%;
  bottom: auto;
  left: auto;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sp-menu-btn-wrp .sp-menu-btn {
  width: 14.5vw;
  height: 14.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn span {
  width: 70%;
  height: 2px;
  background: var(--body-font-color);
}
.sp-menu-btn-wrp .sp-menu-btn .top {
  top: 4.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn .middle {
  top: 0;
  bottom: 0;
}
.sp-menu-btn-wrp .sp-menu-btn .bottom {
  top: 9.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn-txt {
  color: var(--body-font-color);
  top: -2vw;
  font-size: var(--font-size-10);
}

.sp-menu-btn.active .top {
  transform: translateY(2.5vw) translateX(0px) rotate(45deg);
}

.sp-menu-btn.active .bottom {
  transform: translateY(-2.75vw) translateX(0px) rotate(-45deg);
}

/*  drawer inbox
  ------------------------------------ */
#drawer-nav {
  padding: 5% 6% 36vw;
  background: var(--bg-color-pearl-white);
}
#drawer-nav .drawer-logo {
  width: 13%;
  margin-bottom: 7%;
  text-align: left;
}
#drawer-nav .drawer-nav {
  margin-bottom: 15%;
}
#drawer-nav .drawer-nav .drawer-link {
  padding: 5% 0;
  border-bottom: 1px solid var(--bg-color-light-grayish-orange);
  font-size: var(--font-size-16);
}
#drawer-nav .drawer-nav .drawer-dropdown {
  padding: 3% 12% 3% 0;
}
#drawer-nav .drawer-nav .drawer-dropdown span {
  display: block;
}
#drawer-nav .drawer-nav .drawer-dropdown span:before, #drawer-nav .drawer-nav .drawer-dropdown span:after {
  background: var(--color-black);
}
#drawer-nav .drawer-nav .current {
  padding-left: 11%;
  position: relative;
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: var(--font-weight-bold);
}
#drawer-nav .drawer-nav .current::before, #drawer-nav .drawer-nav .current::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 3vw;
  height: 3vw;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  transform: rotate(45deg);
  transition: all 0.3s;
  z-index: 1;
}
#drawer-nav .drawer-nav .current::before {
  left: 0;
}
#drawer-nav .drawer-nav .current::after {
  left: 3%;
}
#drawer-nav .drawer-nav .current span:after {
  opacity: 0 !important;
}
#drawer-nav .drawer-nav .drawer-dropdown-bx {
  margin: 3% 0;
  padding-left: 4%;
  box-sizing: border-box;
}
#drawer-nav .drawer-nav .drawer-dropdown-bx > li > .drawer-link:before {
  border-left: 1px solid var(--body-font-color);
  border-bottom: 1px solid var(--body-font-color);
}
#drawer-nav .drawer-nav .drawer-dropdown-bx > li > .drawer-link span {
  padding: 0 0 0 5%;
}
#drawer-nav .drawer__contact-list .contact__item .tel__item {
  margin-bottom: 8%;
}
#drawer-nav .drawer__contact-list .contact__item .tel__item:last-child {
  margin-bottom: 0;
}
#drawer-nav .drawer__contact-list .contact__item .tel__item dt {
  border-left: 2vw solid;
  padding: 3% 0;
  position: relative;
  margin-bottom: 7%;
}
#drawer-nav .drawer__contact-list .contact__item .tel__item dt::before {
  position: absolute;
  content: "";
  inset: auto 0 -2.85vw;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3vw 3vw 0px 3vw;
  border-color: var(--bg-color-light-grayish-orange) transparent transparent transparent;
  margin: 0 auto;
}
#drawer-nav .drawer__contact-list .contact__item .tel__item:first-child dt {
  border-color: var(--primary-color);
}
#drawer-nav .drawer__contact-list .contact__item .tel__item:nth-child(2) dt {
  border-color: var(--sub-primary-color);
}
#drawer-nav .drawer__contact-list .contact__item .tel__item .tel__num {
  font-size: var(--font-size-30);
  line-height: 1;
}
#drawer-nav .drawer__contact-list .contact__item .tel__text {
  text-align: center;
  margin-top: 6%;
}
#drawer-nav .drawer__contact-list .contact__item .mail__button {
  height: 15vw;
  margin-top: 10%;
}
#drawer-nav .drawer__contact-list .contact__item .mail__button span {
  padding: 0 8vw;
}
#drawer-nav .drawer__contact-list .contact__item .mail__button span::before {
  font-size: var(--font-size-20);
}
#drawer-nav .drawer__contact-list .contact__item .mail__button span::after {
  position: absolute;
  color: inherit;
  font-family: var(--bootstrap-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
  line-height: 1;
  letter-spacing: 0;
  content: "\f138";
}
#drawer-nav .drawer__subpage {
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: var(--font-size-12);
  gap: 4vw;
  margin-top: 12%;
}
#drawer-nav .drawer__subpage-item a {
  text-decoration: underline;
}

/*
# c-contact__list
------------------------*/
.c-contact__list .tel__item {
  text-align: center;
}
.c-contact__list .tel__item dt {
  background: var(--bg-color-light-grayish-orange);
  text-align: center;
  font-weight: var(--font-weight-bold);
}
.c-contact__list .tel__item .tel__num {
  font-family: var(--sub-font-family);
  letter-spacing: 0;
  font-weight: var(--font-weight-semibold);
  line-height: 1.6;
}
.c-contact__list .tel__text {
  display: block;
  line-height: 1;
  margin-top: 5px;
}
.c-contact__list .mail__button {
  height: 40px;
}

/*
# c-contact__section
------------------------*/
.c-contact__section {
  padding: 18% 0;
  background: url(../../img/common/contact_bg.jpg) center/cover no-repeat;
}
.c-contact__section .contact__content {
  background: var(--color-white);
  padding: 12% 6%;
  position: relative;
}
.c-contact__section .contact__content .contact__title {
  text-align: center;
}
.c-contact__section .contact__content .contact__item .tel__item {
  margin-bottom: 8%;
}
.c-contact__section .contact__content .contact__item .tel__item:last-child {
  margin-bottom: 0;
}
.c-contact__section .contact__content .contact__item .tel__item dt {
  border-left: 2vw solid;
  padding: 3% 0;
  position: relative;
  margin-bottom: 7%;
}
.c-contact__section .contact__content .contact__item .tel__item dt::before {
  position: absolute;
  content: "";
  inset: auto 0 -2.85vw;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3vw 3vw 0px 3vw;
  border-color: var(--bg-color-light-grayish-orange) transparent transparent transparent;
  margin: 0 auto;
}
.c-contact__section .contact__content .contact__item .tel__item:first-child dt {
  border-color: var(--primary-color);
}
.c-contact__section .contact__content .contact__item .tel__item:nth-child(2) dt {
  border-color: var(--sub-primary-color);
}
.c-contact__section .contact__content .contact__item .tel__item .tel__num {
  font-size: var(--font-size-30);
  line-height: 1;
}
.c-contact__section .contact__content .contact__item .tel__text {
  text-align: center;
  margin-top: 6%;
}
.c-contact__section .contact__content .contact__item .mail__button {
  height: 15vw;
  margin-top: 10%;
}
.c-contact__section .contact__content .contact__item .mail__button span {
  padding: 0 8vw;
}
.c-contact__section .contact__content .contact__item .mail__button span::before {
  font-size: var(--font-size-20);
}
.c-contact__section .contact__content .contact__item .mail__button span::after {
  position: absolute;
  color: inherit;
  font-family: var(--bootstrap-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
  line-height: 1;
  letter-spacing: 0;
  content: "\f138";
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-table {
  text-align: left;
}
.com-table tr {
  display: block;
  padding: 6% 0;
}
.com-table tr th,
.com-table tr td {
  display: block;
}
.com-table tr th {
  margin-bottom: 4%;
  font-weight: var(--font-weight-bold);
}
.com-table tr td a[href^="tel:"],
.com-table tr td a[href^="mailto:"] {
  text-decoration: underline;
}
.com-table tr td .tel__text {
  display: block;
}

/*==========================================
  共通ブロック・要素
  ===========================================*/
.com-content {
  text-align: left;
}
.com-content p {
  margin-bottom: 10%;
}
.com-content p:last-child {
  margin-bottom: 0;
}

.com-text {
  line-height: var(--body-line-height);
  letter-spacing: var(--body-letter-spacing);
}

#g-map h4 {
  font-size: var(--font-size-17);
  font-weight: var(--font-weight-bold);
  margin-bottom: 4%;
}
#g-map h4 span {
  padding-left: 5%;
}
#g-map .map {
  /*==========================================
  iframe レスポンシブ　アスペクト比を保ちながら縦横を伸縮
  ===========================================*/
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
#g-map .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/*
# シリーズ名
------------------------*/
.com-series__name-text {
  font-weight: var(--font-weight-black);
  font-size: var(--font-size-19);
  letter-spacing: 0.07em;
}
.com-series__name-text .series__name-text-ja {
  display: block;
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.07em;
}
.com-series__name-text .series__name-text-en {
  font-family: var(--sub-font-family);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-45);
  letter-spacing: 0.07em;
  line-height: 1;
}

/*
# 共通ボタン
------------------------*/
.com-button {
  border-radius: 9vw;
  color: var(--color-white);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16vw;
  background: var(--primary-color);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-15);
}

/*
# グラデーションボーダー
------------------------*/
.border-gradation--orange {
  position: relative;
}
.border-gradation--orange::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2vw;
  inset: auto 0 -5vw;
  background: url(../../img/top/property-item_bdr.svg) bottom center no-repeat;
}

/*==========================================
共通タイトル
===========================================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: var(--body-letter-spacing);
}

.section-title {
  margin-bottom: 13%;
}
.section-title .title-en {
  display: block;
  font-size: var(--font-size-33);
  letter-spacing: 0.08em;
  font-weight: var(--font-weight-semibold);
  font-family: var(--sub-font-family);
  line-height: 1;
  margin-bottom: 3%;
  text-transform: uppercase;
}
.section-title .title-ja {
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  display: block;
}

.headline-title {
  font-size: var(--font-size-23);
  font-weight: var(--font-weight-bold);
  padding-bottom: 4%;
  margin-bottom: 5%;
  background: url(../../img/common/gradation_bdr.svg) bottom center/100% no-repeat;
}

.sub-title {
  font-size: var(--font-size-23);
  font-weight: var(--font-weight-bold);
  text-align: center;
}
.sub-title span {
  padding-bottom: 4vw;
  position: relative;
}
.sub-title span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2vw;
  background: var(--gradation-orange);
  inset: auto 0 0;
}

.third-title {
  font-size: var(--font-size-22);
  position: relative;
  z-index: 1;
  font-weight: var(--font-weight-bold);
  padding-left: 4%;
  margin-bottom: 8%;
  overflow: hidden;
  display: block;
}
.third-title::before {
  position: absolute;
  content: "";
  width: 8vw;
  height: 8vw;
  border-radius: 50%;
  z-index: -1;
  background: var(--bg-color-light-grayish-orange);
  inset: 0 auto auto 0;
  margin: auto 0;
}
.third-title span {
  display: inline-block;
  position: relative;
}
.third-title span::after {
  position: absolute;
  content: "";
  width: 84.5rem;
  height: 2vw;
  background: url(../../img/common/gradation_bdr.svg) center/100% no-repeat;
  inset: 0 -85rem 0 auto;
  margin: auto 0;
}

.title-image {
  width: 92%;
  margin: 0 auto 15%;
  padding-top: 28.5vw;
  text-align: center;
  position: relative;
  z-index: 1;
}
.title-image::before, .title-image::after {
  position: absolute;
  content: "";
}
.title-image::before {
  width: 100%;
  height: 15vw;
  inset: 19vw 0 auto;
  z-index: -2;
  background: var(--gradation-orange);
}
.title-image::after {
  width: 98.4375%;
  height: 33.145vw;
  inset: 0 0 auto auto;
  z-index: -1;
}

/*==========================================
header
===========================================*/
#header {
  padding: 3% 5%;
}
#header .header__logo {
  width: 10%;
  line-height: 1;
}
#header .header__right {
  display: none;
}

/*==========================================
mv
===========================================*/
#top-mv {
  height: 145vw;
  position: relative;
  background: url(../../img/top/mv/mv-cloud_deco.png) left 7.2916% top 3vw/19.21875% no-repeat;
}
#top-mv .mv__catch {
  width: 84%;
  margin: 0 auto;
  position: absolute;
  inset: 10% 0 auto;
  text-align: center;
  z-index: 10;
  line-height: 2;
  height: 100%;
}
#top-mv .mv__catch .catch__title {
  margin-bottom: 8%;
}
#top-mv .mv__catch .series__name-text-en {
  font-size: var(--font-size-55);
  letter-spacing: 0;
  display: block;
  width: 100%;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 3%;
}
#top-mv .mv__catch .series__name-text-ja {
  display: block;
  font-size: var(--font-size-20);
}
#top-mv .mv__catch .mv__SDGs-logo {
  width: 41%;
  position: absolute;
  inset: auto auto 20vw 0;
}
#top-mv .mv__img {
  position: absolute;
  height: 45.625%;
  width: 95%;
  inset: auto 0 30vw;
  margin: 0 auto;
  background: url(../../img/top/mv/mv_bg.png) center bottom/100% no-repeat;
}

/*==========================================
footer
===========================================*/
.side__button--fixed {
  width: 100%;
  position: fixed;
  z-index: 1001;
  background: var(--gradation-orange);
  inset: auto 0 0;
  height: 17vw;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  line-height: 1.3;
}
.side__button--fixed::before {
  font-size: var(--font-size-22);
  inset: 0 18% 0 auto;
}
.side__button--fixed::after {
  position: absolute;
  content: "";
  width: 8vw;
  height: 7vw;
  background: url(../../img/common/fixed-btn_ic.png) center/100% no-repeat;
  inset: 0 auto 0 16%;
  margin: auto 0;
}
.side__button--fixed .side__button-text-en {
  color: var(--body-font-color);
  font-family: var(--sub-font-family);
  font-size: var(--font-size-17);
  font-weight: var(--font-weight-semibold);
  text-align: center;
}
.side__button--fixed .side__button-text-ja {
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-15);
  line-height: 1.5;
  text-align: center;
}

#footer {
  padding: 18% 0 25vw;
}
#footer .footer__left {
  margin-bottom: 15%;
  text-align: center;
}
#footer .footer__left .footer__logo {
  width: 20%;
  margin: 0 auto;
  display: block;
}
#footer .footer__right .footer__nav-list {
  -moz-column-count: 2;
       column-count: 2;
  font-size: var(--font-size-13);
}
#footer .footer__right .footer__nav-link {
  display: block;
  margin-bottom: 12%;
}
#footer .footer__right .footer__nav-link:hover {
  text-decoration: underline;
}

#copyright {
  word-break: normal;
  text-align: right;
  margin-top: 45px;
}
#copyright small {
  font-size: var(--font-size-11);
}
#copyright a {
  text-decoration: underline;
}

/*==========================================
ページトップ
===========================================*/
.pagetop {
  width: 8%;
  position: fixed;
  bottom: 12%;
  right: 3%;
  z-index: 999;
  transition: all 0.3s;
}
.pagetop:hover {
  transform: scale(0.9);
}

/*==========================================
sv
===========================================*/
.lower-sv {
  height: 59vw;
  position: relative;
  overflow: hidden;
  background: url(../../img/sv/sv-l-cloud_deco.png) left 7.1354% top/29.5833% no-repeat, url(../../img/sv/sv-r-cloud_deco.png) right 4.427% top 21.5686%/10.5729% no-repeat;
}
.lower-sv .sv__title-wrap {
  width: 84%;
  margin: 0 auto;
  text-align: left;
  position: absolute;
  inset: 0 auto auto 5.8823%;
  height: 100%;
  z-index: 10;
  padding: 5% 0;
}
.lower-sv .sv__title-wrap .sv__title {
  line-height: 1.4;
}
.lower-sv .sv__title-wrap .sv__title .title-en {
  font-size: var(--font-size-17);
  color: var(--primary-color);
  display: block;
  font-weight: var(--font-weight-semibold);
  font-family: var(--sub-font-family);
  letter-spacing: 0.05em;
}
.lower-sv .sv__title-wrap .sv__title .title-ja {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-25);
  letter-spacing: var(--body-letter-spacing);
}
.lower-sv .sv__title-wrap .sv__SDGs-logo {
  position: absolute;
  inset: auto auto 0 0;
  width: 35%;
  z-index: 10;
}
.lower-sv .sv__img {
  position: absolute;
  width: 64%;
  height: 40vw;
  inset: auto 3% 0 auto;
}

#about-sv .sv__img {
  background: url(../../img/sv/about-sv_bg.png) center bottom/100% no-repeat;
}

#service-sv .sv__img {
  background: url(../../img/sv/service-sv_bg.png) center bottom/100% no-repeat;
}

#series-sv .sv__img {
  background: url(../../img/sv/series-sv_bg.png) center bottom/100% no-repeat;
}

#property-sv .sv__img {
  background: url(../../img/sv/property-sv_bg.png) center bottom/100% no-repeat;
}

#news-sv .sv__img {
  background: url(../../img/sv/news-sv_bg.png) center bottom/100% no-repeat;
}

#contact-sv .sv__img {
  background: url(../../img/sv/contact-sv_bg.png) center bottom/100% no-repeat;
}

#complete-sv .sv__img {
  background: url(../../img/sv/complete-sv_bg.png) center bottom/100% no-repeat;
}

#privacy-sv .sv__img {
  background: url(../../img/sv/privacy-sv_bg.png) center bottom/100% no-repeat;
}

#site-sv .sv__img {
  background: url(../../img/sv/site-sv_bg.png) center bottom/100% no-repeat;
}

#e404-sv .sv__img {
  background: url(../../img/sv/e404-sv_bg.png) center bottom/100% no-repeat;
}
#e404-sv .sv__title .title-ja {
  font-size: var(--font-size-20);
}

/*==========================================
top
===========================================*/
/*
# top-news
------------------------*/
.top-news__section {
  padding: 18% 4% 0;
}
.top-news__section .news__inbox {
  position: relative;
  padding: 20% 6% 12%;
}
.top-news__section .news__inbox .news__wrap .news__title {
  position: absolute;
  inset: -6vw auto auto 5%;
  margin-bottom: 0;
}
.top-news__section .news__inbox .news__wrap .news__title .title-en {
  letter-spacing: 0.05em;
}
.top-news__section .news__inbox .news__wrap .news__post-list {
  display: flex;
  overflow-x: scroll;
  gap: 6vw;
  padding: 8% 0;
}
.top-news__section .news__inbox .news__wrap .news__post-list .news__post {
  width: 56vw;
  font-weight: var(--font-weight-bold);
}
.top-news__section .news__inbox .news__wrap .news__post-list .news__post-thumb {
  width: 100%;
  height: 45vw;
  margin-bottom: 4%;
}
.top-news__section .news__inbox .news__wrap .news__post-list .news__post-link {
  display: block;
}
.top-news__section .news__inbox .news__wrap .news__post-list .news__post-link:hover .news__post-date,
.top-news__section .news__inbox .news__wrap .news__post-list .news__post-link:hover .news__post-title {
  color: var(--primary-color);
}
.top-news__section .news__inbox .news__wrap .news__post-list .news__post-link:hover .news__post-title {
  text-decoration: underline;
}
.top-news__section .news__inbox .news__wrap .news__post-list .news__post-date, .top-news__section .news__inbox .news__wrap .news__post-list .news__post-title {
  transition: all 0.3s;
  font-size: var(--font-size-16);
}
.top-news__section .news__inbox .news__wrap .news__post-list .news__post-date {
  display: block;
}
.top-news__section .news__inbox .news__wrap .news__post-list .news__post-tags {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.5vw;
  margin-top: 3%;
  font-size: var(--font-size-13);
  color: var(--primary-color);
}
.top-news__section .news__inbox .news__wrap .news__post-list .news__post-tags .news__post-tag {
  padding: 0 4vw;
  position: relative;
}
.top-news__section .news__inbox .news__wrap .news__post-list .news__post-tags .news__post-tag::before {
  width: 1px;
  height: 14px;
  position: absolute;
  content: "";
  inset: 0 auto 0 0;
  margin: auto 0;
  background: var(--body-font-color);
}
.top-news__section .news__inbox .news__wrap .news__post-list .news__post-tags .news__post-tag:first-child {
  padding-left: 0;
}
.top-news__section .news__inbox .news__wrap .news__post-list .news__post-tags .news__post-tag:first-child::before {
  background: none;
}
.top-news__section .news__button {
  position: absolute;
  inset: 5vw 5% auto auto;
  width: 42%;
  font-size: var(--font-size-13);
  height: 11vw;
}

/*
# top-company
------------------------*/
#top-company {
  padding: 18% 0;
}
#top-company .company__inbox {
  position: relative;
  z-index: 1;
}
#top-company .company__title .title-en {
  letter-spacing: 0.05em;
}
#top-company .company__title .title-ja {
  font-size: var(--font-size-21);
}
#top-company .company__text span {
  display: inline-block;
  font-size: var(--font-size-21);
  font-weight: var(--font-weight-bold);
  padding: 0 4vw;
  color: var(--color-white);
  margin-bottom: 3vw;
}
#top-company .company__text span:last-child {
  margin-bottom: 0;
}
#top-company .company__button {
  width: 95%;
  height: 14vw;
  margin-top: 12%;
}
#top-company .company__map {
  width: 55%;
  position: absolute;
  inset: 8vw 0 auto auto;
  z-index: -1;
}
#top-company .company__map::before {
  position: absolute;
  content: "";
  width: 48%;
  height: 25vw;
  background: url(../../img/top/company_ill.png) center/100% no-repeat;
  inset: -9vw 4% auto auto;
}

/*
# top-service
------------------------*/
#top-service {
  padding: 18% 0 30%;
}
#top-service .service__title {
  text-align: center;
  margin-bottom: 27%;
}
#top-service .service__item {
  margin-bottom: 45%;
  position: relative;
  padding: 22% 6% 26%;
}
#top-service .service__item:last-child {
  margin-bottom: 0;
}
#top-service .service__item-title {
  position: absolute;
  inset: -15vw 0 auto;
  text-align: center;
  padding-top: 10vw;
}
#top-service .service__item-button {
  position: absolute;
  inset: auto 0 -8vw;
  margin: 0 auto;
  width: 88%;
}
#top-service .service__item-intro .service__item-title {
  background: url(../../img/top/service-intro-ttl_ic.png) top center/9vw no-repeat;
}
#top-service .service__item .intro__list {
  gap: 40px;
}
#top-service .service__item .intro__item {
  background: var(--color-white);
  padding: 12% 5%;
  margin-bottom: 15%;
}
#top-service .service__item .intro__item:last-child {
  margin-bottom: 0;
}
#top-service .service__item .intro__item-consult {
  position: relative;
}
#top-service .service__item .intro__item-consult::before {
  position: absolute;
  content: "";
  width: 60%;
  height: 28vw;
  background: url(../../img/top/service-consult_ill.png) center/100% no-repeat;
  inset: auto 0 -20vw auto;
}
#top-service .service__item .intro__item-title {
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-bold);
  margin-bottom: 10%;
  text-align: center;
}
#top-service .service__item .intro__item-title small {
  font-size: var(--font-size-15);
  display: inline-block;
  padding: 0 5px;
  vertical-align: text-bottom;
}
#top-service .service__item .intro__item-img {
  margin-bottom: 8%;
}
#top-service .service__item .intro__item .intro__support-list .support__item {
  font-size: var(--font-size-16);
  padding-left: 8%;
  position: relative;
  font-weight: var(--font-weight-bold);
  margin-bottom: 6%;
}
#top-service .service__item .intro__item .intro__support-list .support__item:last-child {
  margin-bottom: 0;
}
#top-service .service__item .intro__item .intro__support-list .support__item::before {
  position: absolute;
  content: "";
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  inset: 2.75vw auto auto 0;
  background: var(--gradation-orange);
}
#top-service .service__item-series .service__item-title {
  background: url(../../img/top/service-series-ttl_ic.png) top center/9vw no-repeat;
}
#top-service .series__item {
  margin-bottom: 15%;
  background: var(--color-white);
  padding: 12% 5%;
  position: relative;
  z-index: 1;
}
#top-service .series__item::before, #top-service .series__item::after {
  position: absolute;
  content: "";
}
#top-service .series__item::before {
  background: var(--color-white);
  width: 100%;
  height: 100%;
  z-index: -1;
  inset: 0;
}
#top-service .series__item::after {
  background: var(--gradation-orange);
  inset: auto auto -2vw -2vw;
  width: calc(100% + 2vw);
  height: 28vw;
  z-index: -2;
}
#top-service .series__item:last-of-type {
  margin-bottom: 0;
}
#top-service .series__item-title {
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.07em;
  margin-bottom: 8%;
}
#top-service .series__item-title span {
  padding: 3% 5%;
  display: block;
}
#top-service .series__item-img {
  margin-bottom: 8%;
}

/*
# top-property
------------------------*/
#top-property {
  padding: 18% 0;
}
#top-property .property__title {
  background: url(../../img/top/property_ill.png) right bottom/40% no-repeat;
  margin-bottom: 6%;
  padding: 3% 0 7%;
}
#top-property .property__item {
  margin-bottom: 18%;
}
#top-property .property__item:last-of-type {
  margin-bottom: 0;
}
#top-property .property__item-thumb {
  width: 100%;
  height: 60vw;
  margin-bottom: 8%;
}
#top-property .property__item-address {
  margin-bottom: 8%;
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-bold);
}
#top-property .property__item-link {
  padding: 12% 6%;
}
#top-property .property__item-title {
  font-size: var(--font-size-25);
  margin-bottom: 6%;
}
#top-property .property__item-features {
  gap: 2vw 1.5vw;
  display: flex;
  flex-wrap: wrap;
}
#top-property .property__item-features .property__item-feature {
  font-size: var(--font-size-14);
  border-radius: 7vw;
  padding: 1vw 2vw;
}
#top-property .property__button {
  width: 85%;
  margin: 25% auto 0;
}

.com-property__item--style .property__item-link {
  display: block;
}
.com-property__item--style .property__item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5vw;
  margin-bottom: 5%;
}
.com-property__item--style .property__item-tags .property__item-tag {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  padding: 0 3vw;
}
.com-property__item--style .property__item-title {
  font-weight: var(--font-weight-bold);
}

/*==========================================
about
===========================================*/
/*
# about-concept
------------------------*/
#about-concept {
  padding-bottom: 18%;
}
#about-concept .concept__headline {
  position: relative;
  margin-bottom: 18%;
}
#about-concept .concept__headline .concept__title .bg-gradation--orange {
  color: var(--color-white);
  font-size: var(--font-size-19);
  font-weight: var(--font-weight-bold);
  padding: 0 3vw;
  display: inline-block;
  margin-bottom: 3%;
}
#about-concept .concept__headline .concept__title .title-ja {
  font-size: var(--font-size-21);
}
#about-concept .concept__headline .concept__title .title-ja em {
  color: var(--primary-color);
}
#about-concept .concept__headline .concept__text span {
  color: var(--primary-color);
  font-size: var(--font-size-17);
  font-weight: var(--font-weight-bold);
  display: block;
}
#about-concept .concept__headline .concept__graph {
  width: 92%;
  margin: 0 auto 8%;
}
#about-concept .concept__area {
  background: url(../../img/about/concept_ill.png) left -45% bottom 33%/66% no-repeat, url(../../img/about/concept_logo.png) left bottom/33% no-repeat;
  padding-bottom: 65vw;
  position: relative;
}
#about-concept .concept__area::before {
  position: absolute;
  content: "";
  width: 90%;
  height: 74vw;
  background: url(../../img/about/concept_map.png) center/100% no-repeat;
  inset: auto -24% 0 auto;
}

/*
# about-policy
------------------------*/
#about-policy {
  margin-bottom: 15%;
}
#about-policy .policy__title {
  text-align: center;
  font-size: var(--font-size-25);
  font-weight: var(--font-weight-bold);
  background: url(../../img/about/policy-ttl-l_deco.png) left bottom 7vw/13% no-repeat, url(../../img/about/policy-ttl-r_deco.png) right top 5vw/20% no-repeat, url(../../img/common/gradation_bdr.svg) bottom center/100% no-repeat;
  padding-bottom: 5%;
  margin-bottom: 8%;
}
#about-policy .policy__title span {
  display: block;
  font-size: var(--font-size-19);
}
#about-policy .policy__title em {
  border-radius: 50%;
  font-size: var(--font-size-27);
  background: var(--gradation-orange);
  color: var(--color-white);
  width: 12vw;
  height: 12vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#about-policy .policy__list .policy__item {
  background: var(--bg-color-pearl-white);
  font-size: var(--font-size-15);
  margin-bottom: 7%;
  font-weight: var(--font-weight-bold);
  display: flex;
}
#about-policy .policy__list .policy__item:last-child {
  margin-bottom: 0;
}
#about-policy .policy__list .policy__item dt,
#about-policy .policy__list .policy__item dd {
  padding: 4% 5%;
}
#about-policy .policy__list .policy__item dt {
  text-align: center;
  width: 20%;
  background: var(--gradation-orange);
  color: var(--color-white);
}
#about-policy .policy__list dd {
  width: 80%;
}

/*
# about-feature
------------------------*/
#about-feature {
  position: relative;
  z-index: 1;
  padding-top: 0;
}
#about-feature::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 22vw;
  background: var(--color-white);
  z-index: -1;
  inset: 0 0 auto;
}
#about-feature .feature__title::after {
  background: url(../../img/about/feature_img.jpg) center/100% no-repeat;
}
#about-feature .feature__item {
  margin-bottom: 18%;
  padding: 12% 6%;
  position: relative;
  background: var(--color-white);
}
#about-feature .feature__item:last-child {
  margin-bottom: 0;
}
#about-feature .feature__item .title-num {
  position: absolute;
  inset: -4vw auto auto -5vw;
  width: 33%;
  color: var(--color-white);
  font-size: var(--font-size-17);
  font-weight: var(--font-weight-bold);
  text-align: center;
  line-height: 1.5;
}
#about-feature .feature__item .title-num::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3vw 3vw 0px 3vw;
  inset: auto 12% -2.8vw auto;
}
#about-feature .feature__item .title-num em {
  font-size: var(--font-size-25);
  font-family: var(--sub-font-family);
  vertical-align: baseline;
}
#about-feature .feature__item:nth-child(odd) .title-num {
  background: var(--primary-color);
}
#about-feature .feature__item:nth-child(odd) .title-num::after {
  border-color: var(--primary-color) transparent transparent transparent;
}
#about-feature .feature__item:nth-child(even) .title-num {
  background: var(--sub-primary-color);
}
#about-feature .feature__item:nth-child(even) .title-num::after {
  border-color: var(--sub-primary-color) transparent transparent transparent;
}
#about-feature .feature__item-title {
  margin-bottom: 8%;
}
#about-feature .feature__item-title .title-text {
  font-size: var(--font-size-20);
}
#about-feature .feature__item-title .title-text em {
  color: var(--primary-color);
}
#about-feature .feature__item-text {
  margin-bottom: 25px;
}

/*
# about-info
------------------------*/
#about-info .info__title {
  background: url(../../img/about/info_ill.png) right bottom/38% no-repeat;
  margin-bottom: 6%;
  padding: 0 0 10vw;
}
#about-info .info__table {
  margin-bottom: 15%;
}

/*
# about-history
------------------------*/
#about-history .history__title .title-en {
  font-size: var(--font-size-30);
}
#about-history .history__item {
  background: var(--color-white);
  margin-bottom: 5%;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-16);
}
#about-history .history__item:last-child {
  margin-bottom: 0;
}
#about-history .history__item-date {
  width: 42%;
  margin-bottom: 5%;
  text-align: center;
  color: var(--color-white);
  padding: 2%;
  font-size: var(--font-size-14);
}
#about-history .history__item-content {
  padding: 0 8% 10%;
  text-align: left;
}

/*==========================================
service
===========================================*/
/*
# service-consulting
------------------------*/
#service-consulting {
  position: relative;
  z-index: 1;
}
#service-consulting::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 35vw;
  background: var(--color-white);
  z-index: -1;
  inset: 0 0 auto;
}
#service-consulting .consulting__title {
  padding-top: 27.5%;
}
#service-consulting .consulting__title::before {
  top: 19vw;
}
#service-consulting .consulting__title::after {
  background: url(../../img/service/consulting_img.jpg) top center/100% no-repeat;
}
#service-consulting .consulting__title .title-ja span {
  padding: 0 3vw;
}
#service-consulting .consulting__text {
  margin-bottom: 13%;
}
#service-consulting .consulting__part {
  margin-bottom: 19%;
  background: var(--color-white);
  padding: 12% 6%;
  position: relative;
}
#service-consulting .consulting__part:last-child {
  margin-bottom: 0;
}
#service-consulting .consulting__part-title {
  margin-bottom: 7%;
}
#service-consulting .consulting__part-title .series__name-text-ja {
  text-align: center;
  margin-bottom: 7%;
  display: block;
  padding: 2%;
  font-size: var(--font-size-18);
}
#service-consulting .consulting__button {
  width: 100%;
  margin: 0 auto;
}

/*
# service-care
------------------------*/
#service-care .care__title::before {
  top: 20vw;
}
#service-care .care__title::after {
  background: url(../../img/service/care_img.jpg) top center/100% no-repeat;
}
#service-care .care__text {
  margin-bottom: 20%;
}
#service-care .care__item {
  margin-bottom: 26%;
  padding: 18% 7% 12%;
  position: relative;
}
#service-care .care__item:last-child {
  margin-bottom: 0;
}
#service-care .care__item-icon {
  width: 22%;
  margin: 0 auto;
  position: absolute;
  inset: -10vw 0 auto;
  text-align: center;
}
#service-care .care__item-title {
  padding-top: 11vw;
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-bold);
  margin-bottom: 6%;
  text-align: center;
}
#service-care .care__item-title::before {
  position: absolute;
  inset: 0 0 auto;
  letter-spacing: 0.02em;
  font-family: var(--sub-font-family);
  font-size: var(--font-size-32);
  font-weight: var(--font-weight-semibold);
  line-height: 1;
}
#service-care .care__item-title small {
  display: block;
  font-size: var(--font-size-18);
}
#service-care .care__button {
  width: 100%;
  margin: 23% auto 0;
}
#service-care .care__button::before {
  inset: 0 10% 0 auto;
  z-index: 1;
}

/*==========================================
series
===========================================*/
/*
# series-support-housing
------------------------*/
#series-support-housing .support-housing__title::after {
  background: url(../../img/series/support-housing_img.jpg) top center/100% no-repeat;
}

.series__section .title-image .title-ja {
  display: inline-block;
  padding: 0 4vw;
}
.series__section .series__wrap {
  padding: 12% 5%;
}
.series__section .series__wrap .series__part {
  background: var(--color-white);
  padding: 12% 5%;
  margin-bottom: 15%;
}
.series__section .series__wrap .series__part:last-child {
  margin-bottom: 0;
}
.series__section .series__wrap .series__part-title {
  font-size: var(--font-size-20);
}
.series__section .series__wrap .series__part .com-series__name-text {
  margin-bottom: 8%;
}
.series__section .series__feature {
  margin-top: 18%;
}
.series__section .series__feature .feature__title {
  margin-bottom: 11%;
}
.series__section .series__feature .feature__text {
  margin-bottom: 15%;
}
.series__section .series__feature .feature__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5vw 4%;
}
.series__section .series__feature .feature__list .feature__item {
  width: 48%;
  text-align: center;
}
.series__section .series__feature .feature__list .feature__item-text {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-bold);
  margin-top: 5px;
}
.series__section .series__button {
  width: 90%;
  margin: 22% auto 0;
}

/*
# series-serviced-housing
------------------------*/
#series-serviced-housing .serviced-housing__title::after {
  background: url(../../img/series/serviced-housing_img.jpg) top center/100% no-repeat;
}

/*==========================================
property
===========================================*/
/*
# property-archive
------------------------*/
#property-archive .property__list .property__item {
  width: 90%;
  margin: 0 auto 12%;
}
#property-archive .property__list .property__item:last-child {
  margin-bottom: 0;
}
#property-archive .property__list .property__item-link {
  display: block;
  padding: 8% 4% 10%;
}
#property-archive .property__list .property__item-title {
  font-size: var(--font-size-17);
  font-weight: var(--font-weight-bold);
  margin-bottom: 5%;
}
#property-archive .property__list .property__item-thumb {
  width: 90%;
  height: 47vw;
  margin: 0 auto 4%;
}
#property-archive .property__list .property__item-address {
  font-size: var(--font-size-13);
}

/*
# property__single
------------------------*/
#property-single .property__img {
  text-align: center;
  margin: 0 auto 12%;
}
#property-single .property__img {
  display: flex;
  overflow-x: scroll;
  padding: 5%;
  gap: 6vw;
}
#property-single .property__img-item {
  width: 55vw;
  min-width: 55vw;
}
#property-single .property__data {
  padding: 12% 5%;
}
#property-single .property__data .data__rent {
  margin-bottom: 10%;
}
#property-single .property__data .data__rent dt {
  width: 36%;
  text-align: center;
  padding: 2% 0;
  margin-right: 2%;
  color: var(--color-white);
  background: var(--primary-color);
  font-size: var(--font-size-15);
  font-weight: var(--font-weight-bold);
  margin-bottom: 4%;
}
#property-single .property__data .data__rent dt small {
  font-size: var(--font-size-12);
}
#property-single .property__data .data__rent dd {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-18);
}
#property-single .property__data .data__rent dd small {
  font-size: var(--font-size-12);
}
#property-single .property__data .data__inner .data__item {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  align-items: baseline;
  margin-bottom: 6%;
  font-size: var(--font-size-14);
}
#property-single .property__data .data__inner .data__item dt {
  width: 40%;
  font-weight: var(--font-weight-bold);
  text-align: center;
  padding: 2%;
}
#property-single .property__data .data__inner .data__item dd {
  padding: 0 3%;
  width: 55%;
}
#property-single .property__data .data__notes {
  background: var(--color-white);
  padding: 12% 6%;
  margin-top: 12%;
}

/*==========================================
news
===========================================*/
.column__wrap .column__list .column__post a {
  padding: 14% 0;
}
.column__wrap .column__list .column__post:first-child a {
  padding-top: 0;
}
.column__wrap .column__list .column__post-meta {
  margin-bottom: 4%;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
.column__wrap .column__list .column__post-meta time {
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--font-size-11);
}
.column__wrap .column__list .column__post-meta .category-label {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: 2vw;
  gap: 1vw 1.5vw;
}
.column__wrap .column__list .column__post-meta .category-label li {
  padding: 0 0.75vw;
  font-size: var(--font-size-11);
}
.column__wrap .column__list .column__post-title {
  font-size: var(--font-size-17);
  margin: 3% 0;
}
.column__wrap .column__list .column__post-body {
  font-size: var(--font-size-13);
}
.column__wrap .column__list .more-btn {
  width: 45%;
  font-size: 3.2vw;
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-sizing: border-box;
  padding: 3% 2%;
  display: block;
  color: var(--color-white);
  transition: all 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) a {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb {
  width: 40%;
  height: 33vw;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-meta {
  width: 55%;
}

/*----------------------------------
  詳細ページのカテゴリー表示(タイトル下部)
  ----------------------------------*/
.single__post-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 10%;
}
.single__post-meta time {
  font-size: var(--font-size-13);
  width: 27%;
  font-weight: normal;
  padding: 0.5vw 0;
}
.single__post-meta .category-label {
  display: flex;
  width: 70%;
  flex-wrap: wrap;
  align-items: center;
  gap: 1vw;
}
.single__post-meta .category-label li {
  font-size: var(--font-size-13);
}
.single__post-meta .category-label li a {
  padding: 0 1vw;
}

/*==========================================
  contact
  ===========================================*/
#contact .contact__form {
  margin-bottom: 15%;
}
#contact .contact__form-item .contact__form-label .required {
  /*==========================================
  上下中央揃え
  ===========================================*/
  position: absolute;
  top: 50%; /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  right: 10px;
}
#contact .contact__form-item .contact__form-input {
  padding: 3% 0;
}
#contact .contact__form-item .contact__form-input .contact__form-list li {
  margin-bottom: 5%;
}
#contact .contact__form-item .contact__form-input .contact__form-list li:last-child {
  margin-bottom: 0;
}
#contact .contact__form-item .contact__form-input textarea {
  height: 37vw;
}
#contact .contact__form-item.contact__form-privacy .contact__form-label {
  text-align: left;
}
#contact .contact__form-value {
  padding: 3%;
}
#contact .contact__form-select {
  width: 50%;
  position: relative;
}
#contact .contact__form-select::after {
  inset: 0 5% 0 auto;
  width: 1.5vw;
  height: 1.5vw;
}
#contact .contact__form-select select {
  padding: 6% 7% 6% 4%;
}
#contact .contact__form #pc01,
#contact .contact__form #pc02 {
  width: 95px;
}
#contact .contact__form #date1,
#contact .contact__form #date2,
#contact .contact__form #date3 {
  width: 73%;
}
#contact .contact__form #address {
  margin-top: 4%;
}
#contact .contact__form .upload-item-wrap .select-img-wrap {
  display: flex;
  justify-content: space-between;
}
#contact .contact__form .upload-item-wrap .thumb {
  width: 45%;
  margin-right: 25px;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap {
  width: 50%;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .upload-button {
  font-size: var(--font-size-13);
}
#contact .contact__submits-wrap {
  margin-top: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5vw;
}
#contact .contact__submits-wrap .contact__submits-check {
  width: 75%;
}
#contact .contact__submits-wrap .contact__submits-back {
  width: 52%;
}
#contact .contact__submits-wrap .contact__submits-send {
  width: 40%;
}
#contact input[type=button],
#contact input[type=submit],
#contact .contact-submits-wrap button {
  padding: 6% 2%;
}
#contact input[type=submit],
#contact select {
  -webkit-appearance: none;
}

/*==========================================
  privacy
  ===========================================*/
#privacy .privacy__content {
  margin-bottom: 15%;
  text-align: left;
}
#privacy .privacy__content:last-child {
  margin-bottom: 0;
}

/*==========================================
  site
  ===========================================*/
#site-map .sitemap__item-link {
  padding: 4% 0 4% 8%;
}

/*==========================================
  プライバシーポリシー(LPフレーム時)
  ===========================================*/