@charset "UTF-8";
/*共通スタイル*/
@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }
  50% {
    background-size: 0 1px; /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
    background-position: bottom right;
  }
  51% {
    background-position: bottom left;
  }
  100% {
    background-size: 100% 1px;
  }
}
/* main colors */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --header-height: 70px;
  --spacer: 80px;
}
@media (min-width: 600px) {
  :root {
    --header-height: 75px;
  }
}
@media (min-width: 600px) and (min-width: 1200px) {
  :root {
    --header-height: 83px;
    --spacer: 160px;
  }
}

html {
  opacity: 0;
  transition: opacity 0.5s;
}
html.wf-active {
  opacity: 1;
}

body {
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: #2D3132;
  line-height: 1.75;
  font-size: 0.875rem;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  body {
    font-size: 0.9375rem;
  }
}

img,
svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  max-width: 100%;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer !important;
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul.disc {
  list-style-type: disc;
  padding-left: 1.5em;
  list-style-position: outside;
}

button {
  color: #2D3132;
}

select {
  color: #2D3132;
  background: #fff;
}

.site_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.site_body {
  margin-bottom: auto;
  padding-top: var(--header-height);
}

.container-full {
  width: 100%;
  max-width: calc(1500px + 80px);
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .container-full {
    padding: 0 40px;
  }
}

.container-base {
  width: 100%;
  max-width: calc(1300px + 40px);
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .container-base {
    max-width: calc(1300px + 80px);
    padding: 0 40px;
  }
}
.container-middle {
  width: 100%;
  max-width: calc(1100px + 40px);
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .container-middle {
    max-width: calc(1100px + 80px);
    padding: 0 40px;
  }
}
[class*=fadeIn] {
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

[class*=fadeIn] {
  opacity: 0;
}

.animationLine {
  overflow: hidden;
  display: block;
}

.textUp {
  opacity: 1;
  transform: translateY(100%);
  display: inline-block;
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.275, 0, 0, 1);
}

@keyframes typinganime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn.is-animated {
  animation-name: fadeIn;
}

.fadeInUp.is-animated {
  animation-name: fadeInUp;
}

.fadeInLeft.is-animated {
  animation-name: fadeInLeft;
}

.fadeInRight.is-animated {
  animation-name: fadeInRight;
}

.fadeInDown.is-animated {
  animation-name: fadeInDown;
}

