@charset "UTF-8";
/*== 共通
=============================================*/

*,
*::before,
*::after {
  box-sizing: border-box;
  min-height: 0vw;
  /*clamp用*/
}

img {
  max-width: 100%;
}

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif;
  color: #222222;
  letter-spacing: 0.2rem;
  margin-top: 93px;
}

.pc-none {
  display: none;
}





.logo img {
  width: 210px;
}

.container {
  width: 90%;
  max-width: 1920px;
  margin: 0 auto;
}

.__inner1400 {
  margin: 0 auto;
  width: 75vw;
  max-width: 1400px;
}


.__inner1000 {
  margin: 0 auto;
  width: 92%;
  max-width: 1000px;
}

p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.9;
}


h2 {
  font-size: min(7vw, 12rem);
  margin-bottom: 80px;
  margin-top: 0;
  line-height: 1;
  text-transform: uppercase;
}

h2 span {
  display: block;
  font-size: min(1.8vw, 2.4rem);
  margin-left: 8px;
  margin-top: clamp(1px, 3vw, 16px);
  font-weight: 600;
}

h3 {
  font-size: 1.25rem;
}

/*== ページロード
=============================================*/

#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;

}

.spinner {
  position: relative;
  width: 100%;
  height: 100%;
}

.spinner img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  height: 200px;
  /*animation: sk-scaleout 2.0s 1 ease-in-out;*/

}

.loaded {
  opacity: 0;
  visibility: hidden;
}

/* ローディングアニメーション */
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1.0);
    opacity: 1;
  }
}





/*== header
=============================================*/
header {

  position: fixed;
  z-index: 99;
  top: 0;

  width: 100%;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4%;
  background-color: #fff;
  /*  box-shadow: 0 -6px 8px #000;*/
}


.logo {
  width: 180px;
}

.header-left {
  z-index: 86;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 0;
  z-index: 85;
  width: 70%;
}

.sp-header-right {
  display: none;
}

.header-menu {
  margin-right: 3vw;

}

.header-menu>ul {
  display: flex;
  list-style-type: none;
  display: flex;

  justify-content: center;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: 3rem;
}

.header-menu a {
  color: #222222;
  text-decoration: none;
  font-size: 1.6rem;
  position: relative;
  margin: 8px 0;
  width: max-content;
  display: inline-block;
}



.header-menu>ul>li>a:hover {
  color: #035aa9;
  /* ホバー時の文字色 */
}

/* 青い四角形のスタイル */
.header-menu>ul>li>a::before {
  content: '';
  position: absolute;
  top: -3rem;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, rgba(0, 65, 160, 1) 0%, rgba(135, 205, 240, 1) 100%);
  /* 四角形の色 */
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform-origin: center top;
}

.header-menu>ul>li>a::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  margin-left: 5px;
  display: inline-block;
  color: #000;
  font-size: 10px;
  font-weight: 600;
}

.header-menu>ul>li>a:last-child:after {
  content: '';
}

/* メニュー項目ホバー時の四角形表示とアニメーション */
.header-menu>ul>li>a:hover::before {
  opacity: 1;
  transform: scaleY(1);
  /* 初期状態では高さ0にしておく */
}

/* メニュー項目ホバー時のアニメーション */
.header-menu>ul>li:hover a::before {
  transform: scaleY(1);
}

/* オーナー様に対するアニメーション */
.header-menu>ul>li:nth-child(1):hover a::before {
  transform-origin: center bottom;
}

/* 入居者様に対するアニメーション */
.header-menu>ul>li:nth-child(2):hover a::before {
  transform-origin: center top;
}









.header-menu>ul>li {
  margin-right: 5%;
  height: 100%;
}

.header-menu>ul>li:last-child {
  margin: 0;
  padding: 0.7rem 24px;
  display: inline-table;
}

.stakeholder-entrance a {
  margin: 0
}


.header-menu .child_menu {
  position: absolute;
  visibility: hidden;
  transform: scale(1, 0);
  transform-origin: top;
  opacity: 0;
  background: #ddd;
  /* 背景色をここで定義 */
  width: 0;
}

