﻿@charset "UTF-8";

/* --- 共通設定 --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.94vw;
}

body {
  margin: 0;
}

h1,
h2,
h3,
h4,
p,
span,
a,
li,
th,
td {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.077em;
  color: #333;
}

.en {
  font-family: "Cormorant Garamond", serif;
}

li {
  list-style: none;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

/* --- コンテナ設定 --- */
img {
  max-width: 100%;
  height: auto;
  border-style: none;
  display: block;
}

/* 消してる要素 */
.sp {
  display: none;
}

/* ヘッダー */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.header-container {
  width: 100%;
  height: 6.9444vw;
  background-color: #fff;
  transition: background-color 0.3s ease;
}

#header.is-scroll .header-container {
  background-color: rgba(255, 255, 255, 0.9);
}

.header-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 0.5556vw;
}

.header-logo {
  width: 26.3889vw;
}

.header-logo img {
  width: 100%;
}

.header-logo-text {
  color: #1e2973;
  font-size: 2.0833vw;
  font-weight: 600;
  letter-spacing: 0.1667vw;
  text-align: right;
}

.header-address {
  display: flex;
  align-items: center;
  margin-left: 3.4722vw;
}

.header-address-icon {
  width: 1.6493vw;
  flex-shrink: 0;
}

.header-address-list {
  margin-left: 0.4167vw;
}

.header-address-list li {
  font-size: 0.6944vw;
  line-height: 1.1806vw;
  color: #333;
}

.header-right {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.header-tel {
  width: 21.875vw;
  height: 100%;
  background-color: #f2eee4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-tel-text {
  color: #1e2973;
  font-size: 1.1111vw;
  letter-spacing: 0.0889vw;
}

.header-tel-divider {
  width: 20.1389vw;
  height: 0.0694vw;
  background-color: #1e2973;
  margin: 0.4333vw 0;
}

.header-tel-link {
  display: flex;
  align-items: center;
  gap: 0.6944vw;
}

.header-tel-icon {
  width: 3.4331vw;
}

.header-tel-num {
  color: #1e2973;
  font-size: 2.2222vw;
  font-weight: 600;
  letter-spacing: 0.1778vw;
}

.header-web {
  width: 13.6806vw;
  height: 100%;
  background-color: #325eaf;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-web-sub {
  color: #fff;
  font-size: 1.1111vw;
  letter-spacing: 0.0889vw;
}

.header-web-divider {
  width: 11.7361vw;
  height: 0.0694vw;
  background-color: #fff;
  margin: 0.4333vw 0;
}

.header-web-text {
  color: #fff;
  font-size: 2.0833vw;
  font-weight: 600;
  letter-spacing: 0.1667vw;
}

.header-menu-btn {
  width: 6.9444vw;
  height: 100%;
  background-color: #1e2973;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6944vw;
  cursor: pointer;
  position: relative;
  z-index: 9999;
}

.header-menu-icon {
  position: relative;
  width: 3.6111vw;
  height: 1.6667vw;
}

.header-menu-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.2083vw;
  background-color: #fff;
  transition: 0.3s;
}

.header-menu-icon span:nth-child(1) {
  top: 0;
}

.header-menu-icon span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.header-menu-icon span:nth-child(3) {
  bottom: 0;
}

.header-menu-btn.is-active .header-menu-icon span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.header-menu-btn.is-active .header-menu-icon span:nth-child(2) {
  opacity: 0;
}

.header-menu-btn.is-active .header-menu-icon span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.header-menu-text {
  color: #fff;
  font-size: 1.1111vw;
  font-weight: 600;
  letter-spacing: 0.0889vw;
}

.header-nav-overlay {
  position: fixed;
  top: 0;
  right: -44.4444vw;
  width: 44.4444vw;
  /* height: 63.1944vw; */
  height: 100vh;
  background-color: rgba(50, 94, 175, 0.89);
  overflow-y: auto;
  padding: 9.7222vw 0 2.5694vw 6.9444vw;
  transition: 0.4s;
  z-index: 9998;
}

.header-nav-overlay.is-active {
  right: 0;
}

.header-nav-list>li {
  margin-top: 4.0972vw;
}

.header-nav-list>li:first-child {
  margin-top: 0;
}

.header-nav-list>li:nth-child(2),
.header-nav-list>li:nth-child(4) {
  margin-top: 0;
}

.header-nav-link {
  display: block;
  width: 10vw;
  color: #fff;
  font-size: 1.25vw;
  font-weight: 600;
  letter-spacing: 0.1vw;
  flex-shrink: 0;
}

.header-nav-row {
  display: flex;
  align-items: flex-start;
}

.header-nav-line {
  display: block;
  width: 5.9028vw;
  height: 0.0694vw;
  margin-top: 0.8333vw;
  margin-right: 0.9028vw;
  background-color: #fff;
  flex-shrink: 0;
}

.header-nav-sub li {
  margin-bottom: 0.6944vw;
}

.header-nav-sub li:last-child {
  margin-bottom: 0;
}

.header-nav-sub li a {
  display: block;
  color: #fff;
  font-size: 1.1111vw;
  font-weight: 600;
  letter-spacing: 0.0889vw;
}

.header-nav-schedule {

  margin-top: 4.1667vw;
}

.header-nav-schedule-scroll {
  width: 31.8056vw;
  height: 10.4861vw;
  padding: 0.6944vw 0.8333vw;
  background-color: #fff;
}

.header-nav-schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.header-nav-schedule-table th,
.header-nav-schedule-table td,
.sub-footer-schedule-table th,
.sub-footer-schedule-table td {
  font-size: 1.1111vw;
  font-weight: 500;
  letter-spacing: 0.0889vw;
  padding: 0.6944vw 0.3472vw;
  text-align: center;
  border-bottom: 0.0694vw solid #e7e4dd;
}

.header-nav-schedule-table th,
.sub-footer-schedule-table th {
  color: #333;
}

.header-nav-schedule-table td,
.sub-footer-schedule-table td {
  color: #f09819;
}

.header-nav-schedule-table th:first-child,
.header-nav-schedule-table td:first-child,
.sub-footer-schedule-table th:first-child,
.sub-footer-schedule-table td:first-child {
  text-align: left;
  padding-left: 1.25vw;
  color: #333;
}

.header-nav-schedule-table tr:last-child th,
.header-nav-schedule-table tr:last-child td,
.sub-footer-schedule-table tr:last-child th,
.sub-footer-schedule-table tr:last-child td {
  border-bottom: none;
}

.header-nav-schedule-note {
  color: #fff;
  font-size: 1.1111vw;
  font-weight: 600;
  letter-spacing: 0.0889vw;
  margin-top: 0.8333vw;
}

/* ============================================
   トップページ
============================================ */

/* p1-a MV */
.p1-a {
  position: relative;
  height: 63.1944vw;
  overflow: hidden;
  margin: 3.6111vw 5.5556vw 0;
}

.p1-a-slider {
  position: absolute;
  inset: 0;
}

.p1-a-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #ccc;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.p1-a-item.is-active {
  opacity: 1;
}

.p1-a-item:nth-child(1) {
  background-image: url(../image/p1-img1.png);
}

.p1-a-item:nth-child(2) {
  background-image: url(../image/p1-img2.png);
}

.p1-a-item:nth-child(3) {
  background-image: url(../image/p1-img3.png);
}

.p1-a-container {
  position: absolute;
  left: 6.6667vw;
  bottom: 10.8333vw;
  display: flex;
  align-items: flex-end;
}

.p1-a-box {
  width: 100%;
}

.p1-a-en {
  color: #edd54a;
  font-size: 1.25vw;
  font-weight: 700;
  letter-spacing: 0.1vw;
  text-shadow: 0 0.2778vw 0.2778vw rgba(0, 0, 0, 0.25);
  margin-bottom: 0.6944vw;
}

.p1-a-sub {
  color: #fff;
  font-size: 2.5vw;
  font-weight: 700;
  letter-spacing: 0.15vw;
  text-shadow: 0 0.2778vw 0.2778vw rgba(0, 0, 0, 0.25);
  margin-bottom: 0.6944vw;
}

.p1-a-title {
  color: #fff;
  font-size: 3.4722vw;
  font-weight: 700;
  letter-spacing: 0.2083vw;
  line-height: 1.4;
  text-shadow: 0 0.2778vw 0.2778vw rgba(0, 0, 0, 0.25);
}

.p1-a-title-sm {
  font-size: 2.5vw;
  color: #fff;
}

/* p1-b クイックナビ */
.p1-b {
  width: 88.4722vw;
  margin: 2.0139vw auto 0;
}

.p1-b-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.p1-b-list li {
  position: relative;
  padding-bottom: 0.9722vw;
}

.p1-b-list li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0.6944vw;
  height: 0.6944vw;
  border-radius: 50%;
  background-color: #009fe8;
  opacity: 0;
  transition: opacity 0.3s;
}

.p1-b-list li:hover::after {
  opacity: 1;
}

.p1-b-list li a {
  color: #1e2973;
  font-size: 0.9722vw;
  font-weight: 600;
}

/* p1-c NEWS */
.p1-c {
  position: relative;
  margin-top: 4.375vw;
}

.p1-c-container {
  width: 100%;
  padding: 4.8611vw 0;
  background-image: url(../image/part-back1.png);
  background-size: cover;
  background-position: center;
  background-color: #f4f1e8;
}

.p1-c-box {
  width: 88.8889vw;
  margin: 0 auto;
}

.p1-c-title {
  display: flex;
  align-items: center;
  color: #1e2973;
  font-size: 2.2222vw;
  font-weight: 600;
  letter-spacing: 0.1778vw;
  text-align: center;
  padding-bottom: 1.25vw;
  margin-bottom: 2.0833vw;
}

.p1-c-title::before,
.p1-c-title::after {
  content: "";
  flex: 1;
  height: 0.0694vw;
  background-color: #1e2973;
}

.p1-c-title::before {
  margin-right: 4.0278vw;
}

.p1-c-title::after {
  margin-left: 4.0278vw;
}

.p1-c-item {
  width: 79.5139vw;
  display: flex;
  align-items: baseline;
  gap: 5.5556vw;
  padding: 1.25vw 10.4167vw;
  border-top: 0.0694vw solid #cfcabe;
  border-bottom: 0.0694vw solid #cfcabe;
  margin: 0 auto;
}

.p1-c-date {
  color: #325eaf;
  font-size: 1.1111vw;
  font-weight: 600;
  letter-spacing: 0.0889vw;
  flex-shrink: 0;
}

.p1-c-text {
  color: #333;
  font-size: 1.1111vw;
  font-weight: 600;
  letter-spacing: 0.0889vw;
}

/* p1-d 歯周病について */
.p1-d {
  background-color: #f4f1e8;
  padding-top: 2.7778vw;
}

.p1-d-container {
  width: 100%;
  padding: 6.9444vw 0;
  border-top: 0.0694vw solid #1E2973;
}

.p1-d-box {
  text-align: center;
  margin-bottom: 4.7222vw;
}

.p1-d-en {
  color: #1e2973;
  font-size: 6.25vw;
  font-weight: 500;
  letter-spacing: 0.5vw;
  line-height: 1;
}

.p1-d-en-accent {
  font-family: "Cormorant Garamond", serif;
  color: #f09819;
  line-height: 1;
}

.p1-d-title {
  color: #333;
  font-size: 2.0833vw;
  font-weight: 600;
  letter-spacing: 0.1667vw;
  margin-top: 0.5556vw;
}

.p1-d-item {
  width: 88.8889vw;
  margin: 3.4722vw auto 0;
}

.p1-d-item:first-child {
  margin-top: 0;
}