.is-animated .textUp {
  animation-name: textUp;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes textUp {
  from {
    transform: translateY(110%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes textDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(110%);
  }
}
@keyframes slideInUp {
  0% {
    transform: translateY(100%);
  }
  10% {
    opacity: 0.5;
    transform-origin: 50% 50%;
    transform: translateY(50%);
    transition: all 0.3s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes slideInDown {
  0% {
    transform: translateY(-100%);
  }
  10% {
    opacity: 0.5;
    transform-origin: 50% 50%;
    transform: translateY(-50%);
    transition: all 0.3s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  }
  100% {
    transform: translateY(-5%);
  }
}
.delay-1ms {
  animation-delay: calc(1 / 10)s;
}

.delay-2ms {
  animation-delay: calc(2 / 10)s;
}

.delay-3ms {
  animation-delay: calc(3 / 10)s;
}

.delay-4ms {
  animation-delay: calc(4 / 10)s;
}

.delay-5ms {
  animation-delay: calc(5 / 10)s;
}

.delay-6ms {
  animation-delay: calc(6 / 10)s;
}

.delay-7ms {
  animation-delay: calc(7 / 10)s;
}

.delay-8ms {
  animation-delay: calc(8 / 10)s;
}

.delay-9ms {
  animation-delay: calc(9 / 10)s;
}

.delay-10ms {
  animation-delay: calc(10 / 10)s;
}

.delay-11ms {
  animation-delay: calc(11 / 10)s;
}

.delay-12ms {
  animation-delay: calc(12 / 10)s;
}

.delay-13ms {
  animation-delay: calc(13 / 10)s;
}

.delay-14ms {
  animation-delay: calc(14 / 10)s;
}

.delay-15ms {
  animation-delay: calc(15 / 10)s;
}

.delay-16ms {
  animation-delay: calc(16 / 10)s;
}

.delay-17ms {
  animation-delay: calc(17 / 10)s;
}

.delay-18ms {
  animation-delay: calc(18 / 10)s;
}

.delay-19ms {
  animation-delay: calc(19 / 10)s;
}

.delay-20ms {
  animation-delay: calc(20 / 10)s;
}

.gradText > * {
  opacity: 0;
}
.gradText.is-animated > * {
  opacity: 1;
}

.gradText .text-split span {
  color: #D3A83C;
  opacity: 0;
  transform: translateX(30px);
}
.gradText.is-animated .text-split span {
  opacity: 1;
  color: #2D3132;
  transform: translateX(0);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), color 2s cubic-bezier(0.19, 1, 0.22, 1) 1s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(1) {
  transition-delay: 0s, 0s, 0.2s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(2) {
  transition-delay: 0.04s, 0.04s, 0.25s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(3) {
  transition-delay: 0.08s, 0.08s, 0.3s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(4) {
  transition-delay: 0.12s, 0.12s, 0.35s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(5) {
  transition-delay: 0.16s, 0.16s, 0.4s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(6) {
  transition-delay: 0.2s, 0.2s, 0.45s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(7) {
  transition-delay: 0.24s, 0.24s, 0.5s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(8) {
  transition-delay: 0.28s, 0.28s, 0.55s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(9) {
  transition-delay: 0.32s, 0.32s, 0.6s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(10) {
  transition-delay: 0.36s, 0.36s, 0.65s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(11) {
  transition-delay: 0.4s, 0.4s, 0.7s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(12) {
  transition-delay: 0.44s, 0.44s, 0.75s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(13) {
  transition-delay: 0.48s, 0.48s, 0.8s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(14) {
  transition-delay: 0.52s, 0.52s, 0.85s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(15) {
  transition-delay: 0.56s, 0.56s, 0.9s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(16) {
  transition-delay: 0.6s, 0.6s, 0.95s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(17) {
  transition-delay: 0.64s, 0.64s, 1s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(18) {
  transition-delay: 0.68s, 0.68s, 1.05s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(19) {
  transition-delay: 0.72s, 0.72s, 1.1s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(20) {
  transition-delay: 0.76s, 0.76s, 1.15s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(21) {
  transition-delay: 0.8s, 0.8s, 1.2s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(22) {
  transition-delay: 0.84s, 0.84s, 1.25s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(23) {
  transition-delay: 0.88s, 0.88s, 1.3s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(24) {
  transition-delay: 0.92s, 0.92s, 1.35s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(25) {
  transition-delay: 0.96s, 0.96s, 1.4s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(26) {
  transition-delay: 1s, 1s, 1.45s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(27) {
  transition-delay: 1.04s, 1.04s, 1.5s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(28) {
  transition-delay: 1.08s, 1.08s, 1.55s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(29) {
  transition-delay: 1.12s, 1.12s, 1.6s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(30) {
  transition-delay: 1.16s, 1.16s, 1.65s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(31) {
  transition-delay: 1.2s, 1.2s, 1.7s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(32) {
  transition-delay: 1.24s, 1.24s, 1.75s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(33) {
  transition-delay: 1.28s, 1.28s, 1.8s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(34) {
  transition-delay: 1.32s, 1.32s, 1.85s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(35) {
  transition-delay: 1.36s, 1.36s, 1.9s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(36) {
  transition-delay: 1.4s, 1.4s, 1.95s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(37) {
  transition-delay: 1.44s, 1.44s, 2s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(38) {
  transition-delay: 1.48s, 1.48s, 2.05s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(39) {
  transition-delay: 1.52s, 1.52s, 2.1s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(40) {
  transition-delay: 1.56s, 1.56s, 2.15s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(41) {
  transition-delay: 1.6s, 1.6s, 2.2s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(42) {
  transition-delay: 1.64s, 1.64s, 2.25s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(43) {
  transition-delay: 1.68s, 1.68s, 2.3s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(44) {
  transition-delay: 1.72s, 1.72s, 2.35s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(45) {
  transition-delay: 1.76s, 1.76s, 2.4s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(46) {
  transition-delay: 1.8s, 1.8s, 2.45s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(47) {
  transition-delay: 1.84s, 1.84s, 2.5s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(48) {
  transition-delay: 1.88s, 1.88s, 2.55s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(49) {
  transition-delay: 1.92s, 1.92s, 2.6s;
}
.gradText.is-animated .text-split:nth-child(1) span:nth-child(50) {
  transition-delay: 1.96s, 1.96s, 2.65s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(1) {
  transition-delay: 0.05s, 0.05s, 0.25s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(2) {
  transition-delay: 0.09s, 0.09s, 0.3s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(3) {
  transition-delay: 0.13s, 0.13s, 0.35s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(4) {
  transition-delay: 0.17s, 0.17s, 0.4s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(5) {
  transition-delay: 0.21s, 0.21s, 0.45s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(6) {
  transition-delay: 0.25s, 0.25s, 0.5s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(7) {
  transition-delay: 0.29s, 0.29s, 0.55s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(8) {
  transition-delay: 0.33s, 0.33s, 0.6s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(9) {
  transition-delay: 0.37s, 0.37s, 0.65s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(10) {
  transition-delay: 0.41s, 0.41s, 0.7s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(11) {
  transition-delay: 0.45s, 0.45s, 0.75s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(12) {
  transition-delay: 0.49s, 0.49s, 0.8s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(13) {
  transition-delay: 0.53s, 0.53s, 0.85s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(14) {
  transition-delay: 0.57s, 0.57s, 0.9s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(15) {
  transition-delay: 0.61s, 0.61s, 0.95s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(16) {
  transition-delay: 0.65s, 0.65s, 1s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(17) {
  transition-delay: 0.69s, 0.69s, 1.05s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(18) {
  transition-delay: 0.73s, 0.73s, 1.1s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(19) {
  transition-delay: 0.77s, 0.77s, 1.15s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(20) {
  transition-delay: 0.81s, 0.81s, 1.2s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(21) {
  transition-delay: 0.85s, 0.85s, 1.25s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(22) {
  transition-delay: 0.89s, 0.89s, 1.3s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(23) {
  transition-delay: 0.93s, 0.93s, 1.35s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(24) {
  transition-delay: 0.97s, 0.97s, 1.4s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(25) {
  transition-delay: 1.01s, 1.01s, 1.45s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(26) {
  transition-delay: 1.05s, 1.05s, 1.5s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(27) {
  transition-delay: 1.09s, 1.09s, 1.55s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(28) {
  transition-delay: 1.13s, 1.13s, 1.6s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(29) {
  transition-delay: 1.17s, 1.17s, 1.65s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(30) {
  transition-delay: 1.21s, 1.21s, 1.7s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(31) {
  transition-delay: 1.25s, 1.25s, 1.75s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(32) {
  transition-delay: 1.29s, 1.29s, 1.8s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(33) {
  transition-delay: 1.33s, 1.33s, 1.85s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(34) {
  transition-delay: 1.37s, 1.37s, 1.9s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(35) {
  transition-delay: 1.41s, 1.41s, 1.95s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(36) {
  transition-delay: 1.45s, 1.45s, 2s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(37) {
  transition-delay: 1.49s, 1.49s, 2.05s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(38) {
  transition-delay: 1.53s, 1.53s, 2.1s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(39) {
  transition-delay: 1.57s, 1.57s, 2.15s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(40) {
  transition-delay: 1.61s, 1.61s, 2.2s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(41) {
  transition-delay: 1.65s, 1.65s, 2.25s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(42) {
  transition-delay: 1.69s, 1.69s, 2.3s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(43) {
  transition-delay: 1.73s, 1.73s, 2.35s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(44) {
  transition-delay: 1.77s, 1.77s, 2.4s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(45) {
  transition-delay: 1.81s, 1.81s, 2.45s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(46) {
  transition-delay: 1.85s, 1.85s, 2.5s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(47) {
  transition-delay: 1.89s, 1.89s, 2.55s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(48) {
  transition-delay: 1.93s, 1.93s, 2.6s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(49) {
  transition-delay: 1.97s, 1.97s, 2.65s;
}
.gradText.is-animated .text-split:nth-child(2) span:nth-child(50) {
  transition-delay: 2.01s, 2.01s, 2.7s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(1) {
  transition-delay: 0.1s, 0.1s, 0.3s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(2) {
  transition-delay: 0.14s, 0.14s, 0.35s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(3) {
  transition-delay: 0.18s, 0.18s, 0.4s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(4) {
  transition-delay: 0.22s, 0.22s, 0.45s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(5) {
  transition-delay: 0.26s, 0.26s, 0.5s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(6) {
  transition-delay: 0.3s, 0.3s, 0.55s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(7) {
  transition-delay: 0.34s, 0.34s, 0.6s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(8) {
  transition-delay: 0.38s, 0.38s, 0.65s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(9) {
  transition-delay: 0.42s, 0.42s, 0.7s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(10) {
  transition-delay: 0.46s, 0.46s, 0.75s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(11) {
  transition-delay: 0.5s, 0.5s, 0.8s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(12) {
  transition-delay: 0.54s, 0.54s, 0.85s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(13) {
  transition-delay: 0.58s, 0.58s, 0.9s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(14) {
  transition-delay: 0.62s, 0.62s, 0.95s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(15) {
  transition-delay: 0.66s, 0.66s, 1s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(16) {
  transition-delay: 0.7s, 0.7s, 1.05s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(17) {
  transition-delay: 0.74s, 0.74s, 1.1s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(18) {
  transition-delay: 0.78s, 0.78s, 1.15s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(19) {
  transition-delay: 0.82s, 0.82s, 1.2s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(20) {
  transition-delay: 0.86s, 0.86s, 1.25s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(21) {
  transition-delay: 0.9s, 0.9s, 1.3s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(22) {
  transition-delay: 0.94s, 0.94s, 1.35s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(23) {
  transition-delay: 0.98s, 0.98s, 1.4s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(24) {
  transition-delay: 1.02s, 1.02s, 1.45s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(25) {
  transition-delay: 1.06s, 1.06s, 1.5s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(26) {
  transition-delay: 1.1s, 1.1s, 1.55s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(27) {
  transition-delay: 1.14s, 1.14s, 1.6s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(28) {
  transition-delay: 1.18s, 1.18s, 1.65s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(29) {
  transition-delay: 1.22s, 1.22s, 1.7s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(30) {
  transition-delay: 1.26s, 1.26s, 1.75s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(31) {
  transition-delay: 1.3s, 1.3s, 1.8s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(32) {
  transition-delay: 1.34s, 1.34s, 1.85s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(33) {
  transition-delay: 1.38s, 1.38s, 1.9s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(34) {
  transition-delay: 1.42s, 1.42s, 1.95s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(35) {
  transition-delay: 1.46s, 1.46s, 2s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(36) {
  transition-delay: 1.5s, 1.5s, 2.05s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(37) {
  transition-delay: 1.54s, 1.54s, 2.1s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(38) {
  transition-delay: 1.58s, 1.58s, 2.15s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(39) {
  transition-delay: 1.62s, 1.62s, 2.2s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(40) {
  transition-delay: 1.66s, 1.66s, 2.25s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(41) {
  transition-delay: 1.7s, 1.7s, 2.3s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(42) {
  transition-delay: 1.74s, 1.74s, 2.35s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(43) {
  transition-delay: 1.78s, 1.78s, 2.4s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(44) {
  transition-delay: 1.82s, 1.82s, 2.45s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(45) {
  transition-delay: 1.86s, 1.86s, 2.5s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(46) {
  transition-delay: 1.9s, 1.9s, 2.55s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(47) {
  transition-delay: 1.94s, 1.94s, 2.6s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(48) {
  transition-delay: 1.98s, 1.98s, 2.65s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(49) {
  transition-delay: 2.02s, 2.02s, 2.7s;
}
.gradText.is-animated .text-split:nth-child(3) span:nth-child(50) {
  transition-delay: 2.06s, 2.06s, 2.75s;
}

ul.kome {
  font-size: 0.875em;
}
ul.kome li {
  display: flex;
  gap: 0.2em;
}
ul.kome li::before {
  content: "※";
}

.pagenation {
  margin-top: 40px;
}
@media (min-width: 920px) {
  .pagenation {
    margin-top: 60px;
  }
}
.pagenation .nav-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  line-height: 1;
}
.pagenation .nav-links a {
  transition: opacity 0.3s;
}
.pagenation .nav-links .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  border: 1px solid #DCDCDC;
  transition: all 0.3s;
}
@media (min-width: 920px) {
  .pagenation .nav-links .page-numbers {
    width: 42px;
    height: 42px;
  }
}
.pagenation .nav-links .page-numbers:hover {
  opacity: 1;
  background-color: #2D3132;
  border: 1px solid #2D3132;
  color: #fff;
}
.pagenation .nav-links .page-numbers span {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media (min-width: 920px) {
  .pagenation .nav-links .page-numbers span {
    font-size: 1.125rem;
  }
}
.pagenation .nav-links .current {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 32px;
  height: 32px;
  background-color: #2D3132;
  border: 1px solid #2D3132;
  pointer-events: none;
}
@media (min-width: 920px) {
  .pagenation .nav-links .current {
    width: 42px;
    height: 42px;
  }
}
.pagenation .nav-links .current span {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media (min-width: 920px) {
  .pagenation .nav-links .current span {
    font-size: 1.125rem;
  }
}
.pagenation .nav-links .next {
  margin-left: 20px;
}
@media (min-width: 920px) {
  .pagenation .nav-links .next {
    margin-left: 24px;
  }
}
.pagenation .nav-links .prev {
  margin-right: 20px;
}
@media (min-width: 920px) {
  .pagenation .nav-links .prev {
    margin-right: 24px;
  }
}
.pagenation .nav-links .next,
.pagenation .nav-links .prev {
  border: 0;
}
.pagenation .nav-links .next:hover,
.pagenation .nav-links .prev:hover {
  border: 1px solid #2D3132;
}
.pagenation .nav-links .next:hover .arrow-prev::before,
.pagenation .nav-links .next:hover .arrow-next::before,
.pagenation .nav-links .prev:hover .arrow-prev::before,
.pagenation .nav-links .prev:hover .arrow-next::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.pagenation .nav-links .arrow-prev,
.pagenation .nav-links .arrow-next {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 9999px;
  transition: all 0.3s;
}
@media (min-width: 920px) {
  .pagenation .nav-links .arrow-prev,
  .pagenation .nav-links .arrow-next {
    width: 42px;
    height: 42px;
  }
}
.pagenation .nav-links .arrow-prev::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: translate(-35%, -50%) rotate(225deg);
  transition: all 0.3s;
}
@media (min-width: 920px) {
  .pagenation .nav-links .arrow-prev::before {
    width: 12px;
    height: 12px;
  }
}
.pagenation .nav-links .arrow-next::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: translate(-65%, -50%) rotate(45deg);
  transition: all 0.3s;
}
@media (min-width: 920px) {
  .pagenation .nav-links .arrow-next::before {
    width: 12px;
    height: 12px;
  }
}

.marker {
  background-image: linear-gradient(transparent 75%, #D3232E 0%);
}

@media (max-width: 599px) {
  .mobile-hidden {
    display: none !important;
  }
}

.tablet-visible {
  display: none !important;
}
@media (min-width: 600px) {
  .tablet-visible {
    display: block !important;
  }
}
@media (min-width: 600px) {
  .tablet-visible-inline {
    display: inline !important;
  }
}
@media (min-width: 600px) {
  .tablet-visible-inlineBlock {
    display: inline-block !important;
  }
}
@media (min-width: 600px) {
  .tablet-visible-flex {
    display: flex !important;
  }
}

@media (min-width: 600px) {
  .tablet-hidden {
    display: none !important;
  }
}

.tablet-h-visible {
  display: none !important;
}
@media (min-width: 920px) {
  .tablet-h-visible {
    display: block !important;
  }
}
@media (min-width: 920px) {
  .tablet-h-visible-inline {
    display: inline !important;
  }
}
@media (min-width: 920px) {
  .tablet-h-visible-inlineBlock {
    display: inline-block !important;
  }
}
@media (min-width: 920px) {
  .tablet-h-visible-flex {
    display: flex !important;
  }
}

@media (min-width: 920px) {
  .tablet-h-hidden {
    display: none !important;
  }
}

.laptop-visible {
  display: none !important;
}
@media (min-width: 1200px) {
  .laptop-visible {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .laptop-visible-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .laptop-visible-inlineBlock {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .laptop-visible-flex {
    display: flex !important;
  }
}

@media (min-width: 1200px) {
  .laptop-hidden {
    display: none !important;
  }
}

.monitor-visible {
  display: none !important;
}
@media (min-width: 1400px) {
  .monitor-visible {
    display: block !important;
  }
}
@media (min-width: 1400px) {
  .monitor-visible-inline {
    display: inline !important;
  }
}
@media (min-width: 1400px) {
  .monitor-visible-inlineBlock {
    display: inline-block !important;
  }
}
@media (min-width: 1400px) {
  .monitor-visible-flex {
    display: flex !important;
  }
}

@media (min-width: 1400px) {
  .monitor-hidden {
    display: none !important;
  }
}

.text-bold {
  font-weight: 700 !important;
}

.text-regular {
  font-weight: 300 !important;
}

.text-note {
  font-size: 0.875em;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

.delay-1ms {
  animation-delay: 0.1s;
}

.delay-2ms {
  animation-delay: 0.2s;
}

.delay-3ms {
  animation-delay: 0.3s;
}

.delay-4ms {
  animation-delay: 0.4s;
}

.delay-5ms {
  animation-delay: 0.5s;
}

.delay-6ms {
  animation-delay: 0.6s;
}

.delay-7ms {
  animation-delay: 0.7s;
}

.delay-8ms {
  animation-delay: 0.8s;
}

.delay-9ms {
  animation-delay: 0.9s;
}

.delay-10ms {
  animation-delay: 1s;
}

.delay-11ms {
  animation-delay: 1.1s;
}

.delay-12ms {
  animation-delay: 1.2s;
}

.delay-13ms {
  animation-delay: 1.3s;
}

.delay-14ms {
  animation-delay: 1.4s;
}

.delay-15ms {
  animation-delay: 1.5s;
}

.delay-16ms {
  animation-delay: 1.6s;
}

.delay-17ms {
  animation-delay: 1.7s;
}

.delay-18ms {
  animation-delay: 1.8s;
}

.delay-19ms {
  animation-delay: 1.9s;
}

.delay-20ms {
  animation-delay: 2s;
}

.delay-21ms {
  animation-delay: 2.1s;
}

.delay-22ms {
  animation-delay: 2.2s;
}

.delay-23ms {
  animation-delay: 2.3s;
}

.delay-24ms {
  animation-delay: 2.4s;
}

.delay-25ms {
  animation-delay: 2.5s;
}

.delay-26ms {
  animation-delay: 2.6s;
}

.delay-27ms {
  animation-delay: 2.7s;
}

.delay-28ms {
  animation-delay: 2.8s;
}

.delay-29ms {
  animation-delay: 2.9s;
}

.delay-30ms {
  animation-delay: 3s;
}

.delay-31ms {
  animation-delay: 3.1s;
}

.delay-32ms {
  animation-delay: 3.2s;
}

.delay-33ms {
  animation-delay: 3.3s;
}

.delay-34ms {
  animation-delay: 3.4s;
}

.delay-35ms {
  animation-delay: 3.5s;
}

.delay-36ms {
  animation-delay: 3.6s;
}

.delay-37ms {
  animation-delay: 3.7s;
}

.delay-38ms {
  animation-delay: 3.8s;
}

.delay-39ms {
  animation-delay: 3.9s;
}

.delay-40ms {
  animation-delay: 4s;
}

.delay-41ms {
  animation-delay: 4.1s;
}

.delay-42ms {
  animation-delay: 4.2s;
}

.delay-43ms {
  animation-delay: 4.3s;
}

.delay-44ms {
  animation-delay: 4.4s;
}

.delay-45ms {
  animation-delay: 4.5s;
}

.delay-46ms {
  animation-delay: 4.6s;
}

.delay-47ms {
  animation-delay: 4.7s;
}

.delay-48ms {
  animation-delay: 4.8s;
}

.delay-49ms {
  animation-delay: 4.9s;
}

.delay-50ms {
  animation-delay: 5s;
}

i.facebook::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/common/icon_facebook.svg);
  mask-image: url(../img/common/icon_facebook.svg);
  display: block;
  width: 32px;
  height: 32px;
  background: #2D3132;
}
i.instagram::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/common/icon_instagram.svg);
  mask-image: url(../img/common/icon_instagram.svg);
  display: block;
  width: 32px;
  height: 32px;
  background: #2D3132;
}

.icon-arrow {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.icon-arrow::before, .icon-arrow::after {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/common/arrow.svg);
  mask-image: url(../img/common/arrow.svg);
  display: block;
  width: 24px;
  height: 24px;
  background: #2D3132;
  transition: translate 0.2s ease-out;
}
.icon-arrow::after {
  position: absolute;
  top: 0;
  left: 0;
  translate: -100% 0;
}
a:hover .icon-arrow::before, button:hover .icon-arrow::before {
  translate: 100% 0;
}
a:hover .icon-arrow::after, button:hover .icon-arrow::after {
  translate: 0 0;
}
.icon-arrow-blank::before, .icon-arrow-blank::after {
  -webkit-mask-image: url(../img/common/arrow_blank.svg);
  mask-image: url(../img/common/arrow_blank.svg);
}
.icon-arrow-blank::after {
  translate: -100% 100%;
}
a:hover .icon-arrow-blank::before, button:hover .icon-arrow-blank::before {
  translate: 100% -100%;
}
a:hover .icon-arrow-blank::after, button:hover .icon-arrow-blank::after {
  translate: 0 0;
}
.icon-circle {
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: background-color 0.3s, boder-color 0.3s;
}
@media (min-width: 920px) {
  .icon-circle {
    width: 40px;
    height: 40px;
  }
}
.icon-circle::before, .icon-circle::after {
  width: 20px;
  height: 20px;
  transition: background-color 0.3s, translate 0.2s ease-out;
}
@media (min-width: 920px) {
  .icon-circle::before, .icon-circle::after {
    width: 24px;
    height: 24px;
  }
}
.icon-circle.icon-arrow::after {
  top: 50%;
  left: 50%;
  translate: calc(-50% + 36px) -50%;
}
@media (min-width: 920px) {
  .icon-circle.icon-arrow::after {
    translate: calc(-50% - 40px) -50%;
  }
}
a:hover .icon-circle.icon-arrow::before, button:hover .icon-circle.icon-arrow::before {
  translate: 36px 0;
}
@media (min-width: 920px) {
  a:hover .icon-circle.icon-arrow::before, button:hover .icon-circle.icon-arrow::before {
    translate: 40px 0;
  }
}
a:hover .icon-circle.icon-arrow::after, button:hover .icon-circle.icon-arrow::after {
  translate: -50% -50%;
}
.icon-up::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/common/arrow_up.svg);
  mask-image: url(../img/common/arrow_up.svg);
  display: block;
  width: 24px;
  height: 24px;
  background: #fff;
}
.icon-doc::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/common/icon_doc.svg);
  mask-image: url(../img/common/icon_doc.svg);
  display: block;
  width: 40px;
  height: 40px;
  background: #2D3132;
}
.icon-reserve::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/common/icon_reserve.svg);
  mask-image: url(../img/common/icon_reserve.svg);
  display: block;
  width: 40px;
  height: 40px;
  background: #2D3132;
}
.icon-housing::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/common/service_house.svg);
  mask-image: url(../img/common/service_house.svg);
  display: block;
  width: 24px;
  height: 24px;
  background: #2D3132;
}
.icon-real::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/common/service_real.svg);
  mask-image: url(../img/common/service_real.svg);
  display: block;
  width: 24px;
  height: 24px;
  background: #2D3132;
}
.icon-care::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/common/service_care.svg);
  mask-image: url(../img/common/service_care.svg);
  display: block;
  width: 24px;
  height: 24px;
  background: #2D3132;
}
.icon-public::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/common/service_public.svg);
  mask-image: url(../img/common/service_public.svg);
  display: block;
  width: 24px;
  height: 24px;
  background: #2D3132;
}
.icon-solar::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/common/service_solar.svg);
  mask-image: url(../img/common/service_solar.svg);
  display: block;
  width: 24px;
  height: 24px;
  background: #2D3132;
}
.icon-renovation::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/common/service_renovation.svg);
  mask-image: url(../img/common/service_renovation.svg);
  display: block;
  width: 24px;
  height: 24px;
  background: #2D3132;
}
.icon-dropdown::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/common/dropdown.svg);
  mask-image: url(../img/common/dropdown.svg);
  display: block;
  width: 16px;
  height: 16px;
}
.icon-white::before {
  background: #fff !important;
}

.innerLink {
  background-image: linear-gradient(to right, #2D3132, #2D3132); /* 線の色 */
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat; /* 背景を繰り返さない */
  padding-bottom: 0;
}
@media (min-width: 1200px) {
  .innerLink:hover {
    animation: linkLineReverse 0.5s ease forwards;
  }
}
.innerLink-white.innerLink {
  color: #fff;
  background-image: linear-gradient(to right, #fff, #fff); /* 線の色 */
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat; /* 背景を繰り返さない */
  padding-bottom: 0;
}
@media (min-width: 1200px) {
  .innerLink-white.innerLink:hover {
    animation: linkLineReverse 0.5s ease forwards;
  }
}

.btn {
  display: inline-flex;
  min-width: 230px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #DCDCDC;
  border-radius: 999px;
  padding: 16px 24px;
  font-size: 0.9375rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  z-index: 0;
  line-height: 1.4;
}
.btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #D3232E;
  transition: opacity 0.3s ease-out;
  opacity: 0;
}
.btn .icon::before, .btn .icon::after {
  transition: translate 0.2s ease-out, background-color 0.3s;
}
.btn:hover {
  color: #fff;
  border-color: #D3232E;
}
.btn:hover::before {
  opacity: 1;
}
.btn:hover .icon::before, .btn:hover .icon::after {
  background: #fff;
}
.btn-white {
  color: #fff;
  border-color: #fff;
}
.btn-white .icon::before, .btn-white .icon::after {
  background: #fff;
}
.btn-black {
  color: #fff;
  background: #2D3132;
  border-color: #2D3132;
}
.btn-black .icon::before, .btn-black .icon::after {
  background: #fff;
}
.btn-close {
  justify-content: center;
  pointer-events: none;
}

.fixed_cta {
  position: fixed;
  right: 12px;
  top: calc(var(--header-height) + 20px);
  display: flex;
  gap: 8px;
  flex-direction: column;
  z-index: 10;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 920px) {
  .fixed_cta {
    right: 20px;
  }
}
.fixed-visible .fixed_cta {
  opacity: 1;
  visibility: visible;
}
.fixed_cta_btn {
  display: inline-flex;
  background: #fff;
  align-items: center;
  line-height: 1.3;
  font-size: 0.8125rem;
  font-weight: 700;
  gap: 8px;
  border-radius: 8px;
  width: 164px;
  height: 64px;
  padding: 8px;
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1215686275);
}
@media (max-width: 599px) {
  .fixed_cta_btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    justify-content: center;
  }
}
@media (min-width: 920px) {
  .fixed_cta_btn {
    width: 180px;
    height: 72px;
    padding: 16px;
  }
}
.fixed_cta_btn .icon::before {
  transition: background-color 0.3s ease-out;
}
@media (max-width: 599px) {
  .fixed_cta_btn .text {
    display: none;
  }
}
.fixed_cta_btn:hover {
  color: #fff;
  background: #D3232E;
}
.fixed_cta_btn:hover .icon::before {
  background: #fff;
}

.post_row {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: var(--spacer);
}
@media (min-width: 920px) {
  .post_row {
    flex-direction: row;
    justify-content: center;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .post_row {
    gap: 100px;
  }
}

@media (min-width: 920px) {
  .post_side {
    flex: 0 0 360px;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .post_side {
    flex: 0 0 400px;
  }
}
@media (min-width: 920px) {
  .post_side_sticky {
    position: sticky;
    top: 140px;
  }
}

.post_main {
  flex: 0 1 800px;
}

.section_title {
  margin-bottom: 24px;
}
@media (min-width: 920px) {
  .section_title {
    margin-bottom: 32px;
  }
}
.section_title_en {
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  font-size: 1.75rem;
}
@media (min-width: 920px) {
  .section_title_en {
    font-size: 2.25rem;
  }
}
.section_title_ja {
  font-weight: 700;
  font-size: 0.8125rem;
}
@media (min-width: 920px) {
  .section_title_ja {
    font-size: 0.9375rem;
  }
}

.side_information {
  background: #f5f5f5;
  border-radius: 4px;
  padding: 30px 20px;
}
@media (min-width: 1200px) {
  .side_information {
    padding: 30px 30px;
  }
}
.side_information_title {
  font-weight: 700;
  font-size: 1.25rem;
  border-bottom: 1px solid #2D3132;
  line-height: 1.5;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  padding-bottom: 8px;
  margin-bottom: 1em;
}
.side_information_table {
  border-collapse: collapse;
  border-spacing: 0;
}
.side_information_table th, .side_information_table td {
  line-height: 1.5;
  vertical-align: top;
  text-align: left;
  font-size: 0.8125rem;
  padding-top: 8px;
  padding-bottom: 8px;
}
@media (min-width: 920px) {
  .side_information_table th, .side_information_table td {
    font-size: 0.9375rem;
  }
}
.side_information_table th {
  font-weight: 700;
  white-space: nowrap;
  padding-right: 1em;
}
.side_information_btn {
  margin-top: 24px;
  text-align: center;
}

.side_caution {
  border: 1px solid #DCDCDC;
  border-radius: 4px;
  padding: 30px 20px;
}
@media (min-width: 1200px) {
  .side_caution {
    padding: 30px 30px;
  }
}
@media (min-width: 1200px) {
  .form_area__content .side_caution {
    padding: 30px 30px;
  }
}
.side_caution_title {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 1.125rem;
  margin-bottom: 1.5em;
}
.side_caution_title::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/common/icon_caution.svg);
  mask-image: url(../img/common/icon_caution.svg);
  display: block;
  width: 24px;
  height: 24px;
  background: #2D3132;
  margin-top: 4px;
}
.form_area__content .side_caution_title::before {
  display: none;
}
.side_caution_list li {
  display: flex;
  gap: 8px;
  line-height: 1.5;
}
.side_caution_list li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: #2D3132;
  border-radius: 50%;
  flex: 0 0 4px;
  margin-top: 0.7em;
}
.side_caution_list li + li {
  margin-top: 8px;
}

.post_body > *:first-child {
  margin-top: 0 !important;
}
.post_body h2, .post_body h3, .post_body h4, .post_body h5 {
  margin-top: 2em;
  margin-bottom: 1em;
}
.post_body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 1px solid #2D3132;
}
@media (min-width: 920px) {
  .post_body h2 {
    font-size: 1.5rem;
  }
}
.post_body h3 {
  font-size: 0.8125rem;
  font-weight: 700;
}
@media (min-width: 920px) {
  .post_body h3 {
    font-size: 0.9375rem;
  }
}
.post_body ul, .post_body ol {
  border-radius: 4px;
  background: #f5f5f5;
  padding: 1em 1em 1em 2.5em;
  margin: 1em 0;
}
.post_body ul {
  list-style-type: disc;
}
.post_body p {
  margin: 1em 0;
}
.post_body .wp-block-image {
  margin: 40px 0;
}
.post_body a {
  background-image: linear-gradient(to right, #D3232E, #D3232E); /* 線の色 */
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat; /* 背景を繰り返さない */
  padding-bottom: 1px;
  color: #D3232E;
}
@media (min-width: 1200px) {
  .post_body a:hover {
    animation: linkLineReverse 0.5s ease forwards;
  }
}
.post_body blockquote {
  background: #f5f5f5;
  border-radius: 4px;
  padding: 30px 20px;
  margin: 40px 0;
  position: relative;
  z-index: 0;
}
@media (min-width: 920px) {
  .post_body blockquote {
    padding: 40px;
    margin: 60px 0;
  }
}
.post_body blockquote::before {
  content: "“";
  line-height: 1;
  display: inline-block;
  z-index: -1;
  color: #dcdcdc;
  position: absolute;
  top: 10px;
  left: 10px;
  font-weight: 700;
  font-size: 3.75rem;
}
@media (min-width: 920px) {
  .post_body blockquote::before {
    top: 20px;
    left: 20px;
    font-size: 5rem;
  }
}
.post_body blockquote h2 {
  margin-top: 0;
  margin-bottom: 0;
  border: none;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-weight: 500;
  padding-bottom: 0;
  font-size: 1.75rem;
  line-height: 1.2;
}
@media (min-width: 920px) {
  .post_body blockquote h2 {
    font-size: 3rem;
  }
}
.post_body blockquote h2 + p {
  margin-top: 0;
  margin-bottom: 2em;
}
.post_body blockquote cite {
  text-align: right;
  margin-top: 2em;
}
.post_body blockquote cite a {
  color: #2D3132;
  background: transparent;
  display: inline-flex;
  min-width: 230px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #DCDCDC;
  border-radius: 999px;
  padding: 16px 24px;
  font-size: 0.9375rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  z-index: 0;
  line-height: 1.4;
  transition: color 0.3s, background-color 0.3s, boder-color 0.3s;
  text-decoration: none;
  font-style: normal;
}
.post_body blockquote cite a::after {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/common/arrow.svg);
  mask-image: url(../img/common/arrow.svg);
  display: block;
  width: 24px;
  height: 24px;
  background: #2D3132;
  transition: background-color 0.3s;
}
.post_body blockquote cite a:hover {
  color: #fff;
  border-color: #D3232E;
  background: #D3232E;
}
.post_body blockquote cite a:hover::after {
  background-color: #fff;
}

.post_map {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #DCDCDC;
  overflow: hidden;
}
@media (min-width: 920px) {
  .post_map {
    margin-top: 80px;
    padding-top: 80px;
  }
}
.post_map iframe {
  width: 100% !important;
  height: 350px !important;
}
@media (min-width: 920px) {
  .post_map iframe {
    height: 500px !important;
  }
}

.post_share {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #DCDCDC;
  overflow: hidden;
  margin-bottom: var(--spacer);
}
@media (min-width: 920px) {
  .post_share {
    margin-top: 80px;
    padding-top: 80px;
  }
}
.post_share_title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
}
.post_share_list {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.category_filter {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 919px) {
  .category_filter {
    justify-content: center;
  }
}
@media (min-width: 920px) {
  .category_filter {
    gap: 40px;
    margin-bottom: 80px;
  }
}
.category_filter_item_title {
  font-weight: 700;
  font-size: 0.8125rem;
}
.category_filter_item_selector {
  position: relative;
  border-bottom: 1px solid #2D3132;
  cursor: pointer;
}
.category_filter_item_selector::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #D3232E;
  position: absolute;
  bottom: -1px;
  left: 0;
  scale: 0 1;
  transform-origin: 100% 0;
  transition: scale 0.2s ease-out;
}
.category_filter_item_selector:hover {
  cursor: pointer;
}
.category_filter_item_selector:hover::after {
  scale: 1 1;
  transform-origin: 0 0;
}
.category_filter_item_selector select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  font-size: 1rem;
  min-width: 228px;
  padding: 10px 0;
  cursor: pointer;
  color: #2D3132;
  background: #fff;
}
@media (min-width: 920px) {
  .category_filter_item_selector select {
    font-size: 1.125rem;
  }
}
.category_filter_item_selector .icon {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  pointer-events: none;
}
.category_filter_item_selector .icon::before {
  background: #2D3132;
}

.pp {
  margin-bottom: var(--spacer);
}
.pp h2, .pp h3, .pp h4 {
  margin-top: 40px;
  margin-bottom: 24px;
  line-height: 1;
}
.pp p {
  margin: 24px 0;
}
.pp ul {
  list-style: disc;
  padding-left: 20px;
  margin: 16px 0;
}
@media (min-width: 920px) {
  .pp ul {
    padding-left: 24px;
  }
}
.pp .aw {
  margin: 40px 0 0;
}
@media (min-width: 920px) {
  .pp .aw {
    margin: 60px 0 0;
  }
}
.pp .aw p {
  margin: 0;
}

.breadcrumb {
  margin-top: var(--spacer);
}

.contact_present_row {
  background: #fff;
  border-radius: 8px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 920px) {
  .contact_present_row {
    padding: 40px 50px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
}
.contact_present_title {
  font-size: 1.125rem;
  display: flex;
  gap: 4px;
  font-weight: 700;
  align-items: center;
  line-height: 1.5;
  margin-bottom: 1em;
}
@media (min-width: 920px) {
  .contact_present_title {
    font-size: 1.25rem;
  }
}
.contact_present_title::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/common/icon_doc.svg);
  mask-image: url(../img/common/icon_doc.svg);
  display: block;
  width: 40px;
  height: 40px;
  background: #2D3132;
}
.contact_present_list {
  list-style-type: none;
  counter-reset: number;
  padding: 0;
  margin: 0;
}
.contact_present_list_item {
  position: relative;
  padding-left: 50px;
  height: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}
.contact_present_list_item::before {
  counter-increment: number;
  content: counter(number);
  width: 45px;
  height: 45px;
  display: flex;
  border-radius: 50%;
  border: 1px solid #DCDCDC;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1.125rem;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
.contact_present_list_item + .contact_present_list_item {
  margin-top: 16px;
}
.contact_present_list_item_title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 8px;
}
.contact_present_list_item_desc {
  font-size: 0.8125rem;
}

/*ヘッダーのスタイル*/
.site_header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  background: #fff;
  width: 100%;
  top: 0;
  left: 0;
  border-bottom: 1px solid #DCDCDC;
  z-index: 999;
}
@media (min-width: 1200px) {
  .site_header {
    padding: 0 20px;
    gap: 20px;
  }
}
@media (min-width: 1200px) and (min-width: 1400px) {
  .site_header {
    padding: 0 40px;
    gap: 40px;
  }
}
@media (max-width: 599px) {
  .site_header_logo {
    max-width: 164px;
  }
}

.pc_nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
  transition: opacity 0.3s;
}
@media (max-width: 1199px) {
  .pc_nav {
    display: none;
  }
}
.is-open .pc_nav {
  opacity: 0;
  pointer-events: none;
}
.pc_nav_item {
  transition: opacity 0.3s;
}
.pc_nav:hover .pc_nav_item {
  opacity: 0.3;
}
.pc_nav:hover .pc_nav_item:hover {
  opacity: 1;
}
.pc_nav_link {
  display: flex;
  align-items: center;
  line-height: 1;
  height: var(--header-height);
  font-size: 0.8125rem;
  font-weight: 700;
  position: relative;
}
.pc_nav_link::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #2D3132;
  position: absolute;
  bottom: calc(50% - 1em);
  left: 0;
  scale: 0 1;
  transition: scale 0.3s ease-out;
  transform-origin: 100% 0;
}
.pc_nav_link:hover, .pc_nav_item:hover .pc_nav_link {
  opacity: 1;
  visibility: visible;
}
.pc_nav_link:hover::before, .pc_nav_item:hover .pc_nav_link::before {
  scale: 1 1;
  transform-origin: 0 0;
}
.pc_nav_item-parent .pc_nav_link {
  gap: 4px;
}
.pc_nav_item-parent .pc_nav_link::after {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/common/dropdown.svg);
  mask-image: url(../img/common/dropdown.svg);
  display: block;
  width: 12px;
  height: 12px;
  background: #2D3132;
}
.pc_nav_mega {
  position: absolute;
  width: 100%;
  border-bottom: 1px solid #DCDCDC;
  top: calc(var(--header-height) + 1px);
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  background: #fff;
  padding: 28px 40px;
}
.pc_nav_mega:hover, .pc_nav_item:hover .pc_nav_mega {
  opacity: 1;
  visibility: visible;
}
.pc_nav_mega_container {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
}
.pc_nav_mega_title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.pc_nav_mega_list {
  display: flex;
  gap: 16px;
}
.pc_nav_mega_list_item {
  flex: 1 1 0;
}
.pc_nav_mega_list_link {
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 20px;
}
.pc_nav_mega_list_link_img {
  overflow: hidden;
  aspect-ratio: 405/270;
  border-radius: 20px;
}
.pc_nav_mega_list_link_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  transition: scale 0.3s ease-out;
}
.pc_nav_mega_list_link:hover .pc_nav_mega_list_link_img img {
  scale: 1.08;
}
.pc_nav_mega_list_link_textArea {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1rem 0 0;
}
.pc_nav_mega_list_link_textArea .icon-circle {
  border: 1px solid #DCDCDC;
}

.global_nav {
  position: relative;
  z-index: 99;
}
.global_nav_toggle {
  box-shadow: none;
  display: block;
  width: 60px;
  height: 32px;
  top: 0;
  right: 0;
  border: none;
  position: relative;
  z-index: 1001;
  background: transparent;
  color: #fff;
  text-align: left;
  padding: 0;
  border-radius: 0;
}
.global_nav_toggle_bar {
  height: 1px;
  background: #2D3132;
  display: block;
  position: absolute;
  transition: 0.3s linear;
  transition-property: transform, opacity, width;
  transform-origin: 100% 50%;
  left: 0;
  width: 60px;
}
.global_nav_toggle_bar-top {
  top: 10px;
}
.global_nav_toggle_bar-mid {
  top: 50%;
}
.global_nav_toggle_bar-btm {
  bottom: 9px;
}
.global_nav_toggle.is-active .global_nav_toggle_bar-top {
  transform: rotate(-12deg);
}
.global_nav_toggle.is-active .global_nav_toggle_bar-mid {
  opacity: 0;
}
.global_nav_toggle.is-active .global_nav_toggle_bar-btm {
  transform: rotate(12deg);
}
.global_nav_overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 999;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  transition: all 0.3s linear;
  overflow-y: auto;
  background: #fff;
}
@media (min-width: 1200px) {
  .global_nav_overlay {
    display: flex;
    flex-direction: row;
    overflow: hidden;
  }
}
.global_nav_overlay.is-open {
  visibility: visible;
  opacity: 1;
}
.global_nav_img {
  flex: 0 0 26.142857143%;
  width: 26.142857143%;
  height: 100%;
}
@media (max-width: 1199px) {
  .global_nav_img {
    display: none;
  }
}
.global_nav_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 920px) {
  .global_nav_col {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    height: 100%;
    overflow: auto;
    padding: 40px;
  }
}
@media (max-width: 919px) {
  .global_nav_container {
    padding: 40px 40px 100px;
    position: relative;
    z-index: 0;
    margin: auto;
    width: 100%;
    min-height: 100%;
  }
}
@media (max-width: 919px) and (max-width: 599px) {
  .global_nav_container {
    padding: 20px 20px 100px;
  }
}
@media (min-width: 920px) {
  .global_nav_container {
    margin: auto;
  }
}
.global_nav_title {
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  color: #DCDCDC;
  font-weight: 500;
  font-size: 0.9375rem;
  margin-bottom: 1em;
  line-height: 1;
}
@media (min-width: 920px) {
  .global_nav_title {
    font-size: 1.5rem;
  }
}
.global_nav_list {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.global_nav_list_wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 920px) {
  .global_nav_list_wrap {
    flex-direction: row;
    white-space: nowrap;
    gap: 60px;
  }
}
.global_nav_list_link {
  display: inline-flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2D3132;
  background-image: linear-gradient(to right, #2D3132, #2D3132); /* 線の色 */
  background-size: 0 1px; /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
  background-position: bottom right;
  background-repeat: no-repeat; /* 背景を繰り返さない */
  transition: background-size 0.3s ease;
  padding-bottom: 4px;
}
@media (min-width: 1200px) {
  .global_nav_list_link:hover {
    background-size: 100% 1px;
    background-position: bottom left;
  }
}
@media (min-width: 920px) {
  .global_nav_list_link {
    font-size: 1.75rem;
    align-items: baseline;
  }
}
.global_nav_list_link img {
  width: 20px;
  height: 20px;
}
@media (min-width: 920px) {
  .global_nav_list_link img {
    width: 24px;
    height: 24px;
  }
}
.global_nav_list_mega_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 4px;
}
@media (min-width: 920px) {
  .global_nav_list_mega_list {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
.global_nav_list_mega_list_link {
  font-size: 0.8125rem;
  line-height: 1.4;
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
@media (min-width: 920px) {
  .global_nav_list_mega_list_link {
    font-size: 1.25rem;
    background-image: linear-gradient(to right, #2D3132, #2D3132); /* 線の色 */
    background-size: 0 1px; /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
    background-position: bottom right;
    background-repeat: no-repeat; /* 背景を繰り返さない */
    transition: background-size 0.3s ease;
    padding-bottom: 2px;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .global_nav_list_mega_list_link:hover {
    background-size: 100% 1px;
    background-position: bottom left;
  }
}
.global_nav_list_mega_list_link .icon-arrow::before, .global_nav_list_mega_list_link .icon-arrow::after {
  width: 1.25em;
  height: 1.25em;
}
.global_nav_bottom {
  border-top: 1px solid #DCDCDC;
  padding-top: 16px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 920px) {
  .global_nav_bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.global_nav_sns {
  display: flex;
  gap: 8px;
}
.global_nav_privacy {
  font-size: 0.8125rem;
}
@media (min-width: 920px) {
  .global_nav_privacy {
    font-size: 0.9375rem;
  }
}

.fv_hero {
  position: absolute;
  top: 80vh;
  height: 0;
  width: 0;
  left: 0;
}
@media (min-width: 920px) {
  .fv_hero {
    top: 50vh;
  }
}

.pc_nav_mega_inner__block {
  padding: 35px 20px;
}
.pc_nav_mega_inner__block:nth-child(2) {
  border-left: 1px solid #DCDCDC;
  border-right: 1px solid #DCDCDC;
}
.pc_nav_mega_inner__block .pc_nav_mega_ttl {
  font-size: 0.8125rem;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  margin: 0 0 25px 0;
}
@media (min-width: 920px) {
  .pc_nav_mega_inner__block .pc_nav_mega_ttl {
    font-size: 0.9375rem;
  }
}
.pc_nav_mega_inner__block .pc_nav_mega_ttl__first {
  font-size: 1rem;
}
@media (min-width: 920px) {
  .pc_nav_mega_inner__block .pc_nav_mega_ttl__first {
    font-size: 1.25rem;
  }
}
.pc_nav_mega_inner__block .pc_nav_mega_inner__block__logo_group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 28px;
  margin: 0 0 25px 0;
}
.pc_nav_mega_inner__block .pc_nav_mega_inner__block__logo_group #logo-heart {
  width: 480px;
}
.pc_nav_mega_inner__block .pc_nav_mega_inner__block__logo_group #logo-zutto {
  width: 190px;
}
.pc_nav_mega_inner__block .pc_nav_mega_inner__block__logo_group #logo-isseiki {
  width: 210px;
}
.pc_nav_mega_inner__block .pc_nav_mega_inner__block__logo_group .btn {
  min-width: 180px;
  padding: 10px 20px 11px 20px;
  font-size: 0.6875rem;
}
@media (min-width: 920px) {
  .pc_nav_mega_inner__block .pc_nav_mega_inner__block__logo_group .btn {
    font-size: 0.8125rem;
  }
}
.pc_nav_mega_inner__block .pc_nav_mega_inner__block__logo_group .btn .icon-arrow::before, .pc_nav_mega_inner__block .pc_nav_mega_inner__block__logo_group .btn .icon-arrow::after {
  width: 18px;
  height: 18px;
}
.pc_nav_mega_inner__block-hm .pc_nav_mega_inner__block__logo_group {
  gap: 14px;
}

.pc_nav_mega_container .housing_lineup_list {
  justify-content: space-between;
}
.pc_nav_mega_container .housing_lineup_list .housing_lineup_list_link_img {
  margin-bottom: 10px;
}
.pc_nav_mega_container .housing_lineup_list .housing_lineup_list_item .housing_lineup_list_link_title {
  display: block;
  margin: 0 auto;
}
.pc_nav_mega_container .housing_lineup_list__first {
  margin: 60px 0 0 0;
}
.pc_nav_mega_container .housing_lineup_list__first .housing_lineup_list_item {
  flex-basis: 31%;
}
.pc_nav_mega_container .housing_lineup_list__first .housing_lineup_list_item .housing_lineup_list_link_title__nexas {
  width: 75px;
}
.pc_nav_mega_container .housing_lineup_list__first .housing_lineup_list_item .housing_lineup_list_link_title__heartmade {
  width: 125px;
}
.pc_nav_mega_container .housing_lineup_list__first .housing_lineup_list_item .housing_lineup_list_link_title__vita {
  width: 62px;
}
.pc_nav_mega_container .housing_lineup_list__zutto .housing_lineup_list_item {
  flex-basis: 49%;
}
.pc_nav_mega_container .housing_lineup_list__zutto .housing_lineup_list_item .housing_lineup_list_link_title__sh {
  width: 116px;
}
.pc_nav_mega_container .housing_lineup_list__zutto .housing_lineup_list_item .housing_lineup_list_link_title__reco {
  width: 40px;
}
.pc_nav_mega_container .housing_lineup_list__isseiki {
  max-width: 95%;
  margin: 0 auto;
}
.pc_nav_mega_container .housing_lineup_list__isseiki .housing_lineup_list_item {
  flex-basis: 46%;
}
.pc_nav_mega_container .housing_lineup_list__isseiki .housing_lineup_list_item .housing_lineup_list_link_title__oh {
  width: 126px;
}
.pc_nav_mega_container .housing_lineup_list__isseiki .housing_lineup_list_item .housing_lineup_list_link_title__sh {
  width: 126px;
}
.pc_nav_mega_container .housing_lineup_list_link_title {
  height: 25px;
}
@media (min-width: 920px) {
  .pc_nav_mega_container .housing_lineup_list_link_title {
    height: 30px;
  }
}

.about_megaMenu_head {
  display: flex;
  align-items: center;
  height: 66px;
  padding: 0 56px;
  border-bottom: 1px solid #DCDCDC;
}
.about_megaMenu_head p {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
}
.about_megaMenu_row {
  width: 100%;
  display: flex;
}
.about_megaMenu_item {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 48px;
  border-right: 1px solid #DCDCDC;
  transition: all 0.3s ease-out;
}
.about_megaMenu_item-first {
  padding: 24px 48px 24px 56px;
}
.about_megaMenu_item_inner {
  width: min(20vw, 280px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about_megaMenu_item_img {
  width: 100%;
  height: auto;
  contain: paint;
}
.about_megaMenu_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.3s ease-out;
}
.about_megaMenu_item_textArea {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 0 0;
}
.about_megaMenu_item_catch {
  font-weight: 700;
  font-size: min(1.0714285714vw, 15px);
  line-height: 1;
}
.about_megaMenu_item:hover .about_megaMenu_item_img img {
  scale: 1.07;
}

.mix_blend {
  mix-blend-mode: multiply;
}

.security-policy {
  margin: 0 0 0 12px;
}
@media (min-width: 920px) {
  .security-policy {
    margin: 0 0 0 20px;
  }
}

/*フッターのスタイル*/
.footer_cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 0;
}
@media (min-width: 920px) {
  .footer_cta {
    flex-direction: row;
    padding: 40px 0;
  }
}
.footer_cta_section {
  background: #f5f5f5;
  padding: 40px 10px;
  text-align: center;
  border-radius: 20px;
}
@media (min-width: 920px) {
  .footer_cta_section {
    flex: 1 1 0;
    padding: 60px 40px;
  }
}
.footer_cta_section_icon {
  margin-bottom: 16px;
}
@media (max-width: 599px) {
  .footer_cta_section_icon img {
    width: 60px;
  }
}
.footer_cta_section_title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1em;
}
@media (min-width: 920px) {
  .footer_cta_section_title {
    font-size: 1.5rem;
  }
}
.footer_cta_section_title_en {
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .footer_cta_section_title_en {
    font-size: 0.9375rem;
  }
}
.footer_cta_section_catch {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  letter-spacing: normal;
}
@media (min-width: 920px) {
  .footer_cta_section_catch {
    font-size: 1.125rem;
  }
}
.footer_cta_section_text {
  font-size: 0.8125rem;
  letter-spacing: normal;
}
@media (min-width: 920px) {
  .footer_cta_section_text {
    font-size: 0.9375rem;
  }
}
.footer_cta_section_btn {
  margin-top: 36px;
}

.pagetop {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1;
  font-size: 0.9375rem;
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .pagetop {
    position: absolute;
    right: 40px;
    top: 0;
    gap: 8px;
  }
}
.pagetop .icon {
  transition: translate 0.3s;
}
@media (min-width: 920px) {
  .pagetop:hover .icon {
    translate: 0 -10px;
  }
}
@media (min-width: 920px) {
  .pagetop .text {
    writing-mode: vertical-rl;
    letter-spacing: 0.1em;
    line-height: 1.7;
    font-feature-settings: normal;
  }
}

.site_footer {
  background: #2D3132;
  padding: 36px 0 100px;
  color: #fff;
  overflow: hidden;
}
@media (min-width: 920px) {
  .site_footer {
    padding: 90px 0 40px;
  }
}
.site_footer_container {
  padding: 0 20px;
  position: relative;
}
@media (min-width: 600px) {
  .site_footer_container {
    padding: 0 40px;
    max-width: calc(1500px + 80px);
    margin: 0 auto;
  }
}
.site_footer_logo {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .site_footer_logo {
    text-align: left;
    margin-bottom: 60px;
  }
}
.site_footer_logo img {
  width: 353px;
}
@media (max-width: 599px) {
  .site_footer_logo img {
    width: 305px;
  }
}
@media (min-width: 1200px) {
  .site_footer_row {
    display: flex;
    justify-content: space-between;
  }
}
.site_footer_contact {
  text-align: center;
}
@media (max-width: 1199px) {
  .site_footer_contact {
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #454B4D;
  }
}
@media (min-width: 1200px) {
  .site_footer_contact {
    text-align: left;
    order: 2;
    padding: 0 min(7.1428571429vw, 100px) 0 20px;
    border-left: 1px solid #454B4D;
  }
}
.site_footer_contact_tel_number .tel {
  font-size: 0.9375rem;
  margin-right: 4px;
}
.site_footer_contact_tel_number .num {
  font-size: 2rem;
  line-height: 1;
}
@media (min-width: 920px) {
  .site_footer_contact_tel_number .num {
    pointer-events: none;
  }
}
.site_footer_contact_tel_open {
  font-size: 0.8125rem;
}
.site_footer_contact_form {
  margin-top: 24px;
}
@media (min-width: 920px) {
  .site_footer_contact_form {
    margin-top: 40px;
  }
}
.site_footer_contact .site_footer_privacy {
  display: none;
}
@media (min-width: 1200px) {
  .site_footer_contact .site_footer_privacy {
    display: block;
  }
}
.site_footer_address {
  text-align: center;
}
@media (min-width: 1200px) {
  .site_footer_address {
    text-align: left;
    padding-right: min(9.9285714286vw, 139px);
  }
}
.site_footer_address address {
  font-size: 0.9375rem;
  font-style: normal;
}
.site_footer_address .copyright {
  display: none;
}
@media (min-width: 1200px) {
  .site_footer_address .copyright {
    display: block;
  }
}
.site_footer_sns {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 24px 0;
}
@media (min-width: 1200px) {
  .site_footer_sns {
    margin-top: 0;
    justify-content: flex-start;
  }
}
.site_footer_sns i::before {
  background-color: #fff;
}
.site_footer_bottom {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media (max-width: 1199px) {
  .site_footer_bottom {
    padding-top: 24px;
    margin-top: 40px;
    border-top: 1px solid #454B4D;
  }
}
@media (min-width: 600px) {
  .site_footer_bottom {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .site_footer_bottom {
    display: none;
  }
}
.site_footer_privacy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8125rem;
}
@media (min-width: 600px) {
  .site_footer_privacy {
    align-items: flex-end;
  }
}
@media (min-width: 600px) and (min-width: 920px) {
  .site_footer_privacy {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}
@media (min-width: 600px) and (min-width: 920px) and (min-width: 1200px) {
  .site_footer_privacy {
    margin: 30px 0 0;
  }
}
.site_footer_privacy .security-policy {
  margin: 0;
}
@media (min-width: 920px) {
  .site_footer_privacy .security-policy {
    margin: 0 0 0 12px;
  }
}

.copyright {
  font-size: 0.625rem;
  display: block;
  line-height: 1;
}
@media (min-width: 920px) {
  .copyright {
    font-size: 0.8125rem;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .copyright {
    margin: 80px 0 0;
  }
}

.foot_nav {
  display: flex;
  gap: 4px;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.foot_nav_wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 920px) {
  .foot_nav_wrap {
    flex-direction: row;
    white-space: nowrap;
    gap: 40px;
    order: 1;
    line-height: 1.9;
    flex: 1 1 auto;
  }
}
@media (min-width: 920px) {
  .foot_nav {
    padding-left: 20px;
    border-left: 1px solid #454B4D;
    flex: 1 1 0;
  }
}
.foot_nav_link {
  display: inline-block;
  line-height: 1.4;
  font-weight: 700;
  background-image: linear-gradient(to right, #fff, #fff); /* 線の色 */
  background-size: 0 1px; /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
  background-position: bottom right;
  background-repeat: no-repeat; /* 背景を繰り返さない */
  transition: background-size 0.3s ease;
  padding-bottom: 4px;
}
@media (min-width: 1200px) {
  .foot_nav_link:hover {
    background-size: 100% 1px;
    background-position: bottom left;
  }
}
.foot_nav_mega_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 4px;
}
@media (min-width: 920px) {
  .foot_nav_mega_list {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
  }
}
.foot_nav_mega_list_link {
  font-size: 0.8125rem;
  line-height: 1.4;
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
@media (min-width: 920px) {
  .foot_nav_mega_list_link {
    background-image: linear-gradient(to right, #fff, #fff); /* 線の色 */
    background-size: 0 1px; /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
    background-position: bottom right;
    background-repeat: no-repeat; /* 背景を繰り返さない */
    transition: background-size 0.3s ease;
    padding-bottom: 2px;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .foot_nav_mega_list_link:hover {
    background-size: 100% 1px;
    background-position: bottom left;
  }
}
.foot_nav_mega_list_link .icon-arrow::before, .foot_nav_mega_list_link .icon-arrow::after {
  width: 1.25em;
  height: 1.25em;
  background: #fff;
}

.home_event {
  overflow: hidden;
  margin: var(--spacer) 0;
  position: relative;
}
@media (max-width: 919px) {
  .home_event {
    padding-bottom: 100px;
  }
}
.home_event_slider .swiper {
  overflow: visible;
}
.home_event_slider .swiper-slide {
  width: -moz-max-content;
  width: max-content;
}
.home_event_slider .swiper-controller {
  margin-top: 24px;
  display: flex;
  flex-direction: row-reverse;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 920px) {
  .home_event_slider .swiper-controller {
    margin-top: 36px;
    gap: 40px;
  }
}
.home_event_slider_navigation {
  display: flex;
  gap: 8px;
}
@media (min-width: 920px) {
  .home_event_slider_navigation {
    gap: 16px;
  }
}
.home_event_slider_btn {
  background: #fff;
  border: 1px solid #DCDCDC;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: opacity 0.3s, background-color 0.3s, border-color 0.3s;
  z-index: 3;
}
@media (max-width: 919px) {
  .home_event_slider_btn {
    width: 48px;
    height: 48px;
  }
}
.home_event_slider_btn::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/common/arrow_prev.svg);
  mask-image: url(../img/common/arrow_prev.svg);
  display: block;
  width: 32px;
  height: 32px;
  background: #2D3132;
  transition: background-color 0.3s;
}
@media (max-width: 919px) {
  .home_event_slider_btn::before {
    width: 24px;
    height: 24px;
  }
}
.home_event_slider_btn-prev {
  left: 0;
}
.home_event_slider_btn-next {
  rotate: 180deg;
  right: 0;
}
.home_event_slider_btn.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.home_event_slider_btn:hover {
  background: #D3232E;
  border-color: #D3232E;
}
.home_event_slider_btn:hover::before {
  background: #fff;
}
.home_event_slider .swiper-pagination-progressbar,
.home_event_slider .swiper-progressbar {
  width: 100%;
  position: relative;
  height: 4px;
  border-radius: 3px;
  background: #DCDCDC;
  overflow: hidden;
}
.home_event_slider .swiper-pagination-progressbar .swiper-pagination-progressbar-fill,
.home_event_slider .swiper-pagination-progressbar .swiper-scrollbar-drag,
.home_event_slider .swiper-progressbar .swiper-pagination-progressbar-fill,
.home_event_slider .swiper-progressbar .swiper-scrollbar-drag {
  background: #D3232E;
}
.home_event_slider .swiper-pagination-progressbar .swiper-scrollbar-drag,
.home_event_slider .swiper-progressbar .swiper-scrollbar-drag {
  cursor: grab;
}
.home_event_slider_item {
  display: block;
  width: 250px;
}
@media (min-width: 920px) {
  .home_event_slider_item {
    width: 320px;
  }
}
.event_list .home_event_slider_item {
  width: 100%;
}
.home_event_slider_item_img {
  aspect-ratio: 1/1;
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-bottom: 12px;
  overflow: hidden;
}
.home_event_slider_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.3s ease-out;
}
.home_event_slider_item_img .new {
  background: #A99663;
  color: #fff;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  line-height: 1;
  padding: 10px 8px;
  border-radius: 3px;
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}
@media (min-width: 920px) {
  .home_event_slider_item_img .new {
    font-size: 0.9375rem;
  }
}
.home_event_slider_item_img .icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background-color 0.3s, border-color 0.3s;
}
@media (min-width: 920px) {
  .home_event_slider_item_img .icon {
    width: 40px;
    height: 40px;
  }
}
.home_event_slider_item_img .icon::before, .home_event_slider_item_img .icon::after {
  width: 20px;
  height: 20px;
  transition: translate 0.2s ease-out, background-color 0.3s;
}
@media (min-width: 920px) {
  .home_event_slider_item_img .icon::before, .home_event_slider_item_img .icon::after {
    width: 24px;
    height: 24px;
  }
}
.home_event_slider_item:hover .home_event_slider_item_img img {
  scale: 1.05;
}
.home_event_slider_item:hover .icon {
  background: #D3232E;
  border-color: #D3232E;
}
.home_event_slider_item:hover .icon::before, .home_event_slider_item:hover .icon::after {
  background-color: #fff;
}
.home_event_slider_item_title {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.5;
  transition: color 0.3s;
  margin-bottom: 0.5em;
}
@media (min-width: 920px) {
  .home_event_slider_item_title {
    font-size: 1.125rem;
  }
}
.home_event_slider_item_area, .home_event_slider_item_schedule {
  font-size: 0.75rem;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .home_event_slider_item_area, .home_event_slider_item_schedule {
    font-size: 0.9375rem;
  }
}
.home_event_slider_item_schedule .time {
  display: inline-block;
  padding-left: 0.5em;
  margin-left: 0.5em;
  border-left: 1px solid #DCDCDC;
}
.home_event_slider_item_cate {
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 16px;
  gap: 8px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 920px) {
  .home_event_slider_item_cate {
    font-size: 0.8125rem;
  }
}
.home_event_slider_item_cate li {
  display: inline-block;
  border: 1px solid #DCDCDC;
  padding: 10px 8px;
  line-height: 1;
  border-radius: 4px;
}
.home_event_slider_item:hover .home_event_slider_item_title {
  color: #D3232E;
}

.event_list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 600px) {
  .event_list {
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 80px;
  }
}
@media (min-width: 600px) {
  .event_list_item {
    flex: 0 0 calc(50% - 20px);
  }
}
@media (min-width: 600px) and (min-width: 920px) {
  .event_list_item {
    flex-basis: calc(33.3333% - 26.6666666667px);
  }
}

.event_head {
  border-bottom: 1px solid #DCDCDC;
  margin-bottom: var(--spacer);
}
.event_head_container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 600px) {
  .event_head_container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.event_head_img {
  width: 100%;
  aspect-ratio: 1/1;
}
@media (min-width: 600px) {
  .event_head_img {
    flex: 0 0 50%;
    width: 50%;
    order: 1;
  }
}
@media (min-width: 600px) and (min-width: 920px) {
  .event_head_img {
    flex-basis: 43%;
    width: 43%;
  }
}
.event_head_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.event_head_textArea {
  padding: 40px 20px;
}
@media (min-width: 600px) {
  .event_head_textArea {
    padding: 40px;
  }
}
@media (min-width: 600px) and (min-width: 920px) {
  .event_head_textArea {
    padding: 80px 40px;
  }
}
@media (min-width: 600px) and (min-width: 920px) and (min-width: 1200px) {
  .event_head_textArea {
    padding-right: min(7.142857143vw, 100px);
  }
}
.event_head_cate {
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (min-width: 920px) {
  .event_head_cate {
    font-size: 0.9375rem;
  }
}
.event_head_cate li {
  display: inline-block;
  border: 1px solid #DCDCDC;
  padding: 10px 8px;
  line-height: 1;
  border-radius: 4px;
}
.event_head_area {
  font-size: 0.8125rem;
  margin-top: 1em;
}
@media (min-width: 920px) {
  .event_head_area {
    font-size: 0.9375rem;
  }
}

.event_title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.25;
}
@media (min-width: 920px) {
  .event_title {
    font-size: min(3.428571429vw, 48px);
  }
}

.other_event {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #DCDCDC;
  overflow: hidden;
  margin-bottom: var(--spacer);
}
@media (min-width: 920px) {
  .other_event {
    margin-top: 80px;
    padding-top: 80px;
  }
}

.reserve_present {
  background: #f5f5f5;
  box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, 0.1490196078) inset;
  overflow: hidden;
  padding: 40px 0;
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .reserve_present {
    padding: 80px 0;
    margin-bottom: 80px;
  }
}
.reserve_present_row {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .reserve_present_row {
    flex-direction: row;
    gap: 80px;
    justify-content: space-between;
  }
}
@media (min-width: 920px) {
  .reserve_present_img {
    flex: 0 0 40%;
  }
}
.reserve_present_terms {
  background: #fff;
  border-radius: 3em;
  padding: 8px 1em;
  font-size: 0.8125rem;
  font-weight: 700;
  display: block;
  width: -moz-max-content;
  width: max-content;
  line-height: 1.5;
  text-align: center;
  margin: 0 auto 0.5em;
}
@media (min-width: 920px) {
  .reserve_present_terms {
    font-size: 1.125rem;
    margin: 0 0 0.5em;
  }
}
.reserve_present_title {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 0.5em;
}
@media (min-width: 920px) {
  .reserve_present_title {
    text-align: left;
    font-size: 2.25rem;
  }
}
.reserve_present_title .price {
  font-size: 1.75rem;
}
@media (min-width: 920px) {
  .reserve_present_title .price {
    font-size: 3rem;
  }
}
.reserve_present_caution {
  font-size: 0.875em;
  line-height: 1.5;
}
.reserve_present_caution li {
  display: flex;
  gap: 8px;
}
.reserve_present_caution li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #D3232E;
  margin-top: 0.55em;
  flex: 0 0 4px;
}
.reserve_present_caution li + li {
  margin-top: 4px;
}
.reserve_present_flow {
  background: #fff;
  border-radius: 8px;
  padding: 40px 0;
  text-align: center;
  overflow: hidden;
}
.reserve_present_flow_title {
  margin-bottom: 1em;
}
@media (min-width: 920px) {
  .reserve_present_flow_title {
    font-size: 1.25rem;
  }
}
.reserve_present_flow_scrollWrap {
  overflow: auto;
  padding: 0 20px;
}
.reserve_present_flow_scroll {
  overflow: visible;
}
.reserve_present_flow_scroll img {
  max-width: unset;
  display: inline-block;
  margin-right: 20px;
}
@media (min-width: 600px) {
  .reserve_present_flow_scroll img {
    margin-right: 0;
    max-width: 100%;
  }
}

.reserve_merit {
  margin-bottom: 50px;
}
@media (min-width: 920px) {
  .reserve_merit {
    margin-bottom: 100px;
  }
}
.reserve_merit_title {
  text-align: center;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.25;
  margin-bottom: 2em;
}
@media (min-width: 920px) {
  .reserve_merit_title {
    font-size: 1.5rem;
  }
}
.reserve_merit_title .num {
  font-weight: 700;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-size: 1.75rem;
}
@media (min-width: 920px) {
  .reserve_merit_title .num {
    font-size: 2.5rem;
  }
}
.reserve_merit_title .merit {
  font-weight: 700;
}
.reserve_merit_list {
  list-style-type: none;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid #DCDCDC;
  border-radius: 8px;
}
@media (min-width: 600px) {
  .reserve_merit_list {
    flex-direction: row;
    padding: 40px 20px;
  }
}
.reserve_merit_list_item {
  list-style-type: none;
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  padding: 20px 0;
}
@media (min-width: 600px) {
  .reserve_merit_list_item {
    flex: 1 1 0;
    padding: 0 30px;
  }
}
@media (min-width: 600px) and (min-width: 920px) {
  .reserve_merit_list_item {
    padding: 0 60px;
  }
}
@media (max-width: 599px) {
  .reserve_merit_list_item + .reserve_merit_list_item {
    border-top: 1px solid #DCDCDC;
  }
}
@media (min-width: 600px) {
  .reserve_merit_list_item + .reserve_merit_list_item {
    border-left: 1px solid #DCDCDC;
  }
}
.reserve_merit_list_item_title {
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  margin-bottom: 0.5em;
}
@media (min-width: 920px) {
  .reserve_merit_list_item_title {
    font-size: 1rem;
  }
}
.reserve_merit_list_item_title .num {
  font-size: 2em;
}
@media (min-width: 600px) {
  .reserve_merit_list_item_text {
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.form_radio:not(:has(.vertical-item)) {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

.form_area__content {
  position: relative;
  z-index: 0;
  padding: 40px 20px;
  background: #f5f5f5;
  border-radius: 4px;
  margin: 0 -20px;
}
@media (min-width: 920px) {
  .form_area__content {
    padding: min(5.714285714vw, 80px);
    margin: 0;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .form_area__content {
    margin-right: -40px;
  }
}

.form_section + .form_section {
  margin-top: 40px;
}
@media (min-width: 920px) {
  .form_section + .form_section {
    margin-top: 60px;
  }
}
.form_section_title {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding-top: 14px;
  margin-bottom: 20px;
}
@media (min-width: 920px) {
  .form_section_title {
    font-size: 28px;
  }
}
.form_section_title::before {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background: #D3232E;
  position: absolute;
  top: 0;
  left: 0;
}
.form_label {
  font-weight: 700;
  display: flex;
  align-items: baseline;
  margin-bottom: 12px;
}
@media (min-width: 920px) {
  .form_label {
    margin-bottom: 15px;
  }
}
.form_label .required,
.form_label .nini {
  line-height: 1;
  font-size: 0.625rem;
  padding: 4px 6px 5px;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
  margin-bottom: 3px;
  white-space: nowrap;
}
@media (min-width: 920px) {
  .form_label .required,
  .form_label .nini {
    font-size: 0.8125rem;
    padding: 5px 8px;
    margin-bottom: 3px;
  }
}
.form_label .required {
  background: #D3232E;
}
.form_label .nini {
  background: #B8C8CC;
}
.mw_wp_form_confirm .form_label {
  font-weight: 400;
}
.form_container {
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .form_container {
    margin-bottom: 60px;
  }
}
.form_row {
  display: flex;
  gap: 0 8px;
}
@media (min-width: 920px) {
  .form_row {
    gap: 0 16px;
  }
}
.mw_wp_form_confirm .form_row {
  flex-wrap: wrap;
}
.form_row-number {
  gap: 24px;
  position: relative;
}
@media (min-width: 920px) {
  .form_row-number {
    gap: 32px;
  }
}
.mw_wp_form_confirm .form_row-number {
  padding-bottom: 0;
}
@media (min-width: 920px) {
  .mw_wp_form_confirm .form_row-number {
    gap: 24px;
  }
}
@media (min-width: 920px) {
  .form_row-60 {
    width: 66%;
  }
}
@media (max-width: 599px) {
  .form_row-address {
    flex-direction: column;
    gap: 8px;
  }
}
.form_row-schedule {
  align-items: center;
}
.form_row-schedule::after {
  content: "頃";
  font-weight: 600;
  font-size: 1.125em;
}
.form_col-same {
  flex: 1 1 0;
}
.form_col-auto {
  flex: 1 1 0;
}
.form_col-region {
  width: 12em;
}
@media (min-width: 600px) {
  .form_col-region {
    flex: 0 0 12em;
  }
}
.mw_wp_form_confirm .form_col-region {
  width: auto !important;
  flex: 0 0 auto !important;
}
.mw_wp_form_confirm .form_col {
  flex: 0 0 auto !important;
}
.form_row-number .form_col {
  flex: 1 1 0;
}
.form_row-number .form_col + .form_col {
  position: relative;
}
.form_row-number .form_col + .form_col::before {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: #2D3132;
  position: absolute;
  left: -4px;
  top: 50%;
  translate: -100% 0;
}
@media (min-width: 920px) {
  .form_row-number .form_col + .form_col::before {
    left: -8px;
  }
}
.mw_wp_form_confirm .form_row-number .form_col + .form_col::before {
  width: 8px;
  left: -8px;
}
.form_input_wrap + .form_input_wrap {
  margin-top: 8px;
}
.form_input_wrap .formError,
.form_input_wrap .error {
  display: none !important;
}
.form_input_wrap:has(.formError) .form_input_error, .form_input_wrap:has(.error) .form_input_error {
  color: #D3232E;
}
.form_input_wrap-books {
  width: 55%;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 920px) {
  .form_input_wrap-books {
    width: 33%;
  }
}
.form_input_wrap-books::after {
  content: "冊";
  font-weight: 600;
  font-size: 1.125em;
}
.form_input_wrap-cards {
  width: 55%;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 920px) {
  .form_input_wrap-cards {
    width: 33%;
  }
}
.form_input_wrap-cards::after {
  content: "枚";
  font-weight: 600;
  font-size: 1.125em;
}
.form_input_box {
  position: relative;
  background: #fff;
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #2D3132;
  justify-content: space-between;
}
.form_input_box::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #2D3132;
  position: absolute;
  bottom: 0;
  left: 0;
  scale: 1 0;
}
.mw_wp_form_confirm .form_input_box {
  background: none;
  border-bottom: none;
}
.form_input_box input,
.form_input_box select,
.form_input_box textarea {
  border: none;
  background: transparent;
  padding: 14px 12px 10px;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (min-width: 920px) {
  .form_input_box input,
  .form_input_box select,
  .form_input_box textarea {
    padding-right: 36px;
  }
}
.mw_wp_form_confirm .form_input_box input,
.mw_wp_form_confirm .form_input_box select,
.mw_wp_form_confirm .form_input_box textarea {
  font-weight: 600;
}
.form_input_box textarea {
  width: 100%;
  flex: 1 1 0;
}
.form_input_box:has(.form_input_label) input,
.form_input_box:has(.form_input_label) select {
  padding: 20px 12px 4px;
}
@media (min-width: 920px) {
  .form_input_box:has(.form_input_label) input,
  .form_input_box:has(.form_input_label) select {
    padding-right: 48px;
  }
}
.form_input_box:has(input:focus) {
  background: #f2f2f2;
  border-bottom-color: #2D3132;
}
.form_input_box:has(input:focus)::after {
  scale: 1 1;
  background-color: #2D3132;
}
.form_input_box:has(input:focus) .form_input_label {
  color: #2D3132;
}
.form_input_box:has(.formError), .form_input_box:has(.error) {
  background: #F2E6E6;
  border-bottom-color: #D3232E;
}
.form_input_box:has(.formError)::after, .form_input_box:has(.error)::after {
  background-color: #D3232E;
}
.form_input_box:has(.formError) .form_input_label, .form_input_box:has(.error) .form_input_label {
  color: #D3232E;
}
.form_input_box:has(.formError) .form_input_icon::before, .form_input_box:has(.error) .form_input_icon::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/common/icon_error.svg);
  mask-image: url(../img/common/icon_error.svg);
  display: block;
  width: 24px;
  height: 24px;
  background-color: #D3232E;
}
.form_input_box-select.form_input_box .form_input_icon {
  pointer-events: none;
}
@media (max-width: 919px) {
  .form_input_box-select.form_input_box .form_input_icon {
    display: block;
  }
}
.form_input_box-select.form_input_box .form_input_icon::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/common/icon_select.svg);
  mask-image: url(../img/common/icon_select.svg);
  display: block;
  width: 16px;
  height: 16px;
  background: #2D3132;
}
.mw_wp_form_confirm .form_input_box-select.form_input_box .form_input_icon {
  display: none !important;
}
.form_input_check {
  width: 100%;
}
.mw_wp_form_confirm .form_input_check {
  font-weight: 600;
  font-size: 1.25em;
}
.form_input_label {
  font-size: 11px;
  position: absolute;
  top: 4px;
  left: 12px;
}
.mw_wp_form_confirm .form_input_label {
  display: none;
}
.form_input_icon {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  padding: 0 12px;
}
@media (max-width: 919px) {
  .form_input_icon {
    display: none;
  }
}
.mw_wp_form_confirm .form_input_icon {
  display: none;
}
.form_input_error {
  font-size: 10px;
  margin-top: 4px;
  line-height: 1.35;
  display: block;
}
@media (min-width: 920px) {
  .form_input_error {
    font-size: 12px;
  }
}
.form_row-number .form_input_error {
  position: absolute;
  bottom: 0;
  left: 0;
}
.form_row-number:has(.formError) .form_input_error, .form_row-number:has(.error) .form_input_error {
  color: #D3232E;
}
.mw_wp_form_confirm .form_input_error {
  display: none;
}
.form_modal {
  margin-top: 8px;
  font-size: 10px;
  display: flex;
  gap: 4px;
  align-items: center;
  text-decoration: underline;
}
@media (min-width: 920px) {
  .form_modal {
    font-size: 12px;
  }
}
.form_modal:hover {
  text-decoration: none;
}
.form_modal .icon::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/common/icon_error.svg);
  mask-image: url(../img/common/icon_error.svg);
  display: block;
  width: 16px;
  height: 16px;
  background: #2D3132;
}
.mw_wp_form_confirm .form_modal {
  display: none;
}

.form_bottom {
  margin-top: 40px;
  text-align: center;
}
@media (min-width: 920px) {
  .form_bottom {
    margin-top: 80px;
  }
}

.form_policy {
  margin-bottom: 40px;
}
.form_policy_check {
  margin-bottom: 1.5em;
}
.form_policy_check .mwform-checkbox-field-text {
  font-size: 16px;
  font-weight: 600 !important;
}
@media (min-width: 920px) {
  .form_policy_check .mwform-checkbox-field-text {
    font-size: 18px;
  }
}
.form_policy p + p {
  margin-top: 1.5em;
}
.mw_wp_form_confirm .form_policy {
  display: none;
}

.form_submit {
  position: relative;
  border: 1px solid #2D3132;
  border-radius: 40px;
  overflow: hidden;
  width: 256px;
  margin: 0 auto;
  transition: background-color 0.3s, border-color 0.3s;
}
.form_submit input[type=submit] {
  cursor: pointer;
  background: none;
  border: none;
  box-shadow: none;
  color: #2D3132;
  padding: 20px 28px;
  text-align: left;
  font-weight: 600;
  display: block;
  width: 100%;
  transition: color 0.3s;
}
.form_submit::after {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/common/arrow.svg);
  mask-image: url(../img/common/arrow.svg);
  display: block;
  width: 24px;
  height: 24px;
  background-color: #2D3132;
  position: absolute;
  top: 50%;
  right: 28px;
  translate: 0 -50%;
  pointer-events: none;
  transition: background-color 0.3s;
}
.form_submit:hover {
  background: #D3232E;
  border-color: #D3232E;
}
.form_submit:hover input[type=submit] {
  color: #fff;
}
.form_submit:hover::after {
  background-color: #fff;
}
.form_submit_back {
  width: 196px;
  margin: 40px auto 0;
  position: relative;
  background-image: linear-gradient(to right, #413232, #413232); /* 線の色 */
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat; /* 背景を繰り返さない */
  padding-bottom: 2px;
  display: none;
}
@media (min-width: 1200px) {
  .form_submit_back:hover {
    animation: linkLineReverse 0.5s ease forwards;
  }
}
.mw_wp_form_confirm .form_submit_back {
  display: block;
}
.form_submit_back input[type=submit] {
  width: 100%;
  display: block;
  color: #2D3132;
  cursor: pointer;
  background: none;
  border: none;
  box-shadow: none;
  text-align: left;
  font-size: 1.125em;
}
.form_submit_back::after {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/common/icon_back.svg);
  mask-image: url(../img/common/icon_back.svg);
  display: block;
  width: 24px;
  height: 24px;
  background-color: #2D3132;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  pointer-events: none;
}

.form_memo {
  font-size: 0.875em;
  margin-top: 1em;
  line-height: 1.5;
}
.mw_wp_form_confirm .form_memo {
  display: none;
}

input[type=radio],
input[type=checkbox] {
  accent-color: #D3232E;
  display: inline-block;
  margin-right: 8px;
  transform: scale(1.5);
}

label:has(input[type=radio]),
label:has(input[type=checkbox]) {
  cursor: pointer;
}

.form_radio input[type=radio] {
  accent-color: #D3232E;
}
.form_radio-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.form_radio-flex > span {
  flex: 0 0 calc(50% - 4px);
  margin: 0 !important;
}
@media (min-width: 920px) {
  .form_radio-flex > span {
    flex-basis: 20%;
  }
}
.mw_wp_form_confirm .form_radio {
  font-weight: 600;
  font-size: 1.125em;
}

.mw_wp_form .vertical-item + .vertical-item {
  margin-top: 8px !important;
}

.mw_wp_form .form_radio .error {
  display: block !important;
  font-size: 10px;
  margin-top: 4px;
  line-height: 1.35;
  color: #D3232E !important;
}
@media (min-width: 920px) {
  .mw_wp_form .form_radio .error {
    font-size: 12px;
  }
}

.p-country-name {
  display: none;
}

.mw_wp_form_confirm .reserve_present,
.mw_wp_form_confirm .reserve_merit,
.mw_wp_form_confirm .post_side,
.mw_wp_form_confirm .side_caution {
  display: none;
}
.mw_wp_form_confirm .post_main {
  flex: 0 1 800px;
}
.mw_wp_form_confirm .form_bottom {
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
  border-top: 1px solid #ccc;
  padding-top: 40px;
}
@media (min-width: 920px) {
  .mw_wp_form_confirm .form_bottom {
    margin-left: -80px;
    margin-right: -80px;
    padding-left: 80px;
    padding-right: 80px;
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-direction: row-reverse;
  }
}
.mw_wp_form_confirm .form_bottom .form_submit {
  background: #2D3132;
}
.mw_wp_form_confirm .form_bottom .form_submit::after {
  background: #fff;
}
.mw_wp_form_confirm .form_bottom .form_submit input[type=submit] {
  color: #fff;
}
.mw_wp_form_confirm .form_bottom .form_submit:hover {
  background: #D3232E;
}
@media (min-width: 920px) {
  .mw_wp_form_confirm .form_bottom .form_submit,
  .mw_wp_form_confirm .form_bottom .form_submit_back {
    margin: 0;
  }
}

.confirm_head {
  display: none;
  margin-bottom: 32px;
  text-align: center;
}
.mw_wp_form_confirm .confirm_head {
  display: block;
}
.confirm_head_title {
  font-weight: 700;
  font-size: 1.25em;
  margin-bottom: 1em;
}

.completed_img {
  margin: 0 auto 40px;
  width: 150px;
  height: 150px;
}
.completed_container {
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
  padding: var(--spacer) 0;
  text-align: center;
}
.completed_title {
  margin-bottom: 1em;
}
.completed_box {
  text-align: left;
  background: #f5f5f5;
  padding: 30px 20px;
  margin: 40px 0;
  border-radius: 4px;
}
@media (min-width: 920px) {
  .completed_box {
    padding: 40px;
    margin: 60px 0;
  }
}
.completed_box_title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 1em;
}

.not_title {
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.75rem;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
@media (min-width: 920px) {
  .not_title {
    font-size: 3rem;
  }
}
.not_text {
  font-weight: 700;
}
.not_back {
  margin-top: 40px;
}
@media (min-width: 920px) {
  .not_back {
    margin-top: 60px;
  }
}

.home_case {
  overflow: hidden;
  margin: var(--spacer) 0;
  position: relative;
}
@media (max-width: 919px) {
  .home_case {
    padding-bottom: 100px;
  }
}
.home_case_list {
  position: relative;
}
@media (min-width: 920px) {
  .home_case_list::before {
    content: "";
    display: block;
    width: 100vw;
    height: 1px;
    background: #DCDCDC;
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
  }
}
.home_case_list_item {
  position: relative;
}
@media (max-width: 919px) {
  .home_case_list_item + .home_case_list_item {
    margin-top: 40px;
  }
}
@media (min-width: 920px) {
  .home_case_list_item::after {
    content: "";
    display: block;
    width: 100vw;
    height: 1px;
    background: #DCDCDC;
    position: absolute;
    bottom: 0;
    left: calc(50% - 50vw);
  }
}
.home_case_list_link {
  display: block;
}
@media (min-width: 920px) {
  .home_case_list_link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 min(7vw, 100px);
  }
}
.home_case_list_link_img {
  margin-bottom: 20px;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.home_case_list_link_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.3s ease-out;
}
@media (max-width: 919px) {
  .home_case_list_link_img {
    position: relative;
  }
}
@media (min-width: 920px) {
  .home_case_list_link_img {
    order: 1;
    flex: 0 0 300px;
    width: 300px;
    margin-left: auto;
    margin-bottom: 0;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .home_case_list_link_img {
    flex: 0 0 400px;
    width: 400px;
  }
}
.home_case_list_link_img .icon {
  background: #fff;
}
@media (max-width: 919px) {
  .home_case_list_link_img .icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
  }
}
@media (min-width: 920px) {
  .home_case_list_link_img .icon {
    display: none;
  }
}
.home_case_list_link:hover .home_case_list_link_img img {
  scale: 1.05;
}
.home_case_list_link_pcArrow.icon {
  border: 1px solid #DCDCDC;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
}
@media (max-width: 919px) {
  .home_case_list_link_pcArrow.icon {
    display: none;
  }
}
@media (min-width: 920px) {
  .home_case_list_link_pcArrow.icon {
    order: 2;
  }
}
.home_case_list_link:hover .home_case_list_link_pcArrow.icon {
  background: #D3232E;
  border-color: #D3232E;
}
.home_case_list_link:hover .home_case_list_link_pcArrow.icon::before, .home_case_list_link:hover .home_case_list_link_pcArrow.icon::after {
  background-color: #fff;
}
.home_case_list_link_lineup {
  padding: 16px;
  line-height: 1;
  display: inline-block;
  border: 1px solid #DCDCDC;
  border-radius: 4px;
  margin-bottom: 12px;
  font-weight: 700;
}
@media (min-width: 920px) {
  .home_case_list_link_lineup {
    margin-bottom: 20px;
  }
}
.home_case_list_link_lineup img {
  height: 15px;
  width: auto;
  vertical-align: bottom;
}
@media (min-width: 920px) {
  .home_case_list_link_lineup img {
    height: 20px;
  }
}
.home_case_list_link_title {
  font-weight: 700;
  line-height: 1.5;
  transition: color 0.3s;
  margin-bottom: 8px;
  font-size: 1.5rem;
}
@media (min-width: 920px) {
  .home_case_list_link_title {
    font-size: min(2.571428571vw, 36px);
    margin-bottom: 16px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
.home_case_list_link:hover .home_case_list_link_title {
  color: #D3232E;
}
.home_case_list_link_info {
  font-size: 0.8125rem;
  display: flex;
  line-height: 1;
}
@media (min-width: 920px) {
  .home_case_list_link_info {
    font-size: 0.9375rem;
  }
}
.home_case_list_link_info .name {
  padding-left: 8px;
  margin-left: 8px;
  border-left: 1px solid #DCDCDC;
}

.case_wrap {
  overflow: hidden;
}

.case_head {
  padding: 60px 0 var(--spacer);
}
@media (min-width: 920px) {
  .case_head {
    padding-top: 120px;
  }
}
.case_head_textArea {
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .case_head_textArea {
    margin-bottom: 60px;
  }
}
.case_head_img {
  text-align: center;
}
.event_head_cate .lineup_logo {
  padding: 16px;
}
.event_head_cate .lineup_logo img {
  height: 20px;
}

.case_info {
  margin-top: 1.5em;
  line-height: 1;
}
.case_info .name {
  padding-left: 8px;
  margin-left: 8px;
  border-left: 1px solid #DCDCDC;
}

.other_slider_item {
  display: block;
  width: 250px;
}
@media (min-width: 920px) {
  .other_slider_item {
    width: 490px;
  }
}
.other_slider_item_img {
  aspect-ratio: 4/3;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.other_slider_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.3s ease-out;
}
@media (min-width: 920px) {
  .other_slider_item_img {
    margin-bottom: 24px;
  }
}
.other_slider_item_img .icon {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  background: #fff;
}
@media (min-width: 920px) {
  .other_slider_item_img .icon {
    right: 20px;
    bottom: 20px;
  }
}
.other_slider_item:hover .other_slider_item_img img {
  scale: 1.05;
}
.other_slider_item:hover .other_slider_item_img .icon {
  background: #D3232E;
  border-color: #D3232E;
}
.other_slider_item:hover .other_slider_item_img .icon::before, .other_slider_item:hover .other_slider_item_img .icon::after {
  background-color: #fff;
}
.other_slider_item .home_case_list_link_lineup {
  padding: 8px 12px;
  margin-bottom: 0;
}
.other_slider_item .home_case_list_link_lineup img {
  height: 12px;
}
.other_slider_item .showroom_categoryArea {
  font-size: 0.75rem;
  margin-bottom: 0;
}
.other_slider_item_title {
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0.5em 0;
  transition: color 0.3s;
}
.other_slider_item:hover .other_slider_item_title {
  color: #D3232E;
}

.showroom_selector {
  border-bottom: 1px solid #DCDCDC;
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
@media (min-width: 920px) {
  .showroom_selector {
    margin-bottom: 120px;
  }
}
.showroom_selector_item {
  flex: 0 1 140px;
}
@media (min-width: 920px) {
  .showroom_selector_item {
    flex-basis: 236px;
  }
}
.showroom_selector_link {
  display: block;
  text-align: center;
  font-weight: 700;
  padding: 18px 0;
  color: #DCDCDC;
  transition: color 0.3s;
}
@media (min-width: 920px) {
  .showroom_selector_link {
    font-size: 1.125rem;
  }
}
.showroom_selector_link.is-current {
  color: #D3232E !important;
  border-bottom: 4px solid #D3232E;
}
.showroom_selector_link:hover {
  color: #2D3132;
}

.showroom_head {
  text-align: center;
}

.showroom_categoryArea {
  display: inline-flex;
  border: 1px solid #DCDCDC;
  line-height: 1;
  font-weight: 700;
  padding: 10px 8px;
  border-radius: 4px;
  margin-bottom: 2em;
}

.showroom_desc {
  margin-bottom: 60px;
}
@media (min-width: 920px) {
  .showroom_desc {
    margin-bottom: 120px;
  }
}
.showroom_desc_title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 1em;
}
@media (min-width: 920px) {
  .showroom_desc_title {
    font-size: 1.75rem;
  }
}
.showroom_desc_text {
  max-width: 520px;
  margin: 0 auto;
  text-align: justify;
  font-size: 1.25em;
  line-height: 2;
}

.showroom_icon {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
@media (min-width: 920px) {
  .showroom_icon {
    margin-bottom: 24px;
  }
}
.showroom_icon li {
  flex: 1 1 0;
  opacity: 0.16;
}
.showroom_icon li.is-active {
  opacity: 1;
}
.showroom_icon li img {
  width: 100%;
}

.showroom_list {
  position: relative;
}
@media (min-width: 920px) {
  .showroom_list::before {
    content: "";
    display: block;
    width: 100vw;
    height: 1px;
    background: #DCDCDC;
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
  }
}
.showroom_list_item {
  position: relative;
}
@media (max-width: 919px) {
  .showroom_list_item + .showroom_list_item {
    margin-top: 40px;
  }
}
@media (min-width: 920px) {
  .showroom_list_item::after {
    content: "";
    display: block;
    width: 100vw;
    height: 1px;
    background: #DCDCDC;
    position: absolute;
    bottom: 0;
    left: calc(50% - 50vw);
  }
}
.showroom_list_link {
  display: block;
}
@media (min-width: 920px) {
  .showroom_list_link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 min(7vw, 100px);
  }
}
.showroom_list_link_img {
  margin-bottom: 20px;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.showroom_list_link_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.3s ease-out;
}
@media (max-width: 919px) {
  .showroom_list_link_img {
    position: relative;
  }
}
@media (min-width: 920px) {
  .showroom_list_link_img {
    flex: 0 0 40%;
    width: 40%;
    margin-left: auto;
    margin-bottom: 0;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .showroom_list_link_img {
    flex: 0 0 50%;
    width: 50%;
  }
}
.showroom_list_link_img .icon {
  background: #fff;
}
@media (max-width: 919px) {
  .showroom_list_link_img .icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
  }
}
@media (min-width: 920px) {
  .showroom_list_link_img .icon {
    display: none;
  }
}
.showroom_list_link:hover .showroom_list_link_img img {
  scale: 1.05;
}
@media (min-width: 920px) {
  .showroom_list_link_textArea {
    flex: 1 1 0;
  }
}
.showroom_list_link .showroom_categoryArea {
  margin-bottom: 0;
}
.showroom_list_link_title {
  font-weight: 700;
  line-height: 1.5;
  transition: color 0.3s;
  margin: 0.7em 0 0.5em;
  font-size: 1.375rem;
}
@media (min-width: 920px) {
  .showroom_list_link_title {
    font-size: 1.5rem;
  }
}
.showroom_list_link_btn {
  margin-top: 20px;
}
@media (min-width: 920px) {
  .showroom_list_link_btn {
    margin-top: 32px;
  }
}
.showroom_list_link:hover .showroom_list_link_btn .btn {
  border-color: #D3232E;
  color: #fff;
}
.showroom_list_link:hover .showroom_list_link_btn .btn::before {
  opacity: 1;
}
.showroom_list_link:hover .showroom_list_link_btn .btn .icon::before, .showroom_list_link:hover .showroom_list_link_btn .btn .icon::after {
  background-color: #fff;
}

.home_news {
  margin-bottom: var(--spacer);
  overflow: hidden;
  position: relative;
}
@media (max-width: 919px) {
  .home_news {
    padding-bottom: 100px;
  }
}
@media (min-width: 920px) {
  .home_news_tab {
    display: flex;
    gap: 100px;
    justify-content: space-between;
  }
}
.home_news_tab_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
@media (min-width: 920px) {
  .home_news_tab_menu {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.home_news_tab_menu_btn {
  background: none;
  border: none;
  position: relative;
  padding: 0;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 8px;
}
.home_news_tab_menu_btn::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D3232E;
  margin-top: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}
.home_news_tab_menu_btn:hover, .home_news_tab_menu_btn.is-active {
  font-weight: 700;
}
.home_news_tab_menu_btn.is-active {
  font-weight: 700;
}
.home_news_tab_menu_btn.is-active::before {
  opacity: 1;
}
.home_news_tab_panels {
  position: relative;
  margin-top: 30px;
}
@media (min-width: 920px) {
  .home_news_tab_panels {
    margin-top: 0;
    flex: 0 1 min(71.111111111%, 900px);
  }
}
.home_news_tab_panel {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.home_news_tab_panel:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.home_news_tab_panel.is-show {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 920px) {
  .home_news_list {
    gap: 50px 30px;
  }
}
.home_news_list_item + .home_news_list_item {
  margin-top: 24px;
}
.home_news_list_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #DCDCDC;
  padding-bottom: 24px;
  gap: 24px;
}
.home_news_list_link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #D3232E;
  position: absolute;
  bottom: -1px;
  left: 0;
  scale: 0 1;
  transform-origin: 100% 0;
  transition: scale 0.3s ease-out;
}
.home_news_list_link_textArea {
  flex: 1 1 0;
}
@media (min-width: 920px) {
  .home_news_list_link_textArea {
    display: flex;
    align-items: center;
    gap: 24px;
  }
}
.home_news_list_link .icon {
  border: 1px solid #DCDCDC;
  flex: 0 1 36px;
}
@media (min-width: 920px) {
  .home_news_list_link .icon {
    flex: 0 1 40px;
  }
}
.home_news_list_link_cate {
  display: inline-block;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  white-space: nowrap;
  padding: 8px 6px;
  border-radius: 4px;
  border: 1px solid #DCDCDC;
  margin-bottom: 8px;
}
@media (min-width: 920px) {
  .home_news_list_link_cate {
    font-size: 0.8125rem;
    order: 1;
    margin-bottom: 0;
  }
}
.home_news_list_link_title {
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (min-width: 920px) {
  .home_news_list_link_title {
    font-size: 1.125rem;
    order: 2;
    margin-bottom: 0;
  }
}
.home_news_list_link_date {
  font-size: 0.75rem;
}
@media (min-width: 920px) {
  .home_news_list_link_date {
    font-size: 0.9375rem;
  }
}
.home_news_list_link:hover::after {
  scale: 1 1;
  transform-origin: 0 0;
}
.home_news_list_link:hover .icon {
  background: #D3232E;
  border-color: #D3232E;
}
.home_news_list_link:hover .icon::before, .home_news_list_link:hover .icon::after {
  background: #fff;
}

.news_side_title {
  font-weight: 700;
  margin-bottom: 0.5em;
  font-size: 1.125rem;
}
@media (min-width: 920px) {
  .news_side_title {
    font-size: 1.25rem;
  }
}
.news_side_list_link {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid #DCDCDC;
  padding: 20px 0;
  position: relative;
}
.news_side_list_link::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #D3232E;
  position: absolute;
  bottom: -1px;
  left: 0;
  scale: 0 1;
  transform-origin: 100% 0;
  transition: scale 0.3s ease-out;
}
.news_side_list_link:hover::after {
  scale: 1 1;
  transform-origin: 0 0;
}
.news_side_list_link_cate {
  display: inline-block;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  white-space: nowrap;
  padding: 12px 8px;
  border-radius: 4px;
  border: 1px solid #DCDCDC;
}
.news_side_list_link_title {
  font-weight: 700;
  line-height: 1.5;
}
.news_side_list_link_date {
  font-size: 0.75rem;
  margin-top: 8px;
}

.page_contents {
  position: relative;
  border-bottom: 1px solid #cccccc;
}
.page_contents-contact .subPage_section_header {
  border-bottom: 1px solid #cccccc;
  margin: 0 0 80px;
}
@media (min-width: 920px) {
  .page_contents-contact .subPage_section_header {
    margin: 0 0 160px;
  }
}

.breadcrumb {
  display: block;
}
@media (min-width: 920px) {
  .breadcrumb {
    display: block;
  }
}
.breadcrumb_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 12px;
}
@media (min-width: 920px) {
  .breadcrumb_list {
    margin-bottom: 24px;
  }
}
.breadcrumb_list li {
  position: relative;
  white-space: nowrap;
  font-size: 0.75rem;
}
@media (min-width: 920px) {
  .breadcrumb_list li {
    font-size: 0.8125rem;
  }
}
.breadcrumb_list li a {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.breadcrumb_list li:last-child a {
  pointer-events: none;
}
.breadcrumb_list li + li {
  padding-left: 1.6em;
  margin-left: 0.5em;
}
.breadcrumb_list li + li::before {
  content: "＞";
  position: absolute;
  left: 0;
}

.subPage_section {
  width: 100%;
  height: auto;
  position: relative;
}
.subPage_section_header {
  padding: 40px 0 40px;
}
@media (min-width: 920px) {
  .subPage_section_header {
    padding: 120px 0 80px;
  }
}
.subPage_section_title_en {
  font-size: 3.5rem;
  font-weight: 500;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  line-height: 1;
  margin-bottom: 0.2em;
}
@media (min-width: 920px) {
  .subPage_section_title_en {
    font-size: 4.875rem;
  }
}
.subPage_section_title_ja {
  font-weight: 700;
  font-size: 0.9375rem;
}
.subPage_section_thumb {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.subPage_section_thumb img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.subPage_section .thumb_large {
  margin: 0 0 60px;
}
@media (min-width: 920px) {
  .subPage_section .thumb_large {
    margin: 0 auto 160px;
    max-width: 1580px;
    padding: 0 40px;
  }
}

.subPage_small_title {
  margin-bottom: 24px;
}
@media (min-width: 920px) {
  .subPage_small_title {
    margin-bottom: 60px;
  }
}
.subPage_small_title_en {
  font-size: 2.25rem;
  font-weight: 500;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  line-height: 1;
  margin-bottom: 0.2em;
}
@media (min-width: 920px) {
  .subPage_small_title_en {
    font-size: 3rem;
  }
}
.subPage_small_title_ja {
  font-weight: 700;
  font-size: 0.8125rem;
}
@media (min-width: 920px) {
  .subPage_small_title_ja {
    font-size: 0.9375rem;
  }
}

.about_nav_container {
  width: 100%;
  height: auto;
  margin: 0 auto 60px;
}
@media (min-width: 920px) {
  .about_nav_container {
    max-width: 86.62%;
    margin: 0 auto 160px;
  }
}
.about_nav_container .about_nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 920px) {
  .about_nav_container .about_nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 53px;
  }
}
.about_nav_container .about_nav_item {
  width: 100%;
  height: auto;
}
@media (min-width: 920px) {
  .about_nav_container .about_nav_item {
    width: calc((100% - 106px) / 3);
  }
}
.about_nav_container .about_nav_link {
  display: block;
}
.about_nav_container .about_nav_link_img {
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 920px) {
  .about_nav_container .about_nav_link_img {
    margin-bottom: 16px;
  }
}
.about_nav_container .about_nav_link_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.3s ease-out;
}
.about_nav_container .about_nav_link_img .icon {
  border: 1px solid #cccccc;
  background: #fff;
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
}
@media (min-width: 920px) {
  .about_nav_container .about_nav_link_img .icon {
    display: none;
  }
}
.about_nav_container .about_nav_link_img .icon-circle::before {
  width: 20px;
  height: 20px;
}
.about_nav_container .about_nav_link_textArea {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
}
.about_nav_container .about_nav_link_textArea .icon {
  display: none;
}
@media (min-width: 920px) {
  .about_nav_container .about_nav_link_textArea .icon {
    display: flex;
    border: 1px solid #cccccc;
  }
}
.about_nav_container .about_nav_link_title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 920px) {
  .about_nav_container .about_nav_link_title {
    font-size: 1.5rem;
  }
}
.about_nav_container .about_nav_link:hover .about_nav_link_img img {
  scale: 1.05;
}
.about_nav_container .about_nav_link:hover .icon {
  background: #D3232E;
  border-color: #D3232E;
}
.about_nav_container .about_nav_link:hover .icon::after {
  background-color: #fff;
}

.about_contents_wrap {
  padding: 32px 0 0;
  border-top: 1px solid #cccccc;
}
@media (min-width: 920px) {
  .about_contents_wrap {
    padding: 60px 0 0;
  }
}
.about_contents_wrap .about_contents_nav {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 15px;
}
@media (min-width: 920px) {
  .about_contents_wrap .about_contents_nav {
    flex-wrap: nowrap;
    gap: 36px;
    align-items: center;
  }
}
.about_contents_wrap .about_contents_nav_item {
  width: calc((100% - 15px) / 2);
  height: auto;
}
@media (min-width: 920px) {
  .about_contents_wrap .about_contents_nav_item {
    width: calc((100% - 72px) / 3);
  }
}
.about_contents_wrap .about_contents_nav_link {
  display: block;
}
.about_contents_wrap .about_contents_nav_link_img {
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}
@media (min-width: 920px) {
  .about_contents_wrap .about_contents_nav_link_img {
    height: min(19.2857142857vw, 270px);
    margin-bottom: 16px;
  }
}
.about_contents_wrap .about_contents_nav_link_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: scale 0.3s ease-out;
  border-radius: 20px;
}
@media (min-width: 920px) {
  .about_contents_wrap .about_contents_nav_link_img img {
    height: 280px;
  }
}
.about_contents_wrap .about_contents_nav_link_img .icon {
  border: 1px solid #cccccc;
  background: #fff;
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
}
@media (min-width: 920px) {
  .about_contents_wrap .about_contents_nav_link_img .icon {
    display: none;
  }
}
.about_contents_wrap .about_contents_nav_link_img .icon-circle::before {
  width: 20px;
  height: 20px;
}
.about_contents_wrap .about_contents_nav_link_textArea {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
}
.about_contents_wrap .about_contents_nav_link_textArea .icon {
  display: none;
}
@media (min-width: 920px) {
  .about_contents_wrap .about_contents_nav_link_textArea .icon {
    display: flex;
    border: 1px solid #DCDCDC;
  }
}
.about_contents_wrap .about_contents_nav_link_title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 920px) {
  .about_contents_wrap .about_contents_nav_link_title {
    font-size: 1.5rem;
  }
}
.about_contents_wrap .about_contents_nav_link:hover .about_contents_nav_link_img img {
  scale: 1.05;
}
.about_contents_wrap .about_contents_nav_link:hover .icon {
  background: #D3232E;
  border-color: #D3232E;
}
.about_contents_wrap .about_contents_nav_link:hover .icon::after {
  background-color: #fff;
}

.about_nav_title {
  margin-bottom: 28px;
}
@media (min-width: 920px) {
  .about_nav_title {
    margin-bottom: 40px;
  }
}
.about_nav_title_en {
  font-size: 1.75rem;
  font-weight: 500;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  line-height: 1;
  margin-bottom: 0.2em;
}
@media (min-width: 920px) {
  .about_nav_title_en {
    font-size: 2.25rem;
  }
}
.about_nav_title_ja {
  font-weight: 700;
  font-size: 0.8125rem;
}
@media (min-width: 920px) {
  .about_nav_title_ja {
    font-size: 0.9375rem;
  }
}

.bottom_menu {
  margin-top: 160px;
}
@media (min-width: 920px) {
  .bottom_menu {
    margin-top: 300px;
  }
}
.bottom_menu .about_lineup {
  margin-top: 0;
}

.subPage_section {
  width: 100%;
  height: auto;
  position: relative;
}
.subPage_section_header {
  padding: 40px 0 40px;
}
@media (min-width: 920px) {
  .subPage_section_header {
    padding: 120px 0 80px;
  }
}
.subPage_section_header_sub {
  padding: 40px 0 40px;
  margin-bottom: 60px;
  border-bottom: 1px solid #cccccc;
}
@media (min-width: 920px) {
  .subPage_section_header_sub {
    padding: 120px 0 80px;
    margin-bottom: 160px;
  }
}

.message_row {
  width: 100%;
  height: auto;
  margin: 0 0 60px;
}
@media (min-width: 920px) {
  .message_row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 auto 160px;
    gap: 98px;
  }
}
.message_row_thumb {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .message_row_thumb {
    width: 34.8%;
  }
}
.message_row_thumb img {
  width: 100%;
  height: 100%;
}
.message_row_textArea {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 20px;
}
@media (min-width: 920px) {
  .message_row_textArea {
    width: 49.2%;
    gap: 40px;
    padding: 60px 0 0;
  }
}
.message_row_textArea .message_title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .message_row_textArea .message_title {
    font-size: 1.75rem;
  }
}
.message_row_textArea .message_text {
  width: 100%;
  height: auto;
}
.message_row_textArea .message_text p {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
  display: block;
  text-align: justify;
  margin-bottom: 28px;
}
@media (min-width: 920px) {
  .message_row_textArea .message_text p {
    line-height: 2;
    margin-bottom: 32px;
  }
}
.message_row_textArea .message_text p:last-of-type {
  margin-bottom: 32px;
}
@media (min-width: 920px) {
  .message_row_textArea .message_text p:last-of-type {
    margin-bottom: 60px;
  }
}
.message_row_textArea .message_text .ceo_status {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.message_row_textArea .message_text .ceo_status p {
  line-height: 1.5;
  font-size: 0.9375rem;
  font-weight: 400;
  margin: 0;
  text-align: right;
}
.message_row_textArea .message_text .ceo_status .ceo_name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .message_row_textArea .message_text .ceo_status .ceo_name {
    font-size: 1.25rem;
  }
}
.message_row_textArea .message_text .ceo_status .ceo_name .ceo_job {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .message_row_textArea .message_text .ceo_status .ceo_name .ceo_job {
    font-size: 0.9375rem;
  }
}

.services_container {
  width: 100%;
  height: auto;
}
.services_container .services_catch {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .services_container .services_catch {
    gap: 60px;
    margin-bottom: 80px;
  }
}
.services_container .services_catch_title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 920px) {
  .services_container .services_catch_title {
    font-size: 1.75rem;
  }
}
.services_container .services_catch_text {
  width: 100%;
  height: auto;
  text-align: justify;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.75;
}
@media (min-width: 920px) {
  .services_container .services_catch_text {
    max-width: 47.22%;
    font-size: 1.25rem;
    line-height: 2;
  }
}
.services_container .services_nav {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
@media (min-width: 920px) {
  .services_container .services_nav {
    margin-bottom: 145px;
  }
}
.services_container .services_nav_item {
  display: block;
  width: 50%;
  height: auto;
  border-left: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}
@media (min-width: 920px) {
  .services_container .services_nav_item {
    width: 20%;
    border-bottom: 0;
  }
}
.services_container .services_nav_item:nth-child(odd) {
  border-left: 0;
}
@media (min-width: 920px) {
  .services_container .services_nav_item:nth-child(odd) {
    border-left: 1px solid #dcdcdc;
  }
}
.services_container .services_nav_item:nth-child(5), .services_container .services_nav_item:nth-child(6) {
  border-bottom: 0;
}
.services_container .services_nav_item:first-of-type {
  border-left: 0;
}
.services_container .services_nav_item:last-of-type .services_nav_link_title {
  font-size: 1.25rem;
}
.services_container .services_nav_link {
  display: flex;
  height: 150px;
  background-color: #f5f5f5;
  transition: background-color 0.3s ease-out;
}
@media (min-width: 920px) {
  .services_container .services_nav_link {
    height: 185px;
  }
}
.services_container .services_nav_link_contents {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
@media (min-width: 920px) {
  .services_container .services_nav_link_contents {
    padding: 20px 0;
  }
}
.services_container .services_nav_link_inner {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.services_container .services_nav_link_icon {
  margin-bottom: 0.4em;
}
@media (min-width: 920px) {
  .services_container .services_nav_link_icon {
    width: 2rem;
    height: 2rem;
  }
}
.services_container .services_nav_link_icon::before {
  background: #2D3132;
  transition: background 0.3s ease-out;
}
@media (min-width: 920px) {
  .services_container .services_nav_link_icon::before {
    width: 2rem;
    height: 2rem;
  }
}
.services_container .services_nav_link_title {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  color: #2D3132;
  text-align: center;
  transition: all 0.3s ease-out;
}
@media (min-width: 920px) {
  .services_container .services_nav_link_title {
    font-size: 1.25rem;
  }
}
.services_container .services_nav_link_title-single {
  margin-top: 0.6em;
}
@media (min-width: 920px) {
  .services_container .services_nav_link_title-single {
    margin-top: 1em;
  }
}
.services_container .services_nav_link .icon-anchor {
  display: block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #cccccc;
  border-radius: 9999px;
  position: relative;
  transition: all 0.3s ease-out;
}
@media (min-width: 920px) {
  .services_container .services_nav_link .icon-anchor {
    width: 24px;
    height: 24px;
  }
}
.services_container .services_nav_link .icon-anchor::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #2D3132;
  border-right: 1px solid #2D3132;
  transition: all 0.3s ease-out;
  transform: translate(-50%, -70%) rotate(135deg);
}
@media (min-width: 920px) {
  .services_container .services_nav_link .icon-anchor::before {
    width: 8px;
    height: 8px;
  }
}
.services_container .services_nav_link:hover {
  background-color: #D3232E;
}
.services_container .services_nav_link:hover .services_nav_link_icon::before {
  background: #fff !important;
}
.services_container .services_nav_link:hover .services_nav_link_title {
  color: #fff;
}
.services_container .services_nav_link:hover .icon-anchor::before {
  border-top: 1px solid #D3232E;
  border-right: 1px solid #D3232E;
}
.services_container .services_list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin: 0 0 60px;
}
@media (min-width: 920px) {
  .services_container .services_list {
    gap: 124px;
    margin: 0 0 160px;
  }
}
.services_container .services_list_item {
  width: 100%;
  height: auto;
  position: relative;
}
@media (min-width: 920px) {
  .services_container .services_list_item:nth-child(even) .services_list_item_container {
    flex-direction: row;
  }
}
.services_container .services_list_item_container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 920px) {
  .services_container .services_list_item_container {
    gap: 60px;
    flex-direction: row-reverse;
  }
}
.services_container .services_list_item_thumb {
  width: 100%;
  height: auto;
}
@media (min-width: 920px) {
  .services_container .services_list_item_thumb {
    width: 50%;
  }
}
.services_container .services_list_item_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.services_container .services_list_item_textArea {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 920px) {
  .services_container .services_list_item_textArea {
    width: 50%;
  }
}
.services_container .services_list_item_textArea_inner {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 920px) {
  .services_container .services_list_item_textArea_inner {
    gap: 60px;
  }
}
.services_container .services_list_item_textArea_inner .services_title {
  width: 100%;
  height: auto;
  display: flex;
  gap: 16px;
}
.services_container .services_list_item_textArea_inner .services_title .icon {
  flex: 0 1 60px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 9999px;
  border: 1px solid #cccccc;
}
@media (min-width: 920px) {
  .services_container .services_list_item_textArea_inner .services_title .icon {
    flex: 0 1 80px;
    width: 80px;
    height: 80px;
  }
}
@media (min-width: 920px) {
  .services_container .services_list_item_textArea_inner .services_title .icon-housing::before,
  .services_container .services_list_item_textArea_inner .services_title .icon-real::before,
  .services_container .services_list_item_textArea_inner .services_title .icon-care::before,
  .services_container .services_list_item_textArea_inner .services_title .icon-public::before,
  .services_container .services_list_item_textArea_inner .services_title .icon-solar::before,
  .services_container .services_list_item_textArea_inner .services_title .icon-renovation::before {
    width: 32px;
    height: 32px;
  }
}
.services_container .services_list_item_textArea_inner .services_title_column {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 0%;
}
.services_container .services_list_item_textArea_inner .services_title_column_number {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  line-height: 1;
  margin-bottom: 0.5em;
  color: #D3232E;
}
@media (min-width: 920px) {
  .services_container .services_list_item_textArea_inner .services_title_column_number {
    font-size: 1.25rem;
  }
}
.services_container .services_list_item_textArea_inner .services_title_column_large {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.35;
}
@media (min-width: 920px) {
  .services_container .services_list_item_textArea_inner .services_title_column_large {
    font-size: 2.25rem;
  }
}
@media (min-width: 600px) {
  .services_container .services_list_item_textArea_inner .services_title_column_large .br_sp {
    display: none;
  }
}
.services_container .services_list_item_textArea_inner .services_text {
  width: 100%;
  height: auto;
}
.services_container .services_list_item_textArea_inner .services_text_catch {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media (min-width: 920px) {
  .services_container .services_list_item_textArea_inner .services_text_catch {
    font-size: 1.25rem;
    margin-bottom: 28px;
  }
}
.services_container .services_list_item_textArea_inner .services_text p {
  display: block;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
  text-align: justify;
}
.services_container .services_list_item_textArea .services_link_btn {
  margin-top: 40px;
}

.anchor {
  transform: translateY(-100px);
}

.philosophy_container {
  width: 100%;
  height: auto;
  position: relative;
}

.philosophy_message {
  width: 100%;
  height: auto;
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75;
  margin: 0 auto 40px;
}
@media (min-width: 920px) {
  .philosophy_message {
    text-align: center;
    max-width: 60%;
    font-size: 1.75rem;
    margin: 0 auto 80px;
  }
}

.philosophy_thumb {
  padding: 0 !important;
}

@media (min-width: 920px) {
  .philosophy_large_title {
    margin-bottom: 40px;
  }
}
.philosophy_large_title_en {
  font-size: 1.75rem;
  font-weight: 500;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  line-height: 1;
  margin-bottom: 0.2em;
}
@media (min-width: 920px) {
  .philosophy_large_title_en {
    font-size: 3rem;
  }
}
.philosophy_large_title_ja {
  font-weight: 700;
  font-size: 0.9375rem;
}

.philosophy_small_title_en {
  font-size: 2.5rem;
  font-weight: 500;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  line-height: 1;
  margin-bottom: 0.2em;
}
@media (min-width: 920px) {
  .philosophy_small_title_en {
    font-size: 3rem;
  }
}
.philosophy_small_title_ja {
  font-weight: 700;
  font-size: 0.9375rem;
}

.philosophy_contents {
  width: 100%;
  height: auto;
  background-color: #F5F5F5;
  padding: 40px 20px;
  margin-bottom: 80px;
  border-radius: 20px;
}
@media (min-width: 920px) {
  .philosophy_contents {
    padding: 80px 82px;
    margin-bottom: 120px;
  }
}
.philosophy_contents_large {
  width: 100%;
  height: auto;
  margin-bottom: 80px;
}
@media (min-width: 920px) {
  .philosophy_contents_large {
    margin-bottom: 120px;
  }
}
.philosophy_contents_large:first-of-type {
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .philosophy_contents_large:first-of-type {
    margin-bottom: 60px;
  }
}
.philosophy_contents_large_textArea {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .philosophy_contents_large_textArea {
    margin-bottom: 60px;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.philosophy_contents_large_text {
  width: 100%;
  height: auto;
  display: block;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 24px;
  text-align: justify;
}
@media (min-width: 920px) {
  .philosophy_contents_large_text {
    width: 39.63%;
    margin-bottom: 0;
  }
}
.philosophy_contents_large_img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .philosophy_contents_large_img {
    width: 60%;
  }
}
@media (min-width: 600px) and (min-width: 920px) {
  .philosophy_contents_large_img {
    width: 64.79%;
  }
}
.philosophy_contents_large_img img {
  width: 100%;
  height: 100%;
}
.philosophy_contents_large_promise {
  margin-bottom: 0;
}
.philosophy_contents_small {
  width: 100%;
  height: auto;
  background-color: #fff;
  border-radius: 20px;
  padding: 32px 20px;
  margin-bottom: 24px;
}
@media (min-width: 920px) {
  .philosophy_contents_small {
    padding: 60px;
    margin-bottom: 40px;
  }
}
.philosophy_contents_small_last {
  margin-bottom: 80px;
}
@media (min-width: 920px) {
  .philosophy_contents_small_last {
    margin-bottom: 120px;
  }
}
.philosophy_contents_small_title {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #2D3132;
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .philosophy_contents_small_title {
    margin-bottom: 60px;
  }
}
.philosophy_contents_small_title_en {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  line-height: 1;
}
@media (min-width: 920px) {
  .philosophy_contents_small_title_en {
    font-size: 2.25rem;
  }
}
.philosophy_contents_small_title_ja {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 920px) {
  .philosophy_contents_small_title_ja {
    font-size: 1.125rem;
  }
}
.philosophy_contents_small_row {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 920px) {
  .philosophy_contents_small_row {
    flex-direction: row;
    gap: 46px;
    justify-content: space-between;
  }
}
.philosophy_contents_small_catch {
  width: 100%;
}
@media (min-width: 920px) {
  .philosophy_contents_small_catch {
    max-width: 382px;
  }
}
.philosophy_contents_small_catch span {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .philosophy_contents_small_catch span {
    font-size: 1.75rem;
  }
}
.philosophy_contents_small_list {
  width: 100%;
  height: auto;
}
.philosophy_contents_small_list .list_item {
  display: block;
  width: 100%;
  height: auto;
  padding: 20px 0;
  border-bottom: 1px solid #cccccc;
}
@media (min-width: 920px) {
  .philosophy_contents_small_list .list_item {
    padding: 28px 0;
  }
}
.philosophy_contents_small_list .list_item:first-of-type {
  padding: 0 0 20px;
}
@media (min-width: 920px) {
  .philosophy_contents_small_list .list_item:first-of-type {
    padding: 0 0 28px;
  }
}
.philosophy_contents_small_list .list_item:last-of-type {
  padding: 20px 0 0;
  border-bottom: 0;
}
@media (min-width: 920px) {
  .philosophy_contents_small_list .list_item:last-of-type {
    padding: 28px 0 0;
  }
}
.philosophy_contents_small_list .list_item p {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
}

.spirits_contents .philosophy_contents_large_textArea {
  border-bottom: 0;
}
.spirits_contents_list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 920px) {
  .spirits_contents_list {
    gap: 36px 40px;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .spirits_contents_list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.spirits_contents_list .spirits_item {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 0 20px;
  border-bottom: 1px solid #cccccc;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .spirits_contents_list .spirits_item {
    padding: 0 0 36px;
    gap: 24px;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .spirits_contents_list .spirits_item {
    width: calc((100% - 40px) / 2);
  }
}
.spirits_contents_list .spirits_item_number {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #D3232E;
  display: block;
  padding-top: 0.1em;
}
.spirits_contents_list .spirits_item_text {
  font-size: 1rem;
  font-weight: 400;
}
@media (min-width: 920px) {
  .spirits_contents_list .spirits_item_text {
    font-size: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .spirits_contents_list .item07 {
    border-bottom: 0;
  }
}
.spirits_contents_list .item08 {
  border-bottom: 0;
}

.promise_contents {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
@media (min-width: 600px) {
  .promise_contents {
    flex-direction: row;
    align-items: normal;
    justify-content: space-between;
  }
}
@media (min-width: 600px) and (min-width: 920px) {
  .promise_contents {
    gap: 65px;
  }
}
.promise_contents_inner {
  width: 100%;
  height: auto;
}
@media (min-width: 600px) {
  .promise_contents_inner {
    max-width: 36.46%;
  }
}
.promise_contents_inner .philosophy_contents_large_textArea {
  border-bottom: 0;
}
.promise_contents_promise p {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  display: block;
  margin-bottom: 24px;
  text-align: center;
}
@media (min-width: 920px) {
  .promise_contents_promise p {
    margin-bottom: 40px;
    text-align: left;
  }
}
.promise_contents_promise_img {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .promise_contents_promise_img {
    width: 100%;
  }
}
.promise_contents_promise_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.promise_contents_vector {
  width: 100%;
  height: auto;
}
@media (min-width: 600px) {
  .promise_contents_vector {
    width: 60%;
  }
}
@media (min-width: 600px) and (min-width: 920px) {
  .promise_contents_vector {
    width: 54.3%;
  }
}
.promise_contents_vector img {
  width: 100%;
  height: 100%;
}

.corporate_contents {
  width: 100%;
  height: auto;
  margin-bottom: 100px;
}
@media (min-width: 920px) {
  .corporate_contents {
    margin-bottom: 160px;
  }
}
.corporate_contents .philosophy_small_title {
  margin-bottom: 60px;
}
@media (min-width: 920px) {
  .corporate_contents .philosophy_small_title {
    margin-bottom: 100px;
  }
}
.corporate_contents_thought {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
@media (min-width: 920px) {
  .corporate_contents_thought {
    gap: 100px;
  }
}
.corporate_contents_thought_img {
  width: 50%;
  height: auto;
}
@media (min-width: 600px) {
  .corporate_contents_thought_img {
    width: 40%;
  }
}
@media (min-width: 600px) and (min-width: 920px) {
  .corporate_contents_thought_img {
    width: 100%;
    max-width: 19.1%;
  }
}
.corporate_contents_thought_img img {
  width: 100%;
  height: 100%;
}
.corporate_contents_thought_text {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 920px) {
  .corporate_contents_thought_text {
    gap: 28px;
  }
}
.corporate_contents_thought_text_title {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  line-height: 1;
  padding-bottom: 16px;
}
@media (min-width: 920px) {
  .corporate_contents_thought_text_title {
    font-size: 1.25rem;
  }
}
.corporate_contents_thought_text_title::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 1px;
  background-color: #2D3132;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.corporate_contents_thought_text p {
  display: block;
  font-size: 1rem;
  font-weight: 400;
}
@media (min-width: 920px) {
  .corporate_contents_thought_text p {
    text-align: center;
    font-size: 1.125rem;
  }
}

.br_pc {
  display: none;
}
@media (min-width: 920px) {
  .br_pc {
    display: block;
  }
}

.group_container {
  width: 100%;
  height: auto;
  position: relative;
}

.group_message {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}
@media (min-width: 920px) {
  .group_message {
    gap: 60px;
    margin-bottom: 160px;
  }
}
.group_message_title {
  font-size: 1.5rem;
  font-weight: 700;
}
@media (min-width: 920px) {
  .group_message_title {
    text-align: center;
    font-size: 1.75rem;
    line-height: 2;
  }
}
.group_message_text {
  font-size: 1rem;
  font-weight: 400;
  text-align: justify;
}
@media (min-width: 920px) {
  .group_message_text {
    font-size: 1.25rem;
    line-height: 2;
    max-width: 46%;
  }
}

.group_nav_wrap {
  width: 100%;
  height: auto;
  margin-bottom: 60px;
}
@media (min-width: 920px) {
  .group_nav_wrap {
    margin-bottom: 160px;
  }
}

.group_nav_catch {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  display: block;
  margin: 0 auto 16px;
}
@media (min-width: 920px) {
  .group_nav_catch {
    margin: 0 auto 24px;
    font-size: 1.25rem;
  }
}

.group_nav {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  background-color: #f5f5f5;
  padding: 16px 20px;
}
@media (min-width: 920px) {
  .group_nav {
    flex-direction: row;
    justify-content: center;
    padding: 40px 46px;
  }
}
.group_nav_item {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid #cccccc;
}
@media (min-width: 920px) {
  .group_nav_item {
    width: 20%;
    padding: 0 15px;
    border-bottom: 0;
    border-left: 1px solid #cccccc;
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 920px) {
  .group_nav_item_first {
    border-left: 0;
    padding: 0 15px 0 0;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.group_nav_item_fourth .group_nav_contents {
  gap: 20px;
}
@media (min-width: 920px) {
  .group_nav_item_fourth .group_nav_contents {
    gap: 10px;
  }
}
.group_nav_item_fourth .group_nav_title {
  gap: 16px;
}
@media (min-width: 920px) {
  .group_nav_item_fourth .group_nav_title {
    gap: 9px;
  }
}
.group_nav_item_last {
  border-bottom: 0;
}
@media (min-width: 920px) {
  .group_nav_item_last {
    padding: 0 0 0 15px;
  }
}
.group_nav_contents {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (min-width: 920px) {
  .group_nav_contents {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
  }
}
.group_nav_icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 9999px;
  flex: 0 1 72px;
}
@media (min-width: 920px) {
  .group_nav_icon {
    width: 96px;
    height: 96px;
    flex: 0 1 96px;
  }
}
.group_nav .icon_group_house {
  position: relative;
}
.group_nav .icon_group_house::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/about/group/group_house.svg);
  mask-image: url(../img/about/group/group_house.svg);
  display: block;
  width: 40px;
  height: 40px;
  background: #2D3132;
}
@media (min-width: 920px) {
  .group_nav .icon_group_house::before {
    width: 64px;
    height: 64px;
  }
}
.group_nav .icon_group_const {
  position: relative;
}
.group_nav .icon_group_const::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/about/group/group_const.svg);
  mask-image: url(../img/about/group/group_const.svg);
  display: block;
  width: 40px;
  height: 40px;
  background: #2D3132;
}
@media (min-width: 920px) {
  .group_nav .icon_group_const::before {
    width: 64px;
    height: 64px;
  }
}
.group_nav .icon_group_land {
  position: relative;
}
.group_nav .icon_group_land::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/about/group/group_land.svg);
  mask-image: url(../img/about/group/group_land.svg);
  display: block;
  width: 40px;
  height: 40px;
  background: #2D3132;
}
@media (min-width: 920px) {
  .group_nav .icon_group_land::before {
    width: 64px;
    height: 64px;
  }
}
.group_nav .icon_group_renovation {
  position: relative;
}
.group_nav .icon_group_renovation::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/about/group/group_renovation.svg);
  mask-image: url(../img/about/group/group_renovation.svg);
  display: block;
  width: 40px;
  height: 40px;
  background: #2D3132;
}
@media (min-width: 920px) {
  .group_nav .icon_group_renovation::before {
    width: 64px;
    height: 64px;
  }
}
.group_nav .icon_group_solar {
  position: relative;
}
.group_nav .icon_group_solar::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/about/group/group_solar.svg);
  mask-image: url(../img/about/group/group_solar.svg);
  display: block;
  width: 40px;
  height: 40px;
  background: #2D3132;
}
@media (min-width: 920px) {
  .group_nav .icon_group_solar::before {
    width: 64px;
    height: 64px;
  }
}
.group_nav_title {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 0%;
}
@media (min-width: 920px) {
  .group_nav_title {
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
}
.group_nav_title_catch {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .group_nav_title_catch {
    text-align: center;
  }
}
.group_nav_title_company {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (min-width: 920px) {
  .group_nav_link {
    background-image: linear-gradient(to right, #2D3132, #2D3132);
    background-size: 0 1px;
    background-position: bottom right;
    background-repeat: no-repeat;
    padding-top: 2px;
    padding-bottom: 2px;
    transition: background-size 0.3s ease;
  }
}
.group_nav_link:hover {
  background-size: 100% 1px;
  background-position: bottom left;
}

.group_company {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}
@media (min-width: 920px) {
  .group_company {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 160px;
  }
}
.group_company_side {
  display: none;
  width: 27.465%;
}
@media (min-width: 920px) {
  .group_company_side {
    display: block;
  }
}
.group_company_side_container {
  position: sticky;
  top: 120px;
}
.group_company_side_container .company_nav_list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.group_company_side_container .company_nav_list li a {
  display: block;
  padding-left: 20px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  transition: all 0.3s ease-out;
}
.group_company_side_container .company_nav_list li a:hover {
  font-weight: 700;
  position: relative;
}
.group_company_side_container .company_nav_list li a.is-active {
  font-weight: 700;
  position: relative;
}
.group_company_side_container .company_nav_list li a.is-active::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #D3232E;
  border-radius: 9999px;
  top: 0.5em;
  left: 0;
}
.group_company_main {
  width: 100%;
  height: auto;
}
@media (min-width: 920px) {
  .group_company_main {
    width: 63.54%;
  }
}
.group_company_container {
  margin-bottom: 80px;
}
@media (min-width: 920px) {
  .group_company_container {
    margin-bottom: 0;
    padding-top: 120px;
  }
}
@media (min-width: 920px) {
  .group_company_container:first-of-type {
    margin-top: -120px;
  }
}
.group_company_container:last-of-type {
  margin-bottom: 0;
}
.group_company_container .anchor {
  transform: translateY(-120px);
}
.group_company_title {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .group_company_title {
    margin-bottom: 60px;
  }
}
.group_company_title_ja {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  display: block;
  margin-bottom: 0.5em;
}
@media (min-width: 920px) {
  .group_company_title_ja {
    font-size: 1.75rem;
  }
}
.group_company_title_en {
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 920px) {
  .group_company_title_en {
    font-size: 0.9375rem;
  }
}
.group_company_list_item {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid #cccccc;
}
@media (min-width: 920px) {
  .group_company_list_item {
    flex-direction: row;
    align-items: flex-start;
    padding: 32px 0;
    gap: 98px;
  }
}
.group_company_list_item:first-of-type {
  border-top: 1px solid #cccccc;
}
@media (min-width: 920px) {
  .group_company_list_item .item_title {
    flex: 0 1 168px;
  }
}
.group_company_list_item .item_title span {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (min-width: 920px) {
  .group_company_list_item .item_text {
    flex: 1 1 0%;
  }
}
.group_company_list_item .item_text p {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  display: block;
  margin-bottom: 0.3em;
}
.group_company_list_item .item_text p:last-of-type {
  margin-bottom: 0;
}
.group_company_list_item .item_text small {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
}
.group_company_list_item .item_text .tel_link {
  text-decoration: none;
  pointer-events: none;
}
.group_company_list_item .item_member {
  display: flex;
  flex-direction: column;
}
@media (min-width: 920px) {
  .group_company_list_item .item_member {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }
}

.br_sp {
  display: block;
}
@media (min-width: 920px) {
  .br_sp {
    display: none;
  }
}

.history_container {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 60px;
}
@media (min-width: 920px) {
  .history_container {
    margin-bottom: 160px;
  }
}
.history_container_title {
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .history_container_title {
    margin-bottom: 100px;
  }
}
.history_container_title_en {
  font-size: 2.25rem;
  font-weight: 500;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  line-height: 1;
  margin-bottom: 0.2em;
}
@media (min-width: 920px) {
  .history_container_title_en {
    font-size: 3rem;
  }
}
.history_container_title_ja {
  font-weight: 700;
  font-size: 0.8125rem;
}
@media (min-width: 920px) {
  .history_container_title_ja {
    font-size: 0.9375rem;
  }
}

.history_contents {
  width: 100%;
  height: auto;
}

.history_data {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  border-bottom: 1px solid #cccccc;
}
@media (min-width: 920px) {
  .history_data {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 77px;
    padding: 40px 0;
    max-width: 1106px;
    margin: 0 auto;
  }
}
.history_data:first-of-type {
  padding: 0 0 24px;
}
@media (min-width: 920px) {
  .history_data:first-of-type {
    padding: 0 0 40px;
  }
}
.history_data:last-of-type {
  padding: 24px 0;
  border-bottom: 0;
}
@media (min-width: 920px) {
  .history_data:last-of-type {
    padding: 40px 0 0;
  }
}
.history_data.hidden {
  display: none;
}
.history_data_year {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
@media (min-width: 920px) {
  .history_data_year {
    flex: 0 1 115px;
  }
}
.history_data_year_ad {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: baseline;
}
.history_data_year_ad_number {
  font-size: 1.75rem;
  font-weight: 400;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  line-height: 1;
  padding-right: 0.1em;
}
@media (min-width: 920px) {
  .history_data_year_ad_number {
    font-size: 2.25rem;
  }
}
.history_data_eventarea {
  width: 100%;
  height: auto;
}
@media (min-width: 920px) {
  .history_data_eventarea {
    flex: 1 1 0%;
  }
}
.history_data_event {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 920px) {
  .history_data_event {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }
}
.history_data_event:not(:last-of-type) {
  margin-bottom: 14px;
}
.history_data_event_month {
  width: 100%;
  height: auto;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1;
  display: block;
}
@media (min-width: 920px) {
  .history_data_event_month {
    flex: 0 1 40px;
    padding-top: 0.35em;
  }
}
.history_data_event_content {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  flex: 1 1 0%;
}
.history_data_event_content p {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .history_data_event_content p {
    line-height: 1.75;
  }
}
.history_data_event_img {
  width: 100%;
  height: auto;
  max-width: 300px;
  margin-top: 10px;
}
@media (min-width: 920px) {
  .history_data_event_img {
    margin-top: 16px;
  }
}
.history_data_event_img img {
  width: 100%;
  height: 100%;
}

.more {
  display: flex;
  min-width: 230px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #DCDCDC;
  border-radius: 999px;
  padding: 16px 24px;
  font-size: 0.9375rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  z-index: 0;
  line-height: 1.4;
  margin: 40px auto 0;
}
@media (min-width: 920px) {
  .more {
    margin: 80px auto 0;
  }
}
.more::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #D3232E;
  transition: opacity 0.3s ease-out;
  opacity: 0;
}
.more .icon_plus {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 1em;
  height: 0.1em;
  background: #2D3132;
  border-radius: 0.1em;
  position: relative;
}
.more .icon_plus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}
@media (min-width: 920px) {
  .more:hover {
    color: #fff;
    border-color: #D3232E;
  }
}
@media (min-width: 920px) {
  .more:hover:before {
    opacity: 1;
  }
}
@media (min-width: 920px) {
  .more:hover .icon_plus {
    background: #fff;
  }
}

.is-hidden {
  display: none;
}

.effort_container {
  position: relative;
  margin-bottom: 60px;
}
@media (min-width: 920px) {
  .effort_container {
    margin-bottom: 160px;
  }
}

.effort_contents {
  width: 100%;
  height: auto;
  display: flex;
}
@media (min-width: 920px) {
  .effort_contents {
    justify-content: space-between;
    gap: 112px;
  }
}
.effort_contents_title {
  margin-bottom: 24px;
}
@media (min-width: 920px) {
  .effort_contents_title {
    margin-bottom: 60px;
  }
}
.effort_contents_title_en {
  font-size: 2.25rem;
  font-weight: 500;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  line-height: 1.25;
  margin-bottom: 0.2em;
}
@media (min-width: 920px) {
  .effort_contents_title_en {
    font-size: 3rem;
  }
}
.effort_contents_title_ja {
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1;
}
@media (min-width: 920px) {
  .effort_contents_title_ja {
    font-size: 0.9375rem;
  }
}
.effort_contents_side {
  display: none;
}
@media (min-width: 920px) {
  .effort_contents_side {
    display: block;
    width: 27.465%;
  }
}
.effort_contents_side_inner {
  position: sticky;
  top: 120px;
}
.effort_contents_side_inner .nav_list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.effort_contents_side_inner .nav_list li a {
  display: block;
  padding-left: 20px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  transition: all 0.3s ease-out;
}
.effort_contents_side_inner .nav_list li a:hover {
  font-weight: 700;
  position: relative;
}
.effort_contents_side_inner .nav_list li a.is-active {
  font-weight: 700;
  position: relative;
}
.effort_contents_side_inner .nav_list li a.is-active::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #D3232E;
  border-radius: 9999px;
  top: 0.5em;
  left: 0;
}
.effort_contents_main {
  width: 100%;
  height: auto;
}
@media (min-width: 920px) {
  .effort_contents_main {
    width: 63.54%;
  }
}
.effort_contents_main_container {
  width: 100%;
  height: auto;
  margin-bottom: 80px;
}
@media (min-width: 920px) {
  .effort_contents_main_container {
    margin-bottom: 40px;
    padding-top: 120px;
  }
}
@media (min-width: 920px) {
  .effort_contents_main_container:first-of-type {
    margin-top: -120px;
  }
}
.effort_contents_main_container:last-of-type {
  margin-bottom: 0;
}
.effort_contents_catch {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (min-width: 920px) {
  .effort_contents_catch {
    font-size: 1.25rem;
  }
}

.iso_contents_thumb {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}
@media (min-width: 920px) {
  .iso_contents_thumb {
    max-width: 632px;
  }
}
.iso_contents_download {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .iso_contents_download {
    margin-bottom: 60px;
  }
}
.iso_contents_download a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  padding-bottom: 0.2em;
}
.iso_contents_download a .icon_pdf {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/common/pdf.svg);
  mask-image: url(../img/common/pdf.svg);
  display: block;
  width: 24px;
  height: 24px;
  background: #2D3132;
}
.iso_contents_textArea {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .iso_contents_textArea {
    gap: 40px;
  }
}
.iso_contents_textArea:last-of-type {
  margin-bottom: 0;
}
.iso_contents_textArea p {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  text-align: justify;
}
@media (min-width: 920px) {
  .iso_contents_textArea p {
    line-height: 2;
  }
}
.iso_contents_list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .iso_contents_list {
    margin-bottom: 80px;
  }
}
.iso_contents_list_item {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid #cccccc;
}
@media (min-width: 920px) {
  .iso_contents_list_item {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    padding: 32px 0;
  }
}
.iso_contents_list_item:first-of-type {
  border-top: 1px solid #cccccc;
}
@media (min-width: 920px) {
  .iso_contents_list_item .item_title {
    width: 100%;
    max-width: 169px;
  }
}
.iso_contents_list_item .item_title span {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .iso_contents_list_item .item_text {
    flex: 0 1 544px;
  }
}
.iso_contents_list_item .item_text_column {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 920px) {
  .iso_contents_list_item .item_text_column {
    gap: 24px;
  }
}
.iso_contents_list_item .item_text_column_item {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}
.iso_contents_list_item .item_text p {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.iso_contents_list_item .item_text small {
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1;
}
.iso_contents_policy {
  width: 100%;
  height: auto;
  padding-left: 20px;
  margin: 0;
}
.iso_contents_policy li {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.rating_contents {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media (min-width: 920px) {
  .rating_contents {
    gap: 40px;
  }
}
.rating_contents_thumb {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin: 0 auto;
}
.rating_contents_thumb img {
  width: 100%;
  height: 100%;
}
.rating_contents p {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  text-align: justify;
}
@media (min-width: 920px) {
  .rating_contents p {
    line-height: 2;
  }
}

.trust_txt {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 920px) {
  .trust_txt {
    gap: 1.5rem;
  }
}

.builder_contents {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media (min-width: 920px) {
  .builder_contents {
    gap: 40px;
  }
}
.builder_contents_thumb {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin: 0 auto;
}
.builder_contents_thumb img {
  width: 100%;
  height: 100%;
}
.builder_contents_catch {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.35;
  display: block;
  margin: 0 0 20px;
}
@media (min-width: 920px) {
  .builder_contents_catch {
    margin: 0 0 40px;
  }
}
.builder_contents_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.builder_contents p {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
  text-align: justify;
}
@media (min-width: 920px) {
  .builder_contents p {
    line-height: 2;
  }
}

.signature p {
  text-align: right;
}

.plan_link {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  padding-bottom: 0.2em;
  margin: 30px 0 0;
}
@media (min-width: 920px) {
  .plan_link {
    margin: 38px 0 0;
  }
}
.plan_link .icon_pdf {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/common/pdf.svg);
  mask-image: url(../img/common/pdf.svg);
  display: block;
  width: 24px;
  height: 24px;
  background: #2D3132;
}

.consider_contents .effort_contents_catch {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (min-width: 920px) {
  .consider_contents .effort_contents_catch {
    font-size: 1.125rem;
  }
}
.consider_contents_attempt {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 60px;
}
@media (min-width: 920px) {
  .consider_contents_attempt {
    gap: 24px;
    margin-bottom: 80px;
  }
}
.consider_contents_attempt_sdgs {
  width: 100%;
  height: auto;
  background: #f5f5f5;
  border-radius: 4px;
  padding: 40px 20px;
}
@media (min-width: 920px) {
  .consider_contents_attempt_sdgs {
    padding: 60px 40px;
  }
}
.consider_contents_attempt_sdgs .sdgs_img {
  width: 100%;
  height: auto;
  max-width: 264px;
  margin: 0 auto 24px;
}
@media (min-width: 920px) {
  .consider_contents_attempt_sdgs .sdgs_img {
    margin: 0 auto 40px;
  }
}
.consider_contents_attempt_sdgs .sdgs_img img {
  width: 100%;
  height: 100%;
}
.consider_contents_attempt_sdgs .sdgs_textArea {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 920px) {
  .consider_contents_attempt_sdgs .sdgs_textArea {
    gap: 16px;
  }
}
.consider_contents_attempt_sdgs .sdgs_textArea_title {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1;
}
.consider_contents_attempt_sdgs .sdgs_textArea p {
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.5;
  text-align: justify;
}
@media (min-width: 920px) {
  .consider_contents_attempt_sdgs .sdgs_textArea p {
    line-height: 1.75;
  }
}
.consider_contents_part {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 60px;
}
@media (min-width: 920px) {
  .consider_contents_part {
    gap: 24px;
    margin-bottom: 80px;
  }
}
.consider_contents_part_list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 920px) {
  .consider_contents_part_list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0 36px;
  }
}
.consider_contents_part_list .list_item {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #cccccc;
}
@media (min-width: 920px) {
  .consider_contents_part_list .list_item {
    width: calc((100% - 36px) / 2);
    padding: 20px 0;
  }
}
.consider_contents_part_list .list_item:first-of-type {
  padding: 0 0 12px;
}
@media (min-width: 920px) {
  .consider_contents_part_list .list_item:first-of-type {
    padding: 0 0 20px;
  }
}
@media (min-width: 920px) {
  .consider_contents_part_list .list_item:nth-child(2) {
    padding: 0 0 20px;
  }
}
@media (min-width: 920px) {
  .consider_contents_part_list .list_item:nth-child(8) {
    border-bottom: 0;
    padding: 20px 0 0;
  }
}
.consider_contents_part_list .list_item:last-of-type {
  padding: 12px 0 0;
  border-bottom: 0;
}
@media (min-width: 920px) {
  .consider_contents_part_list .list_item:last-of-type {
    padding: 20px 0 0;
  }
}
.consider_contents_part_list .list_item_img {
  width: 80px;
  height: 80px;
  flex: 0 1 80px;
}
@media (min-width: 920px) {
  .consider_contents_part_list .list_item_img {
    width: 100px;
    height: 100px;
    flex: 0 1 100px;
  }
}
.consider_contents_part_list .list_item_img img {
  width: 100%;
  height: 100%;
}
.consider_contents_part_list .list_item_point {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 0%;
}
.consider_contents_part_list .list_item_point p {
  display: block;
  padding-left: 22px;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.5;
  position: relative;
}
.consider_contents_part_list .list_item_point p::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #2D3132;
  top: 5px;
  left: 0;
}
.consider_contents_solar {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 60px;
}
@media (min-width: 920px) {
  .consider_contents_solar {
    gap: 40px;
    margin-bottom: 80px;
  }
}
.consider_contents_solar_achieve {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media (min-width: 920px) {
  .consider_contents_solar_achieve {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 46px;
  }
}
.consider_contents_solar_achieve .achieve_value {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media (min-width: 920px) {
  .consider_contents_solar_achieve .achieve_value {
    gap: 16px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.consider_contents_solar_achieve .achieve_value_number {
  display: flex;
  align-items: baseline;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 5rem;
  line-height: 1;
  color: #D3232E;
}
@media (min-width: 920px) {
  .consider_contents_solar_achieve .achieve_value_number {
    font-size: 6rem;
    align-items: flex-end;
  }
}
.consider_contents_solar_achieve .achieve_value_number_small {
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1;
  color: #D3232E;
  position: relative;
  top: 12px;
}
@media (min-width: 920px) {
  .consider_contents_solar_achieve .achieve_value_number_small {
    font-size: 4rem;
  }
}
.consider_contents_solar_achieve .achieve_value_notes {
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1;
}
.consider_contents_solar_achieve .achieve_text {
  width: 100%;
  height: auto;
}
@media (min-width: 920px) {
  .consider_contents_solar_achieve .achieve_text {
    padding: 21px 0 21px 46px;
    border-left: 1px solid #cccccc;
    display: flex;
    align-items: center;
  }
}
.consider_contents_solar_achieve .achieve_text p {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .consider_contents_solar_achieve .achieve_text p {
    line-height: 1.75;
  }
}
.consider_contents_data {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 920px) {
  .consider_contents_data {
    gap: 40px;
  }
}
.consider_contents_data_container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 920px) {
  .consider_contents_data_container {
    gap: 40px;
  }
}
.consider_contents_data_container .data_text {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.75;
}
@media (min-width: 920px) {
  .consider_contents_data_container .data_text {
    line-height: 2;
  }
}
.consider_contents_data_container .data_inner {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 920px) {
  .consider_contents_data_container .data_inner {
    gap: 20px;
  }
}
.consider_contents_data_container .data_inner .data_list {
  width: 100%;
  height: auto;
  border: 1px solid #2D3132;
  border-collapse: collapse;
}
.consider_contents_data_container .data_inner .data_list_pc {
  display: none;
}
@media (min-width: 1200px) {
  .consider_contents_data_container .data_inner .data_list_pc {
    display: table;
  }
}
.consider_contents_data_container .data_inner .data_list_sp {
  display: table;
}
@media (min-width: 1200px) {
  .consider_contents_data_container .data_inner .data_list_sp {
    display: none;
  }
}
.consider_contents_data_container .data_inner .data_list .data_desc {
  background: #f5f5f5;
  border: 1px solid #2D3132;
  border-collapse: collapse;
  padding: 20px 16px;
  text-align: center;
  line-height: 1.35;
}
@media (min-width: 1200px) {
  .consider_contents_data_container .data_inner .data_list .data_desc {
    padding: 16px 8px;
  }
}
@media (min-width: 1200px) {
  .consider_contents_data_container .data_inner .data_list .data_desc_first {
    max-width: 122px;
    height: auto;
  }
}
.consider_contents_data_container .data_inner .data_list .data_desc_white {
  background: #fff;
}
.consider_contents_data_container .data_inner .data_list .data_desc span {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.5;
  text-align: center;
}
.consider_contents_data_container .data_inner .data_list .data_desc .number {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
}
.consider_contents_data_container .data_inner .data_list .data_desc .number_small {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  position: relative;
  top: 3px;
}
.consider_contents_data_container .data_inner .data_list .data_desc .comp {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  position: relative;
}
@media (min-width: 1200px) {
  .consider_contents_data_container .data_inner .data_list .data_desc .comp {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
  }
}
.consider_contents_data_container .data_inner .data_list .data_desc .comp::before {
  content: "";
  display: block;
  position: absolute;
  top: 54%;
  left: 53%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%) rotate(-90deg);
  border: 7.5px solid transparent;
  border-top: 8px solid #D3232E;
  border-bottom-width: 0;
}
@media (min-width: 1200px) {
  .consider_contents_data_container .data_inner .data_list .data_desc .comp::before {
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.consider_contents_data_container .data_inner .data_list .data_desc .comp .number:first-of-type {
  opacity: 0.3;
}
.consider_contents_data_container .data_inner .data_link {
  margin: 0;
}
.consider_contents_data_container .data_inner .data_link_text {
  font-weight: 400;
}

.data_link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 12px 0 0;
}
@media (min-width: 600px) {
  .data_link {
    margin: 16px 0 0;
  }
}
.data_link_text {
  font-weight: 700;
}
.data_link_text .br_sp {
  display: block;
}
@media (min-width: 600px) {
  .data_link_text .br_sp {
    display: none;
  }
}

.growth_means {
  width: 100%;
  background-color: #F5F5F5;
  padding: 20px;
  margin: 24px 0;
}
@media (min-width: 600px) {
  .growth_means {
    padding: 40px;
    margin: 40px 0;
  }
}
.growth_means_head {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  display: block;
  margin: 0 0 16px;
}
@media (min-width: 600px) {
  .growth_means_head {
    margin: 0 0 20px;
  }
}
.growth_means_list {
  list-style: disc;
  padding-left: 16px;
  line-height: 2;
}
@media (min-width: 600px) {
  .growth_means_list {
    padding-left: 20px;
  }
}
.growth_point {
  border: 1px solid #DCDCDC;
  padding: 20px;
  margin: 24px 0 0;
}
@media (min-width: 600px) {
  .growth_point {
    padding: 40px;
    margin: 40px 0 0;
  }
}
.growth_point_head {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  display: block;
  margin: 0 0 12px;
}
@media (min-width: 600px) {
  .growth_point_head {
    margin: 0 0 16px;
  }
}

.housing_mv {
  width: 100%;
  height: auto;
  margin: 0 auto 80px;
}
@media (min-width: 920px) {
  .housing_mv {
    margin: 0 auto 160px;
  }
}
.housing_mv img {
  width: 100%;
  height: 100%;
}

.housing_container {
  width: 100%;
  height: auto;
}
.housing_container_inner {
  margin-bottom: 120px;
}
@media (min-width: 920px) {
  .housing_container_inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 240px;
  }
}
.housing_container_inner_side {
  display: none;
}
@media (min-width: 920px) {
  .housing_container_inner_side {
    display: block;
    width: 100%;
    height: auto;
    max-width: 34.62%;
  }
}
.housing_container_inner_side_container {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.housing_container_inner_main {
  width: 100%;
  height: auto;
}
@media (min-width: 920px) {
  .housing_container_inner_main {
    max-width: 56.235%;
  }
}

.housing_title {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.housing_title_number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #D3232E;
}
.housing_title_catch {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  line-height: 1;
}
.housing_title_catch_ja {
  font-size: 3rem;
  font-weight: 700;
}
.housing_title_catch_en {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
}

.housing_nav_list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.housing_nav_list li a {
  display: block;
  padding-left: 20px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  transition: all 0.3s ease-out;
}
.housing_nav_list li a:hover {
  font-weight: 700;
  position: relative;
}
.housing_nav_list li a.is-active {
  font-weight: 700;
  position: relative;
}
.housing_nav_list li a.is-active::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #D3232E;
  border-radius: 9999px;
  top: 0.5em;
  left: 0;
}

.housing_contents_container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}
@media (min-width: 920px) {
  .housing_contents_container {
    margin-bottom: 0;
    padding-top: 120px;
  }
}
.housing_contents_container:last-of-type {
  margin-bottom: 0;
}
.housing_contents_container_title {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
}
@media (min-width: 920px) {
  .housing_contents_container_title {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }
}
@media (min-width: 920px) {
  .housing_contents_container_title_first {
    padding-top: 51px;
    transform: translateY(-51px);
  }
}
.housing_contents_container_thumb {
  width: 100%;
  height: auto;
  margin: 0 auto 24px;
  max-width: 500px;
}
@media (min-width: 920px) {
  .housing_contents_container_thumb {
    margin: 0 auto 40px;
    max-width: 100%;
  }
}
.housing_contents_container_thumb img {
  width: 100%;
  height: 100%;
}
.housing_contents_container_row {
  padding-top: 24px;
  border-top: 1px solid #cccccc;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 920px) {
  .housing_contents_container_row {
    padding-top: 40px;
    flex-direction: row;
    gap: 27.6px;
  }
}
@media (min-width: 920px) {
  .housing_contents_container_row_moist {
    gap: 53px;
  }
}
.housing_contents_container_row .row_textArea {
  width: 100%;
  height: auto;
}
.housing_contents_container_row .row_textArea_title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}
@media (min-width: 920px) {
  .housing_contents_container_row .row_textArea_title {
    font-size: 1.25rem;
  }
}
.housing_contents_container_row .row_textArea p {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
}
.housing_contents_container_row .row_textArea_notes {
  display: block;
  position: relative;
  padding-left: 16px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
}
.housing_contents_container_row .row_textArea_notes::before {
  content: "※";
  display: block;
  position: absolute;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  top: 0;
  left: 0;
}
.housing_contents_container_row .row_img {
  width: 100%;
  height: auto;
  max-width: 299px;
  margin: 0 auto;
}
.housing_contents_container_row .row_img_moist {
  max-width: 274px;
  position: relative;
}
.housing_contents_container_row .row_img_moist::before {
  content: "";
  position: absolute;
  background-image: -webkit-image-set(url(../img/services/housing/sheet_item.png) 1x, url(../img/services/housing/sheet_item@2x.png) 2x);
  background-image: image-set(url(../img/services/housing/sheet_item.png) 1x, url(../img/services/housing/sheet_item@2x.png) 2x);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  width: 80px;
  height: 80px;
  bottom: -15px;
  left: -8px;
  border-radius: 9999px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}
@media (min-width: 920px) {
  .housing_contents_container_row .row_img_moist::before {
    width: 128px;
    height: 128px;
    bottom: -30px;
    left: -16px;
  }
}
.housing_contents_container_row .row_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.housing_contents_container_column {
  padding-top: 24px;
  border-top: 1px solid #cccccc;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 920px) {
  .housing_contents_container_column {
    padding-top: 40px;
  }
}
.housing_contents_container_column .column_textArea {
  width: 100%;
  height: auto;
}
.housing_contents_container_column .column_textArea_title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}
@media (min-width: 920px) {
  .housing_contents_container_column .column_textArea_title {
    font-size: 1.25rem;
  }
}
.housing_contents_container_column .column_textArea p {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
}
.housing_contents_container_modal {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
@media (min-width: 920px) {
  .housing_contents_container_modal {
    margin-top: 60px;
  }
}
.housing_contents_container_modal_moist {
  margin-top: 60px;
}
@media (min-width: 920px) {
  .housing_contents_container_modal_moist {
    margin-top: 97px;
  }
}
.housing_contents_container_modal .modal_btn {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  height: auto;
  max-width: 400px;
  border: 1px solid #DCDCDC;
  border-radius: 4px;
  padding: 28px 20px;
  position: relative;
  background-color: #fff;
  transition: all 0.3s ease-out;
}
@media (min-width: 920px) {
  .housing_contents_container_modal .modal_btn {
    gap: 42px;
  }
}
.housing_contents_container_modal .modal_btn .modal_text {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  line-height: 1;
  transition: all 0.3s ease-out;
  text-align: left;
  color: #2D3132;
}
.housing_contents_container_modal .modal_btn .modal_text_en {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  color: #2D3132;
}
@media (min-width: 920px) {
  .housing_contents_container_modal .modal_btn .modal_text_en {
    font-size: 1.75rem;
  }
}
.housing_contents_container_modal .modal_btn .modal_text_ja {
  color: #2D3132;
  font-size: 0.9375rem;
  font-weight: 700;
}
.housing_contents_container_modal .modal_btn .icon_wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 16px;
}
.housing_contents_container_modal .modal_btn .icon_wrap .icon_plus {
  position: relative;
  contain: paint;
  display: inline-block;
}
.housing_contents_container_modal .modal_btn .icon_wrap .icon_plus::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/common/plus.svg);
  mask-image: url(../img/common/plus.svg);
  display: block;
  width: 16px;
  height: 16px;
  background: #2D3132;
  transition: translate 0.2s ease-out;
}
@media (min-width: 920px) {
  .housing_contents_container_modal .modal_btn:hover {
    background-color: #D3232E;
    border-color: #D3232E;
  }
}
@media (min-width: 920px) {
  .housing_contents_container_modal .modal_btn:hover .modal_text_en {
    color: #ffffff;
  }
}
@media (min-width: 920px) {
  .housing_contents_container_modal .modal_btn:hover .modal_text_ja {
    color: #ffffff;
  }
}
@media (min-width: 920px) {
  .housing_contents_container_modal .modal_btn:hover .icon_plus::before {
    background: #ffffff;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 20;
}
.modal::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: -0.2em;
}
@media (min-width: 920px) {
  .modal::before {
    height: 100%;
  }
}
.modal.is-on {
  opacity: 1;
  visibility: visible;
}
.modal_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 600px;
  background-color: #ffffff;
  border-radius: 4px;
}
@media (min-width: 920px) {
  .modal_container {
    width: 800px;
    height: 700px;
  }
}
.modal_close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 10px;
  right: 8px;
  width: 60px;
  height: 16px;
  color: #2D3132;
  cursor: pointer;
  z-index: 30;
}
@media (min-width: 920px) {
  .modal_close {
    top: 16px;
    right: 16px;
  }
}
.modal_close .icon_close {
  width: 60px;
  height: 1px;
  background-color: #2D3132;
  transform-origin: center center;
  rotate: 15deg;
  position: relative;
}
.modal_close .icon_close::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 1px;
  background: inherit;
  border-radius: inherit;
  transform-origin: center center;
  rotate: 150deg;
}
.modal_scroll {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 600px;
  padding: 60px 0;
  border-radius: 4px;
}
@media (min-width: 920px) {
  .modal_scroll {
    padding: 60px 0 80px;
    height: 700px;
  }
}
.modal_scroll_content {
  position: relative;
  width: 100%;
  height: 480px;
  overflow-y: scroll;
}
@media (min-width: 920px) {
  .modal_scroll_content {
    height: 560px;
  }
}
.modal_content {
  width: 100%;
  height: 600px;
  text-align: left;
  padding: 0 20px;
}
@media (min-width: 920px) {
  .modal_content {
    height: 700px;
    padding: 0 60px;
  }
}
.modal_content_title {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .modal_content_title {
    margin-bottom: 60px;
  }
}
.modal_content_title_en {
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0.2em;
}
@media (min-width: 920px) {
  .modal_content_title_en {
    font-size: 1.75rem;
  }
}
.modal_content_title_ja {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
}
.modal_content_catch {
  width: 100%;
  height: auto;
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 60px;
}
@media (min-width: 920px) {
  .modal_content_catch {
    font-size: 3rem;
    margin-bottom: 80px;
    text-align: left;
  }
}
.modal_content_block {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 50px;
}
.modal_content_block_title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
}
@media (min-width: 920px) {
  .modal_content_block_title {
    font-size: 1.125rem;
    margin-bottom: 32px;
  }
}
.modal_content_block p {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
}

.health_contents_title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  position: absolute;
  top: 0;
  left: 0;
}
.health_contents_explain {
  width: 100%;
  height: auto;
  max-width: 500px;
  background-color: #ffffff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}
@media (min-width: 920px) {
  .health_contents_explain {
    max-width: 100%;
    flex: 0 1 222px;
  }
}
.health_contents_explain span {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.75;
  color: #D3232E;
  text-align: center;
}
.health_contents_row {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (min-width: 920px) {
  .health_contents_row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
}
.health_contents_row_img {
  width: 100%;
  height: auto;
  max-width: 500px;
  padding-top: 30px;
}
@media (min-width: 920px) {
  .health_contents_row_img {
    padding-top: 0;
    max-width: 100%;
    flex: 1 1 0%;
  }
}
.health_contents_row_img img {
  width: 100%;
  height: 100%;
}
.health_contents_notes {
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  display: block;
  margin-top: 16px;
}
@media (min-width: 920px) {
  .health_contents_notes {
    margin-top: 0;
  }
}
.health_contents_point {
  width: 100%;
  height: auto;
  background-color: #f5f5f5;
  border-radius: 4px;
  padding: 24px 20px;
}
@media (min-width: 920px) {
  .health_contents_point {
    padding: 60px 40px;
  }
}
.health_contents_point_title {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #D3232E;
  padding-bottom: 0.5em;
  border-bottom: 4px solid #D3232E;
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .health_contents_point_title {
    font-size: 1.75rem;
  }
}
.health_contents_point_catch {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 28px;
}
@media (min-width: 920px) {
  .health_contents_point_catch {
    font-size: 1.125rem;
    margin-bottom: 32px;
  }
}
.health_contents_point p {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
}
@media (min-width: 920px) {
  .health_contents_point p {
    line-height: 2;
  }
}
.health_contents_point_row {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}
@media (min-width: 920px) {
  .health_contents_point_row {
    width: -moz-fit-content;
    width: fit-content;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
}
.health_contents_point_row_img {
  width: 100%;
  height: auto;
  max-width: 302px;
}
.health_contents_point_row_img img {
  width: 100%;
  height: 100%;
}
.health_contents_point_message {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 40px;
}
.health_contents_point_message span {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75;
  color: #D3232E;
}
@media (min-width: 920px) {
  .health_contents_point_message span {
    font-size: 1.75rem;
  }
}

.performance_contents_catch {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}
@media (min-width: 920px) {
  .performance_contents_catch {
    margin-bottom: 20px;
  }
}
.performance_contents_chart {
  width: 100%;
  height: auto;
  max-width: 613px;
}
.performance_contents_chart img {
  width: 100%;
  height: auto;
}
.performance_contents_img {
  width: 100%;
  height: auto;
}
.performance_contents_img img {
  width: 100%;
  height: auto;
}
.performance_contents_point {
  width: 100%;
  height: auto;
  background-color: #f5f5f5;
  border-radius: 4px;
  padding: 24px;
  position: relative;
  margin-bottom: 24px;
}
@media (min-width: 920px) {
  .performance_contents_point {
    padding: 40px;
    margin-bottom: 40px;
  }
}
.performance_contents_point_title {
  width: 100%;
  height: auto;
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  color: #D3232E;
  padding-bottom: 0.3em;
  border-bottom: 1px solid #2D3132;
  margin-bottom: 20px;
}
@media (min-width: 920px) {
  .performance_contents_point_title {
    font-size: 1.125rem;
    margin-bottom: 26px;
  }
}
.performance_contents_point_img {
  width: 100%;
  height: auto;
  max-width: 454px;
  border-radius: 4px;
  background-color: #fff;
}
.performance_contents_point_img img {
  width: 100%;
  height: 100%;
}
.performance_contents_point .performance_contents_catch {
  margin-bottom: 12px;
}
.performance_contents_point_detail {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 9999px;
  background-color: #D3232E;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -60px;
  right: 0;
}
@media (min-width: 600px) {
  .performance_contents_point_detail {
    width: 128px;
    height: 128px;
    bottom: 30px;
    right: 55px;
  }
}
.performance_contents_point_detail p {
  position: relative;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 600px) {
  .performance_contents_point_detail p {
    font-size: 0.9375rem;
  }
}
.performance_contents_point_detail p span {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}
@media (min-width: 600px) {
  .performance_contents_point_detail p span {
    font-size: 1.75rem;
  }
}
.performance_contents_point_detail p::before {
  content: "";
  display: block;
  position: absolute;
  top: -28px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%) rotate(90deg);
  border: 8px solid transparent;
  border-right: 15px solid #D3232E;
  border-left-width: 0;
}
@media (min-width: 600px) {
  .performance_contents_point_detail p::before {
    border: 10px solid transparent;
    border-right: 20px solid #D3232E;
    transform: translateY(-50%) rotate(0);
    top: 50%;
    left: -43px;
  }
}
.performance_contents_explain {
  width: 100%;
  height: auto;
  max-width: 287px;
  background-color: #ffffff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
  margin: 16px auto 0;
}
@media (min-width: 920px) {
  .performance_contents_explain {
    align-items: center;
    position: absolute;
    right: 100px;
    bottom: 15px;
    margin: 0;
  }
}
.performance_contents_explain span {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.75;
  color: #D3232E;
  text-align: center;
}
.performance_contents .modal_content_block:last-of-type {
  margin-bottom: 0;
  padding-bottom: 8px;
}
@media (min-width: 920px) {
  .performance_contents .modal_content_block:last-of-type {
    padding-bottom: 0;
  }
}

.risk_contents_catch {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}
@media (min-width: 920px) {
  .risk_contents_catch {
    margin-bottom: 20px;
  }
}
.risk_contents_chart {
  width: 100%;
  height: auto;
  margin-bottom: 12px;
}
.risk_contents_chart img {
  width: 100%;
  height: 100%;
}
.risk_contents_text {
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.5;
}
.risk_contents_notes {
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1.5;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
}
.risk_contents_explain {
  width: 100%;
  height: auto;
  max-width: 535px;
  background-color: #ffffff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
  margin: 24px auto 0;
}
.risk_contents_explain span {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.75;
  color: #D3232E;
  text-align: center;
}
.risk_contents_row {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media (min-width: 920px) {
  .risk_contents_row {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .risk_contents_row {
    align-items: center;
  }
}
.risk_contents_row_textArea {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 920px) {
  .risk_contents_row_textArea {
    gap: 40px;
  }
}
.risk_contents_row_textArea p {
  display: block;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
}
@media (min-width: 920px) {
  .risk_contents_row_textArea p {
    line-height: 2;
    letter-spacing: -0.01em;
  }
}
.risk_contents_row_textArea .risk_contents_explain {
  margin-top: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .risk_contents_row_textArea .risk_contents_explain {
    margin: 0 auto 16px;
  }
}
.risk_contents_row_img {
  width: 100%;
  height: auto;
  max-width: 184px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .risk_contents_row_img {
    margin: 0;
  }
}
.risk_contents_row_img img {
  width: 100%;
  height: 100%;
}

.assets_contents_chart {
  width: 100%;
  height: auto;
}
.assets_contents_chart img {
  width: 100%;
  height: 100%;
}
.assets_contents_explain {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  background-color: #ffffff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
  margin: 24px auto 0;
}
.assets_contents_explain span {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.75;
  color: #D3232E;
  text-align: center;
}
@media (min-width: 920px) {
  .assets_contents_explain span {
    font-size: 0.9375rem;
  }
}
.assets_contents_point {
  width: 100%;
  height: auto;
  background-color: #f5f5f5;
  border-radius: 4px;
  padding: 30px 20px;
  position: relative;
}
@media (min-width: 920px) {
  .assets_contents_point {
    padding: 60px 40px;
  }
}
.assets_contents_point_title {
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #D3232E;
  padding-bottom: 0.3em;
  border-bottom: 4px solid #D3232E;
  margin-bottom: 24px;
}
@media (min-width: 920px) {
  .assets_contents_point_title {
    font-size: 1.625rem;
    margin-bottom: 40px;
    flex-direction: row;
    align-items: baseline;
  }
}
.assets_contents_point_title small {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
  color: #D3232E;
}
.assets_contents_point_textArea {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 920px) {
  .assets_contents_point_textArea {
    gap: 32px;
  }
}
.assets_contents_point_textArea_catch {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 920px) {
  .assets_contents_point_textArea_catch {
    font-size: 1.125rem;
  }
}
.assets_contents_point_textArea p {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
}
@media (min-width: 920px) {
  .assets_contents_point_textArea p {
    line-height: 2;
  }
}
.assets_contents_point_textArea .red {
  font-weight: 700;
  color: #D3232E;
}

.miraie_detail {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (min-width: 920px) {
  .miraie_detail {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: normal;
    gap: 27.6px;
  }
}
.miraie_detail_textArea {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 920px) {
  .miraie_detail_textArea {
    max-width: 405px;
    justify-content: space-between;
  }
}
.miraie_detail_textArea_title {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  line-height: 1;
  gap: 12px;
}
@media (min-width: 920px) {
  .miraie_detail_textArea_title {
    margin-bottom: 16px;
    gap: 16px;
  }
}
.miraie_detail_textArea_title_small {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.2em;
}
.miraie_detail_textArea_title_large {
  font-size: 1.25rem;
  font-weight: 700;
}
@media (min-width: 920px) {
  .miraie_detail_textArea_title_large {
    font-size: 1.5rem;
  }
}
.miraie_detail_textArea_logo {
  width: 100%;
  height: auto;
  max-width: 285px;
  margin: 0 auto 24px;
}
@media (min-width: 920px) {
  .miraie_detail_textArea_logo {
    margin: 0 auto 36px;
  }
}
.miraie_detail_textArea_logo img {
  width: 100%;
  height: 100%;
}
.miraie_detail_textArea p {
  display: block;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media (min-width: 920px) {
  .miraie_detail_textArea p {
    font-size: 1.125rem;
    margin-bottom: 24px;
  }
}
.miraie_detail_textArea_point {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2D3132;
  padding: 30px 0 20px;
  position: relative;
}
@media (min-width: 920px) {
  .miraie_detail_textArea_point {
    padding: 35px 0 26px;
  }
}
.miraie_detail_textArea_point::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border: 15px solid transparent;
  border-top: 15px solid #ffffff;
  border-bottom-width: 0;
}
.miraie_detail_textArea_point p {
  color: #ffffff;
  margin: 0;
}
.miraie_detail_img {
  width: 100%;
  height: auto;
  max-width: 299px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .miraie_detail_img {
    margin: 0;
  }
}
.miraie_detail_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.guidance_detail {
  width: 100%;
  height: auto;
}
.guidance_detail_sub {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #cccccc;
}
@media (min-width: 920px) {
  .guidance_detail_sub {
    margin-top: 40px;
    padding-top: 40px;
  }
}
.guidance_detail_sub p {
  margin-bottom: 16px;
}
@media (min-width: 920px) {
  .guidance_detail_sub p {
    margin-bottom: 24px;
  }
}
.guidance_detail_title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}
@media (min-width: 920px) {
  .guidance_detail_title {
    font-size: 1.25rem;
  }
}
.guidance_detail p {
  display: block;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
}
.guidance_detail_img {
  width: 100%;
  height: auto;
}
.guidance_detail_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.guidance_detail_img-craftsman {
  margin: 0 0 8px;
}
@media (min-width: 920px) {
  .guidance_detail_img-craftsman {
    margin: 0 0 12px;
  }
}
.guidance_detail .housing_contents_container_thumb {
  margin-bottom: 16px;
}
@media (min-width: 920px) {
  .guidance_detail .housing_contents_container_thumb {
    margin-bottom: 24px;
  }
}

.solar_detail {
  width: 100%;
  height: auto;
}
.solar_detail .housing_contents_container_thumb {
  margin: 16px 0 0;
}
@media (min-width: 920px) {
  .solar_detail .housing_contents_container_thumb {
    margin: 28px 0 0;
  }
}
.solar_detail_sub {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #cccccc;
}
@media (min-width: 920px) {
  .solar_detail_sub {
    margin-top: 40px;
    padding-top: 40px;
  }
}
.solar_detail_sub p {
  margin-bottom: 16px;
}
@media (min-width: 920px) {
  .solar_detail_sub p {
    margin-bottom: 24px;
  }
}

.solar_info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 920px) {
  .solar_info {
    gap: 20px;
  }
}
@media (min-width: 920px) {
  .solar_info_item {
    padding-bottom: 24px;
  }
}
.solar_info_catch {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
}
.solar_info_img {
  width: 100%;
  height: auto;
}
.solar_info_img img {
  width: 100%;
  height: 100%;
}
.solar_info_notes {
  font-size: 0.75rem;
  line-height: 1.15;
  text-align: right;
  display: block;
}
.solar_info_notes a {
  text-decoration: underline;
}

.cost_detail {
  width: 100%;
  height: auto;
  margin-bottom: 24px;
}
@media (min-width: 920px) {
  .cost_detail {
    margin-bottom: 40px;
  }
}
.cost_detail_title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 0.3em;
  border-bottom: 1px solid #2D3132;
  margin-bottom: 16px;
}
@media (min-width: 920px) {
  .cost_detail_title {
    font-size: 1.25rem;
  }
}
.cost_detail p {
  display: block;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 20px;
}
@media (min-width: 920px) {
  .cost_detail p {
    margin-bottom: 24px;
  }
}
.cost_detail_img {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 500px;
  border: 1px solid #cccccc;
  padding: 20px;
}
@media (min-width: 920px) {
  .cost_detail_img {
    max-width: 100%;
    padding: 36px;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .cost_detail_img {
    padding: 36px 0;
  }
}
.cost_detail_img img {
  width: 100%;
  height: 100%;
}
@media (min-width: 920px) {
  .cost_detail_img img {
    max-width: 603px;
  }
}
.cost_detail_notes {
  margin-top: 12px;
}
@media (min-width: 920px) {
  .cost_detail_notes {
    margin-top: 16px;
  }
}
.cost_detail_notes p {
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}
.cost_detail:last-of-type {
  margin-bottom: 0;
}
.cost_detail:last-of-type .cost_detail_img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  max-width: 500px;
  border: 0;
  padding: 0;
}
@media (min-width: 920px) {
  .cost_detail:last-of-type .cost_detail_img {
    max-width: 100%;
  }
}

.guarantee_detail {
  width: 100%;
  height: auto;
}
.guarantee_detail_last {
  width: 100%;
  height: auto;
  padding-top: 24px;
  border-top: 1px solid #cccccc;
  margin-bottom: 0;
  margin-top: 24px;
}
@media (min-width: 920px) {
  .guarantee_detail_last {
    padding-top: 40px;
    margin-top: 40px;
  }
}
.guarantee_detail_last .guarantee_detail_img {
  margin-bottom: 0;
}
.guarantee_detail_title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}
@media (min-width: 920px) {
  .guarantee_detail_title {
    font-size: 1.25rem;
  }
}
.guarantee_detail p {
  display: block;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 20px;
}
@media (min-width: 920px) {
  .guarantee_detail p {
    margin-bottom: 24px;
  }
}
.guarantee_detail_img {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  max-width: 500px;
  border: 1px solid #cccccc;
  padding: 20px;
}
@media (min-width: 920px) {
  .guarantee_detail_img {
    max-width: 100%;
    padding: 36px;
    margin-bottom: 40px;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .guarantee_detail_img {
    padding: 36px 0;
  }
}
.guarantee_detail_img img {
  width: 100%;
  height: 100%;
}
@media (min-width: 920px) {
  .guarantee_detail_img img {
    max-width: 603px;
  }
}
.guarantee_detail_img-last {
  margin-top: 24px;
}
@media (min-width: 920px) {
  .guarantee_detail_img-last {
    margin-top: 40px;
  }
}
.guarantee_detail_figure {
  width: 100%;
  height: auto;
  margin: 0 auto;
  max-width: 500px;
}
@media (min-width: 920px) {
  .guarantee_detail_figure {
    max-width: 100%;
  }
}
.guarantee_detail_figure img {
  width: 100%;
  height: 100%;
}

.voice_row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 64px;
  position: relative;
  background-color: #F2F2F2;
  padding: 49px 20px 32px;
  border-radius: 8px;
  margin: 40px 0 0;
}
@media (min-width: 920px) {
  .voice_row {
    flex-direction: row;
    align-items: center;
    gap: 40px;
    padding: 49px 40px 40px;
    margin: 46px 0 0;
  }
}
.voice_row::after {
  content: "";
  position: absolute;
  background-color: #DCDCDC;
  width: 100%;
  height: 1px;
  top: 54%;
  left: 0;
  right: 0;
  translate: 0 -50%;
}
@media (min-width: 920px) {
  .voice_row::after {
    width: 1px;
    height: 170px;
    top: 32px;
    left: 50%;
    right: auto;
    translate: -50% 0;
  }
}
.voice_row_head {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #282828;
  padding: 12px 16px;
  border-radius: 500px;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
}
.voice_row_head p {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1;
  text-align: center;
  color: #ffffff;
  margin: 0;
}
.voice_row_cell {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 920px) {
  .voice_row_cell {
    gap: 24px;
  }
}
.voice_row_cell p {
  margin: 0;
}
.voice_row_catch {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}
.voice_row_catch span {
  font-size: 0.9375rem;
}
.voice_row_imp {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.voice_row_imp_head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.voice_row_imp_head h5 {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0;
  flex: 1 1 0;
}
.voice_row_imp_icon {
  width: 16px;
  height: 16px;
  flex: 0 1 16px;
}
.voice_row_imp_tri {
  width: 30px;
  height: 14px;
  position: relative;
  margin: -6px 0 0;
}
.voice_row_imp_tri::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  translate: -50% 0;
  border: 16px solid transparent;
  border-top: 14px solid #D3232E;
  border-bottom-width: 0;
}
.voice_row_imp p {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}
.voice_row-second {
  padding: 43px 20px 32px;
}
@media (min-width: 920px) {
  .voice_row-second {
    padding: 43px 40px 40px;
    margin: 42px 0 0;
  }
}
.voice_row-second::after {
  top: 52%;
}
@media (min-width: 920px) {
  .voice_row-second::after {
    top: 32px;
    height: 157px;
  }
}
.voice_review {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 40px;
}
@media (min-width: 600px) {
  .voice_review {
    flex-direction: row;
    margin: 0 0 44px;
  }
}
.voice_review_cell {
  max-width: 400px;
}
@media (min-width: 600px) {
  .voice_review_cell {
    width: calc((100% - 20px) / 2);
    max-width: 100%;
  }
}
.voice_review_cell img {
  width: 100%;
  height: 100%;
}
.voice_review_cell:last-child {
  position: relative;
}
.voice_review_cell:last-child::after {
  content: "※2024年度平均";
  position: absolute;
  font-size: 0.625rem;
  line-height: 1.2;
  bottom: -20px;
  right: 0;
}
.voice_report_head {
  margin: 0 0 16px;
}
.voice_report_head h5 {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.35;
  margin: 0;
}
.voice_report_head small {
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1;
}
.voice_report_column {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.voice_report_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  background-color: #F2F2F2;
  border-radius: 8px;
}
@media (min-width: 920px) {
  .voice_report_item {
    flex-direction: row;
    justify-content: flex-start;
    gap: 24px;
    padding: 24px 28px;
  }
}
.voice_report_item p {
  line-height: 1.5;
  margin: 0;
  flex: 1 1 0%;
}
.voice_report_user {
  width: 60px;
  height: 60px;
  border-radius: 9999px;
}
@media (min-width: 920px) {
  .voice_report_user {
    width: 80px;
    height: 80px;
    flex: 0 1 80px;
  }
}

.value_detail {
  width: 100%;
  height: auto;
  margin-bottom: 24px;
}
@media (min-width: 920px) {
  .value_detail {
    margin-bottom: 40px;
  }
}
.value_detail:last-of-type {
  margin-bottom: 0;
}
.value_detail_img {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 500px;
  border: 1px solid #cccccc;
  padding: 20px;
}
@media (min-width: 920px) {
  .value_detail_img {
    max-width: 100%;
    padding: 36px;
  }
}
.value_detail_img img {
  width: 100%;
  height: 100%;
}
@media (min-width: 920px) {
  .value_detail_img img {
    max-width: 603px;
  }
}
.value_detail_title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
  position: relative;
}
@media (min-width: 920px) {
  .value_detail_title {
    font-size: 1.25rem;
  }
}
.value_detail_row {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 920px) {
  .value_detail_row {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 27.6px;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .value_detail_row {
    align-items: normal;
  }
}
.value_detail_row_textArea {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.value_detail_row_textArea p {
  display: block;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 16px;
}
.value_detail_row_textArea small {
  display: block;
  position: relative;
  padding-left: 16px;
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
.value_detail_row_textArea small:last-of-type {
  margin-bottom: 0;
}
.value_detail_row_textArea small::before {
  content: "※";
  position: absolute;
  font-size: 0.75rem;
  font-weight: 400;
  top: 0;
  left: 0;
}
.value_detail_row_img {
  width: 100%;
  height: auto;
  max-width: 299px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .value_detail_row_img {
    margin: 0;
  }
}
.value_detail_row_img img {
  width: 100%;
  height: 100%;
}

.housing_lineup {
  width: 100%;
  height: auto;
  background: #f5f5f5;
  box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, 0.1490196078) inset;
  padding: 80px 0;
}
@media (min-width: 920px) {
  .housing_lineup {
    padding: 120px 0;
  }
}
.housing_lineup_title {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .housing_lineup_title {
    margin-bottom: 60px;
  }
}
.housing_lineup_title_en {
  font-size: 2.25rem;
  font-weight: 500;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  line-height: 1;
  margin-bottom: 0.3em;
}
@media (min-width: 920px) {
  .housing_lineup_title_en {
    font-size: 3rem;
  }
}
.housing_lineup_title_ja {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
}
.housing_lineup_announce {
  margin-bottom: 40px;
  text-align: center;
}
.housing_lineup_announce p {
  font-size: 1rem;
  font-weight: 700;
}
@media (min-width: 920px) {
  .housing_lineup_announce p {
    font-size: 1.125rem;
  }
}
.housing_lineup_list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 12px;
  justify-content: center;
}
@media (min-width: 920px) {
  .housing_lineup_list {
    gap: 40px 0;
  }
}
.housing_lineup_list_item {
  flex: 0 0 calc(50% - 6px);
  text-align: center;
}
@media (min-width: 920px) {
  .housing_lineup_list_item {
    flex-basis: 25%;
  }
}
.housing_lineup_list_item:nth-child(1) .housing_lineup_list_link .housing_lineup_list_link_title img, .housing_lineup_list_item:nth-child(2) .housing_lineup_list_link .housing_lineup_list_link_title img {
  width: auto;
  height: auto;
  max-height: 100%;
  -o-object-fit: unset;
     object-fit: unset;
}
.housing_lineup_list_item:nth-child(3) .housing_lineup_list_link .housing_lineup_list_link_title img {
  mix-blend-mode: darken;
}
.housing_lineup_list_link {
  display: block;
}
.housing_lineup_list_link_img {
  margin-bottom: 24px;
  text-align: center;
}
.housing_lineup_list_link_title {
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4px;
}
@media (min-width: 920px) {
  .housing_lineup_list_link_title {
    height: 30px;
  }
}
.housing_lineup_list_link_title img {
  width: 100%;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.housing_lineup_list_link_read {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
}

.fixed {
  position: relative;
  z-index: 0;
}
.fixed_bg {
  width: 100%;
  height: 100vh;
  z-index: -1;
  position: absolute;
}
.fixed_bg img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.housing_message {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 0;
  clip-path: inset(0);
}
@media (min-width: 920px) {
  .housing_message {
    background-image: -webkit-image-set(url(../img/services/housing/message_bg.jpg) 1x, url(../img/services/housing/message_bg@2x.jpg) 2x);
    background-image: image-set(url(../img/services/housing/message_bg.jpg) 1x, url(../img/services/housing/message_bg@2x.jpg) 2x);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
}
.housing_message::before {
  content: "";
  display: block;
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: -webkit-image-set(url(../img/services/housing/message_bg_mobile.jpg) 1x, url(../img/services/housing/message_bg_mobile@2x.jpg) 2x);
  background-image: image-set(url(../img/services/housing/message_bg_mobile.jpg) 1x, url(../img/services/housing/message_bg_mobile@2x.jpg) 2x);
  background-size: cover;
}
@media (min-width: 920px) {
  .housing_message::before {
    content: none;
  }
}
.housing_message_inner {
  padding: 26vh 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.housing_message_title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  display: block;
  text-align: center;
  margin-bottom: 60px;
}
@media (min-width: 920px) {
  .housing_message_title {
    font-size: 2.25rem;
    margin-bottom: 80px;
  }
}
.housing_message_text {
  width: 100%;
  height: auto;
  max-width: 473px;
}
.housing_message_text p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: #ffffff;
}
@media (min-width: 920px) {
  .housing_message_text p {
    font-size: 1.125rem;
    line-height: 2;
  }
}

.housing_concept {
  margin-bottom: 120px;
}
@media (min-width: 920px) {
  .housing_concept {
    margin-bottom: 240px;
  }
}
.housing_concept_inner {
  padding: 50vh 20px;
}
@media (min-width: 920px) {
  .housing_concept_inner {
    padding: 0 20px;
  }
}
.housing_concept_row {
  max-width: 1038px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 920px) {
  .housing_concept_row {
    flex-direction: row;
    justify-content: space-between;
  }
}
.housing_concept_side {
  width: 100%;
  height: auto;
}
@media (min-width: 920px) {
  .housing_concept_side {
    flex: 0 0 191px;
    padding: 50vh 0;
  }
}
.housing_concept_catch {
  position: sticky;
  top: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}
@media (min-width: 920px) {
  .housing_concept_catch {
    justify-content: flex-start;
    margin-bottom: 0;
  }
}
.housing_concept_catch_en {
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  padding-bottom: 0.3em;
}
@media (min-width: 920px) {
  .housing_concept_catch_en {
    font-size: 3rem;
  }
}
.housing_concept_catch_ja {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
.housing_concept_main {
  width: 100%;
  height: auto;
}
@media (min-width: 920px) {
  .housing_concept_main {
    max-width: 573px;
    padding: 50vh 0;
  }
}
.housing_concept_title {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 300px;
}
@media (min-width: 920px) {
  .housing_concept_title {
    gap: 36px;
    margin-bottom: 410px;
  }
}
.housing_concept_title_ja {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 920px) {
  .housing_concept_title_ja {
    font-size: 3rem;
  }
}
.housing_concept_title_en {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  text-align: center;
}
@media (min-width: 920px) {
  .housing_concept_title_en {
    font-size: 1.5rem;
  }
}
.housing_concept_image {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 200px;
}
.housing_concept_image_map {
  width: 100%;
  height: auto;
  max-width: 473px;
  margin: 0 auto;
}
.housing_concept_image_map img {
  width: 100%;
  height: 100%;
}
.housing_concept_image p {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.75;
  text-align: center;
}
@media (min-width: 920px) {
  .housing_concept_image p {
    font-size: 1.125rem;
  }
}
.housing_concept_textArea_sentence {
  display: block;
  padding-left: 42px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  position: relative;
  margin-bottom: 36px;
}
@media (min-width: 920px) {
  .housing_concept_textArea_sentence {
    padding-left: 52px;
    font-size: 1.125rem;
    margin-bottom: 48px;
  }
}
.housing_concept_textArea_sentence::before {
  content: "";
  position: absolute;
  background-color: #ffffff;
  width: 30px;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (min-width: 920px) {
  .housing_concept_textArea_sentence::before {
    width: 40px;
  }
}
.housing_concept_textArea_catch {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 60px;
}
@media (min-width: 920px) {
  .housing_concept_textArea_catch {
    gap: 32px;
    margin-bottom: 80px;
  }
}
.housing_concept_textArea_catch .catch_text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}
@media (min-width: 920px) {
  .housing_concept_textArea_catch .catch_text {
    font-size: 1.75rem;
  }
}
.housing_concept_textArea_catch .catch_text_last {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 8px;
}
@media (min-width: 920px) {
  .housing_concept_textArea_catch .catch_text_last {
    flex-direction: row;
    gap: 0;
  }
}
.housing_concept_textArea_catch .catch_text_last small {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}
.housing_concept_textArea_text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #ffffff;
  text-align: justify;
}
@media (min-width: 920px) {
  .housing_concept_textArea_text {
    font-size: 1.125rem;
  }
}

.about_lineup {
  background-color: rgb(245, 245, 245);
  box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, 0.15) inset;
  padding: 80px 0;
}
@media (min-width: 920px) {
  .about_lineup {
    padding: 112px 0 152px 0;
    margin-top: 299px;
  }
}
.about_lineup .pc_nav_mega_ttl.large {
  font-weight: 700;
  line-height: 1.5;
  font-size: 1.125rem;
}
@media (min-width: 920px) {
  .about_lineup .pc_nav_mega_ttl.large {
    font-size: 1.25rem;
    margin-bottom: 65px;
  }
}
.about_lineup .pc_nav_mega_inner__block .pc_nav_mega_inner__block__logo_group {
  display: flex;
  margin: 0 0 9px 0;
}
.about_lineup .lineup_flex {
  padding-bottom: 0;
}
@media (min-width: 1200px) {
  .about_lineup .lineup_flex {
    padding-bottom: 23px;
  }
}
.about_lineup_body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
}
@media (min-width: 1200px) {
  .about_lineup_body {
    flex-direction: row;
    gap: 0;
  }
}
.about_lineup_body_title {
  text-align: center;
}
@media (min-width: 920px) {
  .about_lineup_body_title {
    margin-bottom: 46px;
  }
}
.about_lineup_body_title_en {
  display: block;
  font-weight: 500;
  line-height: 1.15;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-size: 2rem;
}
@media (min-width: 920px) {
  .about_lineup_body_title_en {
    font-size: 3rem;
  }
}
.about_lineup_body_title_ja {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
}
@media (min-width: 920px) {
  .about_lineup_body_title_ja {
    font-size: 0.9375rem;
  }
}
.about_lineup .housing_lineup_list {
  display: flex;
  justify-content: center;
  gap: 20px 12px;
  height: -moz-fit-content;
  height: fit-content;
}
.about_lineup .housing_lineup_list_item {
  flex-basis: 100%;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
@media (min-width: 920px) {
  .about_lineup .housing_lineup_list_item {
    max-width: 140px;
  }
}
.about_lineup .housing_lineup_list_link {
  background-color: transparent;
  transition: background-color 0.3s ease;
}
.about_lineup .housing_lineup_list_link:hover {
  background-color: rgb(255, 255, 255);
}
.about_lineup .housing_lineup_list_link .housing_lineup_list_link_title img {
  height: 20px !important;
}
.about_lineup .left {
  padding: 0;
}
@media (min-width: 1200px) {
  .about_lineup .left {
    padding-right: 61px;
    padding-bottom: 23px;
  }
}
.about_lineup .center {
  padding: 0;
}
@media (min-width: 1200px) {
  .about_lineup .center {
    padding-left: 45px;
    padding-right: 45px;
    padding-bottom: 23px;
    border-left: 1px solid rgb(220, 220, 220);
    border-right: 1px solid rgb(220, 220, 220);
  }
}
.about_lineup .right {
  padding: 0;
}
@media (min-width: 1200px) {
  .about_lineup .right {
    padding-left: 45px;
    padding-bottom: 23px;
  }
}

.estate_container_title_en {
  font-size: 2.25rem;
  font-weight: 500;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  line-height: 1;
  margin-bottom: 0.2em;
}
@media (min-width: 920px) {
  .estate_container_title_en {
    font-size: 3rem;
  }
}
.estate_container_title_ja {
  font-weight: 700;
  font-size: 0.8125rem;
}
@media (min-width: 920px) {
  .estate_container_title_ja {
    font-size: 0.9375rem;
  }
}
.estate_container_about {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 0 0 60px;
}
@media (min-width: 920px) {
  .estate_container_about {
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 auto 160px;
    gap: 98px;
  }
}
@media (min-width: 920px) {
  .estate_container_about_thumb {
    width: 56.79%;
  }
}
.estate_container_about_thumb img {
  width: 100%;
  height: 100%;
}
.estate_container_about_textArea {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 920px) {
  .estate_container_about_textArea {
    width: 34.91%;
    gap: 60px;
  }
}
.estate_container_about_textArea_title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .estate_container_about_textArea_title {
    font-size: 1.25rem;
  }
}
.estate_container_about_textArea_inner {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 920px) {
  .estate_container_about_textArea_inner {
    gap: 28px;
  }
}
.estate_container_about_textArea_inner p {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
  display: block;
  text-align: justify;
  margin: 0;
}
@media (min-width: 920px) {
  .estate_container_about_textArea_inner p {
    line-height: 2;
  }
}
.estate_container_buy, .estate_container_sell {
  padding: 100px 0 0;
}
@media (min-width: 920px) {
  .estate_container_buy, .estate_container_sell {
    padding: 160px 0 0;
  }
}
.estate_container_buy_title {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
}
@media (min-width: 920px) {
  .estate_container_buy_title {
    margin: 0 auto 80px;
  }
}
.estate_container_buy_title_icon {
  margin-bottom: 0.6em;
  position: relative;
}
.estate_container_buy_title_icon::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/common/estate_buy.svg);
  mask-image: url(../img/common/estate_buy.svg);
  display: block;
  width: 48px;
  height: 48px;
  background: #2d3132;
}
@media (min-width: 920px) {
  .estate_container_buy_title_icon::before {
    width: 54px;
    height: 54px;
  }
}
.estate_container_buy_title_ja {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 920px) {
  .estate_container_buy_title_ja {
    font-size: 3rem;
  }
}
.estate_container_buy_title_en {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 920px) {
  .estate_container_buy_title_en {
    font-size: 1.125rem;
  }
}
.estate_container_buy_contents {
  overflow: hidden;
  position: relative;
}
.estate_container_buy_contents_head {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 0 auto 40px;
}
@media (min-width: 920px) {
  .estate_container_buy_contents_head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto 60px;
  }
}
.estate_container_buy_contents_head .estate_container_buy_contents_wrap {
  display: none;
}
@media (min-width: 920px) {
  .estate_container_buy_contents_head .estate_container_buy_contents_wrap {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 0;
  }
}
.estate_container_buy_contents_wrap {
  display: flex;
  width: 100%;
  height: auto;
  justify-content: center;
  margin-bottom: 60px;
}
@media (min-width: 920px) {
  .estate_container_buy_contents_wrap {
    display: none;
  }
}
.estate_container_buy_contents_slider {
  margin: 0 auto 60px;
}
@media (min-width: 920px) {
  .estate_container_buy_contents_slider {
    margin: 0 auto 80px;
  }
}
.estate_container_buy_contents_slider .swiper {
  overflow: visible;
}
.estate_container_buy_contents_slider .swiper-slide {
  width: -moz-max-content;
  width: max-content;
}
.estate_container_buy_contents_slider .swiper-controller {
  margin-top: 24px;
  display: flex;
  flex-direction: row-reverse;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 920px) {
  .estate_container_buy_contents_slider .swiper-controller {
    margin-top: 36px;
    gap: 40px;
  }
}
.estate_container_buy_contents_slider_navigation {
  display: flex;
  gap: 8px;
}
@media (min-width: 920px) {
  .estate_container_buy_contents_slider_navigation {
    gap: 16px;
  }
}
.estate_container_buy_contents_slider_btn {
  background: #fff;
  border: 1px solid #DCDCDC;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: opacity 0.3s, background-color 0.3s, border-color 0.3s;
  z-index: 3;
}
@media (max-width: 919px) {
  .estate_container_buy_contents_slider_btn {
    width: 48px;
    height: 48px;
  }
}
.estate_container_buy_contents_slider_btn::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/common/arrow_prev.svg);
  mask-image: url(../img/common/arrow_prev.svg);
  display: block;
  width: 32px;
  height: 32px;
  background: #2D3132;
  transition: background-color 0.3s;
}
@media (max-width: 919px) {
  .estate_container_buy_contents_slider_btn::before {
    width: 24px;
    height: 24px;
  }
}
.estate_container_buy_contents_slider_btn-prev {
  left: 0;
}
.estate_container_buy_contents_slider_btn-next {
  rotate: 180deg;
  right: 0;
}
.estate_container_buy_contents_slider_btn.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.estate_container_buy_contents_slider_btn:hover {
  background: #D3232E;
  border-color: #D3232E;
}
.estate_container_buy_contents_slider_btn:hover::before {
  background: #fff;
}
.estate_container_buy_contents_slider .swiper-pagination-progressbar,
.estate_container_buy_contents_slider .swiper-progressbar {
  width: 100%;
  position: relative;
  height: 4px;
  border-radius: 3px;
  background: #DCDCDC;
  overflow: hidden;
}
.estate_container_buy_contents_slider .swiper-pagination-progressbar .swiper-pagination-progressbar-fill,
.estate_container_buy_contents_slider .swiper-pagination-progressbar .swiper-scrollbar-drag,
.estate_container_buy_contents_slider .swiper-progressbar .swiper-pagination-progressbar-fill,
.estate_container_buy_contents_slider .swiper-progressbar .swiper-scrollbar-drag {
  background: #D3232E;
}
.estate_container_buy_contents_slider .swiper-pagination-progressbar .swiper-scrollbar-drag,
.estate_container_buy_contents_slider .swiper-progressbar .swiper-scrollbar-drag {
  cursor: grab;
}
.estate_container_buy_contents_search {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  padding: 40px 20px;
}
@media (min-width: 920px) {
  .estate_container_buy_contents_search {
    padding: 80px 20px;
  }
}
.estate_container_buy_contents_search_inner {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.estate_container_buy_contents_search_inner .estate_container_title {
  margin: 0 auto 40px;
  text-align: center;
}
@media (min-width: 920px) {
  .estate_container_buy_contents_search_inner .estate_container_title {
    margin: 0 auto 60px;
  }
}
.estate_container_buy_contents_search_inner .estate_container_title_en {
  display: block;
}
.estate_container_buy_contents_search_nav .category_filter select {
  background: transparent;
}
.estate_container_sell_title {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
}
@media (min-width: 920px) {
  .estate_container_sell_title {
    margin: 0 auto 80px;
  }
}
.estate_container_sell_title_icon {
  margin-bottom: 0.6em;
  position: relative;
}
.estate_container_sell_title_icon::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/common/estate_sell.svg);
  mask-image: url(../img/common/estate_sell.svg);
  display: block;
  width: 48px;
  height: 48px;
  background: #2d3132;
}
@media (min-width: 920px) {
  .estate_container_sell_title_icon::before {
    width: 54px;
    height: 54px;
  }
}
.estate_container_sell_title_ja {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 920px) {
  .estate_container_sell_title_ja {
    font-size: 3rem;
  }
}
.estate_container_sell_title_en {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 920px) {
  .estate_container_sell_title_en {
    font-size: 1.125rem;
  }
}
.estate_container_sell_row {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 0 60px;
}
@media (min-width: 920px) {
  .estate_container_sell_row {
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto 160px;
  }
}
.estate_container_sell_list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 920px) {
  .estate_container_sell_list {
    width: 56.79%;
    padding-right: 82px;
  }
}
.estate_container_sell_list_item {
  border-top: 1px solid #dcdcdc;
}
.estate_container_sell_list_item:last-of-type {
  border-bottom: 1px solid #dcdcdc;
}

.estate_nav {
  width: 100%;
  height: auto;
  display: flex;
}
@media (min-width: 920px) {
  .estate_nav {
    margin: 0 auto;
  }
}
.estate_nav_item {
  width: 50%;
}
.estate_nav_item:nth-child(2) {
  border-left: 1px solid #dcdcdc;
}
.estate_nav_link {
  display: flex;
  height: 120px;
  background-color: #f5f5f5;
  transition: background-color 0.3s ease-out;
  border-radius: 8px 0 0 8px;
}
@media (min-width: 920px) {
  .estate_nav_link {
    height: 155px;
  }
}
.estate_nav_link_second {
  display: flex;
  height: 120px;
  background-color: #f5f5f5;
  transition: background-color 0.3s ease-out;
  border-radius: 0 8px 8px 0;
}
@media (min-width: 920px) {
  .estate_nav_link_second {
    height: 155px;
  }
}
.estate_nav_link_contents {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.estate_nav_link_icon {
  margin-bottom: 0.4em;
}
.estate_nav_link_icon::before {
  background: #2d3132;
  transition: background 0.3s ease-out;
}
.estate_nav_link_title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  color: #2d3132;
  margin-bottom: 0.4em;
  transition: all 0.3s ease-out;
  text-align: center;
}
@media (min-width: 920px) {
  .estate_nav_link_title {
    font-size: 1.25rem;
  }
}
.estate_nav_link:hover {
  background-color: #d3232e;
}
.estate_nav_link:hover .estate_nav_link_icon::before {
  background: #fff !important;
}
.estate_nav_link:hover .estate_nav_link_title {
  color: #fff;
}
.estate_nav_link:hover .icon-anchor::before {
  border-top: 1px solid #d3232e;
  border-right: 1px solid #d3232e;
}

.icon-buy::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/common/estate_buy.svg);
  mask-image: url(../img/common/estate_buy.svg);
  display: block;
  width: 24px;
  height: 24px;
  background: #2d3132;
}
@media (min-width: 920px) {
  .icon-buy::before {
    width: 32px;
    height: 32px;
  }
}

.icon-sell::before {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/common/estate_sell.svg);
  mask-image: url(../img/common/estate_sell.svg);
  display: block;
  width: 24px;
  height: 24px;
  background: #2d3132;
}
@media (min-width: 920px) {
  .icon-sell::before {
    width: 32px;
    height: 32px;
  }
}

.icon-anchor {
  display: block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #cccccc;
  border-radius: 9999px;
  position: relative;
  transition: all 0.3s ease-out;
}
@media (min-width: 920px) {
  .icon-anchor {
    width: 24px;
    height: 24px;
  }
}
.icon-anchor::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #2d3132;
  border-right: 1px solid #2d3132;
  transition: all 0.3s ease-out;
  transform: translate(-50%, -70%) rotate(135deg);
}
@media (min-width: 920px) {
  .icon-anchor::before {
    width: 8px;
    height: 8px;
  }
}

.js-details {
  width: 100%;
  height: auto;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.js-details summary.js-summary {
  display: block;
}
.js-details summary.js-summary .summary_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 24px 0;
  font-weight: 500;
  cursor: pointer;
}
@media (min-width: 920px) {
  .js-details summary.js-summary .summary_inner {
    padding: 32px 0;
  }
}
.js-details summary.js-summary .summary_inner .question_content {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
}
.js-details summary.js-summary .summary_inner .question_content_icon {
  width: 32px;
  display: flex;
  justify-content: flex-start;
  font-size: 1.125rem;
  font-weight: 700;
}
@media (min-width: 920px) {
  .js-details summary.js-summary .summary_inner .question_content_icon {
    width: 66px;
    font-size: 1.25rem;
  }
}
.js-details summary.js-summary .summary_inner .question_content_text {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.125rem;
  font-weight: 500;
}
@media (min-width: 920px) {
  .js-details summary.js-summary .summary_inner .question_content_text {
    font-size: 1.25rem;
  }
}
.js-details summary.js-summary .summary_inner .modal_mark {
  display: block;
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.js-details summary.js-summary .summary_inner .modal_mark::before, .js-details summary.js-summary .summary_inner .modal_mark::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 1px;
  background: #2D3132;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  top: 50%;
  transform: translateY(-50%);
}
.js-details summary.js-summary .summary_inner .modal_mark::before {
  rotate: 90deg;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.js-details summary.js-summary .summary_inner .modal_mark::after {
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.js-details summary {
  list-style: none;
}
.js-details summary::-webkit-details-marker {
  display: none;
}
.js-details .content_inner {
  width: 100%;
  height: auto;
  padding: 0 0 24px 48px;
}
@media (min-width: 920px) {
  .js-details .content_inner {
    padding: 0 0 32px 82px;
  }
}
.js-details .content_inner p {
  font-size: 0.9375rem;
  font-weight: 400;
  text-align: justify;
}
.js-details.is-opened .modal_mark::before {
  rotate: 180deg !important;
}

.estate_slider_item {
  display: block;
  width: 250px;
}
@media (min-width: 920px) {
  .estate_slider_item {
    width: 465px;
  }
}
.event_list .estate_slider_item {
  width: 100%;
}
.estate_slider_item_img {
  aspect-ratio: 1/1;
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-bottom: 12px;
  overflow: hidden;
}
@media (min-width: 920px) {
  .estate_slider_item_img {
    height: 348px;
  }
}
.estate_slider_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.3s ease-out;
}
.estate_slider_item_img .new {
  background: #A99663;
  color: #fff;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  line-height: 1;
  padding: 10px 8px;
  border-radius: 3px;
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}
@media (min-width: 920px) {
  .estate_slider_item_img .new {
    font-size: 0.9375rem;
  }
}
.estate_slider_item_img .icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background-color 0.3s, border-color 0.3s;
}
@media (min-width: 920px) {
  .estate_slider_item_img .icon {
    width: 40px;
    height: 40px;
  }
}
.estate_slider_item_img .icon::before, .estate_slider_item_img .icon::after {
  width: 20px;
  height: 20px;
  transition: translate 0.2s ease-out, background-color 0.3s;
}
@media (min-width: 920px) {
  .estate_slider_item_img .icon::before, .estate_slider_item_img .icon::after {
    width: 24px;
    height: 24px;
  }
}
.estate_slider_item:hover .estate_slider_item_img img {
  scale: 1.05;
}
.estate_slider_item:hover .icon {
  background: #D3232E;
  border-color: #D3232E;
}
.estate_slider_item:hover .icon::before, .estate_slider_item:hover .icon::after {
  background-color: #fff;
}
.estate_slider_item_title {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.5;
  transition: color 0.3s;
  margin-bottom: 0.5em;
}
@media (min-width: 920px) {
  .estate_slider_item_title {
    font-size: 1.125rem;
  }
}
.estate_slider_item_area {
  font-size: 0.75rem;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
@media (min-width: 920px) {
  .estate_slider_item_area {
    font-size: 0.9375rem;
  }
}
.estate_slider_item_price {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .estate_slider_item_price {
    font-size: 1.5rem;
  }
}
.estate_slider_item_cate {
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 16px;
}
@media (min-width: 920px) {
  .estate_slider_item_cate {
    font-size: 0.8125rem;
  }
}
.estate_slider_item_cate li {
  display: inline-block;
  border: 1px solid #DCDCDC;
  padding: 10px 8px;
  line-height: 1;
  border-radius: 4px;
}
.estate_slider_item:hover .estate_slider_item_title {
  color: #D3232E;
}

.contact_bnr {
  position: relative;
  width: 100%;
  display: block;
  margin-top: 20px;
  border-radius: 20px;
}
@media (min-width: 600px) {
  .contact_bnr {
    max-width: 1300px;
    margin: 40px auto 0;
  }
}
.contact_bnr_img {
  display: block;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.contact_bnr_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.3s ease-out;
}
.contact_bnr:hover .contact_bnr_img img {
  scale: 1.05;
}
.contact_bnr_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 28px 20px 40px;
  color: #fff;
  justify-content: space-between;
  border-radius: 20px;
}
@media (min-width: 600px) {
  .contact_bnr_overlay {
    flex-direction: row;
    align-items: center;
    padding: 40px;
  }
}
.contact_bnr_title {
  margin-bottom: 28px;
}
.contact_bnr_title .en,
.contact_bnr_title .ja {
  display: block;
}
.contact_bnr_title .en {
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}
@media (min-width: 920px) {
  .contact_bnr_title .en {
    font-size: min(5.571428571vw, 78px);
  }
}
.contact_bnr_title .ja {
  font-size: 0.9375rem;
  font-weight: 700;
}
.contact_bnr_catch {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 8px;
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .contact_bnr_catch {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
}
.contact_bnr_text {
  font-size: 0.8125rem;
}
@media (min-width: 1200px) {
  .contact_bnr_text {
    font-size: 0.9375rem;
  }
}
.contact_bnr_btn {
  text-align: center;
}
.contact_bnr .btn {
  transition: background-color 0.3s, border-color 0.3s;
}
.contact_bnr:hover .btn {
  background: #D3232E;
  border-color: #D3232E;
}

.lp_bnr {
  background-color: #fdeae7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 12px 24px;
  margin-top: var(--spacer);
}
@media (min-width: 600px) {
  .lp_bnr {
    max-width: 1300px;
    margin: var(--spacer) auto 0;
    padding: 31px 60px;
    gap: 57px;
    flex-direction: row;
  }
}
.lp_bnr_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
@media (min-width: 600px) {
  .lp_bnr_text {
    gap: 36px;
  }
}
.lp_bnr_img {
  display: block;
  width: 100%;
  max-width: 242px;
  margin: 0 auto;
  overflow: hidden;
}
.lp_bnr_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.3s ease-out;
}
@media (min-width: 600px) {
  .lp_bnr_img {
    width: 416px;
    max-width: none;
  }
}
.lp_bnr:hover .lp_bnr_img img {
  scale: 1.05;
}
.lp_bnr_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 28px 20px 40px;
  color: #fff;
  justify-content: space-between;
}
@media (min-width: 600px) {
  .lp_bnr_overlay {
    flex-direction: row;
    align-items: center;
    padding: 40px;
  }
}
.lp_bnr_title {
  margin-bottom: 28px;
}
.lp_bnr_title .en,
.lp_bnr_title .ja {
  display: block;
}
.lp_bnr_title .en {
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}
@media (min-width: 920px) {
  .lp_bnr_title .en {
    font-size: min(5.571428571vw, 78px);
  }
}
.lp_bnr_title .ja {
  font-size: 0.9375rem;
  font-weight: 700;
}
.lp_bnr_catch {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 8px;
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .lp_bnr_catch {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
}
.lp_bnr_text {
  font-size: 0.8125rem;
}
@media (min-width: 1200px) {
  .lp_bnr_text {
    font-size: 0.9375rem;
  }
}
.lp_bnr_btn {
  text-align: center;
}
.lp_bnr .btn {
  transition: background-color 0.3s, border-color 0.3s;
  border: 1px solid #000;
}
.lp_bnr:hover .btn {
  background: #D3232E;
  border-color: #D3232E;
}
.lp_bnr:hover .text {
  color: #fff;
}
.lp_bnr:hover .lp_bnr_img img {
  scale: 1;
}
.lp_bnr:hover .icon-arrow::after {
  background: #fff;
}

.home_sale {
  overflow: hidden;
  margin: var(--spacer) 0;
  position: relative;
}
@media (max-width: 919px) {
  .home_sale {
    padding-bottom: 100px;
  }
}
.home_sale_list {
  position: relative;
}
@media (min-width: 920px) {
  .home_sale_list::before {
    content: "";
    display: block;
    width: 100vw;
    height: 1px;
    background: #DCDCDC;
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
  }
}
.home_sale_list_item {
  position: relative;
}
@media (max-width: 919px) {
  .home_sale_list_item + .home_sale_list_item {
    margin-top: 40px;
  }
}
@media (min-width: 920px) {
  .home_sale_list_item::after {
    content: "";
    display: block;
    width: 100vw;
    height: 1px;
    background: #DCDCDC;
    position: absolute;
    bottom: 0;
    left: calc(50% - 50vw);
  }
}
.home_sale_list_link {
  display: block;
}
@media (min-width: 920px) {
  .home_sale_list_link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 min(7vw, 100px);
  }
}
.home_sale_list_link_img {
  margin-bottom: 20px;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.home_sale_list_link_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.3s ease-out;
}
@media (max-width: 919px) {
  .home_sale_list_link_img {
    position: relative;
  }
}
@media (min-width: 920px) {
  .home_sale_list_link_img {
    order: 1;
    flex: 0 0 300px;
    width: 300px;
    margin-left: auto;
    margin-bottom: 0;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .home_sale_list_link_img {
    flex: 0 0 400px;
    width: 400px;
  }
}
.home_sale_list_link_img .icon {
  background: #fff;
}
@media (max-width: 919px) {
  .home_sale_list_link_img .icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
  }
}
@media (min-width: 920px) {
  .home_sale_list_link_img .icon {
    display: none;
  }
}
.home_sale_list_link:hover .home_sale_list_link_img img {
  scale: 1.05;
}
.home_sale_list_link_pcArrow.icon {
  border: 1px solid #DCDCDC;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
}
@media (max-width: 919px) {
  .home_sale_list_link_pcArrow.icon {
    display: none;
  }
}
@media (min-width: 920px) {
  .home_sale_list_link_pcArrow.icon {
    order: 2;
  }
}
.home_sale_list_link:hover .home_sale_list_link_pcArrow.icon {
  background: #D3232E;
  border-color: #D3232E;
}
.home_sale_list_link:hover .home_sale_list_link_pcArrow.icon::before, .home_sale_list_link:hover .home_sale_list_link_pcArrow.icon::after {
  background-color: #fff;
}
.home_sale_list_link_lineup {
  padding: 8px 6px;
  line-height: 1;
  display: inline-block;
  border: 1px solid #DCDCDC;
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
}
@media (min-width: 920px) {
  .home_sale_list_link_lineup {
    padding: 9.5px 6.5px;
    margin-bottom: 20px;
  }
}
.home_sale_list_link_lineup img {
  height: 15px;
  width: auto;
  vertical-align: bottom;
}
@media (min-width: 920px) {
  .home_sale_list_link_lineup img {
    height: 20px;
  }
}
.home_sale_list_link_title {
  font-weight: 700;
  line-height: 1.5;
  transition: color 0.3s;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
@media (min-width: 920px) {
  .home_sale_list_link_title {
    font-size: min(2.571428571vw, 36px);
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
.home_sale_list_link:hover .home_sale_list_link_title {
  color: #D3232E;
}
.home_sale_list_link_info {
  font-size: 0.8125rem;
  display: flex;
  line-height: 1;
  margin-bottom: 20px;
}
@media (min-width: 920px) {
  .home_sale_list_link_info {
    font-size: 0.9375rem;
    margin-bottom: 32px;
  }
}
.home_sale_list_link_price {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 920px) {
  .home_sale_list_link_price {
    font-size: 1.5rem;
  }
}

.sale_wrap {
  overflow: hidden;
}

.sale_head {
  padding: 60px 0 var(--spacer);
  border-bottom: 1px solid #DCDCDC;
}
@media (min-width: 920px) {
  .sale_head {
    padding: 120px 0 80px;
  }
}
.sale_head_textArea {
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .sale_head_textArea {
    margin-bottom: 60px;
  }
}
.sale_head_img {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.swiper-img {
  width: 100%;
  height: auto;
}
.swiper-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.main-slider {
  width: 100%;
  height: auto;
}
.main-slider .swiper-slide {
  opacity: 0.3;
  transition: opacity 0.5s;
  height: 48vw;
}
@media (min-width: 920px) {
  .main-slider .swiper-slide {
    min-height: auto;
    width: 874px;
    height: 540px;
  }
}
.main-slider .swiper-img {
  width: 100%;
  height: 100%;
}
.main-slider .swiper-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.main-slider .swiper-slide-active {
  opacity: 1;
}

.slider-thumbnail {
  width: 100%;
  padding: 0 20px;
}
@media (min-width: 920px) {
  .slider-thumbnail {
    width: 962px;
    margin: 0 auto;
    padding: 0;
  }
}
.slider-thumbnail .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
@media (min-width: 920px) {
  .slider-thumbnail .swiper-wrapper {
    gap: 12px;
  }
}
.slider-thumbnail .swiper-slide {
  opacity: 0.3;
  transition: opacity 0.5s;
  width: 70px;
  height: 40px;
  cursor: pointer;
}
@media (min-width: 920px) {
  .slider-thumbnail .swiper-slide {
    width: 130px;
    height: 80px;
  }
}
.slider-thumbnail .swiper-slide:hover {
  opacity: 1;
}
.slider-thumbnail .swiper-slide .swiper-img {
  height: 40px;
}
@media (min-width: 920px) {
  .slider-thumbnail .swiper-slide .swiper-img {
    height: 80px;
  }
}
.slider-thumbnail .swiper-slide-thumb-active {
  opacity: 1;
  position: relative;
}
.slider-thumbnail .swiper-slide-thumb-active::after {
  content: "";
  position: absolute;
  background-color: transparent;
  width: 100%;
  height: 40px;
  border: 2px solid #D3232E;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (min-width: 920px) {
  .slider-thumbnail .swiper-slide-thumb-active::after {
    width: 130px;
    height: 80px;
    border: 4px solid #D3232E;
  }
}

.event_head_sale li {
  padding: 8px 6px;
  line-height: 1;
  display: inline-block;
  border: 1px solid #DCDCDC;
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 0.8125rem;
  font-weight: 700;
}
@media (min-width: 920px) {
  .event_head_sale li {
    padding: 9.5px 6.5px;
    margin-bottom: 20px;
    font-size: 0.9375rem;
  }
}

.sale_info {
  margin: 1.5em 0;
  line-height: 1;
}

.sale_price {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  text-align: left;
}
@media (min-width: 920px) {
  .sale_price {
    font-size: 1.5rem;
  }
}

.sale_container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-top: 60px;
  max-width: 982px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .sale_container {
    padding-top: 160px;
    gap: 80px;
  }
}
.sale_container .estate_container_title {
  margin-bottom: 24px;
}
@media (min-width: 920px) {
  .sale_container .estate_container_title {
    margin-bottom: 40px;
  }
}
.sale_container .estate_container_title_en {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  line-height: 1;
  margin-bottom: 0.2em;
}
@media (min-width: 920px) {
  .sale_container .estate_container_title_en {
    font-size: 2.25rem;
  }
}
.sale_container .estate_container_title_ja {
  font-weight: 700;
  font-size: 0.8125rem;
}
@media (min-width: 920px) {
  .sale_container .estate_container_title_ja {
    font-size: 0.9375rem;
  }
}
.sale_container_point_title {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
@media (min-width: 920px) {
  .sale_container_point_title {
    margin-bottom: 24px;
  }
}
.sale_container_point_title_icon {
  width: 24px;
  height: 24px;
  display: flex;
}
@media (min-width: 920px) {
  .sale_container_point_title_icon {
    width: 32px;
    height: 32px;
  }
}
.sale_container_point_title_icon img {
  width: 100%;
  height: 100%;
}
.sale_container_point_title_text {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  text-align: left;
}
@media (min-width: 920px) {
  .sale_container_point_title_text {
    font-size: 1.5rem;
  }
}
.sale_container_point_inner {
  border-radius: 4px;
  background-color: #F5F5F5;
  padding: 20px 16px;
}
@media (min-width: 920px) {
  .sale_container_point_inner {
    padding: 28px 20px;
  }
}
.sale_container_point_inner p {
  font-size: 0.9375rem;
  text-align: justify;
}
.sale_container_map_inner {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
@media (min-width: 920px) {
  .sale_container_map_inner {
    height: 641px;
  }
}
.sale_container_map_inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sale_container_neighborhood_container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 600px) {
  .sale_container_neighborhood_container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px 20px;
  }
}
@media (min-width: 600px) {
  .sale_container_neighborhood_item {
    width: calc((100% - 20px) / 2);
  }
}
@media (min-width: 600px) and (min-width: 920px) {
  .sale_container_neighborhood_item {
    width: calc((100% - 40px) / 3);
  }
}
.sale_container_neighborhood_img {
  width: 100%;
  height: auto;
  aspect-ratio: 307/230;
  margin-bottom: 16px;
}
.sale_container_neighborhood_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sale_container_neighborhood_textArea {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sale_container_neighborhood_name {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 920px) {
  .sale_container_neighborhood_name {
    font-size: 1.125rem;
  }
}
.sale_container_neighborhood_text {
  font-size: 0.8125rem;
  line-height: 1;
}
@media (min-width: 920px) {
  .sale_container_neighborhood_text {
    font-size: 0.9375rem;
  }
}

.bunjo_price {
  width: 100%;
  overflow-x: scroll;
}
@media (min-width: 920px) {
  .bunjo_price {
    overflow-x: auto;
  }
}
.bunjo_price_inner {
  width: 982px;
}
@media (min-width: 920px) {
  .bunjo_price_inner {
    width: 100%;
  }
}
.bunjo_price_nav {
  width: 100%;
  height: auto;
  display: flex;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #2D3132;
}
.bunjo_price_nav .nav01 {
  width: 147px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
}
.bunjo_price_nav .nav02 {
  width: 229px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
}
.bunjo_price_nav .nav03 {
  width: 228px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
}
.bunjo_price_nav .nav04 {
  width: 310px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
}
.bunjo_price_contents {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #2D3132;
}
@media (min-width: 920px) {
  .bunjo_price_contents {
    padding: 24px 0;
  }
}
.bunjo_price_contents_kukaku {
  width: 147px;
  font-size: 0.9375rem;
  line-height: 1;
}
.bunjo_price_contents_space {
  width: 229px;
  font-size: 0.9375rem;
  line-height: 1;
}
.bunjo_price_contents_unitprice {
  width: 228px;
  line-height: 1;
  font-size: 0.9375rem;
}
.bunjo_price_contents_price {
  width: 310px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
}
.bunjo_price_contents_price .small {
  font-size: 0.6875rem !important;
  font-weight: 500;
  line-height: 1;
}
@media (min-width: 920px) {
  .bunjo_price_contents_price .small {
    font-size: 0.75rem !important;
  }
}

.solo_price {
  width: 100%;
  height: auto;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  padding-bottom: 12px;
  border-bottom: 1px solid #2D3132;
  margin-top: 24px;
}
@media (min-width: 920px) {
  .solo_price {
    margin-top: 40px;
  }
}
.solo_price_text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  text-align: right;
}
@media (min-width: 920px) {
  .solo_price_text {
    font-size: 2.5rem;
  }
}
.solo_price .small {
  font-size: 0.8125rem !important;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 920px) {
  .solo_price .small {
    font-size: 0.9375rem !important;
  }
}

.sale_bottom {
  margin-bottom: 120px;
}
.sale_bottom .post_share {
  margin-top: 80px;
  padding-top: 40px;
  margin-bottom: var(--spacer);
}
@media (min-width: 920px) {
  .sale_bottom .post_share {
    margin-top: 160px;
    padding-top: 80px;
    margin-bottom: 240px;
  }
}
.sale_bottom_contents {
  overflow: hidden;
  position: relative;
}
.sale_bottom_contents_head {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .sale_bottom_contents_head {
    margin-bottom: 60px;
  }
}
.sale_bottom_contents_slider .swiper {
  overflow: visible;
}
.sale_bottom_contents_slider .swiper-slide {
  width: -moz-max-content;
  width: max-content;
}

.info_table {
  border: 1px solid #DCDCDC;
}
.info_table_item {
  width: 100%;
  height: auto;
  display: flex;
  border-bottom: 1px solid #DCDCDC;
}
.info_table_item_title {
  width: 35%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  padding: 16px 12px;
  background-color: #f5f5f5;
}
@media (min-width: 920px) {
  .info_table_item_title {
    width: 23.32%;
    padding: 24px 20px;
  }
}
.info_table_item_title span {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  white-space: nowrap;
}
@media (min-width: 920px) {
  .info_table_item_title span {
    font-size: 0.9375rem;
  }
}
.info_table_item_text {
  width: 65%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  padding: 16px 12px;
}
@media (min-width: 920px) {
  .info_table_item_text {
    width: 76.68%;
    padding: 24px 20px;
  }
}
.info_table_item_text p {
  line-height: 1.5;
  text-align: left;
}
@media (min-width: 920px) {
  .info_table_item_text p {
    font-size: 0.9375rem;
  }
}
.info_table_item_flex, .info_table_item_last {
  border-bottom: 0;
}
.info_table_small {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 920px) {
  .info_table_small {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.info_table_small_item {
  width: 100%;
  height: auto;
  display: flex;
  border-bottom: 1px solid #DCDCDC;
}
@media (min-width: 920px) {
  .info_table_small_item {
    width: 50%;
  }
}
@media (min-width: 920px) {
  .info_table_small_item:nth-child(even) {
    border-left: 1px solid #DCDCDC;
  }
}
.info_table_small_item_title {
  width: 35%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  padding: 16px 12px;
  background-color: #f5f5f5;
}
@media (min-width: 920px) {
  .info_table_small_item_title {
    width: 46.64%;
    padding: 24px 20px;
  }
}
.info_table_small_item_title span {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}
@media (min-width: 920px) {
  .info_table_small_item_title span {
    font-size: 0.9375rem;
  }
}
.info_table_small_item_text {
  width: 65%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  padding: 16px 12px;
}
@media (min-width: 920px) {
  .info_table_small_item_text {
    width: 53.36%;
    padding: 24px 20px;
  }
}
.info_table_small_item_text p {
  line-height: 1.5;
  text-align: left;
}
@media (min-width: 920px) {
  .info_table_small_item_text p {
    font-size: 0.9375rem;
  }
}

.notes {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}
@media (min-width: 920px) {
  .notes {
    padding: 160px 0;
  }
}
.notes p {
  font-size: 0.8125rem;
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .notes p {
    font-size: 0.9375rem;
  }
}

.swiper {
  position: relative;
}

.nav {
  padding: 0 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 840px;
  z-index: 10;
}

@media (max-width: 990px) {
  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }
}
.main-swiper-button-prev,
.main-swiper-button-next {
  position: relative;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  box-shadow: 0px 0 7px rgba(51, 51, 51, 0.4);
  width: 60px;
  height: 60px;
  cursor: pointer;
}

.main-swiper-button-prev::after,
.main-swiper-button-next::after {
  position: absolute;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main-swiper-button-prev::after {
  background-image: url("../img/common/prev-arrow.svg");
}

.main-swiper-button-next::after {
  background-image: url("../img/common/next-arrow.svg");
}

@media (max-width: 600px) {
  .main-swiper-button-prev,
  .main-swiper-button-next {
    width: 32px;
    height: 32px;
  }
}
.futaba_container {
  overflow: hidden;
}

.futaba_results {
  margin-bottom: 60px;
}
@media (min-width: 920px) {
  .futaba_results {
    margin-bottom: 120px;
  }
}
.futaba_results_title {
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .futaba_results_title {
    margin-bottom: 60px;
  }
}
.futaba_results_title_en {
  font-size: 2.25rem;
  font-weight: 500;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  line-height: 1;
  margin-bottom: 0.2em;
}
@media (min-width: 920px) {
  .futaba_results_title_en {
    font-size: 3rem;
  }
}
.futaba_results_title_ja {
  font-weight: 700;
  font-size: 0.8125rem;
}
@media (min-width: 920px) {
  .futaba_results_title_ja {
    font-size: 0.9375rem;
  }
}
.futaba_results_content {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 920px) {
  .futaba_results_content {
    flex-direction: row;
    justify-content: space-between;
    gap: 41px;
  }
}
@media (min-width: 920px) {
  .futaba_results_content_l, .futaba_results_content_r {
    width: calc((100% - 41px) / 2);
  }
}
.futaba_results_content_r .futaba_results_list {
  border-top: none;
}
@media (min-width: 920px) {
  .futaba_results_content_r .futaba_results_list {
    border-top: 1px solid #dcdcdc;
  }
}
.futaba_results_list {
  border-top: 1px solid #dcdcdc;
}
.futaba_results_list_item {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0 0;
  border-bottom: 1px solid #dcdcdc;
}
@media (min-width: 920px) {
  .futaba_results_list_item {
    flex-direction: row;
    gap: 8px;
    padding: 32px 0 0;
  }
}
.futaba_results_list_year {
  font-weight: 700;
  font-size: 0.9375rem;
}
@media (min-width: 920px) {
  .futaba_results_list_year {
    flex: 0 1 70px;
  }
}
.futaba_results_list_inner {
  padding: 0 0 16px;
}
@media (min-width: 920px) {
  .futaba_results_list_inner {
    flex: 1 1 0%;
    padding: 0 0 32px;
  }
}
.futaba_results_list_inner li {
  width: 100%;
  height: auto;
  display: flex;
  gap: 16px;
  padding: 6px 0;
}
@media (min-width: 920px) {
  .futaba_results_list_inner li {
    gap: 60px;
    padding: 32px 0;
    border-top: 1px solid #dcdcdc;
  }
}
.futaba_results_list_inner .result-first {
  padding: 0 0 6px;
  border-top: none;
}
@media (min-width: 920px) {
  .futaba_results_list_inner .result-first {
    padding: 0 0 32px;
  }
}
.futaba_results_list_inner .result-first-one {
  padding: 0;
}
.futaba_results_list_inner .result-last {
  padding: 6px 0 0;
}
@media (min-width: 920px) {
  .futaba_results_list_inner .result-last {
    padding: 32px 0 0;
  }
}
.futaba_results_list_month {
  display: flex;
  justify-content: flex-end;
  font-weight: 700;
  font-size: 0.9375rem;
}
@media (min-width: 920px) {
  .futaba_results_list_month {
    flex: 0 1 35px;
  }
}
.futaba_results_list_text {
  font-size: 0.9375rem;
}

.futaba_case {
  margin-bottom: 120px;
}
@media (min-width: 920px) {
  .futaba_case {
    margin-bottom: 160px;
  }
}
.futaba_case_title {
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .futaba_case_title {
    margin-bottom: 60px;
  }
}
.futaba_case_title_en {
  font-size: 2.25rem;
  font-weight: 500;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  line-height: 1;
  margin-bottom: 0.2em;
}
@media (min-width: 920px) {
  .futaba_case_title_en {
    font-size: 3rem;
  }
}
.futaba_case_title_ja {
  font-weight: 700;
  font-size: 0.8125rem;
}
@media (min-width: 920px) {
  .futaba_case_title_ja {
    font-size: 0.9375rem;
  }
}
.futaba_case_list {
  position: relative;
}
@media (min-width: 920px) {
  .futaba_case_list::before {
    content: "";
    display: block;
    width: 100vw;
    height: 1px;
    background: #DCDCDC;
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
  }
}
.futaba_case_list_item {
  position: relative;
}
@media (max-width: 919px) {
  .futaba_case_list_item + .futaba_case_list_item {
    margin-top: 40px;
  }
}
@media (min-width: 920px) {
  .futaba_case_list_item::after {
    content: "";
    display: block;
    width: 100vw;
    height: 1px;
    background: #DCDCDC;
    position: absolute;
    bottom: 0;
    left: calc(50% - 50vw);
  }
}
.futaba_case_list_link {
  display: block;
}
@media (min-width: 920px) {
  .futaba_case_list_link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 min(7vw, 100px);
  }
}
.futaba_case_list_link_img {
  margin-bottom: 20px;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.futaba_case_list_link_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.3s ease-out;
}
@media (max-width: 919px) {
  .futaba_case_list_link_img {
    position: relative;
  }
}
@media (min-width: 920px) {
  .futaba_case_list_link_img {
    order: 1;
    flex: 0 0 300px;
    width: 300px;
    margin-left: auto;
    margin-bottom: 0;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .futaba_case_list_link_img {
    flex: 0 0 400px;
    width: 400px;
  }
}
.futaba_case_list_link_img .icon {
  background: #fff;
}
@media (max-width: 919px) {
  .futaba_case_list_link_img .icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
  }
}
@media (min-width: 920px) {
  .futaba_case_list_link_img .icon {
    display: none;
  }
}
.futaba_case_list_link:hover .futaba_case_list_link_img img {
  scale: 1.05;
}
.futaba_case_list_link_pcArrow.icon {
  border: 1px solid #DCDCDC;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
}
@media (max-width: 919px) {
  .futaba_case_list_link_pcArrow.icon {
    display: none;
  }
}
@media (min-width: 920px) {
  .futaba_case_list_link_pcArrow.icon {
    order: 2;
  }
}
.futaba_case_list_link:hover .futaba_case_list_link_pcArrow.icon {
  background: #D3232E;
  border-color: #D3232E;
}
.futaba_case_list_link:hover .futaba_case_list_link_pcArrow.icon::before, .futaba_case_list_link:hover .futaba_case_list_link_pcArrow.icon::after {
  background-color: #fff;
}
.futaba_case_list_link_lineup {
  padding: 16px;
  line-height: 1;
  display: inline-block;
  border: 1px solid #DCDCDC;
  border-radius: 4px;
  margin-bottom: 12px;
  font-weight: 700;
}
@media (min-width: 920px) {
  .futaba_case_list_link_lineup {
    margin-bottom: 20px;
  }
}
.futaba_case_list_link_lineup img {
  height: 15px;
  width: auto;
  vertical-align: bottom;
}
@media (min-width: 920px) {
  .futaba_case_list_link_lineup img {
    height: 20px;
  }
}
.futaba_case_list_link_title {
  font-weight: 700;
  line-height: 1.5;
  transition: color 0.3s;
  margin-bottom: 8px;
  font-size: 1.5rem;
}
@media (min-width: 920px) {
  .futaba_case_list_link_title {
    font-size: min(2.571428571vw, 36px);
    margin-bottom: 16px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
.futaba_case_list_link:hover .futaba_case_list_link_title {
  color: #D3232E;
}
.futaba_case_list_link_info {
  font-size: 0.8125rem;
  display: flex;
  line-height: 1;
}
@media (min-width: 920px) {
  .futaba_case_list_link_info {
    font-size: 0.9375rem;
  }
}
.futaba_case_list_link_info .name {
  padding-left: 8px;
  margin-left: 8px;
  border-left: 1px solid #DCDCDC;
}
.futaba_case_head {
  padding: 60px 0 var(--spacer);
}
@media (min-width: 920px) {
  .futaba_case_head {
    padding-top: 120px;
  }
}
.futaba_case_head_textArea {
  margin-bottom: 40px;
}
@media (min-width: 920px) {
  .futaba_case_head_textArea {
    margin-bottom: 60px;
  }
}
.futaba_case_head_img {
  width: 100%;
  text-align: center;
}
.futaba_case_head_img img {
  width: 100%;
  height: 100%;
}
.futaba_case_head_info {
  font-size: 0.8125rem;
  display: flex;
  line-height: 1;
  margin-top: 20px;
}
@media (min-width: 920px) {
  .futaba_case_head_info {
    font-size: 0.9375rem;
    margin-top: 28px;
  }
}
.futaba_case_head_info .name {
  padding-left: 8px;
  margin-left: 8px;
  border-left: 1px solid #DCDCDC;
}
.futaba_case_row {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 60px;
}
@media (min-width: 920px) {
  .futaba_case_row {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 80px;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .futaba_case_row {
    gap: 100px;
  }
}
@media (min-width: 920px) {
  .futaba_case_side {
    flex: 0 0 360px;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .futaba_case_side {
    flex: 0 0 400px;
  }
}
@media (min-width: 920px) {
  .futaba_case_side_sticky {
    position: sticky;
    top: 140px;
  }
}
.futaba_case_main {
  flex: 0 1 800px;
}
.futaba_case_body > *:first-child {
  margin-top: 0 !important;
}
.futaba_case_body h2, .futaba_case_body h3, .futaba_case_body h4, .futaba_case_body h5 {
  margin-top: 40px;
  margin-bottom: 24px;
}
@media (min-width: 920px) {
  .futaba_case_body h2, .futaba_case_body h3, .futaba_case_body h4, .futaba_case_body h5 {
    margin-top: 80px;
    margin-bottom: 40px;
  }
}
.futaba_case_body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 1px solid #2D3132;
}
@media (min-width: 920px) {
  .futaba_case_body h2 {
    font-size: 1.5rem;
  }
}
.futaba_case_body h3 {
  font-size: 0.8125rem;
  font-weight: 700;
}
@media (min-width: 920px) {
  .futaba_case_body h3 {
    font-size: 0.9375rem;
  }
}
.futaba_case_body ul, .futaba_case_body ol {
  border-radius: 4px;
  background: #f5f5f5;
  padding: 1em 1em 1em 2.5em;
  margin: 1em 0;
}
.futaba_case_body ul {
  list-style-type: disc;
}
.futaba_case_body p {
  margin: 24px 0;
}
@media (min-width: 920px) {
  .futaba_case_body p {
    margin: 40px 0;
  }
}
.futaba_case_body .wp-block-image {
  margin: 40px 0;
}
.futaba_case_body a {
  background-image: linear-gradient(to right, #D3232E, #D3232E); /* 線の色 */
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat; /* 背景を繰り返さない */
  padding-bottom: 1px;
  color: #D3232E;
}
@media (min-width: 1200px) {
  .futaba_case_body a:hover {
    animation: linkLineReverse 0.5s ease forwards;
  }
}
.futaba_case_body blockquote {
  background: #f5f5f5;
  border-radius: 4px;
  padding: 30px 20px;
  margin: 40px 0;
  position: relative;
  z-index: 0;
}
@media (min-width: 920px) {
  .futaba_case_body blockquote {
    padding: 40px;
    margin: 60px 0;
  }
}
.futaba_case_body blockquote::before {
  content: "“";
  line-height: 1;
  display: inline-block;
  z-index: -1;
  color: #dcdcdc;
  position: absolute;
  top: 10px;
  left: 10px;
  font-weight: 700;
  font-size: 3.75rem;
}
@media (min-width: 920px) {
  .futaba_case_body blockquote::before {
    top: 20px;
    left: 20px;
    font-size: 5rem;
  }
}
.futaba_case_body blockquote h2 {
  margin-top: 0;
  margin-bottom: 0;
  border: none;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-weight: 500;
  padding-bottom: 0;
  font-size: 1.75rem;
  line-height: 1.2;
}
@media (min-width: 920px) {
  .futaba_case_body blockquote h2 {
    font-size: 3rem;
  }
}
.futaba_case_body blockquote h2 + p {
  margin-top: 0;
  margin-bottom: 2em;
}
.futaba_case_body blockquote cite {
  text-align: right;
  margin-top: 2em;
}
.futaba_case_body blockquote cite a {
  color: #2D3132;
  background: transparent;
  display: inline-flex;
  min-width: 230px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #DCDCDC;
  border-radius: 999px;
  padding: 16px 24px;
  font-size: 0.9375rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  z-index: 0;
  line-height: 1.4;
  transition: color 0.3s, background-color 0.3s, boder-color 0.3s;
  text-decoration: none;
  font-style: normal;
}
.futaba_case_body blockquote cite a::after {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1/1;
  -webkit-mask-image: url(../img/common/arrow.svg);
  mask-image: url(../img/common/arrow.svg);
  display: block;
  width: 24px;
  height: 24px;
  background: #2D3132;
  transition: background-color 0.3s;
}
.futaba_case_body blockquote cite a:hover {
  color: #fff;
  border-color: #D3232E;
  background: #D3232E;
}
.futaba_case_body blockquote cite a:hover::after {
  background-color: #fff;
}
.futaba_case_nav {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  margin: 0 0 60px;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}
@media (min-width: 920px) {
  .futaba_case_nav {
    padding: 80px 0;
    margin: 0 0 80px;
  }
}

.futaba_other_case_row {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 920px) {
  .futaba_other_case_row {
    flex-direction: row;
    gap: 40px;
  }
}
.futaba_other_case_item {
  display: block;
}
@media (min-width: 920px) {
  .futaba_other_case_item {
    width: 490px;
  }
}
.futaba_other_case_item_img {
  aspect-ratio: 4/3;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.futaba_other_case_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.3s ease-out;
}
@media (min-width: 920px) {
  .futaba_other_case_item_img {
    margin-bottom: 24px;
  }
}
.futaba_other_case_item_img .icon {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  background: #fff;
}
@media (min-width: 920px) {
  .futaba_other_case_item_img .icon {
    right: 20px;
    bottom: 20px;
  }
}
.futaba_other_case_item:hover .futaba_other_case_item_img img {
  scale: 1.05;
}
.futaba_other_case_item:hover .futaba_other_case_item_img .icon {
  background: #D3232E;
  border-color: #D3232E;
}
.futaba_other_case_item:hover .futaba_other_case_item_img .icon::before, .futaba_other_case_item:hover .futaba_other_case_item_img .icon::after {
  background-color: #fff;
}
.futaba_other_case_item_title {
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0.5em 0;
  transition: color 0.3s;
}
@media (min-width: 920px) {
  .futaba_other_case_item_title {
    margin: 20px 0;
    line-height: 1;
  }
}
.futaba_other_case_item_info {
  font-size: 0.8125rem;
  display: flex;
  line-height: 1;
}
@media (min-width: 920px) {
  .futaba_other_case_item_info {
    font-size: 0.9375rem;
  }
}
.futaba_other_case_item_info .name {
  padding-left: 8px;
  margin-left: 8px;
  border-left: 1px solid #DCDCDC;
}
.futaba_other_case_item:hover .futaba_other_case_item_title {
  color: #D3232E;
}

.notes_text {
  padding: 120px 0;
  text-align: center;
}

.development_section {
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 80px;
}
@media (min-width: 920px) {
  .development_section {
    padding-bottom: 150px;
  }
}

.subPage_section_header_development {
  margin-bottom: 80px;
}
@media (min-width: 920px) {
  .subPage_section_header_development {
    margin-bottom: 130px;
  }
}
.subPage_section_header_development .subPage_section_title_en {
  font-size: 44px;
}
@media (min-width: 920px) {
  .subPage_section_header_development .subPage_section_title_en {
    font-size: 78px;
  }
}

.development_title {
  text-align: center;
}
.development_title_ja {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 6px;
}
@media (min-width: 920px) {
  .development_title_ja {
    font-size: 48px;
  }
}
.development_title_en {
  font-size: 16px;
  font-weight: 700;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
}
@media (min-width: 920px) {
  .development_title_en {
    font-size: 18px;
  }
}

.development_slider {
  margin: 36px 0 40px;
}
@media (min-width: 920px) {
  .development_slider {
    margin: 53px 0;
  }
}
.development_slider .swiper-wrapper {
  transition-timing-function: linear;
}
.development_slider .swiper-slide {
  width: -moz-max-content;
  width: max-content;
}
.development_slider_item {
  width: 240px;
}
@media (min-width: 920px) {
  .development_slider_item {
    width: 600px;
  }
}
.development_container {
  width: 100%;
  max-width: 1340px;
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .development_container {
    max-width: 1205px;
    padding: 0 40px;
  }
}
.development_contents {
  width: 100%;
  height: auto;
  display: flex;
}
@media (min-width: 920px) {
  .development_contents {
    justify-content: space-between;
    gap: 40px;
  }
}
.development_contents_title {
  margin-bottom: 24px;
}
@media (min-width: 920px) {
  .development_contents_title {
    margin-bottom: 35px;
  }
}
.development_contents_title_ja {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 8px;
}
@media (min-width: 920px) {
  .development_contents_title_ja {
    font-size: 28px;
    margin-bottom: 14px;
  }
}
.development_contents_title_en {
  font-size: 14px;
  font-weight: 700;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  line-height: 1.25;
  margin-bottom: 0.2em;
}
@media (min-width: 920px) {
  .development_contents_title_en {
    font-size: 15px;
  }
}
.development_contents_side {
  display: none;
}
@media (min-width: 920px) {
  .development_contents_side {
    display: block;
    width: 32.2%;
  }
}
.development_contents_side_inner {
  position: sticky;
  top: 120px;
}
.development_contents_side_inner .nav_list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.development_contents_side_inner .nav_list li a {
  display: block;
  padding-left: 20px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  transition: all 0.3s ease-out;
}
.development_contents_side_inner .nav_list li a:hover {
  font-weight: 700;
  position: relative;
}
.development_contents_side_inner .nav_list li a.is-active {
  font-weight: 700;
  position: relative;
}
.development_contents_side_inner .nav_list li a.is-active::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #d3232e;
  border-radius: 9999px;
  top: 0.5em;
  left: 0;
}
.development_contents_main {
  width: 100%;
  height: auto;
}
@media (min-width: 920px) {
  .development_contents_main {
    width: 63.8%;
  }
}
.development_contents_main_container {
  width: 100%;
  height: auto;
  margin-bottom: 80px;
}
@media (min-width: 920px) {
  .development_contents_main_container {
    margin-bottom: 72px;
    padding-top: 115px;
    margin-top: -115px;
  }
}
.development_contents_main_container:last-of-type {
  margin-bottom: 0;
}
.development_contents_main_container .overview_list {
  margin-bottom: 44px;
}
.development_contents_main_container .overview_list_item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid #dcdcdc;
}
@media (min-width: 920px) {
  .development_contents_main_container .overview_list_item {
    flex-direction: row;
    align-items: flex-start;
    padding: 25px 0;
    gap: 98px;
  }
}
.development_contents_main_container .overview_list_item:first-child {
  border-top: 1px solid #dcdcdc;
}
.development_contents_main_container .overview_list_item_title {
  font-size: 14px;
  font-weight: 700;
}
@media (min-width: 920px) {
  .development_contents_main_container .overview_list_item_title {
    font-size: 15px;
    width: 22%;
  }
}
.development_contents_main_container .overview_list_item_text {
  font-size: 14px;
  letter-spacing: -0.0025em;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .development_contents_main_container .overview_list_item_text {
    font-size: 15px;
    width: 78%;
  }
}
.development_contents_main_container .purpose_contents_text {
  font-size: 14px;
}
@media (min-width: 920px) {
  .development_contents_main_container .purpose_contents_text {
    font-size: 15px;
  }
}
.development_contents_main_container .purpose_contents_text_wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
@media (min-width: 920px) {
  .development_contents_main_container .purpose_contents_text_wrap {
    gap: 12px;
    margin-bottom: 32px;
  }
}
.development_contents_main_container .purpose_contents_text_wrap.last {
  margin-bottom: 0;
}
.development_contents_main_container .purpose_contents_box {
  padding: 20px;
  border-radius: 4px;
  background-color: #f5f5f5;
  margin-bottom: 20px;
}
@media (min-width: 920px) {
  .development_contents_main_container .purpose_contents_box {
    padding: 30px 40px;
    margin-bottom: 32px;
  }
}
.development_contents_main_container .purpose_contents_box_top {
  font-size: 14px;
  font-weight: 700;
  color: #d3232e;
  margin-bottom: 4px;
}
@media (min-width: 920px) {
  .development_contents_main_container .purpose_contents_box_top {
    font-size: 15px;
    margin-bottom: 8px;
  }
}
.development_contents_main_container .purpose_contents_box_text {
  font-size: 13px;
  margin-bottom: 12px;
}
@media (min-width: 920px) {
  .development_contents_main_container .purpose_contents_box_text {
    margin-bottom: 18px;
  }
}
.development_contents_main_container .purpose_contents_box_text.last {
  margin-bottom: 0;
}
.development_contents_main_container .purpose_contents_thumb {
  margin-bottom: 20px;
}
@media (min-width: 920px) {
  .development_contents_main_container .purpose_contents_thumb {
    margin-bottom: 30px;
  }
}
.development_contents_catch {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (min-width: 920px) {
  .development_contents_catch {
    font-size: 1.25rem;
  }
}

.contact_bnr {
  position: relative;
  width: 100%;
  display: block;
  margin-top: 80px;
}
@media (min-width: 600px) {
  .contact_bnr {
    max-width: 1125px;
    margin: 164px auto 0;
  }
}
.contact_bnr_img {
  display: block;
  width: 100%;
  overflow: hidden;
}
.contact_bnr_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.3s ease-out;
}
.contact_bnr:hover .contact_bnr_img img {
  scale: 1.05;
}
.contact_bnr_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 28px 20px 40px;
  color: #fff;
  justify-content: space-between;
}
@media (min-width: 600px) {
  .contact_bnr_overlay {
    flex-direction: row;
    align-items: center;
    padding: 40px;
  }
}
.contact_bnr_title {
  margin-bottom: 28px;
}
.contact_bnr_title .en,
.contact_bnr_title .ja {
  display: block;
}
.contact_bnr_title .en {
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}
@media (min-width: 920px) {
  .contact_bnr_title .en {
    font-size: min(5.571428571vw, 78px);
  }
}
.contact_bnr_title .ja {
  font-size: 0.9375rem;
  font-weight: 700;
}
.contact_bnr_catch {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 8px;
  line-height: 1.5;
}
@media (min-width: 1200px) {
  .contact_bnr_catch {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
}
.contact_bnr_text {
  font-size: 0.8125rem;
}
@media (min-width: 1200px) {
  .contact_bnr_text {
    font-size: 0.9375rem;
  }
}
.contact_bnr_btn {
  text-align: center;
}
.contact_bnr .btn {
  transition: background-color 0.3s, border-color 0.3s;
}
.contact_bnr:hover .btn {
  background: #D3232E;
  border-color: #D3232E;
}

.development_bnr {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  background-image: url(../img/development/development_bnr_background_sp.png);
  background-image: image-set(
    url(../img/development/development_bnr_background_sp.png) 1x,
    url(../img/development/development_bnr_background_sp@2x.png) 2x
  );
  background-image: -webkit-image-set(
    url(../img/development/development_bnr_background_sp.png) 1x,
    url(../img/development/development_bnr_background_sp@2x.png) 2x
  );
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media (min-width: 600px) {
  .development_bnr {
    max-width: 1300px;
    margin: 40px auto 0;
    gap: 57px;
    flex-direction: row;
    justify-content: space-between;
    background-image: url(../img/development/development_bnr_background.png);
    background-image: image-set(
      url(../img/development/development_bnr_background.png) 1x,
      url(../img/development/development_bnr_background@2x.png) 2x
    );
    background-image: -webkit-image-set(
      url(../img/development/development_bnr_background.png) 1x,
      url(../img/development/development_bnr_background@2x.png) 2x
    );
  }
}

.development_bnr_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
}

@media (min-width: 600px) {
  .development_bnr_text {
    width: 100%;
    max-width: 725px;
    padding: min(12.5vw, 150px) 0 40px 40px;
    align-items: unset;
  }
}

.development_bnr_text_ja {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
}

@media (min-width: 600px) {
  .development_bnr_text_ja {
    font-size: min(3.3333333333vw, 40px);
  }
}

.development_bnr_text_en {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 30px;
  font-family: "Raleway", "Noto Sans JP", sans-serif;
}

@media (min-width: 600px) {
  .development_bnr_text_en {
    font-size: min(2.5714285714vw, 18px);
    margin-bottom: min(5.6666666667vw, 68px);
  }
}

.development_bnr_img {
  display: block;
  width: 100%;
  overflow: hidden;
}

@media (min-width: 600px) {
  .development_bnr_img {
    max-width: 400px;
  }
}

.development_bnr_img img {
  width: 100%;
  transition: transform 0.3s ease;
}

@media (min-width: 600px) {
  .development_bnr:hover .development_bnr_img img {
    transform: scale(1.05);
  }
}

.development_bnr_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 28px 20px 40px;
  color: #fff;
  justify-content: space-between;
}

@media (min-width: 600px) {
  .development_bnr_overlay {
    flex-direction: row;
    align-items: center;
    padding: 40px;
  }
}

.development_bnr_title {
  margin-bottom: 28px;
}

.development_bnr_title .en,
.development_bnr_title .ja {
  display: block;
}

.development_bnr_title .en {
  font-family: "Raleway", "Noto Sans JP", sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}

@media (min-width: 920px) {
  .development_bnr_title .en {
    font-size: min(5.571428571vw, 78px);
  }
}

.development_bnr_title .ja {
  font-size: 0.9375rem;
  font-weight: 700;
}

.development_bnr_catch {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 8px;
  line-height: 1.5;
}

@media (min-width: 1200px) {
  .development_bnr_catch {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
}

.development_bnr_text {
  font-size: 0.8125rem;
}

@media (min-width: 1200px) {
  .development_bnr_text {
    font-size: 0.9375rem;
  }
}

.development_bnr_btn {
  text-align: center;
}

.development_bnr .btn {
  transition: background-color 0.3s, border-color 0.3s;
  border: 1px solid #000;
}

.development_bnr:hover .btn {
  background: #D3232E;
  border-color: #D3232E;
}

.development_bnr:hover .text {
  color: #fff;
}

.development_bnr:hover .lp_bnr_img img {
  scale: 1;
}

.development_bnr:hover .icon-arrow::after {
  background: #fff;
}