@charset "UTF-8";
@import url(../css/root.css);
/* ----------------------------------------------

基本設定

------------------------------------------------*/
* {
  box-sizing: border-box;
  line-height: 1.5;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  color: var(--mainblack);
}

body {
  background: url(../images/common/bg_white.jpg) top center/100% repeat;
}

p {
  text-align: justify;
  font-weight: normal;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: black;
}

picture {
  display: block;
}

.en,
.en * {
  font-family: "Cormorant Garamond", serif;
}

.serif,
.serif * {
  font-family: "Noto Serif JP", serif;
}

.shippori,
.shippori * {
  font-family: "Shippori Mincho", serif;
}

/*見切れ画像の処理*/
.cut_off {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cut_off.cover img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: unset;
  height: 100%;
}

.cut_off.contain img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: unset;
  height: 100%;
}

/*1行テキストの処理*/
span.br {
  display: block;
  font-weight: normal;
}

span.br.mb {
  margin-bottom: 1.25em;
}

/*hoverするとボーダーが出る*/
.hov_border {
  /*hoverするとボーダーが消える*/
}

.hov_border a:not(:has(.txt)) {
  position: relative;
}

.hov_border a:not(:has(.txt))::after {
  content: "";
  background: var(--mainblack);
  width: 100%;
  height: 1px;
  transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform-origin: right top;
  transform: scale(0, 1);
  position: absolute;
  bottom: 0;
  left: 0;
}

.hov_border a .txt {
  position: relative;
}

.hov_border a .txt::after {
  content: "";
  background: var(--mainblack);
  width: 100%;
  height: 1px;
  transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform-origin: right top;
  transform: scale(0, 1);
  position: absolute;
  bottom: 0;
  left: 0;
}

.hov_border a:hover:not(:has(.txt))::after {
  transform: scale(1, 1);
}

.hov_border a:hover .txt::after {
  transform: scale(1, 1);
  transform-origin: left top;
}

.hov_border.no_border a:not(:has(.txt))::after {
  transform: scale(1, 1);
  transform-origin: left top !important;
}

.hov_border.no_border a .txt::after {
  transform: scale(1, 1);
  transform-origin: left top !important;
}

.hov_border.no_border a:hover:not(:has(.txt))::after {
  transform: scale(0, 1);
  transform-origin: right top !important;
}

.hov_border.no_border a:hover .txt::after {
  transform: scale(0, 1);
  transform-origin: right top !important;
}

.hov_border.white a .txt::after {
  background: #fff;
}

.hov_border.blue a .txt::after {
  background: var(--mainblue);
}

.mgn-l-btm {
  margin-bottom: var(--m130);
}

.mgn-m-btm {
  margin-bottom: var(--m100);
}

.mgn-s-btm {
  margin-bottom: var(--m60);
}

.mgn-m-top {
  margin-top: var(--m130);
}

.mgn-m-top {
  margin-top: var(--m100);
}

.mgn-s-top {
  margin-top: var(--m60);
}

.pdn-l-btm {
  padding-bottom: var(--m130);
}

.pdn-m-btm {
  padding-bottom: var(--m100);
}

.pdn-s-btm {
  padding-bottom: var(--m60);
}

.pdn-l-top {
  padding-top: var(--m130);
}

.pdn-m-top {
  padding-top: var(--m100);
}

.pdn-s-top {
  padding-top: var(--m60);
}

.l-container {
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.l-contents {
  position: relative;
  z-index: 1;
}

h1.none {
  display: none !important;
}

.wrapper {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  max-width: 1500px;
}

/*ボタン設定*/
.c-button__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--m4_8) var(--m16);
  position: relative;
  z-index: 1;
  transition: all 0.5s;
}

.c-button__link::after {
  content: "";
  display: inline-block;
  width: 13.9%;
  height: 100%;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  transition: all 0.5s;
}

.c-button__link:has(.c-button__image) {
  grid-gap: var(--m40);
  padding: var(--m8_12) 8.3%;
  justify-content: flex-start;
  border: 2px solid var(--white);
}

.c-button__textArea {
  display: flex;
  align-items: baseline;
  grid-gap: var(--m40);
}

.c-button__image {
  display: inline-block;
}

.c-button__image.tel {
  width: var(--fs28_40);
  aspect-ratio: 41/42;
  background: url(../images/common/icon_tel.svg) center/100% no-repeat;
}

.c-button__image.mail {
  aspect-ratio: 39/38;
  width: var(--fs24_40);
  background: url(../images/common/icon_mail_w.svg) center/100% no-repeat;
}

.c-button__image.visit {
  aspect-ratio: 32/38;
  width: var(--fs24_40);
  background: url(../images/common/icon_visit_w.svg) center/100% no-repeat;
}

.c-button__en {
  font-size: var(--fs28_60);
  line-height: 1;
  color: var(--white);
  min-width: 3.1em;
}

.c-button__text {
  font-size: var(--fs18_26);
  color: var(--white);
}

.c-button__arrow {
  width: 26px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  transition: all 0.5s;
}

.c-button.brown .c-button__link {
  background-color: var(--brown01);
}

.c-button.brown .c-button__link::after {
  background-color: var(--brown03);
}

.c-button.brown .c-button__arrow {
  background: url(../images/common/arrow_bt.svg) top 40% left 40%/68% no-repeat, #fff;
}

.c-button.brown02 .c-button__link {
  background-color: var(--brown02);
}

.c-button.brown02 .c-button__link::after {
  background-color: var(--brown03);
}

.c-button.brown02 .c-button__arrow {
  background: url(../images/common/arrow_bt.svg) top 40% left 40%/68% no-repeat, #fff;
}

.c-button.black .c-button__link {
  background-color: var(--mainblack);
}

.c-button.black .c-button__link::after {
  background-color: var(--black01);
}

.c-button.black .c-button__arrow {
  background: url(../images/common/arrow_bt_b.svg) top 40% left 40%/68% no-repeat, #fff;
}

.c-button.green .c-button__link {
  background-color: var(--blue01);
}

.c-button.green .c-button__link::after {
  background-color: var(--blue03);
}

.c-button.green .c-button__arrow {
  background: url(../images/common/arrow_bt_g.svg) top 40% left 40%/68% no-repeat, #fff;
}

/*電話番号*/
.c-telBt__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--m16) var(--m16);
  grid-gap: 0 var(--m30);
  position: relative;
  z-index: 1;
  transition: all 0.5s;
  background: url(../images/common/bg_white.jpg) center top/100% repeat;
}

.c-telBt__link::after {
  content: "";
  display: inline-block;
  width: 13.9%;
  height: 100%;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: var(--white);
  transition: all 0.5s;
}

