/* Base Styles */
body {
  font-family: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  background: #fff;
}
html { scroll-behavior: smooth; }
.wrapper{
	width: 100%;
	overflow: hidden;
}
.container {
  width: 100%;
	max-width: 1140px;
  position: relative;
	margin: 0 auto;
}
.container-wide {
  width: 100%;
	max-width: 1400px;
  position: relative;
  margin: 0 auto;
}
    /* ===== HEADER ===== */
    .header {
      padding-bottom: 0px;
      width: 100%;
      background: #fff;
      position: relative;
      z-index: 100;
    }

    .header-contents {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }

    .header-logo h1 {
      padding: 10px;
    }

    .header-nav {
      display: flex;
      justify-content: flex-end;
      gap: 20px;
      align-items: center;
    }

    .nav {
      display: flex;
      gap: 20px;
    }

    .nav-link {
      font-size: 18px;
      color: #000;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-link:hover,
    .nav-link.active {
      color: #3391C5;
    }

    .header-contact {
      display: flex;
		gap:0;
    }

    .header-contact-left {
      text-align: center;
      background: #3391C5;
      padding: 5px 30px;
      border-radius: 0 0 40px 40px;
      text-decoration: none;
		margin: 0;
    }

    .header-contact-right {
      background: #D26076;
      text-align: center;
      padding: 5px 30px;
      border-radius: 0 0 40px 40px;
      text-decoration: none;
      margin-left: 4px;
		margin: 0;
    }

    .contact-title {
      font-size: 18px;
      color: #fff;
      font-weight: 500;
    }

    .contact-hours {
      font-size: 14px;
      color: #fff;
      font-weight: 400;
    }

    /* ===== BURGER BUTTON ===== */
    .mobile-menu-btn {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 44px;
      height: 44px;
      cursor: pointer;
      gap: 6px;
      margin: 10px 10px 0 0;
      background: none;
      border: none;
      flex-shrink: 0;
    }

    .mobile-menu-btn span {
      display: block;
      width: 28px;
      height: 2.5px;
      background: #3391C5;
      border-radius: 2px;
      transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
      transform-origin: center;
    }

    /* ===== BURGER → × アニメーション ===== */
    .mobile-menu-btn.open span:nth-child(1) {
      transform: translateY(8.5px) rotate(45deg);
    }

    .mobile-menu-btn.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .mobile-menu-btn.open span:nth-child(3) {
      transform: translateY(-8.5px) rotate(-45deg);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
      .nav {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #e8f4fb;
        z-index: 150;
        padding: 140px 0px 40px;
        gap: 0;
        border-top: 1px solid #b8d8ec;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
      }

      .nav.open {
        display: flex;
        transform: translateX(0);
      }

      .nav-link {
        padding: 18px 16px;
        font-size: 16px;
        color: #1a3a5c;
        border-bottom: 1px solid #b8d8ec;
        text-align: center;
      }

      .header-contact {
        flex-direction: column;
        gap: 14px;
        padding: 30px 10px 0;
      }

      .header-contact.open {
        display: flex;
      }

      .header-contact-left,
      .header-contact-right {
        border-radius: 50px;
        padding: 14px 20px;
        margin-left: 0;
      }

      .contact-title {
        font-size: 4vw!important;
      }

      .contact-hours {
        font-size: 5vw;
      }

      .mobile-menu-btn {
        display: flex;
        position: absolute;
        z-index: 200;
		  top:00px;
      }
.mobile-menu-btn.open {
position: fixed;
}
      /* overlay内ロゴ */
      .mobile-logo {
        display: none;
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 200;
      }

      .mobile-logo.open {
        display: block;
      }

      .mobile-logo img {
        height: 44px;
        width: auto;
      }
    }
@media (min-width: 993px) {
	.mobile-logo{
		display: none;
	}
}

/* Common Section Styles */
.section-subtitle {
  font-size: 18px;
  color: #3391C5;
  font-weight: 500;
  margin-bottom: 20px;
}

.section-title {
  font-size: 40px;
  color: #000;
  font-weight: 500;
  margin-bottom: 50px;
  text-align: center;
}

.section-main-title {
  font-size: 80px;
  color: #000;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
	line-height: 90%;
		
}

.section-main-title.pink {
  color: #D26076;
}

.section-label {
  font-size: 18px;
  color: #000;
  font-weight: 500;
  text-align: center;
  line-height: 2;
  margin-bottom: 60px;

}

.section-label.pink {
  color: #D26076;
}

.section-button {
  display: inline-block;
  background: #3391C5;
  color: #fff;
  padding: 18px 60px;
  border-radius: 34px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: background 0.3s;
}

.section-button:hover {
  background: #2780b0;
}

/* Page Title Section */
.page-title-section {
  padding: 100px 136px 60px;
  text-align: center;
}

.page-title {
  font-size: 80px;
  color: #3391C5;
  font-weight: 500;
  margin-bottom: 20px;
}

.page-subtitle {
  font-size: 24px;
  color: #000;
  font-weight: 500;
}

.sub-page-title {
  font-size: 40px;
  color: #000;
  font-weight: 500;
  margin-bottom: 0px;
}

.sub-page-subtitle {
  font-size: 18px;
  color: #3391C5;
  font-weight: 500;
}

/* Footer */
.footer {
  background: #E8F5FD;
  padding: 80px 30px;
}

.footer-content {
  margin-bottom: 60px;
	display: flex;
	justify-content: center;
	gap:30px;
}

.footer-title {
  font-size: 18px;
  color: #000;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 50px;
}

.footer-address {
  font-size: 18px;
  color: #000;
  line-height: 2;
}

.footer-contact-box {
  text-align: center;
  padding-right: 15px;
 border-right: 1px solid #3391C5;
}

.footer-contact-title {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
	position: absolute;
	background-color: #D26076;
	top:-3em;
	left: 0;
  border-radius: 30px;
  padding: 12px 16px;
  display: inline-block;
}

/* 三角形の尻尾 */
.footer-contact-title::after {
  content: "";
  position: absolute;
  bottom: -20px;   /* 下に出す */
  left: 50%;
  border-width: 20px 8px 0;
  border-style: solid;
  border-color: #D26076 transparent transparent;
}

.footer-contact-label {
  font-size: 18px;
  color: #000;
  font-weight: 500;
	display: flex;
	justify-content: center;
	gap:10px;
	align-items: center;
}

.footer-contact-number {
    font-size: 40px;
    color: #3391C5;
    font-weight: 500;
}

.footer-contact-time {
  font-size: 18px;
  color: #000;
  font-weight: 400;
}
.footer-right{
	text-align: center;
	margin-left: 15px;
}
.footer-button {
  display: inline-block;
  background: #3391C5;;
  color: #fff;
  padding: 15px 20px;
  border-radius: 50em;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  margin: 10px 0;
  transition: background 0.3s;
}

.footer-button:hover {
  background: #3391C5;
}

.footer-info {
	
	
}
.footer-center {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
    border-radius: 40px;
    background-color: white;	
	position: relative;
	align-items: center;
	margin-right: 30px;
	margin-bottom: 30px;
}
.footer-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-size: 18px;
  color: #000;
}

