@charset "UTF-8";

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%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #000;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  background: #fff;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  color: #000;
  font-family: "Yu Gothic", "游ゴシック", "YuGothic", sans-serif;
  background: #fff;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.boxShadow {
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.0862745098);
}

.boxShadow-s {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.0862745098);
}

.boxShadow-ss {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.0862745098);
}

.textShadow {
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.1882352941);
}

.textShadow-s {
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.1882352941);
}

.textShadow-ss {
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.1882352941);
}

.color-yell {
  color: #FFF8A0;
}

/* 全体に適用 */
* {
  -webkit-tap-highlight-color: transparent;
}

/* もしくはラベル／ラジオボタンだけに限定 */
label,
input[type=radio] {
  -webkit-tap-highlight-color: transparent;
}

/* フォーカス時のアウトラインを消したい場合 */
input[type=radio]:focus {
  outline: none;
}

a {
  text-decoration: none;
  transition: 0.3s;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

.btn {
  position: relative;
  display: inline-block;
  z-index: 10;
  transform: scale(1);
}

@media (hover: hover) {
  .btn:hover {
    transform: scale(0.9);
  }
}

.center {
  text-align: center;
}

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

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

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

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

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

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

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

.mb-50 {
  margin-bottom: 50px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-0 {
  margin: 0px !important;
}

.pt-100 {
  padding-top: 100px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-30 {
  padding-top: 30px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-40 {
  padding-bottom: 40px;
}

/* iOS Data Detectors によるリンク装飾を無効化 */
a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  pointer-events: none;
  /* クリックも無効化したい場合 */
}

.header {
  position: fixed;
  background: #fff;
  height: 66px;
  width: 100%;
  z-index: 9;
}

@media screen and (min-width:768px) {
  .header {
    height: min(4.6875vw, 90px);
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  height: 100%;
  margin: auto;
}

@media screen and (min-width:768px) {
  .header__inner {
    width: min(66.40625vw, 1275px);
  }
}

.header__logo {
  width: 126px;
  margin-left: -16px;
}

@media screen and (min-width:768px) {
  .header__logo {
    margin-left: min(0.78125vw, 15px);
    width: min(9.2708333333vw, 178px);
  }
}

.header__link {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.71;
  letter-spacing: 0em;
  background: #0059A4;
  padding: 7px 13px;
}

@media screen and (min-width:768px) {
  .header__link {
    font-size: min(1.25vw, 24px);
    line-height: 1.7;
    padding: min(0.5208333333vw, 10px) min(3.125vw, 60px);
  }
}

.footer {
  background: #222222;
}

.footer__inner {
  width: 90%;
  margin: auto;
  padding: 50px 0 22px;
  text-align: right;
}

@media screen and (min-width:768px) {
  .footer__inner {
    text-align: left;
    width: min(64.6354166667vw, 1241px);
    padding: min(2.6041666667vw, 50px) 0 min(2.6041666667vw, 50px);
  }
}

.footer .footer-logo {
  width: 75%;
  max-width: 407px;
  margin: 0 0 20px;
}

@media screen and (min-width:768px) {
  .footer .footer-logo {
    margin: 0 auto;
    width: min(21.1979166667vw, 407px);
  }
}

.footer__sns {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  margin: 36px 10px 11px 0;
}

@media screen and (min-width:768px) {
  .footer__sns {
    justify-content: center;
    gap: min(0.625vw, 12px);
    margin: min(2.6041666667vw, 50px) 0 min(1.3020833333vw, 25px);
  }
}

.footer__sns img {
  width: 44px;
}

@media screen and (min-width:768px) {
  .footer__sns img {
    width: min(1.71875vw, 33px);
  }
}

.footer__sns::before {
  content: "";
  display: block;
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translate(-50%, 0);
  background: url(../../assets/img/main/follow_txt.svg) no-repeat center center/contain;
  width: 115px;
  height: 15px;
}

@media screen and (min-width:768px) {
  .footer__sns::before {
    top: max(-1.0416666667vw, -20px);
    width: min(4.5833333333vw, 88px);
    height: min(0.5729166667vw, 11px);
  }
}

@media screen and (max-width:767px) {
  .footer__sns--pc {
    display: none;
  }
}

.footer__sns--sp {
  display: inline-flex;
}

@media screen and (min-width:768px) {
  .footer__sns--sp {
    display: none;
  }
}

.footer .footer-company-info,
.footer .footer-license-info {
  margin-bottom: 10px;
}

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

  .footer .footer-company-info,
  .footer .footer-license-info {
    margin-bottom: min(1.1979166667vw, 23px);
  }
}

.footer .footer-address,
.footer .footer-license {
  font-size: 10px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  line-height: 1.75;
  letter-spacing: 0em;
}

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

  .footer .footer-address,
  .footer .footer-license {
    font-size: min(0.8333333333vw, 16px);
    line-height: 1.75;
    text-align: center;
  }
}

.footer .copy {
  font-size: 10px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 2.8;
  letter-spacing: 0em;
}

@media screen and (min-width:768px) {
  .footer .copy {
    font-size: min(0.8333333333vw, 16px);
    line-height: 1.75;
    margin-top: min(2.2395833333vw, 43px);
  }
}

.footer .swiper--footer {
  position: relative;
  background: #fff;
  z-index: 1;
  padding: 10px 0;
}

@media screen and (min-width:768px) {
  .footer .swiper--footer {
    padding: min(0.78125vw, 15px) 0;
  }
}

.footer .swiper--footer .swiper-wrapper {
  transition-timing-function: linear;
}

.inner,
.inner-s {
  width: 86.6%;
  height: 100%;
  margin: auto;
}

.fv {
  position: relative;
  overflow: hidden;
}

.fv__inner {
  background: url(../../assets/img/fv/fv_bg_pc.png) no-repeat center center/cover;
  width: 100%;
  height: auto;
}

@media screen and (min-width:768px) {
  .fv__inner {
    height: min(43.75vw, 840px);
  }
}

.fv__content {
  width: 90%;
  margin: auto;
  padding: 5px 0 31px;
}

@media screen and (min-width:768px) {
  .fv__content {
    width: min(66.40625vw, 1275px);
    padding: min(6.7708333333vw, 130px) 0 0;
  }
}

.fv__content--slide {
  background: #fff;
}

.fv__top {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width:768px) {
  .fv__top {
    flex-direction: row;
    gap: min(5.2083333333vw, 100px);
  }
}

.fv__top picture img {
  width: 100%;
  margin: auto;
  margin-left: -6%;
  min-width: 379px;
}

@media screen and (min-width:768px) {
  .fv__top picture img {
    margin: auto;
    min-width: auto;
  }
}

.fv__top picture:last-child img {
  width: 78%;
  min-width: auto;
  margin: 7px auto 0;
}

@media screen and (min-width:768px) {
  .fv__top picture:last-child img {
    min-width: auto;
    width: min(28.0208333333vw, 538px);
    margin: 0;
  }
}

.fv__bottom {
  display: flex;
  flex-direction: column-reverse;
  margin-top: 15px;
}

@media screen and (min-width:768px) {
  .fv__bottom {
    flex-direction: row;
    gap: min(5.2083333333vw, 100px);
    margin-top: min(1.0416666667vw, 20px);
  }
}

.fv__bottom picture img {
  margin-top: 0;
  width: 103%;
  margin: 16px auto 0;
}

@media screen and (max-width: 425px) {
  .fv__bottom picture img {
    margin: 9px auto 0 -5px;
  }
}

@media screen and (min-width:768px) {
  .fv__bottom picture img {
    margin: 0;
    width: min(43.0729166667vw, 827px);
  }
}

.fv__bottom picture:last-child img {
  width: 86%;
  margin: auto;
}

@media screen and (min-width:768px) {
  .fv__bottom picture:last-child img {
    width: 100%;
    margin-top: max(-0.78125vw, -15px);
  }
}

.fv .swiper--fv {
  position: relative;
  z-index: 1;
  padding: 10px 0;
}

@media screen and (min-width:768px) {
  .fv .swiper--fv {
    padding: min(0.78125vw, 15px) 0;
  }
}

.fv .swiper--fv .swiper-wrapper {
  transition-timing-function: linear;
}

.campaign {
  position: relative;
  background: linear-gradient(to bottom right, #DEDEDE 0%, #FFFFFF 45%, #E6E6E6 65%, #FFFFFF 75%, #E6E6E6 100%);
}

.campaign__inner {
  width: 90%;
  margin: auto;
  padding: 30px 0 50px;
}

@media screen and (min-width:768px) {
  .campaign__inner {
    width: min(66.5625vw, 1278px);
    padding: min(4.1666666667vw, 80px) 0 min(6.7708333333vw, 130px);
  }
}

.campaign__title {
  font-size: 24px;
  font-weight: 700;
  color: #0059A4;
  text-align: center;
  line-height: 1.375;
  letter-spacing: 0em;
  font-family: "Zen Old Mincho", serif;
}

@media screen and (min-width:768px) {
  .campaign__title {
    font-size: min(2.5vw, 48px);
    line-height: 1.29;
  }
}

.campaign__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

@media screen and (min-width:768px) {
  .campaign__list {
    gap: min(3.125vw, 60px);
    margin-top: min(2.2395833333vw, 43px);
  }
}

.modelhouse {
  position: relative;
  background: #C4EBFF;
  overflow: hidden;
}

.modelhouse--bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: url(../../assets/img/main/modelhouse_bg_pc.png) repeat-y center top;
  background-size: contain;
  opacity: 0.2;
  mix-blend-mode: multiply;
}

.modelhouse__inner {
  width: 90%;
  margin: auto;
  padding: 54px 0 33px;
}

@media screen and (min-width:768px) {
  .modelhouse__inner {
    width: min(64.6354166667vw, 1241px);
    padding: min(7.2916666667vw, 140px) 0 50px;
  }
}

.modelhouse .section__title {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  color: #0059A4;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0em;
  font-family: "Zen Old Mincho", serif;
  margin-bottom: 34px;
  padding: 0;
  z-index: 1;
}

@media screen and (min-width:768px) {
  .modelhouse .section__title {
    font-size: min(2.8125vw, 54px);
    line-height: 1.2;
    margin-bottom: min(4.0104166667vw, 77px);
    padding-right: min(2.0833333333vw, 40px);
  }
}

.modelhouse .section__title .subtitle {
  font-size: 19px;
  font-weight: 700;
  color: #0059A4;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0em;
  font-family: "Zen Old Mincho", serif;
  z-index: 1;
}

@media screen and (min-width:768px) {
  .modelhouse .section__title .subtitle {
    font-size: min(1.6145833333vw, 31px);
    line-height: 1;
  }
}

.modelhouse .section__title::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -66%);
  background: url(../../assets/img/main/hokkaido.png) no-repeat center center/contain;
  width: 99px;
  height: 94px;
  z-index: -10;
}

