@charset "UTF-8";

/* リキッドレイアウト対応 */
body {
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif !important;
  color: #2D313D;
}

html {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  html {
    font-size: vw(1480, 16);
  }
}

@media screen and (min-width: 1480px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.4s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article>*+* {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.page-header {
  margin: 0 !important;
}

.page .entry-header,
.site-header {
  display: none !important;
}

/*パンクズ調整*/
.main-header-bar.es-header-breadcrumb .es-container {
  max-width: 1400px;
  margin: 0 auto;
}

.page-id-8068 .main-header-bar,
.page-yanagisima-concept .main-header-bar {
  display: none !important;
}

.page-yanagisima a {
  color: #2D313D;
}

.page-yanagisima a:hover {
  text-decoration: none;
}

/****  pc,spだし分け  *****/
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

/*****  タイトル系  *******/
h1,
h2 {
  font-weight: normal;
}

.section-title {
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 5.3333333333vw;
    line-height: 1.7;
  }
}

/***** innerなど余白 *****/
.inner {
  width: 100%;
  max-width: 1450px;
  margin-inline: auto;
  padding-inline: 25px;
}

@media screen and (max-width: 768px) {
  .inner {
    padding-inline: 5.3333333333vw;
  }
}

.p100 {
  padding: 6.25rem 0;
}

@media screen and (max-width: 768px) {
  .p100 {
    padding: 3.125rem 0;
  }
}

.mb0 {
  margin-bottom: 0;
}

.bg-beige {
  background-color: #F5F3EC;
}

/******* flex ******/
.flex {
  display: flex;
}

@media screen and (max-width: 768px) {
  .flex {
    flex-direction: column;
  }
}

/****** font ****/
p {
  font-size: 1rem;
}

/*****スクロール時にふわっと**********/
.fadein {
  transform: translateY(100px);
  opacity: 0;
}

.fadein.scrollin {
  transform: unset;
  opacity: 1;
  transition: 1s;
}

.fadein.scrollin.delay200 {
  transition-delay: 0.2s;
}

/*------------------------
btn
------------------------*/
.btn {
  margin: 0 auto;
  max-width: 25rem;
}

@media (max-width: 1200px) {
  .btn {
    max-width: 18.75rem;
  }
}

@media screen and (max-width: 1200px) and (max-width: 768px) {
  .btn {
    max-width: 16.875rem;
  }
}

.btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  min-height: 4.375rem;
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid #2D313D;
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .btn a {
    font-size: 0.875rem;
    min-height: 3.625rem;
  }
}

@media screen and (max-width: 768px) {
  .btn a {
    font-size: 0.875rem;
    min-height: 3.75rem;
  }
}

.btn a:hover {
  background-color: #2D313D;
  color: #fff;
}

.btn a:hover::before {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translateX(5px) translateY(-50%) rotate(-45deg);
}

.btn a::before {
  display: block;
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 0.6875rem;
  height: 0.6875rem;
  border-right: 1px solid #2D313D;
  border-bottom: 1px solid #2D313D;
  transition: all 0.4s ease;
}

@media (max-width: 1200px) {
  .btn a::before {
    width: 0.625rem;
    height: 0.625rem;
  }
}

@media screen and (max-width: 768px) {
  .btn a::before {
    right: 24px;
    width: 0.5rem;
    height: 0.5rem;
  }
}

.btn.btn--cta a {
  background-color: #DE6027;
  border: none;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .btn.btn--cta a {
    font-size: 1.25rem;
  }
}

.btn.btn--cta a::before {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.fixed-cta-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 10;
  padding: 10px 0;
  transition: all 0.4s ease;
  transform: translateY(100%);
}

p.caution {
  text-align: left;
  font-size: 0.75rem;
  margin: 20px auto;
  font-family: sans-serif;
}

.footer {
  position: relative;
}

.footer__top {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background-color: #fff;
  padding: 6.25rem 3.125rem;
}

@media screen and (max-width: 768px) {
  .footer__top {
    padding: 13.3333333333vw 0;
  }
}

.footer__sub {
  text-align: center;
  font-size: 1rem;
  line-height: 1.4375;
  letter-spacing: 0.02em;
  margin-bottom: 1.5625rem;
}

