@charset "UTF-8";
/******************************************************************
変数
******************************************************************/
:root {
  --scrollbar: 0;
  --c-note: #6D6D72;
  --c-border: #CCCCCC;
  --c-white: #FFF;
  --c-black: #000;
  --c-gray: #F7F7F7;
  --c-gray-dark: #808080;
  --c-accent: #7F0019;
  --gutter-pc: 20px;
  --gutter-sp: calc(30/ 375 * 100vw);
}

/******************************************************************
mixins
******************************************************************/
/******************************************************************
ウィンドウ横幅フル
******************************************************************/
@media screen and (max-width: 1000px) {
  .u-width-100vw-tb {
    width: 100vw !important;
    margin-left: calc(50% - 50vw - var(--scrollbar)) !important;
    margin-right: calc(50% - 50vw - var(--scrollbar)) !important;
  }
}
@media screen and (max-width: 768px) {
  .u-width-100vw-sp {
    width: 100vw !important;
    margin-left: calc(50% - 50vw - var(--scrollbar)) !important;
    margin-right: calc(50% - 50vw - var(--scrollbar)) !important;
  }
}
/******************************************************************
コンテナー
******************************************************************/
.l-container {
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter-pc);
  padding-right: var(--gutter-pc);
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .l-container {
    padding-left: var(--gutter-sp);
    padding-right: var(--gutter-sp);
  }
}

.l-container.--md {
  max-width: 760px;
}

.l-container.--lg {
  max-width: 1000px;
}

@media screen and (max-width: 768px) {
  .l-container.--sp-no-gutter {
    padding: 0;
  }
}

/******************************************************************
セクションのドット
******************************************************************/
.l-section-dotted {
  position: relative;
}
.l-section-dotted::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100% - 60px, 1000px);
  height: 1px;
  background: url(../img/deco_dotted-border.svg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .l-section-dotted::before {
    background-image: url(../img/deco_dotted-border_sp.svg);
  }
}

/******************************************************************
コンポーネント - リンク
******************************************************************/
.c-link-box {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1.8571428571;
  font-weight: 600;
  border: none;
  background: var(--c-accent);
  border-radius: 5px;
  color: var(--c-white);
  padding: 15px;
}

.c-link-list {
  display: flex;
  align-items: center;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  background: var(--c-white);
  font-weight: 700;
  padding: 15px;
}

.c-link-list.--no-img {
  justify-content: center;
  font-size: 15px;
  line-height: 2;
  min-height: 85px;
}

.c-link-list.--img {
  justify-content: flex-start;
  font-size: 18px;
  line-height: 1.6666666667;
}
.c-link-list.--img .c-link-list__img {
  max-width: 125px;
  margin: 0 !important;
}
.c-link-list.--img .c-link-list__txt {
  margin-left: 15px;
}

.c-link-list.--arrow {
  position: relative;
}
.c-link-list.--arrow::after {
  content: "";
  position: absolute;
  right: 20px;
}

.c-text-link {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.8571428571;
  font-weight: 600;
}
.c-text-link::after {
  content: "";
  width: 10.5px;
  height: 10.5px;
  margin-left: 3px;
  border-top: 1px solid var(--c-black);
  border-right: 1px solid var(--c-black);
}

/******************************************************************
コンポーネント - 矢印
******************************************************************/
.c-span-arrow::after, .c-link-list.--arrow::after, .c-text-link::after {
  width: 11.61px;
  height: 11.61px;
  margin-left: 7px;
  border-top: 2px solid var(--c-black);
  border-right: 2px solid var(--c-black);
  transform: rotate(45deg);
}

.c-span-arrow {
  display: flex;
  align-items: center;
}
.c-span-arrow::after {
  content: "";
  display: block;
}

.c-span-arrow.--white::after {
  border-top: 1px solid var(--c-white);
  border-right: 1px solid var(--c-white);
  margin-left: 2px;
}

