@charset "UTF-8";

/**************************************************************
* グロバルの要素
**************************************************************/

/* scroll-indicator
********************************/
.scroll-indicator {
  position: absolute;
  bottom: 10%;
  right: 3.75%;
  z-index: 10;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 1rem;
  height: 8.25rem;
  margin-left: auto;
  margin-right: auto;
}

.scroll-indicator > span {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--alphabetic-font-family);
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1;
  color: var(--accent-color-2);
}

.scroll-indicator > i {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 1px;
  height: 5rem;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--accent-color-3);
}
.scroll-indicator > i::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color-2);
  transform-origin: 0 0;
}

@media all and (min-width: 1024px) {
  .scroll-indicator {
    bottom: -45%;
    left: 0;
    right: 0;
  }
}

/* animations */
.scroll-indicator > i::after {
  animation: stretching-effect 2s ease-out infinite;
}

@keyframes stretching-effect {
  0% {
    transform: scaleY(0);
  }
  50% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}

/* scrolling-gallery
********************************/
.scrolling-gallery {
  padding-top: 10%;
  overflow: hidden;
  background: var(--base-bg, #ffffff);
}

.scrolling-gallery figure {
  flex: 0 0 calc(100% / 2.6);
}
.scrolling-gallery figure > img {
  display: block;
}

.scrolling-gallery__track {
  display: flex;
  flex-wrap: nowrap;
  pointer-events: none;
}

@media all and (min-width: 1024px) {
  .scrolling-gallery {
    padding-top: 5.25%;
  }

  .scrolling-gallery figure {
    flex: 0 0 calc(100% / 3.6);
  }
}

/* animations */
.scrolling-gallery__track {
  animation: gallery-horizontal-scroll 70s linear alternate infinite;
}

@keyframes gallery-horizontal-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-120%);
  }
}


/* fullbleed-video-bg
********************************/
.fullbleed-video-bg {
  padding-top: 25vh;
}
.fullbleed-video-bg > video {
  z-index: -1;
  object-fit: cover;
  object-position: 50% 40%;
}

@media all and (min-width: 1024px) {
  .fullbleed-video-bg {
    padding-top: calc(420/1920 * 100%);
  }

  .fullbleed-video-bg > video {
    filter: blur(30px) brightness(500%);
    will-change: filter, transform;
  }
}

/* common keyframes
********************************/
@keyframes progression-stretching-effect {
  0% {
    transform: scaleX(0);
  }
  50% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}


/**************************************************************
* MV
**************************************************************/
.mv {
  position: relative;
}

@media all and (min-width: 1024px) {
  .mv {
    height: 100vh;
  }
}

