﻿

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 7% 2%, #ffd8b6 0 90px, transparent 300px),
    linear-gradient(90deg, rgba(255, 239, 201, 0.6), transparent 36%),
    var(--bg);
  letter-spacing: 0;
  overflow-x: hidden;
  font-family: "Zen Kaku Gothic New", sans-serif
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
  line-height: 1.3em;
}

a:hover {
  color: var(--orange);
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

h2.common_title{
    margin: 0;
    font-size: 2.8rem;
    letter-spacing: 0.08em;
    position: relative;
    font-weight: 500;
}
h2.common_title:before {
    position: absolute;
    content: "";
    left: -26px;
    top: 5px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--orange);
}
a.common_link{
  font-size: 1.65rem;
  border: solid 1px #ddd;
  padding: 15px 22px;
  border-radius: 50px;
  display: inline-block;
  width: 229px;
  margin-top: 30px;
  position: relative;
  background-color: #fff;
  display:block;
  font-weight: 500;
}
a.common_link.w100{
  width: 100%;
}

a.common_link::before{
  position: absolute;
    content: '';
    background-image: url(../img/arrow_orange.svg);
    background-size: contain;
    width: 20px;
    height: 14px;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
    z-index: 10;
}
a.common_link:hover {
  border-color: var(--orange);
}
a.common_link:hover::before {
  transform: translate(5px, -50%);
}
.question_bg{
      background: radial-gradient(circle at 7% 2%, #ffd8b6 0 90px, transparent 300px), linear-gradient(90deg, rgba(255, 239, 201, 0.6), transparent 36%), var(--bg);
      width: min(1440px, calc(100% - 48px));
      margin: 0 auto 0px;
      padding: 90px 80px;
      border-radius: 10px;
}
#g-nav{
  display: none;
}
.section-title h2:before{
  position: absolute;
  content:"";
  left:-26px;
  top:5px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--orange);
}
.section-title h2 {
  position: relative;
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(1600px, calc(100% - 48px));
  margin: 22px auto 0;
}
.reserv_link{
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  transition: background-color 220ms ease, transform 180ms ease, filter 220ms ease;
  position: relative;
  padding-top: 20px;
  font-size: 1.3rem;
}
.reserv_link:hover {
  color: #fff;
  /* softly brighten the orange on hover */
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.reserv_link::before{
  position: absolute;
  content:'';
  background-image: url(../img/reserv_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 31/36;
  width: 18px;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
}
.reserv_link_fixed{
  position: fixed!important;
  letter-spacing: 0.6em;
  font-weight: 700;
  top: 120px;
  right: 0;
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 120px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 0;
  font-size: 1.8rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border-radius: 10px 0 0 10px;
  padding-top: 36px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(16px);
  transition: opacity 400ms ease, visibility 400ms ease, transform 400ms cubic-bezier(.2,.9,.2,1), filter 220ms ease, width 220ms ease, background-color 220ms ease;
  z-index: 1000;
}
.reserv_link_fixed.is-show{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}
.reserv_link_fixed:hover{
  filter: brightness(1.08);
  width: 60px;
  color: #fff;
}

.reserv_link_fixed::before{
  position: absolute;
  content:'';
  background-image: url(../img/reserv_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 31/36;
  width: 22px;
  left: 50%;
  top: 23%;
  transform: translate(-50%, -50%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 0 0 auto;
}
.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 102px;
  height: 102px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(143, 112, 74, 0.12);
}
.brand-mark img{
  width:80%;
  height:80%;
  object-fit: contain;
}

.brand-text strong{
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-text span {
  display: block;
  margin-top: 2px;
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 500;
}
.global-nav {
  display: flex;
  align-items: center;
  gap: 0px;
  min-height: 78px;
  padding: 0 10px 0px 46px;
  border-radius: 999px;
  background:#fff;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  width:100%;
  box-shadow: 0 12px 30px rgba(143, 112, 74, 0.12);
}

.global-nav .has-sub>a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(45deg) translateY(-3px);
}

.hero {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 1.4fr);
  gap: 56px;
  width: min(1440px, calc(100% - 48px));
  margin: 60px auto 70px;
  align-items: end;
}

.hero-copy p {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 500;
}

.hero h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 40px);
  line-height: 1.22;
  letter-spacing: 0.12em;
}

