.main-area{
  position: relative;
}
.inner-nav{
  display: flex;
  width: 273px;
  padding: 80px 40px 40px 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

.hidden-nav {
  display: none !important;
}

.inner-logo-area{
  width: 89px;
  height: 85px;
  aspect-ratio: 89/85;
}
.inner-nav-item{
  color: #222;
  font-family: Marcellus;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 26.4px */
  letter-spacing: -0.24px;
  transition: 0.3s;
}
.inner-nav-item:hover{
  color: #19809C;
}
/* When over dark background */
.inner-nav.is-on-dark .inner-nav-item {
  color: #fff;
}
.sp-header{
  display: none;
}
.sp-nav{
  display: none;
}
/* Hide desktop nav on small screens */
@media (max-width: 960px) {
  .inner-nav {
    display: none;
  }
  /* SP Header: Top-right hamburger icon */
  .sp-header {
    position: fixed;
    top: 60px;
    right: 20px;
    z-index: 1000;
    padding: 4px;
    display: flex;
  }

  .sp-menu-icon {
    height: 83px;
    width: 77px;
    cursor: pointer;
    position: fixed;
    right:0;
    top:70px;

  }

  /* Fullscreen Menu */
  .sp-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding: 64px var(--Space_SP, 20px) 16px var(--Space_SP, 20px);
    display: flex;
    flex-direction: column;
  }

  .sp-nav.open {
    transform: translateX(0);
  }

  .sp-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .sp-nav-header-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
  }

  .sp-nav-header-logo-text-1 {
    color: var(--DarkGray, #424242);
    font-feature-settings: 'liga' off;
    font-family: Marcellus;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 20px */
  }

  .sp-nav-header-logo-text-2 {
    color: var(--DarkGray, #424242);
    font-family: "Zen Old Mincho";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 18px */
    letter-spacing: -3.24px;
  }

  .sp-nav-header-logo-text-3 {
    color: var(--DarkGray, #424242);
    font-feature-settings: 'liga' off;
    font-family: Marcellus;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 20px */
    letter-spacing: -0.2px;
  }

  .sp-close-icon {
    height: 61px;
    width: 47px;
    cursor: pointer;
  }

  /* Nav Items */
  .sp-nav-items {
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    flex-direction: column;
    gap: 16px;
    padding: 16px 20px;
  }

  .sp-nav-items a {
    color: #000;
    font-family: 'Marcellus';
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 33.6px */
    letter-spacing: 0.48px;
    text-decoration: none;
    border-bottom: 1px solid rgb(203, 203, 203);
    padding-bottom: 9px;
  }

}

.hero-section-container{
  padding-left: 300px;
}

@media (max-width:960px) {
  .hero-section-container{
    padding-left: 0px;
  }
}

/* hhh */
.hero-section {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 700px;
  padding: 413px 80px 11px 300px;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 1);
  z-index: 4;
  width: 100%;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 345px 0px 10px 10px;
		min-height: 600px;
  }
}

.hero-background {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: absolute;
  /* width: 100%; */
  height: auto;
  bottom: 48px;
  right: 40px;
  z-index: 2;              /* <-- above the slider */
  /* all your existing bottom/right/padding remains */
}

@media (max-width: 768px) {
  .hero-content {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 960px) {
  .hero-content {
    left: 40px;
    right: auto;
    transform: none;
    text-align: left;
  }
}

.hero-subtitle {
  font-size: 24px;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 16px;
    max-width: 100%;
  }
}

.hero-title-container {
  display: flex;
  width: 100%;
  gap: 16px;
  align-items: flex-start;
  flex-shrink: 0;
  flex-direction: column;
}

@media (max-width:768px) {
  .hero-title-container {
    width:304px;
    margin: 0 10px 0 auto;
  }
}
@media (min-width:768px) and (max-width:960px) {
  .hero-title-container {
    width:400px;
    margin-right: 20px;
  }
}
.hero__main-title {
color: #FFF;
font-feature-settings: 'liga' off;
font-family: Marcellus;
font-size: 82px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 82px */
letter-spacing: 0.82px;
}

@media (max-width: 768px) {
  .hero__main-title {
    color: #FFF;
    font-feature-settings: 'liga' off;
    font-family: Marcellus;
    font-size: 54px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 54px */
    letter-spacing: 0.54px;
  }
}

.hero__japanese-title-wrapper {
  position: relative;
  display: flex;
  white-space: nowrap;
  justify-content: start;
}



.hero__japanese-title {
  color: #FFF;
  font-family: "Zen Old Mincho";
  font-size: 90px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 90px */
  letter-spacing: -16.2px;
}

@media (max-width: 768px) {
  .hero__japanese-title {
  color: #FFF;
  font-family: "Zen Old Mincho";
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 56px */
  letter-spacing: -10.08px;
  }
}

.hero__romanized-title {
  color: #FFF;
  font-family: Marcellus;
  font-size: 80px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 80px */
  letter-spacing: -3.2px;
}

@media (max-width: 768px) {
  .hero__romanized-title {
    color: #FFF;
    font-family: Marcellus;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 56px */
    letter-spacing: -2.24px;
  }
}

.hero-swiper {
  position: absolute;
  inset: 0;
  z-index: 1;              /* <-- behind your content */
}

.hero-swiper swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-swiper picture {
  width: 100%;
  height: 100%;
  display: flex;
}

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

/* Add styles for Swiper navigation buttons */
.hero-swiper::part(button-prev),
.hero-swiper::part(button-next) {
  z-index: 10;             /* <-- above the hero content */
  color: #fff;             /* Make buttons white for visibility */
  display: flex !important; /* Always show navigation buttons */
  opacity: 1 !important;   /* Always visible */
  visibility: visible !important; /* Always visible */
  border-radius: 50%;      /* Circular buttons */
  width: 50px;             /* Fixed width */
  height: 50px;            /* Fixed height */
  align-items: center;     /* Center content */
  justify-content: center; /* Center content */
  transition: all 0.3s ease; /* Smooth transitions */
}

.hero-swiper::part(button-prev):hover,
.hero-swiper::part(button-next):hover {
  transform: scale(1.1);   /* Slightly larger on hover */
}

/* Ensure Swiper navigation buttons are never hidden */
.hero-section .swiper-button-prev.hidden-nav,
.hero-section .swiper-button-next.hidden-nav,
.hidden-nav .hero-section .swiper-button-prev,
.hidden-nav .hero-section .swiper-button-next {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.hero-section .swiper-button-prev::after,
.hero-section .swiper-button-next::after {
  font-size: 24px;         /* Adjust button size */
  font-weight: bold;       /* Make arrows bold */
}

/* Pagination styles */
.hero-swiper::part(pagination) {
  z-index: 10;
  bottom: 20px;
}

.hero-swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: #fff;
  width: 12px;
  height: 12px;
  transform: none;
}

/* Main-visual part-end  */

/* common-part  */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  align-self: stretch;
  position: relative;
}

.section-title-area{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}
@media (max-width: 768px) {
  .section-title-area{
    gap: 0;
  }
}
.section-title{
  color: #222;
  /* PC/en/H2 */
  font-family: 'Marcellus';
  font-size: 128px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.28px;
}
@media(max-width: 960px) {
  .section-title {
    font-size: 80px;
  }
}

.section-subtitle{
  color: #222;
  /* PC/ja/H3 */
  font-family: "Zen Kaku Gothic New";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.48px;
  width: 100%;
  max-width: fit-content;
}
@media (max-width: 960px) {
  .section-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 960px) {
.section-subtitle-contact{
font-size: 18px;
 }
}

.section-title-text{
  color: #222;
  /* PC/ja/lead */
  font-family: "Noto Sans CJK JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
}

@media (max-width: 960px) {
  .section-title-text {
    color: #222;
    /* PC/ja/lead */
    font-family: "Noto Sans CJK JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 220%;
    width: auto;
  }
}
  

@media (max-width:768px) {
  .section-title-text-contact{
    width: auto;
  }
  
}

.section-title-text-contact{
  max-width: 800px;
}

.section-subtitle-text{
  color: #222;
  /* PC/ja/body */
  font-family: "Noto Sans CJK JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 25.2px */
}



.section-inner-subtitle-time{
  color: #222;
  font-family: 'Zen Kaku Gothic New';
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 67.2px */
  letter-spacing: 0.1px;
}

@media (max-width: 768px) {
  .section-inner-subtitle-time{
    font-size: 32px;
    line-height: 110%; /* 35.2px */
    letter-spacing: -0.32px;
  }
}
.section-inner-title{
  color: #222;
  font-family: 'Marcellus';
  font-size: 72px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 100.8px */
  letter-spacing: 1.44px;
}
@media (max-width: 768px) {
  .section-inner-title{
    font-size: 56px;
    line-height: 110%; /* 61.6px */
    letter-spacing: -0.56px;
  }
}
.white-color{
  color: #FFF;
}
.primary-btn{
  display: flex;
  width: 237px;
  padding: 16px 16px 16px 24px;
  justify-content: center; 
  padding-left: 10px;
  align-items: center;
  background: #424242;
  color: #FFF;
  font-family: 'Marcellus';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.36px;
  text-transform: uppercase;
  position: relative;
  transition: 0.5s;
  text-align: center; /* Ensure text is centered */
}
.primary-btn::after{
  content: '';
  width: 8px;
  height: 16px;
  flex-shrink: 0;
  aspect-ratio: 1/2;
  background: url('/img/shareoffice-kanda/btn-arrow.svg');
  position: absolute;
  right: 16px;
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  transition: 0.5s;
}
/* Modifier class for alternate image */
.primary-btn--blank::after {
  width: 16px;
  background-image: url('/img/shareoffice-kanda/blank-arrow.svg');
}
.primary-btn--transparent{
  background-color: transparent;
  border: 1px solid #FFF;
}
.primary-btn:hover{
  background: #19809C;
}
.primary-btn:hover::after {
  right: 10px;
}
@media (max-width: 768px){
  .primary-btn{
    width: 66%;
  }
}