@media screen and (max-width: 768px) {
  .footer__sub {
    font-size: 4.2666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}

.footer__main {
  width: 17.75rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .footer__main {
    width: 61.8666666667vw;
  }
}

.footer__bottom {
  padding: 1.5625rem 1.25rem;
  background-color: #2D313D;
  color: #fff;
  font-family: sans-serif;
}

@media screen and (max-width: 768px) {
  .footer__bottom {
    padding: 13.3333333333vw 0;
  }
}

.footer__bottom .inner {
  align-items: center;
  justify-content: space-between;
  max-width: 1450px;
}

@media screen and (max-width: 768px) {
  .footer__bottom .inner {
    padding-inline: 3vw;
  }
}

.footer__bottom--left {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

@media screen and (max-width: 768px) {
  .footer__bottom--left {
    flex-direction: column;
    gap: 0rem;
  }
}

.footer__kanachu {
  width: 9.375rem;
}

@media screen and (max-width: 768px) {
  .footer__kanachu {
    width: 40vw;
    margin: 0 auto 13.3333333333vw;
  }
}

@media screen and (max-width: 768px) {
  .footer__bottom--company {
    text-align: center;
  }
}

.footer__bottom--company .main {
  font-size: 1.375rem;
  line-height: 1.5454545455;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .footer__bottom--company .main {
    font-size: 5.3333333333vw;
    margin-bottom: 4vw;
  }
}

.footer__bottom--company .address {
  font-size: 0.75rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .footer__bottom--company .address {
    font-size: 3.2vw;
    margin-bottom: 13.3333333333vw;
  }
}

.footer__bottom--copyright {
  font-size: 1rem;
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
}

@media screen and (max-width: 768px) {
  .footer__bottom--copyright {
    font-size: 3.2vw;
  }
}

body.is-menu-open .header .headerSp__nav {
  right: 0;
}

body.is-menu-open .header .header__btn {
  right: 512px;
}

@media screen and (max-width: 768px) {
  body.is-menu-open .header .header__btn {
    right: 0;
  }
}

@media screen and (max-width: 768px) {
  body.is-menu-open button.header__btn {
    background-color: #2D313D !important;
  }

  body.is-menu-open button.header__btn:hover {
    background-color: #2D313D;
  }
}

body.is-menu-open .nav_bg {
  opacity: 1;
  visibility: visible;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.header__inner {
  width: 100%;
  height: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 0 19px;
}

@media screen and (max-width: 768px) {
  .header__inner {
    padding: 13px 0 0 12px;
  }
}

.header__title a {
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .header__title a {
    font-size: 0.875rem;
  }
}

.header__right {
  position: fixed;
  top: 0;
  right: 70px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .header__right {
    display: none;
  }
}

.header__right .btn.btn--cta {
  width: 7.5rem;
}

.header__right .btn.btn--cta a {
  font-size: 1rem;
}

.header__right .btn.btn--cta a::before {
  display: none;
}

.header__outline {
  font-size: 1rem;
  font-weight: 500;
  margin-right: 0.9375rem;
}

button.header__btn:focus,
button.header__btn:hover {
  border-color: #fff;
  background-color: #fff !important;
}

.header__btn {
  width: 70px;
  height: 70px;
  position: fixed;
  top: 0px;
  right: 0px;
  background-color: #fff;
  transition: all 0.4s ease;
  z-index: 100;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .header__btn {
    width: 60px;
    height: 60px;
  }
}

.header__btn span {
  width: 42.8571428571%;
  height: 3px;
  background-color: #2D313D;
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .header__btn span {
    width: 54%;
  }
}

.header__btn span:nth-child(1) {
  top: 25px;
}

@media screen and (max-width: 768px) {
  .header__btn span:nth-child(1) {
    top: 21px;
  }
}

.header__btn span:nth-child(2) {
  top: 33px;
}

@media screen and (max-width: 768px) {
  .header__btn span:nth-child(2) {
    top: 29px;
  }
}

.header__btn span:nth-child(3) {
  top: 41px;
}

@media screen and (max-width: 768px) {
  .header__btn span:nth-child(3) {
    top: 37px;
  }
}

body.is-menu-open .header__btn span:nth-child(1) {
  transform: rotate(-45deg);
  top: 33px;
}

@media screen and (max-width: 768px) {
  body.is-menu-open .header__btn span:nth-child(1) {
    top: 30px;
    background-color: #fff;
  }
}

body.is-menu-open .header__btn span:nth-child(2) {
  display: none;
}

body.is-menu-open .header__btn span:nth-child(3) {
  transform: rotate(45deg);
  top: 33px;
}

@media screen and (max-width: 768px) {
  body.is-menu-open .header__btn span:nth-child(3) {
    top: 30px;
    background-color: #fff;
  }
}

/*
  -----------------------------------
sp
  -----------------------------------
  */
.headerSp__nav {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  width: 510px;
  height: 100%;
  background-color: rgb(255, 255, 255);
  transition: all 0.2s ease;
  overflow-y: scroll;
}

@media screen and (max-width: 768px) {
  .headerSp__nav {
    width: 100%;
  }
}

.headerSp__nav .nav_logo {
  display: block;
  width: 15.75rem;
  margin: 0 auto 6.0185185185vh;
}

@media screen and (max-width: 768px) {
  .headerSp__nav .nav_logo {
    width: 53.3333333333vw;
    margin: 0 auto 15.4666666667vw;
  }
}

.headerSp__nav .header__nav-items {
  width: 100%;
  text-align: center;
  padding-block: 5.5555555556vh;
}

@media screen and (max-width: 768px) {
  .headerSp__nav .header__nav-items {
    padding-block: 10.1333333333vw;
  }
}

.headerSp__nav .header__nav-items .btn {
  margin-top: 8.7962962963vh;
}

@media screen and (max-width: 768px) {
  .headerSp__nav .header__nav-items .btn {
    margin-top: 16vw;
  }
}

.headerSp__nav .header__nav-item {
  margin-bottom: 4.2592592593vh;
}

@media screen and (max-width: 768px) {
  .headerSp__nav .header__nav-item {
    margin-bottom: 9.6vw;
  }
}

.headerSp__nav .header__nav-item a {
  font-size: 1.375rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #2D313D;
}

.headerSp__nav .header__nav-item a:hover {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .headerSp__nav .header__nav-item a {
    font-size: 4.8vw;
  }
}

.nav_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - 510px);
  height: 100%;
  opacity: 0;
  visibility: hidden;
}

.nav_bg img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36.0283687943%;
  max-width: 31.75rem;
}