.c-telBt__image {
  width: var(--fs28_40);
  aspect-ratio: 41/42;
  background: url(../images/common/icon_tel.svg) center/100% no-repeat;
}

.c-telBt__text {
  font-size: var(--fs30_65);
  font-weight: 500;
  line-height: 1;
}

.c-title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  grid-gap: var(--m20) var(--m60);
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: var(--m40);
}

.c-title__en {
  font-size: var(--fs40_100);
  line-height: 1;
  font-weight: 600;
}

.c-title__en.frame {
  position: relative;
  z-index: 1;
  padding: 0.4em 0.5em;
  margin-top: 0.25em;
  font-size: min(5.2vw, 100px);
  color: var(--white);
}

.c-title__en.frame::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/common/frame_title.png) center/100% 100% no-repeat;
  z-index: -1;
}

.c-title__jp {
  font-size: var(--fs22_40);
  line-height: 1.25;
  font-weight: 600;
}

.c-title.val {
  flex-direction: column;
}

/*gsapの機能*/
.l-container .rect {
  position: relative;
  overflow: hidden;
}

.l-container .rect .curtain {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: var(--maincol);
  top: 0;
  left: 0;
  z-index: 10;
}

/*ヘッダー*/
.l-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: url(../images/common/bg_navy.jpg) center/cover no-repeat;
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  transition: all 0.5s;
  max-width: 1820px;
  margin-left: auto;
  grid-gap: 0 1%;
  width: 95%;
}

.l-header__logo {
  width: 16.8%;
  max-width: 280px;
  transition: all 0.5s;
  padding-top: var(--m8_12);
  padding-bottom: var(--m8_12);
}

.l-header__rightArea {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  grid-gap: 0 min(2.864vw, 55px);
}

.l-header__menuList {
  display: flex;
  align-items: center;
  grid-gap: 0 min(1.04vw, 20px);
  padding-top: var(--m8_12);
  padding-bottom: var(--m8_12);
}

.l-header__list__en {
  font-size: min(1.5625vw, 30px);
  color: var(--white);
  font-weight: 600;
}

.l-header__list__text {
  font-size: clamp(12px, 0.9375vw, 18px);
  color: var(--white);
}

.l-header__listLink {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.l-header__cvList {
  display: flex;
  align-items: stretch;
}

.l-header__cvLink {
  padding: var(--m8_12) min(3vw, 70px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  transition: all 0.5s;
  height: 100%;
}

.l-header__cvLink::after {
  content: "";
  display: inline-block;
  width: 38.66%;
  height: 100%;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  transition: all 0.5s;
}

.l-header__cvLink.document {
  background-color: var(--brown02);
}

.l-header__cvLink.document::after {
  background-color: var(--brown01);
}

.l-header__cvLink.visit {
  background-color: var(--blue01);
}

.l-header__cvLink.visit::after {
  background-color: var(--blue03);
}

.l-header__cvImage {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.5s;
  aspect-ratio: 1/1;
}

.l-header__cvImage.mail {
  width: clamp(20px, 2.08vw, 40px);
  background-image: url(../images/common/icon_mail_w.svg);
}

.l-header__cvImage.visit {
  width: clamp(18px, 1.875vw, 36px);
  background-image: url(../images/common/icon_visit_w.svg);
}

.l-header__cvText {
  font-size: min(1.145vw, 22px);
  color: var(--white);
}

.l-header .c-button__link {
  background: var(--maincol_opa);
}

.l-header .c-telArea {
  position: fixed;
  bottom: 2%;
  right: 0;
}

.l-header .c-telArea__link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding-right: var(--m20);
  background: var(--pink02_opa);
}

.l-header .c-telArea__link::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: unset;
  width: calc(100% - 8px);
  left: unset;
  right: 0;
  transform: translateY(-50%);
}

.c-modal {
  min-width: unset;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  z-index: 1000;
}

.c-modal__bg {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateX(0);
  transition: background-color 0.5s;
  background-color: rgba(0, 0, 0, 0.65);
}

.c-modal__inner {
  margin-left: auto;
  width: 100%;
  max-width: 600px;
  background: url(../images/common/bg_white.jpg) center top/100% repeat;
  overflow: scroll;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.8s;
}

.c-modal__inner.close {
  transform: translateX(150%);
}

.c-modal__logo {
  margin: 0 auto var(--m40);
  width: 90%;
  max-width: 300px;
}

.c-modal__mainMenu {
  margin-bottom: var(--m40);
}

.c-modal__list {
  width: 90%;
  margin: 0 auto 5px;
  border-bottom: 1px solid var(--mainblack);
}

.c-modal__list:nth-of-type(odd) .c-modal__en::first-letter,
.c-modal__list:nth-of-type(odd) .c-modal__text::first-letter {
  color: var(--brown01);
}

.c-modal__list:nth-of-type(even) .c-modal__en::first-letter,
.c-modal__list:nth-of-type(even) .c-modal__text::first-letter {
  color: var(--blue03);
}

.c-modal__en {
  font-size: var(--fs22_30);
  font-weight: 600;
}

.c-modal__txt {
  font-size: var(--fs14_18);
}

.c-modal__listLink {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  padding: 0.5rem;
  line-height: 1;
  position: relative;
  grid-gap: 1rem;
}

.c-modal__text {
  font-weight: 600;
  font-size: var(--fs16_20);
}

.c-modal__contactArea {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: var(--m32);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%), url(../images/common/bg_navy.jpg) center/cover no-repeat;
  padding: var(--m30) 0;
}

.c-modal__contactArea .c-button,
.c-modal__contactArea .c-telBt {
  width: 100%;
  max-width: unset;
}

.c-modal__contactTitle {
  font-size: var(--fs18_22);
  color: var(--white);
  text-align: center;
}

.c-modal .c-contactList {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: var(--m40);
  width: 90%;
  margin: 0 auto;
}

.c-modal.open {
  opacity: 1;
}

.c-modal.open .bg {
  background-color: rgba(0, 0, 0, 0.8);
}

.c-modal.nav_none {
  transform: translateX(150%);
  opacity: 0;
}

/*ハンバーガーメニュー*/
.p-hamMenu {
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  aspect-ratio: 1/1;
  background-color: var(--black02);
}

.p-hamMenu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  grid-gap: 4px;
  transition: all 0.5s;
}

.p-hamMenu__inner::before, .p-hamMenu__inner::after {
  content: "";
  right: 0;
  transition: all 0.5s;
  display: block;
  width: 28px;
  height: 1px;
  transform-origin: center;
  background-color: var(--white);
}

.p-hamMenu__inner.open {
  grid-gap: 0;
}