.view-more-button-container .primary-btn {
  width: 100%;
}

.primary-btn-pc{
  display: flex;
  width: 237px;
  padding: 16px 16px 16px 24px;
  justify-content: center; 
  padding-left: 10px;
  align-items: center;
  background: #424242;
  color: #FFF;
  font-family: 'Marcellus';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.36px;
  text-transform: uppercase;
  position: relative;
  transition: 0.5s;
  text-align: center;
  background-color: transparent; /* Ensure text is centered */
}
.primary-btn-pc::after{
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  aspect-ratio: 1/2;
  background: url('/img/shareoffice-kanda/blank-arrow.svg');
  position: absolute;
  right: 16px;
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  transition: 0.5s;
  top: 50%;
  transform: translateY(-50%);
}
.primary-btn-pc:hover{
  background: #19809C;
}
.primary-btn-pc:hover::after {
  right: 10px;
}
@media (max-width: 768px){
  .primary-btn-pc{
    width: 66%;
  }
}

.view-more-button-container .primary-btn-pc {
  width: 100%;
}

.primary-btn-sp{
  display: flex;
  width: 237px;
  padding: 16px 16px 16px 24px;
  justify-content: center; 
  padding-left: 10px;
  align-items: center;
  background: #424242;
  color: #FFF;
  font-family: 'Marcellus';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  letter-spacing: 0.36px;
  text-transform: uppercase;
  position: relative;
  transition: 0.5s;
  text-align: center; /* Ensure text is centered */
  background-color: transparent; 
}
.primary-btn-sp::after{
  content: '';
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  aspect-ratio: 1/2;
  background: url('/img/shareoffice-kanda/blank-arrow.svg');
  position: absolute;
  right: 16px;
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  transition: 0.5s;
  top: 50%;
  transform: translateY(-50%);
}
.primary-btn-sp:hover{
  background: #19809C;
}
.primary-btn-sp:hover::after {
  right: 10px;
}
@media (max-width: 768px){
  .primary-btn-sp{
    width: 66%;
  }
}

.view-more-button-container .primary-btn-sp {
  width: 100%;
}

.container {
  max-width: 1440px;
  padding: 0px 20px 0px 273px;
  width: 100%;
  margin: 0 auto;
}

.container-about-us {
  max-width: 1440px;
  padding: 0px 20px 0px 100px;
  width: 100%;
  margin: 0 auto;
}

.view-more-button-container {
  width: 250px;
}

@media (max-width:768px) {
  .view-more-button-container {
    display: flex;
    justify-content: center;
    width: 250px;
    align-self: center;
  }
  
  .view-more-button-container .primary-btn {
    width: 100%;
    margin: 0 auto;
  }

  .container-about-us {
    max-width: 1440px;
    padding: 0px 20px 0px 20px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 960px) {
  .container {
    max-width: 100%;
    padding: 0px 20px;
  }
}

@media (min-width: 768px) and (max-width: 960px) {
  .container {
    padding: 50px 40px;
  }
  .view-more-button-container {
    width: 100%;
  }
}


.concept-area{
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 240px;
}
@media (max-width: 768px){
  .concept-area{
    gap: 170px;
  }
}

@media (min-width:768px) and (max-width:960px) {
  .concept-area{
    gap: 0px;
  }
}
.concept-top-area{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 180px;
}
@media (max-width: 768px){
  .concept-top-area{
    gap: 330px;
  }
}

.concept-top-area-zh{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 180px;
}
@media (max-width: 768px){
  .concept-top-area-zh{
    gap: 370px;
  }
}

/* Default (desktop) */
.concept-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
}

/* Between 768px and 960px */
@media (max-width: 960px) and (min-width: 769px) {
  .concept-top-inner {
    display: block; /* remove flex */
    justify-content: initial;
    align-items: end; 
    gap: 50px; 
    position: relative;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .concept-top-inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
}

.concept-top-inner-content{
  display: flex;
  max-width: 776px;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}

.hand-shake{
  width: 310px;
  height: auto;
  margin-bottom: -86px;
  mix-blend-mode: multiply;
  top: 1340px;
  right: 30px;
}

.hand-shake-zh{
  width: 310px;
  height: auto;
  margin-bottom: -86px;
  mix-blend-mode: multiply;
  top: 1340px;
  right: 30px;
}


@media (max-width:768px) {
  .concept-top-inner-content{
    width: auto;
  }
  .hand-shake{
    width: 310px;
    height: auto;
    margin-bottom: -86px;
    mix-blend-mode: multiply;
    position: absolute;
    top: 1350px;
    right: 0px;
  }
  .hand-shake-zh{
    width: 310px;
    height: auto;
    margin-bottom: -86px;
    mix-blend-mode: multiply;
    position: absolute;
    top: 1250px;
    right: 0px;
  }
}

@media (max-width: 960px) and (min-width: 769px) {
  .hand-shake{
    position: absolute;
    max-width: 280px;
    height: auto;
    margin-bottom: -86px;
    mix-blend-mode: multiply;
    top: 500px;
    right: 30px;
  }
}

.concept-professional-area{
  display: flex;
  padding-right: 40px;
  gap: 40px;
  align-self: stretch;
  position: relative;
  /* overflow: hidden; */
}

@media (min-width: 768px) and (max-width: 960px){
  .concept-professional-area{
    margin-top: 140px;
  }
}

@media (max-width: 768px){
  .hand-shake{
    max-width: 280px;
    height: auto;
    margin-right: 30px;
  }
  .concept-professional-area{
    flex-direction: column;
    gap: 24px;
    padding-right: 0px;
  }
}
.professional-meeting {
  width: 620px;
  height: auto;
}

@media (max-width: 768px) {
  .professional-meeting {
    width: 335px;
    position: relative;
  }
}


@media (min-width:768px) and (max-width: 960px) {
  .professional-meeting {
    width: 335px;
    position: relative;
    padding-top: 60px;
  }
}

.concept-professional-content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  flex: 1 0 0;
  width: auto;
  min-width: 330px;
}

@media (max-width: 768px) {
  .concept-professional-content {
    width: auto;
    position: relative;
    padding-bottom: 42px;
  }
}

.bulb-icon{
  width: 260.016px;
  height: 136.254px;
  position: absolute;
  right: -100px;
  bottom: 1.624px;
  mix-blend-mode: multiply;
}

@media (max-width: 768px){
  .bulb-icon{
    width: 140.016px;
    height: auto;
    left: 175px;
    top: -90px;
    position: absolute;
  }
}

@media (min-width: 768px) and (max-width:960px){
  .bulb-icon{
    width: 175.016px;
    height: 91.713px;
    left: 175px;
    top: -30px;
    position: absolute;
  }
}
.concept-design-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  align-self: stretch;
}

@media (min-width: 768px) and (max-width: 960px) {
  .concept-design-area {
    flex-direction: row;
    gap: 24px;
    padding-right: 0;
    margin-top: 100px;
  }
}

.concept-design-title-area{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 0 0;
  position: relative;
  min-width: 300px;
}

@media (min-width: 768px) and (max-width: 960px) {
  .concept-design-title-area {
    display: flex;
    flex-direction: column;
  }
}

.pencil {
  width: 243px;
  height: 200px;
  aspect-ratio: 243/200;
  position: absolute;
  top: -170px;
  left: 220px;
}

@media (max-width: 768px) {
  .pencil {
    width: 177px;
    height: 146px;
    aspect-ratio: 177/146;
    top: -125px;
    left: 170px;
  }
}

@media (min-width: 768px) and (max-width: 960px) {
  .pencil {
    width: 143px;
    height: 200px;
    aspect-ratio: 243 / 200;/* <--- overrides absolute */
    top: -40px;
    left: 150px;
  }
}

@media (min-width: 768px) and (max-width: 960px) {
  .concept-design-content {
    margin-top: 140px;
  }
}

/* service area 
 */

 .service-section {
    display: flex;
    padding: 100px 0px 0px 0px;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    position: relative;
}

@media (max-width: 768px) {
    .service-section {
        gap: 60px;
        padding: 0px;
    }
}

.service-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
    align-self: stretch;
    position: relative;
}

@media (max-width: 991px) {
    .service-content {
        gap: 40px;
    }
}

@media (max-width: 668px) {
    .service-content {
        gap: 32px;
    }
}

.service-tabs-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    position: relative;
    width: 100%; 
    justify-content: flex-start;
}

.service-tabs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.service-tabs-container .tab-content {
  box-sizing: border-box;
  overflow: hidden;
  transition: 
    visibility 0s 0.3s, 
    height 0.3s ease;
}

.tab-navigation {
    display: flex;
    width: 100%;
    align-items: flex-end;
    position: relative;
}