.nav_bg::before {
  display: block;
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(45, 49, 61, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: calc(100% - 510px);
  height: 100%;
}

.mv {
  position: relative;
  width: 100%;
  height: 100vh;
}

.mv__container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.mv__image {
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.mv__image.active {
  animation: 5s zoomFadeIn forwards;
}

@keyframes zoomFadeIn {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  20% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.mv__text {
  width: 30.8333333333vw;
  max-width: 592px;
  position: absolute;
  top: 11vw;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .mv__text {
    width: 71.4666666667vw;
    top: 48vw;
  }
}

/*------------------------
top-concept
------------------------*/
.top-concept {
  position: relative;
  overflow: clip;
}

.top-concept.fixed-bg .top-concept__bg {
  position: fixed;
  top: 0;
  bottom: auto;
}

.top-concept.fixed-bottom .top-concept__bg {
  position: absolute;
  bottom: 0;
  top: auto;
}

.top-concept__bg {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.top-concept__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-concept__container {
  position: relative;
  z-index: 2;
  padding-top: 100vh;
}

.top-concept__catch {
  color: #fff;
  text-align: center;
}

.top-concept__catch.--01 {
  padding-top: 14.375%;
  font-size: 4.0625rem;
  line-height: 1;
  margin-bottom: 7.0625rem;
}

@media screen and (max-width: 768px) {
  .top-concept__catch.--01 {
    font-size: 9.6vw;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 9.6vw;
  }
}

.top-concept__catch.--02 {
  font-size: 1.5rem;
  line-height: 2.5;
  letter-spacing: 0.1em;
  margin-bottom: 7.0625rem;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .top-concept__catch.--02 {
    font-size: 4.8vw;
    line-height: 2.2222222222;
    margin-bottom: 13.3333333333vw;
  }
}

.top-concept__catch.--03 {
  font-size: 3.75rem;
  line-height: 1;
  margin-bottom: 15.3125rem;
}

@media screen and (max-width: 768px) {
  .top-concept__catch.--03 {
    font-size: 9.6vw;
    margin-bottom: 26.6666666667vw;
  }
}

.top-concept__catch.--04 {
  width: 31.1458333333%;
  margin: 0 auto 3.9375rem;
}

@media screen and (max-width: 768px) {
  .top-concept__catch.--04 {
    width: 57.8666666667vw;
    margin-bottom: 6.9333333333vw;
  }
}

.top-concept__catch.--05 {
  font-size: 2.5rem;
  line-height: 1;
  padding-bottom: 5rem;
}

@media screen and (max-width: 768px) {
  .top-concept__catch.--05 {
    font-size: 5.3333333333vw;
  }
}

.top-concept__container .btn {
  padding-bottom: 5%;
}

.top-concept__container .btn a {
  background-color: #fff;
  color: #2D313D;
  font-size: 1rem;
}

.top-concept__container .btn a:hover:before {
  border-right: 1px solid #2D313D;
  border-bottom: 1px solid #2D313D;
}

.top-concept__img {
  position: absolute;
}

.top-concept__img img {
  height: auto;
}

.top-concept__img.--01 {
  top: 118vh;
  width: 20.8333333333%;
  left: -5vw;
}

@media screen and (max-width: 768px) {
  .top-concept__img.--01 {
    width: 53.3333333333vw;
    left: -33vw;
  }
}

.top-concept__img.--02 {
  top: 140vh;
  right: 3vw;
  width: 15.625%;
}

@media screen and (max-width: 768px) {
  .top-concept__img.--02 {
    width: 40vw;
    right: -27vw;
  }
}

.top-concept__img.--03 {
  top: 160vh;
  left: 8vw;
  width: 20.8333333333%;
}

@media screen and (max-width: 768px) {
  .top-concept__img.--03 {
    top: 213vh;
    width: 40vw;
    left: -22vw;
  }
}

.top-concept__img.--04 {
  top: 178vh;
  width: 20.8333333333%;
  right: 8vw;
}

@media screen and (max-width: 768px) {
  .top-concept__img.--04 {
    top: 173vh;
    width: 36vw;
    right: -21vw;
  }
}

.top-concept__img.--05 {
  top: 195vh;
  width: 20.8333333333%;
  left: 2.5vw;
}

@media screen and (max-width: 768px) {
  .top-concept__img.--05 {
    top: 196vh;
    width: 44.833333%;
    left: -30.5vw;
  }
}

/*------------------------
information
------------------------*/
.information {
  padding: 5.25rem 0 9.375rem;
  background:url(https://www.kanachu-fudosan.jp/app/uploads/sites/899/2026/06/yanagisima_info_bg04.png)no-repeat right bottom;
}
.information .inner{
  background:
  url(https://www.kanachu-fudosan.jp/app/uploads/sites/899/2026/06/yanagisima_info_bg01.png)no-repeat left top,
  url(https://www.kanachu-fudosan.jp/app/uploads/sites/899/2026/06/yanagisima_info_bg02.png)no-repeat right 35%,
  url(https://www.kanachu-fudosan.jp/app/uploads/sites/899/2026/06/yanagisima_info_bg03.png)no-repeat left 65%;
  background-size: 12%, 18%, 10%;
}
@media screen and (max-width: 768px) {
  .information {
    padding: 5.3333333333vw 0 22.6666666667vw;
    background:url(https://www.kanachu-fudosan.jp/app/uploads/sites/899/2026/06/yanagisima_info_bg04.png)no-repeat right bottom;
    background-size: 80%;

  }
  
.information .inner{
  background-size: 25%, 30%, 25%;
}
  
  
}
.information .section-title{
  margin-bottom:0;
}

.information__item {
  padding: 3.125rem 0;
  border-bottom: 1px solid #D9D9D9;
}

@media screen and (max-width: 768px) {
  .information__item {
    padding: 8vw 0;
  }
}

.information__item:last-child {
  border-bottom: none;
}

.information__time {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.625rem;
  text-align: center;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .information__time {
    font-size: 4.2666666667vw;
    font-weight: normal;
    margin-bottom: 2.6666666667vw;
  }
}

.information__title {
  font-size: 1.875rem;
  line-height: 1.1333333333;
  letter-spacing: 0.2em;
  margin-bottom: 0.625rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .information__title {
    font-size: 5.8666666667vw;
    line-height: 1.5454545455;
    letter-spacing: 0.1em;
    margin-bottom: 5.3333333333vw;
  }
}

.information__text {
  font-size: 1rem;
  line-height: 2.125;
  margin-bottom: 3.125rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .information__text {
    font-size: 3.7333333333vw;
    line-height: 1.5714285714;
    margin-bottom: 5.3333333333vw;
  }
}

/*------------------------
cta
------------------------*/
.cta {
  padding: 6.25rem 0;
  background-color: #2D313D;
}

@media screen and (max-width: 768px) {
  .cta {
    padding: 13.3333333333vw 0;
  }
}

.cta .inner {
  max-width: 1050px;
}

.cta__container {
  background-color: #fff;
  padding: 3.125rem 1.25rem;
}

@media screen and (max-width: 768px) {
  .cta__container {
    padding: 6.9333333333vw;
  }
}

.cta__top {
  font-size: 1rem;
  line-height: 1.4375;
  text-align: center;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .cta__top {
    font-size: 4.2666666667vw;
  }
}

.cta__container .cta__tel {
  font-size: 3.125rem;
  line-height: 1.44;
  text-align: center;
  margin-bottom: 1.125rem;
}

@media screen and (max-width: 768px) {
  .cta__tel {
    font-size: 8vw;
    margin-bottom: 1.3333333333vw;
  }
}

.cta__tel img {
  display: inline-block;
  width: 4.125rem;
}

@media screen and (max-width: 768px) {
  .cta__tel img {
    width: 12.2666666667vw;
  }
}

.cta__time {
  font-family: sans-serif;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.02em;
  text-align: center;
  font-weight: 500;
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 768px) {
  .cta__time {
    font-size: 2.9333333333vw;
    margin-bottom: 6.6666666667vw;
  }
}

/*------------------------
top-link
------------------------*/
.top-link {
  padding: 12.5rem 1.25rem;
}

@media screen and (max-width: 768px) {
  .top-link {
    padding: 13.3333333333vw 0;
  }
}

.top-link .inner {
  max-width: 1250px;
}

.top-link.--main {
  background: no-repeat center/cover url(https://www.kanachu-fudosan.jp/app/uploads/sites/899/2025/12/top-link_bg01.jpg);
}

.top-link.--main .number {
  right: 3%;
}

.top-link.--01 {
  background: no-repeat center/cover url(https://www.kanachu-fudosan.jp/app/uploads/sites/899/2025/12/top-link_bg02.jpg);
  padding-bottom: 24vw;
}

.top-link.--01 .number {
  left: 3%;
}

@media screen and (max-width: 768px) {
  .top-link.--01 .number {
    right: 3%;
    left: auto;
  }
}

.top-link.--01 .top-link__container {
  padding: 7.5rem 1.25rem;
}

.top-link.--01 .top-link__container .title {
  margin-bottom: 5rem;
}

.top-link.--01 .top-link__container .catch {
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
.top-link.--01 .top-link__container {
    padding: 2.5rem 1.25rem 5.5rem;
}
}

.top-link__container {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 3.25rem 1.25rem 6.25rem;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 768px) {
  .top-link__container {
    padding: 8vw 5vw 25vw;
  }
}

.top-link__container .number {
  position: absolute;
  bottom: 0;
  display: block;
  width: 17.625rem;
}

@media screen and (max-width: 768px) {
  .top-link__container .number {
    width: 37.8666666667vw;
  }
}

.top-link__container .number img {
  height: auto;
}

.top-link__container .title {
  font-size: 2.5rem;
  line-height: 2.8;
  letter-spacing: 0.1em;
  margin-bottom: 3.125rem;
}
.top-link__container .title span{
  font-size: 2.0rem;
}

@media screen and (max-width: 768px) {
  .top-link__container .title {
    font-size: 6.9333333333vw;
    letter-spacing: 0.05em;
    margin-bottom: 5.3333333333vw;
  }
  .top-link__container .title span{
    font-size: 5.933333vw;
  }

}
.top-link__container .number img {
  height: auto;
}

.top-link.--01.landscape .top-link__container .title {
  line-height: 2;
  margin-bottom: 2rem;
}
.top-link.--01.landscape .top-link__container .catch {
    margin-bottom: 4rem;
}



.top-link__container .catch {
  font-size: 1.5rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  margin-bottom: 3.125rem;
}

@media screen and (max-width: 768px) {
  .top-link__container .catch {
    font-size: 4.8vw;
    line-height: 1.5555555556;
    margin-bottom: 5.3333333333vw;
  }
}

.top-link__container .desc {
  font-size: 1rem;
  line-height: 2.125;
  letter-spacing: 0.05em;
  margin-bottom: 3.125rem;
}

@media screen and (max-width: 768px) {
  .top-link__container .desc {
    font-size: 3.7333333333vw;
    line-height: 2;
    letter-spacing: normal;
    margin-bottom: 8vw;
  }
}

.top-linkItem {
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
}

@media screen and (max-width: 768px) {
  .top-linkItem {
    flex-direction: column;
    padding: 21.3333333333vw 5.8666666667vw 13.3333333333vw;
    position: relative;
  }
}

.top-linkItem.--imgRight {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .top-linkItem.--imgRight {
    flex-direction: column;
    background-color: #2D313D;
  }
}

.top-linkItem.--imgRight .top-linkItem__text {
  background-color: #2D313D;
  color: #fff !important;
}

.top-linkItem.--imgRight .top-linkItem__wrap .title {
  color: #fff;
}

.top-linkItem.--imgRight .btn a {
  color: #fff;
  border: 1px solid #fff;
}

.top-linkItem.--imgRight .btn a::before {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.top-linkItem.--imgRight .btn a:hover {
  background-color: #fff;
  color: #2D313D;
}

.top-linkItem.--imgRight .btn a:hover:before {
  border-right: 1px solid #2D313D;
  border-bottom: 1px solid #2D313D;
}

.top-linkItem.--imgRight .top-linkItem__number {
  left: auto;
  right: 0.625rem;
}

@media screen and (max-width: 768px) {
  .top-linkItem.--imgRight .top-linkItem__number {
    right: 5.8666666667vw;
  }
}

.top-linkItem__img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .top-linkItem__img {
    margin-bottom: 8vw;
  }
}

.top-linkItem__text {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  padding-inline: 20px;
}

@media screen and (max-width: 768px) {
  .top-linkItem__text {
    position: static;
    padding-inline: 0;
  }
}

.top-linkItem__wrap .title {
  font-size: 1.875rem;
  line-height: 1.1333333333;
  letter-spacing: 0.2em;
  margin-bottom: 0.625rem;
  text-align: center;
}

@media (max-width: 1200px) {
  .top-linkItem__wrap .title {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .top-linkItem__wrap .title {
    font-size: 7.4666666667vw;
    letter-spacing: 0.1em;
    margin-bottom: 3.2vw;
  }
}

.top-linkItem__wrap .sub {
  text-align: center;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 3.125rem;
}

@media (max-width: 1200px) {
  .top-linkItem__wrap .sub {
    margin-bottom: 1.875rem;
  }
}

@media screen and (max-width: 768px) {
  .top-linkItem__wrap .sub {
    font-size: 3.7333333333vw;
    margin-bottom: 8vw;
  }
}

.top-linkItem__wrap .desc {
  font-size: 1rem;
  line-height: 2.125;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 3.125rem;
}

@media (max-width: 1200px) {
  .top-linkItem__wrap .desc {
    margin-bottom: 1.875rem;
  }
}

@media screen and (max-width: 768px) {
  .top-linkItem__wrap .desc {
    text-align: left;
    font-size: 3.7333333333vw;
    line-height: 2;
    margin-bottom: 8vw;
  }
}

.top-linkItem__number {
  width: 28.4375%;
  position: absolute;
  bottom: 0;
  left: 0.625rem;
}

@media screen and (max-width: 768px) {
  .top-linkItem__number {
    width: 37.3333333333vw;
    bottom: auto;
    top: 2.6666666667vw;
    left: auto;
    right: 5.8666666667vw;
  }
}

/*------------------------
hello! new standard
------------------------*/
.top-new {
  padding: 6.25rem 0;
}

@media screen and (max-width: 768px) {
  .top-new {
    padding: 13.3333333333vw 0;
  }
}

.top-new .inner {
  max-width: 1450px;
}

@media screen and (max-width: 768px) {
  .top-new .inner {
    padding-inline: 0;
  }
}

.top-new__catch {
  font-size: 1.75rem;
  line-height: 2.1428571429;
  letter-spacing: 0.05em;
  text-align: center;
  font-weight: 500;
  margin-bottom: 4.375rem;
}

@media screen and (max-width: 768px) {
  .top-new__catch {
    font-size: 5.8666666667vw;
    line-height: 1.8181818182;
    margin-bottom: 13.3333333333vw;
  }
}

.top-new__imgs {
  margin-bottom: 3.125rem;
  display: flex;
}

@media screen and (max-width: 768px) {
  .top-new__imgs {
    margin-bottom: 8vw;
  }
}

.top-new__imgs .img {
  width: 100%;
}

.top-new__desc {
  align-items: center;
}

@media screen and (max-width: 768px) {
  .top-new__desc {
    padding-inline: 4.8vw;
    align-items: start;
  }
}

.top-new__desc .img {
  width: 32.1428571429%;
}

@media screen and (max-width: 768px) {
  .top-new__desc .img {
    width: 67.4666666667vw;
    margin-bottom: 8vw;
  }
}

.top-new__desc .desc {
  font-size: 1.375rem;
  line-height: 1.8181818182;
  margin-left: auto;
  width: 58.5714285714%;
}

@media screen and (max-width: 768px) {
  .top-new__desc .desc {
    width: 100%;
    font-size: 4.8vw;
    margin-left: 0;
  }
}

/*------------------------
style
------------------------*/
.top-style {
  position: relative;
  /*height: 200vh;*/
  height: auto;
}

@media screen and (max-width: 768px) {
  .top-style {
    height: auto;
    padding-inline: 0 !important;
  }
}

.top-style__container {
  width: 100%;
  height: 100%;
  position: relative;
}

.top-style__pagination {
  position: absolute;
  top: 43vh;
  right: 23px;
  z-index: 3;
}

.top-style__pagination span {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #fff;
}

.top-style__pagination span+span {
  margin-top: 18px;
}

.top-style__pagination span.active {
  background-color: #DE6027;
}

.top-style__bg.fixed+.top-style__pagination {
  position: fixed;
}

.top-style__bg.bg-bottom+.top-style__pagination {
  top: auto;
  bottom: 48vh;
}

.top-style__bg {
  width: 100%;
  /*height: 100vh;*/
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.top-style__bg.fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.top-style__bg.bg-bottom {
  top: auto;
  bottom: 0;
}

.top-style__bg .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top-style__bg .img.active img {
  opacity: 1;
}

.top-style__bg .img img {
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: all 0.4s ease;
}

.top-style__slides {
  width: 100%;
  position: relative;
  z-index: 2;
  /*height: 200vh;*/
  height: auto;
  
  
}

@media screen and (max-width: 768px) {
  .top-style__slides {
    height: auto;
  }
}

.top-style__slide {
  width: 100%;
  /*height: 100vh;*/
  height: auto;
  display: flex;
  position: relative;
  background: url(https://www.kanachu-fudosan.jp/app/uploads/sites/899/2025/11/mv-img01.jpg);
  background-size: cover;
  background-position: center bottom;
}
.top-style__slide + .top-style__slide {
  background: url(https://www.kanachu-fudosan.jp/app/uploads/sites/899/2025/11/mv-img02.jpg);
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .top-style__slide {
    height: auto;
    flex-direction: column;
    padding: 13.3333333333vw 0;
  }
}

.top-style__line {
  width: 26.0416666667%;
  margin-left: auto;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .top-style__line {
    width: 88vw;
    margin-right: auto;
    padding: 8vw 5.3333333333vw;
  }
}

.top-style__line .title {
  font-size: clamp(30px, 2.1vw, 32px);
  line-height: 1;
  font-weight: 600;
  margin: 8vh auto 3vh;
  padding-inline: 7%;
}

@media screen and (max-width: 768px) {
  .top-style__line .title {
    text-align: left;
    font-size: 6.4vw;
    line-height: 1.4166666667;
    margin: 0 0 2.6666666667vw;
    padding-inline: 0;
  }
}

.top-style__line .title .small {
  display: block;
  font-size: clamp(20px, 1.5vw, 22px);
}

@media screen and (max-width: 768px) {
  .top-style__line .title .small {
    font-size: 4.2666666667vw;
  }
}

.top-style__line .detail {
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  padding-inline: 7%;
  margin-bottom: 5vh;
}

@media screen and (max-width: 768px) {
  .top-style__line .detail {
    font-size: 3.7333333333vw;
    margin-bottom: 5.3333333333vw;
    padding-inline: 0;
  }
}

.top-style__line .floor {
  width: 50%;
  height: 60vh;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .top-style__line .floor {
    width: 100%;
    height: auto;
  }
}

.top-style__line .floor img {
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .top-style__line .floor img {
    width: 80%;
    height: auto;
  }
}

.top-style__gray {
  width: 60.4166666667%;
  color: #fff;
  background-color: rgba(45, 49, 61, 0.8);
  mix-blend-mode: multiply;
  mix-blend-mode: inherit;
  position: relative;
  z-index: 1;
  padding: 9.2592592593vh;
  padding: 6.2592592593vh;
  padding: 6.2592592593vh 32.259259vh 6.2592592593vh 6.2592592593vh;
}

@media screen and (max-width: 768px) {
  .top-style__gray {
    width: 88vw;
    margin: 0 auto;
    padding: 8vw 5.3333333333vw;
  }
}

.top-style__gray .btn a{
  font-size:1rem;
  background: #fff;
}

.top-style__gray .btn a:hover {
    background: #2D313D;
    color: #fff;
}

.top-style__gray .catch {
  font-size: clamp(30px, 2.5vw, 40px);
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 3vh;
  display: flex;
  align-items: center;
  gap: 2.25rem;
  /*max-width: 84%;*/
  max-width: 100%;
}
.top-style__gray p.caution{
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif !important;
}

@media screen and (max-width: 768px) {
  .top-style__gray .catch {
    flex-direction: column;
    gap: 0rem;
    justify-content: space-between;
    font-size: 5.0666666667vw;
    margin-bottom: 18.6666666667vw;
    max-width: 100%;
  }
}

.top-style__gray .catch .icon {
  /*width: 26%;*/
  width: 18.75%;
  max-width: 12.5rem;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .top-style__gray .catch .icon {
    margin-top: -14vw;
    margin-left: auto;
  }
}

.top-style__gray .desc {
  display: block;
  font-size: 1rem;
  line-height: 1.5625;
  letter-spacing: 0.05em;
  margin-top: 1em;
}

@media screen and (max-width: 768px) {
  .top-style__gray .desc {
    font-size: 3.4666666667vw;
    line-height: 1.8461538462;
    min-height: auto;
    margin-top: 8vw;
  }
}

.top-style__img {
  width: 100%;
  margin-bottom: 1.875rem;
  max-width: 800px;
}

@media screen and (max-width: 768px) {
  .top-style__img {
    width: 100%;
    height: auto;
    margin-bottom: 8vw;
  }
}

.top-style__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
}

.top-style__img+.caution {
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
  font-family: serif;
}

.top-style__logo {
  height: 25vh;
  margin: 6vh auto 5vh;
}

@media screen and (max-width: 768px) {
  .top-style__logo {
    width: 62.9333333333vw;
    height: auto;
    margin: 0 auto 2.6666666667vw;
  }
}

.top-style__logo img {
  width: auto;
  height: 100%;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .top-style__logo img {
    width: 100%;
    height: auto;
  }
}

/*------------------------
links
------------------------*/
.page-id-8068 .links {
  background-color: #F4F3F0;
}

.links {
  padding: 6.25rem 1.25rem;
}

@media screen and (max-width: 768px) {
  .links {
    padding: 13.3333333333vw 0;
  }
}

.links .inner {
  max-width: 1450px;
}

.links__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

@media screen and (max-width: 768px) {
  .links__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}

.links__items .item {
  display: block;
  position: relative;
}

.links__items .item::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  opacity: 1;
}

.links__items .item .overlay {
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.links__items .item:last-child .overlay {
  display: none;
}
.links__items .item:last-child::before{
  display: none;
}
/*
.links__items .item:last-child::after{
  display: none;
}
*/
.links__items .item:last-child .overlay .border {
  display: none;
}
/*
.links__items .item .coming-soon {
  background-color: rgb(110 111 113 / 43%);
}
*/

@media screen and (max-width: 768px) {
  .links__items .item .overlay {
    padding: 0;
  }
}

.links__items .item .overlay .border {
  position: absolute;
  top: 15px;
  left: 15px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  display: none;
}

@media screen and (max-width: 768px) {
  .links__items .item .overlay .border {
    width: calc(100% - 5vw);
    height: calc(100% - 5vw);
    top: 2.5vw;
    left: 2.5vw;
  }
}

.links__items .item .overlay .border::before,
.links__items .item .overlay .border::after {
  display: block;
  content: "";
  position: absolute;
  transition: all 0.4s ease;
}

.links__items .item .overlay .border::before {
  top: 0;
  right: 0;
  /*width: 0;
  height: 0;*/
  width: 100%;
  height: 100%;
  border-top: 4px solid #2D313D;
  border-right: 4px solid #2D313D;
}

@media screen and (max-width: 768px) {
  .links__items .item .overlay .border::before {
    border-top: 2px solid #2D313D;
    border-right: 2px solid #2D313D;
  }
}

.links__items .item .overlay .border::after {
  bottom: 0;
  left: 0;
  /*width: 0;
  height: 0;*/
  width: 100%;
  height: 100%;
  border-bottom: 4px solid #2D313D;
  border-left: 4px solid #2D313D;
}

@media screen and (max-width: 768px) {
  .links__items .item .overlay .border::after {
    border-bottom: 2px solid #2D313D;
    border-left: 2px solid #2D313D;
  }
}

.links__items .item .overlay .text {
    padding: 1.5625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    background-color: rgb(255 255 255 / 62%);
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);

}
@media screen and (max-width: 768px) {
  .links__items .item .overlay .text {
    padding: 2.6666666667vw;
  }
}
.links__items .item:last-child .overlay .text{
  display: none;
  
}


.links__items .item .overlay .text .main {
  display: block;
  font-size: 1.625rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}

@media screen and (max-width: 768px) {
  .links__items .item .overlay .text .main {
    font-size: 4.2666666667vw;
  }
}

.links__items .item .overlay .text .desc {
  font-size: 0.875rem;
  line-height: 2.1428571429;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 768px) {
  .links__items .item .overlay .text .desc {
    font-size: 2.6666666667vw;
    line-height: 1.1;
  }
}

.links__items .item .coming-soon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(45, 49, 61, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  text-transform: uppercase;
  display: none;
}

@media screen and (max-width: 768px) {
  .links__items .item .coming-soon {
    font-size: 4.2666666667vw;
  }
}

.links__items .item:hover::before,
.links__items .item.hover-active::before {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.links__items .item:hover .overlay,
.links__items .item.hover-active .overlay {
  opacity: 1;
}

.links__items .item:hover .overlay .border::before,
.links__items .item.hover-active .overlay .border::before {
  width: 100%;
  height: 100%;
}

.links__items .item:hover .overlay .border::after,
.links__items .item.hover-active .overlay .border::after {
  width: 100%;
  height: 100%;
}

/*------------------------
mv svg anime
------------------------*/
.mv__text svg {
  width: 100%;
}

.mv__text svg .svg-elem-1 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
}

.mv__text svg.active .svg-elem-1 {
  fill: rgb(45, 49, 61);
}

.mv__text svg .svg-elem-2 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
}

.mv__text svg.active .svg-elem-2 {
  fill: rgb(45, 49, 61);
}

.mv__text svg .svg-elem-3 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
}

.mv__text svg.active .svg-elem-3 {
  fill: rgb(45, 49, 61);
}

.mv__text svg .svg-elem-4 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
}

.mv__text svg.active .svg-elem-4 {
  fill: rgb(45, 49, 61);
}

.mv__text svg .svg-elem-5 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
}

.mv__text svg.active .svg-elem-5 {
  fill: rgb(45, 49, 61);
}

.mv__text svg .svg-elem-6 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
}

.mv__text svg.active .svg-elem-6 {
  fill: rgb(45, 49, 61);
}

.mv__text svg .svg-elem-7 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s;
}

.mv__text svg.active .svg-elem-7 {
  fill: rgb(45, 49, 61);
}

.mv__text svg .svg-elem-8 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
}

.mv__text svg.active .svg-elem-8 {
  fill: rgb(45, 49, 61);
}

.mv__text svg .svg-elem-9 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
}

.mv__text svg.active .svg-elem-9 {
  fill: rgb(45, 49, 61);
}

.mv__text svg .svg-elem-10 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s;
}

.mv__text svg.active .svg-elem-10 {
  fill: rgb(45, 49, 61);
}

.mv__text svg .svg-elem-11 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s;
}

.mv__text svg.active .svg-elem-11 {
  fill: rgb(45, 49, 61);
}

.mv__text svg .svg-elem-12 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s;
}

.mv__text svg.active .svg-elem-12 {
  fill: rgb(45, 49, 61);
}

.mv__text svg .svg-elem-13 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s;
}

.mv__text svg.active .svg-elem-13 {
  fill: rgb(45, 49, 61);
}

.mv__text svg .svg-elem-14 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s;
}