/* mv-body
********************************/
.mv-body {
  position: relative;
  height: 100%;
  background: var(--base-bg, #ffffff);
}

.mv-body__block {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.mv-body__block.has-bg {
  z-index: 1;
}
.mv-body__block.has-bg::before,
.mv-body__block.has-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.mv-body__block.has-bg::before {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url(../images/main-visual/second_block_visual_bg.jpg);
}
.mv-body__block.has-bg::after {
  background-color: var(--accent-color-2);
  mix-blend-mode: multiply;
}

@media all and (max-width: 1023px) {
  .mv-body__block {
    justify-content: center;
    height: 100vh;
    padding-top: 15%;
    padding-bottom: 15%;
    text-align: center;
  }

  .mv-body__block:not(.has-bg):nth-child(1) {
    top: -5vh;
  }

  .mv-body__smallscreen-container {
    width: 84%;
    margin: auto;
  }
}

@media all and (min-width: 1024px) {
  .mv-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    align-items: center;
  }
  .mv-body__block.has-bg {
    height: 100%;
  }
}

@media all and (max-width: 1800px) {
  .mv-body__block {
    padding-left: 5.333%;
    padding-right: 5.333%;
  } 
}

/* mv-txt
********************************/
.mv-txt {
  font-weight: bold;
}

@media all and (max-width: 1023px) {
  .mv-txt {
    display: grid;
    justify-content: center;
    text-align: left;
  }
}

@media all and (min-width: 1024px) {
  .mv-txt {
    font-size: 112.5%;
  }
}

/* mv-statement
********************************/
.mv-statement {
  position: relative;
  z-index: 10;
}
.mv-statement > p {
  margin-bottom: 4.5rem;
  font-weight: bold;
  line-height: 2.25;
  color: #ffffff;
  text-align: left;
}

@media all and (min-width: 1024px) {
  .mv-statement > p {
    font-size: 112.5%;
    line-height: 3;
  }
}

/* overrides */
@media all and (min-width: 1024px) {
  .mv-statement .l-btn-wrapper {
    max-width: 23.5rem;
    min-width: 23.5rem;
  }
}

/* mv-logo
********************************/
.mv-logo {
  margin-bottom: 3.75rem;
}

@media all and (max-width: 1023px) {
  .mv-logo {
    margin-left: auto;
    margin-right: auto;
  }
}

/* states (javascript) */
.mv-body {
  --mv-bg-opacity-lvl: 0;
}
.mv-body__block.has-bg::before {
  opacity: var(--mv-bg-opacity-lvl);
}

.mv-logo {
  opacity: 0;
  transform: scale3d(1.15, 1.15, 1);
  will-change: opacity, transform;
}

.mv-txt,
.mv-statement {
  opacity: 0;
}

/**************************************************************
* BUILDING
**************************************************************/

.building {
  position: relative;
  padding-top: 10%;
  padding-bottom: 10%;
  background: var(--base-bg, #ffffff);
}

.building__body {
  margin-top: 2rem;
}

.building .annotation {
  margin-left: 5.333%;
  margin-right: 5.333%;
}

@media all and (min-width: 1024px) {
  .building {
    padding-top: 5.25%;
    padding-bottom: 5.25%;
    padding-left: 5.25%;
  }

  .building__body {
    width: 85.715%;
    margin-top: 3.75rem;
    margin-left: auto;
  }

  .building .annotation {
    margin-left: inherit;
    margin-right: inherit;
  }
}

/* building-item
********************************/
.building-item {
  max-width: 100%; 
}

.building-item__fig {
  position: relative;
}

.building-item__data {
  padding: 1.25rem;
}

@media all and (max-width: 374px) {
  .building-item {
    max-width: 240px; 
  }
}

@media all and (max-width: 1023px) {
  .building-item {
    max-width: 325px; 
  }

  .building-item__data {
    min-height: 58vh;
  }
}

@media all and (min-width: 1024px) {
  .building-item {
    max-width: 430px; 
  }
}

/* states (javascript) */
@media all and (min-width: 1024px) {
  .building-item {
    opacity: 0;
  }
}

/* building-data
********************************/
.building-data {
  background-color: var(--base-background-color);
}

.building-data__label {
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
  font-weight: bold;
}

.building-data__upper-info {
  margin-bottom: 1.25rem;
}

.building-data__specs {
  margin-bottom: 3.75rem;  
}

.building-data__bottom-info {
  margin-bottom: 1.25rem;
}

.building-data__cta .c-btn__body {
  color: var(--base-inverted-color);
  background-color: var(--accent-color-2);
}

.building-data .category {
  padding: 0.15rem 1rem 0.2rem;
  color: var(--base-inverted-color);
  background: var(--accent-color-1);
}

.building-data .update-status {
  position: relative;
  margin-left: 1.5rem;
}
.building-data .update-status::before {
  content: "";
  position: relative;
  top: -0.05rem;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  background-image: url(../images/common/update_icn.svg);
}

.building-data .cost {
  font-size: 187.5%;
  font-weight: bold;
  line-height: 1;
}

@media all and (max-width: 1024px) {
  .building-data__cta {
    position: relative;
    left: 0.5rem;
  }
}

/* building-spec
********************************/
.building-spec {
  display: flex;
}

.building-spec[class*="--madori"] dd {
  margin-left: 1rem;
}

/* building-carousel
********************************/
.building-carousel {
  position: relative;
}

.building-carousel__arrows {
  display: flex;
  gap: 1.875rem;
  max-width: 13.375rem;
}

.building-carousel__arrow {
  width: 92px;
  height: 92%;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../images/common/carrousel_1_arrow_icn.svg);
}

.building-carousel__next-arrow {
  transform: scale(-1);
}

@media all and (max-width: 1023px) {
  .building-carousel {
    padding-left: 5.333%;
    padding-right: 5.333%;
    margin-bottom: 1rem;
  }

  .building-carousel__arrows {
    display: none;
    visibility: hidden;
  }

  .building-carousel__progression {
    padding-left: 5.333%;
    padding-right: 5.333%;
    padding-bottom: 8%;
  }
  .building-carousel__progression::before {
    content: "※横スクロールが出来ます。";
    color: currentColor;
  }
  .building-carousel__progression::after {
    content: "";
    position: relative;
    bottom: -0.5rem;
    display: block;
    width: 100%;
    height: 1px;
    margin: auto;
    background: currentColor;
    transform-origin: left 50%;
  }
  
  /* animations */
  @media all and (max-width: 1023px) {
    .building-carousel__progression::after {
      animation: progression-stretching-effect 2s ease-out infinite;
    }
  }
}

@media all and (min-width: 1024px) {
  .building-carousel__arrows {
    position: absolute;
    top: 0;
    right: 5.333%;
    transform: translateY(calc(-100% - 3.75rem));
  }
}

/* state */
.building-carousel__arrow:disabled {
  opacity: 0.25;
  cursor: inherit;
}

/* hover */
@media (hover: hover) {
  .building-carousel__arrow:not(:disabled) {
    transition: all 0.3s ease-in-out;
  }

  .building-carousel__arrow:not(:disabled):hover {
    opacity: 0.8;
    filter: brightness(125%);
  }
}


/**************************************************************
* BUSINESS
**************************************************************/

.business {
  position: relative;
  z-index: 10;
  padding-top: 10%;
  padding-bottom: 10%;
 }
.business::before,
.business::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
}

