@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700&display=swap");
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

:root {
  --main-color: #70634E;
  --bg-color: #F9F8F0;
  --sp-nav-bg-color: #70634E;
  --sp-nav-color: #FFF;
  --header-height: 56px;
  --cta-height: calc( min(100vw, 480px) * (102 / 480) );
}

/* 行の高=フォントサイズ */
body {
  line-height: 1;
  letter-spacing: 0.1em;
}

/* 新規追加要素をブロック要素化 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* ulのマーカー非表示 */
ol,
ul,
li {
  list-style: none;
}

/* 引用符の非表示 */
blockquote,
q {
  quotes: none;
}

/* blockquote要素、q要素の前後にコンテンツ非表示 */
blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

/* フォントサイズ　リセット フォントの縦方向 ベースライン揃え 点線削除 */
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  outline: none;
}

/* ins要素 デフォルトセット 色を変える場合はここで変更 */
ins {
  background-color: #ff9;
  color: var(--main-color);
  text-decoration: none;
}

/* mark要素 デフォルトセット 色やフォントスタイルを変える場合はここで変更 */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* テキスト 打ち消し線 */
del {
  text-decoration: line-through;
}

/* IE　デフォルトで点線を下線表示設定　下線設定 マウスオーバー時 ヘルプカーソル表示可 */
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*　隣接するセルのボーダーを重ねて表示　*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

/* 水平罫線デフォルトリセット */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
  border: 0;
}

/* 縦方向の揃え 中央揃え */
input,
select {
  vertical-align: middle;
}

/* 画像を縦に並べた時に余白0 */
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
* {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:after {
  overflow: hidden;
  visibility: hidden;
  height: 0;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
}

br {
  line-height: inherit;
}

span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav {
  display: block;
}

section {
  display: block;
  position: relative;
}

input[type=submit], input[type=button] {
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration, input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus, input[type=button]:focus {
  outline-offset: -2px;
}

main {
  display: block;
}

img {
  image-rendering: -webkit-optimize-contrast;
  max-width: 100%;
  height: auto;
}

sup {
  position: relative;
  top: -1ex;
  vertical-align: baseline;
}

button {
  outline: none;
}

iframe {
  display: block;
}

/*import*/
html {
  font-size: 10px;
  box-sizing: border-box;
  color: var(--main-color);
}

body {
  position: relative;
  -webkit-text-size-adjust: 100%;
  font-family: "Sawarabi Mincho", serif;
  font-size: 1rem;
}
body.fix {
  position: fixed;
  width: 100%;
}
body.is-fixed {
  overflow: hidden;
}

@media all and (-ms-high-contrast: none) {
  body {
    font-family: "Zen Kaku Gothic New", serif;
  }
}
html,
body {
  width: 100%;
}

*:focus {
  outline: none;
}

p,
li,
dl,
tr,
th,
td,
div {
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.75;
}

@media screen and (max-width: 640px) {
  p,
  li,
  dl,
  tr,
  th,
  td,
  div {
    font-size: 0.875rem;
  }
}
span {
  font-weight: inherit;
  letter-spacing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0;
  line-height: 1.35;
}

a {
  box-sizing: border-box;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  text-decoration: none;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
a * {
  box-sizing: border-box;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  text-decoration: none;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

.pc,
.pc-tb {
  display: block;
}

@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 640px) {
  .pc-tb {
    display: none !important;
  }
}
.tb-sp,
.tb,
.sp {
  display: none !important;
}

@media screen and (max-width: 1024px) {
  .tb-sp {
    display: block !important;
  }
}
@media screen and (max-width: 1024px) {
  .tb {
    display: block !important;
  }
}
@media screen and (max-width: 640px) {
  .tb {
    display: none !important;
  }
}
@media screen and (max-width: 640px) {
  .sp {
    display: block !important;
  }
}
.sp-only {
  display: none;
}
@media screen and (max-width: 480px) {
  .sp-only {
    display: block;
  }
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.common-wrap {
  position: relative;
  margin: 0 auto;
  padding-inline: 24px;
  width: 100%;
}

@media (max-width: 1024px) {
  .common-wrap {
    padding-inline: 5%;
  }
}
.common-wrap02 {
  position: relative;
  margin: 0 auto;
  padding-inline: 32px;
  width: 100%;
}

@media (max-width: 1024px) {
  .common-wrap02 {
    padding-inline: 5%;
  }
}
.common-wrap03 {
  position: relative;
  margin: 0 auto;
  padding-inline: 48px;
  width: 100%;
}

@media (max-width: 1024px) {
  .common-wrap03 {
    padding-inline: 5%;
  }
}
.common-wrap.--full {
  padding-bottom: 0;
  padding-inline: 0;
}

.cmn-ttl {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 8px;
  border-bottom: 1px solid #333;
}

.cmn-ttl__sub {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.1875;
  letter-spacing: 0.05em;
  color: #b11819;
}

.cmn-ttl__main {
  display: block;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.66;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 640px) {
  .cmn-ttl__main {
    font-size: 1.5rem;
  }
}
.wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 1150px;
  padding-inline: 20px;
}
.wrap::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(./img/bg-body.jpg) repeat-x center center/cover;
  pointer-events: none;
}

@media screen and (max-width: 640px) {
  .wrap {
    padding-inline: 0;
  }
}
.pagetop {
  padding-bottom: 40px;
}

.banner {
  position: fixed;
  bottom: 0;
  /* left: 0; */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  z-index: 1001;
  transition: 0.4s;
}

@media screen and (min-width: 1025px) {
  .banner:hover {
    opacity: 0.8;
  }
}
.banner-contact {
  display: none;
}

@media screen and (max-width: 1024px) {
  .banner.is-hidden {
    opacity: 0;
    pointer-events: none;
  }
  .banner-contact {
    display: flex !important;
    justify-content: space-between;
    align-items: flex-end;
    gap: 8px;
  }
}
.content {
  position: relative;
  width: 480px;
  overflow: clip;
  background: #FFF;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}
.content.open {
  background: transparent;
  box-shadow: none;
}
.content.open .main,
.content.open .ft {
  visibility: hidden;
}

@media screen and (max-width: 1024px) {
  .content {
    margin: 0 auto;
    width: 100%;
    max-width: 480px;
  }
}
.main-cta-ph {
  margin-bottom: 32px;
  width: 100%;
}

@media (max-width: 1024px) {
  .main-cta-ph {
    margin-bottom: 3%;
  }
}
.main-cta-scroll {
  background: #FFF;
  height: 150px;
  overflow-y: scroll;
  padding: 16px;
  margin-bottom: 38px;
}
.main-cta-scroll p {
  color: #2B2B2B;
  font-size: 14px;
  font-style: 400;
  font-weight: 400;
  line-height: 1.71;
  /* 171.429% */
}

@media (max-width: 1024px) {
  .main-cta-scroll {
    padding: 4%;
    margin-bottom: 4%;
  }
}
@media (max-width: 1024px) {
  .main-cta-scroll p {
    font-size: 12px;
  }
}
/* ************************************************************************************ */
/* ************************************************************************************ */
/* ************************************************************************************ */
/* フォーム部分 */
.wpcf7-list-item {
  margin: 0 0 1em 0;
}

form {
  overflow: hidden;
  padding-top: 40px;
}
@media (max-width: 640px) {
  form {
    padding-top: 8%;
  }
}
form ul {
  display: block;
  margin: 24px 0;
}

.item-notice {
  width: 100%;
  margin-right: 0;
  margin-left: auto;
  margin-top: 13px;
  line-height: 1.5;
  font-size: 14px !important;
}
.item-notice strong {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 8px;
  display: block;
}
.item-notice p {
  font-size: 14px;
}

form ul li:last-of-type {
  width: 100%;
}
form ul .item-name {
  color: #2C2928;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row-reverse;
  gap: 16px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
}
form ul li:last-of-type .item-form {
  width: 100%;
  display: block;
}
form ul li:last-of-type .item-form span {
  width: 100%;
  display: block;
  padding-left: 0;
}
form ul li:last-of-type input {
  width: 100%;
  display: block;
}
form ul li:last-of-type textarea {
  width: 100%;
  display: block;
  resize: vertical;
  height: 140px;
}
form ul li:last-of-type input,
form ul li:last-of-type textarea,
form ul li:last-of-type select {
  border: none;
  padding: 8px;
  font-size: 16px;
  letter-spacing: normal;
  box-sizing: border-box;
  background: #fff;
}

@media (max-width: 1024px) {
  form ul .item-name {
    font-size: 14px;
  }
}
.section-form__check1 {
  text-align: center;
  font-size: 14px;
}

.contact__form ul.form-tab button.active {
  color: #186a68;
  border-top: 1px solid #186a68;
  border-bottom: 1px solid #186a68;
}

.submit_btn {
  display: block;
  width: 100%;
  color: #000;
  text-align: center;
  border-radius: 100px;
  border: none;
  margin: auto;
  position: relative;
}
.submit_btn:hover {
  /* border: 1px solid rgba(108, 142, 120, 0.5); */
}

.section-form__check {
  text-align: center;
  margin-top: 32px;
  margin-bottom: 48px;
}
.section-form__check span {
  background: none;
}

.submit_btn:after {
  position: absolute;
  content: "";
  width: 32px;
  height: 6px;
  top: 50%;
  transform: translateY(-48%);
  right: 24px;
  size: cover !important;
  position: center center !important;
}

.wpcf7-spinner {
  display: none !important;
}

li.item-form.itemform_add_search {
  display: flex;
  justify-content: space-between;
  display: flex;
  justify-content: space-between;
}
li.item-form.itemform_add_search span {
  width: calc(100% - 140px);
}

.form-caption {
  margin-bottom: 120px;
}
.form-caption p {
  font-size: 16px;
  text-align: center;
}

.section-form-privacy__cnt {
  height: 180px;
  overflow-y: scroll;
  padding: 18px;
  margin-bottom: 32px;
}
.section-form-privacy__cnt h3 {
  font-size: 16px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 6px;
  margin-bottom: 12px;
  margin-top: 32px;
}
.section-form-privacy__cnt h3:first-of-type {
  margin-top: 0;
}
.section-form-privacy__cnt p {
  font-size: 14px;
}

.formError {
  z-index: 20 !important;
}

.xdsoft_datetimepicker {
  z-index: 21 !important;
}

@media screen and (max-width: 640px) {
  form ul {
    margin-top: 5%;
    margin-bottom: 3%;
    flex-wrap: wrap;
  }
  form ul li:first-of-type, form ul li:last-of-type {
    width: 100%;
  }
  form ul li:first-of-type {
    margin-bottom: 16px;
  }
  form ul li:last-of-type input,
  form ul li:last-of-type textarea {
    padding: 16px;
    font-size: 14px;
  }
  form [type=submit] {
    font-size: 18px;
  }
  .form-caption {
    margin-bottom: 32px;
  }
  .form-caption p {
    font-size: 14px;
    text-align: left;
  }
  .contact__form ul.form-tab {
    margin-bottom: 40px;
  }
  .item-notice,
  li.item-form.itemform_add_search span {
    width: 100%;
  }
  .section-form__check {
    margin-bottom: 5%;
  }
}
.wpcf7-form-control {
  border: none;
  padding: 8px;
  font-size: 16px;
  letter-spacing: normal;
  box-sizing: border-box;
  width: 100%;
}
.wpcf7-form-control.wpcf7-radio label {
  display: flex;
  gap: 12px;
  cursor: pointer;
}
.wpcf7-form-control.wpcf7-radio label input {
  width: 24px;
  height: 24px;
}
.wpcf7-form-control.wpcf7-radio label .wpcf7-list-item-label {
  width: calc(100% - 36px);
}

.form-caption p,
form * {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #444444;
  font-family: "Sawarabi Mincho", serif;
}

.wpcf7-not-valid-tip {
  /*   display: none !important; */
}

.form__notice {
  font-size: 14px;
  margin-top: 16px;
}

.privacy-policy-scroll {
  background: #FFF;
  padding: 20px 16px;
  max-height: 200px;
  height: 100%;
  margin-top: 24px;
  overflow: hidden scroll;
}
.privacy-policy-scroll::-webkit-scrollbar {
  width: 8px;
}
.privacy-policy-scroll::-webkit-scrollbar-thumb {
  background: #A7A7A7;
  border-radius: 10px;
}
.privacy-policy-scroll::-webkit-scrollbar-track {
  background: #FFF;
}
.privacy-policy-scroll .simplebar-track {
  width: 0.3rem;
}
.privacy-policy-scroll .simplebar-scrollbar {
  width: 0.3rem;
}
.privacy-policy-scroll .simplebar-scrollbar::before {
  width: 0.3rem;
  color: #fff;
  opacity: 1;
}
.privacy-policy-scroll p {
  font-size: 14px;
  line-height: 1.71;
}

@media (max-width: 640px) {
  .form__notice {
    font-size: 12px;
    margin-top: 2%;
  }
}
.item-form.itemform_add_search {
  display: flex !important;
  gap: 16px;
}
.item-form.itemform_add_search .wpcf7-form-control-wrap {
  width: calc(100% - 96px);
}

span.wpcf7-form-control.wpcf7-radio {
  background: unset;
}

.section-form__check1,
.section-form__check2 {
  text-align: center;
}

span.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required {
  background: none;
}
span.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required .wpcf7-list-item-label {
  font-size: 14px;
  line-height: 1;
}
span.wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wpcf7-form-control-wrap[data-name=radio-plan] span.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control-wrap[data-name=radio-plan] span.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control.wpcf7-radio label .wpcf7-list-item-label {
  width: auto;
}

.wpcf7-checkbox .wpcf7-list-item input {
  display: inline-block;
  vertical-align: bottom;
}

.wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
  display: inline-block;
  width: auto;
}

/* チェック時のスタイル */
.wpcf7-list-item input[type=radio] {
  width: 20px !important;
  height: 20px !important;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.section-form__check1 .wpcf7-list-item,
.section-form__check2 .wpcf7-list-item {
  justify-content: center;
}

@media (max-width: 640px) {
  .contact-tab__wrap {
    padding: 0;
    gap: 16px;
    margin: 4% 0;
  }
}
.wpcf7-list-item {
  margin: 0;
  margin: 0 !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
}
.wpcf7-list-item input[type=radio] {
  width: auto !important;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.section-form__check1 .wpcf7-list-item,
.section-form__check2 .wpcf7-list-item {
  justify-content: center;
}
@media (max-width: 1024px) {
  .info {
    padding-block: 6%;
  }
}
.info-head {
  margin-bottom: 64px;
  margin-inline: auto 0;
  max-width: 400px;
}

.info-ttl {
  margin-bottom: 32px;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.66;
  letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
  .info-ttl {
    font-size: 26px;
    margin-bottom: 3%;
  }
}
@media screen and (max-width: 640px) {
  .info-ttl {
    font-size: 20px;
  }
}
.info-sub-ttl {
  margin-bottom: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.71;
  /* 171.429% */
  letter-spacing: 1.4px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.info-sub-ttl::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(./img/icon-title.svg) no-repeat center center/cover;
}

@media (max-width: 1024px) {
  .info-sub-ttl {
    margin-bottom: 5%;
  }
}
@media (max-width: 640px) {
  .info-sub-ttl {
    font-size: 12px;
  }
}
.info-txt {
  margin-bottom: 40px;
  line-height: 1.875;
  letter-spacing: 0.1em;
  color: #3a3a3a;
}

@media (max-width: 1024px) {
  .info-txt {
    margin-bottom: 4%;
  }
}
.info-data {
  padding: 24px;
  background: #F8F5F3;
}

.info-data__item:first-of-type {
  padding-bottom: 56px;
}

.info-data__ttl {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 2;
  /* 200% */
  letter-spacing: 0.8px;
}
.info-data__ttl::before {
  content: "◉";
}

.info-data__txt {
  line-height: 1.875;
  letter-spacing: 0.1em;
  color: #3a3a3a;
}

.info-ph {
  display: flex;
  justify-content: center;
}
.info-ph img {
  width: 427px;
}

.info-point {
  margin-top: 56px;
}

@media (max-width: 1024px) {
  .info-point {
    margin-top: 6%;
  }
}
.info-txt {
  margin-bottom: 32px;
  line-height: 1.875;
  letter-spacing: 0.1em;
  color: #3a3a3a;
}

.info-slide {
  position: relative;
  margin-bottom: 67px;
}

.info-slide__thumbs {
  margin-top: min(1.5625vw, 0.75rem);
  padding: 0;
  width: 100%;
  overflow: auto;
}
.info-slide__thumbs .swiper-slide {
  height: 80px;
  text-align: center;
  overflow: hidden;
  opacity: 0.5;
}
.info-slide__thumbs .swiper-slide img {
  width: auto;
  height: 100%;
}

.info .swiper-slide-thumb-active {
  opacity: 1;
}
.info .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #e2e2e2;
  opacity: 1;
}
.info .swiper-pagination-bullet-active {
  background: var(--main-color);
}
.info .swiper-pagination-bullets {
  bottom: -35px;
}
.info .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.info .swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}
.info .swiper-button-next,
.info .swiper-button-prev {
  position: absolute;
  top: 39%;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: url(./img/icon-arrow.svg) no-repeat center center/cover;
  transition: 0.4s;
  z-index: 1;
}
.info .swiper-button-next::after {
  display: none;
}
.info .swiper-button-prev {
  left: 8px;
  right: auto;
  transform: scale(-1, 1);
}
.info .swiper-button-prev::after {
  display: none;
}

@media screen and (max-width: 1024px) {
  .info .swiper-button-next,
  .info .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}
.info-tab__list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}

.info-tab__item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 16px) / 3);
}