.mv__text svg.active .svg-elem-14 {
  fill: rgb(45, 49, 61);
}

.mv__text svg .svg-elem-15 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s;
}

.mv__text svg.active .svg-elem-15 {
  fill: rgb(45, 49, 61);
}

.mv__text svg .svg-elem-16 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s;
}

.mv__text svg.active .svg-elem-16 {
  fill: rgb(45, 49, 61);
}

.mv__text svg .svg-elem-17 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s;
}

.mv__text svg.active .svg-elem-17 {
  fill: rgb(45, 49, 61);
}

.mv__text svg .svg-elem-18 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s;
}

.mv__text svg.active .svg-elem-18 {
  fill: rgb(45, 49, 61);
}

.mv__text svg .svg-elem-19 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s;
}

.mv__text svg.active .svg-elem-19 {
  fill: rgb(45, 49, 61);
}

.mv__text svg .svg-elem-26 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s;
}

.mv__text svg.active .svg-elem-27 {
  fill: rgb(45, 49, 61);
}

.mv__text svg .svg-elem-29 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s;
}

.mv__text svg.active .svg-elem-29 {
  fill: rgb(45, 49, 61);
}

.mv__text svg .svg-elem-49 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.9s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.9s;
}

.mv__text svg.active .svg-elem-49 {
  fill: rgb(45, 49, 61);
}

