@charset "UTF-8";

/* ========== ========== ==========
変数定義
========== ========== ========== */
/* ========== ========== ==========
ここから共通部
========== ========== ========== */
html {
  /* scroll-behavior: smooth; */
  /* scroll-padding-top: 50px; */
}

body {
  line-height: 1.7;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", YuMincho, serif;
}

.quizNow main {
  display: none;
}

html body .sp-show {
  display: none;
}

@media screen and (max-width: 768px) {
  html body .sp-show {
    display: block;
  }

  html body .sp-hide {
    display: none;
  }
}

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

@media screen and (min-width:768px) {

  a.-hover:hover,
  button.-hover:hover,
  input.-hover:hover {
    opacity: 0.7;
    transition: all 0.3s;
    cursor: pointer;
  }
}


.sectionWrap {
  width: 79.6875%;
}

.sectionTitle {
  font-size: 22px;
  text-align: center;
}

.section_subtitle {
  font-size: 12px;
  line-height: 1;
  color: #9C8977;
}

.section_title {
  /* font-size: 22px; */
  font-size: clamp(15px, -3.667px + 4.667vw, 22px);
  line-height: 1.5;
  margin-bottom: 7px;
}

.section_text {
  /* font-size: 13px; */
  font-size: clamp(12px, 4.000px + 2vw, 16px);
  line-height: 2.2142857143;
}

.sectionTitle span,
.section_subtitle span,
.section_title span,
.section_text span {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .sectionWrap {
    width: 94%;
  }
}

.mt-150 {
  margin-top: 150px;
}

.mt-76 {
  margin-top: 76px;
}

.blockWrap {
  margin: 0 17.1875%;
}

.block .section_text {
  margin-bottom: clamp(30px, 4.6875vw, 70px);
}

@media screen and (max-width: 768px) {
  .blockWrap {
    margin: 0 3%;
  }
}

/* 共通部ここまで
---------- ---------- */
/* ========== ========== ==========
スライダー関連調整ここから
========== ========== ========== */
.slick-track {
  display: flex;
}

.slick-slide {
  height: auto !important;
}

.slick-slider {
  overflow: hidden;
}

* {
  min-width: 0;
  min-height: 0;
}

/* スライダー関連調整ここまで
---------- ---------- */

/* ========== ========== ==========
ローディング画面
========== ========== ========== */

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #eee;
  /* Beige background color */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: all 1s ease;
}

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