.p1-d-card {
  position: relative;
  background-color: #e7e4dd;
  padding: 5.1389vw 1.6667vw 2.7083vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.p1-d-item-rev .p1-d-card {
  flex-direction: row-reverse;
}

.p1-d-num {
  position: absolute;
  top: -4.4445vw;
  left: -0.7639vw;
  color: #d3d3d3;
  font-size: 8.8889vw;
  font-weight: 600;
  letter-spacing: 0.7111vw;
  line-height: 1;
  z-index: 0;
}

.p1-d-num-rev {
  left: auto;
  right: 1.2361vw;
}

.p1-d-text {
  position: relative;
  width: 50.1389vw;
}

.p1-d-card-title {
  position: relative;
  z-index: 2;
  color: #333;
  font-size: 1.9444vw;
  font-weight: 600;
  letter-spacing: 0.1556vw;
  line-height: 1.5;
  margin-bottom: 1.25vw;
}

.p1-d-card-body {
  color: #333;
  font-size: 1.1111vw;
  font-weight: 600;
  line-height: 2.4306vw;
  margin-top: 1.25vw;
}

.p1-d-card-body:first-of-type {
  margin-top: 0;
}

.p1-d-img {
  width: 31.6667vw;
}

/* p1-e こんなお悩みありませんか？ */
.p1-e {
  position: relative;
  margin-top: 3.75vw;
  border-top: 0.0694vw solid #1E2973;
  ;
}

.p1-e-container {
  position: relative;
  width: 100%;
  padding-top: 4.4444vw;
}

.p1-e-head {
  text-align: center;
}

.p1-e-en {
  color: #e7e4dd;
  font-size: 8.8889vw;
  line-height: 1;
}

.p1-e-en::first-letter {
  color: #f09819;
}

.p1-e-title {
  color: #333;
  font-size: 2.7778vw;
  font-weight: 500;
  letter-spacing: 0.2222vw;
  margin-top: 0.5556vw;
}

.p1-e-box {
  background-image: url(../image/p1-img6.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6.875vw 5.5556vw 9.8611vw;
  margin-top: 4.8611vw;
}

.p1-e-card {
  width: 44.4444vw;
  background-color: #fff;
  box-shadow: 2.7778vw 2.7778vw 0 #325eaf;
  padding: 0 4.1667vw 3.1944vw;
  margin-left: auto;
}

.p1-e-list li {
  color: #333;
  font-size: 1.3889vw;
  font-weight: 600;
  letter-spacing: 0.1111vw;
  padding: 1.7639vw 0 1.7639vw 2.2222vw;
  border-bottom: 0.0694vw solid #333;
  position: relative;
}

.p1-e-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25vw;
  height: 1.25vw;
  background-image: url(../image/part-icon3.png);
  background-size: contain;
  background-repeat: no-repeat;
}

/* p1-f FEATURE タイトル */
.p1-f {
  margin-top: 3.3333vw;
}

.p1-f-box {
  text-align: center;
  background-image: url(../image/p1-img7.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 3.4722vw;
  padding-bottom: 7.9167vw;
}

.p1-f-en {
  color: #1e2973;
  font-size: 8.8889vw;
  line-height: 1;
  padding-top: 6.9444vw;
  border-top: 0.0694vw solid #1E2973;
  -webkit-text-stroke: 0.1694vw #fff;
  paint-order: stroke;
}

.p1-f-en-accent {
  color: #f09819;
}

.p1-f-title {
  color: #333;
  font-size: 2.7778vw;
  font-weight: 500;
  letter-spacing: 0.2222vw;
  margin-top: 0.5556vw;
}

.p1-f-parallax {
  width: 100%;
  height: 52.6389vw;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* p1-g FEATURE 詳細 */
.p1-g-container {
  width: 88.8889vw;
  background-color: #fff;
  margin: -6.1806vw auto 0;
}

.p1-g-box {
  position: relative;
}

.p1-g-num {
  font-family: "Noto Serif JP", serif;
  font-size: 8.8889vw;
  font-weight: 500;
  line-height: 1;
}

.p1-g-head {
  position: relative;
  text-align: center;
  padding-top: 5.9259vw;
  padding-bottom: 1.25vw;
  border-bottom: 0.1389vw solid #325eaf;
}

.p1-g-head .p1-g-num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -40%);
}

.p1-g-head .p1-g-card-title {
  margin-top: 0;
}

.p1-g-num-blue {
  color: #009fe8;
}

.p1-g-num-navy {
  color: #1e2973;
}

.p1-g-num-blue2 {
  color: #325eaf;
}

.p1-g-card-title {
  color: #333;
  font-size: 2.7778vw;
  font-weight: 500;
  letter-spacing: 0.1667vw;
  margin-top: 1.1111vw;
}

.p1-g-card {
  display: flex;
  justify-content: space-between;
  gap: 3.125vw;
  margin-top: 4.5833vw;
}

.p1-g-text {
  width: 42.2222vw;
}

.p1-g-lead {
  color: #333;
  font-size: 1.1111vw;
  font-weight: 600;
  letter-spacing: 0.0667vw;
  line-height: 2.1528vw;
}

.p1-g-check-title {
  color: #333;
  font-size: 1.1111vw;
  font-weight: 700;
  margin-top: 1.1111vw;
}

.p1-g-check-list {
  margin-top: 0.6944vw;
}

.p1-g-check-list li {
  color: #333;
  font-size: 1.1111vw;
  font-weight: 600;
  line-height: 2.2917vw;
  padding-left: 1.3889vw;
  position: relative;
}

.p1-g-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7639vw;
  width: 0.9722vw;
  height: 0.9722vw;
  border: 0.0694vw solid #333;
}

.p1-g-img {
  width: 43.75vw;
  height: 28.1944vw;
  flex-shrink: 0;
}

.p1-g-img img {
  width: 100%;
  height: 28.1944vw;
  object-fit: cover;
}

.p1-g-quiz {
  margin-top: 2.5694vw;
  position: relative;
  background-image: url(../image/part-back1.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom;
  padding-bottom: 14.4444vw;
}

.p1-g-quiz-container {
  width: 88.8889vw;
  margin: 0 auto;
}

.p1-g-quiz-box {
  position: relative;
  background-color: #baf0ff;
  padding: 1.1806vw 0;
  overflow: hidden;
}

.p1-g-quiz-en {
  position: absolute;
  right: 1.7708vw;
  bottom: -1vw;
  color: rgba(255, 255, 255, 0.51);
  font-size: 6.9444vw;
  white-space: nowrap;
  z-index: 0;
}

.p1-g-quiz-text {
  position: relative;
  z-index: 1;
  color: #333;
  font-size: 1.1111vw;
  font-weight: 600;
  line-height: 2.2917vw;
  padding: 0.9722vw 1.5278vw;
  border-top: 0.0694vw solid #fff;
  border-bottom: 0.0694vw solid #fff;
}

.p1-g-item2,
.p1-g-item3 {
  position: relative;
}

.p1-g-item4 {
  width: 100%;
  height: 15.625vw;
  background-image: url(../image/part-back1.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.p1-g-item2 {
  background-color: #F2EEE4;
}

.p1-g-item3 {
  background-color: #325EAF;
}

.p1-g-item2-container,
.p1-g-item3-container {
  display: flex;
  width: 100%;
}

.p1-g-item2-img,
.p1-g-item3-img {
  width: 48.0556vw;
  flex-shrink: 0;
  background-color: #fff;
  padding-top: 2.0833vw;
}

.p1-g-item2-img img,
.p1-g-item3-img img {
  width: 100%;
  object-fit: cover;
}

.p1-g-item2-box {
  position: relative;
  background-color: #fff;
  padding-left: 5.5556vw;
  padding-right: 3.6806vw;
}

.p1-g-item2-box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  margin-left: -2.0833vw;
  width: 0.1389vw;
  height: 30.8333vw;
  background-color: #1e2973;
}

.p1-g-item3-box {
  position: relative;
  background-color: #fff;
  padding-right: 5.5556vw;
  padding-left: 3.6806vw;
}

.p1-g-item3-box::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  margin-right: -1.0833vw;
  width: 0.1389vw;
  height: 30.8333vw;
  background-color: #1e2973;
}

.p1-g-item2-line {
  display: block;
  width: 19.5833vw;
  height: 0.0694vw;
  background-color: #333;
  margin: 1.1806vw auto 0;
}

.p1-g-item2-head {
  position: relative;
  text-align: center;
  padding-top: 4.4444vw;
}

.p1-g-item2-head .p1-g-num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p1-g-item2-head .p1-g-card-title {
  margin-top: 0;
}

.p1-g-item2-text {
  color: #000;
  font-size: 1.1111vw;
  font-weight: 500;
  line-height: 2.2917vw;
  width: 38.8889vw;
  padding-top: 5.9028vw;
}

.p1-g-item3-container {
  flex-direction: row-reverse;
}

.p1-g-btn-wrap {
  text-align: center;
}

.p1-g-btn {
  position: relative;
  width: 23.2639vw;
  height: 5.2778vw;
  display: inline-block;
  background-color: #1e2973;
  padding-left: 0.625vw;
  margin: 4.375vw auto 0;
}

.p1-g-btn:hover {
  background-color: #325eaf;
}

.p1-g-btn-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1.1889vw;
  height: 1.1889vw;
  transition: opacity 0.3s;
}

.p1-g-btn-icon-hover {
  opacity: 0;
}

.p1-g-btn:hover .p1-g-btn-icon-default {
  opacity: 0;
}

.p1-g-btn:hover .p1-g-btn-icon-hover {
  opacity: 1;
}

.p1-g-btn span {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.3889vw;
  font-weight: 500;
  letter-spacing: 0.0833vw;
  border-left: 0.0694vw solid #fff;
}

/* p1-h 治療の流れ */
.p1-h {
  background-color: #fff;
  padding: 5.8889vw 0 6.25vw;
}

.p1-h-container {
  width: 88.8889vw;
  margin: 0 auto;
}

.p1-h-box {
  text-align: center;
}

.p1-h-en {
  color: #1e2973;
  font-size: 8.8889vw;
  line-height: 1;
}

.p1-h-en-accent {
  color: #f09819;
}

.p1-h-title {
  color: #333;
  font-size: 2.7778vw;
  font-weight: 500;
  letter-spacing: 0.2222vw;
  margin-top: 0.5556vw;
}

.p1-h-steps {
  width: 88.8889vw;
  margin: 3.6111vw auto 0;
}

.p1-h-steps-list {
  display: flex;
  justify-content: space-between;
}

.p1-h-steps-list li {
  position: relative;
}

.p1-h-steps-list li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -1.7vw;
  top: 50%;
  width: 0.7861vw;
  height: 0.7861vw;
  background-image: url(../image/part-icon6.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
}

.js-flow-step {
  display: block;
  width: 12.5vw;
  height: 3.3333vw;
  background-color: #009fe8;
  color: #fff;
  font-size: 0.9722vw;
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.p1-h-steps-list li.is-active .js-flow-step {
  background-color: #1e2973;
}

.p1-h-slider {
  position: relative;
  width: 100%;
  margin: 2.7778vw auto 0;
  overflow: hidden;
}

.p1-h-track {
  display: flex;
  transition: transform 1.4s ease;
  padding-left: 17.7083vw;
}

.p1-h-item {
  position: relative;
  flex-shrink: 0;
  width: 64.5833vw;
}

.p1-h-item-clone {
  pointer-events: none;
}

.p1-h-item-content {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.p1-h-item.is-active .p1-h-item-content {
  opacity: 1;
}

.p1-h-item-img {
  width: 100%;
  height: 43.3333vw;
}

.p1-h-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p1-h-item-content {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  z-index: 5;
}

.p1-h-item-num {
  position: absolute;
  left: 0.9722vw;
  top: -2.0833vw;
  width: 4.3056vw;
  height: 4.3056vw;
  border-radius: 50%;
  background-color: #1e2973;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.p1-h-item-num span {
  color: #fff;
  font-size: 2.7778vw;
  font-weight: 600;
  margin-bottom: 0.5556vw;
  margin-left: 0.2083vw;
}

.p1-h-item-head {
  width: 100%;
  background-color: rgba(0, 159, 232, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.6944vw 0;
}

.p1-h-item-title {
  color: #fff;
  font-size: 2.2222vw;
  font-weight: 600;
  letter-spacing: 0.1333vw;
}

.p1-h-item-body {
  width: 100%;
  height: 7.7778vw;
  background-color: rgba(242, 238, 228, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1.4vw;
}

.p1-h-item-body p {
  color: #333;
  font-size: 1.1111vw;
  font-weight: 600;
  letter-spacing: 0.0667vw;
  line-height: 2;
}

.p1-h-arrow {
  position: absolute;
  top: 21.6667vw;
  width: 3.3333vw;
  height: 3.3333vw;
  border: none;
  background-color: transparent;
  cursor: pointer;
  z-index: 2;
}

.p1-h-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p1-h-arrow-prev {
  left: 19.0972vw;
}

.p1-h-arrow-prev::before {
  background-image: url(../image/part-icon7.png);
}

.p1-h-arrow-next {
  right: 19.0972vw;
}

.p1-h-arrow-next::before {
  background-image: url(../image/part-icon8.png);
}

/* p1-i 院長のご挨拶 */
.p1-i {
  background-color: #fff;
  padding: 6.25vw 0;
}

.p1-i-container {
  position: relative;
}

.p1-i-box {
  width: 88.8889vw;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 1.6667vw;
}

/* 写真 + 名前バッジ */
.p1-i-photo-box {
  position: relative;
  width: 34.5139vw;
  box-shadow: -2.7778vw 2.7778vw 0 #325eaf;
}

.p1-i-img {
  width: 100%;
  height: 45.7639vw;
}

.p1-i-img img {
  width: 100%;
  height: 45.7639vw;
  object-fit: cover;
}

.p1-i-name {
  position: absolute;
  right: -6.25vw;
  bottom: -9.4444vw;
  width: 16.6667vw;
  height: 16.6667vw;
  border-radius: 50%;
  background-color: #baf0ff;
  padding: 0.7639vw;
  box-sizing: border-box;
  z-index: 2;
}

.p1-i-name-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #009fe8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.p1-i-name-role {
  color: #fff;
  font-size: 1.6667vw;
  font-weight: 600;
}

.p1-i-name-text {
  color: #fff;
  font-size: 2.2222vw;
  font-weight: 600;
  margin-top: 0.2778vw;
}

.p1-i-name-en {
  color: #fff;
  font-size: 1.3889vw;
  margin-top: 0.2778vw;
}

/* テキスト側 */
.p1-i-text-box {
  width: 54.2361vw;
}

.p1-i-en {
  color: #1e2973;
  font-size: 7.6389vw;
  line-height: 1;
}

.p1-i-en-accent {
  color: #f09819;
}

.p1-i-title {
  color: #333;
  font-size: 2.7778vw;
  font-weight: 500;
  letter-spacing: 0.2222vw;
  margin-top: 0.5556vw;
}

.p1-i-content {
  padding-top: 2.4306vw;
}

.p1-i-text {
  color: #000;
  font-size: 1.1111vw;
  font-weight: 500;
  letter-spacing: 0.0667vw;
  line-height: 2.4306vw;
}

.p1-i-btn {
  position: relative;
  width: 23.2639vw;
  height: 5.2778vw;
  display: block;
  background-color: #1e2973;
  padding-left: 0.625vw;
  margin: 3.6806vw auto 0;
}

.p1-i-btn:hover {
  background-color: #325eaf;
}

.p1-i-btn-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1.1889vw;
  height: 1.1889vw;
  transition: opacity 0.3s;
}

.p1-i-btn-icon-hover {
  opacity: 0;
}

.p1-i-btn:hover .p1-i-btn-icon-default {
  opacity: 0;
}

.p1-i-btn:hover .p1-i-btn-icon-hover {
  opacity: 1;
}

.p1-i-btn span {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.3889vw;
  font-weight: 500;
  letter-spacing: 0.0833vw;
  border-left: 0.0694vw solid #fff;
}

.p1-i-img2 {
  position: absolute;
  top: -8.75vw;
  right: 0;
  width: 17.3333vw;
}

/* p1-j ギャラリー */
.p1-j {
  position: relative;
  padding: 27.9861vw 0 6.1111vw;
  background-image: url(../image/part-back2.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom;
  overflow: hidden;
  margin-top: -16.6667vw;
}

.p1-j-slider {
  width: 100%;
  overflow: hidden;
}

.p1-j-list {
  display: flex;
  width: max-content;
  animation: p1-j-scroll 40s linear infinite;
}

.p1-j-list li {
  width: 27.3611vw;
  height: 22.4306vw;
  margin-right: 0.4861vw;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

@keyframes p1-j-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-222.7778vw);
  }
}

/* p1-k よくあるご質問 */
.p1-k {
  background-color: #fff;
  padding: 6.25vw 0;
}

.p1-k-container {
  width: 88.8889vw;
  margin: 0 auto;
}

.p1-k-box {
  text-align: center;
}

.p1-k-en {
  color: #1e2973;
  font-size: 8.8889vw;
  line-height: 1;
}

.p1-k-en-accent {
  color: #f09819;
}

.p1-k-title {
  color: #333;
  font-size: 2.7778vw;
  font-weight: 500;
  letter-spacing: 0.2222vw;
  margin-top: 0.5556vw;
}

.p1-k-list {
  margin-top: 3.4722vw;
}

.p1-k-list>li {
  margin-top: 2.0833vw;
}

.p1-k-list>li:first-child {
  margin-top: 0;
}

.p1-k-q {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 5.0694vw;
  background-color: #e8ecf4;
  border: none;
  cursor: pointer;
  text-align: left;
}

.p1-k-q-mark {
  flex-shrink: 0;
  width: 5.0694vw;
  height: 5.0694vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.7778vw;
}

.p1-k-q-mark-blue {
  background-color: #009fe8;
}

.p1-k-q-mark-navy {
  background-color: #325eaf;
}

.p1-k-q-text {
  color: #333;
  font-size: 1.3889vw;
  font-weight: 600;
  letter-spacing: 0.1111vw;
  padding-left: 1.3889vw;
}

.p1-k-q-icon {
  position: absolute;
  right: 1.6667vw;
  top: 50%;
  transform: translateY(-50%);
  width: 1.7361vw;
  height: 1.7361vw;
}

.p1-k-q-icon::before,
.p1-k-q-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #333;
  transform: translate(-50%, -50%);
}