@media (max-width: 960px) {
    .tab-navigation {
        width: 100%;
        max-width: 800px;
    }
}

@media (max-width: 960px) {
    .tab-navigation {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: stretch;
    }
}

@media (max-width: 960px) {
    .service-tabs-container .tab-content {
      width:auto;
    }
}

.tab-active {
  display: flex;
  padding: 16px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1 0 0;
  border-top: 1px solid #424242;
  border-right: 1px solid #424242;
  border-left: 1px solid #424242;
  position: relative;
}
@media (max-width: 960px) {
  .tab-active {
    background-color: #1D96B6;
    padding: 8px 24px;
    border: 1px solid #FFF;
    align-items: center;
  }
}
.tab-title-en {
    font-family: 'Marcellus';
    font-weight: 400;
    font-size: 24px;
    color: #222;
    line-height: 140%;
    letter-spacing: 0.48px;
    position: relative;
}

@media (max-width: 960px) {
  .tab-title-en {
    font-size: 14px;  
    color: #fff;
    letter-spacing: 0.28px;
  }
}

.tab-title-jp {
    font-family: "Zen Kaku Gothic New";
    font-weight: 700;
    font-size: 20px;
    color: #222;
    line-height: 160%;
    letter-spacing: 0.8px;
    position: relative;
}

@media (max-width: 960px) {
  .tab-title-jp {
    font-size: 14px;
    color: #fff;
  }
}

.tab-inactive {
    display: flex;
    padding: 4px 8px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1 0 0;
    border-right: 1px solid #fff;
    position: relative;
    background-color: #424242;
    transition: 0.5s;
    cursor: pointer;
}
.tab-inactive:hover{
  background-color: #1D96B6;
}
.tab-inactive:last-child {
    border-right: none;
}

.tab-inactive .tab-title-en {
    color: #fff;
}

.tab-inactive .tab-title-jp {
    color: #fff;
}
@media (max-width: 960px){
  .tab-inactive{
    border: 1px solid #FFF;
    align-items: center;
  }
}
.tab-content {
    display: flex;
    padding: 80px;
    flex-direction: column;
    align-items: flex-start;
    gap: 56px;
    border-right: 1px solid #424242;
    border-bottom: 1px solid #424242;
    border-left: 1px solid #424242;
    position: relative;
    height: auto;
    transition-delay: 0s;
    visibility: visible;
    width: 1150px;
}

@media (max-width: 1400px) {
  .tab-content {
    width: 1000px;
  }
}

@media (max-width: 1350px) {
  .tab-content {
    width: 1000px;
  }
}

@media (max-width: 1300px) {
  .tab-content {
    width: 950px;
  }
}

@media (max-width: 1200px) {
  .tab-content {
    width: 900px;
  }
}

@media (max-width: 1100px) {
  .tab-content {
    width: 780px;
  }
}