.loader .spinner {
  /* border: 3px solid #f3f3f3; */
  border-top: 5px solid #bc8f56;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ローディング画面ここまで
---------- ---------- */

/* ========== ========== ==========
個別部ここから
========== ========== ========== */
.quizNow .header {
  display: none;
}

.header_fix {
  position: fixed;
  z-index: 100;
  right: 0;
  left: 0;
  top: 0;
  height: 76px;
  display: flex;
  padding: 0 6.25% 0;
  justify-content: space-between;
  /* background-color: rgba(255 255 255 / 0.7); */
}

.header_logo {
  height: 100%;
}

.header_logo a {
  display: block;
  height: 100%;
}

.header_btns {
  display: flex;
  align-items: center;
}

.header_btns a {
  display: flex;
  align-items: center;
  margin: 0 10px;
  font-size: 14px;
}

.header_btns a img {
  height: 15px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: 7px;
}

.header .btn_headerNav {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
  margin-left: clamp(20px, 2.34vw, 30px);
}

.header .btn_headerNav span {
  display: inline-block;
  height: 3px;
  width: 60px;
  background: black;
  transition: all 0.5s;
}

.header_nav {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(11, 26, 101, 0.9);
}

.header_nav_list {
  display: flex;
  flex-wrap: wrap;
  max-width: 750px;
  margin: clamp(140px, 14.6875%, 200px) auto 0;
}

.header_nav_item {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 44px;
}

.header_nav a {
  color: white;
  font-size: clamp(14.67px, 1.72vw, 22px);
  width: 100%;
  padding: 0 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.header_nav a span {
  display: inline-block;
  width: 100px;
  font-size: clamp(10.67px, 1.25vw, 16px);
}

.header .active-hide {
  display: block;
}

.header .active-show {
  display: none;
}

.header.-active .header_btns a {
  color: white;
}

.header.-active .header_nav {
  display: block;
}

.header.-active .active-show {
  display: block;
}

.header.-active .active-hide {
  display: none;
}

.header.-active .btn_headerNav span {
  background: white;
}

.header.-active .btn_headerNav span:first-child {
  transform: translate(0, 2px) rotate(-45deg);
}

.header.-active .btn_headerNav span:last-child {
  transform: translate(0, -9px) rotate(45deg);
}

@media screen and (max-width: 768px) {
  .header_fix {
    align-items: center;
    padding: 0 15px 0;
    height: clamp(30px, 7.8125vw, 60px);
  }

  .header_logo {
    width: auto;
  }

  .header_logo img {
    /* width: 100%; */
    height: 100%;
  }

  .header_btns {
    margin-top: 0;
  }

  .header .btn_headerNav span {
    height: 1px;
    width: clamp(35px, 6.5104166667vw, 50px);
  }

  .header_nav a {
    flex-direction: column;
    align-items: center;
  }

  .header_nav a span {
    width: auto;
  }

  .header.-active .btn_headerNav span {
    width: clamp(35px, 6.5104166667vw, 50px);
  }

  .header.-active .btn_headerNav span:first-child {
    transform: translate(0, 2px) rotate(-25deg);
  }

  .header.-active .btn_headerNav span:last-child {
    transform: translate(0, -7px) rotate(25deg);
  }
}

/* 
.mainVisual {
  width: 100%;
}

.mainVisual img {
  width: 100%;
}
 */


/* =========================
   メインビジュアル幅をアンケートと統一
========================= */

/* メインビジュアルの外枠 */
.mainVisual {
  max-width: 1100px;   /* ← アンケートと同じ値にする */
  margin: 0 auto;
  padding: 0 24px;     /* ← アンケートと同じ左右余白 */
}

/* 画像の固定幅を解除 */
.mainVisual img {
  width: 100% !important;
  max-width: 100%;
  height: auto;
}

SP（スマホ）

@media (max-width: 768px) {
  .mainVisual {
    padding: 0 16px;
  }
}




.mainVisual4 img {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  justify-content: center;
}

.secondVisual {
  max-width: 1100px;   /* ← アンケートと同じ値にする */
  margin: 0 auto;
  padding: 0 24px;     /* ← アンケートと同じ左右余白 */
}

.secondVisual img {
  -o-object-fit: contain;
  object-fit: contain;
}

.secondVisual img:nth-child(1) {
  width: 51.5625%;
}

.secondVisual img:nth-child(2) {
  width: 18.359375%;
  margin-left: 4.0625%;
  margin-top: 10.15625%;
}

.secondVisual img:nth-child(3) {
  width: 13.203125%;
  margin-left: 3.671875%;
  margin-top: 7.8125%;
}

.thirdVisual {
  display: flex;
  align-items: flex-start;
  margin: 2.578125vw 9.296875vw 4.21875vw 11.015625vw;
}

.thirdVisual img {
  -o-object-fit: contain;
  object-fit: contain;
}

.thirdVisual img:nth-child(1) {
  width: 41.2vw;
}

.thirdVisual img:nth-child(2) {
  width: 16.484375vw;
  margin-left: 5.234375vw;
  margin-top: 5.390625vw;
}

.thirdVisual img:nth-child(3) {
  width: 19.609375vw;
  margin-left: 6.171875vw;
  margin-top: 5.390625vw;
}

.group_slider {
  margin-bottom: 45px;
}

.group_slider_item img {
  max-width: 80%;
  margin: 0 auto;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .news_item {
    flex-direction: column;
    padding-bottom: 10px;
  }

  .news_item_seeMore {
    margin: 0 auto;
  }
}

.concept_text1 {
  font-size: 14px;
  line-height: 2;
}

.concept_bg {
  background-color: #EFEFEF;
}

.concept_sliderWrap {
  display: flex;
  justify-content: flex-end;
  margin-bottom: clamp(57.33px, 6.72vw, 86px);
  margin-left: 10.15625%;
}

@media screen and (max-width:768px) {
  .concept_sliderWrap {
    margin-left: 3%;
  }
}

.concept_sliderTitle {
  flex-shrink: 0;
  height: clamp(123.33px, 14.45vw, 185px);
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: clamp(20px, 3.9vw, 50px);
}

.concept_slider_item {
  text-align: center;
}

.concept_slider_images {
  margin-bottom: clamp(16px, 1.9vw, 24px);
}

.concept_slider_images img {
  width: 100%;
}

.concept_slider_title {
  font-size: clamp(12px, 1.2vw, 15px);
  line-height: 1.5;
  margin-bottom: 9px;
}

.concept_slider_text1 {
  font-size: 9px;
  line-height: 1.5;
}

.concept .slick-track {
  gap: 0 27px;
}

.concept .slick-list {
  padding: 0 0 0 5% !important;
}

@media screen and (max-width: 768px) {
  .concept_sliderTitle {
    width: clamp(30px, 9vw, 50px);
  }
}

.voice {
  display: flex;
  justify-content: center;
  position: relative;
  background: #F6F2E8;
  padding: clamp(20px, 6.4vw, 82px) 0 clamp(20px, 5.3vw, 67px);
  margin-bottom: clamp(85.33px, 10vw, 128px);
}

.voice_inner {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
}

.voice_btnViewMore {
  position: absolute;
  bottom: -3vw;
  right: 23.4vw;
  font-size: 12px;
  width: 20vw;
  height: 10vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.voice_btnViewMore .arrow {
  position: absolute;
  display: block;
  right: 0;
  bottom: 50%;
  transform: translate(0, calc(50% + 5px));
  width: 100%;
}

@media screen and (max-width:768px) {
  .voice_btnViewMore {
    right: 26.4vw;
    font-size: 10px;
    width: 25vw;
  }

  .voice_btnViewMore .arrow {}
}

.about {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(29.33px, 3.44vw, 44px);
}

.about_texts {
  margin-left: 10.15625%;
  margin-bottom: 18px;
}

@media screen and (max-width:768px) {
  .about_texts {
    margin-left: 3%;
  }
}

.about_subtitle {
  font-size: 12px;
  margin-bottom: 3px;
}

.about_title {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 7px;
}

.about_text1 {
  font-size: 14px;
  line-height: 1.5;
}

.about_sliderWrap {
  display: flex;
  justify-content: flex-end;
}

.about_sliderWrap2 {
  width: 89.84375%;
  position: relative;
}

@media screen and (max-width:768px) {
  .about_sliderWrap2 {
    width: 97%;
  }

  .about_slider {
    /* width: 97%; */
  }
}

.about_slider_item {
  text-align: center;
}

.about_slider_images {
  margin-bottom: 7px;
}

.about_slider_images img {
  width: 100%;
}

.about_slider_title {
  /* font-size: clamp(16px, calc(20/1280*100vw), 20px); */
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #2f3093;
}

.about_slider_title img {
  margin: 0 auto;
}

.about_slider_text1 {
  font-size: 14px;
  line-height: 1.5;
  padding: 15px 0;
}

.about .slick-track {
  gap: 0 27px;
}

.about .slick-list {
  padding: 0 0 0 5% !important;
}

.about .arrow_box {
  position: absolute;
  display: flex;
  justify-content: space-between;
  /* left: 10.546875%; */
  left: 0;
  /* right: 11.8%; */
  right: 0;
  top: 25%;
}

.about .slide-arrow {
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  /* box-shadow: 0 0 5px #aaaaaa; */
}

.service {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(60px, 7.03vw, 90px);
}

.service_subtitle {
  font-size: 12px;
  margin-bottom: 3px;
}

.service_title {
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 32px;
}

.service_list {
  display: flex;
  gap: 50px;
  justify-content: space-around;
  flex-wrap: wrap;
}

.service_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* margin-right: 9%; */
  min-width: 140px;
}

.service_item_image {
  margin-bottom: 11px;
  height: 67px;
  object-fit: contain;
}

.service_item_title {
  font-size: 15px;
  line-height: 1.4666666667;
  margin-bottom: clamp(12.67px, 1.48vw, 19px);
}

.service_item_text1 {
  font-size: 12px;
  line-height: 1.5;
}

@media screen and (max-width: 1200px) {
  .service_list {
    gap: 30px 20px;
  }

  .service_item {
    width: calc(100%/3 - 20px * 2 / 3);
  }

  .service_item_title {
    font-size: 14px;
  }
}

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

.aboutUs_texts {
  display: flex;
  justify-content: center;
  margin-bottom: 90px;
}

.aboutUs_address {
  border-right: solid 1px #ddd;
  padding-right: 3%;
}

.aboutUs_address_name {
  font-size: 18px;
  margin-bottom: 7px;
}

.aboutUs_address_address {
  font-size: 10px;
  margin-bottom: 8px;
}

.aboutUs_sns_list {
  display: flex;
}

.aboutUs_sns_item {
  width: 10px;
  margin-right: 10px;
}

.aboutUs_sns_item a {
  display: flex;
}

.aboutUs_businessHour {
  border-right: solid 1px #ddd;
  padding: 0 3%;
}

.aboutUs_businessHour_date {
  font-size: 10px;
  line-height: 2;
  margin-bottom: 5px;
}

.aboutUs_businessHour_tel {
  font-size: 26px;
  line-height: 1;
  font-weight: bold;
}

.aboutUs_businessHour_tel span {
  margin-top: 3px;
  display: block;
  font-size: 10px;
}

.aboutUs_reservation {
  padding-left: 3%;
  text-align: center;
}

.aboutUs_reservation_title {
  display: block;
  font-size: 10px;
  margin-bottom: 15px;
}

.aboutUs_reservation_btn a {
  display: block;
  color: white;
  background-color: #C55631;
  padding: 15px 0;
  width: 228px;
}

.aboutUs_reservation_btn a span {
  display: inline-block;
}

.aboutUs_image {
  width: 100%;
  margin-bottom: clamp(72.67px, 8.52vw, 109px);
}

.aboutUs_innerMap {
  display: flex;
  justify-content: space-between;
  margin-bottom: clamp(60px, 7.03vw, 90px);
}

.aboutUs_innerMap_text {
  font-size: 14px;
  line-height: 2.2142857143;
}

.aboutUs_innerMap_image {
  width: 49.4117647059%;
}

.boardMap {
  margin-bottom: 80px;
  width: 100%;
  text-align: center;
}

.boardMap .section_title {
  margin-bottom: 27px;
}

@media screen and (max-width: 768px) {
  .aboutUs_texts {
    flex-direction: column;
  }

  .aboutUs_address {
    border-right: none;
    padding-right: 0;
    border-bottom: solid 1px #ddd;
    padding-bottom: 20px;
    text-align: center;
  }

  .aboutUs_sns_list {
    justify-content: center;
  }

  .aboutUs_businessHour {
    border-right: none;
    padding-right: 0;
    border-bottom: solid 1px #ccc;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
  }

  .aboutUs_reservation {
    padding-top: 20px;
  }

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

  .aboutUs_reservation_btn a {
    width: 60%;
  }

  .aboutUs_innerMap {
    flex-direction: column;
  }

  .aboutUs_innerMap_image {
    width: 100%;
  }
}

.access {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.access_tabName {
  display: flex;
  border-top: solid 1px #ddd;
  border-right: solid 1px #ddd;
  border-left: solid 1px #ddd;
}

.access_tabName button {
  text-align: center;
  width: 33.3333333333%;
  padding: 20px 0;
  font-size: 16px;
  font-weight: bold;
  border-right: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  background: #f6f6f6;
}

.access_tabName button:last-child {
  border-right: none;
}

.access_tabName button.-active {
  border-bottom: none;
  background: white;
}

.access_route {
  padding: 40px 60px;
  border-right: solid 1px #ddd;
  border-left: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
}

.access_route img {
  display: none;
  margin: 0 auto;
}

.access_route img.-active {
  display: block;
}

@media screen and (max-width: 768px) {
  .access .sectionWrap {
    width: 95%;
  }

  .access_tabName button {
    font-size: 12px;
    padding: 10px;
  }

  .access_route {
    padding: 20px 10px;
  }
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  max-width: 1000px;
  margin: 0 auto clamp(60px, calc(76/1280*100vw), 76px);
}

.form {
  font-family: "Noto Sans JP", sans-serif;
}

.form_title {
  margin-bottom: 45px;
  text-align: center;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
}

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

.form_item {
  display: flex;
  width: 100%;
  margin-bottom: 33px;
}

.form_dateSelect {
  width: 100%;
  margin-block-end: 70px;

}

@media screen and (max-width:768px) {
  .form_dateSelect {
    margin-block-end: 40px;
  }
}

.form_item_label {
  width: 100px;
  margin-right: 17px;
  margin-top: 7px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}

.form_item_label:has(+ .form_item_content .form_item_input-radio) {
  margin-top: 0;
}

@media screen and (max-width:768px) {
  .form_item_label {
    width: 100%;
  }
}

.form_item_title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}

.form_item_required {
  display: block;
  color: red;
  font-size: 10px;
  line-height: 1.5;
}

.form_item_content {
  display: flex;
  flex-direction: column;
  width: calc(100% - 117px);

  @media screen and (max-width:768px) {
    margin-block-start: 5px;
  }
}

.form_item_content.-row {
  flex-direction: row;
}

.form_item_content_text {
  margin-top: 4px;
  font-size: 20px;
}

.form_item_input {
  font-size: 16px;
}

.form_item_input-radio {
  font-size: 16px;
}

.form_item_input-radio input {
  margin-bottom: 4px;
  margin-right: 15px;
}

.form_item_input.-readonly {
  background-color: #ddd;
}

.form_item_input.-calendar,
.form_item_input.-age {
  height: 40px;
  width: 200px;
  font-size: 16px;
}

.form_item_input.-calendar-time {
  width: 200px;
  margin-inline-start: 50px;
}

.form_item_input.-height {
  height: 40px;
  font-size: 16px;
}

.form_item_input[type=text] {
  height: 40px;
}

.form_item_input[type=email] {
  height: 40px;
}

.form_item_textarea {
  height: 200px;
  font-size: 16px;
  padding: 10px;
}

.form input[type=submit],
.confirmation input[type=submit],
.failed .btn_return {
  background-color: #9C8977;
  color: white;
  padding: 15px 105px;
  border: none;
  border-radius: 3px;
  font-size: clamp(18px, calc(21/800*100vw), 21px);
  line-height: 1.1904761905;
  font-weight: 700;
}


form input[type=submit].invalid {
  opacity: 0.4;
}

.form_title-preferredDate {
  text-align: center;
  font-size: 24px;
  margin-inline-end: 20px;
}

.form_note-preferredDate {
  font-size: 16px;
  /* margin-block-end: clamp(10px, calc(20/1280*100vw), 20px); */
  margin-bottom: 30px;
}

.form_title-preferredDate span {
  font-size: 16px;
  margin-inline-start: 10px;
  color: red;
}

.from_item_text-noModelSelect {
  font-size: clamp(20px, calc(24/1280*100vw), 24px);
  color: gray;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .form {
    width: 100%;
  }

  .form .sectionWrap {
    width: 85%;
  }

  .form_item {
    flex-direction: column;
    margin-bottom: 15px;
  }

  .form_item.-preferredDate {
    margin-block-end: 30px;
  }

  .form_item_content {
    width: 97%;
  }

  .form_item_input {
    margin-right: 0;
  }
}


.form_note {
  font-size: 16px;
  position: relative;
  padding-left: 20px;
}

.form_note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.btns_reset {
  /* margin-bottom: clamp(15px, calc(30/1280*100vw), 30px); */
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
}

.btns_reset button {
  border: solid 1px #aaa;
  padding: 8px 16px;
  font-size: 16px;
  border-radius: 5px;
}

.quizNow .footer {
  display: none;
}

.footer {
  position: relative;
  /* background: #D9D9D9; */
  background: #0b4847;
  padding: 38px 10px;
}

.footer_logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
}

.footer_nav {
  font-size: 13px;
  max-width: 764px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto clamp(30px, 3.52vw, 45px);
}

.footer_nav a {
  color: white;
}

.footer_nav_item {
  display: flex;
  align-items: center;
  line-height: 2.8461538462;
}

.footer_nav_item::after {
  content: "";
  display: inline-block;
  margin: 0 4px 0;
  width: 4px;
  height: 13px;
  border-right: solid 1px white;
  border-left: solid 1px white;
}

.footer_nav_item:last-child::after {
  display: none;
}

.footer_logo2 {
  text-align: center;
  margin-block-end: 50px;
}

.footer_logo2_image {
  height: 160px;
}

.footer_copyRight {
  text-align: center;
  font-size: 9px;
  color: white;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 100px 10px 20px;
  }
}