.info-tab__btn {
  width: 100%;
  height: 58px;
  background: #E1D5D5;
  border: none;
  transition: 0.4s;
  cursor: pointer;
  border-radius: 10px 10px 0 0;
}
.info-tab__btn.active {
  transform-origin: bottom;
  background: #5B4B4B;
}
.info-tab__btn.active .info-tab__ttl {
  color: #fff;
}

@media screen and (max-width: 640px) {
  .info-tab__btn {
    padding: 5%;
  }
}
@media screen and (min-width: 1025px) {
  .info-tab__btn:hover {
    transform-origin: bottom;
    background: #5B4B4B;
  }
  .info-tab__btn:hover .info-tab__ttl {
    color: #fff;
  }
}
.info-tab__ttl {
  font-weight: 500;
  line-height: 1.66;
  text-align: center;
  letter-spacing: 0.1em;
  color: #5B4B4B;
  transition: 0.4s;
}

.info-detail {
  background: #5B4B4B;
}

.info-cnt__box {
  padding-block: 22px 32px;
}

.info-cnt__info {
  width: 100%;
}

.info-cnt__ph {
  margin-bottom: 24px;
  width: 100%;
}

.info-cnt__ttl {
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  /* 200% */
  letter-spacing: 1px;
  margin-bottom: 24px;
}

@media screen and (max-width: 640px) {
  .info-cnt__ttl {
    font-size: 18px;
    margin-bottom: 5%;
  }
}
.info-cnt__txt {
  line-height: 1.875;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}

/* hover */
@media (min-width: 1024px) {
  /* hover1 */
  .main-cta-txt.hover-btn01:hover {
    background: #FFF;
    transition: 0.3s;
  }
  .main-cta-txt.hover-btn01:hover span {
    color: #166760;
    transition: 0.3s;
  }
  .main-cta-txt.hover-btn01:hover svg path {
    fill: #166760;
    transition: 0.3s;
  }
  .main-cta-txt.hover-btn02:hover {
    background: #5B4B4B;
    transition: 0.3s;
  }
  .main-cta-txt.hover-btn02:hover span {
    color: #FFF;
    transition: 0.3s;
  }
  .main-cta-txt.hover-btn02:hover svg path {
    fill: #FFF;
    transition: 0.3s;
  }
  /* hover2 */
}
/* info */
.info-info {
  z-index: 1;
}

.info-bg {
  position: relative;
  z-index: 0;
}
.info-bg::after {
  content: "";
  display: block;
  width: 480px;
  height: 440px;
  background: url(./img/info-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  bottom: -10vw;
  z-index: -2;
}

/* 250203 anchor */
#message-anchor,
#info-anchor,
#plan-anchor,
#access-anchor,
#works-anchor,
#contact-anchor,
#section-company-profile-anchor {
  margin-top: -80px;
  padding-top: 80px;
}

/* SP banner */
@media (min-width: 1024px) {
  .banner {
    display: none;
    /* JavaScriptで制御するためCSSでは非表示 */
    position: fixed;
    bottom: 0px;
    right: 20px;
    /*     background: rgba(0, 0, 0, 0.8); */
    color: #fff;
    padding: 10px 20px 0 20px;
    border-radius: 5px;
  }
}
/* 250311 */
/* common */
.common__ttl {
  position: relative;
  border-left: 1px solid var(--main-color);
  padding-left: 16px;
}

