@charset "utf-8";

:root {
  /* color */
  --pink: #f39f8e;
  --light-pink: #fdf4f1;
  --text-color: #4c4c4c;

  /* font */
  --font-noto-sans: "Noto Sans JP", sans-serif;
  --font-open-sans: "Open Sans", sans-serif;

  /* animation */
  --hamburger-transition: 0.4s;
  --hover-transition: 0.5s;
  --hover-opacity: 0.7;
}

/* ------------------------------
  common(sp)
------------------------------ */
body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-color);
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.pc {
  display: none;
}

.sp {
  display: inline-block;
}

html {
  scroll-padding-top: 70px;
}

.main {
  position: relative;
  margin-top: 70px;
}

.container {
  padding: 0 8vw;
}

.text-space {
  margin-left: 1em;
}

/* ------------------------------
  header(sp)
------------------------------ */
.header-nav-pc-wrap {
  display: none;
}

.header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 12px;
}

.header-logo {
  width: 154px;
}

.header-logo svg {
  width: 100%;
  height: auto;
  fill: #ef8200;
  transition: var(--hamburger-transition);
}

.nav-active .header-logo svg {
  fill: #fff;
}

.header-btn-wrap-sp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 88px;
}

.header-tel-sp {
  width: 32px;
  margin-right: 20px;
}

.header-tel-sp svg {
  fill: var(--pink);
  transition: var(--hamburger-transition);
}

.nav-active .header-tel-sp svg {
  fill: #fff;
}

.hamburger {
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
  position: relative;
  width: 36px;
  height: 36px;
}

.hamburger span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 34px;
  height: 2px;
  background-color: var(--pink);
  border-radius: 1px;
  transition: var(--hamburger-transition);
}

.hamburger::before,
.hamburger::after {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background-color: var(--pink);
  border-radius: 1px;
  transition: var(--hamburger-transition);
}

.hamburger::before {
  top: calc(50% - 10px);
}

.hamburger::after {
  top: calc(50% + 10px);
}

.nav-active .hamburger span {
  visibility: 0;
  opacity: 0;
  transition: var(--hamburger-transition);
}

.nav-active .hamburger::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: var(--hamburger-transition);
  background-color: #fff;
}

.nav-active .hamburger::after {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: var(--hamburger-transition);
  background-color: #fff;
}

.header-nav-sp-wrap {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  overscroll-behavior-y: contain;
  overflow-y: auto;
  padding: 90px 0 50px;
  background-color: var(--pink);
}

.nav-active .header-nav-sp-wrap {
  opacity: 1;
  visibility: visible;
}

.header-nav-sp {
  width: fit-content;
  min-width: 244px;
  margin-inline: auto;
  font-size: 15px;
  line-height: 1.6;
}

.header-nav-sp > li {
  border-top: dashed 1px #fff;
  padding: 0.5em 0;
}

.header-nav-sp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  color: #fff;
  padding: 0.5em;
}

.header-nav-sp dd {
  margin-left: 1em;
}

.header-nav-sp dt a::before,
.header-nav-sp li:not(:nth-of-type(n + 5)) > a::before {
  content: "●";
  display: block;
  margin-right: 4px;
}

.header-nav-sp li:nth-of-type(5) > a::after,
.header-nav-sp li:nth-of-type(6) > a::after {
  content: "";
  display: block;
  width: 13px;
  height: 10px;
  background: url("../images/housing/icon_window_white.svg") no-repeat center /
    13px auto;
  margin-left: 6px;
}

.header-nav-sp li:nth-of-type(7) > a::before {
  content: "";
  display: block;
  width: 25px;
  height: 20px;
  background: url("../images/housing/icon_file_white.svg") no-repeat center /
    25px auto;
  margin-right: 10px;
}

.header-nav-sp li:nth-of-type(8) > a::before {
  content: "";
  display: block;
  width: 25px;
  height: 18px;
  background: url("../images/housing/icon_mail_white.svg") no-repeat center /
    25px auto;
  margin-right: 10px;
}

.header-nav-sp li:nth-last-child(-n + 2) {
  border-top: none;
}

.header-nav-sp li:nth-last-child(-n + 3) {
  display: flex;
  justify-content: center;
}

.header-nav-sp .icon-insta {
  width: 32px;
  height: auto;
  margin-top: 20px;
}
/* ------------------------------
  footer(sp)
------------------------------ */
.footer {
  background-color: #fff;
  padding-bottom: 42px;
}

.footer-contact-btn {
  display: block;
}

.footer-contact-btn img {
  width: 100%;
}

.footer-contents {
  padding: 40px 0;
  background-color: #ecebeb;
}

.footer-contents-inner {
  position: relative;
  padding: 0 8vw;
}

.footer-logo img {
  max-width: 207px;
}

.footer-logo span {
  display: block;
  font-size: 15px;
  margin: 1em 0;
  line-height:1.5;
}

.footer-tel a {
  display: flex;
  align-self: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
}

.footer-tel a::before {
  content: "";
  width: 25px;
  height: 25px;
  background: url("../images/housing/icon_tel_gray.svg") no-repeat center / 25px
    auto;
  margin-right: 10px;
}

.footer-text {
  font-size: 13px;
  line-height: 1.75;
}

.footer-nav {
  margin-top: 30px;
}

.footer-nav dt,
.footer-nav li {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 400;
}

.footer-nav dd {
  margin-top: 1em;
  margin-left: 19px;
  font-size: 14px;
  line-height: 1.8;
}

.footer-nav li {
  margin-top: 1em;
}

.footer-nav .footer-nav-instagram {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  max-width: calc(315px + 8vw);
}

.footer-nav .footer-nav-instagram li {
  margin: 0;
}

.footer-nav .footer-nav-instagram a {
  width: 32px;
  display: block;
  margin-left: auto;
}

.footer-nav dt a,
.footer-nav li a {
  display: flex;
  align-items: center;
}

.footer-nav dt a::before,
.footer-nav ul:nth-of-type(1) li a::before {
  content: "●";
  display: block;
  margin-right: 4px;
  color: #e2c6c5;
}

.footer-nav ul:nth-of-type(2) li a::after {
  content: "";
  display: block;
  width: 13px;
  height: 10px;
  background: url("../images/housing/icon_window_pink.svg") no-repeat center /
    13px auto;
  margin-left: 6px;
  transform: translateY(1px);
}

.footer-nav ul:nth-of-type(1),
.footer-nav ul:nth-of-type(2) {
  margin-top: 1.5em;
}

.footer-map {
  display: block;
  width: 100%;
  position: relative;
  padding-top: 133%;
}

.footer-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pagetop {
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
  position: relative;

  position: fixed;
  z-index: 11;
  right: 10px;
  bottom: 60px;
  display: block;
  width: 30px;
  height: 128px;
  background: url("../images/office/btn_pagetop.png") no-repeat center / 18px
    auto;
}

.pagetop {
  opacity: 0;
  visibility: hidden;
  transition: var(--hover-transition);
}

.pagetop.active {
  opacity: 1;
  visibility: visible;
}

.footer-fixed-nav-sp {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 42px;
  display: flex;
  background-color: var(--pink);
  border-top: solid 1px #fff;
}

.footer-fixed-nav-sp::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 20px;
  background-color: #fff;
}

.footer-fixed-nav-sp li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 50%;
  height: 42px;
}

.footer-fixed-nav-sp li a {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #fff;
}

.footer-fixed-nav-sp .news::before {
  content: "";
  display: block;
  flex-shrink: 0;
  margin-right: 10px;
  width: 26px;
  height: 28px;
  background: url("../images/housing/icon_news_white.svg") no-repeat center /
    cover;
}

.footer-fixed-nav-sp .catalog::before {
  content: "";
  display: block;
  flex-shrink: 0;
  margin-right: 10px;
  width: 26px;
  height: 21px;
  background: url("../images/housing/icon_file_white.svg") no-repeat center /
    cover;
}

/* ------------------------------
  フロントページ(sp)
------------------------------ */
.hero-slide {
  position: fixed;
  top: 70px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 138.66vw;
}

.hero-slide .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero-slide-pic-1 {
  background-image: url("../images/housing/hero_1_sp.jpg");
}

.hero-slide-pic-2 {
  background-image: url("../images/housing/hero_2_sp.jpg");
}

.hero-slide-pic-3 {
  background-image: url("../images/housing/hero_3_sp.jpg");
}

.hero-slide-transparency {
  opacity: 0;
}

.hero-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 138.66vw;
  font-size: 7.2vw;
  line-height: 1.8;
  font-weight: 700;
  color: #fff;
}

.home-container {
  background-color: #fff;
}

/* home-about(sp) */
.home-about {
  padding: 10px 0 0 0;
}

.home-about-title img {
  display: block;
  width: 100%;
  max-width: 342px;
  margin-inline: auto;
}

.home-about-title span {
  display: flex;
  justify-content: center;
  font-size: min(8vw, 30px);
  font-weight: 700;
  color: #fff;
  padding: 0.48em 0;
  background-color: var(--pink);
}

.home-about-contents {
  position: relative;
  height: calc(1211px + 150px);
  margin-top: 40px;
  background: url("../images/housing/home_about_bg_sp.png") no-repeat center
    bottom / 430px auto;
  padding: 0 8vw;
  font-weight: 700;
  color: #cc8080;
  overflow: hidden;
}

