@charset "UTF-8";
/*== Color =======================*/
/*== Font =======================*/
/*== Breakpoint =======================*/
/*= MediaQuery =*/
/*= Hover =*/
/* Reset box-model and set borders */
/* ============================================ */
*, ::after, ::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background-repeat: no-repeat;
  text-decoration: inherit;
  vertical-align: inherit;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 15px;
  scrollbar-gutter: stable;
  overflow-y: scroll;
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
  overflow: hidden;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  margin: 0;
  font-weight: 400;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: normal;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  margin: 0;
  padding: 0;
  display: block;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
  height: auto;
  width: 100%;
  max-width: 100%;
  border: none;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
  border: 0;
  width: 100%;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

caption {
  text-align: left;
}

td,
th {
  display: block;
  padding: 0;
  width: 100%;
}

th {
  text-align: left;
}

/*== Margin =======================*/
/*== Content width =======================*/
/*== Content Padding =======================*/
/*== Content block =======================*/
.md-sp,
.sm-sp,
.xs-sp {
  display: none;
}

@media screen and (max-width: 1024px) {
  .md-sp {
    display: block;
  }
  .md-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sm-sp {
    display: block;
  }
  .sm-pc {
    display: none;
  }
}
@media screen and (max-width: 478px) {
  .xs-sp {
    display: block;
  }
  .xs-pc {
    display: none;
  }
}
/*== Text Indent =======================*/
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overscroll-behavior: none;
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 40px;
  height: 70px;
  display: flex;
  align-items: center;
  background: transparent;
}
@media screen and (max-width: 768px) {
  .header {
    left: 15px;
  }
}
.header__img {
  width: 99px;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 1s ease, filter 1s ease;
}
.header__img.is-show {
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
}
.header__img--initial {
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
}

.footer {
  background: #FFFEF3;
  padding: 113px 0 4px;
}
.footer__wrap {
  display: flex;
  justify-content: space-between;
  gap: 78px 70px;
}
@media screen and (max-width: 768px) {
  .footer__wrap {
    flex-direction: column;
  }
}
.footer__logo {
  width: 194px;
}
.footer__text {
  display: flex;
  gap: 107px;
}
@media screen and (max-width: 478px) {
  .footer__text {
    gap: 30px;
    flex-direction: column;
  }
}
.footer__item {
  font-weight: 500;
}
.footer__item a {
  transition: 0.5s;
}
.footer__item a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 478px) {
  .footer__item--mt {
    margin-top: 49px !important;
  }
}
.footer__item + .footer__item {
  margin-top: 30px;
}
.footer__desc {
  font-size: 13px;
  font-family: "Noto Serif JP", serif;
  margin-top: 13px;
}
.footer__desc + .footer__desc {
  margin-top: 11px;
}
.footer__video {
  padding-left: 22px;
  position: relative;
  font-family: "Marcellus", serif;
}
.footer__video:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url("../images/icon-video-footer.svg") no-repeat center/contain;
  width: 16px;
  height: 16px;
}
.footer__copy {
  margin-top: 131px;
  font-size: 13px;
  padding: 15.5px 0;
  border-top: 1px solid #C4C4C4;
  font-weight: 500;
}
@media screen and (max-width: 478px) {
  .footer__copy {
    margin-top: 49px;
  }
}