.common__ttl-sub {
  display: block;
  color: var(--main-color);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .common__ttl-sub {
    font-size: 1.4rem;
    margin-bottom: 2%;
  }
}
.common__ttl-main {
  color: var(--main-color);
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
  .common__ttl-main {
    font-size: 2.6rem;
  }
}
@media (max-width: 640px) {
  .common__ttl-main {
    font-size: 2rem;
  }
}
.hd {
  width: calc(100% - 480px);
  max-width: 600px;
}
.hd.is-open .hd-toggle__line:nth-child(1) {
  transition: top 0.2s, bottom 0.2s, transform 0.4s 0.2s;
  transform: rotate(-40deg);
  top: 12px;
}
.hd.is-open .hd-toggle__line:nth-child(2) {
  display: none;
}
.hd.is-open .hd-toggle__line:nth-child(3) {
  transition: top 0.2s, bottom 0.2s, transform 0.4s 0.2s;
  transform: rotate(40deg);
  top: 12px;
}
.hd.is-open .hd-toggle__txt::after {
  /* content: "close";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.56;
  letter-spacing: 0.05em;
  color: #444444; */
}

@media (min-width: 1025px) {
  .hd-cnt {
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.hd-menu {
  width: 100%;
  border-radius: 0 0 30px 30px;
}

.hd-name {
  display: none;
}
@media (max-width: 1024px) {
  .hd-name {
    display: block;
    margin-bottom: 0;
    width: 130px;
    z-index: 1001;
  }
}

.hd-nav__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  width: calc((100% - min(2.2222222222vw, 2rem)) / 2);
}

.hd-nav__item {
  width: 100%;
  max-width: 240px;
}

.hd-nav__link {
  display: block;
  position: relative;
  padding-block: 8px;
  padding-left: min(1.6666666667vw, 15px);
  width: 100%;
  transition: 0.4s;
}

.hd-nav__link-jp {
  position: relative;
  display: block;
  padding: 0;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #B8B8B8;
  transition: 0.4s;
}

@media (max-width: 640px) {
  .hd-nav__link-jp {
    color: #B8B8B8;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    /* 200% */
    letter-spacing: 0.8px;
  }
}
@media screen and (min-width: 1025px) {
  .hd-nav__link:hover span {
    color: #333;
  }
}
@media screen and (min-width: 1025px) {
  .hd-nav__link.active span {
    color: var(--main-color);
  }
}
@media screen and (max-width: 1024px) {
  .hd {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    gap: 0;
    width: 100%;
    max-width: 480px;
    height: 56px;
    background: transparent;
    line-height: 1;
    transition: all 0.4s;
    z-index: 1000;
  }
  .hd-menu {
    margin-inline: auto 0;
    width: 100%;
    max-width: none;
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
  }
  .hd-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 56px;
    left: 0;
    padding-bottom: 70px;
    width: 100%;
    height: calc(100svh - 56px);
    background: #FFFFFF;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
  }
  .hd-nav__name {
    margin-bottom: 16px;
    width: 150px;
  }
  .hd-nav__list {
    align-items: center;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .hd-nav__item {
    width: 100%;
    padding: 0;
    border: none;
    text-align: center;
  }
  .hd-nav__item:first-child {
    border: none;
  }
  .hd-nav__link {
    display: block;
    padding-block: 16px;
    padding-inline: 0;
  }
  .hd-nav__link-jp {
    /* color: #5B4B4B; */
    color: var(--sp-nav-color);
    line-height: 1.56;
  }
  .hd .main-cta {
    display: none;
  }
  .hd-toggle {
    position: relative;
    width: 105px;
    height: 100%;
    cursor: pointer;
    z-index: 1002;
  }
  .hd-toggle__line {
    height: 1px;
  }
  .hd-toggle__line:nth-child(1) {
    top: 0;
    transition: 0.2s 0.2s, bottom 0.2s 0.2s, transform 0.4s;
  }
  .hd-toggle__line:nth-child(2) {
    top: 12px;
  }
  .hd-toggle__line:nth-child(3) {
    transition: top 0.2s 0.2s, bottom 0.2s 0.2s, transform 0.4s;
    position: relative;
    top: 28px;
  }
  .hd-toggle__txt {
    /* position: relative; */
  }
  .hd-toggle__txt::after {
    /* content: "menu";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.56;
    letter-spacing: 0.05em;
    color: #444444; */
  }
  .hd__sp-toggle div {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 28px;
  }
  .hd__sp-toggle span {
    display: block;
    width: 32px;
    height: 1px;
    position: absolute;
    transition: 0.35s ease-in-out;
    background: #444444;
    color: #444444;
  }

  /* close */
  .hd__sp-toggle span:nth-of-type(1) {
    top: 12px;
  }
  .hd__sp-toggle span:nth-of-type(2) {
    opacity: 1;
    top: 19px;
  }
  .hd__sp-toggle span:nth-of-type(3) {
    top: 26px;
  }

  /* open */
.hd.is-open .hd__sp-toggle span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 50%;
    background: #70634E;
  }
.hd.is-open .hd__sp-toggle span:nth-of-type(2) {
    opacity: 0;
    }
.hd.is-open .hd__sp-toggle span:nth-of-type(3) {
        transform: rotate(-45deg);
        top: 50%;
        background: #70634E;
    }
}
@media screen and (max-width: 1024px) {
  .hd.fixed {
    background: rgba(242, 242, 242, 0.9);
  }
}
.hd.open {
  background: #FFF;
}
.hd.open .hd-toggle__txt::after {
  content: "close";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.56;
  letter-spacing: 0.05em;
  color: #444444;
}
.hd.open .hd-nav {
  opacity: 1;
  transition: 0.4s;
  visibility: visible;
}
.hd.open .hd-toggle span {
  background: #3e3b31;
  color: #3e3b31;
}
.hd.open .hd-toggle span:nth-child(1) {
  top: 12px;
  transform: rotate(320deg);
}
.hd.open .hd-toggle span:nth-child(2) {
  left: 50%;
  width: 0;
}
.hd.open .hd-toggle span:nth-child(3) {
  top: 12px;
  transform: rotate(-320deg);
}

.hd-wrap {
  width: 100%;
  background: #FFF;
  border-radius: 0 0 60px 60px;
  padding-block: 80px;
}

.hd-cta {
/*   max-width: 500px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover; */
/*   height: 447px; */
/* 	height:auto;
  position: relative;
  overflow: hidden;
	border-radius:10px; */
	  max-width: 432px;
    width: 100%;
    background: url(./img/_brown/hd-cta_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    /* background: #083459; */
    background-size: cover;
    padding:32px;
	margin: 0 auto;
	text-align:center;
  transition: 0.3s;
  cursor: pointer;
}
@media(min-width: 1025px) {
  .hd-cta:hover {
    opacity: 0.7;
    transition: 0.3s;
    transition: 0.3s;
  }
}
.hd-cta > a {
/*   position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
	display: block;
/* 	padding:34px 0 40px 0; */
}
.hd-cta h2 {
/*   padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  margin: 0 auto;
  margin-bottom: 32px;
  color: #FFF;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  display: block;
  width: 350px; */
/* 	color: #fff;
    text-align: center;
    font-family: "Zen Kaku Gothic New";
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 36px;
    border-bottom: 1px solid #fff;
    padding-bottom: 12px; */
max-width: 346px;
    width: 100%;
    margin: 0 auto;
    color: #FFF;
    text-align: center;
    font-family: "Zen Kaku Gothic New";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.8px;
    border-bottom: 1px solid #FFF;
    padding-bottom: 4px;
}
.hd-cta .hd-cta__inner {
  width: 100%;
  margin: 0 auto;
}
.hd-cta .hd-cta__inner img {
/*   width: 250px; */
/* 	width:357px;
  display: block;
  margin: 0 auto; */
/* 	display: block;
    width: 100%;
    max-width: 270px;
    margin: 0 auto; */
	max-width: 322px;
    width: 100%;
    padding-top: 30px;
}
.hd-cta .main-cta-btn {
/*   width: 340px;
  height: 50px;
  flex-shrink: 0;
  background: #fff;
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  transition: 0.3s; */
	    width: 100%;
    height: 48px;
    margin: 20px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid #fff;
    box-sizing: border-box;
    transition: 0.3s;
    border-radius: 64px;
    background: #fff;
}
/* .hd-cta .main-cta-btn::after {
  content: "";
  background: url(./img/arrow-right.svg);
  background-position: center center;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  transition: 0.4s;
} */
.hd-cta .main-cta-btn span {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  transition: 0.3s;
  font-family: "Zen Kaku Gothic New";
  /* color: var(--main-color); */
  color: #2A2A2A;
}
.hd-cta .main-cta-btn svg {
    position: absolute;
    right: 28px;
}
.hd-cta .main-cta-btn svg path {
    transition: 0.3s;
    stroke: var(--main-color);
}

@media (max-width: 1024px) {
  .hd-cta {
    display: none;
  }
}
@media (min-width: 1025px) {
  .hd-cta__inner .main-cta-btn {
    transition: 0.4s;
  }
/*   .hd-cta__inner .main-cta-btn:hover::after {
    transform: translateY(-50%) translateX(8px);
  } */
	.hd-cta > a:hover:hover .main-cta-btn{
    /* background: #083459;
  border: 2px solid #fff;
    color: #fff;
    transition: 0.3s; */
  }

  .hd-cta > a:hover .main-cta-btn svg path {
    /* stroke: #fff;
    transition: 0.3s; */
  }
}
/* 250311 section-FV */
.section-fv {
  position: relative;
  z-index: 1;
}
.section-fv .common-wrap {
  padding-top: 0;
}

.section-fv-slide__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-fv-slide-cnt {
  position: relative;
}

.section-fv__catch {
  max-width: 384px;
  margin-top: 160px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media (max-width: 640px) {
  .section-fv__catch {
    max-width: 315px;
  }
}
.section-fv__catch span {
  display: block;
}

@media (max-width: 1024px) {
  .section-fv__catch {
    padding-inline: 2%;
  }
}
.section-fv__catch-ttl {
  color: #FFF;
  font-size: 2.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: calc(55/30);
  letter-spacing: 0.05em;
  padding: 0;
}

@media (max-width: 1024px) {
  .section-fv__catch-ttl {
    font-size: 2.6rem;
  }
}
@media (max-width: 640px) {
  .section-fv__catch-ttl {
    font-size: 2rem;
  }
}
.section-fv__catch-subttl {
  color: #FFF;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.1em;
  padding-bottom: 8px;
}

@media (max-width: 1024px) {
  .section-fv__catch-subttl {
    font-size: 1.8rem;
  }
}
@media (max-width: 1024px) {
  .section-fv__catch-subttl {
    font-size: 1.6rem;
  }
}
.section-fv-catch span.location::before {
  content: "";
  display: block;
  width: 12px;
  height: 16px;
  background: url(./img/icon-location.svg) no-repeat center center/cover;
}

.section-fv-info {
  width: 100%;
  background: var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
  gap: 17px;
}
@media (max-width: 640px) {
  .section-fv-info {
    padding: 3% 0;
  }
}
@media (max-width: 480px) {
  .section-fv-info {
    gap: 10px;
  }
}

.section-fv-info__top {
  display: block;
  color: #FFF;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.section-fv-info__bottom {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 250311 section-concept */
#section-concept {
  padding: 96px 0 60px;
}
#section-concept::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 313px;
  height: 107px;
  background: url(./img/concept-img01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
  margin-top: 190px;
}
@media (max-width: 1024px) {
  #section-concept::after {
    opacity: 0.3;
    margin-top: 10%;
  }
}

@media (max-width: 1024px) {
  #section-concept {
    padding: 8% 0;
  }
}
.section-concept__text {
  color: #444444;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  margin: 95px 0 40px;
}
@media (max-width: 1024px) {
  .section-concept__text {
    margin: 8% 0 4%;
  }
}
@media (max-width: 640px) {
  .section-concept__text {
    font-size: 1.4rem;
  }
}