@media screen and (min-width:768px) {
  .modelhouse .section__title::before {
    transform: translate(-69%, -70%);
    width: min(8.6458333333vw, 166px);
    height: min(8.1770833333vw, 157px);
  }
}

.modelhouse__filter {
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
  padding: 20px 15px 15px;
  z-index: 1;
  text-align: center;
}

@media screen and (min-width:768px) {
  .modelhouse__filter {
    padding: min(2.2395833333vw, 43px) min(10.166667vw, 198px) min(2.6041666667vw, 50px);
    margin-bottom: min(1.8229166667vw, 35px);
  }
}

.modelhouse__filter-label {
  font-size: 16px;
  font-weight: 700;
  color: #0059A4;
  text-align: left;
  line-height: 1.68;
  letter-spacing: 0em;
  border-left: 4px solid #0059A4;
  padding-left: 14px;
  margin-bottom: 10px;
  margin-left: 10px;
}

@media screen and (min-width:768px) {
  .modelhouse__filter-label {
    font-size: min(1.25vw, 24px);
    line-height: 1.7;
    border-left: min(0.2083333333vw, 4px) solid #0059A4;
    padding-left: min(0.8333333333vw, 16px);
    margin: auto 0;
    margin-bottom: 20px;
    margin-left: 10px;
  }
}

