/* リセットスタイル */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: #007bff;
}

a:hover {
  text-decoration: underline;
}

/* 共通コンテナスタイル */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}
/* ===================== Base: Header ===================== */
header {
  z-index: 100;
  background-color: var(--color-white);
  width: 100%;
  padding: 0;
}

header .header-container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  overflow-x: hidden;
}

header .header-container a {
  grid-column: 1;
  order: 1;
}

header .header-container .logo {
  width: 200px;
  margin-left: 10px;
}

header .header-container .sinryotime {
  margin: 0 auto;
  margin-top: 10px;
  width: 540px;
  grid-column: 2;
  order: 2;
}

header .header-container .right-area {
  display: flex;
  flex-direction: column;
  grid-column: 3;
  order: 3;
}

header .header-container .right-area .tel-box,
header .header-container .right-area .yoyaku-box {
  width: 360px;
  height: 133px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .header-container .right-area .tel-box {
  padding: 8px;
  background-color: #31bebe33;
  flex-direction: column;
}

header .header-container .right-area .tel-box .tel-intro {
  width: 100%;
  margin-bottom: 16px;
  color: var(--color-black);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

header .header-container .right-area .tel-box .txt-tel-pink {
  width: 100%;
  color: #df959b;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

header .header-container .right-area .tel-box .txt-tel-pink span {
  font-size: 36px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 0.72px;
}

header .header-container .right-area .tel-box .txt-tel-pink img {
  width: 40px;
}

header .header-container .right-area a {
  padding: 0;
}

header .header-container .right-area .yoyaku-box {
  margin: 0;
  padding: 10px;
  background-color: #f5f5f5;
}

header .header-container .right-area .yoyaku-box .yoyaku-intro {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

header .header-container .right-area .yoyaku-box .yoyaku-intro img.yoyaku-icon {
  width: 73px;
  height: 62px;
}

header .header-container .right-area .yoyaku-box .yoyaku-intro span {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  color: var(--color-black);
}

header h1 {
  margin: 0;
}

/* ===================== Hamburger ===================== */
.hamburger {
  position: fixed;
  top: 16px;
  right: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 101;
  transition: transform 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.hamburger img {
  width: 24px;
  height: 24px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hamburger img.hum-close-icon {
  transform: scale(0);
  opacity: 0;
  position: absolute;
  top: 4px;
}

.hamburger.active img.hum-open-icon {
  transform: scale(0);
  opacity: 0;
}

.hamburger.active img.hum-close-icon {
  transform: scale(1);
  opacity: 1;
}

.hamburger .menu-label {
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  color: #df959b;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform-origin: top;
  height: 20px;
  display: block;
  text-align: center;
  margin-top: 4px;
}

.hamburger .menu-label.close {
  opacity: 0;
  transform: scaleY(0);
  height: 0;
  overflow: hidden;
}

.hamburger.active .menu-label.open {
  opacity: 0;
  transform: scaleY(0);
  height: 0;
  overflow: hidden;
}

.hamburger.active .menu-label.close {
  opacity: 1;
  transform: scaleY(1);
  height: 20px;
}

/* ===================== Navigation ===================== */
.global-nav {
  z-index: 100;
  width: 100%;
  background-color: #9fcec6;
  margin: 0;
}

.global-nav .container {
  padding: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.global-nav .menu-list {
  display: flex;
  list-style: none;
  width: 100%;
  height: 82px;
  margin: 0 0 0 -12px;
  padding: 0;
  position: relative;
}

.global-nav .menu-list li {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
}

.global-nav .menu-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 24px 0;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
  position: relative;
  z-index: 3;
}

.global-nav .menu-list li a span {
  display: block;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 2.4px;
  padding: 0 24px;
  white-space: nowrap;
  border-right: 1px solid #fff;
}

.global-nav .menu-list li:last-child a span {
  border-right: none;
}

.global-nav .menu-list li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0;
}

.global-nav .menu-list li .sub-menu {
  display: none;
}

/* ===================== Active Hamburger ===================== */
header.active .header-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  height: 120px;
  background-color: var(--color-white);
}

.global-nav.active {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  height: 100%;
  z-index: 100;
  overflow-y: scroll;
  background-color: var(--color-primary);
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.global-nav.active .container {
  opacity: 1;
  transform: translateX(0);
  padding-top: 64px;
  padding-bottom: 40px;
  pointer-events: auto;
}

.global-nav.active .menu-list {
  display: block;
  margin: 0 32px;
  height: auto;
}

.global-nav.active .menu-list li {
  display: block;
}

.global-nav.active .menu-list li a {
  border-bottom: 1px solid #fff;
  width: 100%;
  justify-content: flex-start;
}
.global-nav.active .menu-list li a:hover {
  opacity: 0.8;
}

.global-nav.active .menu-list li a span {
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  padding: 0;
  border-right: none;
}

.global-nav.active .menu-list li .sub-menu {
  display: block;
  margin: 20px 0 10px;
}

.global-nav.active .menu-list li .sub-menu li a::before {
  content: "●";
  display: inline-block;
  font-size: 10px;
  color: var(--color-accent-light);
  margin-right: 0.5em;
}

.global-nav.active .menu-list li .sub-menu li a {
  border-bottom: none;
  justify-content: flex-start;
  font-weight: 400;
  padding: 4px 0;
}

.global-nav.active .menu-list li .sub-menu li:not(:first-child) {
  border-top: none;
}
.global-nav.active .menu-list li:nth-child(n + 3) {
  border-top: none;
}

/* ===================== Responsive ===================== */
@media (max-width: 1200px) {
  header .header-container .logo {
    width: 150px;
  }
  header .header-container .sinryotime {
    width: 480px;
  }
  header .header-container .right-area .tel-box,
  header .header-container .right-area .yoyaku-box {
    width: 300px;
    height: 100px;
  }
  header .header-container .right-area .tel-box .tel-intro {
    font-size: 10px;
    margin-bottom: 8px;
  }
  header .header-container .right-area .tel-box .txt-tel-pink span {
    font-size: 30px;
  }
  header .header-container .right-area .tel-box .txt-tel-pink img {
    width: 30px;
  }
  header
    .header-container
    .right-area
    .yoyaku-box
    .yoyaku-intro
    img.yoyaku-icon {
    width: 50px;
    height: 40px;
  }
  header .header-container .right-area .yoyaku-box .yoyaku-intro span {
    font-size: 16px;
  }
  .global-nav .menu-list li a span {
    font-size: 18px;
    padding: 0 18px;
  }
}

@media (max-width: 960px) {
  header .header-container .sinryotime {
    width: 360px;
  }
  header .header-container .right-area .tel-box,
  header .header-container .right-area .yoyaku-box {
    width: 224px;
    height: 60px;
  }
  header .header-container .right-area .tel-box .tel-intro {
    display: none;
  }
  header .header-container .right-area .tel-box .txt-tel-pink span {
    font-size: 20px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 0.4px;
  }
  header
    .header-container
    .right-area
    .yoyaku-box
    .yoyaku-intro
    img.yoyaku-icon {
    width: 41.061px;
    height: 34.874px;
  }
  header .header-container .right-area .yoyaku-box .yoyaku-intro span {
    font-size: 14px;
    font-weight: 400;
  }
  .global-nav .menu-list li a {
    padding: 20px 0;
  }
  .global-nav .menu-list li a span {
    font-size: 14px;
    padding: 0 14px;
  }
}

@media (max-width: 768px) {
  header .header-container {
    grid-template-columns: auto 1fr;
    gap: 8px 0;
  }
  header .header-container a {
    grid-column: 1 / 2;
    grid-row: 1;
    height: 100%;
    padding-top: 15px;
  }
  header .header-container .logo {
    width: 98.731px;
    height: 72px;
  }
  header .header-container .sinryotime {
    grid-column: 1 / 3;
    grid-row: 2;
    justify-self: center;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 480px;
    width: 100%;
  }
  header .header-container .right-area {
    grid-column: 2 / 3;
    grid-row: 1;
    align-items: flex-end;
  }
  header .header-container .right-area .tel-box,
  header .header-container .right-area .yoyaku-box {
    margin-right: 64px;
    height: 50px;
  }
  .hamburger {
    display: flex;
    opacity: 1;
    visibility: visible;
  }
  .global-nav {
    overflow-x: hidden; /*追加*/
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    pointer-events: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background-color: var(--color-primary);
    z-index: 100;
  }
}

@media (max-width: 600px) {
  header .header-container .logo {
    width: 100%;
    max-width: 80px;
    height: auto;
  }
  header .header-container .right-area {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-left: auto;
    margin-right: 56px;
  }
  header .header-container .sinryotime {
    max-width: 360px;
  }
  header .header-container .right-area .tel-box,
  header .header-container .right-area .yoyaku-box {
    width: 100%;
    height: 45px;
    margin-right: 0;
  }
  header .header-container .right-area a {
    width: 100%;
  }
  header .header-container .right-area .yoyaku-box .yoyaku-intro {
    gap: 16px;
  }
  header .header-container .right-area .yoyaku-box .yoyaku-intro span {
    font-size: 12px;
  }
  header .header-container .right-area .tel-box .txt-tel-pink span {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  header .header-container .right-area {
    max-width: 184px;
  }
}

/* メインコンテンツ */
main {
  padding: 0;
  background-color: #fff;
}

.main-content {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  border-bottom: none;
  padding-bottom: 0;
}

.section-header h2 .accent {
  color: #31bebe;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #888;
  font-weight: 300;
  letter-spacing: 2px;
}

/* 特徴セクション */
.section-feature {
  margin-bottom: 80px;
}

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

.feature-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.feature-item h3 {
  color: #31bebe;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.feature-item p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* 院長紹介セクション */
.section-about {
  margin-bottom: 80px;
}

.about-content {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.doctor-image {
  flex: 0 0 40%;
}

.doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-profile {
  flex: 0 0 60%;
  padding: 40px;
}

.doctor-profile h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.doctor-title {
  font-size: 1.1rem;
  color: #666;
  margin-left: 15px;
  font-weight: normal;
}

.doctor-specialty {
  color: #31bebe;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.doctor-message p {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.doctor-more {
  text-align: right;
}

.btn-more {
  display: inline-block;
  background-color: #31bebe;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-more:hover {
  background-color: #df959b;
  text-decoration: none;
}

/* レスポンシブ対応 - メインコンテンツ */
@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    flex-direction: column;
  }

  .doctor-image,
  .doctor-profile {
    flex: 0 0 100%;
  }

  .doctor-image img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-item {
    padding: 25px;
  }

  .doctor-profile {
    padding: 30px;
  }

  .doctor-profile h3 {
    font-size: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .doctor-title {
    margin-left: 0;
    margin-top: 5px;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 40px 0;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .doctor-image img {
    height: 250px;
  }

  .doctor-profile {
    padding: 20px;
  }
}

/* フッター */
footer {
  background-color: #fff;
  color: #000;
  padding: 140px 0 16px 0;
  width: 100%;
}

footer .container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 64px;
  padding-bottom: 72px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0px;
  padding: 0;
}

.footer-logo {
  width: 229px;
  height: 167px;
  margin-bottom: 15px;
}

.footer-address {
  font-size: 20px;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 3.6px;
  color: var(--color-black);
}

.footer-left a {
  color: var(--color-black);
}

.footer-links {
  padding-left: 40px;
  border-left: 1px solid #cfcfcf;
  flex-shrink: 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
  flex-shrink: 0;
}

.footer-links ul li a {
  color: #000;
  text-decoration: none;
  position: relative;
  padding-left: 35px;
  margin-left: 0px;
  transition: color 0.3s;
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 3.6px;
}

.footer-links ul li a:before {
  content: "-";
  position: absolute;
  left: 0;
}

.footer-links ul li a:hover {
  color: #9fcec6;
}

.footer-map {
  width: 520.129px;
  height: 278px;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer-copyright {
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  margin-top: 16px;
}

/* レスポンシブ対応 - フッター */
@media (max-width: 1300px) {
  footer .container {
    gap: 32px;
  }
  .footer-map {
    width: 400px;
    height: 200px;
  }
}

@media (max-width: 1200px) {
  footer .container {
    gap: 16px;
  }
}

@media (max-width: 1100px) {
  footer .container {
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-left {
    flex: 0 0 100%;
    margin-bottom: 30px;
    align-items: center;
    text-align: center;
  }
  .footer-links ul li a {
    font-size: 16px;
    line-height: 32px;
  }
}

@media (max-width: 960px) {
  footer {
    padding-top: 64px;
    padding-bottom: 16px;
  }
  footer .container {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    gap: 64px;
  }
  .footer-left {
    margin-bottom: 0;
  }
  .footer-links {
    display: none;
  }
  .footer-map {
    width: 100%;
    height: 240px;
  }
}

@media (max-width: 600px) {
  .footer-logo {
    width: 156.323px;
    height: 114px;
  }
  .footer-address,
  .footer-left a {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 2.52px;
  }
}

/*　以下index.htmlのスタイル　*/

/* メインビジュアル */
.main-visual {
  width: 100%;
  background: url("../img/index/main-visual.jpg") no-repeat center center;
  background-size: cover;
  margin: 0;
  padding: 0;
  height: 960px;
  border-bottom: 8px solid #515151;
  margin-bottom: 0px;
}

.visual-content {
  text-align: center;
  margin-bottom: 0px;
}

.visual-text {
  padding-top: 212px;
  padding-bottom: 136px;
}

.visual-text img {
  width: 50%;
  min-width: 800px;
  height: auto;
}

.care-message {
  display: inline-block;
  background-color: rgba(223, 149, 155, 0.9);
  padding: 15px 40px;
  border-radius: 50px;
  color: #fff;
  font-size: 2.1rem;
  font-weight: 500;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 0;
  margin-right: 15px;
  margin-left: 15px;
}

.info-panel {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 80%;
  min-width: 1100px;
  max-width: 1200px;
  padding: 0;
  margin: 20px auto;
}

.info-section {
  width: 100%;
  display: flex;
  align-items: stretch;
  padding: 20px 50px;
}

.info-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-center {
  flex: 1;
  display: flex;
  align-items: center;
}

.info-section h3 {
  font-size: 25px;
  font-weight: 400;
  line-height: normal;
  position: relative;
  padding-right: 50px;
  color: #000;
  margin: 0;
  white-space: nowrap;
}

.info-content {
  width: 100%;
  margin: 15px 0;
  padding-left: 50px;
  border-left: 1px solid #161616;
}

.info-right {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
}

.info-item {
  padding-bottom: 10px;
}

.info-item:last-child {
  padding-bottom: 0px;
}

.info-item a {
  display: block;
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  gap: 50px;
}
.info-item a:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-tag {
  padding: 8px 8px;
  width: 133px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  background-color: #9fcec6;
  min-width: 80px;
  text-align: center;
  letter-spacing: 0.1em;
}

.info-tag:nth-child(2) {
  background-color: #df959b;
}

.info-text {
  flex-grow: 1;
  font-size: 1.3rem;
  text-align: left;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000;
}

.info-date {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  white-space: nowrap;
  color: #000;
}

.more-link {
  text-align: center;
  opacity: 0.8;
}

.more-link a {
  display: inline-flex;
  align-items: center;
  color: #000;
  font-size: 22px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.more-link a:hover {
  color: #df959b;
}

.arrow-icon {
  margin-left: 10px;
  font-size: 1.1rem;
  font-weight: normal;
}

/* レスポンシブ - メインビジュアル */
@media (max-width: 1440px) {
  .info-section h3 {
    font-size: 20px;
    padding-right: 30px;
  }
  .info-content {
    padding-left: 30px;
  }
  .info-item a {
    gap: 30px;
  }
  .info-tag {
    font-size: 18px;
  }
  .info-text {
    font-size: 18px;
  }
  .info-date {
    font-size: 18px;
  }
  .more-link a {
    font-size: 20px;
  }
}
@media (max-width: 1300px) {
  .care-message {
    font-size: 1.5rem;
  }
  .info-panel {
    width: initial;
    max-width: initial;
    min-width: initial;
    margin-right: 15px;
    margin-left: 15px;
  }
  .info-section {
    padding: 20px 25px;
  }
  .info-section h3 {
    font-size: 18px;
  }
  .info-tag {
    font-size: 16px;
  }
  .info-text {
    font-size: 16px;
  }
  .info-date {
    font-size: 16px;
  }
  .more-link a {
    font-size: 18px;
  }
}
@media (max-width: 960px) {
  .main-visual {
    height: 480px;
    margin-bottom: 220px;
    border-bottom: none;
  }
  .visual-content {
    margin-bottom: 100px;
  }
  .visual-text {
    padding-top: 100px;
    padding-bottom: 24px;
  }
  .visual-text img {
    min-width: initial;
  }

  .care-message {
    font-size: 1.3rem;
    padding: 12px 30px;
  }
  .info-section {
    flex-direction: column;
    padding: 20px 50px;
  }
  .info-content {
    padding-left: 0;
    border-left: none;
  }
  .info-left {
    display: block;
  }
  .info-section h3 {
    display: inline-block;
    width: initial;
    border-bottom: 1px solid #161616;
    padding-bottom: 10px;
    padding-right: 0;
    margin: 0;
    font-size: 20px;
  }

  .info-tag {
    font-size: 18px;
  }
  .info-text {
    font-size: 18px;
  }
  .info-date {
    font-size: 18px;
  }
  .info-right {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .main-visual {
    height: 262px;
    margin-bottom: 300px;
  }
  .visual-text {
    padding-top: 72px;
    padding-bottom: 0;
  }
  .visual-text img {
    width: 334.64px;
    height: 90px;
    object-fit: contain;
  }

  .care-message {
    font-size: 14px;
    padding: 10px 25px;
  }

  .info-panel {
    background-color: rgba(244, 242, 234, 0.9);
    margin-top: 24px;
  }

  .info-section {
    padding: 20px;
  }
  .info-item a {
    gap: 16px;
  }

  .info-date {
    margin: 8px 0 0 0;
    text-align: right;
  }

  .more-link {
    text-align: center;
    padding: 0;
  }
}

@media (max-width: 600px) {
  .main-visual {
    margin-bottom: 340px;
  }

  .care-message {
    font-size: 12px;
    padding: 8px 20px;
    margin-right: 0;
    margin-left: 0;
  }

  .info-section h3 {
    font-size: 16px;
  }
  .info-content {
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 0;
  }
  .info-item a {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "tag date"
      "tag text";
    gap: 4px 16px;
    align-items: center;
  }

  .info-tag {
    grid-area: tag;
    margin-bottom: 0;
    border-radius: 10px;
    width: 61px;
    height: 19px;
    font-size: 10px;
    font-weight: 400;
  }

  .info-text {
    grid-area: text;
    font-size: 14px;
  }

  .info-date {
    grid-area: date;
    font-size: 0.9rem;
    text-align: left;
  }
  .more-link a {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 2.52px;
  }
  .arrow-icon img {
    width: 21px;
    height: 20px;
  }
}

/* 風邪症状・発熱のある方へ */
.hatunetsu-box {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto;
  border: 16px solid #d4eae6;
  border-top: none;
}

.txt-hatsunetsu {
  width: 100%;
  height: 100px;
  background-color: #d4eae6;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 9px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-top {
  width: 100%;
  height: 40px;
  background-color: #fff;
  border-bottom: 5px solid #d4eae6;
  border-top: 5px solid #d4eae6;
}

.overlap {
  position: relative;
  background-color: #fff;
  padding: 30px 40px;
  text-align: center;
}

.txt {
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  padding-bottom: 20px;
}

.txt-mask {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}
.text-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding-bottom: 20px;
}
.tel {
  width: 93px;
  height: 93px;
  display: inline-block;
  vertical-align: middle;
}

.text-wrapper a {
  color: #df959b;
  font-size: 64px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 6.4px;
}

/* レスポンシブ - 風邪症状・発熱 */
@media (max-width: 960px) {
  .text-wrapper {
    gap: 20px;
  }
  .tel {
    width: 60px;
    height: 60px;
  }
  .text-wrapper a {
    font-size: 40px;
  }
  .txt-hatsunetsu {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .hatunetsu-box {
    margin: 30px auto;
  }
  .txt-hatsunetsu {
    height: 60px;
  }

  .overlap {
    padding: 20px;
  }

  .txt,
  .txt-mask {
    font-size: 1rem;
  }

  .text-wrapper {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .txt-hatsunetsu {
    height: 32px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4.2px;
  }
  .box-top {
    height: 20px;
  }

  .txt,
  .txt-mask {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 2.52px;
  }

  .tel {
    width: 23px;
    height: 23px;
  }

  .text-wrapper {
    font-size: 1.8rem;
  }

  .text-wrapper a {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 2px;
  }
}

/* 初診の方へ */
.shoshin-box {
  width: 100%;
  margin: 0 auto;
  position: relative;
  background-color: #d4eae6;
  padding: 15px;
  padding-bottom: 0;
}

.shoshin-group {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.shoshin-overlap-group {
  position: relative;
}

.shoshin-overlap {
  background-color: #ffffff;
  border-radius: 17px;
  padding: 50px 88px;
  text-align: center;
  margin-top: 30px;
}

.shoshin-text-wrapper {
  width: 35%;
  letter-spacing: 0.5em;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #fff;
  z-index: 2;
  vertical-align: middle;
  white-space: nowrap;
}
.shoshin-text-wrapper:before,
.shoshin-text-wrapper:after {
  content: "";
  width: 100%;
  height: 24px;
  background: var(--color-primary-light);
  flex-grow: 1;
}

.shoshin-rectangle {
  width: 60px;
  vertical-align: middle;
  margin-right: 20px;
  margin-left: 56px;
}

.shoshin-text-wrapper h3 {
  margin-right: 56px;
}

.shoshin-txt-fitst-sentence {
  color: #333;
  font-size: 1.3rem;
  line-height: 1.8;
  padding-top: 40px;
  padding-bottom: 32px;
  text-align: left;
}

.shoshin-txt-first {
  color: #333;
  font-size: 1.4rem;
  margin: 40px 0 10px;
  text-align: center;
}

a.shoshin-monshin-link {
  display: block;
}

.shoshin-monshin-download-box {
  background-color: #fff;
  border: 5px solid #d4eae6;
  border-radius: 80px;
  padding: 24px 88px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.shoshin-txt-monshin-download {
  font-size: 24px;
  font-weight: 400;
  line-height: 40px;
}
.shoshin-txt-monshin-download.sp-text {
  display: none;
}

.shoshin-txt-monshin-pdf {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 24px;
  font-weight: 400;
  line-height: 40px;
}

.shoshin-pdficon {
  width: 41px;
  height: 46px;
}

.shoshin-box-first {
  text-align: center;
  padding-top: 32px;
  padding-bottom: 32px;
  position: relative;
}

.shoshin-box-first a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.shoshin-box-first a:hover {
  text-decoration: none;
}

.shoshin-txt-first-2 {
  color: inherit;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 16.2px;
}

.shoshin-arrow-bt {
  width: 37px;
  height: 36px;
  display: inline-block;
  vertical-align: middle;
}

/* レスポンシブ - 初診の方へ */
@media (max-width: 1200px) {
  .shoshin-overlap {
    padding: 30px 60px;
  }
  .shoshin-monshin-download-box {
    padding: 24px 60px;
  }
  .shoshin-txt-fitst-sentence,
  .shoshin-txt-monshin-download,
  .shoshin-txt-monshin-pdf,
  .shoshin-txt-first {
    font-size: 20px;
  }
}

@media (max-width: 960px) {
  .shoshin-text-wrapper h3,
  .shoshin-txt-first-2 {
    font-size: 24px;
  }
  .shoshin-rectangle {
    margin-left: 30px;
    width: 40px;
    height: 40px;
  }
  .shoshin-text-wrapper h3 {
    margin-right: 30px;
  }
  .shoshin-txt-fitst-sentence,
  .shoshin-txt-monshin-download,
  .shoshin-txt-monshin-pdf,
  .shoshin-txt-first {
    font-size: 18px;
  }
  .shoshin-monshin-download-box {
    padding: 20px 30px;
  }
  .shoshin-pdficon {
    width: 30px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .shoshin-box {
    margin: 30px auto;
  }
  .shoshin-text-wrapper:before,
  .shoshin-text-wrapper:after {
    height: 7px;
  }
  .shoshin-rectangle {
    margin-left: 8px;
    margin-right: 8px;
  }
  .shoshin-text-wrapper h3 {
    margin-right: 8px;
  }

  .shoshin-overlap {
    padding: 24px;
  }

  .shoshin-txt-fitst-sentence {
    padding-top: 32px;
    padding-bottom: 20px;
  }

  .shoshin-txt-fitst-sentence,
  .shoshin-txt-monshin-download,
  .shoshin-txt-monshin-pdf,
  .shoshin-txt-first {
    font-size: 1rem;
  }
  .shoshin-txt-first {
    margin-top: 20px;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .shoshin-txt-monshin-download.sp-text {
    display: block;
  }
  .shoshin-txt-monshin-download.pc-text {
    display: none;
  }

  .shoshin-txt-fitst-sentence,
  .shoshin-txt-monshin-download,
  .shoshin-txt-monshin-pdf,
  .shoshin-txt-first {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 2.52px;
  }
  .shoshin-monshin-download-box {
    padding: 16px;
  }
  .shoshin-txt-monshin-pdf {
    gap: 4px;
  }
  .shoshin-text-wrapper h3,
  .shoshin-txt-first-2 {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 4.2px;
  }
  .shoshin-box-first {
    padding-top: 24px;
  }
}