.section-concept__text {
  width: 100%;
}

.design {
  padding-block: 64px 48px;
}

@media (max-width: 1024px) {
  .design {
    padding-block: 6% 5%;
  }
}
.design__slide--item-ttl {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.design__slide--item-ttl span {
  color: #64A26B;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  /* 111.111% */
  letter-spacing: 0.9px;
  padding-bottom: 12px;
  position: relative;
}
.design__slide--item-ttl span::after {
  content: "";
  display: block;
  background: url(./img/icon-line01.svg) no-repeat center center/cover;
  width: 158px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.design__slide--item-ttl h3 {
  color: #3B2B23;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 100% */
  letter-spacing: 0.96px;
  padding-bottom: 16px;
}

.design__slide--item-txt {
  color: #3B2B23;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.7;
  /* 171.429% */
  letter-spacing: 0.14px;
  padding-top: 16px;
}

.design__slide--wrap {
  background: #F2F2F2;
  border-radius: 30px;
  padding: 24px 56px 32px;
  position: relative;
}

@media (max-width: 1024px) {
  .design__slide--wrap {
    padding: 3% 6% 3%;
  }
}
.design .swiper-pagination {
  position: unset;
  padding-top: 40px;
}
.design .swiper-pagination-bullet {
  background: #444444;
}
.design .swiper-pagination-bullet-active {
  background: #083459;
}

@media (max-width: 1024px) {
  .design .swiper-pagination {
    padding-top: 4%;
  }
}
.design__slide-prev {
  position: absolute;
  top: 50%;
  left: 24px;
}

.design__slide-next {
  position: absolute;
  top: 50%;
  right: 24px;
}

.design__subttl {
  display: block;
  width: 100%;
  text-align: center;
  color: #F2F2F2;
  font-family: "Noto Sans JP";
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 100% */
  letter-spacing: 0.8px;
}

/* 250311 section-modelhouse */
#section-modelhouse {
  padding-top: 96px;
}

@media (max-width: 1024px) {
  #section-modelhouse {
    padding-top: 8%;
  }
}
.section-modelhouse__text {
  color: #444444;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.87;
  letter-spacing: 0.05em;
  padding-top: 40px;
}
@media (max-width: 640px) {
  .section-modelhouse__text {
    font-size: 1.4rem;
    padding-top: 4%;
  }
}

.section-modelhouse__map {
  background: url(./img/modelhouse-map.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  margin-top: 78px;
	aspect-ratio: 432/320;
}
@media (max-width: 640px) {
  .section-modelhouse__map {
    margin-top: 10%;
  }
}
.section-modelhouse__map-txt {
	display: none;
  color: #fff;
  background-color: #083459;
  padding: 16px 24px;
  display: inline-block;
  position: absolute;
  right: 0;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  text-align: center;
  right: -30px;
  top: -40px;
}
@media (max-width: 640px) {
  .section-modelhouse__map-txt {
    padding: 2%;
    font-size: 1.8rem;
    right: -24px;
    top: 0;
  }
}

.section-modelhouse__map-icon {
  cursor: pointer;
  animation: float 2s ease-in-out infinite;
}
.section-modelhouse__map-icon.--icon01 {
  position: absolute;
    top: 4%;
    left: 5%;
}
@media (max-width: 430px) {
  .section-modelhouse__map-icon.--icon01 {
    /* width: 23vw;
    top: -3vw; */
  }
}
.section-modelhouse__map-icon.--icon02 {
  position: absolute;
  top: 41%;
  left: 11%;
}
@media (max-width: 430px) {
  .section-modelhouse__map-icon.--icon02 {
    width: 23vw;
    top: 28vw;
  }
}
.section-modelhouse__map-icon.--icon03 {
  position: absolute;
  top: 24%;
  left: 37%;
}
@media (max-width: 430px) {
  .section-modelhouse__map-icon.--icon03 {
    width: 20vw;
  left: 32%;
  }
}
.section-modelhouse__map-icon.--icon05 {
  position: absolute;
    top: 50%;
    left: 72%;
}
@media (max-width: 430px) {
  .section-modelhouse__map-icon.--icon05 {
    width: 20vw;
    left: 72%;
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}
.section-modelhouse__area {
  border: 1px solid #083459;
  padding: 16px;
  margin-top: 24px;
  width: 100%;
  height: 110px;
  overflow-y: scroll;
}
@media (max-width: 1024px) {
  .section-modelhouse__area {
    padding: 2%;
    margin-top: 2%;
  }
}

.section-modelhouse__area-list {
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-size: 1.2rem;
}

.section-modelhouse__area--list-green {
  display: block;
  color: #64A26B;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.section-property {
  padding-top: 52px;
}
@media (max-width: 1024px) {
  .section-property {
    padding-top: 5%;
  }
}

.section-property__heading {
  margin-block: 12px;
  max-width: 432px;
  flex-shrink: 0;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  position: relative;
  padding: 24px 0 24px 32px;
}
.section-property__heading::after {
  content: "";
  display: block;
  background: url(./img/icon-arrow01.svg);
  width: 18px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 24px;
  transition: 0.5s;
}
.section-property__heading.active::after {
  transform: rotate(180deg);
  transition: 0.5s;
}

@media (max-width: 1024px) {
  .section-property__heading {
    font-size: 2rem;
    padding: 4%;
  }
}
@media (max-width: 640px) {
  .section-property__heading {
    font-size: 1.8rem;
  }
}
/* 初期状態で非表示 */
.js-property {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.js-property.open {
  max-height: 5000px;
  /* 必要に応じて調整 */
}

/* 開いた時に表示される */
.section-property__item {
  background: var(--bg-color);
  margin-bottom: 64px;
}
.section-property__item:not(:last-of-type) {
  margin-bottom: 32px;
}

.section-property__item-wrap {
  padding: 32px 24px 36px;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .section-property__item-wrap {
    margin-top: 2%;
    padding: 6% 4%;
  }
}

.section-property__item-ttl {
  color: var(--main-color);
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding-bottom: 8px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--main-color);
}

@media (max-width: 1024px) {
  .section-property__item-ttl {
    font-size: 2rem;
    margin-bottom: 4%;
    padding-bottom: 2%;
  }
}
.section-property__item-img {
  padding-bottom: 24px;
}
@media (max-width: 1024px) {
  .section-property__item-img {
    padding-bottom: 4%;
  }
}

.section-property__item-catch {
  color: var(--main-color);
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding-bottom: 10px;
border-bottom: solid 1px #CBCBCB;
    margin-bottom: 10px;
}

@media (max-width: 640px) {
  .section-property__item-catch {
    font-size: 1.6rem;
  }
}
.section-property__item-text {
  color: #444444;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
@media (max-width: 640px) {
  .section-property__item-text {
    font-size: 1.4rem;
  }
}

.property__rec {
  padding-block: 48px 32px;
}

.property__rec--ttl {
  color: #64A26B;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.11;
  /* 111.111% */
  letter-spacing: 0.9px;
  padding-bottom: 12px;
}

@media (max-width: 1024px) {
  .property__rec--ttl {
    font-size: 1.6rem;
  }
}
.property__rec--text {
  color: #595959;
  text-align: justify;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.71;
  /* 171.429% */
  letter-spacing: 0.14px;
  padding-block: 24px;
  position: relative;
}
.property__rec--text::before {
  content: "";
  display: block;
  background: url(./img/icon-line03.svg);
  width: 100%;
  height: 1px;
  background-size: cover;
  position: absolute;
  top: 0;
}
.property__rec--text::after {
  content: "";
  display: block;
  background: url(./img/icon-line03.svg);
  width: 100%;
  height: 1px;
  background-size: cover;
  position: absolute;
  bottom: 0;
}

.section-property-open {
  cursor: pointer;
  margin: 0 auto;
  width: 100%;
  max-width: 340px;
  height: 50px;
  background: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  padding-inline: 24px;
  transition: 0.3s;
}
.section-property-open::before {
  content: "";
  display: block;
  width: 17px;
  height: 13px;
}
.section-property-open::after {
  content: "";
  display: block;
  background: url(./img/icon-arrow02.svg);
  width: 30px;
  height: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transform: translate(-50%);
  transition: 0.4s;
}

@media (max-width: 1024px) {
  .section--property-open {
    font-size: 1.6rem;
  }
}
@media (min-width: 1025px) {
  .section-property-open:hover {
    transition: 0.4s;
  }
  .section-property-open:hover::after {
    transform: translate(-50%) translateX(8px);
  }
}
.section-property__block {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease-in-out;
}
.section-property__block.open {
  max-height: 10000px;
  /* 適切な高さを設定 */
}

/* 250311 modal */
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  width: 100%;
  height: 100%;
  z-index: 1010;
}
.modal.active {
  display: block;
}

.modal__block {
  max-width: 480px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 90vh;
  overflow-y: auto;
}

@media (max-width: 640px) {
  .modal__block {
    width: 90%;
  }
}
.modal__heading::after {
  content: "";
  display: block;
  background: url(./img/icon-arrow01.svg);
  width: 22px;
  height: 18px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  right: 24px;
}

.modal__item {
  background: var(--bg-color);
  padding: 64px 0;
}
@media (max-width: 640px) {
  .modal__item {
    padding: 6% 0;
  }
}

.modal__item-wrap {
  padding: 0 24px;
  position: relative;
}
@media (max-width: 640px) {
  .modal__item-wrap {
    padding: 0 4%;
  }
}

.modal__item--status {
  display: inline-flex;
  padding: 3px 8px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 3px;
  background: #BFA06B;
  color: #FFF;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 100% */
  letter-spacing: 2.8px;
  margin-bottom: 20px;
}

.modal__item-ttl {
  color: var(--main-color);
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  padding-bottom: 14px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--main-color);
}

@media (max-width: 1024px) {
  .modal__item-ttl {
    font-size: 2rem;
    padding-bottom: 2%;
    margin-bottom: 4%;
  }
}
.modal__item--slide {
  padding-bottom: 24px;
}

.modal__item-catch {
  color: var(--main-color);
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  border-left: 1px solid var(--main-color);
  padding-left: 16px;
}

@media (max-width: 1024px) {
  .modal__item-catch {
    font-size: 1.8rem;
    padding-left: 2%;
  }
}
@media (max-width: 640px) {
  .modal__item-catch {
    font-size: 1.6rem;
  }
}
.modal__item-address {
  color: #595959;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  /* 100% */
  letter-spacing: 0.8px;
}

@media (max-width: 1024px) {
  .modal__item-address {
    font-size: 1.4rem;
  }
}
.modal__rec {
  padding-block: 20px 64px;
}

@media (max-width: 1024px) {
  .modal__rec {
    padding-block: 2% 6%;
  }
}
.modal__rec-ttl {
  color: #64A26B;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.11;
  /* 111.111% */
  letter-spacing: 0.9px;
  padding-bottom: 12px;
}

@media (max-width: 1024px) {
  .modal__rec-ttl {
    font-size: 1.6rem;
  }
}
.modal__rec-text {
  color: #444444;
  text-align: justify;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  position: relative;
}
@media (max-width: 640px) {
  .modal__rec-text {
    font-size: 1.4rem;
  }
}

.modal-open {
  cursor: pointer;
  width: 100%;
  height: 50px;
  background: #FFFFFF;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8C8C8C;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  /* 100% */
  letter-spacing: 0.9px;
  padding-inline: 24px;
}
.modal-open::before {
  content: "";
  display: block;
  width: 17px;
  height: 13px;
}
.modal-open::after {
  content: "";
  display: block;
  background: url(./img/icon-arrow02.svg);
  width: 17px;
  height: 13px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (max-width: 1024px) {
  .modal-open {
    font-size: 1.6rem;
  }
}
/* 250312 modal slide */
.modal__slider {
  padding-bottom: 32px;
  position: relative;
}
.modal__slider .modal__slide-prev {
  cursor: pointer;
  position: absolute;
  top: 30%;
  left: 2%;
  z-index: 2;
}
.modal__slider .modal__slide-next {
  cursor: pointer;
  position: absolute;
  top: 30%;
  right: 2%;
  z-index: 2;
}

.modal__slide-prev circle,
.modal__slide-next circle {
  stroke: var(--main-color);
}
.modal__slide-prev path,
.modal__slide-next path {
  stroke: var(--main-color);
}

.modal__main,
.modal__thumbs {
  width: 100%;
}

.modal__slide img,
.modal__thumb img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.modal__thumbs {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.modal__thumb {
  width: 20%;
  cursor: pointer;
  opacity: 1;
  height: 80px;
}
.modal__thumb > img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.modal__thumb--active {
  opacity: 1;
}

.js-modal-thumbs .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  padding-top: 8px;
}
.js-modal-thumbs .swiper-slide {
  flex: 0 0 auto;
  /* スライドが折り返さないように */
  width: auto;
}

/* 250312 modal floor */
.modal__floor-item {
  display: flex;
  gap: 16px;
  position: relative;
  padding-top: 24px;
}
.modal__floor-item-link {
  position: relative;
}
.modal__floor-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 68px;
  height: 68px;
  background: url(./img/icon-zoom.svg) no-repeat center center/cover;
  pointer-events: none;
}

.modal__floor-img {
  max-width: 48%;
  height: auto;
  /* アスペクト比を保ったままサイズを調整 */
}

#modal-img-content {
  width: 100%;
  height: auto;
  display: block;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
}