.mv__text svg .svg-elem-52 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3s;
}

.mv__text svg.active .svg-elem-52 {
  fill: rgb(45, 49, 61);
}

.mv__text svg .svg-elem-53 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.1s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.1s;
}

.mv__text svg.active .svg-elem-53 {
  fill: rgb(45, 49, 61);
}

/*------------------------
concept
------------------------*/
#concept {
  overflow: clip;
  position: relative;
  background: linear-gradient(to bottom, #5990C4 0%, #87CCF3 100%);
}

.concept__catch {
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}

.concept__catch.--01 {
  padding-top: 14.375%;
  font-size: 4.0625rem;
  line-height: 1;
  margin-bottom: 7.0625rem;
}

@media screen and (max-width: 768px) {
  .concept__catch.--01 {
    padding-top: 37vw;
    font-size: 9.6vw;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 9.6vw;
  }
}

.concept__catch.--02 {
  font-size: 1.5rem;
  line-height: 2.5;
  letter-spacing: 0.1em;
  margin-bottom: 7.0625rem;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .concept__catch.--02 {
    font-size: 4.8vw;
    line-height: 2.2222222222;
    margin-bottom: 13.3333333333vw;
  }
}

.concept__catch.--03 {
  font-size: 3.75rem;
  line-height: 1;
  margin-bottom: 11.25rem;
}