.business::before {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #cccccc;
  background-image: url(../images/business/slide_1_cover_bg.jpg);
  background-image: url(../images/business/slide_2_cover_bg.jpg);
  background-image: url(../images/business/slide_3_cover_bg.jpg);
  transition: all 0.3s ease-in-out;
}
.business::after {
  background-color: var(--accent-color-2);
  opacity: 0.9;
}

.business[class*="is-slide-1"]::before {
  background-image: url(../images/business/slide_1_cover_bg.jpg);
}
.business[class*="is-slide-2"]::before {
  background-image: url(../images/business/slide_2_cover_bg.jpg);
}
.business[class*="is-slide-3"]::before {
  background-image: url(../images/business/slide_3_cover_bg.jpg);
}

.business .l-heading-block {
  position: relative;
}

.business .c-heading__alphabetic,
.business .c-heading__kana {
  color: var(--base-inverted-color);
}

.business__body {
  margin-top: 3.75rem;
}

@media all and (min-width: 1024px) {
  .business {
    padding-top: 5.25%;
    padding-bottom: 5.25%;
  }

  .business .l-heading-block {
    display: grid;
    justify-content: center;
    text-align: center;
    margin-bottom: 4rem;
  }
}

@media all and (min-width: 1279px) {
  .business {
    height: 100vh;
  }
}

/* states */
@media all and (max-width: 1023px) {
  .business:not(.has-bg-fixed)::before {
    opacity: 0;
  }
  .business.has-bg-fixed::before,
  .business.has-bg-fixed::after {
    position: fixed;
  }
}

/* business-slider
********************************/
.business-slider {
  --slide-counts: 1;
}

.business-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.business-slider__list {
  position: relative;
}

@media all and (max-width: 1279px) {
  /* .business-slider__list {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .business-slider__list > li {
    scroll-snap-align: start;
  } */

  .business-slider__progression {
    display: none;
  }
}