.p1-k-q-icon::before {
  width: 1.7361vw;
  height: 0.1389vw;
}

.p1-k-q-icon::after {
  width: 0.1389vw;
  height: 1.7361vw;
  transition: 0.3s;
}

.p1-k-list>li.is-active .p1-k-q-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.p1-k-a {
  display: none;
  height: 12.0139vw;
  background-color: #f4f6f9;
  padding: 1.25vw 1.3889vw 1.25vw 6.4583vw;
}

.p1-k-list>li.is-active .p1-k-a {
  display: block;
}

.p1-k-a p {
  color: #333;
  font-size: 1.1111vw;
  font-weight: 600;
  letter-spacing: 0.0889vw;
  line-height: 2.4306vw;
}

/* ============================================
   p2 歯周病について
============================================ */
.p2-a {
  padding-top: 4.1667vw;
}

.p2-a-container {
  width: 88.8889vw;
  margin: 4.1667vw auto 0;
}

.p2-a-row {
  display: flex;
  align-items: flex-start;
  gap: 2.5vw;
}

.p2-a-text {
  width: 38.5417vw;
}

.p2-a-text p {
  color: #333;
  font-size: 1.1111vw;
  letter-spacing: 0.0889vw;
  line-height: 2.0833vw;
}

.p2-a-text p+p {
  margin-top: 1.3889vw;
}

.p2-a-img {
  width: 47.8472vw;
  flex-shrink: 0;
}

.p2-a-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p2-a-body {
  margin-top: 2.5vw;
}

.p2-a-body p {
  color: #333;
  font-size: 1.1111vw;
  letter-spacing: 0.0889vw;
  line-height: 2.0833vw;
}

/* p2-b TROUBLE */
.p2-b-container {
  width: 100%;
  background-color: #baf0ff;
  padding: 3.0556vw 0 5.5556vw;
  text-align: center;
  margin-top: 4.1667vw;
}

.p2-b-en {
  color: #325eaf;
  font-size: 6.25vw;
  font-weight: 500;
  letter-spacing: 0.5vw;
  line-height: 1;
  margin-bottom: -0.6944vw;
}

.p2-b-en-accent {
  font-family: "Cormorant Garamond", serif;
  color: #f09819;
  line-height: 1;
}

.p2-b-box {
  width: 72.5694vw;
  margin: 0 auto;
}

.p2-b-list-box {
  background-color: #fff;
  padding: 3.2639vw;
}

.p2-b-head {
  background-color: #009fe8;
  padding: 0.9375vw 0;
  margin-top: -1.3889vw;
}

.p2-b-head p {
  color: #fff;
  font-size: 1.6667vw;
  font-weight: 600;
  letter-spacing: 0.1333vw;
}

.p2-b-list {
  margin: 1.5625vw auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 1.5278vw;
  text-align: left;
  padding-left: 6.5556vw;
}

.p2-b-list li {
  display: flex;
  align-items: center;
  gap: 1.1806vw;
  color: #333;
  font-size: 1.1111vw;
  font-weight: 600;
  letter-spacing: 0.0889vw;
}

.p2-b-list li::before {
  content: "";
  flex-shrink: 0;
  width: 1.25vw;
  height: 1.25vw;
  background-image: url(../image/part-icon10.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.p2-b-lead {
  width: 65.9722vw;
  margin: 2.0833vw auto 0;
  color: #333;
  font-size: 1.1111vw;
  letter-spacing: 0.0889vw;
  line-height: 2.4306vw;
  text-align: left;
}

/* p2-c もしかして歯周病... */
.p2-c {
  margin-top: 14.5833vw;
}

.p2-c-container {
  width: 88.8889vw;
  margin: 7.6389vw auto 0;
}

.p2-c-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.9444vw;
  margin-top: 3.3333vw;
}

.p2-c-item {
  height: 21.875vw;
  background-color: #009fe8;
  text-align: center;
  padding-top: 1.7361vw;
}

.p2-c-item:nth-child(even) {
  background-color: #57caff;
}

.p2-c-img {
  width: 10.1965vw;
  margin: 0 auto;
}

.p2-c-text {
  color: #fff;
  font-size: 1.6667vw;
  font-weight: 600;
  letter-spacing: 0.1333vw;
  line-height: 1.4;
  margin-top: 1.7361vw;
}

.p2-c-legend {
  width: 48.9861vw;
  margin: 3.4722vw auto 0;
}

.p2-c-legend-item {
  display: flex;
  align-items: center;
  gap: 3.4722vw;
  color: #333;
  font-size: 1.1111vw;
  letter-spacing: 0.0889vw;
  line-height: 3.4722vw;
}

.p2-c-legend-label {
  position: relative;
  flex-shrink: 0;
}

.p2-c-legend-label::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.6944vw;
  height: 1.3194vw;
  background-color: rgba(186, 240, 255, 0.4);
  z-index: -1;
}

.p2-c-legend-num {
  color: #009fe8;
  font-size: 1.6667vw;
  font-weight: 700;
}

/* p2-d メッセージ */
.p2-d-container {
  width: 100%;
  background-color: rgba(186, 240, 255, 0.41);
  padding: 2.7778vw 5.5556vw 8vw;
  margin-top: 11.1111vw;
}

.p2-d-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9722vw;
  padding: 2.0833vw 0;
}

.p2-d-head-icon {
  width: 2.4083vw;
}

.p2-d-head-icon-r {
  transform: scaleX(-1);
}

.p2-d-title {
  color: #333;
  font-size: 2.0833vw;
  font-weight: 600;
  letter-spacing: 0.1667vw;
  text-align: center;
}

.p2-d-row {
  display: flex;
  align-items: center;
  gap: 3.8194vw;
  margin-top: 1.3889vw;
}

.p2-d-text {
  width: 43.4028vw;
}

.p2-d-text p {
  color: #333;
  font-size: 1.1111vw;
  letter-spacing: 0.0889vw;
  line-height: 2.0833vw;
}

.p2-d-text p+p {
  margin-top: 1.3889vw;
}

.p2-d-img {
  width: 41.6667vw;
  flex-shrink: 0;
}

.p2-d-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   p3 歯周病の治療
============================================ */
.p3-a {
  padding-top: 4.1667vw;
}

.p3-a-container {
  width: 88.8889vw;
  margin: 0 auto;
}

.p3-a-img {
  width: 100%;
  height: 22.6389vw;
}

.p3-a-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p3-b {
  margin-top: 5.1389vw;
}

.p3-c {
  margin-top: 13.75vw;
  margin-bottom: 18.75vw;
}

.p3-b-container,
.p3-c-container {
  width: 88.8889vw;
  margin: 0 auto;
}

.p3-b-row,
.p3-c-row {
  display: flex;
  gap: 2.5vw;
  margin-top: 4.1667vw;
}

.p3-b-row+.p3-b-row,
.p3-c-row+.p3-c-row {
  margin-top: 8.3333vw;
}

.p3-b-row-rev,
.p3-c-row-rev {
  flex-direction: row-reverse;
}

.p3-b-text,
.p3-c-text {
  width: 38.5417vw;
  margin-top: 0.6944vw;
}

.p3-b-text p,
.p3-c-text p {
  color: #333;
  font-size: 1.1111vw;
  letter-spacing: 0.0889vw;
  line-height: 2.4306vw;
}

.p3-b-text p+p,
.p3-c-text p+p {
  margin-top: 1.3889vw;
}

.p3-b-img,
.p3-c-img {
  width: 47.8472vw;
  flex-shrink: 0;
}

.p3-b-img img,
.p3-c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   p4 歯周病の予防
============================================ */
.p4-a,
.p4-b,
.p4-c {
  padding-top: 4.1667vw;
}

.p4-c {
  padding-bottom: 15.2778vw;
}

.p4-a-wrap,
.p4-b-wrap,
.p4-c-wrap {
  width: 88.8889vw;
  border: 0.2083vw solid #f4f1e8;
  margin: 0 auto;
}

.p4-a-box,
.p4-b-box,
.p4-c-box {
  position: relative;
  width: 83.0556vw;
  margin: 0 auto;
  padding: 3.4722vw 0;
}