/* 画像拡大モーダル用 */
.modal__img {
  display: none;
  /* 初期状態では非表示 */
}

.modal__img-block {
  max-width: 90vw;
  max-height: 80vh;
  overflow: hidden;
  text-align: center;
}

.modal__img-item {
  position: relative;
}

.modal__img-content {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.modal__img-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  color: #333;
}

/* モーダルを表示する */
.modal.is-open {
  display: block;
}

/* モーダル内で拡大画像を上下中央に配置 */
.js-modal-img {
  display: none;
  /* 初期状態では非表示 */
  position: fixed;
  /* 画面全体に固定 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 親要素の中央に配置 */
  background-color: rgba(0, 0, 0, 0.8);
  /* 背景を暗く */
  width: 100%;
  height: 100%;
  z-index: 9999;
  /* 最前面に表示 */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 拡大画像のスタイル */
.modal__img-item {
  max-width: 90%;
  /* 画像の最大幅を設定 */
  max-height: 90%;
  /* 画像の最大高さを設定 */
  -o-object-fit: contain;
     object-fit: contain;
  /* アスペクト比を保ったまま画像を収める */
}

/* 閉じるボタンのスタイル */
.js-floor-close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  font-size: 18px;
  cursor: pointer;
  z-index: 10000;
  /* 最前面に表示 */
}

/* modal内の */
.modal__floor-ttl {
  color: var(--main-color);
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  position: relative;
  border-left: 1px solid var(--main-color);
  padding-left: 16px;
}

@media (max-width: 1024px) {
  .modal__floor-ttl {
    font-size: 1.8rem;
    padding-left: 2%;
  }
}
@media (max-width: 640px) {
  .modal__floor-ttl {
    font-size: 1.6rem;
  }
}
.mfp-wrap .mfp-content {
  width: 640px;
}

.mfp-wrap .mfp-content .mfp-figure .mfp-img {
  width: 100%;
}

.mfp-close {
  color: #333;
}

