/* ↓ common.css に移行済みのヘッダー／ナビゲーションスタイル
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html, body{
  overflow-x: hidden;
}

html{ 
  scroll-behavior:smooth; 
}

body{
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  background-color: #f7f9f8;
}

.header {
  padding: 16px 10px;
  position: relative;
}

.header::before {
 content: "";
 position: absolute;
 left: 50%;
 top:-140px;
 transform: translateX(-50%);
 width: 140%;
 height:400px;
 background: #edefec;
 border-bottom-left-radius: 1400px 390px;
 border-bottom-right-radius: 1400px 390px;
 z-index: 0;
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}
.header-left {
  font-family: "Zen Maru Gothic", "Noto Sans JP", system-ui, sans-serif;
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-title {
  display: flex;
  flex-direction: column;
  color: #333333;
  justify-content: center;
  text-decoration: none;
}
.site-subtitle {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}
.site-name {
  font-size: 22px;
  white-space: nowrap;
  line-height: 1.2;
}

.dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: center;
}
.dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}
.dots i:nth-child(1) { background: #5ea2cd; }
.dots i:nth-child(2) { background: #a385b1; }
.dots i:nth-child(3) { background: #e3b953; }

.header-phone {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.phone-link {
  font-family: "Zen Maru Gothic", "Noto Sans JP", system-ui, sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #3A8D78;
  font-weight: 700;
  font-size: 24px;
  white-space: nowrap;
}
.phone-link i {
  font-size: 16px;
}

.hamburger {
  display: none;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}
.nav-list a {
  text-decoration: none;
  color: #333333;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s;
}
.nav-list a:hover {
  color: #3A8D78;
}
.nav-btn {
  border: none;
  background: #3A8D78;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 24px;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.3s;
  text-decoration: none;
}
.nav-btn:hover {
  opacity: 0.9;
}

.has-dropdown {
  position: relative;
}
.dropdown-toggle {
  cursor: pointer;
  position: relative;
}
.has-dropdown.active .dropdown-toggle {
  color: #3A8D78;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-70%);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 10px;
  margin-top: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}
.has-dropdown.active .dropdown {
  opacity: 1;
  visibility: visible;
}
.dropdown-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mega-item {
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 15px;
  transition: all 0.3s;
  background: #ffffff;
  gap:10px;
}
.mega-item:hover {
  transform: translateY(-5px);
}
.mega-img {
  width: 90px;
  height: 60px;
  overflow: hidden;
}
.mega-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mega-item:hover .mega-img img {
  transform: scale(1.05);
}
.mega-title {
  color: #333333;
  font-size: 16px;
  text-align: center;
  white-space: nowrap;
}
.mega-item:hover .mega-title {
  color: #3A8D78;
}
.has-dropdown-mobile {
  position: relative;
}
.dropdown-toggle-mobile {
  position: relative;
  cursor: pointer;
}
.dropdown-toggle-mobile::after {
  content: '▼';
  font-size: 10px;
  margin-left: 8px;
  transition: transform 0.3s;
}
.has-dropdown-mobile.active .dropdown-toggle-mobile::after {
  transform: rotate(180deg);
}
.dropdown-menu-mobile {
  list-style: none;
  padding-left: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.has-dropdown-mobile.active .dropdown-menu-mobile {
  max-height: 500px;
}

.nav-mobile {
  position: fixed;
  top: 2%;
  right: -100%;
  width: 95%;
  max-width: 420px;
  background: #3A8D78;
  padding: 80px 0 120px 60px;
  transition: right 0.3s ease;
  z-index: 1001;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
}
.nav-mobile.active {
  right:3%;
}
.close-wrap{
  position:absolute;
  right:0;
  top:0;
  width:70px;
  height:60px;
  background:#fff8e4;
  border-top-right-radius: 0;
  border-bottom-left-radius: 30px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;

  display:flex;
  align-items:center;
  justify-content:center;
}
.close-menu{
  width:56px;
  height:56px;
  border:none;
  background:transparent;
  cursor:pointer;
  padding:0;
  display:grid;
  place-items:center;
}
.x-icon{
  position: relative;
  width:46px;
  height:46px;
}
.x-icon::before,
.x-icon::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:32px;
  height:4px;
  background:#2f8f7a;      
  transform-origin:center;
}
.x-icon::before{
  transform: translate(-50%,-50%) rotate(45deg);
}
.x-icon::after{
  transform: translate(-50%,-50%) rotate(-45deg);
}
.nav-mobile-list {
  list-style: none;
  margin-bottom: 30px;
}
.nav-mobile-list a {
  color:#ffffff;
  text-decoration:none;
  font-weight:600;
  font-size:17px;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 0;
}
.nav-mobile-list a::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:#afd891;
  display:inline-block;
}
.nav-mobile-btn {
  border: none;
  background: #ffffff;
  color: #3A8D78;
  font-weight: 600;
  font-size: 17px;
  padding: 8px 32px;
  border-radius: 25px;
  cursor: pointer;
  margin-bottom: 30px;
  align-self: flex-start;
  text-decoration: none;
}
.nav-mobile-footer {
  list-style: none;
  margin-left: 20px;
}
.nav-mobile-footer a {
  color:#ffffff;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 0;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 980px) {
  .header-content {
    flex-wrap: wrap;
    gap: 12px;
  }
  .header-phone {
    order: 2;
    flex: 1 1 100%;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 18px 20px;
  }
  .header-left {
    order: 1;
    gap: 12px;
  }
  .site-subtitle {
    font-size: 15px;
  }
  .site-name {
    font-size: 23px;
  }
  .dots {
    gap: 5px;
  }
  .phone-link {
    font-size: 22px;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: none;
    cursor: pointer;
    padding: 8px;
    order: 3;
    position: absolute;
    right: -20px;
    top: -21px;
    background: #fff8e4;
    width: 60px;
    height: 50px;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 15px;
  }
  .hamburger span {
    width: 26px;
    height: 3px;
    background: #3A8D78;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .phone-link {
    font-size:22px;
    gap: 8px;
  } 
  .nav-desktop {
    display: none;
}
}
*/
/* .head_title{
  max-width: 1400px;
  margin: 25px auto 80px auto;
  position: relative;
  padding-top: 90px; 
} */
.head_title h2{
  color: #3A8D78;         
  font-size: 36px;   
  text-align: center;    
  position: relative;
}
.sketch-bg{
  position: absolute; 
  top: 0; 
  right: 0; 
  width: 460px;            
  height: auto;
  opacity: .85;
  pointer-events: none;
}