.hero-note {
  margin: 0;
  font-size: 17px;
  line-height: 1.95;
}

.photo-strip {
  width: 100%;
  margin: 0 0 80px;
  padding-bottom: 40px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}

.photo-strip-track {
  display: flex;
  gap: 38px;
  align-items: flex-end;
  width: max-content;
  will-change: transform;
  animation: photoStripSlide 55s linear infinite;
}

.photo-strip img {
  flex: 0 0 auto;
  width: min(450px, calc((100vw - 114px) / 4));
  height: 510px;
  border-radius: var(--radius-lg);
}

.photo-strip img:nth-child(4n + 1),
.photo-strip img:nth-child(4n + 3) {
  transform: translateY(40px);
}

@keyframes photoStripSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 19px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .photo-strip-track {
    animation: none;
  }
}

.gnav-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  width: 100%;
  gap:2.4rem;
  align-items:center
}
.gnav-item{
  position:relative;
  text-align:center;
}
.sub-list{
  position:absolute;
  left:50%;
  top:100%;
  background:#fff;
  list-style:none;
  padding:0.5rem 0;
  margin:0;
  box-shadow:0 4px 8px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  min-width:160px;
  border-radius: 10px;
}
.sub-list li a{
  display:block;
  padding:0.5rem 1rem;
  white-space:nowrap;
  text-align:center;
}
.has-sub:hover > .sub-list,
.has-sub:focus-within > .sub-list{
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
  z-index: 100;
}

.top_photo.potion_relative .deco{
  position: absolute;
  top: -200px;
  right: 0px;
  width: 306px;
  height: 306px;
  aspect-ratio: 1 / 1;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 34px;
}