.zoom-icon {
  width: 36px;
  height: 36px;
  background: url(./img/_brown/zoom-icon.svg);
  background-size: contain;
  background-position: center center;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.modal__point {
  padding-top: 50px;
}

@media (max-width: 1024px) {
  .modal__point {
    padding-top: 5%;
  }
}
.modal__point-ttl {
  color: var(--main-color);
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  position: relative;
  border-left: 1px solid var(--main-color);
  padding-left: 16px;
  text-align: left;
}

@media (max-width: 1024px) {
  .modal__point-ttl {
    font-size: 1.8rem;
    padding-left: 2%;
  }
}
@media (max-width: 640px) {
  .modal__point-ttl {
    font-size: 1.6rem;
  }
}
.modal__point-list {
  counter-reset: number 0;
  padding-top: 16px;
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 1024px) {
  .modal__point-list {
    padding-top: 2%;
  }
}
.modal__point-text {
	position: relative;
	padding-left: 1.5em;
  color: #444444;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.modal__point-text::before{
	position: absolute;
	left: 0;
  counter-increment: number 1;
  content: counter(number) ".";
}
@media (max-width: 640px) {
  .modal__point-text {
    font-size: 1.4rem;
  }
}
@media (max-width: 1024px) {
  .modal__point-text:not(:last-of-type) {
    padding-bottom: 5%;
  }
}
.modal__access {
  padding-top: 64px;
}
@media (max-width: 1024px) {
  .modal__access {
    padding-top: 6%;
  }
}
.modal__access-ttl {
  color: var(--main-color);
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  position: relative;
  border-left: 1px solid var(--main-color);
  padding-left: 16px;
  text-align: left;
}

@media (max-width: 1024px) {
  .modal__access-ttl {
    font-size: 1.6rem;
  }
}
.modal__access-map {
  padding-top: 16px;
  width: 100%;
  height: 243px;
}

.modal__access-map iframe {
	width: 100%;
	height: 100%;
}
@media (max-width: 1024px) {
  .modal__access-map {
    padding-block: 2%;
  }
}
.modal__access-name {
  color: var(--main-color);
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding-bottom: 16px;
  padding: 16px 0;
}

@media (max-width: 1024px) {
  .modal__access-name {
    font-size: 1.8rem;
    padding: 2% 0;
  }
}
@media (max-width: 640px) {
  .modal__access-name {
    font-size: 1.6rem;
  }
}
.modal__access-info {
  padding-bottom: 48px;
}

.modal__access-text {
  display: flex;
  color: #444444;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
@media (max-width: 640px) {
  .modal__access-text {
    font-size: 1.4rem;
  }
}
.modal__access-text > span {
  border: 1px solid var(--main-color);
  display: inline-block;
  width: 99px;
  text-align: center;
  color: var(--main-color);
  letter-spacing: 0.05em;
  margin-right: 8px;
}
@media (max-width: 640px) {
  .modal__access-text > span {
    width: 79px;
  }
}
.modal__access-text:last-child {
  margin-bottom: 0;
}

.modal__access-wrap-l {
  color: #444444;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media (max-width: 640px) {
  .modal__access-wrap-l {
    font-size: 1.4rem;
  }
}
.modal__access-wrap-l > span {
  border: 1px solid var(--main-color);
  display: inline-block;
  width: 99px;
  text-align: center;
  color: var(--main-color);
  letter-spacing: 0.05em;
  margin-right: 8px;
}
@media (max-width: 640px) {
  .modal__access-wrap-l > span {
    width: 79px;
  }
}

.modal__access-wrap-r {
  color: #444444;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media (max-width: 640px) {
  .modal__access-wrap-r {
    font-size: 1.4rem;
  }
}
.modal__access-wrap-r > small {
  font-family: "Noto Serif JP", serif;
}

.modal__reserve {
  margin: 0 auto;
  max-width: 340px;
  height: 50px;
  flex-shrink: 0;
  background: var(--main-color);
  display: block;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 28px;
}
.modal__reserve::before {
  content: "";
  display: block;
  width: 17px;
  height: 13px;
}
.modal__reserve::after {
  content: "";
  display: block;
  background: url(./img/icon-arrow02.svg);
  width: 30px;
  height: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transform: translate(-50%);
  transition: 0.4s;
}

@media (min-width: 1025px) {
  .modal__reserve:hover {
    transition: 0.4s;
  }
  .modal__reserve:hover::after {
    transform: translate(-50%) translateX(8px);
  }
}
.modal__reserve-text {
  color: #FFF;
  text-align: center;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}

.modal__spec {
  padding-top: 30px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

@media (max-width: 1024px) {
  .modal__spec {
    padding-top: 5%;
  }
}
@media (max-width: 640px) {
  .modal__spec {
    flex-direction: column;
  }
}
.modal__spec-text {
  color: #444444;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.7px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 640px) {
  .modal__spec-text {
    font-size: 1.4rem;
  }
}
.modal__spec-text > span {
  display: inline-block;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  padding: 8px 16px;
}
@media (max-width: 640px) {
  .modal__spec-text > span {
    padding: 2%;
  }
}

.modal__close {
  cursor: pointer;
  color: #fff;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  height: 78px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__close-icon {
  cursor: pointer;
  position: absolute;
  top: 24px;
  right: 24px;
}
@media (max-width: 480px) {
  .modal__close-icon {
    top: 3%;
    right: 5%;
  }
}

@media (max-width: 1024px) {
  .modal__close {
    font-size: 1.6rem;
  }
}
/* 250311 section-promise */
.section-promise {
  padding-block: 64px;
}
.section-promise__slide-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 1024px) {
  .section-promise {
    padding-block: 8%;
  }
}
.section-promise__text {
  color: #444444;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.87;
  letter-spacing: 0.05em;
  padding-top: 40px;
  margin-bottom: 32px;
}
@media (max-width: 640px) {
  .section-promise__text {
    font-size: 1.4rem;
    padding-top: 4%;
    margin-bottom: 4%;
  }
}

.section-promise__slide-item {
  position: relative;
  /* 親要素は基準位置を指定 */
  height: auto;
  /* 親要素の高さを自動調整 */
}

.section-promise__slide-item-ttl {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section-promise__slide-item-ttl span {
  text-align: left;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.05em;
  padding-bottom: 12px;
  position: relative;
  display: block;
}
.section-promise__slide-item-ttl h3 {
  color: var(--main-color);
  text-align: left;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding-bottom: 16px;
  position: relative;
}

@media (max-width: 1024px) {
  .section-promise__slide-item-ttl span {
    font-size: 1.6rem;
  }
}
@media (max-width: 1024px) {
  .section-promise__slide-item-ttl h3 {
    font-size: 1.8rem;
  }
}
.section-promise__slide-item-txt {
  color: #444444;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding-top: 24px;
  border-top: 1px solid #083459;
}

.section-promise__slide-wrap {
  position: relative;
  background: var(--bg-color);
  padding: 40px 24px;
  max-width: 357px;
  height: 332px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .section-promise__slide-wrap {
    padding: 6%;
  }
}
.section-promise .swiper-pagination {
  position: unset;
  padding-top: 55px;
}
.section-promise .swiper-pagination-bullet {
  background: #444444;
}
.section-promise .swiper-pagination-bullet-active {
  background: var(--main-color);
}

@media (max-width: 1024px) {
  .section-promise .swiper-pagination {
    padding-top: 10%;
  }
}
.section-promise__slide-prev {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  z-index: 2;
}
@media (max-width: 480px) {
  .section-promise__slide-prev {
    left: -3%;
  }
}

.section-promise__slide-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  z-index: 2;
}
@media (max-width: 480px) {
  .section-promise__slide-next {
    right: -3%;
  }
}

.section-promise__slide-prev svg circle,
.section-promise__slide-next svg circle {
  stroke: var(--main-color);
}
.section-promise__slide-prev svg path,
.section-promise__slide-next svg path {
  stroke: var(--main-color);
}

.section-promise__subttl {
  display: block;
  width: 100%;
  text-align: center;
  color: #F2F2F2;
  font-family: "Noto Sans JP";
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 100% */
  letter-spacing: 0.8px;
}

@media (max-width: 1024px) {
  .section-promise__subttl {
    font-size: 1.6rem;
  }
}
/* 250311 Phone */
.phone {
  padding-top: 64px;
  display: block;
}

@media (max-width: 1024px) {
  .phone {
    padding-top: 6%;
  }
}
.phone__wrap {
  background: url(./img/_brown/main-cta_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  /* background: #846F4F; */
  padding-block: 32px;
  text-align: center;
  transition: 0.4s;
}
@media screen and (min-width: 1025px) {
  .phone__wrap:hover {
    opacity: 0.6;
  }
}

@media (max-width: 1024px) {
  .phone__wrap {
    padding-block: 6%;
  }
}
.phone__ttl {
  position: relative;
  width: 342px;
  color: #fff;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  padding-bottom: 10px;
  margin: 0 auto;
  border-bottom: 1px solid #fff;
}
.phone__ttl::before {
  content: "";
  display: inline-block;
  margin-right: 8px;
  background: url(./img/icon-phone.svg) no-repeat center center/cover;
  width: 20px;
  height: 20px;
}

@media (max-width: 1024px) {
  .phone__ttl {
    font-size: 1.6rem;
    padding-bottom: 5%;
  }
}
.phone__num {
  color: #fff;
  font-size: 4.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .phone__num {
    font-size: 2.6rem;
    padding-bottom: 5%;
  }
}
.phone__time {
  display: block;
  color: #fff;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}

/* 250311 Form */
/* 250314 contact */
.section-contact {
  margin-top: 96px;
  padding: 100px 0 96px;
  background-color: var(--bg-color);
}

@media (max-width: 1024px) {
  .section-contact {
    margin-top: 8%;
    padding: 10% 0;
  }
}
.item-req {
  background: var(--main-color);
  color: #fff;
  text-align: center;
  padding: 5px 21px;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.item-noreq {
  background: #B4B4B4;
  color: #fff;
  text-align: center;
  padding: 5px 21px;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.wpcf7c-elm-step1 {
  background: var(--main-color);
  width: 80px;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  border: none;
  color: #FFF;
}

.reserve-notice {
  color: #444444;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.71;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

form [type=submit] {
  background: var(--main-color);
  max-width: 400px;
  display: block;
  width: 100%;
  text-align: center;
  border: none;
  padding: 16px;
  margin: auto;
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  opacity: 1;
  transition: 0.3s;
  color: #fff;
}
form [type=submit]:hover {
  opacity: 0.5;
  transition: 0.3s;
}

.privacy-box {
  color: #444444;
  background: #fff;
  border: none;
  height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px;
}

/* 250312 Nav */
.hd.fixed .hd-toggle span {
  background: #333;
}

@media (min-width: 1025px) {
  .hd-nav {
    max-width: 446px;
    margin: 0 auto;
    padding-block: 30px;
  }
  .hd-nav-img {
    padding-bottom: 32px;
    margin: 0 auto;
    display: block;
  }
}
@media (max-width: 1024px) {
  .hd-nav-img {
    display: none;
  }
}
.hd-nav__wrap {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--main-color);
  border-bottom: 1px solid var(--main-color);
  padding: 24px 0 24px 30px;
}

@media (max-width: 1024px) {
  .hd-nav__wrap {
    flex-direction: column;
    border-top: unset;
    border-bottom: unset;
  }
}
/* 250312 section-about */
.section-about {
  padding-top: 64px;
}

@media (max-width: 1024px) {
  .section-about {
    padding-top: 8%;
  }
}
.section-about__item {
  position: relative;
  border-bottom: 1px solid var(--main-color);
  margin-left: -24px;
  margin-right: -24px;
}
.section-about__item:first-child {
  border-top: 1px solid var(--main-color);
}

.section-about__items-wrap {
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  /* 縦並びにする場合 */
}

@media (max-width: 1024px) {
  .section-about__items-wrap {
    padding-top: 8%;
  }
}
.section-about__content {
  padding: 0 24px;
  overflow: hidden;
  max-height: 0;
  padding-bottom: 0;
  transition: max-height 0.5s ease, padding-bottom 0.5s ease;
}

.section-about__btn {
  margin-left: 24px;
  margin-right: 24px;
  cursor: pointer;
  padding: 24px 20px 24px 0;
}
.section-about__btn.active + .section-about__content {
  max-height: 507px;
  /* ここは適当な大きさに調整 */
  padding-bottom: 24px;
}

@media (max-width: 1024px) {
  .section-about__btn.active + .section-about__content {
    padding-bottom: 5%;
  }
}
@media (max-width: 1024px) {
  .section-about__btn {
    padding: 5% 5% 5% 0;
  }
}
.section-about__btn-title {
  color: var(--main-color);
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  position: relative;
}
.section-about__btn-title::before, .section-about__btn-title::after {
  content: "";
  position: absolute;
  background: var(--main-color);
  right: 0;
  transition: opacity 0.3s ease;
}
.section-about__btn-title::before {
  width: 24px;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
}
.section-about__btn-title::after {
  width: 24px;
  height: 1px;
  top: 50%;
  transform: rotate(90deg);
  transition: 0.3s;
}
.section-about__btn-title.active::after {
  transform: rotate(180deg);
  transition: 0.3s;
}

@media (max-width: 1024px) {
  .section-about__btn-title {
    font-size: 1.8rem;
    padding-right: 5%;
  }
}
@media (max-width: 640px) {
  .section-about__btn-title {
    font-size: 1.6rem;
  }
}
.section-about__description {
  padding-block: 24px 32px;
  color: #444444;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .section-about__description {
    padding-block: 5%;
    font-size: 1.4rem;
  }
}
/* 250312 section-company */
.section-company {
  padding-block: 80px 56px;
}

@media (max-width: 1024px) {
  .section-company {
    padding-block: 8%;
  }
}
.section-company__description {
  padding-top: 32px;
  color: #444444;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .section-company__description {
    padding-top: 5%;
  }
}
@media (max-width: 640px) {
  .section-company__description {
    font-size: 1.3rem;
  }
}
.section-company__item {
  padding-top: 16px;
}

@media (max-width: 1024px) {
  .section-company__item {
    padding-top: 5%;
  }
}
.section-company__item-list {
  display: flex;
  justify-content: space-between;
  padding-block: 16px;
  border-bottom: 1px solid var(--main-color);
}
.section-company__item-list:first-child {
  border-top: 1px solid var(--main-color);
}

@media (max-width: 1024px) {
  .section-company__item-list {
    padding-block: 3%;
  }
}
@media (max-width: 640px) {
  .section-company__item-list {
    padding-block: 2%;
  }
}
.section-company__item-list-item {
  width: 130px;
  color: var(--main-color);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 640px) {
  .section-company__item-list-item {
    font-size: 1.4rem;
  }
}

.section-company__item-list-value {
  width: calc(100% - 120px);
  color: #444444;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 640px) {
  .section-company__item-list-value {
    font-size: 1.4rem;
    width: calc(100% - 110px);
  }
}
.section-company__item-list-value > small {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  display: inline-block;
}

/* 250313 footer */
.footer {
  background: var(--bg-color);
  color: #FFF;
  margin-top: 96px;
  padding-block: 64px 114px;
  position: relative;
}
.footer .pagetop-link {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 24px;
  bottom: -80px;
  background: url(./img/_brown/top.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .footer .pagetop-link {
    bottom: 0%;
  }
}

@media (max-width: 1024px) {
  .footer {
    margin-top: 8%;
    padding-block: 5% 22%;
  }
}
.footer__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 640px) {
  .footer__item {
    gap: 10px;
  }
}

.footer__item-copy {
  color: var(--main-color);
  /* color: #444444; */
  text-align: center;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: 0.05em;
}

.footer__item-logo {
  width: 197px;
  height: 44px;
}

.footer__item-logo-img {
  width: 100%;
  display: block;
}

.footer__items-nav {
  padding-block: 4%;
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  display: flex !important;
  justify-content: space-between;
  border-top: 1px solid var(--main-color);
  border-bottom: 1px solid var(--main-color);
}

.footer__items-nav-list {
  width: 48%;
  color: #444444;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-block: 16px;
  padding-left: 30px;
  transition: 0.4s;
}
@media screen and (min-width: 1025px) {
  .footer__items-nav-list:hover {
    color: var(--main-color);
  }
}
@media (max-width: 1024px) {
  .footer__items-nav-list {
    font-size: 1.4rem;
    padding-block: 3%;
  }
}
@media (max-width: 640px) {
  .footer__items-nav-list {
    padding-left: 3%;
  }
}

/* 250312 main-cta */
.main-cta {
/*   width: 480px; */
  width:100%;
  /* background: #083459; */
  background: url(./img/_brown/main-cta_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
/*   height: 460px; */
height:auto;
  position: relative;
  overflow: hidden;
  margin: 0;
  transition: 0.3s;
}
@media (max-width: 480px) {
/*   .main-cta {
    width: 100%;
    background-size: contain;
    height: 97vw;
  } */
}
@media(min-width: 1025px) {
  .main-cta:hover {
    opacity: 0.7;
    transition: 0.3s;
  }
}
.main-cta > a {
/*   position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
	display:block;
/* 	padding: 34px 0 40px 0; */
	padding: 32px 64px;
}
@media (max-width: 1024px) {
/*   .main-cta > a {
    top: 47vw;
  } */
	.main-cta > a {
        padding: 4% 6%;
}
}
@media (max-width: 480px) {
/*   .main-cta > a {
    top: 47vw;
  } */
/* 	.main-cta > a {
	padding:6%;
} */
}
.main-cta h2 {
/*   padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  margin: 0 auto;
  margin-bottom: 32px;
  color: #FFF;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  display: block;
  width: 350px; */
	margin: 0 auto;
    max-width: 350px;
    width: 100%;
    color: #FFF;
    text-align: center;
    font-family: "Zen Kaku Gothic New";
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 1px;
    /* border-top: 1px solid #FFF; */
    border-bottom: 1px solid #FFF;
    padding-block: 8px;
}
@media (max-width: 1024px) {
	.main-cta h2 {
		font-size: 1.6rem;
	}
}
/* @media (max-width: 480px) {
  .main-cta h2 {
    width: 300px;
  }
} */
.main-cta .main-cta__inner {
  width: 100%;
/*     max-width: 350px; */
  margin: 0 auto;
}
.main-cta .main-cta__inner img {
/*   width: 250px; */
/* width:350px;*/
  display: block;
  margin: 0 auto; 
width:322px;
padding: 40px 0 20px 0;
    text-align: center;
}
.main-cta .main-cta__inner .main-cta__item-img02 {
	padding:0;
    padding-top: 32px;
	margin-top:-20px;
}
@media (max-width: 1024px) {
.main-cta .main-cta__inner img {
	padding-block: 4% 2%;
}
}
@media (max-width: 480px) {
  .main-cta .main-cta__inner img {
/*     width: 200px; */
/* width:280px; */
  }
}
@media (max-width: 400px) {
/*   .main-cta .main-cta__inner img {
    width: 180px;
  } */
}
.main-cta .main-cta-btn {
/*   width: 340px;
  height: 50px;
  flex-shrink: 0;
  background: #fff;
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  transition: 0.3s; */
/* 	margin-top: 24px; */
    max-width: 395px;
    height: 48px;
    display: block;
    border-radius: 64px;
    /* border: 2px solid var(--main-color); */
    box-sizing: border-box;
    background: #fff;
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.3s;
	margin:0 auto;
}
@media (max-width: 480px) {
/*   .main-cta .main-cta-btn {
    width: 300px;
    height: 45px;
  } */
}
/* .main-cta .main-cta-btn::after {
  content: "";
  background: url(./img/arrow-right.svg);
  background-position: center center;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  transition: 0.4s;
} */
.main-cta .main-cta-btn span {
/*   text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  transition: 0.3s; */
	    text-align: center;
    font-family: "Zen Kaku Gothic New";
    font-size: 2rem;
    font-weight: 500;
    line-height: 2rem;
    letter-spacing: 0.05em;
}
@media (max-width: 1024px) {
	.main-cta .main-cta-btn span {
		font-size: 1.8rem;
	}
}
.main-cta.--cta02 {
  /* background:#083459; */
  background: url(./img/_brown/main-cta_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
/* @media (max-width: 480px) {
  .main-cta.--cta02 {
    background-size: contain;
    height: 91vw;
  }
} */
/* .main-cta.--cta02 .main-cta__inner {
  width: 437px;
}
@media (max-width: 480px) {
  .main-cta.--cta02 .main-cta__inner {
    width: 370px;
  }
}
@media (max-width: 400px) {
  .main-cta.--cta02 .main-cta__inner {
    width: 330px;
  }
} */
/* .main-cta.--cta02 > a{
	    padding: 32px 40px;
} */
/* @media (max-width: 480px) {
.main-cta.--cta02 > a{
        padding: 6%;
    }
} */
.main-cta.--cta02 .main-cta__inner img {
/*   width: calc(100% - 48px); */
	width:100%;
margin:0 auto;
}
.main-cta.--cta02 .main-cta__inner .main-cta__item-img02 {
    padding: 32px 0 22px 0;
	margin-top:-20px;
}
@media (max-width: 1024px) {
	.main-cta.--cta02 .main-cta__inner .main-cta__item-img02 {
    padding: 32px 0 2% 0;
	margin-top:-2%;
}
}
.main-cta__item-btn-icon {
    position: absolute;
    right: 28px;
    transition: 0.3s;
}
	.main-cta .main-cta__item-btn-icon path{
transition: 0.3s;
    stroke: var(--main-color);
	}

@media (min-width: 1025px) {
  .main-cta .main-cta-btn {
    transition: 0.3s;
  }
/*   .main-cta .main-cta-btn:hover::after {
    transform: translateY(-50%) translateX(8px);
  } */
	
	.main-cta:hover .main-cta-btn{
        /* background: #083459;
        border: 2px solid #fff;
        color: #fff;
        transition: 0.3s; */
    }
	.main-cta:hover .main-cta__item-btn-icon path{
		/* stroke:#fff;
        transition: 0.3s; */
	}
}
.main-cta__item {
  padding: 24px;
}

@media (max-width: 1024px) {
  .main-cta__item {
    padding: 5%;
  }
}
.main-cta__item--btn {
  margin-top: 24px;
  max-width: 395px;
  height: 50px;
  flex-shrink: 0;
  display: block;
  border-radius: 40px;
  border: 2px solid #BFA06B;
  box-sizing: border-box;
  background: #BFA06B;
  color: #FFF;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 100% */
  letter-spacing: 1.44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 1024px) {
  .main-cta__item--btn {
    margin-top: 5%;
    font-size: 1.6rem;
  }
}
.main-cta__item--btn-icon {
  position: absolute;
  right: 28px;
}

.main-cta__item--img-flow {
  padding-top: 32px;
}

@media (max-width: 1024px) {
  .main-cta__item--img-flow {
    padding-top: 3%;
  }
}
.main-cta__item--term {
  background: #FFF;
  border-radius: 15px;
  margin-top: 24px;
  width: 100%;
  height: 149px;
  flex-shrink: 0;
  overflow-y: scroll;
  padding: 16px;
}

@media (max-width: 1024px) {
  .main-cta__item--term {
    margin-top: 5%;
    padding: 5%;
  }
}
.main-cta__item--term-text {
  color: #3A3A3A;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.57;
  /* 157.143% */
  letter-spacing: 0.7px;
}

@media (min-width: 1025px) {
  .main-cta--main-link:hover .main-cta__item--btn {
    background: #FFF;
    border: 2px solid #BFA06B;
    transition: 0.3s;
  }
  .main-cta--main-link:hover .main-cta__item--btn-text {
    color: #BFA06B;
    transition: 0.3s;
  }
  .main-cta--main-link:hover .main-cta__item--btn-icon path {
    fill: #BFA06B;
    transition: 0.3s;
  }
}
/* hd-sp */
.hd__sp {
  display: none;
  position: relative;
  overflow: visible;
}

@media (max-width: 1024px) {
  .hd__sp {
    display: block;
  }
  .hd__sp-wrap {
    padding-inline: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 480px;
    height: 56px;
    flex-shrink: 0;
    background: #fff;
  }
  .hd__sp-toggle {
    position: relative;
    z-index: 9999;
    width: 40px;
     height: 40px;
        position: relative;
        z-index: 9999;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
  }
  .hd__sp-logo {
    width: 126px;
  }
  .hd__sp-item {
    position: absolute;
    width: 100%;
    /* height: 100vh; */
    height: calc(100vh - var(--header-height));
    /* background: #EDF4F9; */
    background: var(--sp-nav-bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
  }
  .hd__sp-item-logo {
    width: 300px;
    padding-bottom: 120px;
  }
  .hd__sp-item.is-open {
    opacity: 1;
    visibility: visible;
    /* padding: 0; */
    padding-block: 0 var(--cta-height);
    padding-inline: 0;
  }
  .hd__sp-item.no-cta {
    /* --cta-height: 0; */
  }
  .hd__sp-toggle-img {
    display: block;
  }
  .hd__sp--close-img {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 999;
    /* 一番上に表示 */
  }
  .hd__sp-item.is-open .hd__sp-toggle-img {
    display: none;
  }
  .hd__sp-item.is-open .hd__sp-close-img {
    display: block;
  }
}
/* 250314 アコーディオン */
.js-property {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.js-property.is-open {
  display: block;
  opacity: 1;
  max-height: 10000px;
  transition: 0.3s;
}

.js-property-heading {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}



/* ****************************************************
*******************************************************

form

**************************************************** */
.contact-tab__wrap {
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  gap: 16px;
  margin: 40px 0 32px 0;
}

.contact-tab {
  width: calc(50% - 8px);
  opacity: 0.4;
  cursor: pointer;
  transition: 0.3s;
}

@media (min-width: 1025px) {
  .contact-tab:hover {
    opacity: 1;
    transition: 0.3s;
  }
}
.contact-tab.active {
  opacity: 1;
}

.contact-form {
  padding-bottom: 56px;
}

#form-cnt .tab-area {
  display: none;
  margin: 0 auto;
}

#form-cnt .tab-area.active {
  display: block;
}

#form-cnt .tab-area .form-msg {
  max-width: 252px;
  margin: 0 auto 40px auto;
  position: relative;
}

#form-cnt .tab-area .form-msg::before,
#form-cnt .tab-area .form-msg::after {
  content: "";
  display: block;
  width: 2px;
  height: 56px;
  background: var(--main-color);
  opacity: 0.3;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

#form-cnt .tab-area .form-msg::before {
  left: -28px;
  transform: rotate(-20deg);
}

#form-cnt .tab-area .form-msg::after {
  right: -28px;
  transform: rotate(20deg);
}

#form-cnt .tab-area .form-msg__txt {
  font-size: 1.6rem;
  line-height: 2em;
  font-family: "Zen Kaku Gothic New";
  text-align: center;
  font-weight: 500;
}

.an-wrap input[type=checkbox] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

form [type=submit] {
  background: var(--main-color);
  display: block;
  width: 100%;
  text-align: center;
  border: none;
  padding: 16px;
  margin: auto;
  margin-top: 0px;
  position: relative;
  font-size: 18px;
  opacity: 1;
  transition: 0.3s;
  color: #fff;
}

form [type=submit]:hover {
  opacity: 0.5;
  transition: 0.3s;
}

/* 250319 */
.privacy-box h3 {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.privacy-box h3:first-of-type {
  margin-bottom: 16px;
}

.wpcf7-list-item {
  margin: 0 0 1em 0;
}

form {
  overflow: hidden;
}

form ul {
  display: block;
  margin-bottom: 32px;
}
form ul:first-child {
  margin-top: 0;
}

.item-notice {
  width: 100%;
  margin-right: 0;
  margin-left: auto;
  margin-top: 13px;
  line-height: 1.5;
  font-size: 14px !important;
}

.item-notice strong {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 8px;
  display: block;
}

.item-notice p {
  font-size: 14px;
}

form ul li:last-of-type {
  width: 100%;
}

form ul .item-name {
  color: #2C2928;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row-reverse;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  form ul .item-name {
    font-size: 14px;
  }
}
form ul li:last-of-type .item-form {
  width: 100%;
  display: block;
}

form ul li:last-of-type .item-form span {
  width: 100%;
  display: block;
}

form ul li:last-of-type input {
  width: 100%;
  display: block;
}

form ul li:last-of-type input,
form ul li:last-of-type textarea,
form ul li:last-of-type select {
  border: none;
  padding: 8px;
  font-size: 16px;
  letter-spacing: normal;
  box-sizing: border-box;
  background: #fff;
}

.wpcf7c-elm-step1 {
  background: var(--main-color);
  color: #fff;
  border: unset;
}

.section-form__check1 {
  text-align: center;
  font-size: 14px;
}

.contact__form ul.form-tab button.active {
  color: #186a68;
  border-top: 1px solid #186a68;
  border-bottom: 1px solid #186a68;
}

.submit_btn {
  display: block;
  width: 100%;
  color: #000;
  text-align: center;
  border-radius: 100px;
  border: none;
  margin: auto;
  /* border: 1px solid #216724; */
  position: relative;
}

.submit_btn:hover {
  /* border: 1px solid rgba(108, 142, 120, 0.5); */
}

.section-form__check {
  text-align: center;
  margin-top: 32px;
  margin-bottom: 48px;
}

.section-form__check span {
  background: none;
}

.submit_btn:after {
  position: absolute;
  content: "";
  width: 32px;
  height: 6px;
  top: 50%;
  transform: translateY(-48%);
  right: 24px;
  size: cover !important;
  position: center center !important;
}

.wpcf7-spinner {
  display: none !important;
}

li.item-form.itemform_add_search {
  display: flex;
  justify-content: space-between;
  display: flex;
  justify-content: space-between;
}

li.item-form.itemform_add_search span {
  width: calc(100% - 140px);
}

.form-caption {
  margin-bottom: 120px;
}

.form-caption p {
  font-size: 16px;
  text-align: center;
}

.section-form-privacy__cnt {
  height: 180px;
  overflow-y: scroll;
  padding: 18px;
  margin-bottom: 32px;
}

.section-form-privacy__cnt h3 {
  font-size: 16px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 6px;
  margin-bottom: 12px;
  margin-top: 32px;
}

.section-form-privacy__cnt h3:first-of-type {
  margin-top: 0;
}

.section-form-privacy__cnt p {
  font-size: 14px;
}

.formError {
  z-index: 20 !important;
}

.xdsoft_datetimepicker {
  z-index: 21 !important;
}

@media screen and (max-width: 640px) {
  form ul {
    /* margin-bottom:32px; */
    margin-top: 5%;
    margin-bottom: 3%;
    flex-wrap: wrap;
  }
  form ul li:first-of-type,
  form ul li:last-of-type {
    width: 100%;
  }
  form ul li:first-of-type {
    margin-bottom: 16px;
  }
  form ul li:last-of-type input,
  form ul li:last-of-type textarea {
    padding: 16px;
    font-size: 14px;
  }
  form [type=submit] {
    font-size: 18px;
  }
  .form-caption {
    margin-bottom: 32px;
  }
  .form-caption p {
    font-size: 14px;
    text-align: left;
  }
  .contact__form ul.form-tab {
    margin-bottom: 40px;
  }
  .item-notice,
  li.item-form.itemform_add_search span {
    width: 100%;
  }
  .section-form__check {
    margin-bottom: 5%;
  }
}
.wpcf7-form-control {
  border: none;
  padding: 8px;
  font-size: 16px;
  letter-spacing: normal;
  box-sizing: border-box;
  width: 100%;
}

.wpcf7-form-control.wpcf7-radio label {
  display: flex;
  gap: 12px;
  cursor: pointer;
  align-items: center;
  margin-bottom: 8px;
}

.wpcf7-form-control.wpcf7-checkbox label {
  display: flex;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 8px;
}

.wpcf7-form-control.wpcf7-radio label input {
  width: 24px;
  height: 24px;
}

.wpcf7-form-control.wpcf7-radio label .wpcf7-list-item-label {
  width: calc(100% - 36px);
}

.form__notice {
  font-size: 14px;
  margin-top: 16px;
}

.privacy-policy-scroll {
  background: #FFF;
  padding: 20px 16px;
  max-height: 200px;
  height: 100%;
  margin-top: 24px;
  overflow: hidden scroll;
}

.privacy-policy-scroll::-webkit-scrollbar {
  width: 8px;
}

.privacy-policy-scroll::-webkit-scrollbar-thumb {
  background: #A7A7A7;
  border-radius: 10px;
}

.privacy-policy-scroll::-webkit-scrollbar-track {
  background: #FFF;
}

.privacy-policy-scroll .simplebar-track {
  width: 0.3rem;
}

.privacy-policy-scroll .simplebar-scrollbar {
  width: 0.3rem;
}

.privacy-policy-scroll .simplebar-scrollbar::before {
  width: 0.3rem;
  color: #fff;
  opacity: 1;
}

.privacy-policy-scroll p {
  font-size: 14px;
  line-height: 1.71;
}

@media (max-width: 640px) {
  .form__notice {
    font-size: 12px;
    margin-top: 2%;
  }
}
.item-form.itemform_add_search {
  display: flex !important;
  gap: 16px;
}

.item-form.itemform_add_search .wpcf7-form-control-wrap {
  width: calc(100% - 96px);
}

span.wpcf7-form-control.wpcf7-radio {
  background: unset;
}

.section-form__check1,
.section-form__check2 {
  text-align: center;
}

span.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required {
  background: none;
}

span.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required .wpcf7-list-item-label {
  font-size: 14px;
  line-height: 1.5;
}

span.wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wpcf7-form-control-wrap[data-name=radio-plan] span.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control.wpcf7-radio label .wpcf7-list-item-label {
  width: auto;
}

.wpcf7-checkbox .wpcf7-list-item input {
  display: inline-block;
  vertical-align: bottom;
}

.wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
  display: inline-block;
  width: auto;
}

/* チェック時のスタイル */
.wpcf7-list-item {
  margin: 0;
  margin: 0 !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.wpcf7-list-item input[type=radio] {
  width: 20px !important;
  height: 20px !important;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.section-form__check1 .wpcf7-list-item,
.section-form__check2 .wpcf7-list-item {
  justify-content: center;
}

@media (max-width: 640px) {
  .contact-tab__wrap {
    padding: 0;
    gap: 16px;
    margin: 4% 0;
  }
}
/* 250314 アコーディオン */
.js-property {
  display: none;
  opacity: 0;
  transition: opacity 0.3s linear;
}

.js-property.is-open {
  display: block;
  opacity: 1;
  max-height: 10000px;
  transition: 0.3s;
}

.js-property-heading {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media (max-width: 1024px) {
  .anchor-blank {
    padding-top: 80px;
    margin-top: -80px;
  }
}
#section-concept,
#section-contact,
#section-modelhouse,
#about,
#promise,
#company {
  scroll-margin-top: 80px;
}/*# sourceMappingURL=page-client.css.map */



/* 20250515 一時追加*/
.section-property__heading::after{
	display:none;
}
.section-property__heading.js-property-heading.active{
	pointer-events:none;
}

/* 251204 */
.modal__floor-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
  padding-top: 24px;
}

.modal__floor-item-link {
  position: relative;
  width: 100%;
}

.hd-cta {
  padding: 24px 32px 32px;
}

.hd-cta .hd-cta__inner img,
.main-cta .main-cta__inner img {
  max-width: 288px;
}

.main-cta h2 {
  font-size: 1.6rem;
  border-top: 1px solid #fff;
}

.main-cta.--cta02 h2 {
  font-size: 2rem;
}

.main-cta.--cta02 .main-cta__inner img {
  max-width: 270px;
}

.main-cta.--cta02 .main-cta__inner .main-cta__item-img02 {
  padding: 0 0 22px;
  margin-top: 0;
}

.section-contact {
  padding-top: 0;
}

.footer {
  margin-top: 0;
}

/* 260324 */
/* ボタンになる1番目のdiv */
.js-company-toggle {
  cursor: pointer;
  position: relative;
}

.js-company-toggle::after,
.js-company-toggle::before {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  left: auto;
  background: #444444;
  transition: opacity 0.1s ease-in-out;
}

/* 縦線（+の縦） */
.js-company-toggle::before {
  width: 1px;
  height: 15px;
  transform: translate(-7px, -50%);
}

/* 横線（+の横） */
.js-company-toggle::after {
  width: 15px;
  height: 1px;
  transform: translateY(-50%);
}

/* 開閉対象のdiv（初期状態は閉じている） */
.js-company-accordion {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

/* 開いた状態 */
.js-company-accordion.is-open {
  max-height: 9999px;
}

/* 開いた状態：縦線を消す */
.js-company-toggle.is-open::before {
  opacity: 0;
}

.js-company-accordion > :first-child {
  border-top: none !important;
}