/******************************************************************
ベース設定
******************************************************************/
.p-event {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-event {
    margin-top: 60px;
  }
}

.p-event * img {
  vertical-align: bottom;
  height: auto;
}

.p-event * section {
  margin: revert !important;
}
@media screen and (max-width: 768px) {
  .p-event * section {
    width: 100%;
  }
}

/******************************************************************
メインビジュアル
******************************************************************/
.p-event-mv__img {
  width: 100%;
}

/******************************************************************
リノベーションは性能で決まる
******************************************************************/
.p-about {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .p-about {
    padding: 50px 0 60px;
  }
}

.p-about-head__title {
  max-width: 427px;
}
@media screen and (max-width: 768px) {
  .p-about-head__title {
    max-width: 285px;
  }
}

.p-about-head__txt {
  font-size: 16px;
  line-height: 1.875;
  font-weight: 300;
  margin-top: 30px;
}
@media screen and (max-width: 1000px) {
  .p-about-head__txt {
    font-size: 14px;
    line-height: 1.8571428571;
  }
}
.p-about-head__txt p:not(:first-child) {
  margin-top: 15px;
}

.p-about-head__note {
  font-size: 11px !important;
  line-height: 1.8181818182;
  color: var(--c-note);
  font-weight: 300;
  margin-top: 30px;
}

.p-about__body {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-about__body {
    margin-top: 50px;
  }
}

.p-about-campaign__title {
  max-width: 237px;
  margin: auto;
}

.p-about-campaign__box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-about-campaign__box {
    flex-direction: column;
    margin-top: 17px;
  }
}

.p-about-campaign__img {
  max-width: 300px;
  margin: 0 !important;
}
@media screen and (max-width: 768px) {
  .p-about-campaign__img {
    max-width: 247px;
    margin-left: 47px !important;
  }
}

.p-about-campaign__info {
  width: min(100%, 371px);
  margin-left: 27px;
}
@media screen and (max-width: 768px) {
  .p-about-campaign__info {
    margin-left: 0;
    margin-top: 25px;
  }
}

.p-about-campaign__txt {
  font-size: 14px;
  line-height: 1.8571428571;
  font-weight: 600;
}

.p-about-campaign__note {
  font-size: 11px !important;
  line-height: 1.8181818182;
  font-weight: 300;
  margin-top: 10px;
}

.p-about-campaign__link {
  margin: 40px auto 0;
  width: min(100%, 262px);
}

/******************************************************************
年間の電気代を削減
******************************************************************/
.p-reduction {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .p-reduction {
    padding: 60px 0 50px;
  }
}

.p-reduction-head__title {
  max-width: 241px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .p-reduction-head__title {
    max-width: 166px;
  }
}

.p-reduction__body {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .p-reduction__body {
    margin-top: 50px;
  }
}

.p-reduction-reno {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .p-reduction-reno {
    flex-direction: column;
  }
}

.p-reduction-reno__img {
  max-width: 490px;
  margin: 0 !important;
}

.p-reduction-reno__info {
  width: min(100%, 371px);
  margin-left: 19px;
}
@media screen and (max-width: 768px) {
  .p-reduction-reno__info {
    margin-left: 0;
    margin-top: 50px;
  }
}

.p-reduction-reno__txt {
  font-size: 16px;
  line-height: 1.875;
  font-weight: 600;
}

.p-reduction-reno__note {
  font-size: 13px;
  line-height: 1.7692307692;
  font-weight: 300;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-reduction-reno__note {
    font-size: 11px !important;
    line-height: 1.8181818182;
  }
}

/******************************************************************
新築基準を超える断熱性能
******************************************************************/
.p-insulation {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .p-insulation {
    padding: 60px 0 50px;
  }
}

.p-insulation-head__title {
  max-width: 323px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .p-insulation-head__title {
    max-width: 223px;
  }
}

.p-insulation__body {
  margin-top: 116px;
}
@media screen and (max-width: 768px) {
  .p-insulation__body {
    margin-top: 50px;
  }
}