.modelhouse__filter-block {
  margin-bottom: 28px;
}

@media screen and (min-width:768px) {
  .modelhouse__filter-block {
    margin-bottom: min(2.2916666667vw, 44px);
  }
}

.modelhouse__filter-block:last-child {
  margin-bottom: 0;
}

.modelhouse__filter-block input[type=radio] {
  display: none;
}

.modelhouse__filter-block label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #0059A4;
  text-align: left;
  line-height: 1.71;
  letter-spacing: 0em;
  width: 151px;
  height: 37px;
  margin: 0 0 3px;
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2117647059);
  cursor: pointer;
  transition: all 0.2s ease;
}

@media screen and (min-width:768px) {
  .modelhouse__filter-block label {
    font-size: min(1.1979166667vw, 23px);
    line-height: 1.73;
    margin-right: min(0.5208333333vw, 10px);
    width: min(10vw, 192px);
    height: min(2.96875vw, 57px);
  }
}

.modelhouse__filter-block label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.modelhouse__filter-block input[type=radio]:checked+span {
  background-color: #0059A4;
  color: #fff;
}

.modelhouse__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #fff;
  padding: 17px 20px 30px;
  margin-bottom: 38px;
  z-index: 1;
}

@media screen and (min-width:768px) {
  .modelhouse__item {
    flex-direction: row;
    gap: min(3.6458333333vw, 70px);
    padding: min(1.0416666667vw, 20px) min(2.34375vw, 45px) min(0.78125vw, 15px) min(1.0416666667vw, 20px);
    margin-bottom: min(2.2916666667vw, 44px);
  }
}