.banner {
  position: fixed;
  z-index: 10;
  right: 0.5vw;
  left: 0;
  bottom: 0;
  padding: 5px;
  display: flex;
  justify-content: flex-end;
}

.banner_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.banner_link {
  height: 60px;
  width: 230px;
  background-color: #BA976D;
  font-size: clamp(12px, calc(21/800*100vw), 16px);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 2px;
}

.banner_link a {
  color: white;
}

.banner_link img {
  height: 25px;
}

@media screen and (max-width:768px) {
  .banner_inner {
    width: 100%;
    gap: 5px;
  }

  .banner_link {
    height: 50px;
  }

  .banner_link:nth-last-of-type(1) {
    width: calc(53% - 2.5px);
  }

  .banner_link:nth-last-of-type(2) {
    width: calc(47% - 2.5px);
  }

  .banner_link img {
    height: 20px;
  }

}

.sample {
  margin-bottom: clamp(87.33px, 10.23vw, 131px);
}

.sample_texts {
  padding: 0 10px;
  text-align: center;
  margin-bottom: clamp(20px, 2.34vw, 30px);
}

.sample_texts span {
  display: inline-block;
}

.sample_slider {
  margin-bottom: clamp(21.33px, 2.5vw, 32px);
}

.sample_slider_item {
  width: 450px;
}

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