@media (max-width: 1024px) {
.header::before {
  height:450px;
}
}

@media (max-width: 768px) {
.header::before {
 width: 110%;
 height:360px;
}
.head_title{
  margin: 25px auto 25px auto;
  padding-top: 10px; 
}
.sketch-bg{
  display: none;
}
 .head_title h2{        
  font-size: 28px;   
 }
}

/* .main_grid{
  max-width: 1200px;
  margin: 0 auto 20px auto;
  padding: 0 15px;
  display:grid;
  grid-template-columns: 1fr 2.2fr;
  gap:20px;
  align-items: start;
} */
/* .main_grid aside {
    width: 340px;
    .about_corp,.about_disability {
        width: 340px;
        display: inline-flex;
        align-items: center;
        background-color: #3A8D78;
        padding: 0 20px;
        height: 80px;
        border-radius: 20px;
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
    }
} */
/* aside .about_corp,
aside .about_disability{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background-color: #3A8D78;
  padding: 14px 24px;
  border-radius: 15px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
} */
aside .nursing_button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background-color: #3A8D78;
  padding: 14px 70px;
  border-radius: 15px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}
/* aside .list {
  list-style: none;
  padding: 20px 30px;
  font-size: 16px;
  margin-bottom: 20px;
} */
.main_grid h1 {
  font-size: 32px;
  border-radius: 10px;
  margin-top: 10px; 
  margin-bottom: 5rem;
}
@media (max-width: 1024px) {
  .main_grid h1 {
  margin-bottom: 2rem;
  }
}
.main_grid h2 {
  font-size: 32px;
  margin-bottom: 80px;
}
.main_grid section .description {
  line-height: 1.9;
}
.main_grid .subtitle{
  font-size: 18px;
  font-weight: 600;
  padding: 1.5rem 0 0;
  margin-bottom: 1rem;
}
.elderly_cares-img {
  max-width:550px;
  margin: 0 auto 70px auto;
  height:auto;
}
.elderly_cares-img img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}
.main-content .news-list {
  margin-bottom: 80px;
}
.notice-button{
  display: flex;
  justify-content: center;
  margin: 60px 0;
}
a.annountment {
  background-color: #3A8D78;
  color: #ffffff;
  padding: 10px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 40px;
  text-decoration: none;
  transition: 0.3s ease;
}
a.annountment:hover {
opacity: 0.8;
}
.arrow {
  font-size: 18px;
}