@media screen and (max-width: 768px) {
  .concept__catch.--03 {
    font-size: 9.6vw;
    margin-bottom: 26.6666666667vw;
  }
}

.concept__catch.--04 {
  width: 31.1458333333%;
  margin: 0 auto 3.9375rem;
}

@media screen and (max-width: 768px) {
  .concept__catch.--04 {
    width: 57.8666666667vw;
    margin-bottom: 6.9333333333vw;
  }
}

.concept__catch.--05 {
  font-size: 2.5rem;
  line-height: 1;
  padding-bottom: 18.75rem;
}

@media screen and (max-width: 768px) {
  .concept__catch.--05 {
    font-size: 5.3333333333vw;
    padding-bottom: 25vw;
  }
}

.concept__img {
  position: absolute;
}

.concept__img img {
  height: auto;
}

.concept__img.--01 {
  top: 83vh;
  width: 25rem;
  left: 0vw;
}

@media (max-width: 1024px) {
  .concept__img.--01 {
    width: 12.5rem;
  }
}

@media screen and (max-width: 768px) {
  .concept__img.--01 {
    width: 53.3333333333vw;
    top: 170vw;
    left: -33vw;
  }
}

.concept__img.--02 {
  top: 69vh;
  left: 9vw;
  width: 18.75rem;
}