.sample_slider .slick-track {
  gap: 0 27px;
}

.sample_slider .slick-list {
  padding: 0 0 0 20% !important;
}

.sample_btns,
.instagram_btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14.67px, 1.72vw, 22px);
}

.instagram_btns {
  margin-block-start: 20px;
}

.sample_btns a,
.instagram_btns a {
  text-align: center;
  padding: 8px 0;
  color: white;
  width: clamp(266.67px, 31.25vw, 400px);
  background-color: #AA9756;
  border-radius: 999px;
  font-size: clamp(14.67px, 1.72vw, 22px);
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .sample_slider_item {
    width: auto;
  }

  .sample_slider_item img {
    height: 20vw;
  }

  .sample_slider .slick-list {
    padding: 0 0 0 28% !important;
  }

  .sample_text1 {
    font-size: 12px;
  }
}

.instagram {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(62px, 7.27vw, 93px);
}

.instagram .section_title {
  text-align: center;
  margin-bottom: 19px;
}

.instagram_list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: clamp(20px, 2.34vw, 30px);
}

.instagram_item {
  width: calc((100% - 12px) / 3);
}

.instagram-gallery__actions {
  display: none;
}


.hm-3-2-grid {
  width: 100%;
  margin-block-end: 30px;
}

@media only screen and (max-width: 767px) {
  .hm-3-2-grid {
    margin: 0 0 0;
    width: 100%
  }
}