/* .activity-details{
  margin-bottom: 80px;
} */
.activity-details p{
  line-height: 1.9;
}

.basic-info {
  max-width: 900px;
  margin: 40px auto 80px auto;
}
.info-table {
  padding: 0 60px;
}
.info-row:first-of-type {
  border-top: 1px solid #3A8D78;
}
.info-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 20px 25px;
  border-bottom: 1px solid #3A8D78;
  align-items: start;
}
.info-label {
  color: #3A8D78;
  font-size: 16px;
  padding-top: 4px;
  font-weight: 700;
}
.info-value {
  color: #333333;
  font-size: 16px;
  line-height: 1.9;
}

.center-contacts {
  margin: 40px auto 120px auto;
}
.contact-box {
  background-color: #f6f5ef;
  border-radius: 15px;
  padding: 25px 30px;
  text-align: center;
  margin: 0 20px;
}
.center-name {
  font-size: 24px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 5px;
}
.contact-numbers {
  display: flex;
  justify-content: center;
  gap: 50px;
}
.center-tel,
.center-fax {
  font-size: 24px;
  font-weight: 600;
  color: #333333;
}

@media (max-width: 1024px) {
  .main_grid {
    gap: 40px;
  }
}
@media (max-width: 980px) {
  .info-table {
   padding: 0 30px;
  }
}
@media (max-width: 768px) {
  /* .main_grid {
    grid-template-columns: 1fr;
    margin: 30px auto 20px auto;
    padding: 0 30px;
    gap: 40px;
  } */
   .basic-info {
  margin: 40px auto;
  }
  .center-contacts {
    margin: 40px auto;
  }
  aside .about_corp, aside .about_disability, aside .nursing_button {
    width: 100%;
  }
  aside .list {
    padding: 20px 0;
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    grid-template-columns: repeat(auto-fit, minmax(max-content, 1fr));
    gap: 15px;
  }
  aside .list li {
    margin-bottom: 0;
    font-size: 14px;
  }
  .main_grid h2 {
    font-size: 22px;
    text-align: center;
  }
  .main_grid .description {
   font-size: 14px;
   margin-bottom: 20px;
  }
  .main_grid h3 {
    font-size: 16px;
    max-width: unset;
  }
  .main_grid .subtitle {
    font-size: 16px;
  }
  .main-content .news-list {
    margin-bottom: 40px;
  }
  .info-table {
   padding: 0 10px;
 }
  .info-row {
    grid-template-columns: 80px 1fr;
    padding: 15px 10px;
    gap: 10px;
  }
  .info-label {
    font-size: 14px;
  }
  .info-value {
    font-size: 14px;
  }
  .contact-box {
    padding: 25px 20px;
    margin: 0 auto;
  }
  .center-name {
    font-size: 16px;
  }
  .contact-numbers {
    gap: 5px;
    flex-direction: column;
  }
  .center-tel,
  .center-fax {
    font-size: 16px;
  }
  .elderly_cares-img img {
    height: 260px;
  }
}