/* .visibleクラスが追加されたときのスタイル */
.header-menu .child_menu.visible {
  visibility: visible;
  opacity: 1;
  transform: scale(1, 1);
  width: max-content;
  /* 幅を調整 */
}


.header-menu .child_menu.active {
  visibility: visible;
  opacity: 1;
  transform: scale(1, 1);
  width: max-content;
  background: #ddd;
  /* オリジナルの幅に戻す */
}

/* 既存の:hoverスタイルを維持 */
.header-menu>ul>li:hover .child_menu {
  transition: .3s;
  visibility: visible;
  opacity: 1;
  transform: scale(1, 1);
  width: max-content;
  padding: 0 20px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.05);
}

.header-menu .child_menu.fixed {
  transition: .3s;
  visibility: visible;
  opacity: 1;
  transform: scale(1, 1);
  width: max-content;
  padding: 0 20px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.05);
}

.stakeholder-entrance .child_menu.fixed {
  transform: scale(1, 1) translateX(-50%);
  left: 50%;
}





.header-menu>ul>li:last-child:hover .child_menu {
  transform: scale(1, 1) translateX(-50%);
  left: 50%;
}

ul.child_menu>li {
  padding: 20px 0;
}

ul.child_menu>li+li {
  border-top: 1px solid #00000014;
}

ul.child_menu>li::after {
  /*  content: url('../images/arrow-button.png');*/
  vertical-align: middle;
  padding-left: 5px;
}

.notification-icon {
  display: none;
  order: 1;
}


.stakeholder-entrance {
  padding: 8px 24px;
  position: relative;
  display: block;
  font-size: 16px;
  cursor: pointer;
  border-radius: 40px;
  box-shadow: 0px 0px 1px 1px #22222282;
  order: 4;
}


/*== ハンバーガーメニュー
=============================================*/
.openbtn4 {
  display: none;
}






/*== Key visual
=============================================*/

.key-visual {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}




/*== TOP archive
=============================================*/


.rounded-image {
  width: 100%;
  height: auto;
}

.copy {
  font-size: min(1.6vw, 23px);
  margin: 0 0px 0.5vw;
  color: #035aa9;
  font-weight: 800;
  letter-spacing: 0.05vw;
}

.lead {
  font-size: min(2.6vw, 3.88rem);
  font-weight: 800;
  margin: 0;
  color: #035aa9;
  text-wrap: nowrap;
  line-height: 2vw;
  letter-spacing: 0.17vw;
}


.achieve {
  margin-bottom: 96px;
}

.achieve-chart {
  position: absolute;
  z-index: 2;
  bottom: -2vw;
  left: 0;
  max-width: 31%;
  padding: 0 40px 0 0;
}

.achieve-chart img {
  margin: auto;
}