.hm-3-2-grid__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

@media only screen and (min-width: 768px) {
  .hm-3-2-grid__inner:after {
    content: "";
    display: block;
    width: 31.11%;
    margin: 3.335% 0 0
  }
}

@media only screen and (min-width: 768px) {
  .hm-3-2-grid__cell {
    width: 31.11%;
    margin: 3.335% 0 0
  }
}

@media only screen and (max-width: 767px) {
  .hm-3-2-grid__cell {
    width: 47.16%;
    margin: 0 0 5.68%
  }
}



.hm-search-navi {
  border-bottom: 2px solid #2f3093
}

@media only screen and (max-width: 767px) {
  .hm-search-navi {
    display: none
  }
}

.hm-search-navi__inner {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center
}

@media only screen and (min-width: 768px) and (max-width: 1159px) {
  .hm-search-navi__inner {
    padding: 0 15px
  }
}

@media only screen and (max-width: 767px) {
  .hm-search-navi__inner {
    padding: 0 20px
  }
}

.hm-search-navi__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.hm-search-navi__link {
  width: 8.62%
}

.hm-search-navi__link.active a {
  background-color: #2f3093;
  color: #ffffff
}

.hm-search-navi__link a {
  display: block;
  margin: 0 1px;
  padding: 10px 0;
  border-top: 1px solid #2f3093;
  border-left: 1px solid #2f3093;
  border-right: 1px solid #2f3093;
  border-radius: 10px 10px 0 0;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #2f3093;
  -webkit-transition: background-color .2s, color .2s;
  transition: background-color .2s, color .2s
}

@media only screen and (min-width: 768px) and (max-width: 1159px) {
  .hm-search-navi__link a {
    padding: 6px 0;
    font-size: 1.4rem
  }
}

@media screen and (min-width: 769px) {
  .hm-search-navi__link a:hover {
    background-color: #2f3093;
    color: #ffffff
  }
}

.hm-search-navi__link--2 {
  width: 9.311%
}

.hm-search-navi--under {
  border-bottom: none
}

.hm-search-navi--under .hm-search-navi__inner {
  border-top: 2px solid #2f3093
}

.hm-search-navi--under .hm-search-navi__link a {
  border-top: none;
  border-left: 1px solid #2f3093;
  border-right: 1px solid #2f3093;
  border-bottom: 1px solid #2f3093;
  border-radius: 0 0 10px 10px
}

.hm-search-navi--under-2 {
  border-top: 2px solid #2f3093;
  border-bottom: none
}

.hm-search-navi--under-2 .hm-search-navi__link a {
  border-top: none;
  border-left: 1px solid #2f3093;
  border-right: 1px solid #2f3093;
  border-bottom: 1px solid #2f3093;
  border-radius: 0 0 10px 10px
}

.hm-search-map {
  overflow: hidden;
  position: relative
}

.hm-search-map img {
  width: 100%
}

.hm-search-mappin-info {
  padding: 10px 0;
  background-color: #f8f8f8
}

.hm-search-mappin-info__inner {
  position: relative;
  margin: 0 auto;
  max-width: 1160px
}

@media only screen and (min-width: 768px) and (max-width: 1159px) {
  .hm-search-mappin-info__inner {
    padding: 0 15px
  }
}

@media only screen and (max-width: 767px) {
  .hm-search-mappin-info__inner {
    padding: 0 20px
  }
}

.hm-search-mappin-info__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.hm-search-mappin-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 30px
}

@media only screen and (max-width: 767px) {
  .hm-search-mappin-info__item {
    margin-right: 17px
  }
}

.hm-search-mappin-info__item--icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 24px;
  margin-right: 10px
}

.hm-search-mappin-info__item--icon img {
  max-width: 100%
}

@media only screen and (max-width: 767px) {
  .hm-search-mappin-info__item--icon {
    margin-right: 6px
  }
}

.hm-search-mappin-info__item--text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #2f3093;
  font-size: 1.4rem
}

@media only screen and (max-width: 767px) {
  .hm-search-mappin-info__item--text {
    font-size: 11px
  }
}


.hm-articleCard {
  position: relative;
  display: flex;
  flex-direction: column;
}

.hm-articleCard>a {
  display: block
}