.recruit_section {
  margin-bottom: 170px;
  background: #f6f5ef;
}
.recruit-container {
  max-width: 1200px;
  margin: 0 auto;
}
.banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  min-height: 250px;
}
.recruit-background {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 55%;
}
.recruit-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recruit-person {
  position: absolute;
  bottom: -5%;
  left: 35%;
}
.recruit-person img {
  width: 60px;
  height: auto;
  display: block;
}
.recruit-content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  z-index: 1;
}
.slogan-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  margin: 0;
  color: #333333;
}
.recruit-slogan {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
}
.slogan-text {
  font-size: 25px;
}
.badge {
  position: relative;
}
.furigana {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  color: #4d8c7d;
  font-size: 19px;
  white-space: nowrap;
}
.badge-text {
  background-color: #4d8c7d;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  font-size: 40px;
  justify-content: center;
  align-items: center;
}
.recruit-org {
  padding-top: 20px;
}
.org-name {
  font-size: 22px;
  color: #333333;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  margin: 0;
  position: relative;
  padding-right: 6px;       
}
.org-name::after{
  content: '';
  position: absolute;
  right: 0;
  top: 12px;
  bottom: 0;
  width: 8px;
  background-image: radial-gradient(circle, #4d8c7d 4px, transparent 4px);
  background-size: 8px 1.2em;
  background-position: center;
  background-repeat: repeat-y;
}

.recruit-cta {
  z-index: 1;
  flex-shrink: 0;
}
.recruit-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #3A8D78;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  padding: 35px 8px 55px;
  position: absolute;
  transition: opacity 0.3s;
  top: -10px;
}
.recruit-button:hover {
  opacity: 0.92;
}
.btn-main-text {
  font-size: 27px;
  font-weight: 700;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.btn-sub-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #EBECE1;
}
.btn-arrow {
  position: absolute;
  bottom: 18px;
  font-size: 20px;
}
.button-icon {
  width: 45px;
  height: auto;
  display: block;
  position: absolute;
  top: -3%;
  left: 30px;
}
.illustration-care {
  width: 60px;
  height: auto;
  display: block;
  position: absolute;
  right: 28%;
  top: -5%;
}
.illustration-walking {
  width: 120px;
  height: auto;
  display: block;
  position: absolute;
  bottom: -5%;
  right: 30%;
}

@media (max-width: 1024px) {
  .banner {
    gap: 30px;
    min-height: 220px;
  }
  .recruit-background {
    width: 60%;
  }
  .recruit-person {
    bottom: -3%;
  }
  .recruit-person img {
    width: 50px;
  }
  .slogan-text {
    font-size: 22px;
  }
  .furigana {
    font-size: 17px;
    top: -24px;
  }
  .badge-text {
    width: 56px;
    height: 56px;
    font-size: 36px;
  }
  .org-name {
    font-size: 17px;
  }
  .btn-main-text {
    font-size: 25px;
  }
  .btn-sub-text {
    font-size: 13px;
  }
  .btn-arrow {
    font-size: 18px;
  }
  .recruit-button {
    padding: 30px 7px 48px;
    top: -13px;
  }
  .button-icon {
    width: 38px;
    left: 25px;
    top: -2%;
  }
  .illustration-care {
    width: 55px;
    right: 25%;
    top: -4%;
  }
  .illustration-walking {
    width: 105px;
    right: 26%;
    bottom: -3%;
  }
}
@media (max-width: 768px) {
  .banner {
    gap: 20px;
    min-height: 200px;
    padding: 20px 10px;
  }
  .recruit-background {
    width: 62%;
  }
  .recruit-person {
    left: 27%;
  }
  .recruit-person img {
    width: 50px;
  }
  .recruit-content {
    gap: 8px;
  }
  .recruit-slogan {
    padding-top: 8px;
  }
  .recruit-org {
    padding-top: 15px;
  }
  .slogan-text {
    font-size: 22px;
  }
  .furigana {
    font-size: 17px;
    top: -23px;
  }
  .badge-text {
    width: 56px;
    height: 56px;
    font-size: 36px;
  }
  .org-name {
    font-size: 16px;
  }
  .btn-main-text {
    font-size: 24px;
  }
  .btn-sub-text {
    font-size: 13px;
  }
  .btn-arrow {
    font-size: 16px;
    bottom: 15px;
  }
  .recruit-button {
    padding: 28px 8px 45px;
    top: 15px;
  }
  .button-icon {
    width: 38px;
    left: 25px;
  }
  .illustration-care {
    width: 55px;
    right: 10%;
    top: 1%;
  }
  .illustration-walking {
    width: 100px;
    right: 13%;
    bottom: 0;
  }
}
@media (max-width: 480px) {
  .recruit_section {
    margin-bottom: 100px;
  }
  .banner {
    gap: 15px;
    min-height: 200px;
    padding: 20px 10px;
  }
  .recruit-background {
    width: 68%;
  }
  .recruit-person {
    left: 20%;
  }
  .recruit-person img {
    width: 42px;
  }
  .recruit-content {
    gap: 6px;
  }
  .recruit-slogan {
    padding-top: 5px;
  }
  .recruit-org {
    padding-top: 12px;
  }
  .slogan-text {
    font-size: 20px;
  }
  .furigana {
    font-size: 17px;
    top: -23px;
  }
  .badge-text {
    width: 56px;
    height: 56px;
    font-size: 36px;
  }
  .org-name {
    font-size: 14px;
  }
  .btn-main-text {
    font-size: 24px;
  }
  .btn-sub-text {
    font-size: 11px;
  }
  .btn-arrow {
    font-size: 14px;
    bottom: 13px;
  }
  .recruit-button {
    padding: 25px 6px 42px;
    top: 12px;
  }
  .button-icon {
    width: 36px;
    left: 25px;
  }
  .illustration-care {
    width: 45px;
    right: 6%;
    top: 0;
  }
  .illustration-walking {
    width: 85px;
    right: 6%;
  }
}
.contact-section {
  position: relative;               
  background:#e8f3ef;              
  min-height: 220px;               
  padding: 80px 16px 60px;           
  overflow: visible;
}