.p4-a-badge,
.p4-b-badge,
.p4-c-badge {
  position: absolute;
  left: -3.125vw;
  top: -1.6667vw;
  width: 8.5417vw;
  height: 5.5556vw;
  background-image: url(../image/part-icon15.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.p4-a-badge p,
.p4-b-badge p,
.p4-c-badge p {
  color: #fff;
  text-align: center;
  line-height: 1.3;
}

.p4-a-badge-label,
.p4-b-badge-label,
.p4-c-badge-label {
  font-size: 1.1111vw;
  margin-right: 0.6944vw;
}

.p4-a-badge-num,
.p4-b-badge-num,
.p4-c-badge-num {
  font-size: 2.5vw;
  font-weight: 600;
  margin-right: 0.6944vw;
}

.p4-a-row,
.p4-b-row,
.p4-c-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 1.25vw;
}

.p4-a-text,
.p4-b-text,
.p4-c-text {
  width: 33.125vw;
}

.p4-a-text p,
.p4-b-text p,
.p4-c-text p {
  color: #333;
  font-size: 1.1111vw;
  letter-spacing: 0.0889vw;
  line-height: 1.7903vw;
}

.p4-a-check-title {
  color: #009fe8;
  font-size: 1.25vw;
  font-weight: 600;
  margin-top: 1.3889vw;
}

.p4-a-check-list {
  margin-top: 0.6944vw;
}

.p4-a-check-list li {
  color: #333;
  font-size: 1.1111vw;
  letter-spacing: 0.0889vw;
  line-height: 1.7903vw;
  padding-left: 1.8056vw;
  position: relative;
}

.p4-a-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3vw;
  width: 1.25vw;
  height: 1.25vw;
  background-image: url(../image/part-icon10.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.p4-a-lead {
  margin-top: 1.3889vw;
  color: #333;
  font-size: 1.1111vw;
  letter-spacing: 0.0889vw;
  line-height: 2.4306vw;
}

.p4-a-img,
.p4-b-img,
.p4-c-img {
  width: 41.1111vw;
  flex-shrink: 0;
}

.p4-a-img img,
.p4-b-img img,
.p4-c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p4-a-body {
  width: 100%;
  margin-top: 2.7778vw;
  color: #333;
  font-size: 1.1111vw;
  letter-spacing: 0.0889vw;
  line-height: 2.1528vw;
}

.p4-a-arrow,
.p4-b-arrow {
  width: 10.2083vw;
  margin: 0 auto;
}

/* ============================================
   p5 スタッフ紹介
============================================ */
.p5-a {
  padding-top: 4.1667vw;
}

.p5-a-container {
  width: 88.8889vw;
  margin: 0 auto;
}

.p5-a-row {
  display: flex;
  align-items: flex-start;
  gap: 2.5vw;
  margin-top: 4.1667vw;
}

.p5-a-info {
  width: 38.5417vw;
}

.p5-a-text {
  width: 100%;
}

.p5-a-text p {
  color: #333;
  font-size: 1.1111vw;
  letter-spacing: 0.0889vw;
  line-height: 2.4306vw;
}

.p5-a-img {
  width: 47.8472vw;
  flex-shrink: 0;
}

.p5-a-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p5-a-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6667vw;
  margin-top: 1.6667vw;
}

.p5-a-name-badge {
  position: relative;
  flex-shrink: 0;
  width: 4.8611vw;
  height: 4.8611vw;
  border-radius: 50%;
  background-color: #325eaf;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p5-a-name-badge p {
  color: #fff;
  font-size: 1.3889vw;
  font-weight: 600;
  letter-spacing: 0.1111vw;
}

.p5-a-name-text {
  color: #000;
  font-size: 2.0833vw;
  font-weight: 600;
  letter-spacing: 0.1667vw;
}

.p5-a-name-en {
  color: #009fe8;
  font-size: 1.1111vw;
  font-weight: 500;
  letter-spacing: 0.0889vw;
}

.p5-a-career {
  display: flex;
  align-items: center;
  gap: 2.5vw;
  margin-top: 6.25vw;
}

.p5-a-career-img {
  width: 47.8472vw;
  flex-shrink: 0;
}

.p5-a-career-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p5-a-career-box {
  width: 35.9722vw;
  padding-left: 3.6111vw;
}

.p5-a-career-title {
  color: #009fe8;
  font-size: 2.2222vw;
  font-weight: 600;
  letter-spacing: 0.1778vw;
  text-align: center;
  padding-bottom: 0.9722vw;
  border-bottom: 0.1389vw solid #009fe8;
}

.p5-a-career-line {
  width: 30.4167vw;
  height: 0.1389vw;
  background-color: #333;
  margin-top: 0.5vw;
}

.p5-a-career-table {
  width: 100%;
  margin-top: 1.25vw;
  border-collapse: collapse;
}

.p5-a-career-table th,
.p5-a-career-table td {
  color: #333;
  font-size: 1.1111vw;
  font-weight: 600;
  letter-spacing: 0.0889vw;
  line-height: 3.9583vw;
  text-align: left;
}

.p5-a-career-table th {
  white-space: nowrap;
  padding-right: 1.3889vw;
}

.p5-b {
  padding-top: 12.2222vw;
  padding-bottom: 15.9722vw;
}

.p5-b-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4.1667vw;
  margin-top: 8.3333vw;
}

.p5-b-item {
  width: 26.8056vw;
  text-align: center;
}

.p5-b-img {
  width: 100%;
  height: 24.8611vw;
}

.p5-b-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p5-b-name {
  color: #333;
  font-size: 1.6667vw;
  font-weight: 600;
  letter-spacing: 0.1333vw;
  margin-top: 0.4861vw;
}

/* ============================================
   p6 よくある質問
============================================ */
.p6-a {
  padding: 4.1667vw 0 18.75vw;
}

.p6-a-list {
  width: 75.2778vw;
  margin: 0 auto;
}

.p6-a-list li {
  margin-top: 2.4306vw;
}

.p6-a-list li:first-child {
  margin-top: 0;
}

.p6-a-q {
  display: flex;
  align-items: flex-end;
  gap: 1.875vw;
  background-color: #009fe8;
  padding: 1.4583vw 1.25vw 0.9722vw 1.8056vw;
}

.p6-a-q-mark {
  color: #fff;
  font-size: 1.6667vw;
  font-weight: 600;
  letter-spacing: 0.1333vw;
}

.p6-a-q-text {
  color: #fff;
  font-size: 1.25vw;
  font-weight: 600;
  letter-spacing: 0.1vw;
}

.p6-a-a {
  display: flex;
  align-items: flex-start;
  gap: 2.6389vw;
  background-color: #ecfbff;
  padding: 1.5278vw 2.0139vw 2.7778vw;
}

.p6-a-a-mark {
  color: #f09819;
  font-size: 1.6667vw;
  font-weight: 600;
  letter-spacing: 0.1333vw;
}

.p6-a-a-text {
  color: #333;
  font-size: 1.1111vw;
  font-weight: 500;
  letter-spacing: 0.0889vw;
  line-height: 2.0833vw;
}

/* ============================================
   p7 医院案内
============================================ */
.p7-a {
  padding-top: 4.1667vw;
}

.p7-a-container {
  width: 88.8889vw;
  margin: 5.5556vw auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4.8611vw;
}

.p7-a-left {
  width: 39.5833vw;
  text-align: center;
}

.p7-a-logo {
  width: 26.3889vw;
  margin: 0 auto;
}

.p7-a-name {
  color: #1e2973;
  font-size: 2.0833vw;
  font-weight: 600;
  letter-spacing: 0.1667vw;
  margin-top: -0.6vw;
}

.p7-a-address {
  color: #333;
  font-size: 1.1111vw;
  letter-spacing: 0.0889vw;
  line-height: 1.875vw;
  margin-top: 1.25vw;
}

.p7-a-btns {
  display: flex;
  align-items: stretch;
  margin-top: 1.6667vw;
}

.p7-a-btns .sub-footer-tel,
.p7-a-btns .sub-footer-web {
  flex: 1;
  margin-top: 0;
}

.p7-a-schedule {
  text-align: left;
  width: 31.8056vw;
  margin: 1.25vw auto 0;
}

.p7-a-img {
  width: 44.4444vw;
  height: 29.5833vw;
  flex-shrink: 0;
}

.p7-a-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* p7-b アクセス */
.p7-b {
  padding-top: 10.2778vw;
  padding-bottom: 5.5556vw;
}

.p7-b-container {
  width: 88.8889vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3.3333vw;
}

.p7-b-map {
  width: 62.5vw;
  height: 29.6528vw;
  flex-shrink: 0;
}

.p7-b-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.p7-b-access {
  display: flex;
  align-items: center;
  gap: 0.8333vw;
}

.p7-b-access-icon {
  width: 1.6493vw;
  flex-shrink: 0;
  margin-top: 0.2vw;
}

.p7-b-access-list li {
  color: #333;
  font-size: 0.9722vw;
  line-height: 1.9444vw;
}

/* p7-c 院内紹介 */
.p7-c {
  padding-bottom: 18.0556vw;
}

.p7-c-container {
  width: 88.8889vw;
  margin: 5.2083vw auto 0;
}

.p7-c-main {
  position: relative;
  width: 62.5vw;
  margin: 0 auto;
}

.p7-c-main-img {
  width: 100%;
  height: 41.3889vw;
}

.p7-c-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p7-c-thumbs {
  display: flex;
  flex-wrap: wrap;
  width: 62.5vw;
  gap: 0.6944vw;
  margin: 0.6944vw auto 0;
}

.p7-c-thumb {
  width: 11.9444vw;
  height: 7.9167vw;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.p7-c-thumb.is-active,
.p7-c-thumb:hover {
  opacity: 1;
}

.p7-c-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p7-c-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.3333vw;
  height: 3.3333vw;
  border: none;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}

.p7-c-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p7-c-arrow-prev {
  left: -4.5833vw;
}

.p7-c-arrow-next {
  right: -4.5833vw;
}

/* ============================================
   p8 お問い合わせ
============================================ */
.p8-a {
  padding-top: 4.1667vw;
}

.p8-a-container {
  width: 88.8889vw;
  margin: 3.4722vw auto 0;
  text-align: center;
}

.p8-a-lead {
  color: #333;
  font-size: 1.1111vw;
  letter-spacing: 0.0889vw;
  line-height: 2.4306vw;
}

.p8-a-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9028vw;
  margin-top: 1.6667vw;
}

.p8-a-tel-icon {
  width: 2.2222vw;
}

.p8-a-tel-num {
  color: #1e2973;
  font-size: 2.2222vw;
  font-weight: 600;
  letter-spacing: 0.1778vw;
}

.p8-b {
  padding-top: 4.1667vw;
  padding-bottom: 18.5417vw;
}

.p8-b-container {
  width: 75.2778vw;
  margin: 0 auto;
}

.p8-b-table {
  width: 48.125vw;
  border-collapse: collapse;
  margin: 3.4722vw auto 0;
}

.p8-b-table th,
.p8-b-table td {
  padding: 1.3889vw 0;
  vertical-align: middle;
}

.p8-b-table th {
  width: 12.9861vw;
  text-align: left;
  color: #333;
  font-size: 1.1111vw;
  font-weight: 500;
  vertical-align: top;
}

.p8-b-table td {
  width: 33.8194vw;
}

.p8-b-table .required {
  color: #f00;
  font-size: 0.9722vw;
  margin-left: 0.5556vw;
}

.p8-b-table input[type="text"],
.p8-b-table input[type="tel"],
.p8-b-table input[type="email"],
.p8-b-table textarea {
  box-sizing: border-box;
  width: 100%;
  border: none;
  background-color: #f5f5f5;
  padding: 1.1111vw;
  font-size: 1.1111vw;
}

.p8-b-table input[type="text"],
.p8-b-table input[type="tel"],
.p8-b-table input[type="email"] {
  height: 3.3333vw;
}

.p8-b-table textarea {
  height: 14.2361vw;
  resize: vertical;
}


/* ----------------------------------------
  Contact Form 7 送信ボタン
---------------------------------------- */

.p8-b-btn-wrap {
  text-align: center;
}

.p8-b-btn {
  position: relative;
  width: 23.2639vw;
  height: 5.2778vw;
  display: inline-block;
  background-color: #1e2973;
  padding-left: 0.625vw;
  margin: 4.375vw auto 0;
  border: none;
  cursor: pointer;
}

.p8-b-btn:hover {
  background-color: #325eaf;
}

.p8-b-btn-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1.1889vw;
  height: 1.1889vw;
  transition: opacity 0.3s;
}

.p8-b-btn-icon-hover {
  opacity: 0;
}

.p8-b-btn:hover .p8-b-btn-icon-default {
  opacity: 0;
}

.p8-b-btn:hover .p8-b-btn-icon-hover {
  opacity: 1;
}

.p8-b-btn span:nth-of-type(1) {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.3889vw;
  font-weight: 500;
  letter-spacing: 0.0833vw;
  border-left: 0.0694vw solid #fff;
}