.reasons{
  margin-bottom: 80px;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.reason-card {
  min-width: 0;
  padding: 20px 22px 32px;
  border-radius: var(--radius-sm);
  background: var(--paper);
  text-align: center;
}

.reason-card img {
  height: 220px;
  border-radius: var(--radius-sm);
}

.reason-label {
  margin: 26px 0 12px;
  color: var(--orange);
  font-size: 1.6rem;
  letter-spacing: 0.12em;
}

.reason-label strong {
  font-size: 2.8rem;
  font-weight: 400;
}

.reason-card h3 {
  margin: 0 0 22px;
  font-size: 1.8rem;
  line-height: 1.45;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.reason-card p:last-child {
  text-align: left;
}

.info-area {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto 80px;
  padding: 70px 80px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
}
.info-area.potion_relative .deco01{
  position: absolute;
  top: -140px;
  right: -42px;
  width: 250px;
  height: 287px;
}
.info-area.potion_relative .deco02{
  position: absolute;
  bottom: -60px;
  left: -20px;
  width: 165px;
  height: 122px;
}
.info_area_inner{
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
}

.panel {
  position: relative;
  padding: 0px 32px 28px;
  border: 1px solid #e2d8c8;
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.panel-heading {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--orange);
  padding-top: 26px;
  margin-left: 60px;
}

.panel-heading h2 {
  margin: 0;
  font-size: 2.5rem;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-left: -92px;
  position: absolute;
  top: 0;
  border-radius: 6px 0px 8px 0;
  background: var(--orange);
  color: #fff;
  font-size: 31px;
  font-weight: 700;
}
.icon img{
  width: 60%;
}

.news-list {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.news-list li {
  display: grid;
  grid-template-columns: 74px 60px 1fr;
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding-bottom: 14px;
  border-bottom: 1px dashed #d9c6a5;
  font-size: 14px;
}

.news-list span {
  display: inline-grid;
  place-items: center;
  height: 27px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.news-list time {
  color: #cdbfaa;
}

.news-list a {
  overflow: hidden;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/*
.hours table {
  width: 100%;
  margin-top: 36px;
  border-collapse: collapse;
  text-align: center;
  font-size: 17px;
  margin-bottom: 20px;
}

.hours th,
.hours td {
  padding: 13px 10px;
  border-left: 1px solid #e9e2d6;
}

.hours thead th:first-child,
.hours tbody th {
  border-left: 0;
}

.hours tbody th {
  color: var(--ink);
  font-weight: 400;
  text-align: left;
  white-space: nowrap;
}
*/

.baby-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto 86px;
  padding: 42px 50px;
  border-radius: var(--radius-lg);
  background: #e9f3e8;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 14px;
  text-transform: uppercase;
}

.baby-section h2 {
  margin: 0 0 16px;
  font-size: 28px;
}

.baby-section p:last-child {
  margin: 0;
  max-width: 620px;
  line-height: 1.9;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 132px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
}
.site-footer {
  padding: 34px 24px 42px;
  text-align: center;
  margin: 0 auto;
}
.site-footer p {
  margin: 8px 0 0;
  color: #6d5b4d;
  font-size: 1.8rem;
  line-height: 1.5em;
  text-align: left;
}
.site-footer p.cap{
  font-size: 1.4rem;
  color: #6d5b4d;
  margin-top: 8px;
}
.site-footer strong {
  margin-right: 8px;
  color: var(--ink);
  font-size: 18px;
}
.treat_link li{
  list-style: none;
  display: flex;
  align-items: center;
}
.treat_link li a{
  background-color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  width: 100%;
  padding: 20px;
  position: relative;
  border: 2px solid transparent;
  border-radius: 10px;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
  line-height: 1.4em;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10;
}
.treat_link li a::before{
  position: absolute;
  content: '';
  background-image: url(../img/arrow_orange.svg);
  background-size: contain;
  width: 20px;
  height: 14px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
  z-index: 10;
}
.treat_link li a:hover {
  border-color: var(--orange);
}
.treat_link li a:hover::before {
  transform: translate(5px, -50%);
}
.treat_link li a span{
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2em;
  margin-bottom: 8px;
}
.treat_link li:nth-child(1) a::after{
  position: absolute;
  content:'';
  background-image: url(../img/maki_doctor.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 105px;
  height: auto;
  right: 40px;
  z-index: -1;
  aspect-ratio: 1 / 1;
}
.treat_link li:nth-child(2) a::after{
  position: absolute;
  content:'';
  background-image: url(../img/icon-park-solid_baby-feet.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 110px;
  height: auto;
  right: 40px;
  z-index: -1;
  aspect-ratio: 1 / 1;
}
.treat_link li:nth-child(3) a::after{
  position: absolute;
  content:'';
  background-image: url(../img/Vector.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 110px;
  height: a;
  right: 40px;
  z-index: -1;
  aspect-ratio: 110 / 100;
}
.treatment{
  margin-bottom: 60px;
}
.treatment .inner_1100.potion_relative .deco01{
    position: absolute;
    bottom: -170px;
    left: -100px;
    width: 131px;
    height: 167px;
}
.menu{
  padding: 60px 0px;
}
.menu_link li{
  list-style:none;
}
.menu_link li a{
  background-color:#FFFBF3;
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  width: 100%;
  padding: 20px;
  position: relative;
  border: 2px solid transparent;
  border-radius: 10px;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
  line-height: 1.4em;
  height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10;
}
.menu_link li a span{
  font-size: 1.4rem;
  display: block;
  color: var(--orange);
}
.menu_link li a::before{
  position: absolute;
  content: '';
  background-image: url(../img/arrow_orange.svg);
  background-size: contain;
  width: 20px;
  height: 14px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
  z-index: 10;
}
.menu_link li a:hover {
  border-color: var(--orange);
}
.menu_link li a:hover::before {
  transform: translate(5px, -50%);
}
.menu_link li a span{
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
}
.message_inner{
  align-items: center;
  border-bottom: solid #D9D9D9 1px;
  padding-bottom: 50px;
}
.message_text h2{
  font-size: 2.6rem;
  margin-bottom: 18px;
  line-height: 1.6em;
  font-weight: 500;
}
.about{
  padding: 100px 0px;
}
.about .text{
  padding-right:90px;
}
.about .text h2{
  margin-bottom: 24px;
  font-weight: 500;
}
.about .text h3{
  font-size: 2.5rem;
  margin-bottom: 10px;
  line-height: 1.3em;
  font-weight: 500;
}
.about .text h3 span{
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
}
.job_title{
  border: solid 1px #ddd;
  line-height: 1em;
  padding: 6px 8px;
  border-radius: 5px;
  font-size: 1.4rem;
}
/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    margin-top:40px;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
    background-color: #fff;
    border-radius: 10px;
}

/*アコーディオンタイトル*/
.title {
    position: relative;
    cursor: pointer;
    font-weight: normal;
    font-size: 1.65rem;
    font-weight: 500;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 20px;
    height: 2px;
    background-color: var(--orange);

}
.title::before{
    top:48%;
    right: 30px;
    transform: rotate(0deg);

}
.title::after{
    top:48%;
    right: 30px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
	transform: rotate(45deg);
}

.title.close::after{
	transform: rotate(-45deg);
}
span.q_mark{
  font-weight: 500;
  font-size: 2.3rem;
  position: relative;
}
span.q_mark::after{
  position: absolute;
  content:'Q';
  top:6px;
  right:10px;
}
span.a_mark{
  font-weight: 500;
  font-size: 2.3rem;
  position: relative;
}
span.a_mark::after{
  position: absolute;
  content:'A';
  top:3px;
  right:10px;
}
/*アコーディオンで現れるエリア*/
.box {
    display: none;
    padding: 0% 3% 3% 50px;
}
.question{
  padding-bottom: 60px;
}
.recruit_bnr{
  max-width: 600px;
  margin: 0 auto;
  background: radial-gradient(circle at 107% 2%, #ffd8b6 0 90px, transparent 300px), linear-gradient(90deg, rgba(255, 239, 201, 0.6), transparent 36%), var(--bg);
  border: solid #FFF7E5 2px;
  padding: 4px;
  display: block;
  border-radius: 10px;
  position: relative;
}
.recruit_bnr::before {
    position: absolute;
    content: '';
    background-image: url(../img/arrow_orange.svg);
    background-size: contain;
    width: 20px;
    height: 14px;
    right: 30px;
    bottom: 10%;
    transition: transform 0.2s ease;
    z-index: 10;
}
.recruit_bnr:hover::before {
  transform: translate(5px, 0%);
}
.recruit_bnr a span{
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
}
.recruit_bnr figure{
  width: 50%;
  background:#fff;
  border-radius: 6px;
  margin-bottom: 0px;
}
.recruit_bnr figure img{
  width: 80%;
  margin: 0 auto;
  padding: 10px;
}
.recruit_bnr h4{
    width: 50%;
    font-size: 1.8rem;
    padding: 24px;
    line-height: 2em;
}
.recruit_bnr .flex{
  align-items: center;
}
.footer_info{
  justify-content: center;
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  margin-top: 60px;
}
.middle_text a.common_link{
  width: 100%;
  margin-bottom: 20px;
  padding: 20px 20px;
  text-align: left;
}
.footer_logo img{
    width: 60%;
    margin: 0 auto;
}
.tel_link{
  font-size: 4.0rem;
  position: relative;
  text-align: left;
  display: block;
  margin-left: 50px;
  font-weight: 500;
}
.tel_link::before{
  position: absolute;
  content: '';
  background-image: url(../img/tel_orange.png);
  background-size: contain;
  width: 36px;
  height: 36px;
  background-size: contain;
  background-repeat: no-repeat;
  left: -46px;
  top: 54%;
  transform: translateY(-50%);
}

.tel_head_link{
  position: relative;
  font-size: 2.0rem;
}
.gnav-contact{
  margin-left: auto;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  display: flex;
}
.gnav-contact .en{
  text-decoration: underline;
  font-weight: 400;
}
.tel_head_link::before{
  position: absolute;
  content: '';
  background-image: url(../img/tel_orange.png);
  aspect-ratio: 36/36;
  width: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  left: -26px;
  top: 54%;
  transform: translateY(-50%);
}
.copyright{
    background-color: var(--orange);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1em;
    padding: 26px;
    border-radius: 50px;
    width: min(1600px, calc(100% - 48px));
    margin: 0 auto;
    margin-top: 90px;
}

.copyright.potion_relative .deco01{
  position: absolute;
  top: -140px;
  left: 30px;
  width: 129px;
  height: auto;
  aspect-ratio: 129 / 197;
}
.sns{
  align-items: center;
  margin-top: 20px;
  column-gap: 20px;
}

.sns li{
  list-style: none;
  justify-content: center;
  display: flex;
}

.sns li a{
  display: block;
  width: 80%;
}
.sub div.mainVisual{
  height: auto;
}
.pl-\[1\.5rem\] {
    padding-left: 1.5rem;
}
.basis-\[70\%\] {
    flex-basis: 70%;
}
.gap-\[3\.5rem\] {
    gap: 3.5rem;
}
.border_none{
  border-left: none;
}