.call-pill{
  position: absolute;
  left: 50%;
  top: 0;                            
  transform: translate(-50%, -50%);   
  width: min(960px, calc(100% - 72px));
  background:#f7f9f8;
  border-radius:999px;
  padding:26px 28px;
  text-align:center;                   
}

.call-title{
  font-size:24px;
  font-weight:600;
  color:#333333;
  margin:0 0 10px 0;
}

.call-main{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  font-size:44px;
  line-height:1;
  margin:0;
  color:#333333;
}

.call-main i{
  font-size:40px;
  color:#3A8D78;
  transform: translateY(1px);
}

.call-hours{
  margin:10px 0 0 0;
  font-size:16px;
  color:#333333;
}

@media (max-width:480px){
  .contact-section {         
    min-height: unset;               
    padding: 60px 16px 60px;           
  }
  .call-pill{
    top: -20px;     
    border-radius:36px;
    padding:20px 18px;
  }
  .call-main i{
    font-size:21px;
  }
  .call-main{ 
    font-size:31px; 
  }
  .call-title{
    font-size:16px;
  }
  .call-hours{
    font-size:13px;
  }
}
.footer {
  background: #3A8D78;
  color: #ffffff;
  padding: 60px 0;
}
.breadcrumb {
  background-color: #e8f3ef;
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 0;
  font-size: 14px;
  color: #333333;
  opacity: 0.7;
}
.breadcrumb-item {
  color: #333333;
  text-decoration: none;
  display: inline;
}
.breadcrumb-item:hover:not(.current) {
  color: #3A8D78;
  text-decoration: underline;
}
.breadcrumb-item.current {
  color: #333333;
}
.breadcrumb-separator {
  margin: 0 10px;
  color: #999;
}
@media (max-width: 1280px) {
  .breadcrumb-inner {
    padding: 10px 15px;
  }
  .breadcrumb-separator {
    margin: 0 6px;
  }
}

.inner {
  max-width: 1200px;
  margin:0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 260px;
  gap: 60px;
  align-items: start;
}
.title-row {
  display: grid;
  grid-template-columns: 280px 120px;
  align-items: center;
  gap:10px;
  margin:0 0 12px 0;
}
.title-row h2 {
  font-family: "Zen Maru Gothic", "Noto Sans JP", system-ui, sans-serif;
  display: flex;
  flex-direction: column;
  font-weight: 500;
}
.corp {
  margin:0;
  font-size:16px;
  opacity:.95;
}
.name {
  margin:0;
  font-size: 26px;
  line-height: 1.2;
  white-space: nowrap;
}
.mapBtn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 14px;
  border:1px solid rgba(255,255,255,.65);
  border-radius:999px;
  color:#ffffff;
  text-decoration:none;
  font-size:11px;
  font-weight:700;
  line-height:1;
  white-space:nowrap;
  margin-top: 25px;
}