@media screen and (min-width: 769px) {

  .hm-articleCard>a:hover .hm-articleCard__title,
  .hm-articleCard>a:hover .hm-articleCard__read,
  .hm-articleCard>a:hover .hm-articleCard__area,
  .hm-articleCard>a:hover .hm-articleCard__maker,
  .hm-articleCard>a:hover .hm-articleCard__contact,
  .hm-articleCard>a:hover .hm-articleCard__title,
  .hm-articleCard>a:hover .hm-articleCard__wrap {
    opacity: 0.6
  }

  .hm-articleCard>a:hover img {
    opacity: 1;
    -webkit-transform: scale(1.04);
    transform: scale(1.04)
  }
}

.hm-articleCard>a>*:last-child {
  margin: 0
}

.hm-articleCard__thumb {
  position: relative;
  margin: 0 0 10px;
  border-radius: 80px 10px 10px 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  font-size: 0;
  z-index: 1
}

@media only screen and (max-width: 767px) {
  .hm-articleCard__thumb {
    border-radius: 60px 10px 10px 10px;
    -webkit-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1)
  }
}

.hm-articleCard__thumb.-noshadow {
  -webkit-box-shadow: unset;
  box-shadow: unset
}

.hm-articleCard__thumb img {
  -webkit-transition: -webkit-transform .6s ease;
  transition: -webkit-transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
  border-radius: 80px 10px 10px 10px;
  width: 100%
}

@media only screen and (max-width: 767px) {
  .hm-articleCard__thumb img {
    border-radius: 60px 10px 10px 10px
  }
}

.hm-articleCard__icon {
  position: absolute;
  right: 20px;
  z-index: 2;
  margin-top: -65px
}

@media only screen and (min-width: 768px) and (max-width: 1159px) {
  .hm-articleCard__icon {
    right: 10px;
    margin-top: -65px
  }
}

@media only screen and (max-width: 767px) {
  .hm-articleCard__icon {
    right: 10px;
    margin-top: -60px
  }
}

.hm-articleCard__wrap {
  padding: 10px 30px 30px;
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease
}

.hm-articleCard__wrap--result {
  padding: 0px 18px 10px
}

@media only screen and (max-width: 767px) {
  .hm-articleCard__wrap--result {
    padding: 0px 11px 0
  }
}

@media only screen and (min-width: 768px) and (max-width: 1159px) {
  .hm-articleCard__wrap {
    padding: 0 20px 20px
  }
}

.hm-articleCard__maker {
  font-size: 1.8rem;
  color: #2f3093;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease
}

@media only screen and (max-width: 767px) {
  .hm-articleCard__maker {
    font-size: 14px
  }
}

.hm-articleCard__title {
  margin: 0 0 10px;
  font-size: 1.8rem;
  color: #2f3093;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease
}

@media only screen and (max-width: 767px) {
  .hm-articleCard__title {
    font-size: 14px
  }
}

.hm-articleCard__column-title {
  margin: 0 0 10px;
  font-size: 1.6rem;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease
}

@media only screen and (max-width: 767px) {
  .hm-articleCard__column-title {
    font-size: 14px
  }
}

.hm-articleCard__date {
  font-size: 1.4rem;
}

.hm-articleCard__place {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #2f3093;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease
}

@media only screen and (max-width: 767px) {
  .hm-articleCard__place {
    font-size: 10px
  }
}

.hm-articleCard__read {
  margin: 0 0 20px;
  font-size: 1.4rem;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease
}

.hm-articleCard__read.bold {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700
}

@media only screen and (max-width: 767px) {
  .hm-articleCard__read {
    font-size: 12px
  }
}

.hm-articleCard__area {
  font-size: 1.2rem;
  color: #999999;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease
}

@media only screen and (max-width: 767px) {
  .hm-articleCard__area {
    font-size: 10px
  }
}

.hm-articleCard__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.hm-articleCard__tag {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #2f3093;
  font-size: 1.2rem;
  margin-right: 1em
}

.hm-articleCard__tag:last-child {
  margin-right: 0
}

.hm-articleCard__contact {
  margin: 0 0 60px
}

.hm-articleCard__contact--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.hm-articleCard__contact--title {
  width: 35px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #000000
}

.hm-articleCard__contact--text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #000000
}