.bullet {
  color: #3391C5;
  flex-shrink: 0;
}

.label {
  font-weight: 500;
  min-width: 150px;
}

.value {
  font-weight: 400;
}
/* Hours Section */
.hours-section {
  padding: 80px 136px 80px;
  background: #E8F5FD;
  border-radius: 37px;
  margin: 100px 136px 100px;
  text-align: center;
	font-size: 18px;
	position: relative;
}
.hours-hed{
    padding: 0 2em 2em;
    margin: 0 auto 2em;
    border-bottom: 1px solid #3391C5;
	display: table;
	
}
.hours-hed h4{
font-size: 30px;
	font-weight: normal;
}
.footer-contact-label img {
    width: 2em!important;
		 height:auto;
  }
   .footer-right .footer-contact-label img {
    width: 1.5em!important;
		 height:auto;
  }
.hours-title {
  font-size: 30px;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
	position: absolute;
	background-color: #D26076;
	top:-2em;
	left: 50px;
  border-radius: 20px;
  padding: 30px 100px;
  display: inline-block;
}

/* 三角形の尻尾 */
.hours-title::after {
  content: "";
  position: absolute;
  bottom: -20px;   /* 下に出す */
  left: 50%;
  border-width: 20px 8px 0;
  border-style: solid;
  border-color: #D26076 transparent transparent;
}
.footer-address-sp{
		display: none;
	}