.mapBtn i{
  font-size:11px;
  transform: translateY(1px);
}
.address , .tel {
  margin:0 0 8px 0;
  font-size: 16px;
}
.address {
  margin-top:15px;
}
.footer_nav{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:48px;
}
.nav_col{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.nav_link{
  color:#ffffff;
  text-decoration:none;
  font-size:16px;
  font-weight:600;
}
.footer_banners{
  display:flex;
  flex-direction:column;
  gap:18px;
  align-items:flex-end;
}
.footer_img {
  height: 70px;
  width: 240px;
  background: #ffffff;
  border-radius: 3px;
}
.footer_img img {
  width:90%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(1.05);
  margin: 0 auto;
}
.bannerBox{
  background: #ffffff;
  color: #333333;
  width:240px;
  height:70px;
  border-radius:3px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:12px;
  font-weight:700;
}
@media (max-width: 1280px) {
  .inner {
    padding: 0 18px;
  }
}
@media (max-width: 980px){
  .inner{
    grid-template-columns: 1fr;
    gap:26px;
  }

  .footer_nav{
    grid-template-columns: 1fr 1fr;
    gap:20px;
    margin-bottom: 20px;
    margin-top: 5px;
  }

  .footer_banners{
    align-items:flex-start;
  }
}
@media (max-width: 768px) {
  .inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .address , .tel {
    font-size: 15px;
  }
  .nav_link{
    font-size:14px;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 40px 0;
  }
  .footer_brand {
    margin: 0 auto;
  }
  .title-row {
    grid-template-columns: 120px;
    gap: 0;
  }
  .mapBtn{
    margin-top: 20px;
  }
  .footer_nav{
    margin: 5px auto 20px auto;
  }
  .footer_banners{
    margin: 0 auto;
  }
}
.footer_facility{
  background:#f8f8f4;   
  position: relative;       
}
.footer_facility-inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 20px 40px 20px;
}
.footer_facility-title{
  margin: 0 0 26px 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .08em;
  color:#333333;
}
.footer_facility-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.facility_col{
  display:grid;
  grid-template-columns: 60px 1fr; 
  column-gap: 10px;
  padding-top: 10px;  
}
.facility_footer-label{
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-weight: 700;
  letter-spacing: .18em;
  font-size: 18px;
  align-self: start;
  opacity:.95;
  position: relative; 
  padding-top: 5px;
}

.disabled{ color:#4fa6c6; }
.elderly{ color:#8f79c8; }
.children{ color:#d8a33a; }

.facility_list{
  border-left: 1px solid rgba(0,0,0,.08);
}
.facility_list ul{
  list-style:none;
  margin:0 0 30px 0;
  padding:0 0 0 25px;
}
.facility_list li{
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
  color:#333333;
  margin-bottom: 3px;
}
.facility_list li a {
  color:#333333;
  text-decoration: none;
}
.facility_list li a:hover{
  text-decoration: underline;
}
.facility_list li:not(.title){
  color:#333333;
  text-decoration:none;
  display:block;            
  padding-left: 18px;        
  word-break: break-word;     
}
.facility_list li.title{
  position: relative;
  padding-left: 18px;        
  font-weight: 600;
  word-break: break-word;
  margin-bottom: 8px;
}
.facility_list li.title .dot{
  position:absolute;
  left: 0;
  top: 0.95em;               
  transform: translateY(-50%);
  margin: 0;                 
}
.dot{
  width:6px;
  height:6px;
  border-radius:999px;
  display:inline-block;
}
.dot.disabled{ background:#5ea2cd; }
.dot.elderly{ background:#a385b1; }
.dot.children{ background:#e8b953; }

@media (max-width: 768px){
  .footer_facility-title{
    text-align: center;
  }
  .footer_facility-grid{
    grid-template-columns: 1fr;
  }
  .facility_col{
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .facility_footer-label{
    writing-mode: horizontal-tb;
    padding: 0 0 0 10px;
  }
  .facility_footer-label::after{
    display: none;
  }
  .facility_list{
    border-left: none;
  }
  .facility_list ul{
    padding:0 0 0 10px;
    margin: 0 0 6px 0;
  }
}

.goTopCorner{
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52px;
  height: 52px;
  background: #fff8e4;   
  border-top-left-radius: 30px;      
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  display: grid;
  place-items:flex-end;
  z-index: 9999;
  text-decoration: none;
}
.goTopCorner_icon{
  position: relative;
  width: 56px;
  height: 26px;
}
.goTopCorner_icon::before{
  content:"";
  position:absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 3px;
  background:#2f7d6d;
  border-radius:999px;
  transform: translateX(-50%);
}
.goTopCorner_icon::after{
  content:"";
  position:absolute;
  top: 6px;
  left: 50%;
  width: 24px;
  height: 12px;
  transform: translateX(-50%);
  background:#2f7d6d;
  border-radius:999px;
  clip-path: polygon(
    0 45%, 50% 0, 100% 45%,
    100% 70%, 50% 30%, 0 70%
  );
}
.copyright {
  background: #ffffff;
  font-size: 12px;
  text-align: center;
  padding: 20px 0;
  color: #3A8D78;
}