.hm-articleCard__button {
  width: calc(100% - 60px);
  position: absolute;
  bottom: 25px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

@media only screen and (min-width: 768px) and (max-width: 1159px) {
  .hm-articleCard__button {
    width: calc(100% - 40px)
  }
}

.hm-articleCard__button--item {
  width: 47.8%
}

.hm-articleCard__button.-no-absolute {
  width: 100%;
  padding: 0 40px;
  position: static;
  -webkit-transform: none;
  transform: none
}

.hm-articleCard--detail {
  border-radius: 80px 10px 10px 10px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  height: 100%
}

.hm-articleCard--detail .hm-articleCard__thumb {
  border-radius: 80px 10px 0 0
}

.hm-articleCard--detail .hm-articleCard__thumb img {
  border-radius: 60px 10px 0 0
}

.hm-articleCard__2col-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.hm-articleCard__2col-img .hm-articleCard__thumb {
  margin: 0;
  border-radius: 0;
  width: 150px;
  height: auto
}

@media only screen and (max-width: 767px) {
  .hm-articleCard__2col-img .hm-articleCard__thumb {
    width: 120px
  }
}

.hm-articleCard__2col-img .hm-articleCard__thumb img {
  border-radius: 0
}

.hm-articleCard__2col-img .hm-articleCard__title {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 20px;
  margin: 0;
  line-height: 1.3
}

@media only screen and (max-width: 767px) {
  .hm-articleCard__2col-img .hm-articleCard__title {
    padding: 0 15px
  }
}

.hm-articleCard__head {
  background-color: #f5f5f5;
  position: relative
}

.hm-articleCard--map-detail {
  border-radius: 0;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  height: 100%
}

.hm-articleCard--map-detail .hm-articleCard__contact--text {
  font-size: 1.4rem
}

@media only screen and (max-width: 767px) {
  .hm-articleCard--map-detail .hm-articleCard__contact--text {
    font-size: 12px
  }
}

.hm-articleCard--map-detail .hm-articleCard__wrap {
  padding: 40px 40px 20px 40px;
  max-height: 470px;
  overflow-y: auto
}

@media only screen and (max-width: 767px) {
  .hm-articleCard--map-detail .hm-articleCard__wrap {
    padding: 20px 20px 10px 20px;
    max-height: 360px
  }
}

.hm-articleCard--map-detail .hm-articleCard__contact {
  margin: 0 0 40px
}

@media only screen and (max-width: 767px) {
  .hm-articleCard--map-detail .hm-articleCard__contact {
    margin: 0 0 20px
  }
}

.hm-articleCard--map-detail .hm-articleCard__contact--title {
  color: #2f3093
}

.hm-articleCard--result {
  border-radius: 60px 10px 10px 10px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  height: 100%
}

@media only screen and (max-width: 767px) {
  .hm-articleCard--result {
    border-radius: 30px 10px 10px 10px
  }
}

.hm-articleCard--result .hm-articleCard__thumb {
  border-radius: 60px 10px 0 0
}

@media only screen and (max-width: 767px) {
  .hm-articleCard--result .hm-articleCard__thumb {
    border-radius: 30px 10px 0 0
  }
}

.hm-articleCard--result .hm-articleCard__thumb img {
  border-radius: 60px 10px 0 0
}

@media only screen and (max-width: 767px) {
  .hm-articleCard--result .hm-articleCard__thumb img {
    border-radius: 30px 10px 0 0
  }
}

.hm-articleCard__label {
  cursor: pointer
}

.hm-articleCard__checkbox {
  position: absolute;
  z-index: 2;
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}

.hm-articleCard__checkbox+span::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: inline-block;
  content: '';
  width: 30px;
  height: 30px;
  border: 2px solid #bfc6e9;
  background-color: #ffffff;
  border-radius: 4px;
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease
}

@media only screen and (max-width: 767px) {
  .hm-articleCard__checkbox+span::before {
    width: 18px;
    height: 18px
  }
}

.hm-articleCard__checkbox+span::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 60px 10px 10px 10px;
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease
}

@media only screen and (max-width: 767px) {
  .hm-articleCard__checkbox+span::after {
    border-radius: 30px 10px 10px 10px
  }
}

.hm-articleCard__checkbox:checked+span::before {
  border: 2px solid #f46515;
  background-color: #f46515;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224px%22%20height%3D%2218px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22rgb(255%2C%20255%2C%20255)%22%20d%3D%22M23.136%2C3.598%20L9.348%2C17.386%20L0.863%2C8.901%20L4.44%2C5.719%20L9.348%2C11.22%20L19.954%2C0.416%20L23.136%2C3.598%20Z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: 1px 4px
}

@media only screen and (max-width: 767px) {
  .hm-articleCard__checkbox:checked+span::before {
    background-size: contain;
    background-position: 0 2px
  }
}

.hm-articleCard__checkbox:checked+span::after {
  background-color: rgba(0, 0, 0, 0.4)
}

.hm-articleCard.--read-short .hm-articleCard__read {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical
}


.hm-icon-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  background-color: #ffddca;
  color: #f46515
}

.hm-icon-open__date {
  margin: 0 0 5px;
  line-height: 1;
  font-size: 1.6rem
}

.hm-icon-open__year {
  font-size: 1rem;
  line-height: 1
}

.hm-icon-open__text {
  line-height: 1;
  font-size: 1.1rem
}

.hm-icon-open.normal {
  background-color: #ffd3d3;
  color: #e32323
}

.hm-icon-open.normal .hm-icon-open__text {
  font-size: 1.0rem;
  -webkit-transform: scale(0.8);
  transform: scale(0.8)
}

.hm-icon-open.new {
  background-color: #e32323;
  color: #ffffff
}

.hm-icon-open.renewal-open {
  background-color: #2f3093;
  color: #ffffff
}

.hm-icon-open.renewal-open .hm-icon-open__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  font-size: 1.0rem
}

@media only screen and (max-width: 767px) {
  .hm-icon-open.renewal-open .hm-icon-open__text {
    -webkit-transform: scale(0.8);
    transform: scale(0.8)
  }
}

.hm-icon-open.renewal {
  background-color: #bfc6e9;
  color: #2f3093
}

.hm-icon-open.renewal .hm-icon-open__date {
  font-size: 1.4rem
}

.hm-icon-open.renewal .hm-icon-open__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.0rem;
  -webkit-transform: scale(0.8);
  transform: scale(0.8)
}

@media only screen and (max-width: 767px) {
  .hm-icon-open.renewal .hm-icon-open__text {
    white-space: pre;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    margin-right: 20px
  }
}

.hm-icon-open.building {
  background-color: #4c4c4c;
  color: #ffffff
}

.hm-icon-open.building .hm-icon-open__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.1rem
}

@media only screen and (min-width: 768px) and (max-width: 1159px) {
  .hm-icon-open {
    width: 68px;
    height: 68px
  }

  .hm-icon-open__date {
    margin: 0 0 3px;
    line-height: 1;
    font-size: 1.3rem
  }

  .hm-icon-open__text {
    line-height: 1;
    font-size: 1.0rem
  }
}

