@charset "utf-8";

/*
 * ヘッダー
 * --------------------------------------------------
 */

.col-100,
.col-m-100 {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.col-100.visible,
.col-m-100.visible {
  opacity: 1;
}

#menu-all {
  transition: 0.5s;
}

.menu-fixed {
  position: fixed;
  height: 80px;
  top: 0;
  width: 100%;
  overflow: hidden;
  z-index: 1000;
  scrollbar-gutter: stable;
}

.menu-fixed>.col-100 {
  background: #ffffff;
  border-bottom: 1px solid rgba(11, 17, 49, 1);
  padding-right: 15px;
}

.menu-main {
  height: 100%;
  width: calc(100% - 80px);
  margin-right: 0px;
  margin-left: auto;
}

.menu-main ul {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  justify-content: end;
}

.menu-main ul li {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-main ul li a {
  display: inline-block;
  padding: 15px;
  text-align: center;
  color: rgba(11, 17, 49, 1);
  font-size: clamp(1.2rem, 1cqi, 1.6rem);
  font-weight: 400;
  line-height: 1;
}

.menu-main ul li a:hover {
  outline: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.menu-main ul li a.home {
  display: inline-block;
  padding: 0px;
}

.menu-main ul li a.home:hover {
  outline: none;
  background: none;
}

.menu-main ul li a.login {
  background: rgba(255, 255, 255, 1);
  color: rgba(11, 17, 49, 1);
  border-radius: 3px;
}

.menu-main ul li a.regist {
  background: #faf000;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  color: #000000;
}

.menu-main ul li a.logged {
  color: rgba(11, 17, 49, 1);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 3px;
}

.menu-logo {
  width: 80px;
  height: 80px;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 10;
}

.header-spacer {
  background: rgba(11, 17, 49, 1);
  height: 80px;
}


.menu-text {
  position: fixed;
  top: 0px;
  left: 80px;
  display: flex;
  width: auto;
  height: 80px;
  padding: 10px 0px;
  color: rgba(11, 17, 49, 1);
  font-size: 1.2rem;
  align-items: start;
}

@media(max-width: 1199px) {

  .menu-text {
    display: flex;
    top: 0px;
    left: 80px;
    width: auto;
    height: 80px;
    padding: 10px 0px;
    align-items: start;
    font-size: 0.8rem;
  }
}

@media(max-width: 767px) {
  body.stop {
    overflow: hidden;
  }

  .menu-text {
    position: fixed;
    top: 0px;
    left: 50px;
    display: flex;
    width: auto;
    height: 50px;
    font-size: 3cqi;
    padding: 0px;
    align-items: center;
    color: rgba(11, 17, 49, 1);
  }

  .menu-fixed {
    position: fixed;
    height: 50px;
    border: none;
    background: #ffffff;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.25);
  }

  .menu-hamburger {
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 1000;
    cursor: pointer;
    background: rgba(11, 17, 49, 0.5);
  }

  .hamburger-btn {
    width: 50px;
    height: 50px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    filter: drop-shadow(0px 0px 1px rgba(255, 255, 255, 1));
  }

  .hamburger-btn .line {
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .menu-logo {
    width: 50px;
    height: 50px;
  }

  .menu-main {
    position: fixed;
    top: 0;
    right: -80vw;
    width: 80vw;
    height: 100vh;
    background-color: rgba(11, 17, 49, 0.75);
    transition: all 0.5s ease;
    padding: 20px;
    z-index: 999;
  }

  .menu-main ul {
    flex-wrap: wrap;
    overscroll-behavior-y: contain;
    height: auto;
  }

  .menu-main>ul>li {
    display: inline-block;
    width: 100%;
  }

  .menu-main>ul>li>ul {
    padding-left: 2.6rem;
  }

  .menu-main>ul>li>ul>li {
    display: inline-block;
    width: 100%;
  }

  .menu-main>ul>li>a {
    letter-spacing: 0.1rem;
    line-height: 2.5;
    color: #ffffff;
    font-size: 1.4rem;
  }

  .open .line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .open .line:nth-child(2) {
    opacity: 0;
  }

  .open .line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .menu-main.active {
    right: 0;
  }

  /* オーバーレイのスタイル */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 500;
  }

  .menu-main>ul>li.menu-contact {
    padding: 15px 0px;
  }

  .menu-main>ul>li.menu-contact a {
    width: 100%;
  }

  .header-spacer {
    height: 50px;
  }
}

/*
 * 特殊レイアウト
 * --------------------------------------------------
 */
body {
  scroll-behavior: smooth;
}

@media(max-width: 767px) {
  body {
    scroll-behavior: auto;
  }
}

.gap-30 {
  gap: 30px;
}

.gap-30 .col-20 {
  width: calc((100% - 120px) * 0.2);
}

.gap-30 .col-25 {
  width: calc((100% - 30px) * 0.25);
}

.gap-30 .col-33 {
  width: calc((100% - 60px) / 3);
}

.gap-30 .col-75 {
  width: calc((100% - 30px) * 0.75);
}

@media(max-width: 767px) {
  .gap-30 {
    gap: 15px;
  }

  .gap-30 .col-m-33 {
    width: calc((100% - 30px) / 3);
  }

  .gap-30 .col-m-50 {
    width: calc((100% - 15px) / 2);
  }

}

/*
 * メイン画像
 * --------------------------------------------------
 */
.swiper-mainimage_wrap {
  container-type: size;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.swiper-mainimage {
  position: relative;
  display: flex;
  align-items: center;
}

.swiper-mainimage .swiper-slide img {
  object-fit: cover;
  aspect-ratio: 16/9;
}

.swiper-family {
  margin: 0px;
  width: 45cqi;
  aspect-ratio: 1 / 1;
  height: auto;
  z-index: 10;
  position: absolute;
  bottom: -10cqh;
  right: 0px;
}

.swiper-medal {
  display: flex;
  flex-wrap: wrap;
  width: 35cqw;
  height: 65cqh;
  position: absolute;
  left: 8cqw;
  top: 15cqh;
  z-index: 10;
}

.swiper-medal-title {
  width: 100%;
  aspect-ratio: 100/48;
  height: auto;
}

.swiper-medal-text_01,
.swiper-medal-text_02,
.swiper-medal-text_03 {
  display: flex;
  align-items: center;
  background: rgba(11, 17, 49, 0.9);
  color: #ffffff;
  font-size: 1.8cqi;
  font-weight: 600;
  letter-spacing: 0.2cqi;
  line-height: 1;
  margin: 0px;
  padding: 15px;
  width: 100%;
  height: auto;
  margin-top: 3cqh;
  border-left: 10px solid #faf000;
}


@media(max-width: 767px) {
  .swiper-mainimage_wrap {
    container-type: size;
    aspect-ratio: 9/ 16;
    overflow: hidden;
  }

  .swiper-family {
    margin: 0px;
    width: 95%;
    aspect-ratio: 1/1;
    height: auto;
    z-index: 10;
    position: absolute;
    bottom: -10cqh;
    right: 0px;
  }


  .swiper-mainimage .swiper-slide img {
    object-fit: cover;
    aspect-ratio: 9/16;
    object-position: 65% left;
  }

  .swiper-medal {
    display: flex;
    flex-wrap: wrap;
    width: 80cqw;
    height: auto;
    position: absolute;
    left: calc(50% - 40cqw);
    top: 30px;
    z-index: 10;
  }

  .swiper-medal-text_01,
  .swiper-medal-text_02,
  .swiper-medal-text_03 {
    font-size: 4cqi;
    font-weight: 600;
    letter-spacing: 0.2cqi;
    line-height: 1;
    padding: 10px;
    width: 100%;
    height: auto;
    margin-top: 2cqh;
  }
}

/*
 * コンテンツ
 * --------------------------------------------------
 */
.htks-title {
  display: inline-block;
  color: rgba(11, 17, 49, 1);
  font-size: 4cqi;
  font-weight: 600;
  line-height: 1;
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: auto;
  text-align: center;
  padding-bottom: 30px;
}

.htks-title p {
  display: inline;
  border-bottom: 5px solid #C0D1DA;
  padding-bottom: 5px;
}

.htks-text {
  display: inline-block;
  color: rgba(11, 17, 49, 1);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: auto;
}

.htks-point span {
  display: inline-block;
  background: rgba(11, 17, 49, 1);
  border-radius: 1000px;
  color: #ffffff;
  font-size: 1.5cqi;
  font-weight: 700;
  line-height: 1;
  margin: 10px 0px;
  padding: 5px 15px;
  width: auto;
  height: auto;
  margin-right: 5px;
}

.htks-point h3 {
  display: inline-block;
  background: linear-gradient(transparent 60%, #ff6 60%);
  color: rgba(11, 17, 49, 1);
  font-size: 2.5cqi;
  font-weight: 700;
  line-height: 1;
  margin: 0px;
  padding: 1cqi;
  width: auto;
  height: auto;
}

.htks-point p {
  display: inline-block;
  width: calc(100% - 30px);
  font-size: 1.6rem;
  line-height: 2;
  padding: 15px 30px;
  background: linear-gradient(135deg, transparent 15px, #ffffff 15px);
  background-position: top left;
  background-repeat: no-repeat;
  position: relative;
  filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.25));
  margin: 15px;
}

.htks-point p::before {
  content: '';
  display: block;
  background: linear-gradient(135deg, transparent 15px, #efefef 15px);
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0px;
  top: 0px;
}

@media(max-width: 767px) {
  .htks-title {
    font-size: 6cqi;
  }

  .htks-point span {
    font-size: 1.2rem;
  }

  .htks-point h3 {
    font-size: 1.6rem;
  }

  .htks-point p {
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 20px;
  }
}

/*
 * 流れ
 * --------------------------------------------------
 */
.htks-flow_wrap {
  background: #efefef;
  padding: 60px 0px;
}


.htks-flow_detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.htks-flow_number {
  font-size: 10cqi;
  display: inline-block;
  font-weight: 700;
  line-height: 1;
  width: 10cqi;
  text-align: center;
  color: rgba(0, 0, 0, 0.25);
}

.htks-flow_title {
  font-size: 3cqi;
  font-weight: 700;
  display: inline-block;
  width: calc(100% - 10cqi);
  color: rgba(11, 17, 49, 1);
}

.htks-flow_text {
  display: inline-block;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.5;
  background: #ffffff;
  border: 1px solid #000000;
  padding: 15px;
}

.htks-flow_hr {
  border: none;
  border-bottom: 2px dashed #cccccc;
  margin: 15px 0px;
}

@media(max-width: 767px) {

  .htks-flow_number {
    font-size: 4.8rem;
    margin-bottom: 10px;
  }

  .htks-flow_title {
    font-size: 1.8rem;
  }

  .htks-flow_image {
    display: flex;
    align-items: end;
  }
}

/*
 * 物件一覧
 * --------------------------------------------------
 */

.htks-estate_link {
  display: flex;
  flex-wrap: wrap;
  filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.25));
}

.htks-estate_image {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.htks-estate_title {
  font-size: 1.4rem;
  display: inline-block;
  width: 100%;
  line-height: 1.5;
  height: calc(4.2rem + 10px);
  word-break: normal;
  overflow: hidden;
  cursor: pointer;
  padding: 5px;
  background: #f7f7f7;
}

.htks-estate_title span.toyama {
  font-size: 1.0rem;
  padding: 0.2rem 0.5rem;
  color: #ffffff;
  background: #2CB443;
}

.htks-estate_title span.ishikawa {
  font-size: 1.0rem;
  padding: 0.2rem 0.5rem;
  color: #ffffff;
  background: #0DA2C6;
}

.htks-estate_title span.fukui {
  font-size: 1.0rem;
  padding: 0.2rem 0.5rem;
  color: #ffffff;
  background: #5852A6;
}

.htks-estate_button {
  background: rgba(11, 17, 49, 1);
  color: #ffffff;
  display: inline-block;
  text-align: center;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  width: 100%;
  padding: 5px 0px;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.htks-estate_link:hover .htks-estate_image {
  opacity: 0.8;
  transition: all 0.3s ease;
}

.htks-estate_link:hover .htks-estate_title {
  background: #efefef;
  font-weight: 700;
  transition: all 0.3s ease;
}

.htks-estate_link:hover .htks-estate_button {
  background: #faf000;
  color: rgba(11, 17, 49, 1);
  font-weight: 700;
  transition: all 0.3s ease;
}

/*
 * 注意事項
 * --------------------------------------------------
 */

.htks-caution {
  display: inline-block;
  width: 100%;
  padding: 30px;
  border: 1px solid #000000;
  background: #fafafa;
}

.htks-caution li {
  display: inline-block;
  width: 100%;
  padding: 0px 0px 5px 0px;
  font-size: 1.4rem;
  line-height: 1.5;
}

.htks-caution li:last-child {
  padding: 0px 0px 0px 0px;
}

@media(max-width: 767px) {
  .htks-caution {
    padding: 15px;
  }
}

/*
 * Venoカスタム
 * --------------------------------------------------
 */
.vbox-container {
  display: flex;
}

.vbox-title {
  font-size: clamp(1.2rem, 1.5cqi, 1.6rem);
  padding: 10px;
  white-space: normal;
  overflow: auto;
  display: inline-block;
  text-align: left;
  width: calc(100% - 115px);
  left: 60px;
}

.vbox-num,
.vbox-close svg {
  filter: brightness(10);
}

/*
 * フッターカスタム
 * --------------------------------------------------
 */

.float-menu {
  display: none;
}