/*
Theme Name: Nishiikevalley2
Author: nishiikevalley
Version: 1.0.1
*/

@charset "UTF-8";
/* assets/scss/_reset.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:where(body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd) {
  margin: 0;
}

:where(h1, h2, h3, h4, h5, h6) {
  font-size: inherit;
  font-weight: inherit;
}

:where(img, picture, video, canvas, svg) {
  display: block;
  max-width: 100%;
  height: auto;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

button,
[role=button] {
  cursor: pointer;
}

:where(button, input[type=button], input[type=submit], input[type=reset]) {
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: 0;
  background: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
[hidden] {
  display: none !important;
}

html {
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.7;
}

a {
  text-decoration: none;
}

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: 120px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none !important;
    animation: none !important;
  }
}
.site-header a.logo {
  margin-right: 48px;
}
.site-header.is-top .logo--default {
  display: none;
}
.site-header .inner {
  width: 100%;
  max-width: min(1400px, 95%);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .site-header .inner {
    max-width: inherit;
    padding: 0;
  }
}
.site-header .logo-img.logo--scrolled {
  display: none;
}
.site-header .nav-pc {
  margin: 0 auto 0 0;
}
.site-header .nav-pc .nav-list {
  list-style: none;
  display: flex;
  gap: 26px;
  font-size: 15px;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.site-header .nav-pc .nav-list a {
  color: #fff;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (prefers-reduced-motion: reduce) {
  .site-header .nav-pc .nav-list a {
    transition: none !important;
    animation: none !important;
  }
}
.site-header .nav-pc .nav-list a:hover {
  color: #8797B2;
}
.site-header .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  border-radius: 6px;
  height: 40px;
  width: 195px;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  letter-spacing: -0.015em;
  background-color: #fff;
  color: #3D5885;
  transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (prefers-reduced-motion: reduce) {
  .site-header .cta-btn {
    transition: none !important;
    animation: none !important;
  }
}
.site-header .cta-btn::after {
  content: "";
  position: absolute;
  background-image: url(assets/img/btn_arrow_blue.svg);
  background-position: center;
  width: 8px;
  height: 13px;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.site-header .cta-btn:hover {
  background-color: #8797B2;
  color: #fff;
}
.site-header .cta-btn:hover::after {
  background-image: url(assets/img/btn_arrow_white.svg);
}
.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.8);
  height: 110px;
}
.site-header.scrolled .nav-list a {
  color: #3D5885;
}
.site-header.scrolled .nav-list a:hover {
  color: #A4AC9C;
}
.site-header.scrolled .cta-btn {
  background-color: #3D5885;
  color: #fff;
}
.site-header.scrolled .cta-btn::after {
  background-image: url(assets/img/btn_arrow_white.svg);
}
.site-header.scrolled .cta-btn:hover {
  background-color: #8797B2;
  color: #fff;
}
.site-header.scrolled .cta-btn:hover::after {
  background-image: url(assets/img/btn_arrow_white.svg);
}
.site-header.scrolled .logo-img.logo--scrolled {
  display: block;
}
.site-header.scrolled .logo-img.logo--default {
  display: none;
}

.hamburger {
  display: none;
  justify-self: end;
  background: transparent;
  border: none;
  cursor: pointer;
}
.hamburger .bar {
  position: relative;
  display: block;
  width: 30px;
  height: 4px;
  background: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.hamburger .bar::before, .hamburger .bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 30px;
  height: 4px;
  background: #fff;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
}
.hamburger .bar::before {
  top: -8px;
}
.hamburger .bar::after {
  top: 8px;
}
.hamburger[aria-expanded=true] .bar {
  background: transparent;
}
.hamburger[aria-expanded=true] .bar::before {
  transform: translateY(8px) rotate(45deg);
}
.hamburger[aria-expanded=true] .bar::after {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image: url("assets/img/blue_bg.png");
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s cubic-bezier(0.4, 0, 0.2, 1), transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-panel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-panel .logo-img {
  margin: 0 auto 26px;
}
.mobile-panel .nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 26px;
  padding: 0;
}
.mobile-panel .nav-list a {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 15px;
}
.mobile-panel .mobile-nav a {
  display: block;
  padding: 14px 12px;
  border-radius: 12px;
  color: #fff;
}
.mobile-panel .mobile-nav a:hover {
  opacity: 0.7;
}
.mobile-panel .cta-btn {
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
}
.mobile-panel .cta-btn::after {
  background-image: url("assets/img/btn_arrow_blue.svg");
}
.mobile-panel .cta-btn:hover {
  background-color: #8797B2;
  color: #fff;
}
.mobile-panel .cta-btn:hover::after {
  background-image: url("assets/img/btn_arrow_white.svg");
}
.mobile-panel .cta-btn::before {
  content: none;
}

@media (max-width: 960px) {
  .site-header {
    height: 60px;
  }
  .site-header .inner {
    max-width: inherit;
    padding: 0 20px;
  }
  .site-header .nav-pc, .site-header .cta-btn, .site-header .logo--scrolled {
    display: none !important;
  }
  .site-header .logo--default {
    display: none;
  }
  .hamburger {
    display: inline-flex;
  }
  .scrolled {
    background-color: transparent !important;
    height: 60px !important;
  }
}
footer {
  background-image: url("assets/img/blue_bg.png");
  color: #fff;
}
footer .inner {
  padding: 120px 0;
}
footer .flex {
  display: flex;
  align-items: flex-start;
  gap: 72px;
  margin-bottom: 100px;
}
footer .text_wrap {
  flex: 0 0 auto;
  text-align: center;
}
footer .text_wrap .footer_logo {
  margin: 0 auto 32px;
}
footer .text_wrap .address {
  margin-bottom: 48px;
}
footer .text_wrap .address > p:nth-of-type(1) {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: -0.015em;
}
footer .text_wrap .address > p:nth-of-type(2), footer .text_wrap .access > p:nth-of-type(2) {
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: -0.01em;
}
footer .text_wrap .access {
  margin-bottom: 48px;
}
footer .text_wrap .access > p:nth-of-type(1) {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
footer .text_wrap .btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
footer .text_wrap .btns a {
  border: 1px solid #fff;
  color: #fff;
}
footer .text_wrap .btns a::after {
  background-image: url("assets/img/btn_arrow_white.svg");
}
footer .text_wrap .btns a:hover {
  background-color: #fff;
  color: #3D5885;
}
footer .text_wrap .btns a:hover::after {
  background-image: url("assets/img/btn_arrow_blue.svg");
}
footer .text_wrap .btns a.fb_btn::before {
  background-image: url("assets/img/fb_logo.svg");
}
footer .text_wrap .btns a.fb_btn:hover::before {
  background-image: url("assets/img/fb_logo_blue.svg");
}
footer .text_wrap .btns a.inst_btn::before {
  background-image: url("assets/img/inst_icon_white.svg");
}
footer .text_wrap .btns a.inst_btn:hover::before {
  background-image: url("assets/img/inst_icon_blue.svg");
}
footer .footer_map {
  flex: 1 1 auto;
  min-width: 0;
  aspect-ratio: 3/2;
}
footer .footer_map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
footer .inner > .btn {
  background-color: #fff;
  margin: 0 auto;
  height: 80px;
  width: min(100%, 432px);
  font-weight: 700;
  font-size: 20px;
}
footer .inner > .btn::after {
  background-image: url("assets/img/btn_arrow_blue.svg");
}
footer .inner > .btn:hover {
  background-color: #8797B2;
  color: #fff;
}
footer .inner > .btn:hover::after {
  background-image: url("assets/img/btn_arrow_white.svg");
}
footer .contact_btn::before {
  content: none;
}
footer small {
  background-color: #fff;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  padding: 20px 0;
  color: #3D5885;
  width: 100%;
  display: block;
  letter-spacing: -0.015em;
}

@media (max-width: 960px) {
  footer .inner {
    padding: 56px 20px 64px;
  }
  footer .flex {
    flex-direction: column;
    margin-bottom: 56px;
  }
  footer .text_wrap, footer .footer_map {
    width: 100%;
  }
  footer .text_wrap {
    order: 2;
    display: flex;
    flex-direction: column;
  }
  footer .text_wrap .footer_logo {
    width: 52px;
    margin-bottom: 32px;
  }
  footer .text_wrap .address {
    order: 1;
  }
  footer .text_wrap .btns {
    order: 2;
    margin-bottom: 32px;
  }
  footer .text_wrap .access {
    order: 3;
  }
  footer .text_wrap .access > p:nth-of-type(1) {
    display: none;
  }
  footer .text_wrap .access > p:nth-of-type(2) {
    font-size: 14px;
  }
  footer .footer_map {
    order: 1;
    aspect-ratio: 1/1.5;
  }
  footer .inner > .btn {
    height: 40px;
    font-size: 15px;
  }
  footer small {
    font-size: 10px;
    padding: 33px 0;
  }
}
.mv {
  position: relative;
}
.mv img:not([class]) {
  width: 100%;
}
.mv .mv-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
}

.inner {
  width: 100%;
  max-width: min(1400px, 95%);
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 480px) {
  .inner {
    max-width: inherit;
    padding: 0;
  }
}

.under_title {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -0.015em;
  text-align: center;
  margin-bottom: 64px;
  color: #3D5885;
  position: relative;
  margin-bottom: 140px;
}
.under_title::after {
  content: " ";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: #3D5885;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.contents_text {
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.kicker_text {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-align: center;
  margin-bottom: 10px;
}

.name_text {
  font-size: 28px;
  line-height: 2;
  letter-spacing: -0.015em;
  text-align: center;
  margin-bottom: 48px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
}

.btn {
  border-radius: 6px;
  height: 40px;
  width: 195px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  color: #3D5885;
  transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 15px;
  letter-spacing: -0.015em;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none !important;
    animation: none !important;
  }
}
.btn::before {
  content: "";
  width: 24px;
  height: 24px;
}
.btn::after {
  content: "";
  width: 8px;
  height: 13px;
}

/* スライダー */
.js-slick {
  width: 100%;
}