.p-hamMenu__inner.open .p-hamMenu__bar {
  display: none;
}

.p-hamMenu__inner.open.rotate::before {
  transform: translateY(50%) rotate(45deg);
}

.p-hamMenu__inner.open.rotate::after {
  transform: translateY(-50%) rotate(-45deg);
}

.p-hamMenu__bar {
  display: block;
  width: 28px;
  height: 1px;
  transform-origin: center;
  background-color: var(--white);
}

.p-hamMenu__text {
  font-size: var(--fs14_18);
  color: #fff;
  font-family: "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  display: block;
}

.c-contactBox {
  padding-top: var(--m75);
  padding-bottom: var(--m75);
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: var(--m100);
}

.c-contactBox__inner {
  display: flex;
  justify-content: center;
  border: 2px solid var(--white);
}

.c-contactBox__textArea {
  width: 42%;
  background-color: rgba(51, 51, 51, 0.75);
  padding-top: var(--m60);
  padding-bottom: var(--m60);
}

.c-contactBox__title {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--m40);
}

.c-contactBox__title .c-title__en.frame {
  margin-top: 0;
}

.c-contactBox__titleText {
  color: var(--white);
}

.c-contactBox__text {
  font-size: var(--fs14_18);
  color: var(--white);
  width: 90%;
  margin: 0 auto;
}

.c-contactBox .c-contactList {
  width: 58%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: var(--m40);
}

.c-contactBox .c-contactList__list {
  width: 90%;
  max-width: 600px;
}

.c-contactBox__bg {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.c-contactBox__bg::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.75);
  position: absolute;
  top: 0;
  left: 0;
}

.c-contactBox__bgImage {
  aspect-ratio: 76/67;
  overflow: hidden;
  width: calc(25% + var(--m80));
}

.c-contactBox__bgImage:nth-of-type(1) {
  clip-path: polygon(0 0, 100% 0%, calc(100% - var(--m40)) 100%, 0% 100%);
  margin-right: calc(var(--m40) * -1);
}

.c-contactBox__bgImage:nth-of-type(2), .c-contactBox__bgImage:nth-of-type(3) {
  clip-path: polygon(var(--m40) 0%, 100% 0%, calc(100% - var(--m40)) 100%, 0% 100%);
  margin-left: calc(var(--m40) * -1);
  margin-right: calc(var(--m40) * -1);
}

.c-contactBox__bgImage:nth-of-type(4) {
  clip-path: polygon(var(--m40) 0%, 100% 0%, 100% 100%, 0% 100%);
  margin-left: calc(var(--m40) * -1);
}

.c-contactBox__bgImage img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-contactList {
  display: flex;
}

/*フッター*/
.l-footer {
  background: url(../images/common/bg_navy.jpg) center/cover no-repeat;
}

.l-footer__menuList {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: var(--m110);
}

.l-footer__list {
  width: 12.5%;
  aspect-ratio: 1/1;
  position: relative;
  z-index: 1;
}

.l-footer__list::before, .l-footer__list::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s;
}

.l-footer__list::before {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.l-footer__list.top::before {
  background-image: url(../images/common/fMenu_top.jpg);
}

.l-footer__list.concept::before {
  background-image: url(../images/common/fMenu_concept.jpg);
}

.l-footer__list.location::before {
  background-image: url(../images/common/fMenu_location.jpg);
}

.l-footer__list.access::before {
  background-image: url(../images/common/fMenu_access.jpg);
}

.l-footer__list.plan::before {
  background-image: url(../images/common/fMenu_plan.jpg);
}

.l-footer__list.plot::before {
  background-image: url(../images/common/fMenu_plot.jpg);
}

.l-footer__list.property::before {
  background-image: url(../images/common/fMenu_property.jpg);
}

.l-footer__list.map::before {
  background-image: url(../images/common/fMenu_map.jpg);
}

.l-footer__list--link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.l-footer__list--link::after {
  content: "";
  display: inline-block;
  width: calc(100% - var(--m25));
  height: calc(100% - var(--m25));
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.l-footer__list--en {
  font-size: 1.875vw;
}

.l-footer__list--jp {
  font-size: max(1.406vw, 14px);
}

.l-footer__inner {
  z-index: 10;
  position: relative;
}

.l-footer__address {
  margin-bottom: var(--m50);
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: var(--m40) var(--m55);
}

.l-footer__logo {
  width: 100%;
  max-width: 160px;
}

.l-footer__comName {
  font-size: var(--fs16_30);
  font-weight: 600;
  margin-bottom: 0.15em;
  display: block;
  color: var(--white);
}

.l-footer__line {
  display: block;
  font-size: var(--fs14_16);
  color: var(--white);
}

.l-footer__inline {
  display: inline-block;
  font-size: var(--fs14_16);
  color: var(--white);
}

.l-footer__attention {
  font-size: 12px;
  color: var(--white);
}

.l-footer .c-contactList {
  margin-bottom: var(--m75);
  grid-gap: var(--m30) 2%;
}

.l-footer .c-contactList__list {
  width: 32%;
}

.l-footer .c-telBt__link {
  border: 2px solid var(--mainblack);
  height: 100%;
}

.l-footer .c-telBt__image {
  width: 6.25%;
}

.l-footer .c-telBt__text {
  font-size: min(3vw, 50px);
}

.l-footer .c-button__link {
  height: 100%;
}

.l-footer .c-button__image {
  width: 6.66%;
}

.l-footer .c-button__en {
  font-size: min(2.88vw, 48px);
  min-width: unset;
}

.l-footer .c-button__text {
  font-size: min(1.5vw, 25px);
}

.l-footer__copy {
  text-align: center;
  padding: 1.5em;
  background: url(../images/common/bg_white.jpg) center/cover no-repeat;
  position: relative;
  z-index: 1;
}

.l-footer__copy::after {
  content: "";
  display: inline-block;
  width: 50%;
  aspect-ratio: 96/34;
  background-color: var(--blue02);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-100%);
  z-index: -1;
}

.l-footer__copy small {
  font-size: 14px;
  color: var(--blue01);
}

/*p-topReturn*/
.p-topReturn {
  width: var(--fs42_60);
  aspect-ratio: 1/1;
  margin-left: auto;
  z-index: 300;
  transition: all 0.5s;
}

.p-topReturn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: var(--blue01);
  transition: all 0.5s;
}

.p-topReturn__image {
  width: 40%;
  aspect-ratio: 24/20;
  background: url(../images/common/arrow_return.svg) center/100% no-repeat;
}

.p-topReturn.return_hide {
  opacity: 0;
  z-index: -10;
  transform: translateY(110%);
}