.modelhouse__item:last-child {
  margin-bottom: 0;
}

.modelhouse__imgWrap {
  position: relative;
  width: 100%;
  max-width: 532px;
}

@media screen and (min-width:768px) {
  .modelhouse__imgWrap {
    max-width: min(27.7083333333vw, 532px);
    width: 50%;
  }
}

.modelhouse__imgWrap img {
  width: 100%;
  max-width: 532px;
  aspect-ratio: 310/255;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (min-width:768px) {
  .modelhouse__imgWrap img {
    max-width: min(27.7083333333vw, 532px);
    aspect-ratio: 532/436;
  }
}

.modelhouse__body {
  width: 100%;
  max-width: 571px;
}

@media screen and (min-width:768px) {
  .modelhouse__body {
    width: 57%;
    padding-top: min(1.40625vw, 27px);
  }
}

.modelhouse__area,
.modelhouse__title {
  font-size: 18px;
  font-weight: 700;
  color: #0059A4;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0em;
  font-family: "Zen Old Mincho", serif;
}

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

  .modelhouse__area,
  .modelhouse__title {
    font-size: min(1.25vw, 24px);
    line-height: 1.375;
  }
}

.modelhouse .address-block {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 5px 0 14px;
}

@media screen and (min-width:768px) {
  .modelhouse .address-block {
    gap: min(0.6770833333vw, 13px);
    margin: min(0.2604166667vw, 5px) 0 min(0.5208333333vw, 10px) 0;
  }
}

.modelhouse__address {
  font-size: 14px;
  font-weight: 500;
  color: #0059A4;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0em;
}

@media screen and (min-width:768px) {
  .modelhouse__address {
    font-size: min(0.9375vw, 18px);
    line-height: 2;
  }
}

.modelhouse__map {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0em;
  padding: 2px 11px;
  background: #0059A4;
}

@media screen and (min-width:768px) {
  .modelhouse__map {
    font-size: min(0.7291666667vw, 14px);
    line-height: 1.5;
    padding: min(0.1041666667vw, 2px) min(0.5208333333vw, 10px);
  }
}

.modelhouse .label-block {
  position: absolute;
  bottom: 10px;
  left: 0;
  z-index: 2;
  font-family: "Zen Old Mincho", serif;
}

@media screen and (min-width:768px) {
  .modelhouse .label-block {
    bottom: min(1.0416666667vw, 20px);
  }
}

.modelhouse__label,
.modelhouse__label2 {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: #0059A4;
  text-align: left;
  line-height: 1.75;
  letter-spacing: 0em;
  padding: 2px 9px 2px 10px;
  margin-bottom: 4px;
}

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

  .modelhouse__label,
  .modelhouse__label2 {
    bottom: min(3.125vw, 60px);
    font-size: min(0.9375vw, 18px);
    line-height: 1.75;
    padding: min(0.1041666667vw, 2px) min(0.5208333333vw, 10px);
    margin-bottom: min(0.2604166667vw, 5px);
  }
}