.p8-b-btn-icon-default {
  background-image: url(../image/part-icon4.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.p8-b-btn-icon-hover {
  background-image: url(../image/part-icon5.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.p8-b-container input[type="submit"] {
  display: block;
  width: 23.2639vw;
  height: 5.2778vw;
  margin: 2.7778vw auto 0;
  background-color: #1e2973;
  color: #fff;
  border: none;
  font-size: 1.3889vw;
  font-weight: 500;
  letter-spacing: 0.0833vw;
  cursor: pointer;
  transition: background-color 0.3s;
}

.p8-b-container input[type="submit"]:hover {
  background-color: #325eaf;
}

/* ============================================
   フッター（共通パーツ）
============================================ */
.sub-footer-container {
  width: 100%;
  padding: 3.4722vw 0;
  background-color: #f6f4ed;
}

.sub-footer-box {
  width: 88.8889vw;
  margin: 0 auto;
}

.sub-footer-logo {
  text-align: center;
}

.sub-footer-logo img {
  width: 26.3889vw;
  margin: 0 auto;
}

.sub-footer-logo-text {
  color: #1e2973;
  font-size: 2.0833vw;
  font-weight: 600;
  letter-spacing: 0.1667vw;
  margin-top: -0.6vw;
}

.sub-footer-info {
  display: flex;
  justify-content: center;
  gap: 17.3611vw;
  margin-top: 2.0833vw;
}

.sub-footer-left {
  width: 21.875vw;
}

.sub-footer-address {
  color: #333;
  font-size: 1.1111vw;
  font-weight: 600;
  letter-spacing: 0.0889vw;
}

.sub-footer-tel {
  margin-top: 1.6667vw;
  background-color: #e8ecf4;
  padding: 1.25vw;
  text-align: center;
}

.sub-footer-tel-text {
  color: #1e2973;
  font-size: 1.1111vw;
  letter-spacing: 0.0889vw;
}

.sub-footer-tel-divider {
  display: block;
  width: 100%;
  height: 0.0694vw;
  background-color: #1e2973;
  margin: 0.6944vw 0;
}

.sub-footer-tel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6944vw;
}

.sub-footer-tel-icon {
  width: 2.5vw;
}

.sub-footer-tel-num {
  color: #1e2973;
  font-size: 1.6667vw;
  font-weight: 600;
  letter-spacing: 0.1556vw;
}

.sub-footer-web {
  display: block;
  margin-top: 0.6944vw;
  background-color: #325eaf;
  padding: 1.25vw;
  text-align: center;
}

.sub-footer-web-sub {
  color: #fff;
  font-size: 1.1111vw;
  letter-spacing: 0.0889vw;
}

.sub-footer-web-divider {
  display: block;
  width: 100%;
  height: 0.0694vw;
  background-color: #fff;
  margin: 0.6944vw 0;
}

.sub-footer-web-text {
  color: #fff;
  font-size: 1.9444vw;
  font-weight: 600;
  letter-spacing: 0.1556vw;
}

.sub-footer-right {
  width: 31.8056vw;
}

.sub-footer-schedule-scroll {
  width: 31.8056vw;
  height: 10.4861vw;
  padding: 0.6944vw 0.8333vw;
  background-color: #fff;
}

.sub-footer-schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.sub-footer-schedule-note {
  color: #333;
  font-size: 1.1111vw;
  font-weight: 600;
  letter-spacing: 0.0889vw;
  margin-top: 0.6944vw;
}

.sub-footer-access {
  display: flex;
  align-items: center;
  margin-top: 1.6667vw;
}

.sub-footer-access-icon {
  width: 1.6493vw;
  flex-shrink: 0;
  margin-top: 0.2vw;
}

.sub-footer-access-list {
  margin-left: 0.6944vw;
}

.sub-footer-access-list li {
  color: #333;
  font-size: 0.9722vw;
  line-height: 1.9444vw;
}

/* オフィシャルバナー */
.sub-banner-container {
  width: 100%;
  padding: 2.5vw 0;
  text-align: center;
  background-color: #fff;
}

.sub-banner-box {
  display: inline-flex;
  width: 49.7917vw;
  height: 12.3611vw;
  background-color: #fff;
  padding: 0.625vw;
  border: 0.0694vw solid #333;
}

.sub-banner-inner {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: #F4F6F8;
}

.sub-banner-img {
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
}

.sub-banner-text {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sub-banner-logo {
  width: 15.5vw;
}

.sub-banner-title {
  color: #1e2973;
  font-size: 1.5vw;
  font-weight: 600;
  letter-spacing: 0.12vw;
}

.sub-banner-en {
  color: #325eaf;
  font-size: 1.5vw;
}

.sub-banner-btn {
  display: block;
  width: 22.2222vw;
  background-color: #009fe8;
  color: #fff;
  font-size: 1.1667vw;
  font-weight: 700;
  letter-spacing: 0.0889vw;
  text-align: center;
  padding: 0.5556vw 0;
  margin-top: 0.5vw;
}

/* サイトマップ */
.sub-sitemap-container {
  width: 100%;
  padding: 6.25vw 0;
  background-color: #f6f4ed;
}

.sub-sitemap-list {
  width: 88.8889vw;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.6667vw 3.5vw;
}

.sub-sitemap-list li a {
  color: #333;
  font-size: 1.3889vw;
  font-weight: 600;
  letter-spacing: 0.1111vw;
}

/* MAP */
.sub-map-container {
  width: 100%;
  height: 36.8056vw;
}

.sub-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* コピーライト */
.sub-copyright-container {
  width: 100%;
  padding: 1.6667vw 0;
  background-color: #1e2973;
  text-align: center;
}

.sub-copyright-text {
  color: #fff;
  font-size: 0.9722vw;
  letter-spacing: 0.0778vw;
}

/* ページトップ */
.sub-pagetop {
  position: fixed;
  right: 2.7778vw;
  bottom: 2.7778vw;
  width: 4.8611vw;
  height: 4.8611vw;
  border: none;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  border-radius: 50%;
}

.sub-pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

.sub-pagetop img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

/* ==============================
   下層ページ 共通パーツ
============================== */

/* メインビュー */
.sub-mv {
  position: relative;
  width: 100%;
  height: 31.1111vw;
  overflow: hidden;
  margin-top: 3.6111vw;
}

.sub-mv-container {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.sub-mv-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.sub-mv-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
}

.sub-mv-title {
  color: #fff;
  font-size: 2.7778vw;
  font-weight: 700;
  letter-spacing: 0.1667vw;
  text-shadow: 0 0.2778vw 0.2778vw rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.sub-mv-en {
  color: #edd54a;
  font-size: 2.0833vw;
  font-weight: 700;
  letter-spacing: 0.1667vw;
  text-shadow: 0 0.2778vw 0.2778vw rgba(0, 0, 0, 0.25);
  margin-top: 0.6944vw;
}

/* セクション見出し */
.sub-title-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sub-title {
  width: 88.8889vw;
  text-align: center;
  background-color: #f6f4ed;
  color: #1e2973;
  font-size: 2.2222vw;
  font-weight: 600;
  letter-spacing: 0.1778vw;
  padding: 0.8333vw 0;
  margin: 0 auto;
}

.sub-title-deco {
  width: 83.125vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.2083vw;
}

.sub-title-line {
  width: 33.8889vw;
  height: 0.0694vw;
  background-color: #333;
}

.sub-title-mark {
  width: 15.3472vw;
  height: 1.1111vw;
  background-image: url(../image/part-icon13.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ボタン（トップページと共通デザイン） */
.sub-btn-wrap {
  text-align: center;
}

.sub-btn {
  position: relative;
  display: inline-block;
  width: 23.2639vw;
  height: 5.2778vw;
  background-color: #1e2973;
  padding-left: 0.625vw;
  margin: 4.375vw auto 0;
}

.sub-btn:hover {
  background-color: #325eaf;
}

.sub-btn-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1.1889vw;
  height: 1.1889vw;
  transition: opacity 0.3s;
}

.sub-btn-icon-hover {
  opacity: 0;
}

.sub-btn:hover .sub-btn-icon-default {
  opacity: 0;
}

.sub-btn:hover .sub-btn-icon-hover {
  opacity: 1;
}

.sub-btn span {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.3889vw;
  font-weight: 500;
  letter-spacing: 0.0833vw;
  border-left: 0.0694vw solid #fff;
}

/* アニメーションの動き */
.fade-up {
  opacity: 0;
  transform: translateY(2.0833vw);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

/* 画面に入った時に付与するクラス */
.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* お知らせ内容 1100で可変 */
.single-container {
  width: 100%;
  padding: 4.17vw 0;
}

.single-box {
  width: 69.44vw;
  margin: 0 auto;
}

.single-title {
  font-size: 2.22vw;
  font-weight: 600;
  margin-bottom: 2.08vw;
  line-height: 1.4;
}

.single-img {
  width: 100%;
  max-width: 41.67vw;
  margin-bottom: 2.78vw;
}

.single-img img {
  width: 100%;
  height: auto;
  display: block;
}

.single-content {
  font-size: 1.11vw;
  line-height: 1.8;
  color: #333;
}

.single-content img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 769px) {

  /* 全体 */
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  /* ヘッダー */
  #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
  }

  .header-container {
    width: 100%;
    height: 16vw;
    background-color: #fff;
    transition: background-color 0.3s ease;
  }

  #header.is-scroll .header-container {
    background-color: rgba(255, 255, 255, 0.9);
  }

  .header-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 4vw;
  }

  .header-left {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .header-logo {
    width: 34.6667vw;
  }

  .header-logo img {
    width: 100%;
  }

  .header-logo-text {
    color: #1e2973;
    font-size: 3.7333vw;
    font-weight: 600;
    letter-spacing: 0.2667vw;
    text-align: right;
  }

  .header-right {
    display: flex;
    align-items: center;
    height: 100%;
  }

  /* ハンバーガーボタン */
  .header-menu-btn {
    width: 16vw;
    height: 16vw;
    background-color: #1e2973;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6vw;
    cursor: pointer;
  }

  .header-menu-icon {
    position: relative;
    width: 8vw;
    height: 3.4667vw;
  }

  .header-menu-icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.5333vw;
    background-color: #fff;
    transition: 0.3s;
  }

  .header-menu-icon span:nth-child(1) {
    top: 0;
  }

  .header-menu-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .header-menu-icon span:nth-child(3) {
    bottom: 0;
  }

  .header-menu-btn.is-active .header-menu-icon span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }

  .header-menu-btn.is-active .header-menu-icon span:nth-child(2) {
    opacity: 0;
  }

  .header-menu-btn.is-active .header-menu-icon span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }

  .header-menu-text {
    color: #fff;
    font-size: 2.4vw;
    font-weight: 600;
    letter-spacing: 0.1867vw;
  }

  /* 全画面メニュー */
  .header-nav-overlay {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    background-color: rgba(50, 94, 175, 0.89);
    overflow-y: auto;
    padding: 24vw 5.3333vw 10.6667vw;
    transition: 0.4s;
    z-index: 9998;
  }

  .header-nav-overlay.is-active {
    right: 0;
  }

  .header-nav-list>li {
    margin-top: 6vw;
  }

  .header-nav-list>li:first-child {
    margin-top: 0;
  }

  .header-nav-link {
    width: 37.3333vw;
    display: block;
    color: #fff;
    font-size: 4.8vw;
    font-weight: 600;
    letter-spacing: 0.3467vw;
    flex-shrink: 0;
  }

  .header-nav-row {
    display: flex;
    align-items: flex-start;
  }

  .header-nav-line {
    display: none;
  }

  .header-nav-sub {
    margin-top: 0;
    padding-left: 0;
  }

  .header-nav-sub li a {
    display: block;
    color: #fff;
    font-size: 3.7333vw;
    font-weight: 600;
    letter-spacing: 0.2667vw;
    line-height: 8vw;
  }

  .header-nav-schedule {
    margin-top: 8vw;
  }

  .header-nav-schedule-scroll,
  .sub-footer-schedule-scroll {
    width: 88vw;
    height: auto;
    padding: 2.1333vw 1.6vw;
    background-color: #fff;
  }

  .header-nav-schedule-table,
  .sub-footer-schedule-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    border-collapse: collapse;
    background-color: #fff;
  }

  .header-nav-schedule-table th,
  .header-nav-schedule-table td,
  .sub-footer-schedule-table th,
  .sub-footer-schedule-table td {
    font-size: 3.4vw;
    font-weight: 600;
    letter-spacing: 0;
    padding: 2vw 0.2667vw;
    text-align: center;
    border-bottom: 0.2667vw solid #e7e4dd;
  }

  .header-nav-schedule-table th,
  .sub-footer-schedule-table th {
    color: #333;
  }

  .header-nav-schedule-table td,
  .sub-footer-schedule-table td {
    color: #f09819;
  }

  .header-nav-schedule-table th:first-child,
  .header-nav-schedule-table td:first-child,
  .sub-footer-schedule-table th:first-child,
  .sub-footer-schedule-table td:first-child {
    width: 28%;
    text-align: left;
    padding-left: 1.3333vw;
    color: #333;
  }

  .header-nav-schedule-table th:last-child,
  .sub-footer-schedule-table th:last-child {
    width: 16%;
  }

  .header-nav-schedule-table tr:last-child th,
  .header-nav-schedule-table tr:last-child td,
  .sub-footer-schedule-table tr:last-child th,
  .sub-footer-schedule-table tr:last-child td {
    border-bottom: none;
  }

  .header-nav-schedule-note {
    color: #fff;
    font-size: 3.4667vw;
    font-weight: 600;
    letter-spacing: 0.2133vw;
    margin-top: 1.6vw;
  }

  /* ============================================
     トップページ（モバイル）
  ============================================ */

  /* p1-a MV */
  .p1-a {
    position: relative;
    height: 185.3333vw;
    overflow: hidden;
    margin: 6.6667vw 5.3333vw 0;
  }

  .p1-a-slider {
    position: absolute;
    inset: 0;
  }

  .p1-a-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #ccc;
    opacity: 0;
    transition: opacity 1.5s ease;
  }

  .p1-a-item.is-active {
    opacity: 1;
  }

  .p1-a-item:nth-child(1) {
    background-image: url(../image/sp-img1.png);
  }

  .p1-a-item:nth-child(2) {
    background-image: url(../image/sp-img2.png);
  }

  .p1-a-item:nth-child(3) {
    background-image: url(../image/sp-img3.png);
  }

  .p1-a-container {
    position: absolute;
    left: 1.3333vw;
    right: 5.3333vw;
    bottom: 44.2667vw;
    display: flex;
    align-items: flex-end;
  }

  .p1-a-box {
    width: 100%;
  }

  .p1-a-en {
    color: #edd54a;
    font-size: 4.8vw;
    font-weight: 700;
    letter-spacing: 0.384vw;
    text-shadow: 0 1.0667vw 1.0667vw rgba(0, 0, 0, 0.25);
    margin-bottom: 2.1333vw;
    word-break: break-word;
  }

  .p1-a-sub {
    color: #fff;
    font-size: 4.8vw;
    font-weight: 700;
    letter-spacing: 0.32vw;
    text-shadow: 0 1.0667vw 1.0667vw rgba(0, 0, 0, 0.25);
    margin-bottom: 2.1333vw;
    word-break: break-word;
  }

  .p1-a-title {
    color: #fff;
    font-size: 7.4667vw;
    font-weight: 700;
    letter-spacing: 0.512vw;
    line-height: 1.5;
    text-shadow: 0 1.0667vw 1.0667vw rgba(0, 0, 0, 0.25);
    word-break: break-word;
  }

  .p1-a-title-sm {
    font-size: 6.4vw;
  }

  /* p1-b クイックナビ（レスポンシブ時は非表示） */
  .p1-b {
    display: none;
  }

  /* MV下 アクセス（レスポンシブ時のみ表示） */
  .p1-l .header-address {
    width: 89.3333vw;
    margin: 4.5333vw auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header-address-icon {
    width: 4.2667vw;
  }

  .header-address-list {
    margin-left: 2.1333vw;
  }

  .header-address-list li {
    font-size: 3.2vw;
    line-height: 5.6vw;
  }

  .p1-b-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.6667vw 0;
  }

  .p1-b-list li {
    position: relative;
    width: 48%;
    padding-bottom: 2.6667vw;
  }

  .p1-b-list li::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 2.6667vw;
    height: 2.6667vw;
    border-radius: 50%;
    background-color: #009fe8;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .p1-b-list li:hover::after {
    opacity: 1;
  }

  .p1-b-list li a {
    color: #1e2973;
    font-size: 3.2vw;
    font-weight: 600;
  }

  /* p1-c NEWS */
  .p1-c {
    margin-top: 10.6667vw;
  }

  .p1-c-container {
    padding: 7.6667vw 0 15.6667vw;
  }

  .p1-c-box {
    width: 89.3333vw;
    margin: 0 auto;
  }

  .p1-c-title {
    display: flex;
    align-items: center;
    color: #1e2973;
    font-size: 6.4vw;
    font-weight: 600;
    letter-spacing: 0.4vw;
    text-align: center;
    padding-bottom: 3.2vw;
    margin-bottom: 5.3333vw;
  }

  .p1-c-title::before,
  .p1-c-title::after {
    content: "";
    flex: 1;
    height: 0.2667vw;
    background-color: #1e2973;
    margin: 0 15.4667vw;
  }

  .p1-c-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.3333vw;
    padding: 3.2vw 0;
  }

  .p1-c-date {
    font-size: 3.7333vw;
  }

  .p1-c-text {
    font-size: 3.7333vw;
  }

  /* p1-d 歯周病について */
  .p1-d {
    padding-top: 13.3333vw;
  }

  .p1-d-container {
    padding: 13.3333vw 0;
  }

  .p1-d-box {
    margin-bottom: 8vw;
  }

  .p1-d-en {
    font-size: 12.8vw;
    letter-spacing: 0.8vw;
  }

  .p1-d-title {
    font-size: 5.6vw;
    margin-top: 1.6vw;
  }

  .p1-d-item {
    width: 89.3333vw;
    margin: 8vw auto 0;
  }

  .p1-d-card {
    flex-direction: column-reverse;
    padding: 6.4vw 5.3333vw 5.3333vw;
    gap: 0;
  }

  .p1-d-item-rev .p1-d-card {
    flex-direction: column;
  }

  .p1-d-num {
    text-align: center;
    position: static;
    font-size: 17.0667vw;
    letter-spacing: 1.3667vw;
    margin-bottom: 0;
  }

  .p1-d-text {
    padding-top: 0;
    width: 100%;
  }

  .p1-d-text-rev {
    order: 2;
  }

  .p1-d-card-title {
    font-size: 5.0667vw;
    letter-spacing: 0.4vw;
    line-height: 1.5;
    margin-bottom: 3.2vw;
  }

  .p1-d-card-body {
    font-size: 3.7333vw;
    letter-spacing: 0.2133vw;
    line-height: 6.4vw;
    margin-top: 3.2vw;
  }

  .p1-d-img {
    width: 100%;
    height: auto;
    margin-top: 0;
  }

  .p1-d-img img {
    height: auto;
  }

  /* p1-e こんなお悩みありませんか？ */
  .p1-e {
    margin-top: 8vw;
  }

  .p1-e-container {
    padding-top: 10.6667vw;
  }

  .p1-e-en {
    font-size: 13.3333vw;
  }

  .p1-e-title {
    font-size: 6.4vw;
    letter-spacing: 0.5333vw;
    margin-top: 1.3333vw;
  }

  .p1-e-box {
    background-image: url(../image/sp-back1.png);
    background-position: bottom;
    padding: 8.8vw 4% 53.3333vw;
  }

  .p1-e-img {
    height: 96vw;
    margin-top: 5.3333vw;
  }

  .p1-e-card {
    position: static;
    transform: none;
    width: 89.3333vw;
    margin: 0 auto;
    box-shadow: 5.3333vw 5.3333vw 0 #325eaf;
    padding: 1.3333vw 6.6667vw;
  }

  .p1-e-list li {
    font-size: 5.3333vw;
    letter-spacing: 0.2987vw;
    padding: 4vw 0 4vw 6.6667vw;
  }

  .p1-e-list li::before {
    width: 4.8vw;
    height: 4.8vw;
  }

  /* p1-f FEATURE タイトル */
  .p1-f {
    margin-top: 8vw;
  }

  .p1-f-en {
    font-size: 17.0667vw;
  }

  .p1-f-title {
    font-size: 6.4vw;
    letter-spacing: 0.5333vw;
    margin-top: 1.3333vw;
  }

  .p1-f-box {
    background-image: url(../image/sp-back2.png);
    background-size: 100% auto;
    background-position: bottom;
    padding-top: 5.3333vw;
    padding-bottom: 29.8667vw;
  }

  .p1-f-parallax {
    width: 100%;
    height: 106.6667vw;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
  }

  /* p1-g FEATURE 詳細 */
  .p1-g-container {
    width: 89.3333vw;
    margin: -12.8vw auto 0;
  }

  .p1-g-box {
    padding-bottom: 8vw;
  }

  .p1-g-num {
    font-size: 17.0667vw;
  }

  .p1-g-head {
    position: relative;
    text-align: center;
    padding-top: 12.8vw;
    padding-bottom: 4.8vw;
    border-bottom: 0.5333vw solid #325eaf;
  }

  .p1-g-head .p1-g-num {
    position: absolute;
    top: -2.6667vw;
    left: 50%;
    transform: translate(-50%, -33.3333%);
  }

  .p1-g-head .p1-g-card-title {
    margin-top: 0;
  }

  .p1-g-card-title {
    font-size: 6.4vw;
    letter-spacing: 0.4vw;
    margin-top: 2.6667vw;
  }

  .p1-g-card {
    flex-direction: column-reverse;
    gap: 5.3333vw;
    margin-top: 5.3333vw;
  }

  .p1-g-text {
    width: 100%;
  }

  .p1-g-lead {
    font-size: 3.7333vw;
    letter-spacing: 0.2133vw;
    line-height: 6.4vw;
  }

  .p1-g-check-title {
    font-size: 3.7333vw;
    margin-top: 4vw;
  }

  .p1-g-check-list {
    margin-top: 2.6667vw;
  }

  .p1-g-check-list li {
    font-size: 3.7333vw;
    line-height: 7.4667vw;
    padding-left: 5.3333vw;
  }

  .p1-g-check-list li::before {
    top: 2.1333vw;
    width: 3.2vw;
    height: 3.2vw;
  }

  .p1-g-img {
    width: 100%;
    height: 64vw;
  }

  .p1-g-img img {
    height: 64vw;
  }

  .p1-g-quiz {
    background-image: url(../image/part-back1.png);
    background-repeat: no-repeat;
    background-size: auto 77.0667vw;
    background-position: bottom center;
    padding-bottom: 23.2vw;
    margin-top: 0;
  }

  .p1-g-quiz-container {
    width: 89.3333vw;
  }

  .p1-g-quiz-box {
    padding: 4.5333vw 0 5.0667vw;
  }

  .p1-g-quiz-en {
    font-size: 6.9333vw;
    right: 50%;
    bottom: 3.7333vw;
    transform: translateX(50%);
  }

  .p1-g-quiz-text {
    font-size: 3.7333vw;
    line-height: 7.4667vw;
    padding: 5.3333vw 4vw 13.3333vw;
  }

  .p1-g-item2,
  .p1-g-item3 {
    background-color: transparent;
    margin-top: 0;
  }

  .p1-g-item2-container,
  .p1-g-item3-container {
    flex-direction: column;
    align-items: stretch;
  }

  .p1-g-item2-img,
  .p1-g-item3-img {
    width: 100%;
    height: auto;
    padding-top: 0;
  }

  .p1-g-item2-img img,
  .p1-g-item3-img img {
    height: 80vw;
  }

  .p1-g-item2-box,
  .p1-g-item3-box {
    width: 92%;
    padding: 6.6667vw 0 0;
    margin: 0 auto;
  }

  .p1-g-item2-box::after,
  .p1-g-item3-box::before {
    display: none;
  }

  .p1-g-item2-bg {
    width: 92%;
    height: 17.0667vw;
    background-color: #f2eee4;
    margin: 4.5333vw auto 0;
  }

  .p1-g-item3-bg {
    width: 92%;
    height: 17.0667vw;
    background-color: #325eaf;
    margin: 4.5333vw auto 0;
  }

  .p1-g-item2-line {
    width: 75.2vw;
    margin: 3.2vw auto 0;
  }

  .p1-g-item2-head {
    position: relative;
    text-align: center;
    padding-top: 8.5333vw;
  }

  .p1-g-item2-head .p1-g-num {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .p1-g-item2-head .p1-g-card-title {
    margin-top: 0;
  }

  .p1-g-item2-text {
    font-size: 3.7333vw;
    line-height: 7.4667vw;
    width: 100%;
    padding-bottom: 8vw;
    border-bottom: 0.5333vw solid #1E2973;
  }

  .p1-g-btn-wrap {
    padding: 10.6667vw 0;
  }

  .p1-g-btn {
    width: 89.3333vw;
    height: 20.2667vw;
    padding-left: 2.4vw;
    margin: 6.6667vw auto 0;
  }

  .p1-g-btn-icon {
    right: 0;
    bottom: 0;
    width: 6.4vw;
    height: 6.4vw;
  }

  .p1-g-btn span {
    font-size: 5.3333vw;
    letter-spacing: 0.32vw;
    border-left: 0.2667vw solid #fff;
  }

  .p1-g-item4 {
    background-size: 632.5333vw auto;
    background-position: center;
  }

  /* p1-h 治療の流れ */
  .p1-h {
    padding: 13.3333vw 0;
  }

  .p1-h-container {
    width: 89.3333vw;
  }

  .p1-h-en {
    font-size: 17.0667vw;
  }

  .p1-h-title {
    font-size: 6.4vw;
    letter-spacing: 0.5333vw;
    margin-top: 1.3333vw;
  }

  .p1-h-steps {
    width: 89.3333vw;
    margin: 6.6667vw auto 0;
  }

  .p1-h-steps-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.7333vw 7vw;
  }

  .p1-h-steps-list li:not(:first-child)::before {
    display: none;
  }

  .js-flow-step {
    width: 100%;
    height: 10.6667vw;
    font-size: 3.4667vw;
  }

  .p1-h-slider {
    width: 89.3333vw;
    margin: 6.6667vw auto 0;
  }

  .p1-h-track {
    padding-left: 0;
  }

  .p1-h-item {
    width: 100%;
    margin-right: 0;
  }

  .p1-h-item-img {
    height: 60vw;
  }

  .p1-h-item-content {
    position: relative;
  }

  .p1-h-item-num {
    left: 2.6667vw;
    top: -5.3333vw;
    width: 12.8vw;
    height: 12.8vw;
  }

  .p1-h-item-num span {
    font-size: 6.4vw;
  }

  .p1-h-item-head {
    background: rgba(0, 159, 232, 1);
    padding: 3.2vw 0;
  }

  .p1-h-item-title {
    font-size: 4.8vw;
    letter-spacing: 0.2667vw;
  }

  .p1-h-item-body {
    height: auto;
    background-color: rgba(242, 238, 228, 1);
    padding: 2.6667vw 4vw;
  }

  .p1-h-item-body p {
    font-size: 3.2vw;
    letter-spacing: 0.1867vw;
    line-height: 5.6vw;
  }

  .p1-h-arrow {
    top: 30vw;
    width: 8vw;
    height: 8vw;
  }

  .p1-h-arrow-prev {
    left: 1.3333vw;
  }

  .p1-h-arrow-next {
    right: 1.3333vw;
  }

  /* p1-i 院長のご挨拶 */
  .p1-i {
    padding: 13.3333vw 0;
  }

  .p1-i-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
  }

  .p1-i-box {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 29.3333vw;
    text-align: left;
  }

  .p1-i-photo-box {

    width: 92%;
    box-shadow: -11.4667vw 11.4667vw 0 #325eaf;
    margin-left: auto;
  }

  .p1-i-text-box {
    flex: 1;
    margin-top: 8vw;
  }

  .p1-i-head {
    text-align: center;
    margin-bottom: 38.9333vw;
  }

  .p1-i-en {
    font-size: 14.9333vw;
  }

  .p1-i-title {
    font-size: 6.4vw;
    letter-spacing: 0.5333vw;
    margin-top: 1.3333vw;
  }

  .p1-i-text-box>.p1-i-en,
  .p1-i-text-box>.p1-i-title {
    display: none;
  }

  .p1-i-img {
    position: static;
    width: 100%;
    height: auto;

  }

  .p1-i-img img {
    height: 100%;
  }

  .p1-i-img2 {
    width: 44vw;
    height: auto;
    top: 32vw;
    z-index: 1;
  }

  .p1-i-name {
    right: 0;
    bottom: -22.9333vw;
    width: 52.2667vw;
    height: 52.2667vw;
    background-color: #baf0ff;
    padding: 2.4vw;
    box-sizing: border-box;
  }

  .p1-i-name-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #009fe8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .p1-i-name-role {
    font-size: 5.8667vw;
  }

  .p1-i-name-text {
    font-size: 8vw;
    margin-top: 1.0667vw;
  }

  .p1-i-name-en {
    font-size: 4.8vw;
    margin-top: 1.0667vw;
  }

  .p1-i-content {
    width: 100%;
    padding-top: 6.6667vw;
  }

  .p1-i-text-box {
    width: 100%;
  }

  .p1-i-text {
    width: 92%;
    font-size: 3.7333vw;
    letter-spacing: 0.2133vw;
    line-height: 7.4667vw;
    margin: 0 auto;
  }

  .p1-i-btn {
    width: 89.3333vw;
    height: 20.2667vw;
    padding-left: 2.4vw;
    margin: 6.6667vw auto 0;
  }

  .p1-i-btn-icon {
    right: 0;
    bottom: 0;
    width: 6.4vw;
    height: 6.4vw;
  }

  .p1-i-btn span {
    font-size: 5.3333vw;
    letter-spacing: 0.32vw;
    border-left: 0.2667vw solid #fff;
  }

  /* p1-j ギャラリー */
  .p1-j {
    background-image: url(../image/sp-back3.png);
    padding: 64vw 0 14.9333vw;
    margin-top: -32vw;
  }

  .p1-j-list {
    animation-duration: 40s;
  }

  .p1-j-list li {
    width: 71.4667vw;
    height: 58.4vw;
    margin-right: 1.0667vw;
  }

  @keyframes p1-j-scroll {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-529.0667vw);
    }
  }

  .p1-j-bar {
    bottom: 8vw;
    height: 14.4vw;
  }

  .p1-j-bar-text {
    font-size: 3.7333vw;
  }

  /* p1-k よくあるご質問 */
  .p1-k {
    padding: 13.3333vw 0;
  }

  .p1-k-container {
    width: 89.3333vw;
  }

  .p1-k-en {
    font-size: 17.0667vw;
  }

  .p1-k-title {
    font-size: 6.4vw;
    letter-spacing: 0.5333vw;
    margin-top: 1.3333vw;
  }

  .p1-k-list {
    margin-top: 6.6667vw;
  }

  .p1-k-list>li {
    margin-top: 2.6667vw;
  }

  .p1-k-q {
    min-height: 16vw;
    padding: 0 10vw 0 0;
  }

  .p1-k-q-mark {
    width: 12.2667vw;
    height: 21.3333vw;
    font-size: 10.6667vw;
  }

  .p1-k-q-text {
    font-size: 4.8vw;
    list-style: 1.2;
    letter-spacing: 0.2133vw;
    padding-left: 3.2vw;
  }

  .p1-k-q-icon {
    right: 4vw;
    width: 4.2667vw;
    height: 4.2667vw;
  }

  .p1-k-q-icon::before {
    width: 4.2667vw;
  }

  .p1-k-q-icon::after {
    height: 4.2667vw;
  }

  .p1-k-a {
    height: auto;
    padding: 4vw 4vw 4vw 16vw;
  }

  .p1-k-a p {
    font-size: 4vw;
    letter-spacing: 0.2133vw;
    line-height: 6.4vw;
  }

  /* ============================================
     p2 歯周病について（モバイル）
  ============================================ */
  .p2-a {
    padding-top: 13.3333vw;
  }

  .p2-a-container {
    width: 89.3333vw;
    margin: 0 auto;
  }

  .p2-a-row {
    flex-direction: column-reverse;
    gap: 6.6667vw;
  }

  .p2-a-text {
    width: 100%;
  }

  .p2-a-text p {
    font-size: 3.7333vw;
    letter-spacing: 0.2987vw;
    line-height: 6.4vw;
  }

  .p2-a-text p+p {
    margin-top: 4vw;
  }

  .p2-a-img {
    width: 100%;
  }

  .p2-a-body {
    margin-top: 6.6667vw;
  }

  .p2-a-body p {
    font-size: 3.7333vw;
    letter-spacing: 0.2987vw;
    line-height: 6.4vw;
  }

  /* p2-b TROUBLE */
  .p2-b-container {
    padding: 10.6667vw 0 13.3333vw;
  }

  .p2-b-en {
    font-size: 13.3333vw;
    letter-spacing: 1.0667vw;
  }

  .p2-b-box {
    width: 89.3333vw;
    padding-bottom: 6.6667vw;
  }

  .p2-b-list-box {
    background-color: #fff;
    padding: 12.5333vw 5.5333vw;
  }

  .p2-b-head {
    padding: 2.6667vw 0;
    margin-top: -3.3333vw;
  }

  .p2-b-head p {
    font-size: 4vw;
    letter-spacing: 0.32vw;
  }

  .p2-b-list {
    width: 78.6667vw;
    margin-top: 5.3333vw;
    grid-template-columns: 1fr;
    row-gap: 4.2667vw;
    padding-left: 0;
  }

  .p2-b-list li {
    gap: 3.2vw;
    font-size: 3.7333vw;
    letter-spacing: 0.2987vw;
  }

  .p2-b-list li::before {
    width: 4.2667vw;
    height: 4.2667vw;
  }

  .p2-b-lead {
    width: 78.6667vw;
    margin-top: 5.3333vw;
    font-size: 3.7333vw;
    letter-spacing: 0.2987vw;
    line-height: 6.4vw;
    text-align: left;
  }

  /* p2-c もしかして歯周病... */
  .p2-c-container {
    width: 89.3333vw;
    margin: 0 auto;
  }

  .p2-c-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2vw;
    margin-top: 8vw;
  }

  .p2-c-item {
    height: 40vw;
    padding-top: 4vw;
  }

  .p2-c-img {
    width: 20vw;
  }

  .p2-c-text {
    font-size: 3.7333vw;
    letter-spacing: 0.2987vw;
    margin-top: 2.1333vw;
  }

  .p2-c-legend {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.6667vw;
    margin-top: 8vw;
  }

  .p2-c-legend-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 3.4667vw;
    letter-spacing: 0.2773vw;
    line-height: 6.4vw;
  }

  .p2-c-legend-label {
    position: relative;
    flex-shrink: 0;
  }

  .p2-c-legend-label::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1.3333vw;
    height: 5.0667vw;
    background-color: rgba(186, 240, 255, 0.4);
    z-index: -1;
  }

  .p2-c-legend-num {
    font-size: 4.2667vw;
  }

  /* p2-d メッセージ */
  .p2-d-container {
    padding: 8vw 5.3333vw 16vw;
  }

  .p2-d-head {
    gap: 2.6667vw;
    padding: 5.3333vw 0;
  }

  .p2-d-head-icon {
    width: 6.4vw;
  }

  .p2-d-title {
    font-size: 4.8vw;
    letter-spacing: 0.3733vw;
  }

  .p2-d-row {
    flex-direction: column-reverse;
    gap: 6.6667vw;
    margin-top: 4vw;
  }

  .p2-d-text {
    width: 100%;
  }

  .p2-d-text p {
    font-size: 3.7333vw;
    letter-spacing: 0.2987vw;
    line-height: 6.4vw;
  }

  .p2-d-text p+p {
    margin-top: 4vw;
  }

  .p2-d-img {
    width: 100%;
  }

  /* ============================================
     p3 歯周病の治療（モバイル）
  ============================================ */
  .p3-a {
    padding-top: 13.3333vw;
  }

  .p3-a-container {
    width: 89.3333vw;
    margin: 0 auto;
  }

  .p3-a-img {
    height: 22.7333vw;
  }

  .p3-b-container,
  .p3-c-container {
    width: 89.3333vw;
    margin: 0 auto;
  }

  .p3-b-row,
  .p3-c-row {
    flex-direction: column-reverse;
    gap: 6.6667vw;
  }

  .p3-b-row+.p3-b-row,
  .p3-c-row+.p3-c-row {
    margin-top: 13.3333vw;
  }

  .p3-b-row-rev,
  .p3-c-row-rev {
    flex-direction: column-reverse;
  }

  .p3-b-text,
  .p3-c-text {
    width: 100%;
  }

  .p3-b-text p,
  .p3-c-text p {
    font-size: 3.7333vw;
    letter-spacing: 0.2987vw;
    line-height: 6.4vw;
  }

  .p3-b-text p+p,
  .p3-c-text p+p {
    margin-top: 4vw;
  }

  .p3-b-img,
  .p3-c-img {
    width: 100%;
  }

  /* ============================================
     p4 歯周病の予防（モバイル）
  ============================================ */
  .p4-a,
  .p4-b,
  .p4-c {
    padding-top: 13.3333vw;
  }

  .p4-a-wrap,
  .p4-b-wrap,
  .p4-c-wrap {
    border: 0.5333vw solid #f4f1e8;
  }

  .p4-a-box,
  .p4-b-box,
  .p4-c-box {
    width: 89.3333vw;
    padding: 6.3333vw 5.3333vw;
  }

  .p4-a-badge,
  .p4-b-badge,
  .p4-c-badge {
    left: -2.6667vw;
    top: -4vw;
    width: 21.3333vw;
    height: 13.8667vw;
  }

  .p4-a-badge-label,
  .p4-b-badge-label,
  .p4-c-badge-label {
    font-size: 2.9333vw;
  }

  .p4-a-badge-num,
  .p4-b-badge-num,
  .p4-c-badge-num {
    font-size: 6.4vw;
  }

  .p4-a-row,
  .p4-b-row,
  .p4-c-row {
    flex-direction: column-reverse;
    gap: 6.6667vw;
    margin-top: 4vw;
  }

  .p4-a-text,
  .p4-b-text,
  .p4-c-text {
    width: 100%;
  }

  .p4-a-text p,
  .p4-b-text p,
  .p4-c-text p {
    font-size: 3.7333vw;
    letter-spacing: 0.2987vw;
    line-height: 6.4vw;
  }

  .p4-a-check-title {
    font-size: 4vw;
    margin-top: 5.3333vw;
  }

  .p4-a-check-list {
    margin-top: 2.6667vw;
  }

  .p4-a-check-list li {
    font-size: 3.7333vw;
    letter-spacing: 0.2987vw;
    line-height: 6.4vw;
    padding-left: 6.9333vw;
  }

  .p4-a-check-list li::before {
    top: 1vw;
    width: 4.8vw;
    height: 4.8vw;
  }

  .p4-a-lead {
    margin-top: 5.3333vw;
    font-size: 3.7333vw;
    letter-spacing: 0.2987vw;
    line-height: 6.4vw;
  }

  .p4-a-img,
  .p4-b-img,
  .p4-c-img {
    width: 100%;
  }

  .p4-a-body {
    margin-top: 8vw;
    font-size: 3.7333vw;
    letter-spacing: 0.2987vw;
    line-height: 6.4vw;
  }

  .p4-a-arrow,
  .p4-b-arrow {
    width: 39.2vw;
    margin: 0 auto;
  }

  /* ============================================
     p5 スタッフ紹介（モバイル）
  ============================================ */
  .p5-a {
    padding-top: 13.3333vw;
  }

  .p5-a-container {
    width: 89.3333vw;
    margin: 0 auto;
  }

  .p5-a-row {
    flex-direction: column-reverse;
    gap: 6.6667vw;
  }

  .p5-a-info {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
  }

  .p5-a-text {
    width: 100%;
    margin-top: 5.3333vw;
  }

  .p5-a-text p {
    font-size: 3.7333vw;
    letter-spacing: 0.2987vw;
    line-height: 6.4vw;
  }

  .p5-a-img {
    width: 100%;
  }

  .p5-a-name {
    gap: 2.6667vw;
    margin-top: 0;
  }

  .p5-a-name-badge {
    width: 16vw;
    height: 16vw;
  }

  .p5-a-name-badge p {
    font-size: 4vw;
    letter-spacing: 0.32vw;
  }

  .p5-a-name-text {
    font-size: 6.4vw;
    letter-spacing: 0.5333vw;
  }

  .p5-a-name-en {
    font-size: 3.4667vw;
    letter-spacing: 0.2773vw;
  }

  .p5-a-career {
    flex-direction: column;
    gap: 6.6667vw;
    margin-top: 13.3333vw;
  }

  .p5-a-career-img {
    width: 100%;
  }

  .p5-a-career-box {
    width: 100%;
    padding-left: 0;
  }

  .p5-a-career-title {
    font-size: 5.3333vw;
    letter-spacing: 0.4267vw;
  }

  .p5-a-career-line {
    width: 100%;
    height: 0.2667vw;
    margin-top: 2vw;
  }

  .p5-a-career-table {
    margin-top: 4vw;
  }

  .p5-a-career-table th,
  .p5-a-career-table td {
    font-size: 3.7333vw;
    letter-spacing: 0.2987vw;
    line-height: 8vw;
  }

  .p5-a-career-table th {
    vertical-align: top;
    padding-right: 4vw;
  }

  .p5-b-list {
    gap: 4vw;
    margin-top: 8vw;
  }

  .p5-b-item {
    width: 42.6667vw;
  }

  .p5-b-img {
    height: 39.4667vw;
  }

  .p5-b-name {
    font-size: 4vw;
    letter-spacing: 0.32vw;
    margin-top: 1.6vw;
  }

  /* ============================================
     p6 よくある質問（モバイル）
  ============================================ */
  .p6-a {
    padding: 13.3333vw 0 16vw;
  }

  .p6-a-list {
    width: 89.3333vw;
    margin: 0 auto;
  }

  .p6-a-list li {
    margin-top: 9.3333vw;
  }

  .p6-a-list li:first-child {
    margin-top: 0;
  }

  .p6-a-q {
    align-items: center;
    gap: 4vw;
    padding: 4vw 3.2vw 2.6667vw 4.8vw;
  }

  .p6-a-q-mark {
    font-size: 4.2667vw;
    letter-spacing: 0.3413vw;
  }

  .p6-a-q-text {
    font-size: 3.7333vw;
    letter-spacing: 0.2987vw;
  }

  .p6-a-a {
    gap: 4vw;
    padding: 4vw 4.8vw 6.6667vw;
  }

  .p6-a-a-mark {
    font-size: 4.2667vw;
    letter-spacing: 0.3413vw;
  }

  .p6-a-a-text {
    font-size: 3.7333vw;
    letter-spacing: 0.2987vw;
    line-height: 6.4vw;
  }

  /* ============================================
     p7 医院案内（モバイル）
  ============================================ */
  .p7-a {
    padding-top: 13.3333vw;
  }

  .p7-a-container {
    width: 89.3333vw;
    margin: 0 auto;
    flex-direction: column-reverse;
    gap: 8vw;
    margin-top: 5.3333vw;
  }

  .p7-a-left {
    width: 100%;
  }

  .p7-a-logo {
    width: 70.4vw;
  }

  .p7-a-name {
    font-size: 5.3333vw;
    letter-spacing: 0.4267vw;
    margin-top: -1.6vw;
  }

  .p7-a-address {
    font-size: 3.7333vw;
    letter-spacing: 0.2987vw;
    line-height: 6.4vw;
    margin-top: 4vw;
  }

  .p7-a-btns {
    flex-direction: column;
    gap: 5.3333vw;
    margin-top: 5.3333vw;
  }

  .p7-a-schedule {
    width: 100%;
    overflow-x: auto;
    margin-top: 4vw;
  }

  .p7-a-img {
    width: 100%;
    height: 66.6667vw;
  }

  /* p7-b アクセス */
  .p7-b {
    padding-bottom: 16vw;
  }

  .p7-b-container {
    width: 89.3333vw;
    margin: 5.3333vw auto 0;
    flex-direction: column;
    gap: 6.6667vw;
  }

  .p7-b-map {
    width: 100%;
    height: 66.6667vw;
  }

  .p7-b-access {
    gap: 2.6667vw;
  }

  .p7-b-access-icon {
    width: 4.8vw;
    margin-top: 0.8vw;
  }

  .p7-b-access-list li {
    font-size: 3.2vw;
    line-height: 5.6vw;
  }

  /* p7-c 院内紹介 */
  .p7-c {
    padding-bottom: 16vw;
  }

  .p7-c-container {
    width: 89.3333vw;
    margin: 5.3333vw auto 0;
  }

  .p7-c-main {
    width: 100%;
  }

  .p7-c-main-img {
    height: 66.6667vw;
  }

  .p7-c-thumbs {
    width: 100%;
    gap: 1.6vw;
    margin: 1.6vw auto 0;
  }

  .p7-c-thumb {
    width: 28vw;
    height: 18.6667vw;
  }

  .p7-c-arrow {
    width: 8vw;
    height: 8vw;
  }

  .p7-c-arrow-prev {
    left: 1.3333vw;
  }

  .p7-c-arrow-next {
    right: 1.3333vw;
  }

  /* ============================================
     p8 お問い合わせ（モバイル）
  ============================================ */
  .p8-a {
    padding-top: 13.3333vw;
  }

  .p8-a-container {
    width: 89.3333vw;
    margin: 5.3333vw auto 0;
  }

  .p8-a-lead {
    font-size: 3.7333vw;
    letter-spacing: 0.2987vw;
    line-height: 6.4vw;
  }

  .p8-a-tel {
    gap: 2.6667vw;
    margin-top: 5.3333vw;
  }

  .p8-a-tel-icon {
    width: 6.4vw;
  }

  .p8-a-tel-num {
    font-size: 5.8667vw;
    letter-spacing: 0.4693vw;
  }

  .p8-b {
    padding-top: 13.3333vw;
    padding-bottom: 16vw;
  }

  .p8-b-container {
    width: 89.3333vw;
    margin: 0 auto;
  }

  .p8-b-table {
    width: 100%;
  }

  .p8-b-table th,
  .p8-b-table td {
    display: block;
    width: 100%;
    padding: 1.3333vw 0;
  }

  .p8-b-table th {
    font-size: 4vw;
    padding-top: 4vw;
  }

  .p8-b-table .required {
    font-size: 3.2vw;
    margin-left: 1.6vw;
  }

  .p8-b-table input[type="text"],
  .p8-b-table input[type="tel"],
  .p8-b-table input[type="email"],
  .p8-b-table textarea {
    padding: 3.2vw;
    font-size: 3.7333vw;
  }

  .p8-b-table input[type="text"],
  .p8-b-table input[type="tel"],
  .p8-b-table input[type="email"] {
    height: 12vw;
  }

  .p8-b-table textarea {
    height: 42.6667vw;
  }

  .p8-b-btn {
    width: 89.3333vw;
    height: 20.2667vw;
    padding-left: 2.4vw;
    margin: 6.6667vw auto 0;
  }

  .p8-b-btn-icon {
    right: 0;
    bottom: 0;
    width: 6.4vw;
    height: 6.4vw;
  }

  .p8-b-btn span:nth-of-type(1) {
    font-size: 5.3333vw;
    letter-spacing: 0.32vw;
    border-left: 0.2667vw solid #fff;
  }

  .p8-b-container input[type="submit"] {
    width: 58.6667vw;
    height: 13.3333vw;
    margin-top: 8vw;
    font-size: 3.7333vw;
    letter-spacing: 0.2133vw;
  }

  /* ============================================
     フッター（モバイル）
  ============================================ */
  .sub-footer-container {
    padding: 10.6667vw 0;
  }

  .sub-footer-box {
    width: 89.3333vw;
    margin: 0 auto;
  }

  .sub-footer-logo img {
    width: 64vw;
  }

  .sub-footer-logo-text {
    font-size: 5.6vw;
    letter-spacing: 0.4vw;
    margin-top: -1vw;
  }

  .sub-footer-info {
    flex-direction: column;
    gap: 13.3333vw;
    margin-top: 6.6667vw;
  }

  .sub-footer-left {
    width: 100%;
  }

  .sub-footer-address {
    font-size: 3.7333vw;
    letter-spacing: 0.2987vw;
    text-align: center;
  }

  .sub-footer-tel {
    margin-top: 5.3333vw;
    padding: 4vw;
  }

  .sub-footer-tel-text {
    font-size: 3.7333vw;
  }

  .sub-footer-tel-icon {
    width: 8vw;
  }

  .sub-footer-tel-num {
    font-size: 6.4vw;
  }

  .sub-footer-web {
    margin-top: 4.6667vw;
    padding: 4vw;
  }

  .sub-footer-web-sub {
    font-size: 3.7333vw;
  }

  .sub-footer-web-text {
    font-size: 6.4vw;
  }

  .sub-footer-right {
    width: 100%;
    margin-top: 6.6667vw;
  }

  .sub-footer-schedule-note {
    font-size: 3.2vw;
    margin-top: 2.1333vw;
  }

  .sub-footer-access {
    justify-content: center;
    margin-top: 5.3333vw;
  }

  .sub-footer-access-icon {
    width: 4.2667vw;
  }

  .sub-footer-access-list {
    margin-left: 2.1333vw;
  }

  .sub-footer-access-list li {
    font-size: 3.2vw;
    line-height: 5.6vw;
  }

  /* オフィシャルバナー */
  .sub-banner-container {
    padding: 8vw 0;
  }

  .sub-banner-box {
    width: 89.3333vw;
    height: auto;
    background-color: #fff;
    padding: 2.4vw;
    border: 0.2667vw solid #333;
  }

  .sub-banner-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }

  .sub-banner-img {
    width: 100%;
    height: 38.9333vw;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
  }

  .sub-banner-text {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.6vw 2.1333vw;
  }

  .sub-banner-logo {
    width: 80vw;
  }

  .sub-banner-title {
    font-size: 6.4vw;
  }

  .sub-banner-en {
    font-size: 8vw;
  }

  .sub-banner-btn {
    width: 79.4667vw;
    font-size: 5.8667vw;
    padding: 1.6vw 0;
    margin-top: 1.3333vw;
  }

  /* サイトマップ */
  .sub-sitemap-container {
    padding: 8vw 0;
  }

  .sub-sitemap-list {
    width: 89.3333vw;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8vw 10vw;
  }

  .sub-sitemap-list li a {
    font-size: 5.3333vw;
  }

  /* MAP */
  .sub-map-container {
    height: 96vw;
  }

  /* コピーライト */
  .sub-copyright-container {
    padding: 7.4667vw 0;
  }

  .sub-copyright-text {
    font-size: 4.2667vw;
  }

  /* ページトップ */
  .sub-pagetop {
    display: none;
  }

  footer {
    display: block;
    padding-bottom: 18.6667vw;
  }

  /* フッター固定ナビ（TEL / WEB予約 / アクセス / ページトップ） */
  .sub-fixed-nav {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 18.6667vw;
    display: flex;
    z-index: 9997;
  }

  .sub-fixed-nav-item {
    width: 30.4vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8vw;
    color: #fff;
  }

  .sub-fixed-nav-item-tel {
    background-color: #325eaf;
  }

  .sub-fixed-nav-item-web {
    width: 29.0667vw;
    background-color: #4477d7;
  }

  .sub-fixed-nav-item-access {
    width: 21.8667vw;
    background-color: #4ec7ff;
  }

  .sub-fixed-nav-icon {
    width: auto;
    height: 8vw;
  }

  .sub-fixed-nav-text {
    color: #fff;
    font-size: 4.2667vw;
    font-weight: 700;
    letter-spacing: 0.3413vw;
  }

  .sub-fixed-pagetop {
    width: 18.6667vw;
    height: 100%;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .sub-fixed-pagetop img {
    display: block;
    width: 100%;
    height: 100%;
  }

  /* ==============================
     下層ページ 共通パーツ
  ============================== */

  /* メインビュー */
  .sub-mv {
    width: 100%;
    height: 66.6667vw;
    overflow: hidden;
  }

  .sub-mv-container {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
  }

  .sub-mv-box {
    text-align: center;
  }

  .sub-mv-title {
    font-size: 6.4vw;
    letter-spacing: 0.4vw;
    white-space: nowrap;
  }

  .sub-mv-en {
    font-size: 4.8vw;
    letter-spacing: 0.4vw;
    margin-top: 1.6vw;
  }

  /* セクション見出し */
  .sub-title-container {
    width: 100%;
    height: auto;
  }

  .sub-title {
    font-size: 4.8vw;
    letter-spacing: 0.3733vw;
    padding: 2.6667vw 0;
  }

  .sub-title-deco {
    width: 88vw;
  }

  .sub-title-line {
    width: 24vw;
    height: 0.2667vw;
  }

  .sub-title-mark {
    width: 26.6667vw;
    height: 2.1333vw;
  }

  /* ボタン（トップページと共通デザイン） */
  .sub-btn {
    width: 89.3333vw;
    height: 20.2667vw;
    padding-left: 2.4vw;
    margin: 10.6667vw auto 0;
  }

  .sub-btn-icon {
    right: 0;
    bottom: 0;
    width: 6.4vw;
    height: 6.4vw;
  }

  .sub-btn span {
    font-size: 5.3333vw;
    letter-spacing: 0.32vw;
    border-left: 0.2667vw solid #fff;
  }

  /* お知らせ内容 1100で可変 */
  .single-container {
    width: 100%;
    padding: 10.6667vw 0;
  }

  .single-box {
    width: 94%;
    margin: 0 auto;
  }

  .single-title {
    font-size: 5.3333vw;
    font-weight: 600;
    margin-bottom: 5.3333vw;
    line-height: 1.4;
  }

  .single-img {
    width: 100%;
    max-width: 106.6667vw;
    margin-bottom: 8vw;
  }

  .single-img img {
    width: 100%;
    height: auto;
    display: block;
  }

  .single-content {
    font-size: 4.2667vw;
    line-height: 1.8;
    color: #333;
  }

  .single-content img {
    max-width: 100%;
    height: auto;
  }
}