/*== 共通 start ===============*/
@font-face {
  font-family: "Marcellus";
  src: url("../fonts/Marcellus-Regular.woff2") format("woff2"), url("../fonts/Marcellus-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif JP";
  src: url("../fonts/NotoSerifJP-Medium.woff2") format("woff2"), url("../fonts/NotoSerifJP-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif JP";
  src: url("../fonts/NotoSerifJP-Regular.woff2") format("woff2"), url("../fonts/NotoSerifJP-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("../fonts/Lora-Regular.woff2") format("woff2"), url("../fonts/Lora-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter18pt-Regular.woff2") format("woff2"), url("../fonts/Inter18pt-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter18pt-Light.woff2") format("woff2"), url("../fonts/Inter18pt-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overscroll-behavior: none;
}

.inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 15px;
  }
}

.is-fade-up {
  will-change: transform, opacity;
  transform: translateZ(0);
}

.title {
  display: inline-block;
  border-left: solid 7px #F18E1D;
  padding: 23px 0 23px 36px;
}
@media screen and (max-width: 478px) {
  .title {
    padding: 16px 0 15px 23px;
  }
}
.title__jp {
  font-size: 13px;
}
.title__en {
  font-size: 35px;
  margin-top: 10px;
  font-family: "Marcellus", serif;
}
@media screen and (max-width: 478px) {
  .title__en {
    font-size: 32px;
    line-height: 1.3;
  }
}

.mt__t30 {
  margin-top: 30px;
}
.mt__r30 {
  margin-right: 30px;
}

.section {
  padding-top: 80px;
  /* 差分余白（各セクションの上下調整） */
}
.section--video {
  margin-top: 56px;
}
@media screen and (max-width: 478px) {
  .section--video {
    margin-top: 33px;
  }
}
.section--menu {
  margin-top: 14px;
}
.section--promise {
  margin-top: 6px;
}
@media screen and (max-width: 478px) {
  .section--promise {
    margin-top: 59px;
  }
}
.section--design {
  margin-top: 139px;
}
@media screen and (max-width: 478px) {
  .section--design {
    margin-top: 63px;
  }
}
.section--brand {
  margin-top: 16px;
}
.section--contact {
  margin-top: 53px;
}
@media screen and (max-width: 478px) {
  .section--contact {
    margin-top: 10px;
  }
}
.section--yunite {
  margin-top: 123px;
}
@media screen and (max-width: 478px) {
  .section--yunite {
    margin-top: 10px;
  }
}
.section--info {
  margin-top: 134px;
}
@media screen and (max-width: 478px) {
  .section--info {
    margin-top: 10px;
  }
}
.section--footer {
  margin-top: 133px;
}
@media screen and (max-width: 478px) {
  .section--footer {
    margin-top: 100px;
  }
}

/*=== 各種パス start =========*/
.path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: -1000;
  overflow: visible;
}
.path__wrap {
  position: relative;
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
}
.path__data {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}
.path--video {
  top: -160px;
}
@media screen and (max-width: 1024px) {
  .path--video {
    top: auto;
    bottom: -65px;
  }
}
.path--menu {
  top: 700px;
}
@media screen and (max-width: 1024px) {
  .path--menu {
    top: auto;
    bottom: -50px;
  }
}
.path--promise {
  top: auto;
  bottom: -220px;
}
@media screen and (max-width: 478px) {
  .path--promise {
    bottom: -100px;
  }
}
.path--design {
  top: auto;
  bottom: -150px;
}
@media screen and (max-width: 478px) {
  .path--design {
    bottom: -100px;
  }
}
.path--yunite-right {
  top: -10px;
}
@media screen and (max-width: 1230px) {
  .path--yunite-right {
    top: auto;
    bottom: -130px;
  }
}
@media screen and (max-width: 1230px) and (max-width: 478px) {
  .path--yunite-right {
    bottom: -70px;
  }
}
.path--yunite-left {
  top: auto;
  bottom: -210px;
}
@media screen and (max-width: 478px) {
  .path--yunite-left {
    bottom: -110px;
  }
}