.modelhouse__points {
  font-size: 12px;
  font-weight: 500;
  color: #0059A4;
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0em;
  background: #ffe200;
  padding: 8px 10px;
}

@media screen and (min-width:768px) {
  .modelhouse__points {
    font-size: min(0.8333333333vw, 16px);
    line-height: 1.125;
  }
}

.modelhouse__points span {
  display: inline-block;
  font-weight: 400;
}

@media screen and (min-width:768px) {
  .modelhouse__points span {
    margin-bottom: min(0.5208333333vw, 10px);
  }
}

.modelhouse__points span::before {
  content: "";
  display: inline-block;
  background: url(../../assets/img/main/hand-point.png) no-repeat bottom center/contain;
  width: 18px;
  height: 12px;
  z-index: 1;
}

@media screen and (min-width:768px) {
  .modelhouse__points span::before {
    width: min(1.1458333333vw, 22px);
    height: min(0.8333333333vw, 16px);
  }
}

.modelhouse__tags {
  margin-top: 15px;
  margin-bottom: -5px;
}

@media screen and (min-width:768px) {
  .modelhouse__tags {
    margin-top: min(0.625vw, 12px);
    margin-bottom: 0;
  }
}

.modelhouse__tags li {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #0059A4;
  text-align: left;
  line-height: 1;
  letter-spacing: 0em;
  margin: 0 3px 6px 0;
  padding: 8px;
  background: #E1E9ED;
}

@media screen and (min-width:768px) {
  .modelhouse__tags li {
    font-size: min(0.625vw, 12px);
    line-height: 1;
    padding: min(0.4166666667vw, 8px);
    margin: 0 min(0.15625vw, 3px) min(0.3125vw, 6px) 0;
  }
}

.modelhouse__spec {
  display: flex;
  font-size: 12px;
  font-weight: 500;
  color: #000000;
  text-align: left;
  line-height: 3;
  letter-spacing: 0em;
}

@media screen and (min-width:768px) {
  .modelhouse__spec {
    font-size: min(0.8333333333vw, 16px);
    line-height: 2.25;
  }
}

.modelhouse__spec dd {
  margin-right: 1em;
}

.modelhouse__spec dd.mr-0 {
  margin-right: 0;
}

.modelhouse__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.71;
  letter-spacing: 0em;
  background: #0059A4;
  max-width: 310px;
  height: 45px;
  margin-top: 4px;
}

@media screen and (min-width:768px) {
  .modelhouse__btn {
    font-size: min(1.25vw, 24px);
    line-height: 1.7;
    text-align: left;
    max-width: min(16.25vw, 312px);
    height: min(2.9166666667vw, 56px);
    margin-top: min(0.9375vw, 18px);
  }
}

.modelhouse__empty {
  font-size: 12px;
  font-weight: 500;
  color: #0059A4;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0em;
  height: 100px;
}

@media screen and (min-width:768px) {
  .modelhouse__empty {
    font-size: min(0.8333333333vw, 16px);
    line-height: 1.5;
    height: min(24.4791666667vw, 470px);
  }
}



.modelhouse .modelhouse_caution p {
  font-size: 10px;
  text-align: center;
  margin-top: 8%;
}

@media screen and (min-width:768px) {
  .modelhouse .modelhouse_caution p {
    font-size: 14px;
  }
}

@media screen and (min-width:768px) {
  .sp-inlineblock {
    display: inline-block !important;
  }
}

@media screen and (max-width:767px) {
  .sp-inlineblock {
    display: none !important;
  }
}

@media screen and (max-width:767px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width:768px) {
  .pc-only {
    display: block !important;
  }
}

@media screen and (max-width:767px) {
  .sp-inlineblocknone {
    display: inline-block !important;
  }
}

@media screen and (min-width:768px) {
  .sp-inlineblocknone {
    display: none !important;
  }
}

@media screen and (max-width:767px) {
  .sp-only {
    display: block !important;
  }
}

@media screen and (min-width:768px) {
  .sp-only {
    display: none !important;
  }


  /*# sourceMappingURL=style.css.map */