.slick-item {
  aspect-ratio: 3/2;
  width: 100%;
  overflow: hidden;
}
.slick-item > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

/* 初期化後にフィット */
.js-slick.slick-initialized img {
  width: 100%;
}

.slick-prev {
  display: none !important;
}

.slick-next {
  right: 17px !important;
}
.slick-next::before {
  position: absolute;
  color: transparent !important;
  width: 15px !important;
  height: 26px !important;
  background-size: cover;
  background-position: center;
  background-image: url("assets/img/btn_arrow_white.svg") !important;
}

.slick-dots li {
  width: 30px !important;
  height: 4px !important;
}
.slick-dots li button {
  width: 30px !important;
  height: 4px !important;
}
.slick-dots li button:before {
  width: 30px !important;
  height: 4px !important;
  background-color: #E2E2E0 !important;
  font-size: 0 !important;
}
.slick-dots li.slick-active button:before {
  background-color: #E4B660 !important;
}

.about {
  padding: 120px 0;
}
.about > .title {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -0.015em;
  text-align: center;
  margin-bottom: 64px;
  color: #3D5885;
}
.about .text {
  letter-spacing: -0.015em;
  text-align: center;
  color: #3D5885;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 100px;
}
.about .text .br_sp {
  display: none;
}
.about .inst {
  width: 100%;
  max-width: min(1400px, 95%);
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 100px;
}
@media (max-width: 480px) {
  .about .inst {
    max-width: inherit;
    padding: 0;
  }
}
.about .inst #sb_instagram {
  margin-bottom: 6px;
}
.about .inst .btn {
  margin: 0 auto;
  border: 1px solid #3D5885;
}
.about .inst .btn::after {
  background-image: url("assets/img/btn_arrow_blue.svg");
}
.about .inst .btn::before {
  background-image: url("assets/img/inst_icon_blue.svg");
}
.about .inst .btn:hover {
  background-color: #EFF0F8;
}
.about .area {
  width: 100%;
  max-width: min(1400px, 95%);
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 480px) {
  .about .area {
    max-width: inherit;
    padding: 0;
  }
}
.about .area > img {
  width: 80%;
  margin: 0 auto;
}
.about .area .title {
  letter-spacing: -0.015em;
  text-align: center;
  color: #3D5885;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 56px;
}

