@charset "UTF-8";
/* 資料請求用 css */
/*アコーディオン部分*/
.section.Lv3 {
  margin-bottom: 0;
}

/*カタログ選択*/
.scroll .catalogCol .img {
  width: 120px;
  /*table-cell使ってるため1カラムの幅をここで調整*/
  display: block;
}

.scroll .catalogCol {
  /* display: flex; */
  position: relative;
  padding: 20px 15px;
  border-right: 1px dotted #ccc;
  text-align: center;
  padding: 0 15px;
  opacity: 0;
  visibility: hidden;
  /*   transition: .1s; */
  /* flex-direction: row; */
  /* width: 150px; */
  /* flex-wrap: wrap; */
}

.inner.open .scroll .catalogCol {
  padding: 20px 15px;
  opacity: 1;
  visibility: visible;
  /* transition: .2s .1s; */
}

.scroll .catalogCol.colSelected {
  background: #FFF5C8;
}

.scroll .catalogCol h3 {
  color: rgb(44, 82, 170);
  font-weight: bold;
  font-size: 14px !important;
  margin: 5px 0;
  display: block;
  text-align: left;
  line-height: 1.3;
}

.scroll .catalogCol .new {
  float: right;
  margin: 0;
  position: absolute;
  background: #ec9f11;
  color: #FFF;
  padding: 0px 3px;
  font-size: 12px;
  font-weight: bold;
  top: 0;
  right: 0;
}

.scroll .catalogCol .img {
  display: inline-block;
  height: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  /* transition: .3s; */
}

.inner.open .scroll .catalogCol .img {
  display: inline-block;
  height: 120px;
  margin: 0;
  opacity: 1;
  visibility: visible;
  /* transition: .3s; */
}

.scroll .catalogCol .img img {
  width: 100%;
}

.scroll .catalogCol .ftBox {
  height: 0;
  opacity: 0;
  visibility: hidden;
  /* transition: .3s; */
}

.inner.open .scroll .catalogCol .ftBox {
  display: block;
  height: auto;
  /* max-height: 190px; */
  opacity: 1;
  visibility: visible;
  /* transition: .3s; */
  /* margin-bottom:  20px; */
  padding-bottom: 56px;
}

.scroll .catalogCol .ftBox h3 {
  margin: 8px 0;
}

.scroll .catalogCol .ftBox .txt1col {
  margin-bottom: 2.1em;
}

.scroll .catalogCol .ftBox p,
.scroll .catalogCol dt,
.scroll .catalogCol dd {
  text-align: left;
  font-weight: bold;
  font-size: 12px;
}

.catalogNum {
  font-weight: bold;
  color: rgb(44, 82, 170);
  padding: 0;
  font-size: 12px;
  padding: 0;
  line-height: 0;
  opacity: 0;
  visibility: hidden;
  /* transition: .1s; */
}
.catalogNum span {
  color: #ec9f11;
  font-size: 15px;
}

.inner.open .catalogNum {
  padding: 5px 0;
  line-height: 1.4;
  opacity: 1;
  visibility: visible;
  /* transition: .2s .1s; */
}

/* 選択中のカタログ表示 */
#selectCatalogContainer {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 60px;
  position: fixed;
  overflow: hidden;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  background: rgba(255, 255, 255, 0.95);
  z-index: 100;
  -webkit-box-shadow: 0 3px 6px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 6px 4px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#selectCatalogContainer.open {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#selectCatalogContainer * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#go_to_top_smt {
  z-index: 99 !important;
}

.scc-wrap {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.scc-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
  padding: 16px clamp(12px, 14.5454545455vw + -34.5454545455px, 20px) 16px clamp(7px, 14.5454545455vw + -39.5454545455px, 15px);
  border-radius: 10px 10px 0 0;
  background: #2c52aa;
  color: white;
}

#selectCatalogContainer.open .scc-header {
  padding-bottom: 28px;
}
#selectCatalogContainer.open .scc-header::after {
  position: absolute;
  content: "";
  width: 92%;
  height: 1px;
  background-color: white;
  bottom: 16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.scc-btn-toggle + p {
  font-size: 15px;
  font-weight: bold;
}