.home-about-text-plan {
  position: absolute;
  white-space: nowrap;
}

.home-about-text-plan img {
  display: block;
  margin: 16px 0 10px;
}

.home-about-text-plan img {
  max-width: 314px;
}

.home-about-text-plan span:nth-of-type(1) {
  font-size: 20px;
}

.home-about-text-plan span:nth-of-type(2) {
  font-size: 25px;
}

.home-about-text {
  position: absolute;
  writing-mode: vertical-rl;
  font-size: 25px;
  line-height: 1.6;
  font-weight: 700;
}

.home-about-text-plan .marker {
  background-image: linear-gradient(#ecee6f, #ecee6f);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 30%;
}

.home-about-text .marker {
  background-image: linear-gradient(#ecee6f, #ecee6f);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 30% 100%;
}

.home-about-contents > p:nth-of-type(1) {
  width: fit-content;
  top: 0;
  left: calc(50%);
  transform: translateX(-50%) !important;
}

.home-about-contents > p:nth-of-type(2) {
  left: 50%;
  top: 330px;
  transform: translateX(30px) !important;
}

.home-about-contents > p:nth-of-type(3) {
  right: 50%;
  top: 456px;
  transform: translateX(-35px) !important;
}

.home-about-contents > p:nth-of-type(4) {
  left: 50%;
  top: 820px;
  transform: translateX(50px) !important;
}

.home-about-contents > p:nth-of-type(5) {
  right: 50%;
  top: 1080px;
  transform: translateX(-30px) !important;
}

/* home-our-message(sp) */
.home-our-message {
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}

.home-our-message-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 250px;
  background: url("../images/housing/home_our_message_title_bg_sp.png")
    no-repeat center top / cover;
}

.home-our-message-title-wrap::after {
  content: "";
  position: absolute;
  top: 54px;
  left: calc(50% + 60px);
  display: block;
  width: 112px;
  aspect-ratio: 112 / 102;
  background: url("../images/housing/mirais_1.png") no-repeat center / cover;
}

.home-our-message-title {
  font-size: 55px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 22px 0;
}

.button-round {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 0 55px 0 40px;
  height: 40px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background-color: var(--pink);
}

.button-round::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, calc(-50% - 2px));
  width: 20px;
  height: 8px;
  background: url("../images/housing/icon_arrow_white.svg") no-repeat center /
    20px auto;
}

.button-round.white {
  color: var(--pink);
  background-color: #fff;
}

.button-round.white::after {
  background: url("../images/housing/icon_arrow_pink.svg") no-repeat center /
    20px auto;
}

.home-our-message-title-wrap .button-round {
  height: 48px;
  font-size: 18px;
}

.home-our-message-pic img {
  width: 100%;
}

/* home-news(sp) */
.home-news {
  margin-top: 60px;
  padding: 40px 0;
  background-color: var(--light-pink);
}

.home-section-title-main {
  display: block;
  font-family: var(--font-open-sans);
  font-size: 50px;
  font-weight: 700;
  color: var(--pink);
}

.home-section-title-sub {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-top: 0.8em;
}

.home-news-inner {
  padding: 0 8vw;
  overflow: hidden;
}

.home-news-title {
  width: 50%;
  float: left;
  width: calc(100% - 60px);
}

.home-news-text {
  float: right;
  writing-mode: vertical-rl;
  white-space: nowrap;
  width: 60px;
  font-size: 18px;
  font-weight: bold;
  color: var(--pink);
}

.news-archive-list {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}

.home-news .news-archive-list {
  float: left;
  margin-top: 30px;
  gap: 30px 0;
  width: calc(100% - 60px);
}

.news-archive-list-item a {
  color: var(--text-color);
}

.news-archive-list-item img {
  width: 100%;
}

.news-archive-list-item .date {
  display: block;
  font-size: 12px;
  margin: 1.2em 0 0.5em;
  padding-bottom: 1em;
  border-bottom: solid 1px var(--text-color);
}

.news-archive-list-item .title {
  font-size: 14px;
  line-height: 1.8;
}

.home-news .button-round {
  margin: 40px auto 0;
}

.cm_movie {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.cm_movie iframe {
  width: 330px;
  height: 220px;
}

/* home-lineup(sp) */
.home-lineup {
  padding: 60px 0 0;
  background: url("../images/housing/home_lineup_title_bg.png") no-repeat 8vw
    158px / 214px auto;
}

.home-lineup-inner {
  padding: 0 8vw;
}

.home-lineup-title-wrap {
  display: flex;
}

.home-lineup-text {
  writing-mode: vertical-rl;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
  color: var(--pink);
  margin-left: 1em;
}

.home-lineup-list-wrap {
  padding: 112px 8vw 0;
}

.lineup-list {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}

.lineup-list-item-pic {
  overflow: hidden;
}

.lineup-list-item-pic img {
  display: block;
  width: 100%;
}

.lineup-list-item-contents {
  padding: 30px 0;
  background-color: var(--pink);
  color: #fff;
  text-align: center;
}

.lineup-list-item-title {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
}

.lineup-list-item-title span {
  font-size: 16px;
  display: block;
}

.lineup-list-item-text {
  font-size: 18px;
  line-height: 1.8;
  margin: 1.6em 0 2em;
}

.lineup-list-item-contents .button-round {
  margin-inline: auto;
}

/* home-works(sp) */
.home-works {
  margin-top: 60px;
  padding: 40px 0;
  background-color: var(--light-pink);
}

.home-works .works-archive-list {
  margin-top: 30px;
}

.home-works .works-archive-list-item-title {
  margin-top: 0;
  padding: 1.5em 1em;
  background-color: #fff;
}

.home-works .button-round {
  margin: 30px auto 0;
}

.footer-contact {
  padding: 80px 0 60px;
}

.footer-contact-btn {
  position: relative;
}

.footer-contact-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1em;
}

.housing_home .footer-contact {
  padding: 50px 0 60px;
}

.footer-contact-btn::after {
  content: "";
  position: absolute;
  bottom: -42px;
  right: 8vw;
  display: block;
  width: 116px;
  aspect-ratio: 132 / 133;
  background: url("../images/housing/mirais_2.png") no-repeat center / cover;
  pointer-events: none;
}

/* ------------------------------
  施工事例(sp)
------------------------------ */
.page-title {
  background: url("../images/housing/page-title_bg_sp.png") no-repeat center /
    cover;
}

.works.page-title {
  margin-bottom: 60px;
}

.page-title-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  padding: 0 8vw;
}

.page-title-contents {
  text-align: center;
}

.page-title-contents-title {
  font-family: var(--font-open-sans);
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  color: var(--pink);
}

.page-title-contents-text {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 1em;
}

.works .page-title-inner::before {
  content: "";
  position: absolute;
  left: calc(50% - 184px);
  top: 12px;
  display: block;
  width: 116px;
  height: 74px;
  background: url("../images/housing/works_title_pic_1.png") no-repeat center /
    116px auto;
}

.works .page-title-inner::after {
  content: "";
  position: absolute;
  left: calc(50% + 76px);
  bottom: -26px;
  display: block;
  width: 90px;
  height: 111px;
  background: url("../images/housing/works_title_pic_2.png") no-repeat center /
    90px auto;
}

/* 施工事例_一覧(sp) */
.works-cat-list {
  background-color: var(--light-pink);
  padding: 20px;
}

.works-cat-list-title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 1em 1.5em;
  background-color: #fff;
}

.works-cat-list ul {
  margin-top: 20px;
}

.works-cat-list ul li:not(:first-of-type) {
  margin-top: 10px;
}

.works-cat-list a {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
}

.works-cat-title {
  display: flex;
  align-items: center;
  font-size: 18px;
  padding: 50px 0 40px;
}

.works-cat-title::before {
  content: "";
  flex-grow: 1;
  display: block;
  margin-right: 1em;
  border-bottom: solid 1px var(--text-color);
}

.works-cat-title::after {
  content: "";
  flex-grow: 1;
  display: block;
  margin-left: 1em;
  border-bottom: solid 1px var(--text-color);
}

.works-archive-list {
  display: flex;
  flex-direction: column;
  gap: 50px 0;
}

.works-archive-list-item-pic {
  position: relative;
}

.works-archive-list-item-pic img {
  display: block;
  width: 100%;
  aspect-ratio: 465/352;
  object-fit: cover;
}

.works-archive-list-item-pic .works-cat-tag-list {
  position: absolute;
  top: 10px;
  left: 10px;
}

.works-cat-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.works-cat-tag-list-item {
  font-size: 13px;
  padding: 0.8em 1.2em;
  border-radius: 4px;
  background-color: var(--text-color);
  color: #fff;
}

.works-archive-list-item a {
  display: block;
  color: var(--text-color);
}

.works-archive-list-item-title {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 1em;
}

/* ページネーション(sp) */
.works-archive .pagination {
  margin-top: 40px;
}

.pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  margin-inline: auto;
  font-size: 14px;
}

.pagination .page-numbers li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: #e6e6e6;
  transition: var(--hover-transition);
}

.pagination .page-numbers .current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 32px;
  padding: 0 0.2em;
}

.pagination .page-numbers .dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 32px;
}