.p-topReturn.return_fixed {
  position: fixed;
  bottom: 0;
  right: 0;
  opacity: 1;
  transform: translateY(0%);
}

/*パンくず*/
.p-breadcrumb {
  padding: var(--m16) 0;
  background: var(--grade01);
}

.p-breadcrumb__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 0.5rem;
}

.p-breadcrumb__list {
  font-size: var(--fs12_16);
  display: flex;
  align-items: center;
  color: var(--white);
}

.p-breadcrumb__list * {
  font-size: var(--fs12_16);
}

.p-breadcrumb__list a {
  color: var(--white);
}

.p-breadcrumb__list:not(:last-of-type)::after {
  content: ">";
  display: inline-block;
  font-size: var(--fs12_16);
  margin-left: 0.5rem;
  color: var(--white);
}

/*Cvエリア*/
.p-cvArea {
  width: 90%;
  max-width: 1440px;
  margin: 0 auto var(--m50);
  border-radius: var(--m20);
  background-color: var(--maincol);
  border: 1px solid var(--mainblack);
  padding: var(--m16_50);
}

.p-cvArea__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.p-cvArea__title {
  width: 34%;
}

.p-cvArea__title .c-title__jp {
  font-size: var(--fs16_22);
  font-weight: 700;
  margin-bottom: 10px;
}

.p-cvArea__title .c-title__en__text {
  line-height: 1;
  display: block;
  font-size: var(--fs42_75);
  color: var(--white);
  text-shadow: 1px 1px 0 var(--mainblack), -1px -1px 0 var(--mainblack), -1px 1px 0 var(--mainblack), 1px -1px 0 var(--mainblack), 0px 1px 0 var(--mainblack), -1px 0 var(--mainblack), -1px 0 0 var(--mainblack), 1px 0 0 var(--mainblack);
}

.p-cvArea__buttonArea {
  width: 66%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  grid-gap: var(--m45) 6%;
}

.p-cvArea__buttonArea__search {
  max-width: 220px;
}

.p-cvArea__buttonArea__contact {
  max-width: 480px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-gap: 0 var(--m20);
}

.p-cvArea__buttonArea__text {
  text-align: center;
  font-size: var(--fs16_22);
  color: #fff;
  display: block;
  margin-bottom: var(--m16);
  width: 100%;
}

/*区画図エリア*/
.c-plot {
  margin-bottom: var(--m120);
  position: relative;
  z-index: 1;
}

.c-plot .c-title {
  margin-bottom: 0;
}

.c-plot__inner {
  display: flex;
  flex-direction: column-reverse;
  grid-gap: var(--m50);
}

.c-plot__imageArea {
  width: 100%;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.c-plot__textRow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 1rem var(--m70);
  /* margin-bottom: calc(min(6.875vw, 110px) * -1); */
  margin-bottom: var(--m40);
  width: 100%;
}

.c-plot__attention {
  position: absolute;
  top: 2%;
  left: 1%;
  z-index: 10;
}

.c-plot__attention__line {
  display: block;
  font-size: var(--fs16_20);
  color: var(--red01);
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.25em 1em;
  border: 1px solid var(--mainblack);
  background-color: var(--white);
  border-radius: var(--m10);
}

.c-plot__attention__small {
  display: block;
  font-size: 14px;
}

.c-plot__feature {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-gap: var(--m35) 2.51%;
}

.c-plot__box {
  width: 31.66%;
  grid-gap: 8px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: url(../images/common/bg_blue.jpg) center 128px repeat;
  border-radius: var(--m4_8);
  padding-bottom: var(--m4_8);
}

.c-plot__box--text {
  font-size: clamp(14px, 1.66vw, 32px);
  line-height: 1.25;
  font-weight: 600;
  color: var(--white);
}

.c-plot__box--text.emp {
  font-size: clamp(32px, 4.79vw, 92px);
  line-height: 1;
}

.c-plot__box--text.jp {
  font-size: clamp(24px, 4.01vw, 77px);
  line-height: 1;
}

.c-plot__ImageArea {
  overflow: scroll;
}

.c-plot__ImageInner {
  width: 100%;
  position: relative;
  z-index: 1;
  background: linear-gradient(to right, var(--blueGrade));
  padding: 5px;
  min-width: 800px;
  max-width: 1250px;
  margin: 0 auto;
}

.c-plot__ImageInner::before {
  /* content: "";
  display: inline-block;
  width: 22%;
  aspect-ratio: 1000/705;
  background: url(../images/top/plot_bg.png) center/100% no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1; */
}

.c-plot__mainImage {
  position: relative;
  z-index: 1;
}

.c-plot__linkBox {
  position: absolute;
  z-index: 10;
  cursor: pointer;
}

.c-plot__linkBox.link01 {
  width: 13.85%;
  height: 21.7%;
  top: 30.6%;
  right: 4.8%;
}

.c-plot__linkBox.link02 {
  width: 17.65%;
  height: 15.6%;
  top: 52.6%;
  right: 4.8%;
}

.c-plot__linkBox.link02 {
  width: 17.65%;
  height: 15.6%;
  top: 52.6%;
  right: 4.8%;
}

.c-plot__linkBox.link03 {
  width: 12.05%;
  height: 29.3%;
  top: 38.5%;
  right: 22.6%;
}

.c-plot__linkBox.link04 {
  top: 29.5%;
  right: 34.6%;
  width: 11.05%;
  height: 37.8%;
}

.c-plot__linkBox.link05 {
  top: 29.5%;
  right: 45.6%;
  width: 11.65%;
  height: 28.1%;
}

.c-plot__linkBox.link06 {
  top: 29.5%;
  right: 57.3%;
  width: 11.65%;
  height: 28.9%;
}

.c-plot__linkBox.link07 {
  top: 29.5%;
  right: 69.1%;
  width: 14.75%;
  height: 21.9%;
}

.c-plot__link {
  display: block;
  width: 100%;
  height: 100%;
}

.c-plot__bt {
  border-radius: 100vw;
  background-color: var(--white);
  border: 2px solid var(--red01);
  display: flex;
  align-items: center;
  padding: 4px 8px;
  width: -moz-fit-content;
  width: fit-content;
  grid-gap: 8px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, -20%);
  transition: all 0.5s;
}

.c-plot__linkText {
  font-size: clamp(12px, 1.38vw, 23px);
  color: var(--red01);
  font-weight: 600;
  line-height: 1;
  transition: all 0.5s;
}

.c-plot__arrow {
  width: clamp(12px, 1.38vw, 23px);
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: var(--red01);
  position: relative;
  transition: all 0.5s;
}