.scc-btn-submit > a, .scc-btn-submit > input {
  -webkit-appearance: none;
  padding: 8px clamp(4px, 14.5454545455vw + -42.5454545455px, 12px);
  border-radius: 8px;
  background: #ec9f11;
  border: 0 solid #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: white;
  font-family: "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  pointer-events: auto;
}
.scc-btn-submit > a:hover, .scc-btn-submit > input:hover {
  background: #ffbc40;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.non-catalog input[type=submit] {
  background: #ddd;
  color: #aaa;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 320px) {
  .scc-btn-toggle + p {
    font-size: 4vw;
  }
  .scc-btn-submit > a {
    font-size: 4vw;
  }
}
.scc-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 8px;
}
.scc-btn.active .scc-btn-toggle {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.scc-btn-toggle {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  background: url(/maison/smp/apply/images/icon_catalog-toggle.svg) no-repeat center/16px 16px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
}

.scc-choose-num {
  display: block;
  width: 20px;
  height: 20px;
  background: #ec9f11;
  border-radius: 20px;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: white;
  font-family: "游ゴシック", YuGothic, Roboto, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.scc-choose-num.non-cnt {
  background: white;
  color: #2c52aa;
}

.scc-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: auto;
  padding: 0 clamp(12px, 14.5454545455vw + -34.5454545455px, 20px) 16px;
  background-color: #2c52aa;
  border: none;
}

.scc-catalog-box {
  width: 100%;
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
  padding: 8px 16px;
  background-color: white;
  border-radius: 5px;
}

.scc-img-catalog {
  width: 64px;
  height: 64px;
}
.scc-img-catalog img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.scc-catalog-name {
  width: calc(100% - 64px - 60px - 16px);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.7142857143;
}

.scc-btn-close {
  position: static;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  padding-bottom: 5px;
  margin-left: auto;
  background: none;
  border: none;
  border-bottom: 1px solid;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #666 !important;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  white-space: nowrap;
  cursor: pointer;
}

/* クッキーオフ時のボタン押せない設定 */
.non-cookie .btn_grad_basic,
.non-cookie .btn_gradCheck01 {
  pointer-events: none;
}

.non-cookie .btn_grad_basic a,
.non-cookie .btn_gradCheck01 label {
  background: #ddd;
  color: #aaa;
  -webkit-box-shadow: none;
          box-shadow: none;
}

body#maison {
  position: relative;
}

/* フッター下部に余白をもたせる */
#footarea {
  /* margin-bottom: 80px; */
  height: 340px;
  display: block;
}

#footarea ul {
  overflow: hidden;
  height: auto;
}

/*電話ボタン*/
.question_tel {
  color: #333333 !important;
  font-weight: normal;
  text-decoration: none !important;
}

.catalogList__headline01 {
  width: calc(100% - 40px);
  height: auto;
  padding: 10px;
  margin: 0 auto 24px;
  background-color: #f5f5f5;
  background-image: none;
  border-left: 7px solid #2c52aa;
  font-size: 20px;
  letter-spacing: 0.04em;
}

.catalogList__lead01 {
  width: calc(100% - 40px);
  margin: 0 auto;
}

.catalogList__note01 {
  width: calc(100% - 40px);
  margin: 0 auto 24px;
}
.catalogList__note01 span {
  display: none;
  color: red;
}
.catalogList__note01 span.-active {
  display: block;
}

.catalogSelect {
  width: 100%;
  padding-bottom: 40px;
  margin: 0 auto -15px;
}

.catalogCol {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  padding: clamp(20px, 18.1818181818vw + -38.1818181818px, 30px) clamp(12px, 10.9090909091vw + -22.9090909091px, 18px);
  border: 2px solid #ccc;
  border-radius: 10px;
}
.catalogCol .img {
  width: 46.1016949153%;
}
.catalogCol .img img {
  width: 100%;
  height: auto;
}
.catalogCol .ftBox {
  width: 47.1186440678%;
}
.catalogCol .ftBox h3 {
  margin-bottom: 8px;
  color: #2c52aa;
}
.catalogCol .new {
  display: inline-block;
  width: 40px;
  padding: 2px 0;
  margin-bottom: 6px;
  background-color: #2c52aa;
  border-radius: 3px;
  color: white;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-align: center;
}
.catalogCol a {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.catalogCol input[type=checkbox] {
  display: none;
}
.catalogCol input[type=checkbox]:checked + label {
  color: red;
}
.catalogCol.select {
  padding-top: 38px;
  padding-bottom: 18px;
}
.catalogCol.select::before {
  position: absolute;
  content: "";
  width: 36px;
  height: 36px;
  background-color: #ccc;
  border-radius: 10px 0;
  top: -2px;
  left: -2px;
}
.catalogCol.select::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: url(/maison/smp/apply/images/icon_check.svg) no-repeat center/100% 100%;
  top: 8px;
  left: 8px;
}
.catalogCol.select.colSelected {
  background-color: #fdf7ea;
  border-color: #EC9F11;
}
.catalogCol.select.colSelected::before {
  background-color: #EC9F11;
}
.catalogCol.select .btn_gradCheck01 {
  display: none;
}