.pagination .page-numbers li:not(:first-of-type) {
  margin-left: 10px;
}

/* 施工事例_詳細(sp) */
.works-single {
  overflow: hidden;
}

.works-single-title {
  margin: 0 calc(50% - 50vw) 30px;
  padding: 30px 0;
  width: 100vw;
  background-color: var(--light-pink);
}

.works-single-title .title {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
  margin-top: 1em;
}

.works-single-contents {
  font-size: 15px;
  line-height: 2;
}

.works-single-contents p {
  margin-bottom: 1em;
}

.single-btn-return {
  display: block;
  width: fit-content;
  margin-inline: auto;
  font-size: 14px;
  color: #627782;
  padding: 0.5em 1.5em;
  border-radius: 9999px;
  background-color: #e6e6e6;
  margin-top: 40px;
}

/* ------------------------------
  お知らせ(sp)
------------------------------ */
/* お知らせ_一覧(sp) */
.news-housing-archive .page-title,
.news-housing-single .page-title {
  margin-bottom: 40px;
}

.news .page-title-inner::before {
  content: "";
  position: absolute;
  left: calc(50% - 176px);
  top: 22px;
  display: block;
  width: 92px;
  height: 63px;
  background: url("../images/housing/news_title_pic_1.png") no-repeat center /
    92px auto;
}

.news .page-title-inner::after {
  content: "";
  position: absolute;
  left: calc(50% + 48px);
  bottom: 21px;
  display: block;
  width: 122px;
  height: 57px;
  background: url("../images/housing/news_title_pic_2.png") no-repeat center /
    122px auto;
}

.news-housing-archive .pagination {
  margin-top: 40px;
}

/* お知らせ_詳細(sp) */
.news-article-date {
  font-size: 12px;
}

.news-article-title {
  font-size: 16px;
  line-height: 1.8;
  padding: 1em 0 1em;
  margin-bottom: 30px;
  border-bottom: solid 1px var(--text-color);
}

.news-article-contents {
  font-size: 14px;
  line-height: 2;
}

.news-article-contents p {
  margin-bottom: 1em;
}

.single-btn-return {
  display: block;
  width: fit-content;
  margin-inline: auto;
  font-size: 14px;
  color: #627782;
  padding: 0.5em 1.5em;
  border-radius: 9999px;
  background-color: #e6e6e6;
  margin-top: 60px;
}

/* ------------------------------
  私たちの家づくり(sp)
------------------------------ */
.message .page-title {
  margin-bottom: 50px;
}

.message .page-title-inner::before {
  content: "";
  position: absolute;
  left: calc(50% - 170px);
  top: 21px;
  display: block;
  width: 112px;
  height: 104px;
  background: url("../images/housing/message_title_pic_1.png") no-repeat center /
    112px auto;
}

.message .page-title-inner::after {
  content: "";
  position: absolute;
  left: calc(50% + 48px);
  bottom: -13px;
  display: block;
  width: 132px;
  height: 85px;
  background: url("../images/housing/message_title_pic_2.png") no-repeat center /
    132px auto;
}

.message .page-title-contents-title {
  line-height: 1.1;
}

.message-main-text {
  font-size: 16px;
  line-height: 2.5;
}

.message-select-button-list {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  width: fit-content;
  margin: 60px auto 80px;
}

.message-select-button-list .button-round {
  min-width: 290px;
  height: 44px;
}

.message-contents {
  padding: 0 8vw;
  margin-top: 80px;
}

.message-contents-pic-wrap {
  width: calc(100% + 8vw);
  margin-top: 40px;
}

.message-contents-title {
  font-size: 25px;
  font-weight: bold;
  line-height: 1.8;
  color: var(--pink);
  letter-spacing: normal;
}

.message-contents-title .number {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  font-family: var(--font-open-sans);
  font-size: 70px;
  line-height: 1;
  font-weight: 700;
  color: #e2c6c5;
}

.message-contents-title .number::before {
  content: "";
  display: block;
  width: 122px;
  height: 39px;
  background: url("../images/housing/message_title_number_bg.svg") no-repeat
    center / 122px auto;
}

.message-contents-leaed {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
  margin: 2em 0 1.5em;
}

.message-contents-text {
  font-size: 14px;
  line-height: 2;
}

.message-contents-text .red {
  color: #e83833;
}

.message-contents-text + .message-contents-text {
  margin-top: 2em;
}

.message-mirai-panel {
  padding: 30px 0 40px;
  margin-top: 80px;
  background-color: var(--light-pink);
}

.message-mirai-panel-inner {
  padding: 0 8vw;
}

.message-mirai-panel-title-wrap img {
  display: block;
  width: 202px;
  margin-inline: auto;
}

.message-mirai-panel-title {
  display: block;
  width: fit-content;
  margin: 25px auto 0;
  font-size: 23px;
  font-weight: 700;
  padding: 0.4em 1em;
  background-color: var(--pink);
  color: #fff;
}

.message-mirai-panel-about {
  font-size: 14px;
  line-height: 2;
  margin: 40px 0 60px;
}

.message-mirai-panel-about p:not(:first-of-type) {
  margin-top: 1.5em;
}

.message-mirai-panel-about-2 {
  padding: 0 8vw;
}

.message-mirai-panel-about-2-pic {
  display: block;
  width: 100%;
}

.message-mirai-panel-about-2-title {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
  margin-top: 2em;
}

.message-mirai-panel-about-2-formula {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  margin: 1.5em 0;
}

.message-mirai-panel-about-2-formula span:nth-of-type(1),
.message-mirai-panel-about-2-formula span:nth-of-type(3) {
  display: block;
  padding: 0.5em 1em;
  border: solid 1px var(--text-color);
}

.message-mirai-panel-about-2-formula span:nth-of-type(2) {
  display: block;
  margin: 0 1em;
}

.message-mirai-panel-about-2-text {
  font-size: 14px;
  line-height: 2;
}

.message-mirai-panel-spec-list {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}

.message-mirai-panel-spec-title {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 700;
  text-align: center;
  margin: 2em 0;
}

.message-mirai-panel-spec-title span {
  font-size: 25px;
  color: var(--pink);
}

.message-mirai-panel-spec-list-item {
  border-radius: 10px;
  overflow: hidden;
  border: solid 2px var(--pink);
}

.message-mirai-panel-spec-list-item-title {
  font-size: 20px;
  font-weight: 700;
  padding: 1em;
  background-color: var(--pink);
  color: #fff;
  text-align: center;
}

.message-mirai-panel-spec-list-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 20px 0;
  min-height: 190px;
}

.message-mirai-panel-spec-list-text {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 700;
  text-align: center;
}

.message-mirai-panel-spec-list-text .large {
  font-size: 27px;
}

.message-mirai-panel-spec-list-text + .message-mirai-panel-spec-list-text {
  margin-top: 1em;
}

.message-mirai-panel-spec-list-text-inner {
  display: flex;
  flex-direction: column;
}

.message-mirai-panel-spec-list-text-inner span {
  display: block;
}

.message-mirai-panel-spec-list-item-notes {
  font-size: 11px;
  line-height: 1.8;
  margin-top: 1em;
  text-indent: -1em;
  margin-left: 1em;
}

.support-pic-warp {
  overflow-x: scroll;
  margin: 60px 0 40px;
}

.support-pic {
  display: block;
  width: 640px;
}

.support-point-list {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}

.support-point-list-item-title {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  color: #fff;
  background-color: var(--pink);
  padding: 0.8em;
}

.support-point-list-item {
  font-size: 13px;
  line-height: 2;
}

.support-point-list-item p {
  margin-top: 1em;
}

.support-point-list-item ul {
  margin-top: 1em;
}

.support-point-list-item li {
  text-indent: -1em;
  margin-left: 1em;
}

.support-point-list-item li::before {
  content: "●";
  color: #e2c6c5;
}

/* ------------------------------
  ラインナップ 一覧(sp)
------------------------------ */
.lineup .page-title {
  margin-bottom: 40px;
}

.lineup .page-title-inner::before {
  content: "";
  position: absolute;
  left: calc(50% - 187px);
  top: 0;
  display: block;
  width: 116px;
  height: 114px;
  background: url("../images/housing/lineup_title_pic_1.png") no-repeat center /
    116px auto;
}

.lineup .page-title-inner::after {
  content: "";
  position: absolute;
  left: calc(50% + 70px);
  bottom: -4px;
  display: block;
  width: 93px;
  height: 74px;
  background: url("../images/housing/lineup_title_pic_2.png") no-repeat center /
    93px auto;
}

.lineup-list-wrap {
  padding: 0 8vw;
  margin-bottom: 60px;
}

.lineup-designer {
  padding-top: 30px;
  background: linear-gradient(
    to right,
    var(--light-pink) 0%,
    var(--light-pink) calc(50% + 90px),
    transparent calc(50% + 90px),
    transparent 100%
  );
  background-repeat: no-repeat;
  background-size: 100% 512px;
}

.lineup-designer-inner {
  padding: 0 8vw;
}

.lineup-section-title-main {
  display: block;
  font-family: var(--font-open-sans);
  font-size: 40px;
  font-weight: 700;
  color: var(--pink);
}

.lineup-section-title-sub {
  display: block;
  font-size: 16px;
  margin-top: 0.8em;
}