.c-plot__arrow::after {
  content: "";
  display: inline-block;
  width: 37%;
  aspect-ratio: 8.7/10;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}

.c-plot__comment {
  margin-top: var(--m40);
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}

.c-radioCheck {
  display: flex;
  grid-gap: 0.5rem;
  align-items: center;
  position: relative;
  width: calc(50% - 0.5rem);
  padding: var(--m8px);
  border: 1px solid var(--gray02);
  border-radius: 5px;
  transition: all 0.5s;
}

.c-radioCheck:has(.inp_rdo:checked, .inp_chk:checked) {
  background-color: var(--maincol_opa);
}

.c-radioCheck .inp_rdo,
.c-radioCheck .inp_chk {
  display: none;
}

.c-radioCheck .rdo,
.c-radioCheck .chk {
  position: relative;
}

.c-radioCheck .rdo::before,
.c-radioCheck .chk::before {
  content: "";
  display: flex;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid var(--gray02);
  position: relative;
  background-color: var(--white);
}

.c-radioCheck .chk::after {
  content: "";
  display: inline-block;
  width: 130%;
  aspect-ratio: 181/135;
  background: url(../images/common/check_only.svg) center/100% no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -60%);
  transition: opacity 0.5s;
  opacity: 0;
}

.c-radioCheck .rdo::before {
  border-radius: 100%;
}

.c-radioCheck .rdo::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  transition: background-color 0.5s;
  transition: all 0.5s;
  opacity: 0;
  background-color: var(--maincol);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-radioCheck .inp_rdo:checked + .rdo::after, .c-radioCheck .inp_rdo:checked + .chk::after,
.c-radioCheck .inp_chk:checked + .rdo::after,
.c-radioCheck .inp_chk:checked + .chk::after {
  opacity: 1;
}

.c-inputCheck .inp_rdo,
.c-inputCheck .inp_chk,
.c-inputCheck .rdo_inp_round {
  display: none;
}

.c-inputCheck .inp_rdo:checked + .rdo .check::before, .c-inputCheck .inp_rdo:checked + .chk .check::before, .c-inputCheck .inp_rdo:checked + .rdo_round .check::before, .c-inputCheck .inp_rdo:checked + .rdo .check::after, .c-inputCheck .inp_rdo:checked + .chk .check::after, .c-inputCheck .inp_rdo:checked + .rdo_round .check::after,
.c-inputCheck .inp_chk:checked + .rdo .check::before,
.c-inputCheck .inp_chk:checked + .chk .check::before,
.c-inputCheck .inp_chk:checked + .rdo_round .check::before,
.c-inputCheck .inp_chk:checked + .rdo .check::after,
.c-inputCheck .inp_chk:checked + .chk .check::after,
.c-inputCheck .inp_chk:checked + .rdo_round .check::after,
.c-inputCheck .rdo_inp_round:checked + .rdo .check::before,
.c-inputCheck .rdo_inp_round:checked + .chk .check::before,
.c-inputCheck .rdo_inp_round:checked + .rdo_round .check::before,
.c-inputCheck .rdo_inp_round:checked + .rdo .check::after,
.c-inputCheck .rdo_inp_round:checked + .chk .check::after,
.c-inputCheck .rdo_inp_round:checked + .rdo_round .check::after {
  opacity: 1;
}

.c-inputCheck .rdo,
.c-inputCheck .chk {
  display: flex;
  grid-gap: 0.5rem;
  align-items: center;
  position: relative;
}

.c-inputCheck .rdo .check,
.c-inputCheck .chk .check {
  content: "";
  display: flex;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background-color: #fff;
  border: 2px solid #c9caca;
  position: relative;
}

.c-inputCheck .chk .check::before {
  content: "";
  display: inline-block;
  width: 130%;
  aspect-ratio: 181/135;
  background: url(../images/common/check_only.svg) center/100% no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -60%);
  transition: opacity 0.5s;
  opacity: 0;
}

.c-inputCheck .rdo .check {
  border-radius: 100%;
}

.c-inputCheck .rdo .check::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  transition: background-color 0.5s;
  transition: all 0.5s;
  opacity: 0;
  background-color: var(--maincol);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#contents .swiper-pagination {
  position: static;
  font-size: 20px;
  display: flex;
  align-items: center;
  grid-gap: 1em;
  width: -moz-fit-content;
  width: fit-content;
}

#contents .scroll-hint-icon-wrap {
  z-index: 10;
}

/*下層ページ*/
.s-subPage__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: var(--m25) 0;
  margin-bottom: var(--m70);
}

.s-subPage__title:has(.s-subPage__title--smallEn) {
  grid-gap: var(--m16) 0;
}

.s-subPage__title::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: var(--m100);
  background-color: var(--mainblack);
}

.s-subPage__title--en {
  font-size: var(--fs32_80);
  font-weight: 600;
  line-height: 1;
}

.s-subPage__title--jp {
  font-weight: 600;
  font-size: var(--fs18_40);
}

.s-subPage__title--smallEn {
  font-size: var(--fs28_70);
  font-weight: 500;
  line-height: 1;
}

.s-subPage__title--smallJp {
  font-size: var(--fs18_32);
  line-height: 1;
}

.s-subPage__text {
  margin-bottom: var(--m50);
}

.s-subPage__text--line {
  font-size: var(--fs14_22);
  display: block;
  text-align: center;
  line-height: 1.75;
}

.p-pageHeader {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: var(--m45_140);
  padding-bottom: var(--m45_120);
  position: relative;
  z-index: 1;
}

.p-pageHeader__title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.p-pageHeader__title::after {
  content: "";
  display: inline-block;
  width: 40%;
  height: 1px;
  background-color: var(--white);
  order: 2;
}

.p-pageHeader__title--en {
  order: 1;
  color: var(--white);
  font-weight: 600;
  font-size: var(--fs40_100);
  line-height: 1;
}

.p-pageHeader__title--jp {
  order: 3;
  color: var(--white);
  font-weight: 600;
  font-size: var(--fs22_40);
}

.p-pageHeader::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: var(--black02);
  opacity: 0.25;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-pageHeader.access {
  background-image: url(../images/access/topImage.jpg);
  background-position: bottom center;
}

.p-pageHeader.location {
  background-image: url(../images/location/topImage.jpg);
}

.p-pageHeader.plan {
  background-image: url(../images/common/rendering01.jpg);
  background-position: bottom 25% center;
}

.p-pageHeader.plot {
  background-image: url(../images/common/rendering02.jpg);
}

.p-pageHeader.map {
  background-image: url(../images/common/rendering02.jpg);
  background-position: bottom 25% center;
}

.p-pageHeader.property {
  background-image: url(../images/common/rendering01.jpg);
  background-position: bottom 25% center;
}