@media (max-width: 1024px) {
  .concept__img.--02 {
    width: 9.375rem;
  }
}

@media screen and (max-width: 768px) {
  .concept__img.--02 {
    width: 40vw;
    top: 154vw;
    left: -14vw;
  }
}

.concept__img.--03 {
  top: 16vh;
  left: 8vw;
  width: 25rem;
}

@media (max-width: 1024px) {
  .concept__img.--03 {
    width: 12.5rem;
  }
}

@media screen and (max-width: 768px) {
  .concept__img.--03 {
    top: 13vw;
    width: 40vw;
    left: -17vw;
  }
}

.concept__img.--04 {
  top: 112vh;
  width: 25rem;
  right: 2vw;
}

@media (max-width: 1024px) {
  .concept__img.--04 {
    width: 12.5rem;
  }
}

@media screen and (max-width: 768px) {
  .concept__img.--04 {
    top: 113vw;
    width: 36vw;
    right: -21vw;
  }
}

.concept__img.--05 {
  top: 37vh;
  width: 25rem;
  right: 4.5vw;
}

@media (max-width: 1024px) {
  .concept__img.--05 {
    width: 12.5rem;
  }
}

@media screen and (max-width: 768px) {
  .concept__img.--05 {
    top: 37vw;
    width: 44.833333%;
    right: -26.5vw;
  }
}