.catalog-list--sp {
  font-family: "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
}
.catalog-list--sp * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.catalog-list--sp .slick-thumb {
  position: relative;
  margin: 0 20px;
}
.catalog-list--sp .slick-thumb .slick-list {
  padding: 0;
  z-index: 1;
}
.catalog-list--sp .slick-thumb .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}
.catalog-list--sp .slick-thumb .slick-slide {
  width: clamp(128px, 40vw, 300px);
  pointer-events: auto;
}
.catalog-list--sp .slick-thumb .slick-slide button {
  width: 100%;
  padding: clamp(15px, 3.6363636364vw + 3.3636363636px, 17px) 16px clamp(13px, 3.6363636364vw + 1.3636363636px, 15px);
  margin: 0;
  background-color: white;
  border: none;
  border-bottom: 2px solid #ccc;
  color: #333;
  font-family: "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
  font-size: clamp(14px, 3.6363636364vw + 2.3636363636px, 16px);
  font-weight: 500;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.catalog-list--sp .slick-thumb .slick-slide.slick-active button, .catalog-list--sp .slick-thumb .slick-slide.slick-current button {
  background-color: #E8F1FD;
  border-bottom: 2px solid #2c52aa;
  color: #2c52aa;
  font-weight: bold;
}
.catalog-list--sp .slick-thumb .slick-arrow {
  position: absolute;
  display: block;
  width: 28px;
  height: 100%;
  padding: 0;
  margin: 0;
  background: white url(/maison/smp/apply/images/icon_arrow01.svg) no-repeat center/100%;
  border: none;
  top: 0;
  pointer-events: auto;
  z-index: 10;
}
.catalog-list--sp .slick-thumb .slick-arrow::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 100%;
  background-color: white;
  top: 0;
  left: -12px;
}
.catalog-list--sp .slick-thumb .slick-arrow::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  top: 0;
  right: -20px;
  pointer-events: none;
}
.catalog-list--sp .slick-thumb .slick-arrow.slick-prev {
  left: clamp(-20px, 18.1818181818vw + -78.1818181818px, -10px);
}
.catalog-list--sp .slick-thumb .slick-arrow.slick-next {
  right: clamp(-20px, 18.1818181818vw + -78.1818181818px, -10px);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.catalog-list--sp .slick-thumb .slick-arrow.slick-disabled {
  background-color: rgba(255, 255, 255, 0);
  opacity: 0.5;
  pointer-events: none;
}
.catalog-list--sp .slick-thumb .slick-arrow.slick-disabled::after {
  content: none;
}
.catalog-list--sp .slick-conts {
  padding-left: 10px;
  padding-right: 10px;
}
.catalog-list--sp .slick-conts .slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(16px, 14.5454545455vw + -30.5454545455px, 24px);
  padding: clamp(16px, 14.5454545455vw + -30.5454545455px, 24px) 10px;
}
.catalog-list--sp .toFirstTabText {
  position: absolute;
  padding: 5px 0 5px 24px;
  font-size: clamp(12px, 3.6363636364vw + 0.3636363636px, 14px);
  line-height: 1.4285714286;
  top: 50%;
  right: clamp(12px, 25.4545454545vw + -69.4545454545px, 26px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.catalog-list--sp .toFirstTabText::before {
  position: absolute;
  content: "←";
  top: 50%;
  left: 8%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.catalog-list--sp .toFirstTabText.-active {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: all 0.3s linear 0.5s;
  transition: all 0.3s linear 0.5s;
}