/*linghtbox用画像アイコン*/
.zoomIcon {
  overflow: hidden;
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: var(--m10px);
  border: 1px solid var(--gray01);
}

.zoomIcon::before {
  content: "";
  display: inline-block;
  width: 10%;
  aspect-ratio: 1/1;
  max-width: 40px;
  border-top-left-radius: var(--m10px);
  background: url(../images/common/icon_zoom.svg) center/65% no-repeat, linear-gradient(to bottom, var(--maincol), var(--maincol));
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 100;
}

/*ページネーション*/
.c-pagenation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-gap: var(--m16) 0.5rem;
}

.c-pagenation * {
  font-size: var(--fs14_18);
  font-weight: 600;
}

.c-pagenation li {
  border-radius: 5px;
  border: 1px solid var(--maincol);
}

.c-pagenation li.prev a, .c-pagenation li.next a {
  width: 4em;
  aspect-ratio: unset;
  min-height: 2em;
}

.c-pagenation li span {
  background-color: var(--maincol);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 100%;
  aspect-ratio: 1/1;
}

.c-pagenation li a {
  height: 100%;
  aspect-ratio: 1/1;
  width: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}

/*現地案内ページ*/
.p-mapArea {
  margin-top: var(--m100);
  margin-bottom: var(--m100);
}

.p-mapArea__gmap {
  max-width: 1200px;
  margin: 0 auto var(--m80);
  aspect-ratio: 3/2;
}

.p-mapArea__map {
  max-width: 1000px;
  margin: 0 auto var(--m80);
  border: 2px solid var(--mainblack);
}

.p-mapArea__information {
  margin: 0 auto var(--m80);
  max-width: 1200px;
  padding: var(--m8_32);
  border: 2px solid var(--mainblack);
  background-color: var(--white);
  text-align: center;
}

.p-mapArea__information-text {
  font-size: var(--fs18_22);
  font-weight: 500;
  margin-bottom: 0.5em;
}

.p-mapArea__information-image {
  margin-bottom: var(--m16);
}

.p-mapArea__information-subtext-line {
  font-size: var(--fs14_18);
  display: inline-block;
}

.p-mapArea__information-subtext-line.emp {
  font-size: var(--fs18_24);
  font-weight: 500;
  color: var(--red01);
}

/*物件概要ページ*/
.p-property {
  margin-top: var(--m100);
  margin-bottom: var(--m100);
}

.p-property__list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  background-color: var(--white);
  border-top: 1px solid var(--gray01);
}

.p-property__row {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--gray01);
}

.p-property__row.full {
  width: 100%;
}

.p-property__dt {
  width: 7em;
  background-color: var(--blue03);
  font-size: var(--fs16_18);
  padding: var(--m8_12) 0.5em;
  display: flex;
  align-items: center;
  color: var(--white);
}

.p-property__dd {
  width: calc(100% - var(--fs16_18) * 7);
  padding: var(--m8_12) 1em;
  font-size: var(--fs14_16);
}

.p-privacy {
  border-top: 1px solid var(--mainblack);
  border-bottom: 1px solid var(--mainblack);
}

.p-privacy__inner {
  padding-right: 2.5%;
  padding-left: 2.5%;
  border-right: 1px solid var(--mainblack);
  border-left: 1px solid var(--mainblack);
}

.p-privacy .tit {
  display: flex;
  grid-gap: var(--m16);
  margin-bottom: var(--m20);
  position: relative;
  font-size: var(--fs18_26);
  font-weight: 700;
}

.p-privacy .tit::before {
  content: "";
  display: inline-block;
  width: 10px;
  background-color: var(--maincol);
}

.p-privacy p, .p-privacy ul {
  font-size: var(--fs14_16);
  margin-bottom: var(--m32);
}

.p-privacy p li, .p-privacy ul li {
  font-size: var(--sf14_16);
}

/*エラーページ*/
.p-error {
  position: relative;
  z-index: 1;
  text-align: center;
}

.p-error__image {
  width: 100%;
  max-width: 800px;
  margin: 0 auto var(--m50);
}

.p-error__title {
  font-size: var(--fs24_32);
  font-weight: 600;
  color: var(--red01);
  margin-bottom: var(--m30);
}

.p-error__catch {
  font-size: var(--fs18_23);
  font-weight: 600;
  margin-bottom: var(--m25);
}

.p-error__text__inner {
  margin-bottom: var(--m40);
}

.p-error__text__line {
  font-size: var(--fs14_16);
  display: block;
}

.p-error__text__line a {
  color: var(--maincol);
  font-weight: 600;
  text-decoration: underline;
}

/* ----------------------------------------------
  画面幅調整
  ------------------------------------------------*/