/*== 共通 end ===============*/
/*== fv start ===============*/
.fv {
  position: relative;
  display: flex;
  height: 100vh;
  overflow: hidden;
  gap: 72px;
  padding-right: 35px;
}
@media screen and (max-width: 1024px) {
  .fv {
    display: block;
    width: 100% !important;
    padding-right: 0;
    overflow: visible;
    height: 100%;
  }
}
.fv__title {
  width: 382px;
}
@media screen and (max-width: 478px) {
  .fv__title {
    width: 197px;
  }
}
.fv__slide-overlap {
  position: relative;
  flex: 0 0 100vw;
  height: calc(100vh - 110px);
  margin-top: 70px;
}
@media screen and (max-width: 1024px) {
  .fv__slide-overlap {
    height: calc(var(--vh-fixed, 1vh) * 100 - 110px);
  }
}
@media screen and (max-width: 768px) {
  .fv__slide-overlap {
    height: calc(var(--vh-fixed, 1vh) * 100 - 86px);
  }
}
.fv__slide {
  flex: 0 0 100vw;
  margin-top: 70px;
}
.fv__slide--first, .fv__slide--two {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 1s ease, filter 1s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  margin-top: 0;
  padding: 0 40px;
  will-change: opacity, filter, transform;
  transform: translateZ(0);
}
@media screen and (max-width: 768px) {
  .fv__slide--first, .fv__slide--two {
    padding: 0 15px;
  }
}
.fv__slide--first {
  height: calc(100vh - 110px);
}
@media screen and (max-width: 1024px) {
  .fv__slide--first {
    height: calc(var(--vh-fixed, 1vh) * 100 - 110px);
  }
}
@media screen and (max-width: 768px) {
  .fv__slide--first {
    height: calc(var(--vh-fixed, 1vh) * 100 - 86px);
  }
}
@media screen and (max-width: 478px) {
  .fv__slide--first {
    justify-content: start;
  }
}
.fv__slide--first.is-show, .fv__slide--two.is-show {
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
}
.fv__slide--three {
  flex: 0 0 auto;
  display: flex;
  justify-content: space-between;
  height: calc(100vh - 110px);
}
@media screen and (max-width: 1024px) {
  .fv__slide--three {
    display: block;
    height: 100%;
    padding: 0 40px;
    margin-top: 16px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 768px) {
  .fv__slide--three {
    padding: 0 15px;
  }
}
.fv__img {
  height: 100%;
  width: 100%;
}
.fv__img--two {
  object-fit: cover;
  height: calc(100vh - 110px);
}
@media screen and (max-width: 1024px) {
  .fv__img--two {
    height: calc(var(--vh-fixed, 1vh) * 100 - 110px);
  }
}
@media screen and (max-width: 768px) {
  .fv__img--two {
    height: calc(var(--vh-fixed, 1vh) * 100 - 86px);
  }
}
@media screen and (max-width: 1024px) {
  .fv__text {
    opacity: 1 !important;
    filter: none !important;
    height: 100%;
  }
}
.fv__text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .fv__text-wrap {
    flex-direction: column-reverse;
    gap: 50px;
  }
}
.fv__text-desc {
  line-height: 2.5;
  font-size: 16px;
  font-style: normal;
}
.fv__scroll {
  text-align: right;
  margin-top: 40px;
  transition: opacity 1s ease, filter 1s ease;
}
@media screen and (max-width: 1024px) {
  .fv__scroll {
    margin-top: 0;
    opacity: 0;
    filter: blur(10px);
  }
}
.fv__scroll.is-show {
  opacity: 1;
  filter: blur(0);
}
.fv__scroll-text {
  position: relative;
  display: inline-block;
  text-align: left;
  font-size: 13px;
  font-family: "Marcellus", serif;
}
.fv__scroll-text:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  height: 0.7px;
  width: 20px;
  background: #383838;
  animation: scroll 1.8s infinite;
}

@keyframes scroll {
  0% {
    transform: scale(0, 1);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 100% 0;
  }
  100% {
    transform: scale(0, 1);
    transform-origin: 100% 0;
  }
}
/*== Fv end ===============*/
/*== Video start ===============*/
.video {
  position: relative;
}
.video__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .video__wrap {
    gap: 21px;
    flex-direction: column;
  }
}
.video__title {
  font-size: 30px;
  width: 40%;
  font-family: "Marcellus", serif;
}
@media screen and (max-width: 768px) {
  .video__title {
    font-size: 28px;
    width: 100%;
  }
}
.video__media {
  width: 60%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .video__media {
    width: 100%;
  }
}
.video__text {
  margin-top: 24px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 35px;
}
@media screen and (max-width: 768px) {
  .video__text {
    gap: 20px;
    margin-top: 15px;
  }
}
.video__text-play {
  position: relative;
  display: inline-block;
  font-size: 13px;
  font-family: "Noto Serif JP", serif !important;
  transition: 0.5s;
  cursor: pointer;
}
.video__text-play:hover {
  opacity: 0.5;
}
.video__text-play:after {
  content: "";
  background: #383838;
  height: 1px;
  width: 15px;
  position: absolute;
  top: 50%;
  left: -22.5px;
  transform: translateY(-50%);
}
.video__text-cap {
  font-size: 12px;
  text-align: left;
  display: inline-block;
  font-family: "Inter", serif;
  font-weight: 300;
}
.video__label {
  position: absolute;
  top: 0;
  right: -23px;
  writing-mode: vertical-rl;
  font-size: 10px;
  padding-bottom: 50px;
  font-family: "Inter", serif;
}
@media screen and (max-width: 768px) {
  .video__label {
    display: none;
  }
}
.video__frame {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}
.video__frame:hover .video__play {
  transform: translate(-50%, -50%) scale(1.2);
}
.video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 57px;
  height: 57px;
  transition: 0.5s;
}
@media screen and (max-width: 478px) {
  .video__play {
    width: 37px;
    height: 37px;
  }
}
.video__frame video, .video__frame .video__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 1s ease;
}
.video__frame video {
  opacity: 0;
  pointer-events: none;
}
.video__media.is-active .video__thumb {
  opacity: 0;
}
.video__media.is-active video {
  opacity: 1;
  pointer-events: auto;
}