.lineup-designer-item-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  margin-top: 30px;
}

.lineup-designer-item-pic {
  width: 35vw;
  display: block;
}

.lineup-designer-item-text {
  margin-top: 20px;
}

.lineup-designer-item-job {
  display: block;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
}

.lineup-designer-item-name {
  display: block;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 700;
}

.lineup-designer-item-profile {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 1em;
}

/* ------------------------------
  ラインナップ 詳細(sp)
------------------------------ */
.lineup.child .page-title {
  margin-bottom: 0;
}

.main-image img {
  display: block;
  width: 100%;
}

.lineup-title {
  display: flex;
  flex-direction: column;
  background-color: var(--pink);
  line-height: 1.6;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 15px 0 20px;
}

.lineup-title-main {
  font-size: 32px;
}

.lineup-title-sub {
  font-size: 16px;
}

.lineup-plan {
  margin-top: 40px;
  padding-top: 30px;
  background: linear-gradient(
    to right,
    var(--light-pink) 0%,
    var(--light-pink) calc(50% + 90px),
    transparent calc(50% + 90px),
    transparent 100%
  );
  background-repeat: no-repeat;
  background-size: 100% 512px;
}

.lineup-plan-inner {
  padding: 0 8vw;
}

.lineup-plan-head {
  min-height: 482px;
}

.lineup-plan-title-main {
  display: block;
  font-family: var(--font-open-sans);
  font-size: 40px;
  font-weight: 700;
  color: var(--pink);
}

.lineup-plan-title-sub {
  display: block;
  font-size: 16px;
  margin-top: 0.8em;
}

.lineup-plan-lead {
  font-size: 23px;
  line-height: 1.8;
  font-weight: 700;
  color: var(--pink);
  margin: 2em 0 1.5em;
}

.lineup-plan-text {
  font-size: 13px;
  line-height: 2.3;
}

.lineup-plan-text + .lineup-plan-text {
  margin-top: 1em;
}

.lineup-plan-designer-profile {
  margin-top: 2em;
  font-size: 14px;
  line-height: 1.8;
}

.lineup-plan-designer-title {
  font-weight: 700;
}

.lineup-plan-point-list {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
  width: fit-content;
  margin: 60px auto 0;
}

.lineup-plan-point-list > div {
  background-color: var(--pink);
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.8;
  min-width: 256px;
  padding: 1em;
  text-align: center;
}

.lineup-plan-point-list dt {
  font-size: 20px;
}

.lineup-plan-data {
  margin-top: 60px;
}

.lineup-plan-data-exterior img {
  display: block;
  width: 100%;
}

.lineup-plan-data-floor-plan {
  margin-top: 30px;
}

.lineup-plan-data-floor-plan img {
  display: block;
  width: 100%;
}

.lineup-plan-data-floor-plan-text {
  font-size: 11px;
  line-height: 1.6;
  margin-top: 2em;
}

.lineup-plan-data-contents {
  margin-top: 30px;
  line-height: 1.6;
}

.lineup-plan-data-contents dl {
  line-height: 1.8;
}

.lineup-plan-data-contents dt {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 0.2em;
}

.lineup-plan-data-contents dd {
  font-size: 11px;
}

.lineup-plan-data-title {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 0.5em;
  margin: 30px 0 0.6em;
  border-bottom: solid 1px var(--text-color);
}

.lineup-plan-data-price-title {
  font-size: 15px;
}

.lineup-plan-data-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  font-size: 32px;
  line-height: 1.2;
  font-weight: bold;
  margin-top: 0.3em;
}

.lineup-plan-data-price > span {
  display: block;
}

.lineup-plan-data-price .unit {
  font-size: 16px;
}

.lineup-plan-data-price .type {
  display: block;
  font-size: 14px;
  font-weight: 400;
  padding-right: 0.3em;
}

.lineup-plan-note {
  margin-top: 2em;
  font-size: 11px;
  line-height: 1.8;
}

.lineup-plan-note li {
  text-indent: -1em;
  margin-left: 1em;
}

.lineup-plan-note li::before {
  content: "■";
}

.lineup-plan-series {
  margin-top: 60px;
}

.lineup-plan-series-title {
  font-size: 18px;
  line-height: 1.8;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.2em;
}

.lineup-plan-series-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lineup-plan-series-list li {
  width: calc(50% - 5px);
}

.lineup-return-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 174px;
  height: 35px;
  border-radius: 9999px;
  border: solid 1px var(--pink);
  font-size: 14px;
  font-weight: 700;
  color: var(--pink);
  margin: 40px auto 0;
}

.lineup-plan-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 700;
  text-align: center;
  color: var(--pink);
  margin: 60px 0 40px;
}

.lineup-plan-more::after {
  content: "";
  display: block;
  width: 9px;
  height: 54px;
  margin-top: 20px;
  background: url("../images/housing/lineup_arrow.svg") no-repeat center / 9px
    auto;
}

.lineup.child .footer-contact-btn {
  margin-bottom: 60px;
}

/* laikas */
.laikas .lineup-plan-series-list li {
  position: relative;
}

.laikas .lineup-plan-series-list li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 46 / 39;
  border: solid 1px #b5aeaa;
}

/* ------------------------------
  資料請求(sp)
------------------------------ */
.catalog .page-title-inner::before {
  content: "";
  position: absolute;
  left: calc(50% - 210px);
  top: 10px;
  display: block;
  width: 108px;
  height: 114px;
  background: url("../images/housing/catalog_title_pic_1.png") no-repeat center /
    108px auto;
}

.catalog .page-title-inner::after {
  content: "";
  position: absolute;
  left: calc(50% + 78px);
  bottom: -18px;
  display: block;
  width: 82px;
  height: 121px;
  background: url("../images/housing/catalog_title_pic_2.png") no-repeat center /
    82px auto;
}

.contact-bg {
  padding: 0 0 60px 0;
  background-color: var(--light-pink);
}

.contact-inner {
  padding: 0 8vw;
}

.contact-text-explain {
  padding: 60px 0 2em;
  font-size: 14px;
  line-height: 2;
}

.contact-text-explain + .contact-text-tel {
  margin-bottom: 40px;
}

.contact-text-tel {
  font-size: 14px;
  line-height: 2;
}

.contact-text-tel .tel {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.contact-text-tel .tel::before {
  content: "";
  display: block;
  margin-right: 10px;
  width: 25px;
  height: 25px;
  background: url("../images/office/icon_tel_gray.svg") no-repeat center / cover;
}

.contact-privacy {
  padding: 50px 8vw 60px;
}

.contact-privacy-title {
  font-size: 13px;
  line-height: 2.2;
  font-weight: 700;
}

.contact-privacy-title + p {
  font-size: 13px;
  line-height: 2.2;
  margin-top: 1em;
}

.contact-privacy-title + p a {
  text-decoration: underline;
}

.contact-form {
  font-size: 14px;
  line-height: 1.8;
  border-top: solid 1px #d1d2d2;
  border-bottom: solid 1px #d1d2d2;
  padding: 30px 0 40px;
}

.contact-form > div:not(:first-of-type) {
  margin-top: 2em;
}

.contact-form .border {
  border-top: solid 1px #d1d2d2;
  padding-top: 2em;
}

.contact-form dt {
  display: flex;
  align-items: baseline;
  font-weight: 700;
  margin-bottom: 1.5em;
}

.contact-form .tag-required {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3em;
  height: 1.8em;
  margin-right: 0.5em;
  font-size: 13px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  background-color: var(--pink);
}

.contact-form .checkbox label {
  display: flex;
}

.contact-form .checkbox input {
  flex-shrink: 0;
}

.contact-form .checkbox label:not(:first-of-type) {
  margin-top: 0.8em;
}

.contact-form .address div:not(:first-of-type) {
  margin-top: 0.8em;
}

.contact-form .radio {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 2em;
}

.contact-form .radio label {
  display: flex;
}

.contact-form .radio label input {
  flex-shrink: 0;
}

/* チェックボックスのデザイン(sp) */
input[type="checkbox"] {
  cursor: pointer;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  position: relative;
}

input[type="checkbox"]::before,
input[type="checkbox"]::after {
  content: "";
  display: block;
  position: absolute;
}

input[type="checkbox"]::before {
  background-color: #fff;
  border-radius: 0%;
  border: 1px solid #929292;
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
}

input[type="checkbox"]::after {
  border-bottom: 2px solid var(--text-color);
  border-left: 2px solid var(--text-color);
  opacity: 0;
  height: 8px;
  width: 12px;
  transform: translate(-50%, -50%) rotate(-45deg);
  top: calc(50% - 2px);
  left: calc(50%);
}

input[type="checkbox"]:checked::after {
  opacity: 1;
}

/* ラジオボタンのデザイン(sp) */
input[type="radio"] {
  cursor: pointer;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  position: relative;
}

input[type="radio"]::before {
  background: #fff;
  border: 1px solid var(--text-color);
  border-radius: 100%;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: auto;
  margin-right: 0;
  margin-top: auto;
}

input[type="radio"]:checked::before {
  background-color: var(--text-color);
  box-shadow: inset 0 0 0 6px #fff;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.5em;
  border: solid 1px #929292;
  font-size: 16px;
  line-height: 1.8;
  background-color: #fff;
}



input::placeholder {
  opacity: 0.7;
}

input[type="text"].post-code {
  width: 10em;
}

input[type="text"].age {
  width: 6em;
}

textarea {
  height: 230px;
  resize: vertical;
}

.address {
  display: block;
}

.form-btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  margin-top: 40px;
}

