/* =========================================
   OPENHOUSE
========================================= */

.front-openhouse{
  width: 100%;
  padding: 80px 0 90px;
  box-sizing: border-box;
}

.front-openhouse__inner{
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

.front-openhouse__head{
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 28px;
  text-align: left;
  margin-bottom: 52px;
}

.front-openhouse__heading{
  margin: 0;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #111;
  line-height: 1;
}

.front-openhouse__subheading{
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #c9a85a;
  line-height: 1;
}

.front-openhouse__box {
  display: flex;


.front-openhouse__content{
  width: 48%;
  padding: 56px 64px;
  box-sizing: border-box;
}

.front-openhouse__label{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  height: 28px;
  margin: 0 0 28px;
  padding: 0 14px;
  background: #e4604a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  box-sizing: border-box;
}

.front-openhouse__title{
  margin: 0;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.06em;
  color: #111;
}

.front-openhouse__text{
  margin: 28px 0 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #666;
}

/* ボタン2個を同じ大きさで横並び */
.front-openhouse__actions{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
}

/* 2つのボタン共通 */
.front-openhouse__actions .front-openhouse__button,
.front-openhouse__actions .front-openhouse__list-link{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 210px !important;
  min-width: 210px !important;
  max-width: 210px !important;

  height: 56px !important;
  min-height: 56px !important;
  max-height: 56px !important;

  padding: 0 !important;
  margin: 0 !important;

  box-sizing: border-box !important;

  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0.06em !important;
  text-align: center !important;
  text-decoration: none !important;

  transition: all 0.25s ease;
}

/* 詳細・予約 */
.front-openhouse__actions .front-openhouse__button{
  background: #111 !important;
  color: #fff !important;
  border: 1px solid #111 !important;
}

/* 詳細・予約 hover */
.front-openhouse__actions .front-openhouse__button:hover{
  background: #333 !important;
  color: #fff !important;
  border-color: #333 !important;
}

/* 開催中のイベント一覧 */
.front-openhouse__actions .front-openhouse__list-link{
  background: #fff !important;
  color: #333 !important;
  border: 1px solid #333 !important;
}

/* 開催中のイベント一覧 hover */
.front-openhouse__actions .front-openhouse__list-link:hover{
  background: #111 !important;
  color: #fff !important;
  border-color: #111 !important;
}

/* =========================================
   スマホ
========================================= */

@media screen and (max-width: 900px){

  .front-openhouse{
    padding: 56px 0 70px;
  }

  .front-openhouse__box{
    display: block;
  }

  .front-openhouse__image{
    width: 100%;
  }

  .front-openhouse__content{
    width: 100%;
    padding: 32px 24px 38px;
  }

  .front-openhouse__title{
    font-size: 22px;
  }

  .front-openhouse__actions{
    display: block;
    margin-top: 28px;
  }

  .front-openhouse__actions .front-openhouse__button,
  .front-openhouse__actions .front-openhouse__list-link{
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: 54px !important;
    min-height: 54px !important;
    max-height: 54px !important;
  }

  .front-openhouse__actions .front-openhouse__list-link{
    margin-top: 12px !important;
  }

	.front-openhouse__head{
	  display: block;
	  margin-bottom: 32px;
	}

	.front-openhouse__subheading{
	  margin-top: 10px;
	}
}