@media all and (min-width: 621px) {
  .sp_only {
    display: none !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media all and (min-width: 769px) {
  .tab_under {
    display: none !important;
  }
  .l-container a img {
    transition: all 0.3s;
  }
  .l-container a:hover img {
    opacity: 0.8;
  }
  .l-header__cvLink.document:hover {
    background-color: var(--brown01);
  }
  .l-header__cvLink.document:hover::after {
    background-color: var(--brown02);
  }
  .l-header__cvLink.visit:hover {
    background-color: var(--blue03);
  }
  .l-header__cvLink.visit:hover::after {
    background-color: var(--blue01);
  }
  .l-footer__list:nth-of-type(odd):hover::after {
    background-color: rgba(11, 27, 59, 0.85);
  }
  .l-footer__list:nth-of-type(even):hover::after {
    background-color: rgba(255, 255, 255, 0.95);
  }
  /*ボタン設定*/
  .c-button.brown .c-button__link:hover {
    background-color: var(--brown03);
  }
  .c-button.brown .c-button__link:hover::after {
    background-color: var(--brown01);
  }
  .c-button.brown02 .c-button__link:hover {
    background-color: var(--brown03);
  }
  .c-button.brown02 .c-button__link:hover::after {
    background-color: var(--brown02);
  }
  .c-button.black .c-button__link:hover {
    background-color: var(--black01);
  }
  .c-button.black .c-button__link:hover::after {
    background-color: var(--mainblack);
  }
  .c-button.green .c-button__link:hover {
    background-color: var(--blue03);
  }
  .c-button.green .c-button__link:hover::after {
    background-color: var(--blue01);
  }
  .p-topReturn a:hover {
    background-color: var(--brown02);
  }
  .input_bt:hover {
    background-color: var();
  }
  /*ページネーション*/
  .c-pagenation li a:hover {
    background-color: var(--maincol);
    color: #fff;
  }
  /*spフロートメニュー*/
  .c-spCv {
    display: none !important;
  }
  /*区画図*/
  .c-plot__link:hover .c-plot__bt {
    background-color: var(--red01);
  }
  .c-plot__link:hover .c-plot__linkText {
    color: var(--white);
  }
  .c-plot__link:hover .c-plot__arrow {
    background-color: var(--white);
  }
  .c-plot__link:hover .c-plot__arrow::after {
    background-color: var(--red01);
  }
  .p-assessment__pointBox:nth-of-type(even) {
    border-left: 1px solid var(--mainblack);
  }
}
@media all and (min-width: 891px) {
  .l-footer__list:nth-of-type(odd)::after {
    background-color: rgba(11, 27, 59, 0.8);
  }
  .l-footer__list:nth-of-type(odd) .l-footer__list--en, .l-footer__list:nth-of-type(odd) .l-footer__list--text {
    color: var(--white);
  }
  .l-footer__list:nth-of-type(odd) .l-footer__list--link::after {
    background-image: url(../images/common/fMenu_frame_w.png);
  }
  .l-footer__list:nth-of-type(even)::after {
    background-color: rgba(255, 255, 255, 0.8);
  }
  .l-footer__list:nth-of-type(even) .l-footer__list--link::after {
    background-image: url(../images/common/fMenu_frame_b.png);
  }
}
@media all and (min-width: 1025px) {
  .l-header.scroll_h .l-header__logo, .l-header.scroll_h .l-header__menuList, .l-header.scroll_h .l-header__cvLink {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .l-header.scroll_h .l-header__logo {
    width: 14%;
    max-width: 180px;
  }
  .l-header.scroll_h .l-header__cvImage {
    width: 20px;
  }
  .l-header.scroll_h .l-header__list__en {
    display: none;
  }
  .l-header.scroll_h .l-header__list__en {
    font-size: min(1.4vw, 24px);
  }
  .pc_under {
    display: none !important;
  }
}
@media all and (min-width: 1401px) {
  .l-container {
    padding-top: clamp(79px, 79px + (100vw - 1401px) * 0.0346820809, 97px);
  }
}
@media all and (max-width: 768px), all and (min-width: 1025px) {
  .fullTb {
    display: none !important;
  }
}
@media all and (min-width: 621px) and (max-width: 890px) {
  .l-footer__list:nth-of-type(1)::after, .l-footer__list:nth-of-type(3)::after, .l-footer__list:nth-of-type(6)::after, .l-footer__list:nth-of-type(8)::after {
    background-color: rgba(11, 27, 59, 0.85);
  }
  .l-footer__list:nth-of-type(1) .l-footer__list--en, .l-footer__list:nth-of-type(1) .l-footer__list--text, .l-footer__list:nth-of-type(3) .l-footer__list--en, .l-footer__list:nth-of-type(3) .l-footer__list--text, .l-footer__list:nth-of-type(6) .l-footer__list--en, .l-footer__list:nth-of-type(6) .l-footer__list--text, .l-footer__list:nth-of-type(8) .l-footer__list--en, .l-footer__list:nth-of-type(8) .l-footer__list--text {
    color: var(--white);
  }
  .l-footer__list:nth-of-type(1) .l-footer__list--link::after, .l-footer__list:nth-of-type(3) .l-footer__list--link::after, .l-footer__list:nth-of-type(6) .l-footer__list--link::after, .l-footer__list:nth-of-type(8) .l-footer__list--link::after {
    background-image: url(../images/common/fMenu_frame_w.png);
  }
  .l-footer__list:nth-of-type(2)::after, .l-footer__list:nth-of-type(4)::after, .l-footer__list:nth-of-type(5)::after, .l-footer__list:nth-of-type(7)::after {
    background-color: rgba(255, 255, 255, 0.8);
  }
  .l-footer__list:nth-of-type(2) .l-footer__list--link::after, .l-footer__list:nth-of-type(4) .l-footer__list--link::after, .l-footer__list:nth-of-type(5) .l-footer__list--link::after, .l-footer__list:nth-of-type(7) .l-footer__list--link::after {
    background-image: url(../images/common/fMenu_frame_b.png);
  }
}
@media all and (min-width: 621px) and (max-width: 768px) {
  .tab_only {
    display: none !important;
  }
}
@media all and (max-width: 1400px) {
  .l-container {
    padding-top: clamp(61px, 61px + (100vw - 1025px) * 0.048, 79px);
  }
}
@media all and (max-width: 1024px) {
  .pc_only {
    display: none !important;
  }
  .l-container {
    padding-top: clamp(73px, 73px + (100vw - 768px) * 0.0078125, 75px);
  }
  /*ヘッダー*/
  .l-header__inner {
    margin-right: 0 !important;
    width: 95% !important;
    padding: 0;
  }
  .l-header__inner .c-button {
    margin-top: var(--m16);
  }
  .l-header__logo {
    width: 30%;
    max-width: 220px;
    display: flex;
    align-items: center;
  }
  .l-header__rightArea {
    grid-gap: 0;
  }
  .l-header__cvLink {
    min-width: 80px;
    justify-content: center;
    grid-gap: 0.25rem;
  }
  .l-header__cvText {
    font-size: max(1.5vw, 12px);
    white-space: nowrap;
  }

  /*フッター*/
  .l-footer .c-contactList {
    flex-wrap: wrap;
    justify-content: center;
  }
  .l-footer .c-contactList__list {
    width: 49%;
  }
  .l-footer .c-contactList__list.c-telBt {
    width: 50%;
  }
  /*共通メニュースタイル*/
  .c-menu {
    grid-gap: var(--m24);
  }
  .c-menu__list__link:has(.c-menu__list__arrow) {
    grid-gap: var(--m8px);
  }
  .c-menu__list__text {
    font-size: var(--m14_16);
  }
  .c-menu__list__arrow:not(.under, .top) {
    width: var(--m8px);
  }
  /*下層ページトップ画像*/
  .p-topImage {
    aspect-ratio: 4/1;
  }
  .c-title__en.frame {
    font-size: var(--fs40_100);
  }
}
@media all and (max-width: 890px) {
  .l-footer__list {
    width: 25%;
    aspect-ratio: 3/2;
  }
  .l-footer__list--en {
    font-size: var(--fs22_40);
  }
  .l-footer__list--jp {
    font-size: var(--fs14_20);
  }
  .l-footer .c-telBt__text {
    font-size: var(--fs28_50);
  }
  .l-footer .c-button__en {
    font-size: var(--fs28_50);
  }
  .l-footer .c-button__text {
    font-size: var(--fs16_24);
  }
  .p-property__row {
    width: 100%;
  }
}
@media all and (max-width: 768px) {
  .tab_over {
    display: none !important;
  }
  .l-container {
    padding-top: clamp(60px, 60px + (100vw - 600px) * 0.0773809524, 73px);
  }
  .l-header__topArea__inner {
    width: 100%;
  }
  /*spフロートメニュー*/
  .c-spCv {
    transition: opacity 0.5s;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    z-index: 900;
    position: relative;
  }
  .c-spCv__bt {
    flex: 1;
  }
  .c-spCv__link {
    border: unset !important;
    height: 100%;
    justify-content: center !important;
  }
  .c-spCv__text {
    font-size: var(--fs16_20);
  }
  .c-spCv__text:not(.en) {
    color: var(--white);
  }
  .c-spCv__text.en {
    font-size: var(--fs20_24);
  }
  .c-spCv.jsfix {
    position: fixed;
    bottom: 0;
    opacity: 1;
    width: 100%;
    /* background-color: unset; */
  }
  .c-spCv.opa {
    opacity: 0;
  }
  .c-spCv.none {
    display: none !important;
  }
  /*p-topReturn*/
  .p-topReturn.return_fixed {
    bottom: 7.5%;
  }
  /*Cvエリア*/
  .p-cvArea__inner {
    grid-gap: var(--m50) 0;
  }
  .p-cvArea__title {
    width: 100%;
  }
  .p-cvArea__title .c-title__en__text {
    display: inline-block;
  }
  .p-cvArea__buttonArea {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    grid-gap: var(--m45) 6%;
  }
  .p-cvArea__buttonArea__search {
    max-width: unset;
    width: 100%;
  }
  .p-cvArea__buttonArea__contact {
    max-width: unset;
    width: 100%;
  }
  .p-cvArea__buttonArea__contact .c-button {
    width: 48%;
  }
  .c-radioCheck {
    width: 100%;
  }
  .p-assessment__pointBox {
    width: 100%;
  }
  .c-contactBox__title {
    flex-direction: row;
    grid-gap: var(--m30);
  }
  .c-contactBox__inner {
    flex-wrap: wrap;
  }
  .c-contactBox__textArea {
    width: 100%;
  }
  .c-contactBox .c-contactList {
    width: 100%;
    padding: var(--m24);
  }
  .c-contactBox .c-contactList__list {
    width: 100%;
  }
}
/* ----------------------------------------------
  SP設定
  ------------------------------------------------*/
@media all and (max-width: 620px) {
  .sp_over {
    display: none !important;
  }
  /*ヘッダー*/
  .l-header .c-button__link {
    padding: 8px;
  }
  /*フッター*/
  .l-footer__list {
    width: 50%;
    aspect-ratio: 3/1.25;
  }
  .l-footer__list:nth-of-type(1)::after, .l-footer__list:nth-of-type(4)::after, .l-footer__list:nth-of-type(5)::after, .l-footer__list:nth-of-type(8)::after {
    background-color: rgba(11, 27, 59, 0.85);
  }
  .l-footer__list:nth-of-type(1) .l-footer__list--en, .l-footer__list:nth-of-type(1) .l-footer__list--text, .l-footer__list:nth-of-type(4) .l-footer__list--en, .l-footer__list:nth-of-type(4) .l-footer__list--text, .l-footer__list:nth-of-type(5) .l-footer__list--en, .l-footer__list:nth-of-type(5) .l-footer__list--text, .l-footer__list:nth-of-type(8) .l-footer__list--en, .l-footer__list:nth-of-type(8) .l-footer__list--text {
    color: var(--white);
  }
  .l-footer__list:nth-of-type(1) .l-footer__list--link::after, .l-footer__list:nth-of-type(4) .l-footer__list--link::after, .l-footer__list:nth-of-type(5) .l-footer__list--link::after, .l-footer__list:nth-of-type(8) .l-footer__list--link::after {
    background-image: url(../images/common/fMenu_frame_w.png);
  }
  .l-footer__list:nth-of-type(2)::after, .l-footer__list:nth-of-type(3)::after, .l-footer__list:nth-of-type(6)::after, .l-footer__list:nth-of-type(7)::after {
    background-color: rgba(255, 255, 255, 0.8);
  }
  .l-footer__list:nth-of-type(2) .l-footer__list--link::after, .l-footer__list:nth-of-type(3) .l-footer__list--link::after, .l-footer__list:nth-of-type(6) .l-footer__list--link::after, .l-footer__list:nth-of-type(7) .l-footer__list--link::after {
    background-image: url(../images/common/fMenu_frame_b.png);
  }
  .l-footer__menu {
    grid-gap: var(--m20) var(--m32);
  }
  .l-footer__menuBox {
    flex: unset;
  }
  .l-footer__address {
    flex-direction: column;
  }
  .l-footer .c-contactList__list {
    width: 100%;
  }
  .l-footer .c-contactList__list.c-telBt {
    width: 100%;
  }
  .c-button__link {
    padding-left: 3% !important;
  }
  .c-button__arrow {
    right: 2.5%;
  }
  .c-spCv .c-telbt__image,
  .c-spCv .c-button__image {
    width: 20px;
  }
  /*区画図*/
  .c-plot__ImageInner {
    min-width: 680px;
  }
  .c-plot__linkBox {
    bottom: 15%;
    height: 25%;
  }
  .c-plot__bt {
    padding: 3px;
    grid-gap: 3px;
  }
  .c-plot .c-title.val {
    flex-direction: row;
  }
  .c-plot__feature {
    grid-gap: 12px 2.51%;
  }
  .c-plot__box {
    width: 48.745%;
    padding: 4px 0 8px;
  }
  .c-plot__box:nth-of-type(3) {
    width: 100%;
  }
  /*下層ページトップ画像*/
  .p-topImage {
    aspect-ratio: 3/1;
  }
  /*p-topReturn*/
  .p-topReturn {
    position: relative;
  }
  .p-topReturn.return_fixed {
    bottom: 8%;
  }
  .c-title__jp {
    margin-bottom: 0;
  }
  .c-title.val .c-title__jp {
    font-size: 15px;
  }
  /*Cvエリア*/
  .p-cvArea__title .c-title__en__text {
    line-height: 1;
    display: block;
  }
  .p-cvArea__buttonArea__contact .c-button {
    width: 100%;
  }
  .p-cvArea__buttonArea__contact .c-button:not(:last-of-type) {
    margin-bottom: var(--m30);
  }
  /*現地案内ページ*/
  .p-mapArea__gmap {
    aspect-ratio: 1/1.5;
  }
  .p-property__dt {
    justify-content: center;
  }
  .p-property__dt,
  .p-property__dd {
    width: 100%;
  }
}