.form-btn-confirm,
.form-btn-submit {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 190px;
  height: 40px;
  font-size: 16px;
  color: #fff;
  background-color: var(--pink);
  border-radius: 9999px;
  margin-inline: auto;
}

.form-btn-return {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 190px;
  height: 40px;
  font-size: 16px;
  color: var(--pink);
  background-color: #fff;
  border-radius: 9999px;
  margin-inline: auto;
}

/* 資料請求_確認(sp) */
.page_contact_confirm dd {
  padding: 0.5em;
}

.contact-confirm-title {
  padding: 60px 0 40px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}

/* 資料請求_完了(sp) */
.contact-bg.thanks {
  padding: 0 0 80px 0;
}

.contact-thanks-title {
  padding: 80px 0 60px;
  font-size: 18px;
  text-align: center;
}

.contact-thanks-text {
  font-size: 14px;
  line-height: 2.2;
  margin-bottom: 4em;
}

.contact-thanks-btn-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: fit-content;
  margin: 60px auto 0;
}

.contact-thanks-btn-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  color: var(--office-color-1);
}

.contact-thanks-btn-list a .btn-arrow {
  width: 38px;
  margin-left: 1em;
}

/* ------------------------------
  予約(sp)
------------------------------ */
.reserv .page-title-inner::before {
  content: "";
  position: absolute;
  left: calc(50% - 180px);
  top: 5px;
  display: block;
  width: 78px;
  height: 114px;
  background: url("../images/housing/reserv_title_pic_1.png") no-repeat center /
    78px auto;
}

.reserv .page-title-inner::after {
  content: "";
  position: absolute;
  left: calc(50% + 30px);
  bottom: -18px;
  display: block;
  width: 130px;
  height: 141px;
  background: url("../images/housing/reserv_title_pic_2.png") no-repeat center /
    130px auto;
}



/* モーダル */
/**************************\
  Basic Modal Styles
\**************************/

