@charset "UTF-8";
/******* media *******/
/******* base *******/
@supports (-webkit-touch-callout: none) {
  .vh100 {
    min-height: -webkit-fill-available;
  }
}
:root {
  --md10px: 0.625rem;
  --md11px: 0.6875rem;
  --md12px: 0.75rem;
  --md13px: 0.8125rem;
  --md14px: 0.875rem;
  --md15px: 0.9375rem;
  --md16px: 1rem;
  --md17px: 1.0625rem;
  --md18px: 1.125rem;
  --md19px: 1.1875rem;
  --md20px: 1.25rem;
  --md21px: 1.3125rem;
  --md22px: 1.375rem;
  --md23px: 1.4375rem;
  --md24px: 1.5rem;
  --md25px: 1.5625rem;
  --md26px: 1.625rem;
  --md27px: 1.6875rem;
  --md28px: 1.75rem;
  --md29px: 1.8125rem;
  --md30px: 1.875rem;
  --md36px: 2.25rem;
  --md44px: 2.5rem;
}

body {
  font-size: var(--md16px);
}

@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 900px;
  }
}

h2 {
  font-size: var(--md20px);
  line-height: 1.8;
}

h3 {
  font-size: var(--md18px);
}

h4 {
  font-size: var(--md16px);
}

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

header {
  position: fixed;
  width: 50px;
  height: 100dvh;
  top: 0;
  left: 0;
  z-index: 99;
}
@media (min-width: 992px) {
  header {
    background-color: white;
  }
}
header .gnav {
  width: 100%;
  list-style-type: none;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
}
header .gnav li {
  font-size: 2rem;
  line-height: 1;
}
header .gnav li a {
  color: #E02305;
}
header .gnav li a:hover {
  cursor: pointer;
}
header .gnav li a svg {
  width: 40px;
}
header[data-mode=realestate] .gnav.is_index li a {
  color: #E8E8C1;
}
@media (min-width: 992px) {
  header[data-mode=realestate] .gnav.is_index li a {
    color: #E02305;
  }
}

body {
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  color: #E02305;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.05em;
}

footer {
  text-align: center;
  width: 100%;
  padding: 120px 0 30px 0;
}
footer .flogo {
  width: 160px;
  margin: 0 auto;
  margin-bottom: 2rem;
}
footer .flogo svg {
  width: 100%;
  height: auto;
}
footer p {
  margin: 15px 0;
  line-height: 1;
}
footer img {
  margin-bottom: 5px;
}
footer .address {
  font-size: var(--md14px);
}
footer .copyright {
  font-size: var(--md12px);
}

.hamburger {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  color: #000;
}
.hamburger svg {
  width: 100%;
  height: 100%;
}
.hamburger svg rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 2px;
}
.hamburger svg line {
  stroke: currentColor;
  stroke-width: 2px;
  fill: none;
  transition: all 0.2s ease-out;
  opacity: 1;
}
.hamburger:hover {
  cursor: pointer;
}
.hamburger.show {
  color: #fc0;
}
.hamburger.show svg line:nth-of-type(1) {
  transform-origin: 50% 30%;
  transform: translate(0, 20%) rotate(45deg);
}
.hamburger.show svg line:nth-of-type(2) {
  opacity: 0;
}
.hamburger.show svg line:nth-of-type(3) {
  transform-origin: 50% 70%;
  transform: translate(0, -20%) rotate(-45deg);
}

br.sp {
  display: block;
}
@media (min-width: 768px) {
  br.sp {
    display: none;
  }
}

.tjf {
  text-align: justify;
  text-justify: inter-ideograph;
}

.vh100 {
  min-height: 100vh;
}

.consolebox {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 9999;
  padding: 10px;
}
.consolebox p {
  padding: 0;
  margin: 0;
}
.consolebox p.breakpoint::before {
  content: "breakpoint : ";
}
.consolebox p.breakpoint::after {
  content: "default";
}
@media (min-width: 576px) {
  .consolebox p.breakpoint::after {
    content: "sm";
  }
}
@media (min-width: 768px) {
  .consolebox p.breakpoint::after {
    content: "md";
  }
}
@media (min-width: 992px) {
  .consolebox p.breakpoint::after {
    content: "lg";
  }
}
@media (min-width: 1200px) {
  .consolebox p.breakpoint::after {
    content: "xl";
  }
}
@media (min-width: 1400px) {
  .consolebox p.breakpoint::after {
    content: "xxl";
  }
}

.page-index main,
.page-second main {
  width: 100%;
}
@media (min-width: 992px) {
  .page-index main,
  .page-second main {
    width: calc(100% - 50px);
    margin: 0 0 0 50px;
  }
}
.page-index footer,
.page-second footer {
  width: 100%;
  color: currentColor;
}