@media all and (min-width: 1280px) {
  .business-slider__progression {
    position: absolute;
    bottom: -4vh;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 99;
    min-width: 300px;
    max-width: 600px;
    height: 4px;
    margin: auto;
    border-radius: 5rem;
    background: #ffffff;
  }
  .business-slider__progression > span {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% / var(--slide-counts));
    height: 100%;
    border-radius: 5rem;
    background-color: var(--accent-color-3);
  }
}

@media all and (min-width: 1920px) {
  .business-slider__progression {
    bottom: -4rem;
  }
}

/* business-item
********************************/
.business-item {
  display: grid;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.business-item__visual {
  position: relative;
}

.business-item__contents {
  padding: 5.333%;
  color: var(--base-inverted-color);
}

.business-item__contents > h3 {
  margin-bottom: 2.5rem;
  font-size: 125%;
  font-weight: bold;
  line-height: 1.2;  
}

@media all and (max-width: 1023px) {
  .business-item {
    padding-left: 5.333%;
    padding-right: 5.333%;
  }
}

@media all and (min-width: 1024px) {
  .business-item {
    grid-template-columns: 1fr 1fr;
  }

  .business-item__contents > h3 {
    font-size: 150%;
  }
}

@media all and (min-width: 1280px) {
  .business-item__contents > h3 {
    font-size: 190%;
  }

  .business-item__contents {
    padding: 10%;
  }

  .business-item__contents > p {
    padding-right: 5.333%;
  }
}


/**************************************************************
* MERITS
**************************************************************/

.merits {
  position: relative;
  overflow: hidden;
  padding-top: 10%;
  background: var(--base-bg, #ffffff);
}

.merits__body {
  padding-left: 5.333%;
  padding-right: 5.333%;
}

.merits .l-heading-block {
  margin-bottom: 4rem;
}

@media all and (min-width: 1024px) {
  .merits {
    padding-top: 5.25%;
    padding-bottom: 5.25%;
  }

  .merits .l-heading-block {
    display: grid;
    justify-content: center;
    text-align: center;
  }
}

/* merits-list
********************************/
.merits-list {
  position: relative;
  counter-reset: merits-counter;
}
.merits-list > li {
  counter-increment: merits-counter;
}
.merits-list > li:not(:last-child) {
  margin-bottom: 5rem;
}

@media all and (min-width: 1024px) and (max-width: 1279px) {
  .merits-list {
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* merit-item
********************************/
.merit-item {
  position: relative;
}

.merit-item__numb {
  position: absolute;
  top: 0;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8rem;
  height: 8rem;
}
.merit-item__numb::before {
  content: counter(merits-counter, decimal-leading-zero);
  font-family: "Seshat", "Simonetta", sans-serif;
  font-size: 2.75rem;
  letter-spacing: inherit;
  line-height: 1;
  color: var(--accent-color-2);
}
.merit-item__numb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../images/merits/point_bg.svg);
}

.merit-item__visual {
  position: relative;
  overflow: hidden;
  display: block;
  opacity: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.merit-item__visual::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: var(--accent-color-2);
  transform-origin: 50% 50%;
  transform: rotate(-45deg) scale(1.75);
}
.merit-item__visual::after {
  content: "";
  display: block;
  padding-top: calc(630/850 * 100%);
}

.merit-item__body {
  padding: 8%;
  background-color: var(--base-background-color);
}
.merit-item__body p {
  opacity: 0;
}

.merit-item__body p + p {
  margin-top: 1.875rem;
}

.merits-list li:nth-child(1) .merit-item__visual {
  background-image: url(../images/merits/item_1_visual_bg.jpg);
}
.merits-list li:nth-child(2) .merit-item__visual {
  background-image: url(../images/merits/item_2_visual_bg.jpg);
}
.merits-list li:nth-child(3) .merit-item__visual {
  background-image: url(../images/merits/item_3_visual_bg.jpg);
}

@media all and (max-width: 1279px) {
  .merit-item__visual::before {
    position: absolute;
  }
  .merit-item__visual::after {
    padding-top: 65%;
  }
  
  .merit-item__numb {
    left: 0;
    transform: translateY(-50%) translateX(-22.5%) scale(0.8);
  }
}

@media all and (min-width: 1280px) {
  .merit-item {
    display: flex;
    gap: 1.25rem;
  }
  .merit-item__numb {
    width: 11.25rem;
    height: 11.25rem;
  }
  .merit-item__numb::before {
    font-size: 3.75rem;
  }

  .merits-list li:nth-child(odd) .merit-item {
    flex-direction: row-reverse;
  }

  .merit-item > * {
    flex: 0 0 calc(50% - 0.625rem);
  }

  .merits-list li:nth-child(even) .merit-item__numb {
    right: 0;
    transform: translateY(-25%) translateX(22.5%);
  }
  .merits-list li:nth-child(odd) .merit-item__numb {
    left: 0;
    transform: translateY(-25%) translateX(-22.5%);
  }
}

/* animations */
.merits-list > li.is-animated .merit-item__visual {
  opacity: 1;
  animation: merit-fadein 0.2s ease-out forwards;
}
.merits-list > li.is-animated .merit-item__visual::before {
  mix-blend-mode: multiply;
  animation: merit-visual-layer-revealing 2s ease-in forwards;
}
.merits-list > li.is-animated .merit-item__body > p {
  animation: merit-fadein 0.35s ease-out forwards;
  animation-delay: 1s;
}

.merit-item__numb::after {
  animation: count-number-rotation 10s linear infinite;
}

@keyframes merit-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes merit-visual-layer-revealing {
  0% {
    opacity: 1;
    clip-path: inset(0% 0% 0% 0%);
  }
  50% {
    opacity: 0.9;
    mix-blend-mode: multiply;
    clip-path: inset(0% 0% 0% 0%);
  }
  60% {
    opacity: 0.9;
    mix-blend-mode: multiply;
    clip-path: inset(0% 0% 0% 0%);
  }
  100% {
    opacity: 0;
    clip-path: inset(100% 0% 0% 0%);
  }
}

@keyframes count-number-rotation {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}

/* merit-title
********************************/
.merit-title {
  position: relative;
  margin-bottom: 1.875rem;
}

.merit-title > span {
  position: relative;
  z-index: 10;
  display: inline-block;
  font-size: 1.18rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #ffffff;
}
.merit-title > span:not(:last-child) {
  margin-bottom: 0.5rem;
}

.merit-title > span mark {
  padding-left: 0.625rem;
  padding-right: 0.25rem;
  padding-bottom: 0.1rem;
  background-image: linear-gradient(var(--accent-color-2), var(--accent-color-2));
}

@media all and (max-width: 1024px) {
  .merit-title > span bdi {
    padding-left: 0.1rem;
  }
}

@media all and (min-width: 1024px) {
  .merit-title > span {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }

  .merit-title > span mark {
    padding-right: 1rem;
  }

  .merit-title > span bdi {
    display: inline-block;
    visibility: hidden;
    width: 0;
  }
}


/**************************************************************
* NEWS
**************************************************************/

.news {
  position: relative;
  padding-bottom: 14%;
  background: var(--base-bg, #ffffff);
}

.news__body {
  position: relative;
}

@media all and (max-width: 1023px) {
  .news {
    padding-top: 10%;
  }

  .news .l-heading-block {
    margin-bottom: 4rem;
  }

  .news__body {
    padding-left: 5.333%;
    padding-right: 5.333%;
  }
}

@media all and (min-width: 1024px) {
  .news {
    display: grid;
    grid-template-columns: 30% 1fr;
    padding-bottom: 5.25%;
    padding-left: 5.25%;
  }

  .news .l-heading-block {
    justify-self: flex-end;
    margin-bottom: inherit;
    margin-right: 6.25rem;
  }
}

@media all and (min-width: 1300px) {
  .news {
    grid-template-columns: 556px 1fr;
  }
}

/* news-list
********************************/
.news-list {
  position: relative;
}

.news-list > li {
  border-top: 2px solid var(--accent-color-2);
  background: #ffffff;
}
.news-list > li:not(:last-child) {
  margin-bottom: 2.5rem;
}

@media all and (min-width: 1024px) {
  .news-list > li {
    border-top: inherit;
    border-left: 4px solid var(--accent-color-2);
  }
}

/* news-data
********************************/
.news-data {
  max-width: 890px;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 36px;
  padding-right: 10%;
}

.news-data dt {
  margin-bottom: 22px;
}
.news-data dt > time {
  display: block;
  margin-bottom: 1.15rem;
  font-family: var(--alphabetic-font-family);
  font-weight: bold;
  line-height: 1;
  color: var(--accent-color-3);
}
.news-data dt > span {
  font-weight: bold;
}


/**************************************************************
* COMPANY
**************************************************************/

.company {
  position: relative;
  padding-top: 10%;
  padding-bottom: 10%;
  background: var(--base-bg, #ffffff);
}

.company .l-heading-block {
  margin-bottom: 4rem;
}

.company .map {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}

.company__body {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media all and (min-width: 1024px) {
  .company {
    padding-top: 5.25%;
    padding-bottom: 5.25%;
  }

  .company .l-heading-block {
    display: grid;
    justify-content: center;
    text-align: center;
  }
}

/* company-info
********************************/
.company-info {
  position: relative;
}
.company-info > li:first-child {
  padding-top: inherit;
}
.company-info > li:last-child {
  padding-bottom: inherit;
}

.company-info__data {
  position: relative;
}

@media all and (max-width: 1023px) {
  .company-info > li:not(:first-child) {
    margin-top: 1.5rem;
  }

  .company-info > li:not(:last-child) .company-info__data {
    border-bottom: 1px solid var(--accent-color-3);
  }

  .company-info__data > dt {
    margin-bottom: 1rem;
  }

  .company-info__data > dd {
    padding-bottom: 2rem;
  }
}

@media all and (min-width: 1024px) {
  .company-info > li {
    position: relative;
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
  .company-info > li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
  }
  .company-info > li:not(:last-child):after {
    background: linear-gradient(to right, var(--accent-color-2) 20%, var(--accent-color-3) 20%);
  }

  .company-info__data {
    display: grid;
    grid-template-columns: 20% 1fr;
    gap: 1rem;
  }
}


/**************************************************************
* CONTACT
**************************************************************/

.contact {
  position: relative;
  padding-top: 10%;
  padding-bottom: 12%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url(../images/contact/bg.jpg);
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent-color-2);
  mix-blend-mode: multiply;
}

.contact .l-heading-block {
  position: relative;
  margin-bottom: 4rem;
}

.contact .c-heading__alphabetic,
.contact .c-heading__kana {
  color: var(--base-inverted-color);
}

.contact__body {
  position: relative;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.contact__lead {
  margin-bottom: 4rem;
  color: var(--base-inverted-color);
}

@media all and (min-width: 1024px) {
  .contact {
    padding-top: 8%;
    padding-bottom: 8%;
  }

  .contact .l-heading-block {
    display: grid;
    justify-content: center;
    text-align: center;
  }
}

@media all and (min-width: 1280px) {
  .contact {
    background-attachment: fixed;
  }
}

/* form components overrides
********************************/
.c-form-control__label {
  color: var(--base-inverted-color);
}

.c-form-control__special-box {
  grid-column: -1 / 1;
}

.c-form-control__textarea:is(.privacy-textarea) {
  padding: 0.75rem 1rem;
  background: var(--base-bg);
}

.c-form-acceptance {
  margin-top: 2.625rem;
}

.c-form-acceptance__label {
  padding-left: 0.25rem;
  color: var(--base-inverted-color);
}

.c-required-mark {
  margin-left: 1.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-radius: 2.5rem;
  border: 1px solid var(--accent-color-1);
  background-color: var(--accent-color-1);
}

@media all and (min-width: 1024px) {
  .form-container {
    margin-top: -2rem;
  }

  [data-layout="bundle"] .c-form-control {
    grid-template-columns: 16rem 1fr;
    gap: 2rem;
    align-items: flex-start;
  }

  .form-submit-area {
    margin-top: 1rem;
    justify-content: inherit;
  }
}