.modal {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir,
    helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  max-width: 500px;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before {
  content: "\2715";
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.modal__btn:focus,
.modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/* -- 固定ナビ(sp) -- */
.fix_nav {
  position: fixed;
  z-index: 99;
  left: 0;
  bottom: 0;
  display: flex;
  height: 40px;
  width: 100%;
}

.fix_nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}

.fix_nav li:nth-of-type(1) {
  flex-grow: 1;
}

.fix_nav li:nth-of-type(1) a {
  background-color: #FF8E91;
}

.fix_nav li:nth-of-type(1) img {
  height: 30px;
}

.fix_nav li:nth-of-type(2) {
  flex-grow: 1;
}

.fix_nav li:nth-of-type(2) a {
  background-color: #FAAA24;
}

.fix_nav li:nth-of-type(2) img {
  height: 30px;
}

.fix_nav li:nth-of-type(3) {
  flex-shrink: 0;
  width: 40px;
}

.fix_nav li:nth-of-type(3) a {
  background-color: #828080;
}

.fix_nav li:nth-of-type(3) img {
  width: 26px;
}




@media (min-width: 1000px) {
  /* ------------------------------
    common(pc)
  ------------------------------ */
  .pc {
    display: inline-block;
  }

  .sp {
    display: none;
  }

  html {
    scroll-padding-top: 100px;
  }

  body {
    scroll-padding-top: 100px;
    overflow-x: hidden;
    min-width: 1000px;
  }

  .main {
    margin-top: 100px;
  }

  .container {
    padding: 0;
    width: 1000px;
    margin-inline: auto;
  }

  /* ------------------------------
    header(pc)
  ------------------------------ */
  .header-btn-wrap-sp {
    display: none !important;
  }

  .header-nav-sp-wrap {
    display: none !important;
  }

  .header {
    height: 100px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 100px;
    padding: 0 20px 0 30px;
    font-size: 14px;
  }

  .header-inner {
    transition: 0.5s;
  }

  .header-inner:hover {
    background-color: #fff;
  }

  .header-logo {
    width: 207px;
    margin-top: 24px;
  }

  .header-nav-pc-wrap {
    display: block;
    flex-grow: 1;
    /* max-width: 880px; */
    padding-left: 20px;
  }

  .header-nav-contact-pc {
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 10px 0 0 auto;
  }

  .header-nav-contact-pc > li:not(:first-of-type) {
    margin-left: 2.5em;
  }

  .header-nav-contact-pc a {
    display: flex;
    align-items: center;
    height: 30px;
    /* padding: 0 1em; */
    color: var(--pink);
    transition: var(--hover-transition);
  }

  .header-nav-contact-pc li:nth-of-type(1) a::before {
    content: "";
    display: block;
    width: 25px;
    height: 20px;
    background: url("../images/housing/icon_file_pink.svg") no-repeat center /
      25px auto;
    margin-right: 10px;
  }

  .header-nav-contact-pc li:nth-of-type(2) a::before {
    content: "";
    display: block;
    width: 25px;
    height: 18px;
    background: url("../images/housing/icon_mail_pink.svg") no-repeat center /
      25px auto;
    margin-right: 10px;
  }

  .header-nav-pc {
    display: flex;
    justify-content: right;
    margin: 5px 0 0 auto;
  }

  .header-nav-pc > li {
    position: relative;
  }

  .header-nav-pc > li:not(:first-of-type) {
    margin-left: 30px;
  }

  .header-nav-pc dt a,
  .header-nav-pc > li > a {
    display: flex;
    align-items: center;
    height: 40px;
    color: var(--text-color);
    transition: var(--hover-transition);
  }

  .header-nav-pc dt a::before,
  .header-nav-pc > li:not(:nth-of-type(n + 5)) > a::before {
    content: "●";
    display: block;
    margin-right: 4px;
    color: var(--pink);
  }

  .header-nav-pc > li:nth-of-type(6),
  .header-nav-pc > li:nth-of-type(7) {
    margin-left: 20px;
  }

  .header-nav-pc > li:nth-of-type(5) > a::after,
  .header-nav-pc > li:nth-of-type(6) > a::after,
  .header-nav-pc > li:nth-of-type(7) > a::after {
    content: "";
    display: block;
    width: 13px;
    height: 10px;
    background: url("../images/housing/icon_window_pink.svg") no-repeat center /
      14px auto;
    margin-left: 6px;
    transform: translateY(2px);
  }

  .header-nav-pc dt {
    display: flex;
    align-items: center;
    cursor: default;
    font-weight: 400;
  }

  .header-nav-pc dd {
    position: absolute;
    top: 40px;
    left: 0;
    padding-top: 15px;
    visibility: hidden;
    opacity: 0;
    transition: var(--hover-transition);
  }

  .header-nav-pc li:hover dd {
    visibility: visible;
    opacity: 1;
  }

  .header-nav-pc dd a {
    display: flex;
    align-items: center;
    width: 222px;
    padding-left: calc(2em + 5px);
    height: 40px;
    color: #fff;
    background-color: var(--pink);
    transition: var(--hover-transition);
  }

  /* ------------------------------
    footer(pc)
  ------------------------------ */
  .footer {
    padding-bottom: 0;
  }

  .footer-logo span {
    font-size: 16px;
  }

  .footer-tel a {
    font-size: 30px;
  }

  .footer-tel a::before {
    width: 30px;
    height: 30px;
    background-size: 30px auto;
    margin-right: 12px;
  }

  .footer-text {
    font-size: 14px;
    margin-top: 0.3em;
  }

  .footer-contents {
    padding: 40px 0 46px;
  }

  .footer-contents-inner {
    display: flex;
    justify-content: space-between;
    width: 1000px;
    margin-inline: auto;
    padding: 0;
  }

  .footer-nav {
    display: flex;
    justify-content: space-between;
    width: 610px;
    margin-top: 0;
    padding-right: 80px;
  }

  .footer-nav .footer-nav-instagram {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    width: 32px;
    max-width: initial;
  }

  .footer-nav dt,
  .footer-nav li,
  .footer-nav dd {
    font-size: 14px;
  }

  .footer-nav ul:nth-of-type(1),
  .footer-nav ul:nth-of-type(2) {
    margin-top: 0;
  }

  .footer-nav ul:nth-of-type(1) li:first-of-type,
  .footer-nav ul:nth-of-type(2) li:first-of-type {
    margin-top: 0;
  }

  .footer-nav li {
    margin-top: 1.46em;
  }

  .footer-map {
    padding-top: 32%;
  }

  .pagetop {
    right: 20px;
    bottom: 120px;
  }

  .footer-fixed-nav-sp {
    display: none;
  }

  /* ------------------------------
    フロントページ(pc)
  ------------------------------ */
  .hero-slide {
    top: 100px;
    height: 50vw;
  }

  .hero-slide-pic-1 {
    background-image: url("../images/housing/hero_1_pc.jpg");
  }

  .hero-slide-pic-2 {
    background-image: url("../images/housing/hero_2_pc.jpg");
  }

  .hero-slide-pic-3 {
    background-image: url("../images/housing/hero_3_pc.jpg");
  }

  .hero-title {
    height: 50vw;
    writing-mode: vertical-rl;
    font-size: 2.9vw;
  }

  /* home-about(pc) */
  .home-about {
    padding: 20px 0 0 0;
  }

  .home-about-title img {
    width: 461px;
    max-width: initial;
    margin-inline: auto;
    transform: translateX(68px);
  }

  .home-about-title span {
    width: 556px;
    font-size: 45px;
    border-radius: 5px;
    margin: 0 auto;
  }

  .home-about-contents {
    max-width: 1020px;
    height: 943px;
    margin-inline: auto;
    background: url("../images/housing/home_about_bg_pc.png") no-repeat center /
      1015px auto;
  }

  .home-about-text-plan {
    position: absolute;
    width: fit-content;
  }

  .home-about-text-plan img {
    display: block;
    margin: 20px 0 14px;
  }

  .home-about-text-plan img {
    max-width: initial;
    width: 427px;
  }

  .home-about-text-plan span:nth-of-type(1) {
    font-size: 28px;
  }

  .home-about-text-plan span:nth-of-type(2) {
    font-size: 30px;
  }

  .home-about-text {
    writing-mode: horizontal-tb;
    font-size: 30px;
  }

  .home-about-text .marker {
    background-position: bottom left;
    background-size: 100% 30%;
  }

  .home-about-contents > p:nth-of-type(1) {
    width: fit-content;
    top: 35px;
    left: 388px;
    transform: translateX(0) !important;
  }

  .home-about-contents > p:nth-of-type(2) {
    left: auto;
    right: 20px;
    top: 258px;
    transform: translateX(0) !important;
  }

  .home-about-contents > p:nth-of-type(3) {
    right: auto;
    left: 0;
    top: 400px;
    transform: translateX(0) !important;
  }

  .home-about-contents > p:nth-of-type(4) {
    left: auto;
    right: 40px;
    top: 510px;
    transform: translateX(0) !important;
  }

  .home-about-contents > p:nth-of-type(5) {
    right: auto;
    left: 364px;
    top: 710px;
    transform: translateX(0) !important;
  }

  /* home-our-message(pc) */
  .home-our-message {
    position: static;
    overflow: auto;
    padding-top: 0;
  }

  .home-our-message-title-wrap {
    position: relative;
    width: 620px;
    height: 270px;
    margin-inline: auto;
    background: url("../images/housing/home_our_message_title_bg_pc.png")
      no-repeat center top / cover;
  }

  .home-our-message-title-wrap::after {
    top: auto;
    left: auto;
    bottom: 2px;
    right: -38px;
    width: 139px;
  }

  .home-our-message-title {
    font-size: 70px;
    margin: 50px 0 30px;
  }

  .button-round {
    padding: 0 75px 0 50px;
    height: 50px;
    font-size: 20px;
  }

  .button-round::after {
    right: 30px;
    width: 22px;
    background-size: 22px auto;
  }

  .button-round.white::after {
    width: 22px;
    background-size: 22px auto;
  }

  .home-our-message-title-wrap .button-round {
    height: 52px;
  }

  /* home-news(pc) */
  .home-news {
    margin-top: 100px;
    padding: 70px 0;
  }

  .home-section-title-main {
    font-size: 70px;
  }

  .home-section-title-sub {
    font-size: 20px;
  }

  .home-news-inner {
    display: flex;
    flex-wrap: wrap;
    width: 1000px;
    margin-inline: auto;
    padding: 0;
    overflow: visible;
  }

  .home-news-title {
    width: 260px;
    float: none;
  }

  .home-news-text {
    float: none;
    writing-mode: horizontal-tb;
    white-space: wrap;
    width: calc(100% - 260px);
    font-size: 20px;
    line-height: 1.6;
    padding-top: 8px;
  }

  .news-archive-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px 50px;
  }

  .home-news .news-archive-list {
    float: none;
    width: 100%;
    margin-top: 40px;
    gap: 0 50px;
  }

  .news-archive-list-item {
    width: 300px;
  }

  .news-archive-list-item .date {
    font-size: 14px;
  }

  .news-archive-list-item .title {
    font-size: 15px;
  }

  .home-news .button-round {
    margin: 60px auto 0;
  }

  /* home-lineup(pc) */
  .home-lineup {
    padding: 50px 0 0;
    background-position: left calc(50% + 360px) top 56px;
    background-size: 246px auto;
  }

  .home-lineup-inner {
    width: 1000px;
    margin-inline: auto;
    padding: 0;
  }

  .home-lineup-title-wrap {
    display: flex;
    padding-top: 60px;
  }

  .home-lineup-text {
    writing-mode: horizontal-tb;
    font-size: 20px;
    margin: 0.5em 0 0 2em;
  }

  .home-lineup-list-wrap {
    padding: 50px 0 0 0;
  }

  .lineup-list {
    gap: 30px 0;
  }

  .lineup-list-item a {
    display: flex;
    max-width: 1280px;
    height: 500px;
    margin-inline: auto;
    background-color: var(--pink);
  }

  .lineup-list-item-pic img {
    height: 500px;
    object-fit: cover;
  }

  .lineup-list-item-contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 500px;
    padding: 0;
    background-color: var(--pink);
    color: #fff;
    text-align: center;
  }

  .lineup-list-item-title {
    font-size: 40px;
  }

  .lineup-list-item-title span {
    font-size: 20px;
  }

  .lineup-list-item-text {
    margin: 2em 0 3em;
  }

  .lineup-list-item .laikas .lineup-list-item-pic {
    order: 2;
  }

  .lineup-list-item .laikas .lineup-list-contents {
    order: 1;
  }

  .cm_movie {
    margin-top: 70px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .cm_movie iframe {
    width: 560px;
    height: 315px;
  }

  /* home-works(pc) */
  .home-works {
    margin-top: 100px;
    padding: 70px 0;
  }

  .home-works .works-archive-list {
    margin-top: 50px;
  }

  .home-works .button-round {
    margin: 60px auto 0;
  }

  .footer-contact {
    padding: 120px 0 90px;
  }

  .footer-contact-btn {
    width: 830px;
    margin-inline: auto;
  }

  .housing_home .footer-contact {
    padding: 70px 0 90px;
  }

  .footer-contact-btn::after {
    content: "";
    position: absolute;
    bottom: -84px;
    right: -26px;
    width: 132px;
  }

  /* ------------------------------
    施工事例(pc)
  ------------------------------ */
  .page-title {
    background: url("../images/housing/page-title_bg_pc.png") no-repeat center /
      cover;
  }

  .works.page-title {
    margin-bottom: 80px;
  }

  .page-title-inner {
    width: 1000px;
    height: 360px;
    margin-inline: auto;
    padding: 0;
  }

  .page-title-contents-title {
    font-size: 70px;
  }

  .page-title-contents-text {
    font-size: 22px;
  }

  .works .page-title-inner::before {
    left: 24px;
    top: 62px;
    width: 244px;
    height: 155px;
    background-size: 244px auto;
  }

  .works .page-title-inner::after {
    left: auto;
    right: 34px;
    bottom: -40px;
    width: 178px;
    height: 219px;
    background-size: 178px auto;
  }

  /* 施工事例_一覧(pc) */
  .works-cat-list {
    display: flex;
    align-items: baseline;
    padding: 15px;
  }

  .works-cat-list-title {
    flex-shrink: 0;
    width: fit-content;
    margin-right: 30px;
  }

  .works-cat-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px;
    margin-top: 0;
  }

  .works-cat-list ul li:not(:first-of-type) {
    margin-top: 0;
  }

  .works-cat-list a {
    font-size: 16px;
    line-height: 1.6;
  }

  .works-cat-title {
    display: flex;
    align-items: center;
    width: fit-content;
    margin-inline: auto;
    font-size: 20px;
    padding: 70px 0 60px;
  }

  .works-cat-title::before {
    content: "";
    flex-shrink: 0;
    width: 60px;
    display: block;
    margin-right: 1em;
    border-bottom: solid 1px var(--text-color);
  }

  .works-cat-title::after {
    content: "";
    flex-shrink: 0;
    width: 60px;
    display: block;
    margin-left: 1em;
    border-bottom: solid 1px var(--text-color);
  }

  .works-archive-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 70px 70px;
  }

  .works-archive-list-item {
    flex-shrink: 0;
    width: 465px;
  }

  .works-archive-list-item-pic .works-cat-tag-list {
    top: 15px;
    left: 15px;
  }

  .works-cat-tag-list {
    gap: 10px;
  }

  .works-cat-tag-list-item {
    font-size: 14px;
    border-radius: 5px;
  }

  /* ページネーション(pc) */
  .works-archive .pagination {
    margin-top: 70px;
  }

  /* 施工事例_詳細(pc) */
  .works-single-title {
    padding: 60px 0;
    margin: 0 calc(50% - 50vw) 50px;
  }

  .blog-single-title .title {
    font-size: 22px;
  }
  .single-btn-return {
    font-size: 16px;
    margin-top: 60px;
  }

  /* ------------------------------
    お知らせ(pc)
  ------------------------------ */
  /* お知らせ_一覧(pc) */
  .news-housing-archive .page-title,
  .news-housing-single .page-title {
    margin-bottom: 80px;
  }

  .news .page-title-inner::before {
    left: 70px;
    top: 86px;
    width: 171px;
    height: 116px;
    background-size: 171px auto;
  }

  .news .page-title-inner::after {
    left: auto;
    right: 53px;
    bottom: 37px;
    width: 228px;
    height: 106px;
    background-size: 228px auto;
  }

  .news-housing-archive .pagination {
    margin-top: 70px;
  }

  /* お知らせ_詳細(pc) */
  .news-article-title {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .news-article-contents {
    font-size: 15px;
  }

  .single-btn-return {
    font-size: 16px;
    margin-top: 80px;
  }

  /* ------------------------------
    私たちの家づくり(pc)
  ------------------------------ */
  .message .page-title {
    margin-bottom: 130px;
  }

  .message .page-title-inner::before {
    left: 12px;
    top: auto;
    bottom: 0;
    width: 223px;
    height: 206px;
    background-size: 223px auto;
  }

  .message .page-title-inner::after {
    left: auto;
    right: 0;
    bottom: -64px;
    width: 263px;
    height: 168px;
    background-size: 263px auto;
  }

  .message .page-title-contents-title {
    line-height: 1;
  }

  .message-main-text {
    font-size: 18x;
    line-height: 2.8;
    text-align: center;
  }

  .message-select-button-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px 20px;
    width: 100%;
    margin: 100px 0 180px;
  }

  .message-select-button-list .button-round {
    min-width: initial;
    width: 320px;
    height: 52px;
  }

  .message-contents {
    display: flex;
    padding: 0;
    margin-top: 120px;
  }

  .message-contents-text-wrap {
    width: calc(50% + 100px);
  }

  .message-contents-text-inner {
    width: 600px;
    padding-right: 90px;
    margin-left: auto;
  }

  .message-contents-pic-wrap {
    width: calc(50% - 100px);
    margin-top: 0;
  }

  .message-contents-pic-wrap img {
    display: block;
    width: 100%;
    max-width: 534px;
  }

  .reverse .message-contents-text-wrap {
    order: 2;
  }

  .reverse .message-contents-pic-wrap {
    order: 1;
  }

  .reverse .message-contents-text-inner {
    width: 600px;
    margin-left: 0;
    padding: 0 0 0 90px;
    margin-right: auto;
  }

  .reverse .message-contents-pic-wrap img {
    margin-left: auto;
  }

  .message-contents-title {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.8;
    color: var(--pink);
  }

  .message-contents-title .number {
    flex-shrink: 0;
    font-size: 100px;
    margin-right: 40px;
  }

  .message-contents-title .number::before {
    content: "";
    display: block;
    width: 175px;
    height: 56px;
    background-size: 175px auto;
  }

  .message-contents-title .text {
    margin-top: 2.2em;
  }

  .message-mirai-panel {
    padding: 70px 0 100px;
    margin-top: 100px;
  }

  .message-mirai-panel-inner {
    padding: 0;
    width: 564px;
    margin-inline: auto;
  }

  .message-mirai-panel-title-wrap {
    display: flex;
    align-items: center;
    width: fit-content;
    width: 564px;
    margin-inline: auto;
  }

  .message-mirai-panel-title-wrap img {
    display: block;
    width: 202px;
    margin-inline: 0;
  }

  .message-mirai-panel-title {
    font-size: 28px;
    margin-left: 1em;
  }

  .message-mirai-panel-about {
    font-size: 16px;
    line-height: 2.2;
    margin: 70px 0 100px;
  }

  .message-mirai-panel-about p:not(:first-of-type) {
    margin-top: 2em;
  }

  .message-mirai-panel-about-2 {
    padding: 0;
    display: flex;
    align-items: flex-start;
    width: 1000px;
    margin-inline: auto;
  }

  .message-mirai-panel-about-2-pic {
    flex-shrink: 0;
    width: 461px;
  }

  .message-mirai-panel-about-2-text-wrap {
    padding-left: 70px;
  }

  .message-mirai-panel-about-2-title {
    font-size: 22px;
    margin-top: 0;
  }

  .message-mirai-panel-about-2-formula {
    font-size: 16px;
    margin: 1.5em 0;
  }

  .message-mirai-panel-about-2-text {
    font-size: 16px;
  }

  .message-mirai-panel-spec-title {
    font-size: 22px;
    margin: 3em 0;
  }

  .message-mirai-panel-spec-title span {
    font-size: 28px;
  }

  .message-mirai-panel-spec-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
  }

  .message-mirai-panel-spec-list > div:nth-of-type(1),
  .message-mirai-panel-spec-list > div:nth-of-type(2) {
    flex-shrink: 0;
    width: 475px;
  }

  .message-mirai-panel-spec-list > div:nth-of-type(3) {
    width: 667px;
    margin-inline: auto;
  }

  .message-mirai-panel-spec-list-item-title {
    font-size: 22px;
  }

  .message-mirai-panel-spec-list-text-wrap {
    min-height: 210px;
    padding: 0;
  }

  .message-mirai-panel-spec-list-text {
    font-size: 22px;
    line-height: 1.8;
    font-weight: 700;
    text-align: center;
  }

  .message-mirai-panel-spec-list-text .large {
    font-size: 30px;
  }

  .message-mirai-panel-spec-list-text + .message-mirai-panel-spec-list-text {
    margin-top: 0.5em;
  }

  .message-mirai-panel-spec-list-text-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .message-mirai-panel-spec-list-item-notes {
    font-size: 13px;
  }

  .support-pic-warp {
    width: 1000px;
    margin: 40px auto 80px;
  }

  .support-pic {
    width: 1000px;
  }

  .support-point-list {
    flex-direction: row;
    gap: 0px 50px;
  }

  .support-point-list-item {
    width: 300px;
    flex-shrink: 0;
  }

  .support-point-list-item-title {
    font-size: 20px;
    height: 75px;
  }

  .support-point-list-item {
    font-size: 14px;
  }

  /* ------------------------------
    ラインナップ 一覧(pc)
  ------------------------------ */
  .lineup .page-title {
    margin-bottom: 80px;
  }

  .lineup .page-title-inner::before {
    left: 53px;
    top: 12px;
    width: 246px;
    height: 240px;
    background-size: 246px auto;
  }

  .lineup .page-title-inner::after {
    left: auto;
    right: 60px;
    bottom: 20px;
    width: 202px;
    height: 161px;
    background-size: 202px auto;
  }

  .lineup-list-wrap {
    padding: 0;
    margin-bottom: 120px;
  }

  .lineup-designer {
    padding-top: 60px;
    background: linear-gradient(
      to right,
      var(--light-pink) 0%,
      var(--light-pink) calc(50% + 100px),
      transparent calc(50% + 100px),
      transparent 100%
    );
    background-repeat: no-repeat;
    background-size: 100% 480px;
  }

  .lineup-designer-inner {
    padding: 0;
    width: 1000px;
    margin-inline: auto;
  }

  .lineup-section-title-main {
    font-size: 50px;
  }

  .lineup-section-title-sub {
    font-size: 20px;
  }

  .lineup-designer-item-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 100px 0;
    margin-top: 90px;
  }

  .lineup-designer-item {
    display: flex;
    align-items: flex-start;
    width: 50%;
    flex-shrink: 0;
  }

  .lineup-designer-item-pic {
    width: 180px;
  }

  .lineup-designer-item-text {
    margin-top: 0;
    padding: 0 25px;
  }

  /* ------------------------------
    ラインナップ 詳細(pc)
  ------------------------------ */
  .main-image img {
    height: 710px;
    object-fit: cover;
  }

  .lineup-title {
    padding: 20px 0 25px;
  }

  .lineup-title-main {
    font-size: 40px;
  }

  .lineup-title-sub {
    font-size: 20px;
  }

  .lineup-plan {
    margin-top: 80px;
    padding-top: 60px;
    background: linear-gradient(
      to right,
      var(--light-pink) 0%,
      var(--light-pink) calc(50% + 100px),
      transparent calc(50% + 100px),
      transparent 100%
    );
    background-repeat: no-repeat;
    background-size: 100% 512px;
  }

  .lineup-plan-inner {
    width: 1000px;
    padding: 0;
    margin-inline: auto;
  }

  .lineup-plan-head {
    display: flex;
    min-height: 452px;
  }

  .lineup-plan-head .lineup-plan-title {
    flex-shrink: 0;
    margin-right: 60px;
  }

  .lineup-plan-title-main {
    font-size: 50px;
  }

  .lineup-plan-title-sub {
    font-size: 20px;
  }

  .lineup-plan-lead {
    font-size: 36px;
    margin: -0.1em 0 1.2em;
  }

  .lineup-plan-text {
    font-size: 15px;
  }

  .lineup-plan-designer-profile {
    width: fit-content;
    margin: 2em 0 0 auto;
    font-size: 16px;
  }

  .lineup-plan-point-list {
    flex-direction: row;
    gap: 0 20px;
    width: auto;
    margin: 80px 0 0;
  }

  .lineup-plan-point-list > div {
    font-size: 18px;
    min-width: initial;
    width: 320px;
    padding: 0.9em;
  }

  .lineup-plan-point-list dt {
    font-size: 25px;
  }

  .lineup-plan-data {
    margin-top: 100px;
  }

  .lineup-plan-data-inner {
    display: flex;
    flex-wrap: wrap;
  }

  .lineup-plan-data-exterior img {
    display: block;
    width: 100%;
  }

  .lineup-plan-data-floor-plan {
    margin-top: 30px;
  }

  .lineup-plan-data-floor-plan-text {
    font-size: 12px;
    margin-top: 3em;
  }

  .lineup-plan-data-contents dt {
    font-size: 18px;
  }

  .lineup-plan-data-contents dd {
    font-size: 14px;
  }

  .lineup-plan-data-title {
    font-size: 25px;
    margin: 50px 0 0.6em;
  }

  .lineup-plan-data-price-title {
    font-size: 20px;
  }

  .lineup-plan-data-price {
    font-size: 35px;
  }

  .lineup-plan-data-price .unit {
    font-size: 20px;
  }

  .lineup-plan-data-price .type {
    font-size: 15px;
  }

  .lineup-plan-note {
    font-size: 12px;
  }

  .lineup-plan-series {
    margin-top: 100px;
  }

  .lineup-plan-series-title {
    display: flex;
    align-items: center;
    font-size: 24px;
    text-align: left;
    margin-bottom: 1.5em;
  }

  .lineup-plan-series-title::after {
    content: "";
    display: flex;
    flex-grow: 1;
    height: 1px;
    margin-left: 30px;
    background-color: var(--text-color);
  }

  .lineup-plan-series-list {
    display: flex;
    flex-wrap: wrap;
    gap: 17px 17px;
  }

  .lineup-plan-series-list li {
    width: 322px;
  }

  .lineup-return-button {
    width: 250px;
    height: 50px;
    font-size: 20px;
    margin: 80px auto 0;
  }

  .lineup-plan-more {
    font-size: 20px;
    margin: 80px 0 50px;
  }

  .lineup.child .footer-contact-btn {
    margin-bottom: 90px;
  }

  /* xronos */
  .xronos .lineup-plan-data-exterior {
    width: 500px;
    flex-shrink: 0;
    order: 1;
  }

  .xronos .lineup-plan-data-contents {
    width: fit-content;
    order: 2;
    margin: 0 0 0 112px;
  }

  .xronos .lineup-plan-data-floor-plan {
    width: 100%;
    order: 3;
    margin-top: 50px;
  }

  .xronos .lineup-plan-data-floor-plan img {
    width: 855px;
    margin-inline: auto;
  }

  /* tenpus */
  .tenpus .lineup-plan-data-exterior {
    width: 500px;
    flex-shrink: 0;
    order: 1;
  }

  .tenpus .lineup-plan-data-contents {
    width: fit-content;
    flex-shrink: 0;
    order: 2;
    margin: 0 0 0 auto;
  }

  .tenpus .lineup-plan-data-floor-plan {
    width: 100%;
    order: 3;
    margin-top: 50px;
  }

  .tenpus .lineup-plan-data-floor-plan img {
    width: 788px;
    margin-inline: auto;
  }

  /* laikas */
  .laikas .lineup-plan-data-exterior {
    width: 100%;
    flex-shrink: 0;
    order: 1;
  }

  .laikas .lineup-plan-data-exterior img {
    width: 747px;
  }

  .laikas .lineup-plan-data-contents {
    width: fit-content;
    flex-shrink: 0;
    order: 3;
    margin: 80px 0 0 166px;
  }

  .laikas .lineup-plan-data-title {
    margin-top: 30px;
  }

  .laikas .lineup-plan-data-floor-plan {
    width: 435px;
    order: 2;
    margin: 60px 0 0 30px;
  }

  .laikas .lineup-plan-data-floor-plan img {
    width: 100%;
    margin-inline: 0;
  }

  .laikas .lineup-plan-data-floor-plan-text {
    white-space: nowrap;
  }

  /* ------------------------------
    資料請求(pc)
  ------------------------------ */
  .catalog .page-title-inner::before {
    left: 133px;
    top: 105px;
    width: 154px;
    height: 162px;
    background-size: 154px auto;
  }

  .catalog .page-title-inner::after {
    left: auto;
    right: 113px;
    bottom: -24px;
    width: 164px;
    height: 242px;
    background-size: 164px auto;
  }

  .contact-bg {
    padding: 0 0 80px 0;
  }

  .contact-inner {
    padding: 0;
    width: 750px;
    margin-inline: auto;
  }

  .contact-text-explain {
    padding: 80px 0 2em;
    font-size: 15px;
  }

  .contact-text-explain + .contact-text-tel {
    margin-bottom: 60px;
  }

  .contact-text-tel {
    font-size: 15px;
  }

  .contact-text-tel .tel {
    font-size: 30px;
  }

  .contact-privacy {
    padding: 70px 0 80px;
    width: 750px;
    margin-inline: auto;
  }

  .contact-privacy-title {
    font-size: 14px;
  }

  .contact-privacy-title + p {
    font-size: 14px;
  }

  .contact-form {
    padding: 40px 0 60px;
    font-size: 15px;
  }

  .contact-form > div:not(:first-of-type) {
    margin-top: 2.5em;
  }

  .contact-form .border {
    padding-top: 2.5em;
  }

  .contact-form > div {
    display: flex;
  }

  .contact-form dt {
    flex-shrink: 0;
    width: 200px;
    margin: 0 2em 0 0;
    padding: 0.5em 0;
  }

  .contact-form dt::before {
    content: "";
    display: inline-block;
    font-size: 13px;
    width: 3.5em;
  }
  .contact-form .required::before {
    content: none;
  }

  .contact-form dd {
    width: calc(550px - 2em);
  }

  .contact-form .checkbox label:first-of-type {
    margin-top: 0.5em;
  }

  .contact-form .radio label {
    padding: 0.5em 0;
  }

  /* チェックボックス(pc) */
  input[type="checkbox"] {
    margin: 3px 12px 0 0;
  }

  /* ラジオボタン(pc) */
  input[type="radio"] {
    margin: 2px 0 0 0;
    margin-right: 10px;
  }

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  textarea {
    font-size: 15px;
  }

  .form-btn-wrap {
    width: 452px;
    margin-inline: auto;
    margin-top: 60px;
  }

  .form-btn-confirm,
  .form-btn-return,
  .form-btn-submit {
    width: 250px;
    height: 50px;
    font-size: 20px;
    margin-inline: auto;
  }

  /* 資料請求_確認(pc) */
  .contact-confirm-title {
    padding: 80px 0 60px;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
  }

  /* 資料請求_完了(pc) */
  .contact-bg.thanks {
    padding: 0 0 100px 0;
  }

  .contact-thanks-title {
    padding: 120px 0 100px;
    font-size: 22px;
  }

  .contact-thanks-text {
    font-size: 15px;
  }

  .contact-thanks-btn-list {
    gap: 50px;
    margin: 80px auto 0;
  }

  .contact-thanks-btn-list a {
    font-size: 18px;
  }

  .contact-thanks-btn-list a .btn-arrow {
    width: 48px;
    margin-left: 1em;
  }

  /* ------------------------------
    予約(pc)
  ------------------------------ */
  .reserv .page-title-inner::before {
    left: 113px;
    top: 105px;
    width: 127px;
    height: 162px;
    background-size: 127px auto;
  }

  .reserv .page-title-inner::after {
    left: auto;
    right: 113px;
    bottom: 20px;
    width: 200px;
    height: 242px;
    background-size: 200px auto;
  }

    
 /* -- 固定ナビ(pc) -- */
  .fix_nav {
    display: block;
    position: fixed;
    z-index: 9;
    left: auto;
    bottom: auto;
    top: 130px;
    right: 0;
    height: auto;
    width: 42px;
    background-color: #fff;
  }

  .fix_nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
  }

  .fix_nav li:nth-of-type(1) img {
    width: auto;
    height: 173px;
  }

  .fix_nav li:nth-of-type(2) img {
    width: auto;
    height: 108px;
  }

  .fix_nav li:nth-of-type(3) {
    width: 42px;
    height: 42px;
  }

  .fix_nav li:nth-of-type(3) img {
    width: 28px;
  }



  .fix_nav li:nth-of-type(1) a,
  .fix_nav li:nth-of-type(2) a {
    padding: 10px 0;
  }

  .fix_nav li:nth-of-type(3) a {
    height: 42px;
  }
    
}
/* ------------------------------
  animation
------------------------------ */
/* hover */
@media (any-hover: hover) {
  .hover {
    transition: var(--hover-transition);
  }

  .hover:hover {
    opacity: var(--hover-opacity);
  }

  .header-nav-contact-pc a:hover {
    opacity: var(--hover-opacity);
  }

  .header-nav-pc dt a:hover,
  .header-nav-pc > li > a:hover {
    opacity: var(--hover-opacity);
  }

  .header-nav-pc dd a:hover {
    background-color: #f5b1a2;
  }

  .footer-nav a {
    transition: var(--hover-transition);
  }

  .footer-nav a:hover {
    opacity: var(--hover-opacity);
  }

  a.button-round::after {
    transition: var(--hover-transition);
  }

  a.button-round:hover::after {
    transform: translate(20%, calc(-50% - 2px));
  }

  .lineup-list-item-pic img {
    transition: 0.8s;
  }

  .lineup-list-item a:hover img {
    transform: scale(1.08);
  }



}
