@charset "UTF-8";
html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 12px;
  line-height: 1.5;
  overflow-x: hidden;
  letter-spacing: 0.1em;
}

img,
picture {
  max-width: 100%;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
a {
  cursor: pointer;
}

img {
  width: 100%;
}

.pc-only {
  display: none;
}

.sp-only {
  display: block;
}

.contents-wrap {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-inline: 15px;
}

/* =========================
Scroll Animation
========================= */
.fadeInTop {
  opacity: 0;
  -webkit-transition: opacity 3s ease, -webkit-transform 0.8s ease;
  transition: opacity 3s ease, -webkit-transform 0.8s ease;
  transition: opacity 3s ease, transform 0.8s ease;
  transition: opacity 3s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.fadeIn,
.fadeInLeft,
.fadeInRight {
  opacity: 0;
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.fadeIn {
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}

.fadeInLeft {
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
}

.fadeInRight {
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
}

.fadeInTop.is-show,
.fadeIn.is-show,
.fadeInLeft.is-show,
.fadeInRight.is-show {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* =========================
SP/header・footer分の高さ調整
========================= */
main {
  padding-top: 80px;
  padding-bottom: 60px;
}

/* =========================
SP/Header
========================= */
.header_sp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  z-index: 1000;
  padding: 0 10px;
  border-bottom: 1px solid #ddd;
  /* =========================
  SP/logo
  ========================= */
}
.header_sp .header_logo {
  display: block;
  width: 100%;
  max-width: 220px;
  padding-top: 0px;
  position: relative;
  top: -5px;
  z-index: 1010;
}
.header_sp .header_logo .header_logo img {
  display: block;
  width: 100%;
  height: auto;
}
.header_sp {
  /* =========================
  SP/hamburger
  ========================= */
}
.header_sp .hamburger {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50px;
  height: 50px;
  border: none;
  background: none;
}
.header_sp .hamburger span {
  position: absolute;
  display: block;
  left: 50%;
  width: 30px;
  height: 2px;
  border-bottom: solid 3px #716864;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header_sp .hamburger span:nth-child(1) {
  top: 7px;
}
.header_sp .hamburger span:nth-child(2) {
  top: 16px;
}
.header_sp .hamburger span:nth-child(3) {
  top: 25px;
}
.header_sp .hamburger span:nth-child(4) {
  border: none;
  top: 32px;
  font-size: 10px;
  width: auto;
  color: #716864;
}

/* 開いた時 */
.hamburger.is-open span:nth-child(1) {
  top: 18px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.hamburger.is-open span:nth-child(2) {
  top: 18px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.hamburger.is-open span:nth-child(3) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(4) {
  top: 32px;
  left: 50%;
}

/* =========================
SP/Menu
========================= */
.sp-menu {
  position: fixed;
  inset: 0;
  top: 80px;
  height: calc(100vh - 80px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 140px;
  background: #fff;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  font-size: 13px;
}
.sp-menu .menu_title {
  background: #716864;
  color: #fff;
  padding: 5px 20px;
  font-size: 14px;
}
.sp-menu ul {
  display: block;
  padding: 0 20px;
  width: 100%;
}
.sp-menu ul li {
  border-bottom: 0.5px solid #c8c5c4;
}
.sp-menu ul li:last-of-type {
  border-bottom: none;
}
.sp-menu ul li a {
  display: block;
  text-align: center;
  padding: 17px 0;
  color: inherit;
}
.sp-menu .menu_contact {
  display: block;
  background: #8e7e76;
  color: #fff;
  text-align: center;
  padding: 15px;
}

.is-open {
  opacity: 1;
  visibility: visible;
}

.menu-open {
  overflow: hidden;
}

/* =========================
SP/Bottom Button
========================= */
.sp-fixed-footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1000;
}
.sp-fixed-footer a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
.sp-fixed-footer .vacancy {
  background: #006d5b;
}
.sp-fixed-footer .contact {
  background: #2b2b2b;
}

/* =========================
SP/componentLink
========================= */
.component-link-area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  row-gap: 15px;
  margin-top: 30px;
  color: #fff;
  overflow: hidden;
}
.component-link-area .component-link {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
}
.component-link-area .component-link.--access {
  background-image: url("../img/common/card-access.jpg");
}
.component-link-area .component-link.--design {
  background-image: url("../img/common/card-design.jpg");
}
.component-link-area .component-link.--gallery {
  background-image: url("../img/common/card-gallery.jpg");
}
.component-link-area .component-link.--plan {
  background-image: url("../img/common/card-plan.jpg");
}
.component-link-area .component-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 45, 0.8);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}
.component-link-area .component-link__inner {
  position: absolute;
  inset: 0;
  padding: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
}
.component-link-area .component-link__ttl, .component-link-area .component-link__kana {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.component-link-area .component-link__ttl::after, .component-link-area .component-link__kana::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 0;
  height: calc(100% + 10px);
  background: #006655;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}
.component-link-area .component-link__ttl {
  font-size: 22px;
  font-weight: normal;
  line-height: 1.2;
}
.component-link-area .component-link__ttl.access {
  margin-top: -12px;
}
.component-link-area .component-link__kana {
  margin-top: 2px;
  font-size: 10px;
}
.component-link-area .component-link__kana.access {
  font-size: 10px;
  margin-bottom: -15px;
}
.component-link-area .component-link__more {
  margin-top: 20px;
  padding: 15px 10px;
  border: 1px solid #fff;
  text-align: center;
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.component-link-area .component-link__coming {
  display: none;
}
@media (hover: hover) {
  .component-link-area .component-link:not(.is-coming):hover::before {
    opacity: 0;
  }
  .component-link-area .component-link:not(.is-coming):hover .component-link__ttl::after,
  .component-link-area .component-link:not(.is-coming):hover .component-link__kana::after {
    width: 100%;
  }
  .component-link-area .component-link:not(.is-coming):hover .component-link__more {
    background: #fff;
    color: #262626;
  }
}
.component-link-area .component-link.is-coming::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.95)), color-stop(rgba(0, 0, 0, 0.6)), to(transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.6), transparent);
  z-index: 2;
}
.component-link-area .component-link.is-coming .component-link__inner {
  z-index: 3;
}
.component-link-area .component-link.is-coming .component-link__coming {
  display: block;
  position: absolute;
  top: 52%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 4;
  font-size: 16px;
  white-space: nowrap;
}
.component-link-area .component-link.is-coming .component-link__more {
  opacity: 0.08;
}