.culture, .sharespace {
  background-size: cover;
  padding: 120px 0;
}
.culture .br_sp, .sharespace .br_sp {
  display: none;
}
.culture .flex, .sharespace .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 56px;
}
.culture .text_block, .sharespace .text_block {
  width: 50%;
}
.culture .text_block .logo, .sharespace .text_block .logo {
  margin: 0 auto 30px;
}
.culture .text_block .contents_text, .sharespace .text_block .contents_text {
  margin-bottom: 48px;
  color: #fff;
}
.culture .js-slick, .sharespace .js-slick {
  width: calc((100% - 56px) / 2);
}

.culture {
  background-image: url("assets/img/blue_bg.png");
  color: #fff;
}
.culture .under_title {
  color: #fff;
}
.culture .under_title::after {
  background-color: #fff;
}
.culture .flex {
  margin-bottom: 100px;
}
.culture .btn_inst {
  border: 1px solid #fff;
  color: #fff;
  margin: 0 auto;
}
.culture .btn_inst::after {
  background-image: url("assets/img/btn_arrow_white.svg");
}
.culture .btn_inst:hover {
  background-color: #fff;
  color: #3D5885;
}
.culture .btn_inst:hover::after {
  background-image: url("assets/img/btn_arrow_blue.svg");
}
.culture .btn_inst::before {
  background-image: url("assets/img/inst_icon_white.svg");
}
.culture .btn_inst:hover::before {
  background-image: url("assets/img/inst_icon_blue.svg");
}
.culture .btn_more {
  background-color: #fff;
  font-weight: 700;
  margin: 0 auto 24px;
}
.culture .btn_more::after {
  background-image: url("assets/img/btn_arrow_blue.svg");
}
.culture .btn_more:hover {
  background-color: #8797B2;
  color: #fff;
}
.culture .btn_more:hover::after {
  background-image: url("assets/img/btn_arrow_white.svg");
}
.culture .btn_more::before {
  content: none;
}
.culture .now {
  text-align: center;
}
.culture .now .logo {
  margin: 0 auto 16px;
}
.culture .now .btn {
  margin: 0 auto;
  border: 1px solid #fff;
  color: #fff;
}
.culture .now .btn::after {
  background-image: url("assets/img/btn_arrow_white.svg");
}
.culture .now .btn:hover {
  background-color: #fff;
  color: #3D5885;
}
.culture .now .btn:hover::after {
  background-image: url("assets/img/btn_arrow_blue.svg");
}
.culture .now .btn::before {
  background-image: url("assets/img/note_icon_white.svg");
}
.culture .now .btn:hover::before {
  background-image: url("assets/img/note_icon_blue.svg");
}
.culture .now .contents_text {
  margin-bottom: 24px;
  color: #fff;
}

