@charset "utf-8";

.pc-only {
    display: block
  }
  
  .sp-only {
    display: none
  }
  
    .wrap {
    max-width: 600px;
    width: 100%;
    background: #fff;
    margin: 0 auto;
    overflow: hidden;
}

@media screen and (max-width:768px) {
    .pc-only {
      display: none
    }
    .sp-only {
        display: block;
      }
    .wrap {
    max-width: 100%;
    width: 100%;
    background: #fff;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 3.2rem;
}
  }

  body {
  font-family: -apple-system, BlinkMacSystemFont, "Yu Gothic", "游ゴシック体", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  letter-spacing: 0.05rem;
}

section.main-visual p {
    font-size: 1.2rem;
    background: #fff;
    color: #2C48DA;
    text-shadow: none;
    font-weight: bold;
    padding: 0.3rem 1rem;
    margin: 0 1% 0;
    display: inline-block;
    border-radius: 100px;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 85%;
    padding: 10px 25px;
    background: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    box-sizing: border-box;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: 0.2s ease;
}

.fv-cta {
    background: linear-gradient(to right, #EA1E43, #EB235E);
    padding: 15px;
    display: flex;
    justify-content: center;
}

.cta-btn span {
  font-size: 1rem;
  font-weight: 600;
  color: #EC245E; /* ピンク寄りの赤 */
  text-decoration: underline;
  letter-spacing: 0.05em;
}

.cta-btn .icon {
    color: #d94362;
    width: 8%;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

img{
    width: 100%;
}

header {
    position: fixed;
    background: #fff;
    padding: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    width: 100%;
    z-index: 9000;
}

img.header-logo {
    width: 12rem;
}

.menu-button {
  width: 35px;
  height: 35px;
  cursor: pointer;
  position: relative;
  z-index: 9000;
  background: #6B9FD3;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}

.menu-button span {
  background: #fff;
  height: 2px;
  width: 60%;
  display: block;
  transition: all 0.3s;
}

    .menu-content {
      position: fixed;
      top: 0;
      right: -100%;
      width: 75%;
      max-width: 280px;
      height: 100%;
      background: #f9f9f9;
      box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
      transition: right 0.3s;
      padding: 60px 20px 20px;
      z-index: 1000;
    }

    .menu-content.open {
      right: 0;
    }

    .menu-content ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .menu-content li {
      padding: 12px 0;
      font-size: 14px;
      border-bottom: 1px solid #ddd;
      color: #333;
    }

/* メニュー開閉時の変化 */
    .menu-button.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .menu-button.open span:nth-child(2) {
      opacity: 0;
    }

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

.main-visual {
    background: linear-gradient(to right, #2C46DA, #2484E4);
    color: #fff;
    padding: 1rem;
    text-align: center;
    text-shadow: 0px 0px 10px #1D4E8A;
}
.main-visual h1 {
    font-size: 1.9rem;
    margin: 0;
    font-weight: 600;
    padding-top: 0.5rem;
    line-height: 1.3;
}
span.sub {
    font-size: 1.8rem;
    color: #fff723;
}
        .top-bar {
      background-color: #E74696;
      color: #fff;
      padding: 5px 10px;
      font-size: 0.7rem;
      text-align: center;
    }

    .reserve-note {
  text-align: center;
  margin: 40px 20px;
}

.tag-bar {
    background-color: #8589ad;
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 0.5rem;
    width: 90%;
}

.reserve-text {
    font-size: 0.9rem;
    color: #575757;
    line-height: 1.6;
    font-weight: bold;
}

.reserve-text .pink {
  color: #EE4D9D;
  font-weight: bold;
}

.reserve-text .bold-pink {
  color: #EE4D9D;
  font-weight: bold;
}

.reserve-cta {
    background: linear-gradient(to bottom, #F14F9F, #DC3B8B);
    color: white;
    font-size: 1rem;
    font-weight: bold;
    padding: 0.7rem 1rem;
    border-radius: 100px;
    display: inline-block;
    margin-top: 0.5rem;
    line-height: 1.2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    width: 90%;
    border: solid 2px #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}
.reserve-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(126, 126, 126, 0.5);
}

.reserve-cta .sub-text {
    background-color: white;
    color: #d02c62;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 0.2rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 0.3rem;
}

.reserve-cta .highlight {
    font-size: 1.8rem;
    font-family: "futura";
    font-style: italic;
    font-weight: normal;
}

section.cta {
    background: #ECF3F7;
    text-align: center;
    padding: 1.5rem 0;
}

.call-section {
  padding: 20px;
  font-family: "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
}

.call-container {
  background: url(../img/cta-tel.png);
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 3%;
  flex-wrap: wrap;
}

.call-img {
  flex: 0 0 120px;
  max-width: 120px;
  border-radius: 12px;
}

.call-content {
  flex: 1;
  text-align: center;
}

.call-lead {
    font-size: 0.8rem;
    color: #6A5E41;
    margin: 0 0 6px;
    font-weight: normal;
    background-color: #fff;
    font-family: "游明朝体", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
    padding: 0.3rem 0;
    border-radius: 100px;
}

.call-sub {
  color: #009966;
  font-size: 0.9rem;
  font-weight: bold;
}

.call-sub span {
    display: inline-block;
    padding: 0.5rem 0 0.5rem 6rem;
}

.button-top {
    background: #fff;
    color: #009966;
    border-radius: 16px;
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.button-bottom {
font-size: 0.9rem;
}

.call-button {
    position: relative;
    display: inline-block;
    text-align: center;
    background: linear-gradient(to bottom, #00b268, #009966);
    color: #fff;
    border-radius: 10px;
    padding: 0.5rem 2.3rem;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(94, 94, 94, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-left: 6rem;
    border:solid 2px #fff;
}

.call-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(96, 96, 96, 0.5);
}

.button-bottom::before {
    position: absolute;
    content: "";
    margin-right: 8px;
    background: url(../img/tel.png);
    background-size: cover;
    width: 21px;
    height: 21px;
    display: block;
    top: 30%;
    left: 6%;
}

.call-button::after {
    position: absolute;
    content: "";
    margin-left: 8px;
    background: url(../img/arrow.png);
    background-size: cover;
    background-position: center;
    width: 9px;
    height: 15px;
    display: block;
    top: 40%;
    right: 7%;
}

    div.reason {
        padding: 1rem 1rem 1rem;
    }
    .ttl-box{
        background: #6B85C3;
        padding: 1rem;
    }
.tagline {
    color: #575757;
    padding: 0.5rem;
    font-size: 0.9rem;
    font-weight: bold;
    background: #fff;
    border-radius: 100px;
    width: 90%;
    text-align: center;
    display: block;
  margin: 0 auto;
  position: relative;
}

.tagline::after {
  content: "";
  position: absolute;
  bottom: -10px; /* 三角の高さ分下に出す */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #fff; /* 背景色と同じにする */
}
    div.highlight {
      color: #3b4bc0;
      font-weight: bold;
    }
    .blue {
        color: #3F63A6;
}

    .title {
        color: #fff;
      font-size: 2rem;
      font-weight: bold;
      text-align: center;
      padding: 0.8rem 0 0;
    }
    .reason-label {
      text-align: center;
      color: #7a88c9;
      font-style: italic;
      font-size: 14px;
      margin-bottom: 8px;
    }
.note-box {
    background: #6B8AC3;
    color: #fff;
    padding: 0.6rem 0;
    font-size: 0.8rem;
    width: 100%;
    display: block;
    margin: 0 auto 1rem;
    font-weight: bold;
    text-align: center;
    border-radius: 100px;
}
    .image{
      width: 80%;
      height: auto;
    }
.point-header {
    color: #277AB4;
    font-weight: bold;
    border: solid 2px #277AB4;
    border-radius: 100px;
    text-align: center;
    padding: 0.3rem;
    font-size: 0.8rem;
    width: 95%;
    display: block;
    margin: 0 auto 1rem;
    position: relative;
}
.point-header::before {
    content: "";
    position: absolute;
    background: url(../img/check.png) no-repeat center center / contain;
    bottom: 0;
    left: 7%;
    width: 10px;
    height: 10px;
    z-index: 1;
    top: 30%;
}
.point-box ul {
    margin: 0;
    line-height: 1rem;
}
.point-box li {
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    border-bottom: solid 1px #ccc;
    padding-bottom: 0.5rem;
    border-style: dotted;
    font-weight: bold;
    color: #272727;
}
.point-box li:last-child{
    border-bottom :none;
}
    .em {
      color: #277AB4;
      font-weight: bold;
    }
    .futura{
        font-family: "futura";
        font-size: 3rem;
        font-style: italic;
        font-weight: normal;
    }
    .reason-label {
    font-family: "futura";
    text-align: center;
    color: #7a88c9;
    font-style: italic;
    font-size: 1rem;
}
.reason-title01 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #222;
    display: block;
}
.reason-title02 {
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    color: #222;
    display: block;
}
.reason-title03 {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: #222;
    display: block;
}
span.marker {
    background: linear-gradient(transparent 80%, #F8FF95 50%);
    display: inline-block;
}
.reason {
    background: url(../img/reason-back.png);
    background-size: cover;
}
.txt-box{
    background: #fff;
    padding: 1rem 0;
}
.reason-card {
    background: #fff;
    margin: 1rem 0;
    padding: 1rem;
}
.reason-card:last-child{
    margin: 0;
}

.reason-item {
    display: flex;
    justify-content: space-between;
    gap: 5%;
    align-items: center;
}
.point-box {
    width: 80%;
}
.ribbon {
     background-image: linear-gradient(180deg, rgba(153, 142, 115, 1), rgba(186, 174, 146, 1) 50%, rgba(153, 142, 115, 1));
    color: #fff;
    padding: 1rem;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
}
.banner {
    text-align: center;
    padding: 0.7rem 0;
    margin-top: 0.5rem;
    background: url(../img/ribbon.png);
    background-size: cover;
    background-position: center;
}
.banner p {
    margin: 0;
    font-size: 1rem;
    color: #272727;
}
.banner h2 {
    margin-top: 0.3rem;
    font-size: 1.7rem;
    color: #264b8f;
}
.grid {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem;
    background: #CFE5EE;
}
.grid-item {
    width: 50%;
    box-sizing: border-box;
    padding: 0.3rem;
}

.grid-item div {
    background: #fff;
    border: 1.5px solid #455690;
    padding: 0.9rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: bold;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #455690;
}

.profile {
      margin: 0 auto;
      padding: 1rem 1rem 3rem;
      background: url(../img/profile-back.png);
    background-size: cover;
    background-position: center;
    }

    .profile .title {
    font-family: "Yu Mincho", "YuMincho", "游明朝", "Yu Mincho Demibold", serif;
      font-size: 3rem;
      text-align: center;
      margin-bottom: 1rem;
      font-weight: 500;
      background: linear-gradient(180deg, #5C85BF 50%,#1B2D73 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
      color: transparent;
      padding: 1.5rem 0 1rem;
    }

    .profile-flex {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 20px;
      flex-wrap: wrap;
    }

    .profile-text {
      flex: 1;
      font-size: 15px;
      line-height: 1.8;
      color: #333;
    }
.profile-text h3 {
    font-family: "Yu Mincho", "YuMincho", "游明朝", "Yu Mincho Demibold", serif;
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}
.name {
    font-family: "Yu Mincho", "YuMincho", "游明朝", "Yu Mincho Demibold", serif;
    font-size: 1.7rem;
    font-weight: bold;
}
.furigana {
    font-size: 0.7rem;
    color: #363636;
    margin-bottom: 1rem;
    border-bottom: solid 1px;
    padding: 0 0 1rem;
}
.profile-image {
    flex: 0 0 50%;
    text-align: center;
}
.career {
    background: #fff;
    padding: 0.5rem;
    font-size: 0.55rem;
    line-height: 2;
    min-height: 11rem;
    display: flex
;
    align-items: center;
}
.message {
    margin-top: 1rem;
    font-size: 0.8rem;
    line-height: 1.8;
    color: #444;
}
.container {
  margin: 0 auto;
  background-color: #60678B;
  padding: 1rem 1rem 3rem;
}
.white-logo {
    display: block;
    width: 100%;
    padding: 1rem;
}
.group-name {
  font-size: 12px;
  text-align: center;
  margin: 0;
}

.clinic-name {
  font-size: 14px;
  text-align: center;
  margin: 5px 0 20px;
}
.section-title {
    background-color: #fff;
    color: #60678B;
    text-align: center;
    font-weight: bold;
    padding: 0.5rem;
    border-radius: 20px;
    margin: 1rem 0;
    font-size: 1rem;
}

.map-placeholder {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.map-button {
    display: block;
    width: 100%;
    padding: 0.7rem;
    color: #fff;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    margin: 1rem auto;
    background: #60678B;
    border: solid 1px #fff;
    text-align: center;
    position: relative;
}
.map-button::before {
    content: "";
    position: absolute;
    background: url(../img/pin.png) no-repeat center center / contain;
    bottom: 0;
    left: 26%;
    width: 17px;
    height: 17px;
    z-index: 1;
    top: 27%;
}
.address {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
}

.hours-table {
  background-color: #fff;
  color: #60678B;
  border-radius: 8px;
  overflow-x: auto;
  margin-bottom: 12px;
}

.hours-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.7rem;
  table-layout: fixed;
}

.hours-table th,
.hours-table td {
  text-align: center;
  vertical-align: middle;
  padding: 0.7rem;
  border-bottom: 1px solid #ddd;
  line-height: 1;
  word-break: break-word;
}

.hours-table th:first-child,
.hours-table td:first-child {
  width: 23%;
}

td.small {
  font-size: 0.65rem;
  line-height: 1.2;
  padding: 0.6rem 0.4rem;
}

.note {
  font-size: 12px;
  text-align: center;
  color: #fff;
}
thead {
    background: #EBF0F6;
}
td.small {
    font-size: 0.5rem;
    padding: 1rem 0.4rem;
}
.career p {
    font-size: 0.5rem;
    line-height: 2;
}

p.content {
        text-align: center;
        padding: 5% 0;
        font-size: 5vw;
        color: #998e73;
        font-family: "Cormorant", serif;
        font-optical-sizing: auto;
        font-style: normal;
        letter-spacing: 0.2rem;
    }
    img.line {
        display: block;
        margin: 0 auto;
        height: 7vw;
        width: 0.2%;
    }
    p.access-txt {
        text-align: center;
        font-size: 6vw;
        line-height: 1.3;
        padding: 5% 0px;
    }
.calendar-strong {
    display: flex;
    justify-content: center;
}
    .calendar-box {
        padding: 2% 4%;
        margin: 1%;
        font-size: 3.5vw;
        color: rgb(255, 255, 255);
    background: rgb(153, 142, 115);
    border-radius: 100px;
    }
    iframe.serect-type {
    width: 100%;
    display: block;
    margin: 5% auto 0;
}
.calendar {
    padding-top: 5%;
}

.footer {
        background: #71769A;
        padding: 5% 5% 20%;
    }
    ul.fotter-list {
        text-align: center;
        padding: 5% 0;
        color: #fff;
        line-height: 2.5;
    }
    p.copy-light {
    color: #fff;
    text-align: center;
    font-size: 0.8rem;
}

@media screen and (min-width:769px) {
section.main-visual p {
        font-size: 1.5rem;
        background: #fff;
    color: #2C48DA;
        text-shadow: none;
        font-weight: bold;
        padding: 0.5rem 1rem;
     margin: 0 1% 0;
        width: auto;
        display: inline-block;
    }

    span.sub {
    font-size: 2.8rem;
    color: #fff723;
}

.cta-btn span {
    font-size: 1.3rem;
    font-weight: 600;
    color: #EC245E;
    text-decoration: underline;
    letter-spacing: 0.05em;
}

.cta-btn {
    padding: 15px 0px;
}

.cta-btn .icon {
    color: #d94362;
    width: 6%;
}

    .main-visual h1 {
        font-size: 3.0rem;
    }
.top-bar {
    padding: 10px 0px;
    font-size: 1.1rem;
}
.tag-bar {
    padding: 0.8rem 1rem;
    border-radius: 30px;
    font-size: 1.3rem;
}
.reserve-text {
    font-size: 1.3rem;
}
.reserve-cta {
    font-size: 1.5rem;
    border: solid 3px #fff;
}
.reserve-cta .sub-text {
    font-size: 1rem;
}
.reserve-cta .highlight {
    font-size: 2.3rem;
}
.call-lead {
    font-size: 1.2rem;
    padding: 0.5rem 0;
}
.call-sub {
    font-size: 1.2rem;
}
.call-sub span {
    padding: 0.5rem 0 0.5rem 12rem;
}
.call-button {
    border-radius: 15px;
    padding: 1rem 3.3rem;
    margin-left: 12rem;
}
.button-top {
        padding: 0.2rem 1em;
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
.button-bottom {
    font-size: 1.2rem;
}
.button-bottom::before {
    width: 24px;
    height: 24px;
    top: 35%;
}
.call-button::after {
    width: 11px;
    height: 18px;
    top: 40%;
    right: 7%;
}
.tagline {
    color: #575757;
    padding: 0.6rem;
    font-size: 1.2rem;
}
.ttl-box {
    padding: 1.5rem 1rem;
}
.title {
    font-size: 3rem;
}
.futura {
    font-size: 4rem;
}
.reason-label {
    font-size: 1.5rem;
}
.reason-title01 {
    font-size: 2.8rem;
}
.txt-box {
    padding: 1.5rem 0;
}
.note-box {
    padding: 0.8rem 0;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}
.point-header {
    padding: 0.5rem;
    font-size: 1.2rem;
}
    .point-box li {
        margin-bottom: 1rem;
        font-size: 1.3rem;
        padding-bottom: 1rem;
        line-height: 1.5;
    }
    .point-box li:last-child {
        margin-bottom: 0;
    }
    .reason-card {
    padding: 1.5rem;
}
.reason-title02 {
    font-size: 2.5rem;
}
.reason-title03 {
    font-size: 2.2rem;
}
.ribbon {
    padding: 1.5rem;
    font-size: 1.5rem;
}
.banner {
    margin-top: 1rem;
    padding: 0.8rem 0;
}
.banner p {
    margin: 0;
    font-size: 1.3rem;
    color: #272727;
}
.banner h2 {
    margin-top: 0.3rem;
    font-size: 2.2rem;
}
.grid-item div {
    padding:1.5rem;
    font-size: 1.2rem;
}
.profile .title {
    font-size: 4rem;
    margin-bottom: 2rem;
}
.profile-text h3 {
    font-size: 1.5rem;
}
.profile {
    padding: 2rem;
}
.name {
    font-size: 2.3rem;
}
.career p {
    font-size: 0.9rem;
    line-height: 2.5;
}
.message {
    margin-top: 1rem;
    font-size: 1rem;
}
.white-logo {
    display: block;
    width: 70%;
    padding: 1rem;
    margin: 0 auto;
}
.section-title {
    padding: 0.8rem;
    border-radius: 40px;
    margin: 1rem 0;
    font-size: 1.2rem;
}
.map-placeholder {
    height: 300px;
}
.address {
    font-size: 1rem;
}
.note {
    font-size: 1rem;
}
p.content {
    font-size: 4vw;
}

img.line {
    height: 4vw;
}
p.access-txt {
    font-size: 2rem;
}
.calendar-box {
    font-size: 1rem;
}
.container {
    padding: 2rem 2rem 3rem;
}
}