.achievements {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.achievements-text {
  margin-left: 30%;
  margin-top: 2vw;
}


/*== TOP SERVICE & NAVIGATION
=============================================*/

.services {
  margin-bottom: 112px;
}

.services-inner {}

.services h2 {
  margin-bottom: 80px;
}

.service-button {
  display: flex;
  margin-bottom: 80px;
}

.service-button .tab-button {
  width: calc(100% / 3);
  height: auto;
  display: inline-block;
  padding: 32px 20px 32px;
  background-color: #ffffff;
  color: #035aa9;
  border: 2px solid #035aa9;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 10px 10px 0 0;
  font-family: 'Noto Sans JP';
  font-size: clamp(1.6rem, 2vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.2rem;
  border-bottom: none;
  transition-timing-function: linear;
}

.service-button .tab-button:last-child {
  letter-spacing: 0rem;
}

.service-button .tab-button span {
  font-size: clamp(1.2rem, 1.3vw, 2.4rem);
  font-weight: 600;
  display: block;
}

.no-active-button {
  border-top: #f0f0f0 0px solid !important;
  border-left: #f0f0f0 0px solid !important;
  border-right: #f0f0f0 0px solid !important;
  border-bottom: 2px solid #035aa9 !important;
}



.flex-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.flex-box a {
  display: block;
}



.button-text {
  font-size: 2.2rem;
  font-weight: 600;
}

/*
.button-text::after {
  content: "";
  background-image: url(../images/arrow-button.png);
  vertical-align: middle;
  margin-left: 10px;
  display: inline-block;
  width: 26px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
}*/
.arrow-icon {
  background-image: url(../images/arrow-button.png);
  vertical-align: middle;
  margin-left: 10px;
  display: inline-block;
  width: 26px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
}


.tab-button:hover {
  opacity: 0.8;
  color: #035aa9;
}


.button-text_01 {
  font-size: 1.4rem;
  word-wrap: break-word;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  /* テキストがはみ出た場合に省略記号で表示する */
  padding-bottom: 10px;
  font-weight: 700;
  line-height: 2.6rem;
  text-align: justify;
  letter-spacing: 0.08rem;
}



.box_01 img {
  max-width: 100%;
}

.box_01 {
  width: calc(50% - 32px);
}

.box_01 a {
  color: #222222;
  text-decoration: none;
}

.box_01 a img {
  transition: transform 0.3s ease-in-out;
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.box_01 a:hover img {
  transform: scale(1.1);
  /* ホバー時に画像を拡大 */
}

.box01_image {
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
  height: 250px;
}


/*== TOPIC  Links
=============================================*/



/*== tOPIC Links共通*/

.link-list a {
  display: inline-block;
  color: #222222;
  text-decoration: none;
  font-size: 1.7rem;
  font-weight: 600;
}

.link-item {
  margin-bottom: 3.2rem;
}

#front .link-item:nth-child(3) {
  margin-bottom: 6rem;
}

.list-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffffFF;
  border: 1px solid #222222;
  color: #222222;
  border-radius: 60px;
  text-decoration: none;
  font-size: 16px;
  width: 208px;
  height: 50px;
}


.list-button::before {
  content: url(style.css);
  background-image: url(../images/button-arrow-button.svg);
  background-repeat: no-repeat;
  padding-right: 25px;
  position: relative;
  left: -16px;
  display: inline-block;
  top: -8px;


  width: 42px;
  height: 42px;
}



.list-button:hover {
  background-color: #ededed;
}

.content-wrapper {
  display: flex;
  margin-bottom: 112px;
}

.right-content {}

.right-content:not(:last-child) {
  margin-bottom: 20px;
}

.right-content p {
  text-align: justify;
}


.large-link {
  font-size: 20px;
  color: black;
  text-decoration: none;
}

.link-list {
  list-style-type: none;
  padding-left: 0px;
  margin: 0;
}

.left-side {
  min-width: 240px;
  width: 23%;
}

.right-side {
  display: flex;
  flex-direction: column;
  width: 76%;
  border-left: 1px solid #222222;
}

.right-side-item {
  width: 400px;
}

.right-side-item:nth-child(2n) {
  margin-right: 0;
}


.right-content_02 {
  padding: 0 80px;
  height: 60%;
  overflow-y: scroll;
}

.right-content a {
  display: inline;
  text-decoration: none;
  aspect-ratio: 4/3;
  width: 25%;
  max-width: 300px;
}

.right-content a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



.right-content img {
  width: 100%;
  height: fit-content;
}

.text-content-inner {
  width: 75%;
  padding-left: 16px;
}

.small-link {
  font-size: 1.2rem;
  margin-bottom: 8px;

}

.large-link {
  font-size: 2rem;
  color: black;
  text-underline-offset: 6px;
  text-decoration: underline;
  line-height: 2;
}

.text-content {
  margin-left: min(120px, 13%);
  margin-top: 25px;
  display: flex;
}


/*== tOPIC ==*/
/*== Links ==*/
.Links-site {
  background-color: #e1ebf5;
}

.Links-site-inner {
  padding: 128px 0 0 0;
  overflow: auto;
}


/*== TOP CtoA
=============================================*/
/*

.services-group {
  background-color: #e6e6e6;
  text-align: center;
  background-color: #e6e6e6;
  padding: 80px 0;
}

.services-text {
  text-align: center;
  font-size: 2.4rem;
}

.services-group-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: transparent;
  overflow: auto;
  margin-bottom: 112px;
}


.buttons {
  display: flex;
  justify-content: center;
}

.buttons a {
  display: inline-block;
  margin: 0 10px;
  padding: 10px 10px;
  text-decoration: none;
  color: #222222;
  background-color: #ffffff;
  border: 1px solid #222222;
  border-radius: 25px;
  transition: background-color 0.3s ease;
  width: 160px;
  height: 30px;
  line-height: 7px;
}

.services-text {
  text-align: center;
  font-size: 2.4rem;
  color: #ffffff;
  margin-bottom: 40px;
}
*/

.ctoa-group {
  position: relative;
}


.ctoa-group-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: transparent;
  margin-bottom: 112px;
}