/*== Video end ===============*/
/*=== 注文住宅 start =========*/
.menu {
  position: relative;
}
.menu__wrap {
  margin-top: 101px;
}
@media screen and (max-width: 478px) {
  .menu__wrap {
    margin-top: 50px;
  }
}
.menu__list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.menu__item {
  flex: 1 1 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 12px 0;
  border-bottom: solid 1px #C4C4C4;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .menu__item {
    flex: 1 1 50%;
    justify-content: space-between;
    padding: 12px 10px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 768px) {
  .menu__item {
    gap: 11px;
  }
}
.menu__item.is-active {
  border-bottom: solid 2px #F18E1D;
}
.menu__item:hover {
  border-bottom: solid 2px #F18E1D;
}
.menu__item:hover .menu__brand, .menu__item:hover .menu__label {
  color: #383838;
}
.menu__item:hover .menu__arrow {
  border-color: transparent transparent #383838 #383838;
}
.menu__brand {
  font-size: 13px;
  line-height: 1.2;
  transition: 0.3s;
  font-family: "Marcellus", serif;
  color: #BCBCBC;
}
@media screen and (max-width: 768px) {
  .menu__brand {
    min-width: 87.45px;
  }
}
.menu__num {
  color: #F18E1D;
  font-family: "Lora", "serif";
}
@media screen and (max-width: 768px) {
  .menu__num {
    margin-right: 7px;
  }
}
.menu__label {
  font-size: 25px;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.3s;
  color: #BCBCBC;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .menu__label {
    min-width: 172px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 478px) {
  .menu__label {
    font-size: 23px;
  }
}
.menu__arrow {
  width: 11px;
  height: 11px;
  border: 1px solid;
  border-color: transparent transparent #BCBCBC #BCBCBC;
  transform: rotate(-45deg);
  transition: 0.3s;
}
.is-active .menu__brand, .is-active .menu__label {
  color: #383838;
}
.is-active .menu__arrow {
  border-color: transparent transparent #383838 #383838;
}
.menu__content {
  position: relative;
  overflow: hidden;
  margin: 104px auto 58px;
  min-height: 507px; /* Safariでoverflow無視対策 */
  transition: height 0.5s ease;
}
@media screen and (max-width: 768px) {
  .menu__content {
    margin: 65px auto 61px;
  }
}
@media screen and (max-width: 768px) and (max-width: 478px) {
  .menu__content {
    overflow: visible !important;
  }
}
.menu__info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 1s ease;
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  z-index: 0;
}
.menu__info.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.menu__info img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
.menu__image {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
@media screen and (max-width: 768px) {
  .menu__image {
    flex-direction: column;
    align-items: flex-start;
  }
}
.menu__image + .menu__image {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .menu__image + .menu__image {
    margin-top: 0;
  }
}
.menu__title {
  flex: 1;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.8;
  min-width: 180px;
}
@media screen and (max-width: 478px) {
  .menu__title {
    font-size: 23px;
  }
}
.menu__img {
  max-width: 839px;
}
.menu__img-before {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  max-width: 839px;
  margin-left: auto;
  width: 100%;
}
.menu__img-before img {
  max-width: 158px;
}
.menu__cap {
  font-size: 13px;
  font-weight: 500;
  margin-top: 9px;
}
.menu__text {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 15px;
  line-height: 2.5;
  margin-top: 58px;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .menu__text {
    flex-direction: column;
    align-items: flex-end;
    margin-top: 40px;
  }
}
.menu__desc {
  font-weight: 500;
  flex: 1;
}
.menu__text-link {
  transition: 0.5s;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Noto Serif JP", serif !important;
  white-space: nowrap;
}
.menu__text-link:hover {
  opacity: 0.5;
}
.menu__text-link img {
  max-width: 13.15px;
}
.menu__nav {
  display: inline-block;
  cursor: pointer;
}
.menu__nav-wrap {
  display: flex;
  gap: 20px;
  align-items: center;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 500;
}
.menu__nav-wrap:hover {
  opacity: 0.6;
}
.menu__nav-arrow {
  width: 12px;
}
.menu__nav-arrow.is-fade-out {
  opacity: 0;
  transition: opacity 1s ease;
}
.menu__nav-arrow.is-fade-in {
  opacity: 1;
  transition: opacity 1s ease;
}

/*=== 注文住宅 end =========*/
/*=== お約束 start =========*/
.promise {
  position: relative;
  z-index: 1;
}
.promise__building-wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .promise__building-wrap {
    flex-direction: column;
  }
}
.promise__building-text {
  margin-top: 154px;
}
@media screen and (max-width: 768px) {
  .promise__building-text {
    margin-top: 0;
  }
}
.promise__building-list {
  margin-top: 97px;
}
@media screen and (max-width: 768px) {
  .promise__building-list {
    margin-top: 60px;
  }
}
.promise__building-item {
  font-size: 17px;
  font-weight: 500;
  display: flex;
}
@media screen and (max-width: 768px) {
  .promise__building-item {
    line-height: 1.8;
  }
}
.promise__building-item + .promise__building-item {
  margin-top: 28px;
}
@media screen and (max-width: 768px) {
  .promise__building-item + .promise__building-item {
    margin-top: 22px;
  }
}
.promise__num {
  color: #DEDEDE;
  font-family: "Lora", "serif";
  font-size: 20px;
  margin-right: 15px;
  width: 19.7px;
  text-align: center;
}
.promise__building-img {
  max-width: 437px;
}
@media screen and (max-width: 768px) {
  .promise__building-img {
    margin: 28px 0 0 auto;
    width: 70%;
  }
}
.promise__staff-wrap {
  margin-top: 191px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .promise__staff-wrap {
    flex-direction: column;
    gap: 49px;
    margin-top: 94px;
  }
}
.promise__staff-title {
  font-size: 23px;
  line-height: 2.5;
  min-width: 225px;
  font-family: "Noto Serif JP", serif !important;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 478px) {
  .promise__staff-title {
    font-size: 20px;
  }
}
.promise__staff-list {
  max-width: 755px;
  flex: 1;
}
.promise__staff-item {
  display: flex;
  justify-content: space-between;
  gap: 17px 33px;
}
.promise__staff-item--reverse {
  flex-direction: row-reverse;
}
.promise__staff-item + .promise__staff-item {
  margin-top: 75px;
}
@media screen and (max-width: 768px) {
  .promise__staff-item + .promise__staff-item {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .promise__staff-item {
    flex-direction: column-reverse;
  }
}
.promise__staff-text {
  max-width: 507px;
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 29px;
}
@media screen and (max-width: 768px) {
  .promise__staff-text {
    flex-direction: column-reverse;
    width: 100%;
    max-width: 100%;
  }
}
.promise__staff-desc {
  line-height: 2.3;
}
.promise__staff-img {
  max-width: 192px;
}
.promise__name {
  font-size: 18px;
  font-family: "Marcellus", serif;
  line-height: 1.5;
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .promise__name--reverse {
    margin-left: calc(100% - 214.5px);
  }
}
.promise__role {
  font-size: 13px;
  font-family: "Noto Serif JP", serif !important;
  margin-right: 9px;
}
.promise__advisor {
  display: flex;
}
@media screen and (max-width: 768px) {
  .promise__advisor--reverse {
    flex-direction: row-reverse;
  }
}
.promise__staff-cap {
  writing-mode: vertical-rl;
  font-family: "Marcellus", serif;
}

/*=== お約束 end =========*/
/*=== 空間設計 start =========*/
.design {
  position: relative;
  z-index: 1;
}
.design__list {
  display: flex;
  margin-top: 79px;
}
@media screen and (max-width: 478px) {
  .design__list {
    flex-direction: column;
    margin-top: 50px;
  }
}
.design__item {
  flex: 1;
}
.design__item--mt30 {
  margin-top: 30px;
}
@media screen and (max-width: 478px) {
  .design__item--mt30 {
    margin-top: 60px;
  }
}
.design__item--mt60 {
  margin-top: 60px;
}
.design__img {
  position: relative;
}
.design__num {
  position: absolute;
  right: 16px;
  bottom: -25px;
  font-size: 50px;
  font-family: "Lora", "serif";
  color: #F18E1D;
  line-height: 1;
}
.design__title {
  font-size: 25px;
  margin: 40px auto 30px;
  font-weight: 500;
}
@media screen and (max-width: 478px) {
  .design__title {
    font-size: 23px;
    margin: 36px auto 30px;
  }
}
.design__cap {
  padding-right: 43px;
  line-height: 2.3;
  font-weight: 500;
}
@media screen and (max-width: 478px) {
  .design__cap {
    padding-right: 0;
  }
}
.design__staff {
  display: flex;
  justify-content: space-between;
  max-width: 845px;
  margin: 91px 0 0 auto;
  border: solid 1px #C4C4C4;
  padding: 42px 44px;
  gap: 17px 35px;
}
@media screen and (max-width: 768px) {
  .design__staff {
    flex-direction: column;
    padding: 30px 23px;
  }
}
.design__advisor {
  display: flex;
}
@media screen and (max-width: 768px) {
  .design__advisor {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
}
.design__staff-cap {
  writing-mode: vertical-rl;
  font-family: "Marcellus", serif;
}
.design__staff-img {
  max-width: 192px;
}
.design__staff-text {
  max-width: 507px;
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 29px;
}
@media screen and (max-width: 768px) {
  .design__staff-text {
    flex-direction: column-reverse;
    max-width: 100%;
    width: 100%;
  }
}
.design__staff-desc {
  line-height: 2.3;
  font-weight: 500;
}
.design__name {
  font-size: 18px;
  font-family: "Marcellus", serif;
  line-height: 1.5;
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
}
.design__role {
  font-size: 13px;
  font-family: "Noto Serif JP", serif !important;
  margin-right: 9px;
}

/*=== 空間設計 end =========*/
/*=== トータルブランド start =========*/
.brand__img {
  max-width: 856px;
  width: 100%;
  margin: 77px auto 0;
}
@media screen and (max-width: 478px) {
  .brand__img {
    margin: 50px auto 0;
  }
}
.brand__list {
  margin-top: 47px;
  display: none;
}
@media screen and (max-width: 478px) {
  .brand__list {
    display: block;
  }
}
.brand__item + .brand__item {
  margin-top: 30px;
}
.brand__role {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand__label {
  display: inline-block;
  color: #F18E1D;
  font-family: "Noto Serif JP", serif !important;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.brand__logo {
  height: 12px;
  width: auto;
  display: block;
  object-fit: contain;
}
.brand__logo--revo {
  height: 38px;
}
.brand__text {
  margin-top: 10px;
  font-weight: 500;
}

/*=== トータルブランド end =========*/
/*=== お問い合わせ start =========*/
.contact__wrap {
  position: relative;
  border: solid 1px #F18E1D;
  border-radius: 5px;
  padding: 82px 15px 90px;
}
@media screen and (max-width: 768px) {
  .contact__wrap {
    padding: 59px 15px 80px;
  }
}
.contact__wrap:after {
  content: "";
  background: #F18E1D;
  height: 7px;
  max-width: 197px;
  width: 60%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.contact__text {
  text-align: center;
}
.contact__title {
  font-size: 45px;
  font-family: "Marcellus", serif;
  margin: 9px auto 41px;
}
@media screen and (max-width: 768px) {
  .contact__title {
    margin: 15px auto 29px;
    font-size: 40px;
  }
}
.contact__desc {
  line-height: 2;
}
.contact__form {
  width: 100%;
  max-width: 751px;
  margin: 55px auto 0;
}
.contact__table {
  border-spacing: 0 20px;
  border-collapse: separate;
}
.contact__head {
  vertical-align: middle;
}
.contact__label, .contact__note {
  display: inline;
}
.contact__label {
  font-size: 17px;
  font-weight: 500;
  margin-right: 12px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .contact__label {
    font-size: 15px;
    margin-right: 8px;
  }
}
.contact__note {
  font-size: 12px;
  color: #F18E1D;
}
.contact__body {
  display: block;
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #B1B1B1;
}
.contact__body--none {
  border-bottom: none;
  padding-bottom: 0;
}
.contact__body input[type=text], .contact__body input[type=email], .contact__body textarea {
  background: #F5F5F5;
  border-radius: 3px;
  padding: 18px 27px 18px;
  width: 100%;
  font-family: "Noto Serif JP", serif;
}
.contact__body input[type=text]::placeholder, .contact__body input[type=email]::placeholder, .contact__body textarea::placeholder {
  color: #C4C4C4;
}
.contact__btn {
  position: relative;
  width: 50%;
  max-width: 225px;
  margin: 50px auto 0;
  text-align: center;
  border: 1px solid #383838;
  position: relative;
  font-size: 13px;
  transition: 0.5s;
}
.contact__btn:before {
  content: "";
  background: #383838;
  height: 1px;
  width: 30px;
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  transition: 0.5s;
}
.contact__btn input[type=submit] {
  position: relative;
  padding: 15px;
  transition: 0.5s;
}
.contact__btn:hover {
  background: #383838;
  border: 1px solid #fff;
}
.contact__btn:hover input[type=submit] {
  background: #383838;
  color: #fff;
}
.contact__btn:hover:before {
  background: #fff;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 478px) {
  .contact__btn {
    margin: 30px auto 0;
  }
}
.contact__error {
  margin-top: 4px;
  color: red;
}
.contact__csrf {
  text-align: center;
  margin-top: 4px;
  color: red;
}

/*=== お問い合わせ end =========*/
/*=== ユニテグループ start =========*/
.yunite__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-left: max((100% - 90vw) / 2, (100% - 1100px) / 2);
}
@media screen and (max-width: 768px) {
  .yunite__inner {
    padding: 0 15px;
  }
}
.yunite__philosophy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}
@media screen and (max-width: 768px) {
  .yunite__philosophy {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 50px;
  }
}
.yunite__text {
  flex: 0 0 35%;
}
.yunite__en {
  font-size: 15px;
  font-family: "Marcellus", serif;
}
.yunite__jp {
  font-size: 25px;
  margin-top: 36px;
  line-height: 2.2;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .yunite__jp {
    margin-top: 20px;
    font-size: 23px;
    line-height: 2;
  }
}

/*=== ユニテグループ end =========*/
/*=== 会社情報 start =========*/
.info {
  /*** 会社概要 ***/
  /*** ショールーム ***/
  /*** グループ会社 ***/
}
.info__wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .info__wrap {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) and (max-width: 478px) {
  .info__wrap {
    gap: 50px;
  }
}
.info__wrap--showroom {
  margin-top: 64px;
}
.info__wrap--group {
  margin-top: 114px;
}
.info__title {
  font-size: 23px;
  font-family: "Noto Serif JP", serif !important;
  max-width: 149px;
}
@media screen and (max-width: 478px) {
  .info__title {
    font-size: 20px;
  }
}
.info__company-list, .info__showroom-block, .info__group-block {
  flex: 0 0 75%;
  max-width: 755.5px;
}
@media screen and (max-width: 1024px) {
  .info__company-list, .info__showroom-block, .info__group-block {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.info__company-item {
  position: relative;
  display: flex;
  gap: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #707070;
  padding-right: 10px;
}
.info__company-item + .info__company-item {
  margin-top: 24px;
}
.info__company-item:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  background: #F18E1D;
  height: 1px;
  width: 88px;
}
.info__company-label {
  font-family: "Noto Serif JP", serif !important;
  min-width: 62px;
  line-height: 2;
}
.info__company-value {
  font-size: 17px;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 478px) {
  .info__company-value {
    font-size: 15px;
  }
}
.info__showroom-store + .info__showroom-store {
  margin-top: 68px;
}
.info__showroom-name {
  color: #F18E1D;
  padding-bottom: 16px;
  border-bottom: 1px solid #F18E1D;
  font-size: 17px;
  font-weight: 500;
}
.info__showroom-list {
  margin-top: 31px;
  display: flex;
  flex-wrap: wrap;
  gap: 29px;
}
@media screen and (max-width: 768px) {
  .info__showroom-list {
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .info__showroom-list + .info__showroom-list {
    margin-top: 16px;
  }
}
.info__showroom-item {
  display: flex;
  align-items: center;
  gap: 9px;
  letter-spacing: 0.04em;
}
.info__showroom-item:nth-of-type(1) {
  max-width: 307px;
  flex: 0 0 50%;
}
.info__showroom-label {
  min-width: 69px;
  font-family: "Noto Serif JP", serif !important;
}
.info__showroom-value {
  font-size: 17px;
  font-weight: 500;
}
.info__showroom-value--link {
  position: relative;
  border-bottom: 1px solid #383838;
  transition: 0.5s;
  padding-left: 20px;
}
.info__showroom-value--link:hover {
  opacity: 0.5;
}
.info__showroom-value--link:before {
  content: "";
  background: url("../images/icon-pin.svg") no-repeat center/contain;
  width: 11.67px;
  height: 16.98px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.info__group-brand {
  border-bottom: 1px solid #C4C4C4;
  padding-bottom: 33px;
}
.info__group-brand + .info__group-brand {
  margin-top: 40px;
  padding-bottom: 40px;
}
.info__group-brand--none {
  padding-bottom: 0 !important;
  border: none;
}
.info__group-name {
  position: relative;
  font-family: "Noto Serif JP", serif !important;
  padding-left: 24px;
}
.info__group-name:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: #F18E1D;
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.info__group-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  border-bottom: #C4C4C4;
  gap: 30px 44px;
}
@media screen and (max-width: 478px) {
  .info__group-list {
    flex-direction: column;
    align-items: flex-start;
  }
}
.info__group-list--brand {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  column-gap: 13px;
  row-gap: 32px;
  justify-content: start;
}
@media screen and (max-width: 768px) {
  .info__group-list--brand {
    grid-template-columns: repeat(2, max-content);
  }
}
@media screen and (max-width: 768px) and (max-width: 478px) {
  .info__group-list--brand {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 478px) {
  .info__group-item {
    text-align: left;
  }
}
.info__group-item:nth-child(2), .info__group-item:nth-child(6) {
  margin-right: 14px;
}
@media screen and (max-width: 478px) {
  .info__group-list--brand .info__group-item:nth-of-type(even) {
    margin-top: -15px;
  }
}
.info__group-logo {
  max-height: 57px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .info__group-logo {
    width: auto;
  }
}
@media screen and (max-width: 768px) and (max-width: 478px) {
  .info__group-logo {
    margin-left: 0;
    margin-right: auto;
  }
}
.info__group-logo--mag {
  height: 18.14px;
}
.info__group-logo--granire {
  width: 127px;
}
.info__group-logo--knopp {
  height: 42.98px;
}
.info__group-logo--orangeline {
  height: 39.85px;
}
.info__group-logo--revo {
  width: 111px;
}
.info__group-company {
  margin-top: 11px;
  font-weight: 500;
}
@media screen and (max-width: 478px) {
  .info__group-company {
    margin-top: 0;
  }
}
.info__group-cap {
  font-size: 13px;
  font-weight: 500;
  margin-top: 11px;
  text-align: center;
}
.info__group-desc {
  font-size: 13px;
  font-family: "Noto Serif JP", serif !important;
  margin-top: 14px;
}

.complate__wrap {
  position: relative;
  border: solid 1px #F18E1D;
  border-radius: 5px;
  padding: 82px 15px 90px;
  margin: 125px auto 80px;
}
@media screen and (max-width: 768px) {
  .complate__wrap {
    padding: 59px 15px 80px;
  }
}
.complate__wrap:after {
  content: "";
  background: #F18E1D;
  height: 7px;
  max-width: 197px;
  width: 60%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.complate__title {
  text-align: center;
}
.complate__en {
  font-size: 45px;
  font-family: "Marcellus", serif;
  margin: 9px auto 41px;
}
@media screen and (max-width: 768px) {
  .complate__en {
    margin: 15px auto 29px;
    font-size: 40px;
  }
}
.complate__inner {
  width: 100%;
  max-width: 751px;
  margin: 50px auto 0;
}
.complate__text {
  text-align: center;
  line-height: 2.5;
  font-weight: 500;
  border-bottom: 1px solid rgb(177, 177, 177);
  padding-bottom: 10px;
}
.complate__bg {
  background: #f5f5f5;
  padding: 30px 20px;
  border-radius: 3px;
}
.complate__note {
  text-align: center;
  line-height: 2.5;
  font-weight: 500;
  margin-top: 30px;
}
.complate__btn {
  position: relative;
  width: 50%;
  max-width: 225px;
  margin: 50px auto 0;
  text-align: center;
  border: 1px solid #383838;
  position: relative;
  font-size: 13px;
  transition: 0.5s;
}
.complate__btn:before {
  content: "";
  background: #383838;
  height: 1px;
  width: 30px;
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  transition: 0.5s;
}
.complate__btn:hover {
  background: #383838;
  border: 1px solid #fff;
}
.complate__btn:hover .complate__link {
  background: #383838;
  color: #fff;
}
.complate__btn:hover:before {
  background: #fff;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 478px) {
  .complate__btn {
    margin: 30px auto 0;
  }
}
.complate__link {
  position: relative;
  padding: 15px;
  transition: 0.5s;
}

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