.p-insulation-item:not(:first-child) {
  margin-top: 50px !important;
}
@media screen and (max-width: 768px) {
  .p-insulation-item:not(:first-child) {
    margin-top: 20px !important;
  }
}

.p-insulation-item__title {
  font-size: 18px;
  line-height: 1.7777777778;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-insulation-item__title {
    font-size: 14px;
    line-height: 1.8571428571;
  }
}

.p-insulation-item__img {
  max-width: 490px;
}

.p-insulation-item__img.--num1 {
  margin: 43px auto 0 !important;
}
@media screen and (max-width: 768px) {
  .p-insulation-item__img.--num1 {
    margin-top: 20px !important;
  }
}

.p-insulation-item__img.--num2 {
  margin: 20px auto 0 !important;
}

.p-insulation__foot-txt {
  width: min(100%, 566px);
  margin: 50px auto 0;
  font-size: 16px;
  line-height: 1.875;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .p-insulation__foot-txt {
    line-height: 1.8571428571;
  }
}
.p-insulation__foot-txt p:not(:first-child) {
  margin-top: 15px;
}

/******************************************************************
リノベーションで断熱性能を大幅向上
******************************************************************/
.p-reno {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .p-reno {
    padding: 50px 0;
  }
}

.p-reno-head__title {
  max-width: 234px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .p-reno-head__title {
    max-width: 162px;
  }
}

.p-reno-head__img {
  max-width: 760px;
  margin: 81px auto 0 !important;
}
@media screen and (max-width: 768px) {
  .p-reno-head__img {
    max-width: 100%;
    margin-top: 50px !important;
  }
}

.p-reno__body {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .p-reno__body {
    margin-top: 50px;
  }
}

.p-reno-item {
  display: grid;
  grid-template-columns: 370fr 370fr;
  grid-template-rows: auto 1fr;
  row-gap: 30px;
  column-gap: 19px;
}
@media screen and (max-width: 768px) {
  .p-reno-item {
    grid-template-columns: auto;
    grid-template-rows: auto;
    row-gap: 0;
    column-gap: 0;
  }
}
.p-reno-item:not(:first-child) {
  margin-top: 80px !important;
}
@media screen and (max-width: 768px) {
  .p-reno-item:not(:first-child) {
    margin-top: 50px !important;
  }
}
.p-reno-item::after {
  content: none;
}