@media (max-width: 960px) {
    .tab-content {
        width: auto;
        padding: 40px;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
  .tab-content {
      width: 752px
  }
}

@media (max-width: 960px) {
    .tab-content {
        padding: 20px;
        gap: 32px;
    }
}

.service-item {
    display: flex;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    position: relative;
}

@media (max-width: 960px) {
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

.service-icon-container {
    width: 110px;
    height: 110px;
    position: relative;
}

@media (max-width: 960px) {
    .service-icon-container {
        width: 80px;
        height: 80px;
    }
}

.service-icon-bg {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    fill: #fff;
    position: absolute;
    left: 0px;
    top: 0px;
}

@media (max-width: 960px) {
    .service-icon-bg {
        width: 80px;
        height: 80px;
    }
}

.service-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.service-item-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
    position: relative;
}

.service-item-title {
    font-family: "Zen Kaku Gothic New";
    font-weight: 700;
    font-size: 24px;
    color: #736338;
    align-self: stretch;
    letter-spacing: -0.48px;
    position: relative;
}

@media (min-width: 768px) and (max-width: 960px) {
  .service-item-title {
    font-size: 18px;
    letter-spacing: -0.36px;
  }
}


.service-item-description {
    align-self: stretch;
    color: #222;
    font-family: "Noto Sans CJK JP";
    font-size: 16px;
    font-weight: 400;
    line-height: 180%;
    position: relative;
}


.service-contact-area{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  text-align: center;
  margin-top: 60px;
}

@media (max-width:768px) {
  .service-contact-area{
    margin-top: 60px;
  }
}

.asterisk {
  color: var(--DarkGray, #424242);
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}

.facilities-area{
  display: flex;
  padding: 100px 0px 100px 0px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (min-width: 768px) and (max-width: 960px) {
  .facilities-area{
    display: flex;
    padding: 150px 0px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.standing-women{
  position: absolute;
  top: 0;
  left: 500px;
  mix-blend-mode: multiply;
  width: 120px;
  height: 200px;
}

@media (max-width: 960px){
  .standing-women{
    right: 0;
    left: unset;
    top: -140px;
    width: 90px;
    height: 140px;
    width: 88px;
    height: 170px;
  }
}

@media (max-width: 768px){
  .standing-women{
    right: 0;
    left: unset;
    top: -35px;
    width: 90px;
    height: 140px;
  }
  .facilities-area{
    display: flex;
    padding: 100px 0px 100px 0px;
  }
  
}
.facilities-work-space{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 200px;
  width: 100%;
}
.facilities-work-space-top{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
}
.facilities-work-space-title-area{
  padding-bottom: 16px;
  border-bottom: 1px solid #424242;
  width: 100%;
}
.facilities-work-space-inner{
  display: flex;
  gap: 40px;
}
.facilities-work-space-inner--sp-flex-rev{
  position: relative;
}
.connector-img01{
  position: absolute;
  top: -330px;
  right: 350px;
  z-index: 1;
  width:450px
}

.connector-img01-zh-cn{
  position: absolute;
  top: -330px;
  right: 280px;
  z-index: 1;
  width:450px
}

.connector-img02{
  position: absolute;
  bottom: -250px;
  right: 412px;
  mix-blend-mode: multiply;
  z-index: 1;
  width:400px

}

.connector-img02-zh-cn{
  position: absolute;
  bottom: -255px;
  right: 340px;
  mix-blend-mode: multiply;
  z-index: 1;
  width:400px

}
.facilities-work-space-inner-contents{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 0 0;
}
.work-space-right-width{
  max-width: 427px;
  width: 100%;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) and (max-width: 960px) {
  .facilities-work-space-inner.facilities-work-space-inner--sp-flex-rev {
    display: flex;
    flex-direction: row-reverse;
  }
  /* Remove the previous .meeting-space rule if not needed */
  .meeting-space {
    display: initial;
    flex-direction: initial;
  }
  .facilities-work-space{
    gap: 10px;
  }
  .facilities-area{
    padding: 110px 0px 0px 0px;
  }
}

.work-space-left-width{
  max-width: 768px;
  width: 100%;
  position: relative;
  z-index: 9999;
}
.private-seating-room{
  max-width: 610px;
  width: 100%;
}

@media (max-width: 960px){
  .facilities-work-space-inner{
    flex-direction: column;
    gap: 24px;
  }
  .facilities-work-space-inner--sp-flex-rev{
    flex-direction: column-reverse;
  }
  .work-space-left-width{
    width: 335px;
  }
  .work-space-right-width{
    width: 335px;
  }
  .connector-img01, .connector-img02{
    display: none;
  }
}

@media (max-width: 960px) {
  .private-seating-room {
    width: 335px;
    align-items: left
  }
}

@media (max-width: 768px) {
  .facilities-work-space{
    gap: 48px;
  }
  .facilities-work-space-top{
    gap: 48px;
  }
  .facilities-work-space-title-area{
    gap: 8px;
  }
  .facilities-work-space-inner--sp-flex-rev{
    flex-direction: column-reverse;
  }
  .work-space-left-width{
    max-width: 100%;
  }
  .teleconference-room-img{
    max-width: 100%;
  }
  .private-seating-room{
    max-width: 100%;
  }
  .work-space-right-width{
    max-width: 100%;
  }
  .connector-img01, .connector-img02{
    display: none;
  }
}
.facilities-floor{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 80px;
  width: 100%;
}
.facilities-floor-inner{
  width: 100%;
  display: flex;
  flex-direction: column;
}
.facilities-floor-info-area{
  display: flex;
  align-items: flex-start;
  gap: 48px;
  align-self: stretch;
}
@media (max-width: 768px){
  .facilities-floor{
    gap: 32px;
  }
  .facilities-floor-inner{
    gap: 40px;
  }
}

/* Under 768px → column */
@media (max-width: 76px) {
  .facilities-work-space-inner {
    flex-direction: column;
    gap: 24px;
  }
}

/* Between 768px and 960px → row */
@media (min-width: 768px) and (max-width: 960px) {
  .facilities-work-space-inner {
    display: flex;
    flex-direction: row;
  }
}

.facilities-work-space-top-text-area {
  display: flex;
  flex-direction: row; /* default (desktop >1200px) */
  align-items: flex-start;
  gap: 24px;
}

@media (min-width: 768px) and (max-width: 960px) {
  .facilities-work-space-top-text-area {
    flex-direction: column; /* override for tablet range */
    gap: 16px;
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .facilities-work-space-top-text-area {
    flex-direction: column;
    gap: 16px;
  }
}



.facilities-floor-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    justify-content: flex-start;
}

@media (min-width: 768px) {
    .facilities-floor-container {
        gap: 20px;
        margin: 0 0;
    }
}

@media (max-width: 768px) {
    .facilities-floor-container {
      flex-direction: column;
      gap: 24px;
    }
}

@media (min-width: 768px) and (max-width: 960px){
  .facilities-floor-container {
    flex-direction: row;
    gap: 50px;
  }
}

.seating-table-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 350px;
}

@media (min-width: 768px) and (max-width: 1200px){
  .facilities-floor-container {
    flex-direction: row;
    gap: 50px;
  }

  .seating-table-section {
    min-width: 380px;
}
}

@media (max-width: 1100px) {
    .seating-table-section {
        width: 100%;
        height: 100%;
    }
}

.seating-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: -1px;
  align-self: stretch;
  position: relative;
}

.seating-type {
    color: #fff;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.56px;
    position: relative;
    padding: 16px;
    gap: 24px;
    flex: 1 0 0;
    border: 1px solid #f2f2ed;
    background-color: #424242;
}

.seating-count {
    align-self: stretch;
    color: #424242;
    text-align: center;
    font-family: "Instrument Sans";
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.56px;
    position: relative;
    padding: 16px 24px;
    gap: 24px;
    flex: 1 0 0;
    border: 1px solid #424242;
    display: flex;
    justify-content: center;
    align-items: center;
}

.seating-type-special {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  flex: 1 0 0;
  border: 1px solid #f2f2ed;
  position: relative;
  background-color: #424242;
  height: auto;
  padding: 16px;
}

.booth-title {
    color: #fff;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.56px;
    position: relative;
    margin: 0;
}

.booth-note {
    align-self: stretch;
    color: #fff;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 11px;
    font-weight: 400;
    line-height: 180%;
    position: relative;
    margin: 0;
}

.facilities-features {
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    flex: 1 0 0;
    border: 1px solid #424242;
    position: relative;
    width: auto;
}


@media (max-width: 768px) {
    .facilities-features {
        padding: 24px !important;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .facilities-features {
        padding: 16px !important;
    }
}

.main-features {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 56px 80px;
    position: relative;
    width: 100%;
    justify-content: center;
}

@media (max-width:960px) {
  .main-features {
    gap: 56px 20px;
    flex-wrap: nowrap;
}
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    position: relative;
}

@media (max-width: 768px) {
    .feature-item {
        width: calc(50% - 8px) !important;
    }
}

.feature-icon {
    display: flex;
    width: 56px;
    height: 56px;
    justify-content: center;
    align-items: center;
    position: relative;
}

.feature-label {
    color: #222;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.56px;
    position: relative;
    gap: 8px;
    margin: 0;
}

.feature-label-en {
  color: #222;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.56px;
  position: relative;
  gap: 8px;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.rental-services {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    width: 100%;
}
@media screen and (max-width: 768px) {
  .rental-services {
    align-items: center;
    align-content: center;
  }
}

.rental-services-title {
    color: #222;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.64px;
    position: relative;
    margin: 0;
    text-align: center;
}

.rental-services-grid {
  display: flex;
  width: auto;
  align-items: center;
  align-content: center;
  position: relative;
  justify-content: center;
  gap: 80px;
  margin-left: 20px;
}

@media (max-width: 960px) {
  .rental-services-grid {
    gap:30px
  }
}

@media (max-width: 768px) {
  .rental-services-grid {
    width: 100% ;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-left: 0px;
    gap:30px
  }
}

@media (min-width: 768px) and (max-width: 960px) {
  .rental-services-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-left: 0px;
  }
}

.rental-service-item {
    display: flex;
    width: 120px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    position: relative;
}

@media (max-width: 768px) {
  .rental-service-item {
    width: 75% !important;
    justify-self: center;
  }
}

.rental-service-icon {
    display: flex;
    width: 56px;
    height: 56px;
    justify-content: center;
    align-items: center;
    position: relative;
}

.rental-service-label {
    color: #222;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.56px;
    position: relative;
    gap: 8px;
    margin: 0;
}

.rental-service-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    position: relative;
}

.rental-service-label-multiline {
    color: #222;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.56px;
    position: relative;
    margin: 0;
}


.cafe-area{
  background: url('/img/shareoffice-kanda/new-bg.webp');
  background-repeat: repeat;
  background-size: auto;
}
.cafe-section {
  background-color: #fff;
  display: flex;
  padding: 8px 0px;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
}
.cafe-border-area{
  width: 100%;
}
.cafe-top-area{
  display: flex;
  margin: 0px 48px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid #222;
  align-self: stretch;
}
.cafe-top-title{
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.cafe-top-subtitle{
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 32px */
  letter-spacing: 0.8px;
}

@media (min-width: 768px) and (max-width: 960px) {
  .cafe-section-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 48px;
    color: #3B2211;
    font-weight: 400;
    justify-content: end;
    flex-direction: row;
  }
}

.cafe-section-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 48px;
  color: #3B2211;
  font-weight: 400;
  justify-content: end;
  flex-direction: row;
  flex-wrap: wrap;
}



.cafe-content-area {
  display: flex;
  flex-direction: column;
  align-items: center;      
  justify-content: center; 
  flex: 1;                 
  gap: 40px;                
  text-align: center;     
  margin: 0 auto;          
  max-width: 600px; 
  padding-bottom: 80px;        
}

@media (min-width: 768px) and (max-width: 960px) {
  .cafe-section-inner {
    flex-direction: row;
    gap: 24px;
    padding: 0;
  }
  .cafe-content-area{
    width: 500px;
  }
  .cafe-hero-image{
    width: 300px;
  }
}

@media (max-width: 960px) {
  .cafe-section{
    padding: 16px 24px;
    gap: 24px;
    margin-top: 90px;
  }
  .cafe-section-inner{
    padding: 0;
    gap: 24px;
  }
  .cafe-top-area{
    margin: 0 0;
    padding-bottom: 24px;
  }
  .cafe-top-title{
    font-size: 24px;
  }
  .cafe-top-subtitle{
    font-size: 18px;
  }
  .cafe-content-area {
    max-width: 100%;
    padding: 0;
    gap: 24px;
  }
}

.cafe-logo {
  aspect-ratio: 3.09;
  object-fit: contain;
  object-position: center;
  width: 296px;
  align-self: flex-start;
  max-width: 100%;
}

.cafe-description {
  color: #222;
  /* PC/ja/body */
  font-family: "Noto Sans CJK JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 25.2px */
  margin-bottom: 16px;
  text-align: left;
}
.text-content .primary-btn{
  max-width: 326px;
  gap: 43px;
  width: 100%;
  font-size: 16px;
  text-transform: none;
}

@media (max-width: 768px) {
  .view-more-button {
      padding-left: 20px;
  }
}

.button-text {
  align-self: stretch;
  margin: auto 0;
}

.arrow-icon {
  aspect-ratio: 0.5;
  object-fit: contain;
  object-position: center;
  width: 8px;
  align-self: stretch;
  margin: auto 0;
  flex-shrink: 0;
}

.cafe-hero-image {
  width: 100%;
  max-width: 400px;
}

.news-area{
  display: flex;
  padding: 227px 0 100px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  align-self: stretch;
}
.news-top-content{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}
@media (max-width: 768px) {
  .news-area{
    display: flex;
    padding: 100px 0 0 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    align-self: stretch;
  }
  .news-top-content{
    flex-direction: column-reverse;
  }
}
.gallery-container {
  display: flex;
  padding-top: 100px;
  align-items: end;
  gap: 24px;
  justify-content: start;
  /* flex-wrap: wrap; */
}

.primary-image {
    aspect-ratio: 0.96;
    object-fit: contain;
    object-position: center;
    width: 208px;
    flex-shrink: 0;
}

.featured-image-wrapper {
    display: flex;
    min-width: 240px;
    min-height: 476px;
    align-items: start;
    gap: 10px;
    justify-content: start;
    width: 323px;
}

.featured-image {
    aspect-ratio: 0.96;
    object-fit: contain;
    object-position: center;
    width: 323px;
    min-width: 240px;
}

@media (max-width: 768px){
  .gallery-container {
      display: flex;
      max-width: 375px;
      align-items: end;
      gap: 24px;
      justify-content: start;
  }

  .primary-image-wrapper {
      display: flex;
      padding-bottom: 80px;
      align-items: start;
      gap: 10px;
      justify-content: start;
      flex: 1;
      flex-shrink: 1;
      flex-basis: 0%;
  }

  .primary-image {
      aspect-ratio: 0.96;
      object-fit: contain;
      object-position: center;
      width: 210px;
      flex: 1;
      flex-shrink: 1;
      flex-basis: 0%;
  }

  .secondary-image {
      aspect-ratio: 0.96;
      object-fit: contain;
      object-position: center;
      width: 141px;
      flex-shrink: 0;
  }
}
.news-articles{
  display: flex;
  padding: 16px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  border-bottom: 1px solid #000;
}
.news-article-contents{
  display: flex;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}
.news-date-area{
  display: flex;
  height: 50px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}
@media (max-width: 768px){
  .news-articles{
    padding: 24px 0px;
    align-items: center;
  }
}


.plans-section {
  padding: 200px 0 200px 0;
}

@media (max-width: 768px) {
  .plans-section {
    padding-top: 220px;
    padding-bottom: 0px;
  }
}

@media (min-width:768px) and (max-width:960px) {
  .plans-section {
    padding: 300px 0 0 0;
  }
}

.plans-header {
    position: relative;
    width: 100%;
    color: #222;
}

@media (max-width: 768px) {
    .plans-header {
        max-width: 100%;
    }
}

.header-content {
    z-index: 0;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
}

@media (max-width: 768px) {
    .header-content {
        max-width: 100%;
    }
}

.header-image {
    aspect-ratio: 2.08;
    object-fit: contain;
    object-position: center;
    width: 310px;
    position: absolute;
    z-index: 0;
    max-width: 100%;
    right: 117px;
    top: 40px;
    height: 149px;
    mix-blend-mode: multiply;
}
@media (max-width: 768px){
  .header-image {
    width: 220px;
    max-width: 100%;
    right: 0;
    top: -152px;
    height: auto;
  }
}

@media (min-width:768px) and (max-width:960px) {
  .header-image {
    right: 200px;
    top: -202px;
  }
}

.plans-content {
    align-items: stretch;
    display: flex;
    margin-top: 100px;
    width: 100%;
    flex-direction: column;
    white-space: nowrap;
    justify-content: start;
}

@media (max-width: 768px) {
  
}

@media (max-width: 768px) {
    .plans-content {
        max-width: 100%;
        margin-top: 48px;
        white-space: initial;
    }
}

.pricing-cards {
    align-items: center;
    flex-wrap: wrap;
    align-self: center;
    display: flex;
    min-height: 180px;
    width: 100%;
    gap: 56px;
    justify-content: start;
}

@media (max-width: 960px) {
    .pricing-cards {
        white-space: initial;
        flex-direction: column;
        gap: 40px;
    }
}

.pricing-card {
    align-self: stretch;
    margin-bottom: auto;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
}

@media (max-width: 768px) {
    .pricing-card {
        white-space: initial;
        width: 100%;
    }
}

.card-header {
    align-self: stretch;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
    width: 100%;
    padding: 0 8px;
    gap: 10px;
    font-family: Zen Kaku Gothic Antique, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 16px;
    color: #FFF;
    font-weight: 700;
    line-height: 35px;
    background-color: #424242;
}

@media (max-width: 768px) {
    .card-header {
        white-space: initial;
    }
}

.card-content {
    width: 100%;
    padding-top: 16px;
    color: #222;
}

@media (max-width: 768px) {
    .card-content {
        white-space: initial;
        min-height: auto;
    }
}

.price-section {
    width: 100%;
    align-items: baseline;
    gap: 8px;
    font-family: Zen Kaku Gothic New, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.64px;
    justify-content: start;
}

@media (max-width: 768px) {
    .price-section {
        white-space: initial;
    }
}

.price-label {
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
    padding: 3px 8px;
    /* text-align: center; */
}
.price-label-zh {
  align-self: stretch;
  margin-top: auto;
  margin-bottom: auto;
  padding: 3px 8px;
  /* text-align: center; */
}

@media (max-width: 768px) {
    .price-label {
        white-space: initial;
    }
    .price-label-zh {
      white-space: initial;
  }
}

.price-amount {
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
}

@media (max-width: 768px) {
    .price-amount {
        white-space: initial;
    }
}

.plans-features-list {
    align-items: start;
    border: 1px solid var(--DarkGray, #424242);
    display: flex;
    margin-top: 8px;
    width: 100%;
    padding: 16px;
    flex-direction: column;
    overflow: hidden;
    font-family: Noto Sans CJK JP, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 20px;
    justify-content: start;
}

@media (max-width: 768px) {
    .plans-features-list {
        white-space: initial;
    }
}

.plans-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: start;
}

.plans-feature-item:not(:first-child) {
    margin-top: 5px;
}

@media (max-width: 768px) {
    .plans-feature-item {
        white-space: initial;
    }
}

.plans-feature-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 16px;
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
    flex-shrink: 0;
}

.plans-feature-text {
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
}

.simple-plan {
    font-family: Zen Kaku Gothic New, -apple-system, Roboto, Helvetica, sans-serif;
    letter-spacing: 0.64px;
}

.pay-per-use-plan .price-section:not(:first-child) {
    margin-top: 8px;
}

.pay-per-use-plan .price-label {
    min-width: 138px;
}

.options-section {
    display: flex;
    margin-top: 56px;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    font-size: 16px;
    font-weight: 700;
    justify-content: center;
}

@media (max-width: 768px) {
    .options-section {
        max-width: 100%;
        margin-top: 0;
        white-space: initial;
    }
}

.options-header {
    align-self: stretch;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
    width: 100%;
    padding: 0 8px;
    gap: 10px;
    font-family: Zen Kaku Gothic Antique, -apple-system, Roboto, Helvetica, sans-serif;
    color: #FFF;
    line-height: 35px;
    background-color: #424242;
}

@media (max-width: 768px) {
    .options-header {
        max-width: 100%;
        white-space: initial;
    }
}

.options-content {
    padding-top: 16px;
    align-items: start;
    display: flex;
    width: 100%;
    gap: 56px;
    font-family: Zen Kaku Gothic New, -apple-system, Roboto, Helvetica, sans-serif;
    color: #222;
    letter-spacing: 0.64px;
    justify-content: start;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .options-content {
        max-width: 100%;
        white-space: initial;
    }
}

.option-item {
    display: flex;
    min-width: 240px;
    align-items: stretch;
    gap: 8px;
    justify-content: start;
}

@media (max-width: 768px) {
    .option-item {
        white-space: initial;
    }
}

.option-service, .option-service-locker {
    min-width: 166px;
    margin-top: auto;
    margin-bottom: auto;
    padding: 3px 8px;
    text-align: left;
}

@media (max-width: 768px) {
    .option-service, .option-service-locker {
        white-space: initial;
    }
}

.option-price {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: start;
    height: 100%;
}

@media (max-width: 991px) {
    .option-price {
        white-space: initial;
    }
}

.option-price .price-label {
    text-align: center;
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
}

.option-price .price-amount {
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
}

.contact-section {
    align-items: center;
    display: flex;
    margin-top: 100px;
    width: 100%;
    max-width: 1127px;
    flex-direction: column;
    white-space: nowrap;
    justify-content: start;
    gap: 24px;
}

@media (max-width: 768px) {
    .contact-section {
        max-width: 100%;
        margin-top: 40px;
        white-space: initial;
    }
}


.business-hours-section {
    display: flex;
    flex-direction: column;
    /* overflow: hidden; */
    position: relative;
    width: 100%;
}

@media (max-width: 768px) {
    .business-hours-section {
        max-width: 100%;
    }
}

.background-image {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.hours-content {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
}

@media (max-width: 768px) {
    .hours-content {
        max-width: 100%;
    }

    .hours-header {
      padding-top: 100px;
  }
}

.hours-header {
    align-self: start;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    padding-top: 200px;
}

@media (max-width: 768px) {
  .hours-header {
    padding-top: 100px;
}
}

.hours-title-group {
    align-self: start;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}


.hours-subtitle {
    color: #222;
    font-family: 'Zen Kaku Gothic New';
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.8px;
    margin: 0;
}

.title-divider {
    border-color: rgba(34, 34, 34, 1);
    border-style: solid;
    border-width: 1px;
    min-height: 1px;
    margin-top: 16px;
    max-width: 100%;
}

.hours-details {
    position: relative;
    display: flex;
    margin-top: 40px;
    width: 100%;
    align-items: start;
    gap: 40px;
    justify-content: start;
    flex-direction: row;
}

@media (max-width: 768px) {
    .hours-details {
        max-width: 100%;
        flex-direction: column;
        margin-top: 20px;
    }
}

@media (min-width: 768px) and (max-width: 960px) {
  .hours-details{
    flex-direction: row;
  }
}

.hours-info {
    align-items: stretch;
    display: flex;
    min-width: 240px;
    flex-direction: column;
    justify-content: start;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
}

@media (max-width: 768px) {
    .hours-info {
        max-width: 100%;
    }
}

.operating-hours {
    align-self: start;
    display: flex;
    align-items: end;
    gap: 8px;
    overflow: hidden;
    font-family: Zen Kaku Gothic New, -apple-system, Roboto, Helvetica, sans-serif;
    color: rgba(34, 34, 34, 1);
    justify-content: start;
}

.day-label {
    align-self: stretch;
    border-color: rgba(0, 0, 0, 1);
    border-style: solid;
    border-width: 1px;
    padding: 8px;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: -0.48px;
}

@media (max-width: 768px) {
    .day-label {
        white-space: initial;
    }
}

.time-range {
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
}

@media (max-width: 768px) {
    .time-range {
        font-size: 40px;
    }
}

  .operating-hours-main {
    display: flex;
    gap:10px;
  }

.operating-hours {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.operating-hours .time-range {
  font-size: 45px;
  display: inline-block;
}
.operating-hours .holiday-note {
  margin-top: 0.2em;
  font-size: 11px ;
  font-family: Noto Sans CJK JP
}
@media (max-width: 768px) {
.operating-hours .time-range {
  font-size: 40px;
  display: inline-block;
}
}
.holiday-note{
  font-size: 11px;
}

@media (max-width: 768px) {
  .operating-hours {
    flex-direction: column;
    gap: 1em; /* space between items */
  }
  .operating-hours .holiday-note {
    margin-top: 0;
    margin-left: 1em; /* space to the left of the note */
  }
}

@media (min-width: 768px) and (max-width: 960px){
  .operating-hours {
    display: flex;
    flex-direction: column;
  }

  .operating-hours .holiday-note {
    align-items: normal;/* space to the left of the note */
  }
}

.weekend-info {
    margin-top: 48px;
    width: 100%;
    color: #222;
}

@media (max-width: 768px) {
    .weekend-info {
        max-width: 100%;
        margin-top: 40px;
        white-space: initial;
    }
}

.weekend-title {
    font-family: Zen Kaku Gothic New, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.8px;
    margin: 0;
}

.weekend-description {
    font-family: Noto Sans CJK JP, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    margin: 24px 0 0 0;
}

@media (max-width: 768px) {
    .weekend-description {
        max-width: 100%;
    }
}

.hours-image {
    aspect-ratio: 0.79;
    object-fit: contain;
    object-position: center;
    width: 462px;
    min-width: 240px;
}

@media (min-width: 768px) and (max-width: 960px) {
  .hours-image {
   max-width: 320px;
}
}


@media (max-width: 768px) {
    .hours-image {
        max-width: 100%;
    }
}
.faq-area{
  display: flex;
  margin-top: -100px;
  padding-top: 0;
  padding-top: 100px;
  padding-bottom: 100px;
  flex-direction: column;
  align-items: flex-start;
  gap: 100px;
}
@media (min-width: 768px) and (max-width: 960px) {
  .faq-area{
    display: flex;
    padding: 200px 0 0 0;
  }
}
.faq-top-area{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}
.faq-title-area{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}
.faq-inner{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  width: 100%;
}
.faq-inner-title{
  color: #222;

  /* PC/ja/H4 */
  font-family: "Zen Kaku Gothic New";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 32px */
  letter-spacing: 0.8px;
}
.faq-items-area{
  position: relative;
}
.faq-image{
  position: absolute;
  top: -330px;
  right: 0;
  width: 190px;
  mix-blend-mode: multiply;
}

.accordion {
  width: 100%;
  border-top: 1px solid #424242;
}
.accordion-item {
  border-bottom: 1px solid #424242;
  padding: 0 0px 24px 0px;
}
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 24px 24px 0px 0px;
}
.question {
  display: flex;
  align-items: center;
  font-weight: bold;
  gap: 16px;
}
.question span {
  color: #222;

  /* PC/en/H4 */
  font-family: 'Marcellus';
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 67.2px */
  letter-spacing: 0.96px;
}
.icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  position: relative;
}
.icon::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 24px;
  right: 15px;
  top: 0;
  background-color: #000;
  transition: transform 0.4s;
}
.icon::after{
  position: absolute;
  content: "";
  width: 24px;
  height: 1px;
  right: 3px;
  top: 12px;
  background-color: #000;
}
.accordion-content {
  padding: 0 24px 0 40px;
  /* display: none; */
  color: #222;

  /* PC/ja/body */
  font-family: "Noto Sans CJK JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 25.2px */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease;
}