/* =========================
SP/注釈
========================= */
.component-note {
  font-size: 10px;
  line-height: 1.8;
  margin: 30px auto 0;
}

/* =========================
Footer
========================= */
.footer {
  background: #fff;
  padding-bottom: 82px;
}
.footer .footer_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer {
  /* =========================
  お問い合わせ
  ========================= */
}
.footer .footer_row .footer_info-tel {
  display: block;
}
.footer .footer_row .footer_info-tel:first-child {
  font-size: 14px;
  margin-bottom: 12px;
}
.footer .footer_row .footer_info-tel:nth-child(2) {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 20px;
  color: #fff;
}
.footer .footer_row .footer_info-area {
  background: #262626;
  color: #fff;
  padding: 40px 24px;
}
.footer .footer_row .footer_info-area .footer_info-text {
  font-size: 12px;
  line-height: 2;
}
.footer {
  /* =========================
  リンク
  ========================= */
}
.footer .footer_link-area {
  padding-top: 50px;
  padding-bottom: 50px;
  padding-inline: 15px;
}
.footer .footer_link-area .footer_link-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}
.footer .footer_link-area .footer_link-box {
  margin-bottom: 30px;
}
.footer .footer_link-area .footer_link_text,
.footer .footer_link-area .footer_link-text {
  font-size: 14px;
  margin-bottom: 20px;
}
.footer .footer_link-area .footer_link_vacant,
.footer .footer_link-area .footer_link_contact,
.footer .footer_link-area .footer_link-rent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  height: 60px;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 3px;
}
.footer .footer_link-area .footer_link_vacant {
  background: #006655;
}
.footer .footer_link-area .footer_link_contact {
  background: #262626;
}
.footer .footer_link-area .footer_link-rent {
  background: #ef844f;
}
.footer {
  /* =========================
  プライバシー
  ========================= */
}
.footer .footer_privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.footer .footer_privacy .footer_privacy-link {
  font-size: 12px;
  line-height: 1.8;
}
.footer {
  /* =========================
  ロゴ
  ========================= */
}
.footer .footer_co-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
}
.footer .footer_co-row .footer_co_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer .footer_co-row .footer_co_box .footer_co-cat {
  font-size: 10px;
  margin-bottom: 8px;
}
.footer .footer_co-row .footer_co_box .footer_co {
  display: inline-block;
}
.footer .footer_co-row .footer_co_box .footer_co img {
  max-width: 180px;
  width: 100%;
  display: block;
}
.footer {
  /* =========================
  copyright
  ========================= */
}
.footer .footer_copyright {
  font-size: 11px;
  line-height: 1.8;
}