.p-reno-item__header {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (max-width: 768px) {
  .p-reno-item__header {
    grid-column: 1/3;
  }
}

.p-reno-item__new {
  display: block;
  width: fit-content;
  background: var(--c-accent);
  color: var(--c-white);
  font-size: 11px;
  line-height: 1.8181818182;
  font-weight: 700;
  padding: 5px 10px;
  margin-bottom: 20px;
}

.p-reno-item-title__main,
.p-reno-item-title__sub {
  display: flex;
}

.p-reno-item-title__main {
  margin-right: 10px;
}

.p-reno-item-title__sub {
  align-items: center;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 700;
}
.p-reno-item-title__sub::before {
  content: "";
  border-top: 1px solid var(--c-black);
  margin-right: 10px;
}

.p-reno-item__txt {
  grid-column: 1/2;
  grid-row: 2/3;
  font-size: 16px;
  line-height: 1.875;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .p-reno-item__txt {
    margin-top: 15px;
    grid-column: 1/3;
    line-height: 1.8571428571;
  }
}

.p-reno-item__img,
.p-reno-item__2col {
  grid-column: 2/3;
  grid-row: 1/3;
}
@media screen and (max-width: 768px) {
  .p-reno-item__img,
  .p-reno-item__2col {
    grid-column: 1/3;
    grid-row: 3/4;
  }
}

.p-reno-item.--num1 .p-reno-item-title {
  display: flex;
  align-items: center;
}
.p-reno-item.--num1 .p-reno-item-title__main {
  max-width: 41px;
}
.p-reno-item.--num1 .p-reno-item-title__sub::before {
  width: 50px;
}
.p-reno-item.--num1 .p-reno-item__img {
  max-width: 295px;
  margin: 67px 0 0 auto !important;
}
@media screen and (max-width: 768px) {
  .p-reno-item.--num1 .p-reno-item__img {
    margin: 25px auto 0 auto !important;
  }
}

.p-reno-item.--num2 .p-reno-item__header {
  grid-column: 2/3;
}
@media screen and (max-width: 768px) {
  .p-reno-item.--num2 .p-reno-item__header {
    grid-column: 1/3;
  }
}
.p-reno-item.--num2 .p-reno-item-title__main {
  max-width: 142px;
}
.p-reno-item.--num2 .p-reno-item-title__sub {
  margin-top: 10px;
}
.p-reno-item.--num2 .p-reno-item-title__sub::before {
  width: 76px;
}
.p-reno-item.--num2 .p-reno-item__txt {
  grid-column: 2/3;
}
@media screen and (max-width: 768px) {
  .p-reno-item.--num2 .p-reno-item__txt {
    grid-column: 1/3;
  }
}
.p-reno-item.--num2 .p-reno-item__img {
  grid-column: 1/2;
  max-width: 298px;
  margin: 114px 0 0 33px !important;
}
@media screen and (max-width: 768px) {
  .p-reno-item.--num2 .p-reno-item__img {
    grid-column: 1/3;
    margin: 25px auto 0 auto !important;
  }
}

.p-reno-item.--num3 .p-reno-item-title__main {
  max-width: 199px;
}
.p-reno-item.--num3 .p-reno-item-title__sub {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-reno-item.--num3 .p-reno-item-title__sub {
    margin-top: 15px;
  }
}
.p-reno-item.--num3 .p-reno-item-title__sub::before {
  width: 33px;
}
@media screen and (max-width: 768px) {
  .p-reno-item.--num3 .p-reno-item__txt p:nth-child(2) {
    display: none;
  }
}
.p-reno-item.--num3 .p-reno-item__2col {
  justify-self: center;
}
@media screen and (max-width: 768px) {
  .p-reno-item.--num3 .p-reno-item__2col {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}
.p-reno-item.--num3 .p-reno-item__2col .p-reno-item__img {
  max-width: 140px;
  margin: 81px 0 0 0 !important;
}
@media screen and (max-width: 768px) {
  .p-reno-item.--num3 .p-reno-item__2col .p-reno-item__img {
    display: flex;
    max-width: 107px;
    margin: 10px 0 0 24px !important;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 460px) {
  .p-reno-item.--num3 .p-reno-item__2col .p-reno-item__img {
    margin: -15px 0 0 24px !important;
  }
}
.p-reno-item.--num3 .p-reno-item__2col .p-reno-item__txt {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-reno-item.--num3 .p-reno-item__2col .p-reno-item__txt {
    display: block;
    margin-top: 0 !important;
  }
}

/******************************************************************
住まいのかたち
******************************************************************/
.p-report {
  padding: 80px 0 108px;
}
@media screen and (max-width: 768px) {
  .p-report {
    padding: 50px 0 60px;
  }
}

.p-report-list {
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 350px);
  justify-content: center;
  column-gap: 20px;
}
.p-report-list::after {
  content: none;
}
@media screen and (max-width: 768px) {
  .p-report-list {
    width: min(100%, 370px);
    grid-template-columns: auto;
    justify-content: normal;
    column-gap: 0;
    row-gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .p-report-article {
    width: min(100%, 326px);
  }
}

.p-report-article__link {
  display: flex;
}

.p-report-article__img {
  align-self: flex-start;
  margin: 0 !important;
  width: 130px;
}
@media screen and (max-width: 768px) {
  .p-report-article__img {
    width: 32.5153374233%;
  }
}
@media screen and (max-width: 389px) {
  .p-report-article__img {
    width: 33.6507936508%;
    min-width: 106px;
  }
}

.p-report-article__img-inner {
  position: relative;
}
.p-report-article__img-inner::before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.p-report-article__img-inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-report-article__info {
  width: 61.3496932515%;
  margin-left: 6.1349693252%;
}
@media screen and (max-width: 389px) {
  .p-report-article__info {
    width: 60%;
    margin-left: 6.3492063492%;
  }
}

.p-report-article__bubble {
  position: relative;
  background: var(--c-accent);
  color: var(--c-white);
  font-weight: 600;
  border-radius: 5px;
  font-size: 11px !important;
  line-height: 1.4545454545;
  margin-bottom: 6px;
  width: fit-content;
  padding: 4px 20px;
}
.p-report-article__bubble::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: -9px;
  width: 12px;
  height: 12px;
  background: url(../img/report_bubble-arrow.svg) center/contain no-repeat;
}

.p-report-article__subTitle {
  font-size: 12px !important;
  line-height: 1.75;
  font-weight: 300;
  color: var(--c-gray-dark);
}

.p-report-article__title {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  margin-top: 1px;
}

/******************************************************************
MUJI INFILL 0の高性能リノベーション
******************************************************************/
.p-infill {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .p-infill {
    padding: 60px 0;
  }
}

.p-infill-head__logo {
  margin: auto;
  max-width: 220px;
}
@media screen and (max-width: 768px) {
  .p-infill-head__logo {
    max-width: 180px;
  }
}

.p-infill-head__title {
  margin: 32px auto 0;
  max-width: 212px;
}
@media screen and (max-width: 768px) {
  .p-infill-head__title {
    margin-top: 50px;
    max-width: 176px;
  }
}

.p-infill-head__lead {
  margin-top: 32px;
  font-size: 16px !important;
  line-height: 1.75;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-infill-head__lead {
    margin-top: 20px;
  }
}

.p-infill-head__link {
  width: fit-content;
  margin: 50px auto 0;
}

.p-infill__body {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-infill__body {
    margin-top: 50px;
  }
}

.p-infill-list {
  display: grid;
  grid-template-columns: 295fr 295fr 300fr;
  column-gap: 55px;
}
@media screen and (max-width: 768px) {
  .p-infill-list {
    grid-template-columns: auto;
    row-gap: 50px;
  }
}

.p-infill-list__item {
  display: flex;
}

.p-infill-list__title {
  width: 25px;
  flex-shrink: 0;
}

.p-infill-list__txt {
  font-size: 16px;
  line-height: 1.875;
  font-weight: 300;
  margin-left: 40px;
  margin-top: -7px;
}
@media screen and (max-width: 768px) {
  .p-infill-list__txt {
    line-height: 1.8571428571;
    margin-left: 70px;
  }
}

.p-infill-list__txt.--skeleton {
  margin-left: 35px;
}
@media screen and (max-width: 768px) {
  .p-infill-list__txt.--skeleton {
    margin-left: 70px;
  }
}

/******************************************************************
詳しくはお近くのモデルルームまで
******************************************************************/
.p-modelRoom {
  padding: 100px 0 130px;
}
@media screen and (max-width: 768px) {
  .p-modelRoom {
    padding: 60px 0;
  }
}

.p-modelRoom__title {
  max-width: 420px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .p-modelRoom__title {
    max-width: 300px;
  }
}

.p-modelRoom__eventBanner{
  max-width: 600px;
  margin:40px auto;
  transition:opacity .3s ease;
}
@media screen and (max-width: 768px) {
  .p-modelRoom__eventBanner{
    max-width: 300px;
    margin:32px auto;
  }
}
.p-modelRoom__eventBanner:hover{
  opacity:.7;

}
.p-modelRoom__body {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-modelRoom__body {
    margin-top: 32px;
  }
}

.l-modelRoom-box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: var(--c-gray);
  padding: 35px 60px 30px;
}
@media screen and (max-width: 840px) {
  .l-modelRoom-box {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 768px) {
  .l-modelRoom-box {
    padding-left: 12.8vw;
    padding-right: 12.8vw;
  }
}

@media screen and (max-width: 768px) {
  .l-modelRoom-box.--search {
    padding-left: 8vw;
    padding-right: 8vw;
  }
}

.p-modelRoom-search {
  position: relative;
}

.p-modelRoom-search__subTitle {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  line-height: 1.7777777778;
  background: var(--c-black);
  color: var(--c-white);
  font-weight: 600;
  width: fit-content;
  padding: 8px 15px;
}
@media screen and (max-width: 1000px) {
  .p-modelRoom-search__subTitle {
    white-space: nowrap;
  }
}
@media screen and (max-width: 768px) {
  .p-modelRoom-search__subTitle {
    top: -21px;
    font-size: 16px !important;
    line-height: 1.75;
    padding: 7px 14px;
  }
}

.p-modelRoom-search__title {
  font-size: 18px;
  line-height: 1.3333333333;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .p-modelRoom-search__title {
    white-space: nowrap;
  }
}

.p-modelRoom-list {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, 1fr);
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  .p-modelRoom-list {
    grid-template-columns: auto;
    width: min(100%, 315px);
  }
}
.p-modelRoom-list::after {
  content: none;
}

.p-modelRoom-list__item {
  width: 315px;
}
@media screen and (max-width: 768px) {
  .p-modelRoom-list__item {
    max-width: 315px;
    width: 100%;
  }
}

.p-modelRoom-list__foot-txt {
  width: min(100%, 566px);
  margin: 50px auto 0;
  font-size: 16px;
  line-height: 1.875;
  font-weight: 300;
}

.p-modelRoom-list__foot-txt.wMargin{
  margin: 100px auto 0 auto;
}

@media screen and (max-width: 768px) {
  .p-modelRoom-list__foot-txt {
    line-height: 1.8571428571;
    padding-left: 8vw;
    padding-right: 8vw;
  }
}
.p-modelRoom-list__foot-txt p:not(:first-child) {
  margin-top: 15px;
}

.p-modelRoom-list__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 40px auto 0;
  width: min(100%, 566px);
}