.concept-map {
  position: relative;
  z-index: 1;
  margin-top: -12.5rem;
}

@media screen and (max-width: 768px) {
  .concept-map {
    margin-top: -15vw;
    padding: 0;
  }
}

/*------------------------
下層ヘッダー
------------------------*/
.ulHead {
  width: 100%;
  display: flex;
}

@media screen and (max-width: 768px) {
  .ulHead {
    flex-direction: column;
  }
}

.ulHead__main,
.ulHead__img {
  width: 100%;
}

.ulHead__main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .ulHead__main {
    height: 18.75rem;
  }
}

.ulHead__main .ulHead__title {
  position: absolute;
  text-align: center;
  font-size: 1.875rem;
  line-height: 1;
  font-weight: 500;
  padding-top: 2vw;
}

@media screen and (max-width: 768px) {
  .ulHead__main .ulHead__title {
    font-size: 1.625rem;
    padding-top: 3vw;
  }
}

.ulHead__main .ulHead__title span {
  font-size: 1rem;
  line-height: 2.125;
  display: block;
}

.ulHead__main img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .ulHead__main img {
    position: static;
    aspect-ratio: 10/5;
  }
}

.ulHead__img {
  margin-bottom: -47px;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 768px) {
  .ulHead__img {
    margin-bottom: 0;
  }
}

/*------------------------
テキストレイアウト
------------------------*/
.textCont {
  text-align: center;
  margin-bottom: 3.75rem;
}

@media screen and (max-width: 768px) {
  .textCont {
    margin-bottom: 1.875rem;
  }
}

.textCont__title {
  font-size: clamp(32px, 2.1vw, 40px);
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 3.125rem;
}

@media screen and (max-width: 768px) {
  .textCont__title {
    font-size: clamp(20px, 6vw, 30px);
    margin-bottom: 2.5rem;
  }
}

.textCont__lead {
  font-size: clamp(20px, 1.25vw, 24px);
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  margin-bottom: 3.75rem;
}

@media screen and (max-width: 768px) {
  .textCont__lead {
    font-size: clamp(16px, 4.8vw, 22px);
    margin-bottom: 1.875rem;
  }
}

.textCont__catch {
  font-size: clamp(20px, 1.25vw, 24px);
  line-height: 1.4166666667;
  letter-spacing: 0.05em;
  color: #5475AC;
  margin-bottom: 1.25rem;
}

@media screen and (max-width: 768px) {
  .textCont__catch {
    font-size: clamp(18px, 5vw, 22px);
  }
}

.textCont__desc {
  font-size: 1rem;
  line-height: 2.125;
}

@media screen and (max-width: 768px) {
  .textCont__desc {
    text-align: left;
  }
}

/*------------------------
outline
------------------------*/
.outline .section-title {
  margin-bottom: 3.125rem;
}

.table-outline {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  font-weight: 400;
  letter-spacing: 0.1em;
  width: 100%;
  border: none;
  border-top: 1px solid #d8d8d8;
  border-left: 1px solid #d8d8d8;
  border-collapse: collapse;
}

@media screen and (max-width: 768px) {
  .table-outline {
    font-size: 3vw;
  }
}

.table-outline tr th {
  width: 30%;
  padding: 0.75rem 1.5625rem;
  display: table-cell;
  border-right: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  background-color: #f0f0f0;
  font-weight: normal;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .table-outline tr th {
    width: 100%;
    min-height: 10.2564102564vw;
    padding: 1.2820512821vw 4.358974359vw;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}

.table-outline tr td {
  padding: 0.75rem 1.5625rem;
  border-right: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .table-outline tr td {
    width: 100%;
    min-height: 10.8205128205vw;
    padding: 1.2820512821vw 4.358974359vw;
    border-right: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
    background-color: #fff;
    display: block;
  }
}

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