/* =========================
SP/MV
========================= */
.component-mv {
  position: relative;
}
.component-mv .component-mv__body {
  position: relative;
  overflow: hidden;
}
.component-mv .component-mv__img {
  position: relative;
}
.component-mv .component-mv__heading {
  position: absolute;
  top: 50%;
  left: 18%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  color: #fff;
  font-size: 31px;
  font-weight: normal;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* =========================
SP/scroll
========================= */
.component-scroll {
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.component-scroll .component-scroll__text {
  font-size: 12px;
  text-align: center;
}
.component-scroll .component-scroll__line {
  height: 30px;
  width: 1px;
  margin-top: 10px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  position: relative;
}
.component-scroll .component-scroll__line::before {
  content: "";
  background-color: #006655;
  display: block;
  height: 30px;
  width: 1px;
  position: absolute;
  -webkit-animation: arrowLine 2.5s cubic-bezier(0.55, 0.1, 0.2, 1) 0s infinite;
          animation: arrowLine 2.5s cubic-bezier(0.55, 0.1, 0.2, 1) 0s infinite;
}

/* =========================
SP/キャプション
========================= */
figcaption {
  position: absolute;
  bottom: 2px;
  right: 5px;
  color: #fff;
  font-size: 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

@-webkit-keyframes arrowLine {
  0% {
    top: -50px;
  }
  50% {
    top: 0;
  }
  100% {
    top: 50px;
  }
}

@keyframes arrowLine {
  0% {
    top: -50px;
  }
  50% {
    top: 0;
  }
  100% {
    top: 50px;
  }
}
/* =========================
SP/main-copy
========================= */
.component-main-copy {
  text-align: left;
  font-size: 16px;
  line-height: 1.8;
  margin-top: 30px;
}

.component-main-lead {
  margin: 20px auto 50px;
}

/* ==================================================
PC(min-width: 1024px)
================================================== */
@media print, screen and (min-width: 1024px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
  body {
    font-size: 16px;
  }
  /* =========================
  PC/header・footer分の高さ調整
  ========================= */
  main {
    padding-top: 142px;
    padding-bottom: 0;
  }
  /* =========================
  PC/Header
  ========================= */
  .header_pc {
    background: #fff;
    position: fixed;
    width: 100%;
    z-index: 1000;
  }
  .header_pc .header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: auto;
    padding-left: 20px;
  }
  .header_pc .header-inner .pagecopy {
    font-size: 9.6px;
    margin-top: 4px;
  }
  .header_pc .header-inner .header_logo {
    display: block;
    width: 350px;
    padding-top: 8px;
  }
  .header_pc .header-inner .header_cv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 1px;
    max-width: 500px;
  }
  .header_pc .header-inner li {
    width: 125px;
  }
  .header_pc .header-inner li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
    height: 50px;
    font-size: 13px;
    background: #006655;
  }
  .header_pc .header-inner .contact {
    background: #2b2b2b;
  }
  .header_pc .header_nav {
    display: block;
    margin-top: 16px;
  }
  .header_pc .header_nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    margin: 0 auto;
  }
  .header_pc .header_nav ul li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .header_pc .header_nav ul li a {
    display: block;
    text-align: center;
    padding-bottom: 10px;
    position: relative;
  }
  .header_pc .header_nav ul li .page-on:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 30px;
    height: 2px;
    background: #006655;
  }
  /* =========================
  PC/componentLink
  ========================= */
  .component-link-area {
    gap: 30px;
    row-gap: 15px;
    margin-top: 80px;
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    grid-template-columns: 350px 350px;
  }
  .component-link-area .component-link__ttl {
    display: inline-block;
    font-size: 40px;
  }
  .component-link-area .component-link .component-link__inner {
    padding: 15%;
  }
  .component-link-area .component-link .component-link__more {
    margin-top: 30px;
  }
  .component-link-area .component-link .component-link__kana {
    font-size: 16px;
  }
  .component-link-area .component-link.is-coming .component-link__coming {
    top: 61%;
    left: 50%;
    font-size: 37px;
  }
  /* =========================
  PC/注釈
  ========================= */
  .component-note {
    font-size: 12px;
    margin: 70px auto 70px;
  }
  /* =========================
  PC/Footer
  ========================= */
  .footer {
    padding-bottom: 30px;
  }
  .footer .footer_row {
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .footer .footer_row .footer_info-area {
    width: 45%;
    background: #262626;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 80px 0;
    position: relative;
  }
  .footer .footer_row .footer_info-area > * {
    max-width: 520px;
    margin-left: 60px;
  }
  .footer .footer_row .footer_info-area .footer_info-inner {
    width: 350px;
    position: absolute;
    right: 0;
  }
  .footer .footer_row .footer_link-area {
    max-width: 700px;
    width: 50%;
    background: #fff;
    padding: 20px 60px 0;
  }
  .footer .footer_row .footer_link-area .footer_link-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
    margin-bottom: 40px;
  }
  .footer .footer_row .footer_link-area .footer_link-box {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .footer .footer_privacy {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
    margin: 30px auto 25px;
  }
  .footer .footer_privacy .footer_privacy-link {
    display: block;
    font-size: 13px;
    line-height: 1;
    padding: 0 18px;
    border-right: 1px solid #262626;
  }
  .footer .footer_privacy .footer_privacy-link:last-child {
    border-right: none;
  }
  .footer .footer_co-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  /* =========================
  PC/MV
  ========================= */
  .component-mv .component-mv__body .component-mv__heading {
    font-size: 53px;
  }
  /* =========================
  PC/scroll
  ========================= */
  .component-mv__scroll {
    position: absolute;
    bottom: 0;
    -webkit-transform: translate(-50%, 15%);
            transform: translate(-50%, 15%);
    left: 50%;
  }
  .component-scroll .component-scroll__text {
    color: #fff;
  }
  .component-scroll .component-scroll__line {
    background: #fff;
  }
  /* =========================
  PC/main-copy
  ========================= */
  .component-main-copy {
    text-align: center;
    font-size: 38px;
    margin-top: 80px;
  }
  .component-main-lead {
    text-align: center;
    line-height: 2;
  }
}/*# sourceMappingURL=common.css.map */