.p-modelRoom-list__links.center1{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  margin: 40px auto 0;
  width: min(100%, 566px);
}

.p-modelRoom-list__links.is-flex-center{
  display:flex;
  justify-content:center;
}
.p-modelRoom-list__links.is-event-bottom-margin{
  margin-bottom:40px;
}
@media screen and (max-width: 768px) {
  .p-modelRoom-list__links {
    grid-template-columns: auto;
    width: fit-content;
  }
}
.p-modelRoom-list__links > a {
  background: gray;
  display: block;
  font-weight: 600;
  margin: 0 auto;
  width: fit-content;
}
.p-modelRoom-list__links > a:hover {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-modelRoom-list__links > a:nth-of-type(n+2) {
    margin-top: 20px;
  }
}


/* zen 2025 */
.select2__title{
  margin: 100px 0 40px 0;
  text-align: center;
}
.select2__title img{
  height: 20px;
}
.select2Area {
  display: flex;
  justify-content: space-between;
}
.select2Area__Box {
  display: block;
  max-width: calc(50% - 12px);
  transition: opacity .3s ease;
  width: 100%;
}
.select2Area__Box:hover {
  opacity: .7;
}
.select2Area__Box--Img img {
  max-width: 100%;
}
.select2Area__Box--Txt {
  text-align: center;
  margin-top: 14px;
}

.txt_support{
  text-align: center;
  margin-bottom: 30px;
  
}

.txt_support img{
    width: auto;
    height: auto;
  }

@media screen and (max-width: 481px) {
  .select2Area {
    display: block;
  }
  .select2Area__Box {
    max-width: 100%;
    width: 100%;
    margin-bottom: 40px;
  }
  .select2Area__Box:last-child {
    margin-bottom: 0px;
  }
}