.accordion-content-url{
  color: #0099cc;
  /* PC/ja/body */
  font-family: "Noto Sans CJK JP";
  font-size: 14px;
  font-style: normal;
  font-weight: bold;
  line-height: 180%;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  position: relative;
}
.accordion-content-url::after{
  content: '';
  background: url('/img/shareoffice-kanda/window.svg');
  position: absolute;
  right: -20px;
  bottom: 0px;
  width: 16px;
  height: 16px;
  aspect-ratio: 1/1;
}
.accordion-item.open .accordion-content {
  /* display: block; */
  max-height: none; /* adjust this based on expected content height */
  padding: 0 24px 24px 56px;
}
.accordion-item.open .icon::before {
  transform: rotate(90deg);
}
@media (max-width: 768px){
  .faq-area{
    gap: 80px;
    padding-top: 100px;
    margin-top: 0;
  }
  .faq-top-area{
    gap: 48px;
  }
  .faq-inner{
    gap: 24px;
  }
  .faq-image{
    top: -90px;
    width: 95px;
  }
  .faq-items-area{
    padding-top: 76px;
  }
  .faq-inner-title{
    font-size: 16px;
  }
  .accordion-header {
    padding: 24px 0 0px 0px;
    gap: 16px;
  }
  .accordion-item.open .accordion-content {
    padding: 0 16px 24px 16px;
    width: 100%;
  }
}
.access-area{
  display: inline-flex;
  padding: 100px 0px 180px 0px;
  flex-direction: column;
  align-items: flex-start;
  gap: 100px;
  width: 100%;
}
@media (min-width:768px) and (max-width:960px) {
  .access-area{
    padding: 100px 0px 100px 0px;
  }
}
.access-top-area{
  display: flex;
  align-items: baseline;
  gap: 16px;
  width: 100%;
}
.access-subtitle{
  color: #222;
  /* PC/ja/H2 */
  font-family: "Zen Kaku Gothic New";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.2px;
}
.access-map-area{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  position: relative;
  width: 100%;
}
.access-icon{
  position: absolute;
  right: 0;
  top: -90px;
  mix-blend-mode: multiply;
  width: 250px;
  height: 110px;
}
.access-map-inner{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
.access-iframe{
  width: 100%;
}
.access-time-frame-area{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 100px;
  width: 100%;
}
.access-time-frame-inner{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.access-item-title-area{
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid #222;
  width: 100%;
}
.access-item-time-area{
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.access-item-time-area-1{
  display: flex;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 50px;
}

.access-item-inner-text{
  display: flex;
  align-items: baseline;
  gap: 2px;
}
@media (max-width: 768px){
  .access-area{
    padding: 100px 0px;
    gap: 80px;
  }
  .access-top-are{
    flex-direction: column;
    gap: 0;
  }
  .access-subtitle{
    font-size: 20px;
  }
  .access-map-area{
    gap: 24px;
  }
  .access-map-inner{
    gap: 24px;
    margin-top: 40px;
  }
  .access-time-frame-area{
    gap: 56px;
  }
  .access-item-time-area{
    gap: 24px;
  }

  .access-item-time-area-1{
    gap: 24px;
    margin-bottom: 30px;
  }

  .access-item-text-area{
    display: flex;
    align-items: baseline;
  }
  .access-icon{
    width: 140px;
    height: 93px;
}
}

.about-us-area{
  display: flex;
  padding: 0px 80px 180px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 80px;
}

@media (min-width:768px) and (max-width:960px) {
  .about-us-area{
    padding: 0;
  }
  .access-item-time-area{
    gap: 0px;
    margin-bottom: 30px;
  }
  .access-item-time-area-1{
    gap: 0px;
    margin-bottom: 30px;
  }
}
.about-us-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
.about-us-inner{
  display: flex;
  align-items: flex-start;
  gap: 48px;
  align-self: stretch;
}
.about-frame{
  width: 309px;
  height: 412px;
}
.about-frame-partner{
  width: 309px;
  height: 412px;
}
.about-us-manager-area{
  display: flex;
  padding-top: 80px;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  flex: 1 0 0;
}
.about-us-manger-title{
  color: #FFF;
  /* PC/ja/H3 */
  font-family: "Zen Kaku Gothic New";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.48px;
}
.about-us-span-text{
  color: #FFF;
  /* PC/ja/caption */
  font-family: "Noto Sans CJK JP";
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}
.about-manager-sign-area{
  text-align: right;
  width: 100%;
}
.about-manager-sign{
  color: #FFF;
  text-align: right;
  /* PC/ja/H4 */
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 32px */
}

.about-subtitle{
  font-family: 'Zen Kaku Gothic New';
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.2px;
}


@media (max-width: 960px){
  .about-us-area{
    padding: 0 0 60px 0;
    gap: 80px;
  }
  .about-us-inner{
    gap: 40px;
  }
  .about-us-content{
    gap: 24px;
  }
  .about-frame{
    width: 160px;
    height: 214px;
  }
  .about-frame-partner{
    width: 160px;
    height: 214px;
  }
  .image-animate .about-frame-partner {
    opacity: 1 !important;
    transform: none !important;
  }
  .about-us-manager-area{
    padding-top: 0;
    gap: 16px;
  }
  .about-us-manger-title{
    font-size: 18px;
    letter-spacing: -0.36px;
  }
  .about-manager-sign{
    padding-top: 16px;
    text-align: left;
  }
}

@media (min-width: 768px) and (max-width: 960px) { 
  .about-us-manager-area{
    padding: 0;
  }
  .about-us-manger-title{
    font-size: 18px;
    
  }
}

@media (max-width:768px) {
  .about-us-inner{
    flex-direction: row-reverse;
  }

  .about-us-inner{
    gap: 16px;
  }
}
.partner-area{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 80px;
}
.partner-top-area{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}
.partner-title-area{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}
.about-us-partner-area{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
}
.about-us-partner-title{
  color: #FFF;
  /* PC/ja/H4 */
  font-family: "Zen Kaku Gothic New";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 32px */
  letter-spacing: 0.8px;
}
@media (min-width:768px) and (max-width:960px) {
  .about-frame{
    width: 265px;
    height: 353px;
    aspect-ratio: 265/353;
  }
  .about-frame-partner{
    width: 265px;
    height: 353px;
    aspect-ratio: 265/353;
  }
  .image-animate .about-frame-partner {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 768px){
  .partner-area{
    gap: 56px;
  }
  .partner-top-area{
    gap: 40px;
  }
  .about-us-partner-title{
    font-size: 18px;
  }
  .partner-content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.contact-section-area{
  display: flex;
  padding: 180px 40px;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  align-self: stretch;
  background: url('/img/shareoffice-kanda/contact_img.webp');
  background-repeat: no-repeat;
  background-size: cover;
}
.contact-section-title-area{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}
.contact-section-subtitle{
  color: #FFF;
  /* PC/ja/H2 */
  font-family: "Zen Kaku Gothic New";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1.2px;
}
.contact-section-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  text-align: center;
}
@media (max-width: 768px){
  .contact-section-area{
    display: flex;
    padding: 100px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    align-self: stretch;
  }
  .contact-section-title-area{
    gap: 0;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .contact-section-subtitle{
    font-size: 20px;
  }
  .contact-section-inner{
    align-items: flex-start;
    text-align: start;
  }
}

.footer {
  background-color: #333;
}
.footer__container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 0;
}
@media (max-width: 1440px) {
  .footer__container {
    max-width: 83.3333333333vw;
    padding: 3.3333333333vw 0;
  }
}
@media (max-width: 768px) {
  .footer__container {
    max-width: 100%;
    width: auto;
    padding: 8.5333333333vw;
  }
}
.footer__title {
  color: #E3DED7;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 4px;
}
@media (max-width: 1440px) {
  .footer__title {
    font-size: 1.3888888889vw;
    letter-spacing: 0.2777777778vw;
  }
}
@media (max-width: 768px) {
  .footer__title {
    font-size: 4.2666666667vw;
    letter-spacing: 0.8533333333vw;
    display: flex;
    justify-content: center;
  }
}
.footer__nav {
  display: flex;
  justify-content: space-between;
  padding-top: 48px;
}
@media (max-width: 1440px) {
  .footer__nav {
    padding-top: 3.3333333333vw;
  }
}
@media (max-width: 768px) {
  .footer__nav {
    display: none;
  }
}
.footer__item-title {
  color: #E3DED7;
  font-size: 15px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 3px;
}
@media (max-width: 1440px) {
  .footer__item-title {
    font-size: 1.0416666667vw;
    letter-spacing: 0.2083333333vw;
  }
}
.footer__item li a {
  color: #E3DED7;
  font-size: 15px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 3px;
  transition: all 0.3s;
}
@media (max-width: 1440px) {
  .footer__item li a {
    font-size: 1.0416666667vw;
    letter-spacing: 0.2083333333vw;
  }
}
.footer__copy {
  padding-top: 48px;
  color: #E3DED7;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2.8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1440px) {
  .footer__copy {
    padding-top: 3.3333333333vw;
    font-size: 0.9722222222vw;
    letter-spacing: 0.1944444444vw;
  }
}
@media (max-width: 768px) {
  .footer__copy {
    flex-direction: column;
    gap: 2.1333333333vw;
    font-size: 3.2vw;
    letter-spacing: 0.64vw;
  }
}
.footer__copy a {
  color: #E3DED7;
  line-height: 200%;
  transition: all 0.3s;
}
.footer__copy p {
  font-family: "Cormorant Garamond", serif;
  line-height: 100%;
}
.footer__copy-company {
  font-family: "Shippori Mincho", serif;
}

/* Ensure Swiper navigation buttons are never hidden */
.hero-section .swiper-button-prev::after,
.hero-section .swiper-button-next::after {
  font-size: 24px;         /* Adjust button size */
}

/* Ensure hero-swiper container is never hidden */
.hero-swiper.hidden-nav,
.hidden-nav .hero-swiper {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Ensure Swiper slides are never hidden */
.hero-swiper swiper-slide.hidden-nav,
.hidden-nav .hero-swiper swiper-slide {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Responsive swiper navigation */
@media (max-width: 768px) {
  .hero-swiper::part(button-prev),
  .hero-swiper::part(button-next) {
    width: 40px;             /* Smaller on mobile */
    height: 40px;            /* Smaller on mobile */
  }
  
  .hero-section .swiper-button-prev::after,
  .hero-section .swiper-button-next::after {
    font-size: 18px;         /* Smaller arrows on mobile */
  }
  
  .hero-swiper::part(pagination) {
    bottom: 15px;            /* Closer to bottom on mobile */
  }
  
  .hero-swiper::part(bullet) {
    width: 10px;             /* Smaller bullets on mobile */
    height: 10px;            /* Smaller bullets on mobile */
    margin: 0 4px;           /* Less spacing on mobile */
  }
}

/* Ensure swiper container is never hidden */
.hero-swiper.hidden-nav,
.hidden-nav .hero-swiper {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Ensure Swiper slides are never hidden */
.hero-swiper swiper-slide.hidden-nav,
.hidden-nav .hero-swiper swiper-slide {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Fallback styles for older browsers */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  z-index: 10;
  color: #fff;
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination {
  z-index: 10;
  bottom: 20px;
}

.hero-swiper::part(bullet),
.hero-swiper::part(bullet-active) {
  background: #fff;
}

.hero-swiper .swiper-pagination-bullet {
  background: #fff !important;
  opacity: 1;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: #fff;
  width: 12px;
  height: 12px;
  transform: none;
}

.features-separator {
    width: 100%;
    height: 1px;
    background-color: #424242;
    margin: 8px 0;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .features-separator {
        margin: 4px 0;
    }
}

.options-note {
  font-size: 12px;
  font-weight: 400;
  margin-top: 20px;
  color: #666;
}

.transport-icon {
  position: absolute;
  right: 0;
  top: -90px;
  mix-blend-mode: multiply;
  width: 140px;
  height: 93px;
}

@media (max-width: 768px) {
  .transport-icon {
    width: 140px;
    height: 93px;
  }
}

.train-icon {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}
@media (max-width: 768px) {
  .train-icon {
    width: 24px;
    height: 24px;
    margin-right: 6px;
  }
}

.tokyo-supplement {
  font-size: 11px;
  color: #444;
  margin-left: 12px;
  font-family: Noto Sans CJK JP;
  font-weight: 400;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .tokyo-supplement {
    font-size: 11px;
    margin-left: 6px;
  }
}

.about-us-two-column {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin: 80px 0 40px 0;
}

.about-us-left, .about-us-right {
  display: flex;
  flex-direction: column;
}

.about-align-target {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
}

.about-us-left {
  flex: 1 1 40%;
  min-width: 280px;
}

.about-us-right {
  flex: 2 1 60%;
  min-width: 320px;
  background: rgba(255,255,255,0.05);
  border: 2px solid #4a5a7a;
  border-radius: 8px;
  padding: 32px 24px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 2;
}

.about-title {
  font-size: 110px;
  color: #fff;
  font-family: 'Marcellus', serif;
  margin-bottom: 0.5em;
  line-height: 1.1;
}

@media (min-width: 768px) and (max-width: 960px) {
  .about-title {
    font-size: 80px;
  }
}

.about-subtitle {
  font-family: 'Zen Kaku Gothic New', 'Zen Kaku Gothic Antique', sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.2px;
  color: #fff;
  margin-bottom: 1.5em;
}

.about-company {
  font-family: 'Zen Kaku Gothic New', 'Zen Kaku Gothic Antique', sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.48px;
  color: #fff;
  margin-bottom: 0.5em;
}

.about-tagline {
  color: #FFF;
  font-family: 'Noto Sans CJK JP', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  margin-bottom: 1.5em;
}

@media (max-width:960px) {
  .about-tagline {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .about-us-two-column {
    flex-direction: column;
    gap: 24px;
  }
  .about-us-left, .about-us-right {
    min-width: 0;
    width: 100%;
  }
  .about-title {
    font-size: 3rem;
    margin-bottom: 0.5em;
  }
  .about-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1em;
  }
  .about-company {
    font-size: 1.2rem;
  }
}

.about-align-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 1em;
  flex-direction: column;
}

.about-align-left {
  flex: 0 0 auto;
}

.about-align-right {
  flex: 1 1 0;
}

@media (max-width: 768px) {
  .about-align-row {
    flex-direction: column;
    gap: 16px;
  }
}

@media (min-width: 768px) and (max-width: 960px) {
  .about-align-row {
    flex-direction: column;
    gap: 16px;
  }
}

.about-description {
  color: #FFF;
  font-family: "Noto Sans CJK JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%;
}

.pearner-label {
  color: #FFF;
  font-family: "Zen Kaku Gothic Antique";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 220%; /* 35.2px */
}

.note-caption {
  color: var(--DarkGray, #424242);
  font-family: "Noto Sans CJK JP";
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 19.8px */
}

@media (max-width: 768px) {
  .day-label {
    color: #222;
    font-family: "Zen Kaku Gothic New";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.32px;
  }
}

@media (max-width: 768px) {
  .access-item-time-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .access-item-time-area-1 {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .access-item-text-area {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0;
    padding: 0;
    margin: 0;
  }
  .access-item-inner-text {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 2px;
    padding: 0;
    margin: 0;
  }
  .section-title-text,
  .section-inner-subtitle,
  .tokyo-supplement {
    display: inline;
    margin: 0;
    padding: 0;
    width: auto;
  }
}

@media (min-width: 768px) and (max-width:960px){
  .access-item-time-area {
    flex-direction: column;
  }
  .access-item-time-area-1 {
    flex-direction: column;
  }
}

.access-item-text-area {
  display: flex;
  align-items: baseline;
}

.faq-highlight-box {
  display: flex;
  align-items: center;
  gap: 43px;
  padding: 14px 14px 14px 24px;
  background: var(--DarkGray, #424242);
  width: 400px;
  margin-bottom: 8px;
  transition: 0.5s;
  position: relative;
}

.faq-highlight-box:hover {
  background: #19809C;
}

.faq-highlight-box:hover .faq-highlight-icon {
  transform: translateX(6px);
}

@media (max-width: 768px) {
  .faq-highlight-box {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.partner-highlight-box,
.partner-highlight-box-sp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  text-align: center;
  padding: 14px 24px;
  background: transparent;
  width: 300px;
  margin-bottom: 8px;
  transition: 0.5s;
  position: relative;
  border: white 1px solid;
  color: white;
  font-family: 'Marcellus';
}

.partner-highlight-icon,
.partner-highlight-icon-sp {
  display: inline-block;
  vertical-align: middle;
  width: 1.2em;
  height: 1.2em;
}

.partner-highlight-box:hover {
  background: #19809C;
  cursor: pointer;
}

.partner-highlight-box:hover .partner-highlight-icon {
  transform: translateX(6px);
}

.partner-highlight-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Show on screens 768px and above */
@media (min-width: 768px) {
  .partner-highlight-box {
    display: flex;
  }
}

@media (max-width: 768px) {
  .partner-highlight-box {
    display: none; /* Ensure it's hidden on mobile */
  }
}

/* Mobile version of partner highlight box - shows only on mobile */
.partner-highlight-box-sp {
  display: none; /* Hide by default */
  align-items: center;
  gap: 43px;
  padding: 14px 24px;
  background: transparent;
  width: 300px;
  margin-bottom: 8px;
  transition: 0.5s;
  position: relative;
  border: white 1px solid;
  color: white;
  text-decoration: none;
  /* Override any sp-only inheritance */
  visibility: visible !important;
  opacity: 1 !important;
}

.partner-highlight-box-sp:hover {
  background: #19809C;
  cursor: pointer;
}

.partner-highlight-box-sp:hover .partner-highlight-icon-sp {
  transform: translateX(6px);
}

.partner-highlight-icon-sp {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-highlight-text-sp {
  color: #FFF;
  font-family: 'Marcellus';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.64px;
}

/* Show only on screens less than 768px (mobile) */
@media (max-width: 767px) {
  .partner-highlight-box-sp {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
    /* Force override any conflicting styles */
    max-height: none !important;
    overflow: visible !important;
    /* Center horizontally */
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
}

/* Ensure it's hidden on desktop/tablet */
@media (min-width: 768px) {
  .partner-highlight-box-sp {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}



.faq-text{
  margin-bottom: 10px;
  font-family: 'Noto Sans CJK JP';
}

.faq-highlight-icon {
  width: 20px;
  height: 20px;
  fill: #fff;
  filter: brightness(0) invert(1);
  transition: 0.5s;
}

.faq-highlight-text {
  color: #FFF;
  font-family: 'Noto Sans CJK JP';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.64px;
}

.faq-highlight-note{
  font-family: 'Noto Sans CJK JP';
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  margin-top: 4px;
  margin-bottom: 4px;
}

/* Guarantee .pc-only and .sp-only are never visible at the same time */
@media only screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
}

.nav-jp {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.24px;
  margin-left: 4px;
  transition: 0.3s;
}

.sp-nav-items a:hover .nav-jp {
  color: #19809C;
}

.section-inner-subtitle{
color: var(--DarkGray, #424242);
font-family: Marcellus;
font-size: 48px;
font-style: normal;
font-weight: 400;
line-height: 140%; /* 67.2px */
letter-spacing: 0.96px;
}

@media (max-width: 768px) {
  .section-inner-subtitle{
    color: var(--DarkGray, #424242);
    font-family: Marcellus;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 35.2px */
    letter-spacing: -0.32px;
  }
}

.work-space-right-width.animate-on-scroll.in-view {
  z-index: 10;
}

/* language-switcher.css */

.language-switcher {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  background: rgba(255,255,255,0.95);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 8px 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.language-dropdown {
  position: relative;
  display: inline-block;
}

.language-current {
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s;
  min-width: 120px;
  text-align: left;
  pointer-events: auto;
}

.language-current::after {
  content: '';
  display: inline-block;
  margin-left: 8px;
  border: solid #888;
  border-width: 0 2px 2px 0;
  padding: 4px;
  transform: rotate(45deg);
  transition: transform 0.3s;
}

/* Dropdown list hidden by default */
.language-dropdown-list {
  display: block;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.3s cubic-bezier(0.4,0,0.2,1),
    transform 0.3s cubic-bezier(0.4,0,0.2,1);
  position: absolute;
  right: 0;
  top: 110%;
  right: -10%;
  background: #fff;
  min-width: 140px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 4px 0;
  z-index: 10000;
  font-family: "Zen Kaku Gothic New";
}

/* Show when .open is added */
.language-dropdown.open .language-dropdown-list {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
}

.language-dropdown-list button {
  width: 100%;
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 16px;
  text-align: left;
  border-radius: 4px;
  transition: background 0.2s;
}

.language-dropdown-list button:hover {
  background: #f0f0f0;
}

.language-dropdown.open .language-current::after {
  transform: rotate(-135deg);
}

/* Hide entire switcher on small screens */
@media (max-width: 768px) {
  .language-switcher {
    display: flex !important;
    top: 8px;
    right: 8px;
    padding: 4px 8px;
  }
}

@media (max-width: 768px) {
  .options-content {
    justify-content: flex-start ;
    align-items: flex-start ;
    flex-direction: column ;
    gap: 16px ;
  }
  .option-item {
    min-width: 0 ;
    width: 100% ;
    justify-content: flex-start ;
  }
  .option-service {
    text-align: left ;
    min-width: 0 ;
    width: auto ;
  }
  .option-price {
    justify-content: flex-start ;
  }
}

.center-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media (min-width: 768px) and (max-width: 960px) {
  .center-btn {
    margin-left: 70px;
  }
}

@media (max-width: 960px) {
  .center-btn {
    margin-top: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.contact-section-inner a {
  align-self: center;
}

.access-map-area > a {
  align-self: center;
}

@media (min-width: 768px) and (max-width: 960px) {
  .concept-design-banner img {
    max-width: 350px; /* Adjust as needed */
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 960px) {
  .service-icon {
    width: 56px
  }
}

/* 1) Defaults (mobile and everything else) */
.about-frame {
  display: block;
}
.about-frame-tablet {
  display: none;
}

/* 2) Between 768px and 960px: hide the default, show the tablet version */
@media (min-width: 768px) and (max-width: 960px) {
  .about-align-row {
    flex-direction: column;
    gap: 16px;
  }
  .about-frame {
    display: none;
  }
  .about-frame-tablet {
    display: block;
    width: 265px;
  }
  .about-frame-partner {
    width: 265px;
    height: 353px;
  }
  .image-animate .about-frame-partner {
    opacity: 1 !important;
    transform: none !important;
  }

  .about-us-container-tablet{
    display: flex;
    flex-direction: row;
    gap: 170px;
  }
  .about-manager-sign{
    text-align: left;
  }
}


@media (min-width: 768px) and (max-width: 960px) {
  .section-title-text {
    font-size: 16px;
    padding: 0 1rem;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
  }
}

.you-email-link {
  color: var(--you-blue-link, #296299);
  font-family: "Noto Sans CJK JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 25.2px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.you-email-link-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.you-email-link-row img[alt="window-img"] {
  height: 18px;
  width: auto;
}

/* Responsive line breaks for About us title */
.about-title .about-title-break-1 {
  display: block;
  height: 0;
  width: 100%;
}
.about-title .about-title-break-2,
.about-title .about-title-break-3 {
  display: none;
}

@media (max-width: 959px) {
  .about-title .about-title-break-2,
  .about-title .about-title-break-3 {
    display: block;
    height: 0;
    width: 100%;
  }
}
.about-us-container{
  padding-left: 300px;
  background-color: #F2F2ED;
}

@media (max-width: 959px) {
  .about-us-container {
    padding-left: 0px;
  }
}

.pay-per-use-plan .price-label {
  display: inline-block;
  width: 180px;
}
.pay-per-use-plan .price-label-zh {
  display: inline-block;
  width: 300px;
}
.pay-per-use-plan .price-amount {
  margin-top: 0;
  margin-bottom: 0;
  vertical-align: middle;
}

/* Show PC button by default, hide SP button */
.primary-btn-pc {
  display: inline-block;
}
.primary-btn-sp {
  display: none;
}

/* At 960px or below: show SP button, hide PC button */
@media (max-width: 960px) {
  .primary-btn-pc {
    display: none;
  }
  .primary-btn-sp {
    display: inline-block;
  }
}


/* ===============================================
* 追記 *
=============================================== */
footer {
	padding: 0;
}

footer nav {
	flex-flow: nowrap;
}

footer ul {
	margin-top: 0;
}

footer ul~ul {
	margin-left: 0;
}

.btn img {
	width: auto;
}

#contact {
	margin-top: 0!important;
}

footer {
	margin-top: 0!important;
}