.pc-none{
		display: none;
	}
@media (max-width: 992px) {
.footer-logo img{
	width: 20vw;
	height: auto;
}
	.footer-center {
  flex-direction: column;
		gap:30px;
		justify-content: space-between;
}
.footer-contact-box {
 border-right: none;
 padding-bottom: 20px;
 border-bottom: 1px solid #3391C5;
}
.footer-right {
  text-align: center;
  margin-left: 0px;
	width: 100%;
	
}
	.footer-contact-number {
  font-size: 6vw;
  
}
	.footer-button {
		width: 100%;
}
	}
@media (max-width: 1300px) {
 .nav-link {
  font-size: 1.4vw;
}
	.contact-title {
 font-size: 1.4vw;
}
	.nav {
  gap: 10px;
}
	.header-logo img {
		width: 18vw;
	}
	}
/* Responsive Design */
@media (max-width: 992px) {
 .nav-link {
  font-size: 18px;
}
 .header-logo img {
		width: 30vw;
	}
  .header-contact {
   
  }
  
  .header-contact-left {
    left: 800px;
  }
  
  .header-contact-right {
    left: 1000px;
  }
  
  .section-main-title,
  .page-title {
    font-size: 60px;
  }
  
  .section-title {
    font-size: 32px;
  }
}

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


  



  
  /* Page Title Section */
  .page-title-section {
    padding: 60px 20px 40px;
  }
  
  .page-title {
    font-size: 50px;
  }
  
  .page-subtitle {
    font-size: 20px;
  }
  
  .section-main-title {
    font-size: 50px;
  }
  
  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .section-label {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  /* Footer */
  .footer {
    padding: 60px 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-contact-box {
    padding: 30px 20px;
  }
  
  .footer-contact-number {
    font-size: 10vw;
  }
  .footer-contact-label {
  font-size: 4vw;
}
  .footer-info {
    padding-top: 30px;
  }
.footer-left{
	 
		text-align: center;
	}
.footer-logo img {
    margin: 0 auto;
  }
  .footer-title {
  margin-bottom: 30px;
}
	.footer-center {
  margin-right: 0px;
}
  .label {
    min-width: auto;
  }
	.footer-content {
  flex-direction: column;
}
	.footer-address-sp{
		margin-top: 50px;
		display: block;
	}
	.footer-address {
    display: none
  }
}

@media (max-width: 576px) {

   .header-logo img {
		width: 40vw;
	}
  .page-title-section {
    padding: 40px 20px 30px;
  }
  
  .page-title {
    font-size: 40px;
  }
  
  .page-subtitle {
    font-size: 18px;
  }
  .pc-none{
	display: block;
	}
  .section-main-title {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .section-label {
    font-size: 14px;
  }
  
  .section-button {
    padding: 15px 40px;
    font-size: 16px;
	  margin: 0 auto;
	 display: table;
  }
  
  .footer {
    padding: 40px 20px 10px;
  }
  .footer-contact-title {
  width: 100%;
}
  .footer-title,
  .footer-contact-label,
  .footer-contact-time,
  .footer-address {
    font-size: 5vw;
  }
  
  .footer-contact-number {
    font-size: 12vw;
  }
  
  .footer-button {
    padding: 12px 30px;
    font-size: 5vw;
  }
   .footer-contact-box {
    padding: 0px;
  }
  .info-item {
  gap: 5px;
	  font-size: 4vw;
}
	  .footer-address-sp {
font-size: 4vw;
  }
	  .label {
    min-width: 8em;
  }
	  .container {
    padding: 0 0px;
  }
.sub-page-title {
  font-size: 5vw;
}
}