@media only screen and (max-width: 767px) {
  .hm-icon-open {
    width: 60px;
    height: 60px
  }

  .hm-icon-open__date {
    margin: 0 0 3px;
    line-height: 1;
    font-size: 15px
  }

  .hm-icon-open__text {
    line-height: 1;
    font-size: 10px
  }
}

.hm-articleCard__icon.open-exhibition .hm-icon-open__date {
  margin: 2px 0
}

html {
  font-size: 62.5%
}


.hm-searchresult-block {
  margin: 0 0 115px
}

@media only screen and (max-width: 767px) {
  .hm-searchresult-block {
    margin: 0 0 75px
  }
}

.hm-searchresult-block__inner {
  max-width: 900px;
  margin: 0 auto
}

.hm-searchresult-block .hm-search-loading {
  content: "";
  background-image: url("../images/common/loading.gif");
  background-repeat: no-repeat;
  background-size: cover;
  width: 64px;
  height: 64px;
  margin: 0 auto
}

.hm-search-select-info {
  /* margin-block-end: 20px; */
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #000000
}

@media only screen and (max-width: 767px) {
  .hm-search-select-info {
    margin: 0 0 30px;
    font-size: 14px
  }
}

.hm-search-select-info span {
  font-size: 2.56rem;
  color: #cc0000
}

@media only screen and (max-width: 767px) {
  .hm-search-select-info span {
    font-size: 19.6px
  }
}

.hm-search-result-count {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #000000
}

@media only screen and (max-width: 767px) {
  .hm-search-result-count {
    margin: 0 0 20px;
    font-size: 12px
  }
}

.hm-search-result-count span {
  font-size: 1.96rem
}

@media only screen and (max-width: 767px) {
  .hm-search-result-count span {
    font-size: 16.8px
  }
}

.hm-s-overray {
  position: fixed;
  z-index: 21;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: none
}

.hm-s-err {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 60px 100px;
  border-radius: 10px
}

@media only screen and (max-width: 767px) {
  .hm-s-err {
    border-radius: 5px;
    width: calc(100% - 60px);
    margin: 0 auto;
    padding: 35px 45px
  }
}

.hm-s-err__inner {
  text-align: center
}

.hm-s-err__txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: #000000;
  margin: 0 0 40px
}

@media only screen and (max-width: 767px) {
  .hm-s-err__txt {
    margin: 0 0 20px;
    font-size: 14px
  }
}


.btn-popup-err {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  max-width: 200px;
  margin: 0 auto;
  padding: 0 25px;
  border-radius: 30px;
  height: 60px;
  border: solid 1px #2f3093;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #2f3093;
  background-color: #ffffff;
  cursor: pointer
}

@media screen and (min-width: 769px) {
  .btn-popup-err {
    -webkit-transition: color 250ms ease, background-color 250ms ease;
    transition: color 250ms ease, background-color 250ms ease
  }

  .btn-popup-err:hover {
    color: #ffffff;
    background-color: #2f3093
  }
}

@media only screen and (max-width: 767px) {
  .btn-popup-err {
    line-height: 1.5;
    font-size: 16px
  }
}

/*---------------------- 希望日チェックボックス連動用 ここから ----------------------*/
.border-bottom-none {
  border-bottom: none !important;
}

.border-top-none {
  border-top: none !important;
}

.border-top-none td {
  padding-top: 10px;
}

.border-top-none.padding-hidden td {
  padding: 0;
}

.btn-container {
  position: relative;
  left: -210px;
  width: calc(100% + 210px);
}

.house-addition {
  max-width: 280px;
  color: #ffffff;
  background-color: #2f3093;
  border: solid 1px #2f3093;
  white-space: nowrap;
  cursor: pointer;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 30px;
  height: 60px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.0rem;
  text-align: center;
  margin: 0 auto;
}

.house-addition.disabled {
  background-color: #999999;
  border: solid 1px #999999;
  pointer-events: none;
}

@media screen and (min-width: 769px) {
  .house-addition {
    -webkit-transition: color 250ms ease, background-color 250ms ease;
    transition: color 250ms ease, background-color 250ms ease;
  }

  .house-addition:hover {
    color: #2f3093;
    background-color: #ffffff;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1159px) {
  .house-addition {
    font-size: 1.6rem;
    border-radius: 25px;
    height: 50px;
  }
}


.hm-table-form__date-select:not(:last-child) {
  padding: 0;
  border-bottom: none;
}

.hm-table-form__date-select {
  padding: 0 0 10px;
  margin: 0;
  border-bottom: none;
}

.hm-table-form__date-select:nth-of-type(1) {
  margin-top: 40px;
}

.hm-table-form__date-select:not(:nth-of-type(1)) {
  border-top: dotted 1px #e5e5e5;
  padding-top: 40px;
  margin-top: 30px;
}

@media only screen and (max-width: 767px) {
  .btn-container {
    left: 0;
    width: 100%;
  }

  .house-addition {
    border-radius: 20px;
    height: 40px;
    font-size: 15px;
  }

  .hm-table-form__date-select:nth-of-type(1) {
    margin-top: 30px;
  }

  .hm-table-form__date-select:not(:nth-of-type(1)) {
    border-top: dotted 1px #e5e5e5;
    padding-top: 30px;
    margin-top: 30px;
  }
}

.makerLogo {
  margin-top: 10px;
  width: 80%;
  margin-inline: auto;
  margin-top: auto;
}

/*---------------------- 希望日チェックボックス連動用 ここまで ----------------------*/


.confirmationWrap {
  font-size: 20px;
}

/* アンケート */
.hj-wrap {
  display: none;
}

.quizNow .hj-wrap {
  /* display: block; */
  display: flex;
}


/* 個別部ここまで
---------- ---------- */