.shop {
  padding: 120px 0;
  color: #3D5885;
}
.shop .items {
  display: flex;
  align-items: flex-start;
  gap: 56px;
}
.shop .items.items_2 {
  margin-bottom: 100px;
}
.shop .items.items_2 .item {
  width: calc((100% - 56px) / 2);
}
.shop .items.items_2 .btn {
  margin: 0 auto;
}
.shop .items.items_3 .item {
  width: calc((100% - 112px) / 3);
  min-width: 0;
}
.shop .items .logo {
  margin: 0 auto 32px;
}
.shop .items .contents_text {
  margin-bottom: 48px;
}
.shop .btns {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.shop .btn {
  border: 1px solid #3D5885;
}
.shop .btn::after {
  background-image: url("assets/img/btn_arrow_blue.svg");
}
.shop .btn.btn_inst::before {
  background-image: url("assets/img/inst_icon_blue.svg");
}
.shop .btn.btn_website::before {
  background-image: url("assets/img/website_icon_blue.svg");
}
.shop .btn:hover {
  background-color: #EFF0F8;
}

.sharespace {
  background-image: url("assets/img/green_bg.png");
}
.sharespace .under_title {
  color: #E2E2E0;
}
.sharespace .under_title::after {
  background-color: #E2E2E0;
}
.sharespace .name_text {
  color: #E2E2E0;
}
.sharespace .contents_text, .sharespace .kicker_text {
  color: #fff;
}
.sharespace .btns {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
}
.sharespace .btn_more {
  background-color: #fff;
  font-weight: 700;
  color: #6E7C61;
  width: -moz-max-content;
  width: max-content;
  padding: 0 50px 0 30px;
}
.sharespace .btn_more::after {
  background-image: url("assets/img/btn_arrow_blue.svg");
}
.sharespace .btn_more:hover {
  background-color: #8797B2;
  color: #fff;
}
.sharespace .btn_more:hover::after {
  background-image: url("assets/img/btn_arrow_white.svg");
}
.sharespace .btn_more::before {
  content: none;
}
.sharespace .btn_more::after {
  background-image: url("assets/img/btn_arrow_green.svg");
}
.sharespace .btn_more:hover {
  background-color: rgba(255, 255, 255, 0.6);
}
.sharespace br.br_sp {
  display: none;
}
.sharespace .btn_inst {
  border: 1px solid #fff;
  color: #fff;
  margin: 0 auto;
}
.sharespace .btn_inst::before {
  background-image: url("assets/img/inst_icon_white.svg");
}
.sharespace .btn_inst::after {
  background-image: url("assets/img/btn_arrow_white.svg");
}
.sharespace .btn_inst:hover {
  color: #6E7C61;
  background-color: #fff;
}
.sharespace .btn_inst:hover::before {
  background-image: url("assets/img/inst_icon_green.svg");
}
.sharespace .btn_inst:hover::after {
  background-image: url("assets/img/btn_arrow_green.svg");
}

.residence {
  padding: 120px 0;
  color: #3D5885;
}
.residence .items {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  margin-bottom: 100px;
}
.residence .items .item {
  width: calc((100% - 112px) / 3);
}
.residence .items img {
  margin-bottom: 32px;
  width: 100%;
}
.residence .btn {
  margin: 0 auto;
  width: 432px;
}
.residence .btn_more {
  background-color: #3D5885;
  color: #fff;
  font-weight: 700;
  height: 80px;
  font-size: 20px;
  margin-bottom: 24px;
}
.residence .btn_more::before {
  content: none;
}
.residence .btn_more::after {
  background-image: url("assets/img/btn_arrow_white.svg");
}
.residence .btn_more:hover {
  background-color: #8797B2;
}
.residence .btn_search {
  border: 1px solid #3D5885;
  height: 64px;
  font-size: 16px;
}
.residence .btn_search::after {
  background-image: url("assets/img/btn_arrow_blue.svg");
}
.residence .btn_search::before {
  background-image: url("assets/img/car_icon_blue.svg");
  left: 60px;
}
.residence .btn_search:hover {
  background-color: #EFF0F8;
}

@media (max-width: 1435px) {
  .shop .btns {
    align-items: center;
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 1417px) {
  .sharespace .btns .btn_more {
    height: 52px;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
  }
  .sharespace .btns a[href="/attic/#kitchen"] {
    width: 220px;
  }
  .sharespace .btns a[href="/attic/#coworking"] {
    width: 260px;
  }
  .sharespace .btns br.br_sp {
    display: block;
  }
}
@media (max-width: 960px) {
  .culture .js-slick, .culture .text_block, .sharespace .js-slick, .sharespace .text_block {
    width: 100%;
  }
  .culture .flex, .sharespace .flex {
    flex-direction: column;
  }
  .shop .items {
    flex-direction: column;
    gap: 0;
  }
  .shop .items.items_2 {
    margin-bottom: 0;
  }
  .shop .items.items_2 .item,
  .shop .items.items_3 .item {
    width: 100%;
    margin-bottom: 100px;
  }
  .sharespace .btns {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .sharespace .btns .btn_more {
    width: 245px;
    padding: 0 30px 0 30px;
  }
  .residence .items {
    flex-direction: column;
  }
  .residence .items .item {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .mv-logo {
    display: none;
  }
  .under_title {
    font-size: 24px;
    margin-bottom: 70px;
  }
  .under_title::after {
    width: 50px;
    bottom: -20px;
    height: 2px;
  }
  .kicker_text {
    font-size: 18px;
  }
  .name_text {
    font-size: 22px;
    margin-bottom: 32px;
  }
  .contents_text {
    font-size: 14px;
  }
  .slick-dots li {
    width: 15px !important;
    height: 2px !important;
  }
  .slick-dots li button {
    width: 15px !important;
    height: 2px !important;
  }
  .slick-dots li button:before {
    width: 15px !important;
    height: 2px !important;
  }
  .slick-next::before {
    width: 7px !important;
    height: 13px !important;
  }
  .about, .culture, .shop, .sharespace, .residence {
    padding: 50px 0;
  }
  .about > .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .about .text {
    font-size: 14px;
    font-weight: 500;
  }
  .about .text .br_sp {
    display: block;
  }
  .about .area > img {
    width: 100%;
  }
  .about .area .title {
    font-size: 19px;
    margin-bottom: 30px;
  }
  .about .area, .about .inst {
    padding: 0 20px;
  }
  .sharespace br.br_sp {
    display: block;
  }
  .culture .text_block, .sharespace .text_block {
    padding: 0 40px;
  }
  .culture .now {
    padding: 0 40px;
  }
  .culture .now .contents_text {
    text-align: left;
  }
  .shop .inner, .residence .inner {
    padding: 0 20px;
  }
  .shop .items .logo {
    width: 120px;
    margin-bottom: 24px;
  }
  .residence .items {
    margin-bottom: 56px;
  }
  .residence .btn {
    width: 100%;
  }
  .residence .btn_more {
    height: 62px;
    font-size: 15px;
  }
  .residence .btn_search {
    height: 50px;
    font-size: 12px;
  }
}
.attic_mv {
  padding-bottom: 73px;
}
.attic_mv .bg {
  background-image: url("assets/img/attic_mv.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  height: max(100vh, 662px);
}
.attic_mv .bg .text_block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-shadow: 0 0 4px rgb(0, 0, 0);
  text-align: center;
  width: -moz-max-content;
  width: max-content;
}
.attic_mv .bg .text_block .logo {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.attic_mv .bg .text_block .logo .text {
  letter-spacing: -0.015em;
}
.attic_mv .bg .text_block .logo .text > p:nth-of-type(1) {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.attic_mv .bg .text_block .logo .text > p:nth-of-type(2) {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
}
.attic_mv .bg .text_block > .text {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 2;
}
.attic_mv .bg .text_block > .text.text_sp {
  display: none;
}
.attic_mv > img {
  width: min(1080px, 100% - 40px);
  margin: -112px auto 0;
  position: relative;
  z-index: 3;
}

.ruby_title {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 80px;
  font-size: 40px;
}
.ruby_title span {
  font-size: 20px;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.contents_title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.5;
  position: relative;
  margin-bottom: 96px;
}
.contents_title::after {
  content: " ";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: #fff;
  bottom: -40px;
  left: 0;
}
.contents_title br.br_pc {
  display: block;
}
.contents_title br.br_sp {
  display: none;
}

.coworking, .kitchen {
  padding: 120px 0;
}
.coworking .contents_text, .kitchen .contents_text {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 2;
  margin-bottom: 40px;
  color: #2F2F2F;
}
.coworking .contents_text.bold, .kitchen .contents_text.bold {
  font-weight: 900;
}
.coworking .inner, .kitchen .inner {
  width: 100%;
  max-width: min(1400px, 95%);
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 480px) {
  .coworking .inner, .kitchen .inner {
    max-width: inherit;
    padding: 0;
  }
}
.coworking .flex, .kitchen .flex {
  display: flex;
  gap: 72px;
  margin-bottom: 120px;
}
.coworking .text_block, .coworking .img, .kitchen .text_block, .kitchen .img {
  width: calc((100% - 72px) / 2);
}
.coworking .text_block img.sp, .kitchen .text_block img.sp {
  display: none;
}
.coworking .img, .kitchen .img {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.coworking .items, .kitchen .items {
  display: flex;
  gap: 40px;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.5);
  margin-bottom: 80px;
}
.coworking .items .item .img_wrap, .kitchen .items .item .img_wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 32px;
}
.coworking .items .item img, .kitchen .items .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.coworking .name_text, .kitchen .name_text {
  margin-bottom: 0;
  line-height: 1.6;
}
.coworking .space, .kitchen .space {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}
.coworking .space + .contents_text, .kitchen .space + .contents_text {
  margin-bottom: 0;
}
.coworking .definition, .kitchen .definition {
  background-color: #fff;
  padding: 30px 40px;
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
.coworking .definition .item:nth-of-type(-n + 2), .kitchen .definition .item:nth-of-type(-n + 2) {
  border-right: 1px solid rgba(61, 88, 133, 0.2);
}
.coworking .definition .title, .kitchen .definition .title {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.coworking .definition .time_text, .kitchen .definition .time_text {
  font-weight: 500;
  font-size: 18px;
  line-height: 2.2;
  letter-spacing: 0.01em;
}
.coworking .definition .time_text span, .kitchen .definition .time_text span {
  display: block;
  font-size: 16px;
}
.coworking .definition .text, .kitchen .definition .text {
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.01em;
}
.coworking .btns, .kitchen .btns {
  display: flex;
  gap: 56px;
  margin-bottom: 56px;
}
.coworking .btns .btn, .kitchen .btns .btn {
  width: calc((100% - 112px) / 3);
  height: 46px;
}
.coworking .btns .btn::before, .kitchen .btns .btn::before {
  content: none;
}
.coworking .note, .kitchen .note {
  padding: 0 5%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.coworking .note .contents_text, .kitchen .note .contents_text {
  margin-bottom: 0;
  font-size: 16px;
}
.coworking .note::before, .kitchen .note::before {
  content: "";
  width: 72px;
  height: 72px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("assets/img/mark_icon.svg");
}

.coworking {
  background-color: rgba(61, 88, 133, 0.1);
}
.coworking .ruby_title {
  color: #3D5885;
}
.coworking .contents_title {
  color: #3D5885;
}
.coworking .items .item {
  width: calc((100% - 80px) / 3);
}
.coworking .name_text {
  color: #3D5885;
}
.coworking .definition {
  gap: 72px;
}
.coworking .definition .title {
  color: #3D5885;
}
.coworking .definition .item {
  padding-right: 72px;
}
.coworking .btn {
  background-color: #3D5885;
  color: #fff;
}
.coworking .btn::after {
  background-image: url("assets/img/btn_arrow_white.svg");
}
.coworking .btn:hover {
  background-color: #8797B2;
}
.coworking .note .contents_text {
  color: #3D5885;
}

.kitchen {
  background-color: rgba(110, 124, 97, 0.1);
}
.kitchen .ruby_title {
  color: #6E7C61;
}
.kitchen .contents_title {
  color: #6E7C61;
}
.kitchen .items .item {
  width: calc((100% - 40px) / 2);
}
.kitchen .name_text {
  color: #6E7C61;
}
.kitchen .definition {
  display: block;
}
.kitchen .definition .definition_flex {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.kitchen .definition .title {
  color: #6E7C61;
}
.kitchen .definition .item:nth-of-type(1) {
  padding-right: 72px;
  flex: 0 0 auto;
}
.kitchen .definition .item:nth-of-type(2) {
  padding: 0 72px;
  flex: 0 0 auto;
}
.kitchen .definition .item:nth-of-type(3) {
  padding-left: 72px;
  flex: 1 1 auto;
  min-width: 0;
}
.kitchen .definition2 {
  padding: 0;
  margin-bottom: 0;
}
.kitchen .definition2 .item {
  border-right: transparent !important;
  padding: 0 !important;
}
.kitchen .btn {
  background-color: #3D5885;
  color: #fff;
  background-color: #6E7C61;
}
.kitchen .btn::after {
  background-image: url("assets/img/btn_arrow_white.svg");
}
.kitchen .btn:hover {
  background-color: #8797B2;
}
.kitchen .btn:hover {
  background-color: #A4AC9C;
}
.kitchen .note .contents_text {
  color: #6E7C61;
}

@media (max-width: 960px) {
  .attic_mv {
    padding-bottom: 34px;
  }
  .attic_mv > img {
    margin: -70px auto 0;
  }
  .attic_mv .bg .text_block .logo {
    flex-direction: column;
    gap: 20px;
  }
  .attic_mv .bg .text_block .logo > img {
    width: 77px;
    margin-bottom: 20px;
  }
  .attic_mv .bg .text_block .logo .text > p:nth-of-type(1) {
    font-size: 18px;
    margin-bottom: 0;
  }
  .attic_mv .bg .text_block .logo .text > p:nth-of-type(2) {
    font-size: 24px;
  }
  .attic_mv .bg .text_block > .text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 2.6;
  }
  .attic_mv .bg .text_block > .text.text_sp {
    display: block;
  }
  .attic_mv .bg .text_block > .text.text_pc {
    display: none;
  }
  .ruby_title {
    margin-bottom: 56px;
    font-size: 24px;
  }
  .ruby_title span {
    font-size: 14px;
    font-weight: 600;
  }
  .contents_title {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 96px;
    text-align: center;
  }
  .contents_title::after {
    content: " ";
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: #fff;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
  }
  .contents_title br.br_pc {
    display: none;
  }
  .contents_title br.br_sp {
    display: block;
  }
  .coworking, .kitchen {
    padding: 50px 0;
  }
  .coworking .inner, .kitchen .inner {
    width: 100%;
    max-width: inherit;
  }
  .coworking .flex, .kitchen .flex {
    flex-direction: column;
    gap: 56px;
    margin-bottom: 56px;
  }
  .coworking .contents_text, .kitchen .contents_text {
    font-size: 14px;
  }
  .coworking .contents_text.bold, .kitchen .contents_text.bold {
    font-weight: 700;
  }
  .coworking .text_block, .coworking .img, .kitchen .text_block, .kitchen .img {
    width: 100%;
  }
  .coworking .text_block, .kitchen .text_block {
    padding: 0 40px;
  }
  .coworking .text_block img.sp, .kitchen .text_block img.sp {
    display: block;
    width: 100%;
  }
  .coworking .img, .kitchen .img {
    order: 1;
  }
  .coworking .img img, .kitchen .img img {
    width: 100%;
  }
  .coworking .img img.pc, .kitchen .img img.pc {
    display: none;
  }
  .coworking .text_block, .kitchen .text_block {
    order: 2;
  }
  .coworking .items, .kitchen .items {
    flex-direction: column;
    width: calc(100% - 80px);
    margin: 0 auto 56px;
  }
  .coworking .items .item, .kitchen .items .item {
    width: 100%;
  }
  .coworking .name_text, .kitchen .name_text {
    font-size: 19px;
  }
  .coworking .space, .kitchen .space {
    font-size: 14px;
    font-weight: 500;
  }
  .coworking .definition, .kitchen .definition {
    flex-direction: column;
    gap: 64px;
    padding: 30px 40px;
    margin-bottom: 56px;
  }
  .coworking .definition .item, .kitchen .definition .item {
    position: relative;
  }
  .coworking .definition .item .title, .kitchen .definition .item .title {
    font-size: 19px;
  }
  .coworking .definition .item .time_text, .coworking .definition .item .text, .kitchen .definition .item .time_text, .kitchen .definition .item .text {
    font-size: 14px;
  }
  .coworking .definition .item .time_text span, .kitchen .definition .item .time_text span {
    font-size: 14px;
  }
  .coworking .definition .item:nth-of-type(-n + 2), .kitchen .definition .item:nth-of-type(-n + 2) {
    border-right: none;
  }
  .coworking .definition .item:not(:last-of-type)::after, .kitchen .definition .item:not(:last-of-type)::after {
    content: "";
    position: absolute;
    width: 168px;
    height: 1px;
    background-color: rgba(61, 88, 133, 0.2);
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
  }
  .coworking .btns, .kitchen .btns {
    flex-direction: column;
    padding: 0 40px;
  }
  .coworking .btns .btn, .kitchen .btns .btn {
    width: 100%;
  }
  .coworking .note, .kitchen .note {
    flex-direction: column;
    padding: 0 40px;
  }
  .coworking .note::before, .kitchen .note::before {
    width: 36px;
    height: 36px;
  }
  .coworking .note .contents_text, .kitchen .note .contents_text {
    margin-bottom: 14px;
    font-size: 14px;
  }
  .coworking .definition .item {
    padding-right: 0;
  }
  .kitchen .definition .definition_flex {
    flex-direction: column;
    gap: 64px;
    margin-bottom: 64px;
  }
  .kitchen .definition .item {
    padding: 0;
  }
  .kitchen .definition .item:nth-of-type(1) {
    padding-left: 0;
  }
  .kitchen .definition .item:nth-of-type(2) {
    padding-left: 0;
  }
  .kitchen .definition .item:nth-of-type(3) {
    padding-left: 0;
  }
  .kitchen .definition .item:nth-of-type(3)::after {
    content: "";
    position: absolute;
    width: 168px;
    height: 1px;
    background-color: rgba(61, 88, 133, 0.2);
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
  }
  .kitchen .definition2 {
    padding: 0;
  }
}
.site-header:has(~ .mobile-panel ~ .contact-section) .nav-list a {
  color: #3D5885;
}
.site-header:has(~ .mobile-panel ~ .contact-section) .nav-list a:hover {
  color: #A4AC9C;
}
.site-header:has(~ .mobile-panel ~ .contact-section) .cta-btn {
  background-color: #3D5885;
  color: #fff;
}
.site-header:has(~ .mobile-panel ~ .contact-section) .cta-btn::after {
  background-image: url(assets/img/btn_arrow_white.svg);
}
.site-header:has(~ .mobile-panel ~ .contact-section) .cta-btn:hover {
  background-color: #8797B2;
  color: #fff;
}
.site-header:has(~ .mobile-panel ~ .contact-section) .cta-btn:hover::after {
  background-image: url(assets/img/btn_arrow_white.svg);
}
.site-header:has(~ .mobile-panel ~ .contact-section) .logo-img.logo--scrolled {
  display: block;
}
.site-header:has(~ .mobile-panel ~ .contact-section) .logo-img.logo--default {
  display: none;
}

.contact-section {
  width: 100%;
  padding: 80px 0 100px 0;
  box-sizing: border-box;
  /* Contact Form 7 全体共通 */
}
.contact-section .contact-inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px 80px 20px;
  box-sizing: border-box;
}
.contact-section .title-en, .contact-section .title {
  font-size: 16px;
  text-align: center;
}
.contact-section .details {
  font-size: 12px;
  margin-top: 48px;
}
.contact-section .form-container {
  width: 100%;
  margin-top: 40px;
  font-size: 14px;
}
.contact-section .submit-btn {
  position: absolute;
  width: 180px !important;
  height: 48px;
  line-height: 48px;
  background: #3d5885;
  color: #fff;
  font-size: 14px;
  text-align: center;
  border: none;
  cursor: pointer;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}
.contact-section .submit-btn:hover {
  background: #2c3e66;
}
.contact-section .wpcf7 {
  width: 100%;
}
.contact-section .wpcf7 .hidden-fields-container {
  display: none;
}
.contact-section .wpcf7 p {
  position: relative;
  margin-bottom: 30px;
}
.contact-section .wpcf7 .required {
  position: absolute;
  font-size: 12px;
  right: 0;
  color: red;
}
.contact-section .wpcf7 form input,
.contact-section .wpcf7 form textarea,
.contact-section .wpcf7 form select {
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
  border: 1px solid #ccc;
  line-height: 2.5rem;
}

.error404 .site-header .nav-list a {
  color: #3D5885;
}
.error404 .site-header .nav-list a:hover {
  color: #A4AC9C;
}
.error404 .site-header .cta-btn {
  background-color: #3D5885;
  color: #fff;
}
.error404 .site-header .cta-btn::after {
  background-image: url(assets/img/btn_arrow_white.svg);
}
.error404 .site-header .cta-btn:hover {
  background-color: #8797B2;
  color: #fff;
}
.error404 .site-header .cta-btn:hover::after {
  background-image: url(assets/img/btn_arrow_white.svg);
}
.error404 .site-header .logo-img.logo--scrolled {
  display: block;
}
.error404 .site-header .logo-img.logo--default {
  display: none;
}

.page-404 {
  padding: 200px 0;
}
.page-404 .contents h1 {
  font-size: 46px;
  margin-bottom: 20px;
  font-weight: 900;
}
.page-404 .contents > p:nth-of-type(1) {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 40px;
}
.page-404 .contents > p:nth-of-type(2) {
  font-size: 20px;
}

@media (max-width: 960px) {
  .page-404 .inner {
    padding: 0 20px;
  }
}