.cta-buttons {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  width: 90%;
}

.cta-buttons a {
  display: inline-block;
  margin: 0 10px;
  padding: 10px 10px;
  text-decoration: none;
  color: #222222;
  background-color: #ffffff;
  border: 1px solid #222222;
  border-radius: 25px;
  transition: background-color 0.3s ease;
  width: 20vw;
  height: 30px;
  line-height: 7px;
}




/*== TOP contact
=========================================================================================*/


.top-contact {}

.top-contact a {
  display: block;
}

.top-contact a {
  display: block;
}


.tab-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 112px;
  flex-wrap: wrap;
}

.tab-item_left {
  text-align: center;
  background-image: linear-gradient(to right, #87cdf0, #0041a0);
  flex: 1;
  overflow: auto;
  padding: 80px 32px 80px 10%;
}

.tab-item_right {
  text-align: center;
  background-image: linear-gradient(to right, #78dcdc, #1eaae6);
  flex: 1;
  overflow: auto;
  padding: 80px 10% 80px 32px;
}

.text-area {
  margin-bottom: 30px;

}

.large-text {
  font-size: 3em;

}

.medium-text {
  font-size: 2em;

}

.small-text {
  font-size: 1em;

}

.services-large-text {
  margin: 0;
  font-size: 3.2rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
}

.services-medium-text {
  margin: 0;
  font-size: 2rem;
  color: #ffffff;
}

.services-small-text {
  color: #ffffff;
  font-weight: 300;
  font-size: 1.6rem;
}

.related-links {
  display: flex;
  align-items: center;
}

.links-left-side {
  padding-top: 20px;
  padding-left: 80px;
}

.links-right-side {
  border-left: 4px solid #222222;
  padding-left: 77px;
  margin-right: 213px;

}



.links-flex {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.links-text {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 600;
}

.links-text_02 {
  font-size: 1.4rem;
}

.right-content_02 {
  height: 500px;
  /* 可視領域の高さ: これは例ですので、実際のデザインに合わせて調整してください */
  overflow-y: scroll;
}

.right-side-row {}

.links-text,
.links-text_02 {
  display: block;
}

.text-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.right-side-row {
  display: flex;
  flex-wrap: wrap;
  height: 300px;
  justify-content: space-between;
}

.right-side-item {
  width: calc(50% - 25px);
  display: flex;
  flex-direction: column;
  margin-bottom: 80px;
}

.text-container,
.right-content_02 img {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .right-side-item {
    width: 100%;
  }
}

.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 112px;
}


.banner-link {
  padding-top: 112px;
  margin: 0 auto 112px auto;
  width: 70%;
  max-width: 1200px;
}



.banner-link-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 0;
}

.banner-link-box {
  width: clamp(215px, 18vw, 320px);
  background-color: #e6e6e6;
  margin: 28px;

}














/*== フッター
=========================================================================================*/

.footer {
  padding: 40px 0 0;
  color: #fff;
  background-color: #035AA9;
  width: 100%;
}


.footer-inner {
  text-align: center;
  width: 90%;
  max-width: 950px;
}


.footer-logo {
  width: min(9vw, 192px);
  margin: 0 auto;
  margin-bottom: 40px;
}


.footer-list {
  display: flex;
  list-style: none;
  justify-content: space-around;
  padding: 0;
  width: 800px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 40px;
}


.footer-list a {
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
}


.footer-ico {
  display: flex;
  justify-content: space-between;
  width: 300px;
  margin: 0 auto;
  margin-bottom: 40px;
}


.footer-ico img {
  width: clamp(32px, 3vw, 50px);
  height: 50px;
}

.footer p {
  font-size: 1.2rem;
}



/*== レスポンシブ　
=========================================================================================*/

@media (max-width: 1000px) {

  /*SP共通*/
  .pc-none {
    display: block;
  }


  h2 {
    font-size: max(32px, 10vw);
    margin-bottom: 40px;
  }


  h2 span {
    font-size: max(1rem, 2vw);
  }


  .__inner1400 {
    width: calc(100% - 30px);
  }


  .text-content {
    margin-left: 16px;
    margin-top: 0px;
  }


  ul.link-list {
    margin-bottom: 48px;
  }


  .list-button {
    padding: 3px 12px;
    height: 37px;
  }


  .tab-container {
    margin-bottom: 64px;
  }


  /*SPフッター*/
  .footer-logo {
    width: 115px;
  }


  ul.footer-list li {
    margin-bottom: 1rem;
  }



  /*SPヘッダー*/
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }


  .header-right,
  .header-menu,
  .stakeholder-entrance {
    display: none;
  }


  .sp-header-right {
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0;
    z-index: 85;
  }


  .notification-icon {
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
    border: 1px solid #000;
    border-radius: 8px;
    margin-right: 10px;
  }



  .notification-icon i {
    position: absolute;
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    text-align: center;
    padding-left: 2px;
    width: 100%;
    line-height: 9px;
  }



  i.fas.fa-envelope::after {
    content: 'contact';
    font-size: 0.5rem;
    letter-spacing: 0.1rem;
    display: inline-block;
  }





  /*== SPハンバーガーメニュー
=========================================================================================*/
  /*== SPハンバーガーボタン
=========================================================================================*/

  .openbtn4 {
    display: block;
    position: relative;
    /*ボタン内側の基点となるためrelativeを指定*/
    background: #035aa9;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    z-index: 99;
    order: 5;
    margin-right: 10px;
  }


  /*ボタン内側*/
  .openbtn4 span {
    display: inline-block;
    transition: all .4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
    background: #fff;
    width: 45%;
  }


  /*ハンバーガー*/
  .openbtn4 span:nth-of-type(1) {
    top: 13px;
  }


  .openbtn4 span:nth-of-type(2) {
    top: 19px;
  }


  .openbtn4 span:nth-of-type(3) {
    top: 25px;
  }


  .openbtn4 span:nth-of-type(3)::after {
    content: "Menu";
    /*3つ目の要素のafterにMenu表示を指定*/
    position: absolute;
    top: 5px;
    left: -2px;
    color: #fff;
    font-size: 0.6rem;
    text-transform: uppercase;
    white-space: nowrap;
  }


  /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
  .openbtn4.active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }



  .openbtn4.active span:nth-of-type(2) {
    opacity: 0;
  }


  .openbtn4.active span:nth-of-type(3) {
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }


  .openbtn4.active span:nth-of-type(3)::after {
    content: "Close";
    /*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
    top: 5px;
    left: 4px;
  }


  .sp-header-menu {
    height: 0;
    opacity: 0;
    width: 0;
    background-color: #fff;
    top: 0;
    z-index: 0;
    transition: opacity 1s ease-in-out;
  }


  .sp-header-menu a {
    text-decoration: none;
    color: #0041a0;
  }


  .sp-header-li {
    width: 50vw;
  }


  .sp-header-li>a::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    margin-left: 5px;
    display: inline-block;
    color: #000;
    font-size: 2rem;
    font-weight: 600;
  }


  .sp-child_menu {
    animation-duration: 2s;
    transition-duration: 2s;
  }


  .sp-child_menu a {
    font-size: 0.7em;
  }


  /* メニューの表示・非表示 */
  .sp-header-menu.active {
    display: block;
    position: fixed;
    height: 100vh;
    opacity: 1;
    width: 100%;
  }


  .sp-header-menu>div {
    position: relative;
    width: 100%;
    height: 100%;
    display: none;
  }


  .sp-header-menu.active>div {
    display: block;
  }


  .sp-header-menu>div>ul {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    font-size: 4vw;
  }


  /* アコーディオンメニューのスタイル */
  .sp-child_menu {
    display: none;
    height: 0;
    transition-duration: 2s;
    overflow: hidden;
  }


  .sp-child_menu.active {
    display: block;
    height: auto;
  }


  .sp-child_menu li {
    padding: 10px;
    margin-bottom: 5px;
    cursor: pointer;
    border-bottom: 1px solid #cfcfcf;
    width: max-content;
  }


  .sp-child_menu a {
    text-decoration: none;
    color: #333;
  }


  /* 仲介業者様ボタンのスタイル */
  .sp-stakeholder-entrance {
    background-color: #333;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    margin-top: 20px;
  }




  /*== SP achievements
=========================================================================================*/
  .achievements {
    width: 95%;
  }

  .achieve-chart {
    padding: 0;
    max-width: 21%;
  }

  .copy {
    font-size: 2.8vw;
  }

  .lead {
    font-size: 3.4vw;
  }

  .achievements-text {
    margin-left: 23vw;
  }



  /*== SP SERVICE
=========================================================================================*/
  .services {

    margin-bottom: 16px;
  }

  .services h2 {
    margin-bottom: 40px;
  }

  .service-button {
    margin-bottom: 40px;
  }

  .link-list a {
    font-size: 1.2rem;
    font-weight: 900;
  }

  .list-button {
    width: auto;
  }

  .list-button::before {


    padding-right: 25px;
    position: relative;
    left: -8px;
    display: inline-block;
    top: 0px;
    width: 28px;
    height: 42px;
  }

  .service-button .tab-button {
    padding: 16px 4px;
    letter-spacing: normal;
    font-size: 1.2rem;
    font-weight: 600;

  }

  .service-button .tab-button span {
    margin-top: 0.4rem;
  }

  .flex-box {
    gap: 0;
    flex-wrap: wrap;
  }

  .services .box_01 {
    width: 100%;
    margin-bottom: 40px;
  }

  .services .box_01 a {
    display: flex;
    flex-wrap: wrap;
  }

  .button-text {
    order: 1
  }

  .button-text_01 {
    order: 3
  }

  .box01_image {
    order: 2
  }

  .tab-item_left {
    flex: inherit;
    width: 100%;
  }

  .tab-item_right {
    flex: inherit;
    width: 100%;
  }

  .content-wrapper {
    flex-wrap: wrap;
    margin-bottom: 64px;
  }

  .left-side {
    flex: inherit;
    width: 100%;
  }

  .link-list {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 3.2rem;
  }

  .link-item {
    margin-bottom: 0;
  }

  #front .link-item:nth-child(3) {
    margin-bottom: 0;
  }


  .right-side {
    flex: inherit;
    border-left: none;
    width: 100%;
  }

  .right-content {
    padding: 0;
  }

  .right-content_02 {
    padding-top: 24px;
  }

  .right-content img {
    width: 160px;
    height: 160px;
  }



  .large-link {
    font-size: 1.4rem;
  }


  .banner-link {
    width: calc(100% - 32px);
  }


  .banner-link-box {
    width: 40%;
    margin: 5%;
  }

  .footer-list {
    flex-wrap: wrap;
    flex-direction: column;
    width: auto;
  }

  .ctoa-group img {
    width: 100%;
  }

  .cta-buttons {
    bottom: -56px;
    width: 100%;
  }

  .cta-buttons a {

    width: 36vw;

  }
}