.page-index {
  position: relative;
  overflow-x: hidden;
}
.page-index .splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  opacity: 1;
  background-color: white;
  pointer-events: none;
  animation: fadeOut 1s 4.5s linear forwards;
}
.page-index .splash .inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.page-index .splash .inner .copy {
  opacity: 0;
  animation: delayIn 1s 2.5s linear forwards;
  font-size: var(--md28px);
}
@keyframes delayIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page-index .splash .inner svg {
  animation: delayIn 1s 1s linear forwards;
  max-width: 400px;
  width: 90%;
  margin: 0 5%;
  opacity: 0;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.page-index section {
  align-items: center;
  padding: 4rem 0;
  margin: 0 0 50vh 0;
}
@media (min-width: 992px) {
  .page-index section {
    margin: 0;
  }
}
.page-index main section,
.page-index main footer {
  transition: all 0.3s ease-out;
}
.page-index main .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  transition: left 0.5s ease-out;
  height: 100vh;
  display: flex;
  z-index: 1;
}
@media (min-width: 992px) {
  .page-index main .bg {
    left: 50px;
    width: calc(100% - 50px);
  }
}
.page-index main .bg .images {
  width: 50%;
  height: 100%;
  position: relative;
}
.page-index main .bg .images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.page-index main .bg .images img.show {
  opacity: 1;
}
.page-index main[data-mode=realestate] section,
.page-index main[data-mode=realestate] footer {
  background-color: #e02305;
}
.page-index main[data-mode=realestate] .contents {
  color: white;
}
@media (min-width: 992px) {
  .page-index main[data-mode=realestate] .contents .inner {
    right: 0;
    left: 50%;
  }
}
.page-index main[data-mode=realestate] .contents .on-realestate {
  display: block;
  opacity: 1;
  color: white;
}
.page-index main[data-mode=realestate] .contents .on-bath {
  display: none;
}
.page-index main[data-mode=realestate] .sec-message .content {
  border-color: #e8e8c1;
}
.page-index main[data-mode=bath] section,
.page-index main[data-mode=bath] footer {
  background-color: #b2dfed;
}
.page-index main[data-mode=bath] .bg {
  left: -100%;
}
@media (min-width: 992px) {
  .page-index main[data-mode=bath] .bg {
    left: 50px;
  }
}
.page-index main[data-mode=bath] .contents .inner {
  color: #e02305;
}
@media (min-width: 992px) {
  .page-index main[data-mode=bath] .contents .inner {
    left: 0;
    right: 50%;
  }
}
.page-index main[data-mode=bath] .contents .on-realestate {
  display: none;
}
.page-index main[data-mode=bath] .contents .on-bath {
  display: block;
}
.page-index main.onMove h1 .fukidashi .label span {
  opacity: 0;
}
@media (min-width: 992px) {
  .page-index main.onMove .contents .inner {
    transform: scaleX(2);
  }
}
.page-index .contents {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  width: 100%;
}
.page-index .contents .inner {
  position: absolute;
  top: 0;
  width: 100%;
  min-height: 100vh;
  transition: all 0.5s ease-out;
  transform: scale(1);
}
@media (min-width: 992px) {
  .page-index .contents .inner {
    width: 50%;
  }
}
.page-index .contents .sec-logo {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
.page-index .contents .sec-logo h1 {
  display: block;
  margin: 0;
  text-align: center;
}
.page-index .contents .sec-logo h1 .fukidashi {
  position: relative;
  opacity: 0;
  transform-origin: center bottom;
}
.page-index .contents .sec-logo h1 .fukidashi.biyoyon {
  opacity: 1;
  animation: biyoyon 0.5s ease-out forwards;
}
@keyframes biyoyon {
  0% {
    transform: scale(1.5, 0.5);
  }
  33% {
    transform: scale(0.7, 1.3);
  }
  66% {
    transform: scale(1.1, 0.9);
  }
  100% {
    transform: scale(1, 1);
  }
}
.page-index .contents .sec-logo h1 .fukidashi .label {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-index .contents .sec-logo h1 .fukidashi .label span {
  font-size: var(--md24px);
  color: #E02305;
  transition: all 0.3s ease-out;
}
.page-index .contents .sec-logo h1 .fukidashi img {
  position: absolute;
  bottom: -40px;
  left: calc(50% - 20px);
}
.page-index .contents .sec-logo svg {
  width: 60%;
}
.page-index .contents .content {
  width: 80%;
  margin: 0 10%;
}
.page-index .contents .content h2 {
  text-align: center;
  margin-bottom: 4rem;
}
.page-index .contents .sec-message {
  min-height: 100vh;
}
@media (min-width: 992px) {
  .page-index .contents .sec-message .content {
    border: 1px solid white;
  }
}
.page-index .contents .sec-message .content .message {
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.page-index .contents .sec-message .content .message .message_inner .copy {
  font-size: var(--md30px);
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .page-index .contents .sec-message .content .message .message_inner .copy {
    font-size: var(--md36px);
  }
}
.page-index .contents .sec-message .content .message .message_inner .text {
  font-size: var(--md16px);
  line-height: 2.4;
  margin: 0;
}
@media (min-width: 768px) {
  .page-index .contents .sec-message .content .message .message_inner .text {
    font-size: var(--md18px);
  }
}
.page-index .contents .sec-about img {
  margin-bottom: 2rem;
}
.page-index .contents .sec-about .content {
  /*
  @include lg {
  	display: grid;
  	grid-template-columns: 35% 1fr;
  	gap: 1rem;
  }
  */
  font-size: var(--md13px);
}
.page-index .contents .sec-about .content p {
  margin-bottom: 0.5rem;
}
.page-index .contents .sec-about .content .name {
  font-size: var(--md24px);
}
.page-index .contents .sec-about .content ul {
  list-style-type: none;
  padding: 1rem 0 0 0;
}
.page-index .contents .sec-about .content ul li {
  display: grid;
  grid-template-columns: 70px 1fr;
  font-size: var(--md13px);
  margin-bottom: 0.5rem;
}
.page-index .contents .sec-about .content .description {
  margin-top: 2rem;
}
.page-index .contents .sec-company ul {
  list-style-type: none;
  padding: 0;
}
.page-index .contents .sec-company ul li {
  padding: 0.7rem 0;
  border-bottom: 1px solid white;
  display: grid;
  grid-template-columns: 100px 1fr;
  font-size: var(--md13px);
}
.page-index .contents .sec-sento .content .sentos {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.page-index .contents .sec-sento .content .sentos .sento {
  text-align: center;
}
.page-index .contents .sec-sento .content .sentos .sento img {
  margin-bottom: 1em;
}
.page-index .contents .sec-sento .content .sentos .sento h3 {
  font-size: var(--md20px);
  margin-bottom: 0.7em;
}
.page-index .contents .sec-sento .content .sentos .sento h3 span {
  font-size: var(--md15px);
}
.page-index .contents .sec-sento .content .sentos .sento p {
  margin-bottom: 1em;
}
.page-index .contents .sec-sento .content .sentos .sento ul {
  list-style: none;
  padding-left: 0;
}
.page-index .contents .sec-sento .content .sentos .sento ul li {
  display: inline-block;
  font-size: 2rem;
  line-height: 1;
  margin-right: 20px;
}
.page-index .contents .sec-sento .content .sentos .sento ul li:last-child {
  margin-right: 0;
}
.page-index .contents .sec-sento .content .sentos .sento a {
  color: #E02305;
}

.page-second {
  margin-top: 100px;
}
.page-second .sec-header_second h2 {
  font-size: var(--md16px);
  text-align: center;
  color: #e02305;
}
.page-second .sec-header_second h2 svg {
  display: block;
  width: 100%;
  max-width: 98px;
  aspect-ratio: 98/70;
  margin: 0 auto 1rem auto;
}

.page-contact form {
  max-width: 920px;
  margin: 0 auto;
}
.page-contact form .form-head {
  margin: 2rem 0;
}
.page-contact form .item {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .page-contact form .item {
    display: grid;
    grid-template-columns: 200px 1fr;
  }
}
.page-contact form .item .label {
  margin: 0;
}
.page-contact form .item .input input:not([type=radio]),
.page-contact form .item .input textarea,
.page-contact form .item .radios input:not([type=radio]),
.page-contact form .item .radios textarea {
  width: 100%;
  background-color: #f1f1f1;
}
.page-contact form .item .input input[type=radio],
.page-contact form .item .radios input[type=radio] {
  margin-right: 5px;
}
.page-contact form .item .input label,
.page-contact form .item .radios label {
  margin-right: 15px;
}
.page-contact form .form-foot {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  gap: 30px;
}
.page-contact form .form-foot p {
  margin: 0;
  position: relative;
}
.page-contact form .form-foot p .wpcf7-spinner {
  position: absolute;
  right: 0;
  bottom: 10px;
}
.page-contact form .form-foot label {
  display: flex;
  gap: 5px;
}
.page-contact form .form-foot input[type=submit] {
  background-color: #E02305;
  color: white;
  padding: 1em 0;
  line-height: 1;
  width: 340px;
  margin-top: 2rem;
}
.page-contact .screen-reader-response {
  display: none;
}
.page-contact .wpcf7-response-output {
  text-align: center;
  margin: 2rem 0 0 0;
}/*# sourceMappingURL=style.css.map */