@charset "UTF-8";

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: min(100px, 9.09vw);
}

body {
  margin: 0;
}

h1,
h2,
h3,
h4,
p,
span,
a,
li,
th,
td {
  font-family: "Shippori Mincho B1", serif;
  color: #637c7a;
  line-height: 1.6;
}

.en {
  font-family: "GFS Didot", 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-header,
.sp,
.sp-footer {
  display: none;
}

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

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

/* ヘッダー */
#header {
  width: 100%;
  height: min(80px, 5.56vw);
  position: absolute;
  top: min(20px, 1.39vw);
  left: 0;
  z-index: 1000;
}
.header-container {
  width: 100%;
  height: 100%;
  padding-left: min(20px, 1.39vw);
  padding-right: min(20px, 1.39vw);
}

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

.header-logo {
  width: min(318px, 22.08vw);
}

.header-adres {
  display: flex;
  align-items: center;
  gap: min(10px, 0.69vw);
}

.header-adres img {
  width: min(20px, 1.39vw);
  height: auto;
}

.header-adres p {
  font-size: min(15px, 1.04vw);
  color: #fff;
}

.header-link {
  height: 100%;
  display: flex;
  align-items: center;
  gap: min(10px, 0.69vw);
  margin-right: min(10px, 0.69vw);
}

.header-link a {
  width: min(180px, 12.5vw);
  height: min(60px, 4.17vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: min(3px, 0.21vw);
  border: 1px solid #fff;
}

.header-link a:last-child {
  position: relative;
  background-color: #38948d;
}

.header-link a:last-child::after {
  content: "";
  position: absolute;
  right: min(8px, 0.56vw);
  bottom: min(8px, 0.56vw);
  width: min(12px, 0.83vw);
  height: min(3px, 0.21vw);
  background-image: url(../image/part8.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
}

.header-link a span {
  font-size: min(13px, 0.9vw);
  color: #fff;
  line-height: 1.2;
}

.header-link a p {
  font-size: min(20px, 1.39vw);
  color: #fff;
  display: flex;
  align-items: center;
  gap: min(10px, 0.69vw);
  line-height: 1.2;
}

.header-link a p img {
  width: min(16px, 1.11vw);
  height: auto;
}

/* トップ */
.main-v {
  position: relative;
  margin-top: min(20px, 1.39vw);
  width: 100%;
  height: calc(640 / 1440 * 100vw);
  overflow: hidden;
}

.main-v-slider {
  position: absolute;
  inset: 0;
  margin: 0 min(20px, 1.39vw);
}

.slide-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-img.is-active {
  opacity: 1;
}

.slide1 {
  background-image: url(../image/top-img1.png);
}

.slide2 {
  background-image: url(../image/top-img2.png);
}

.slide3 {
  background-image: url(../image/top-img3.png);
}

.main-v-container {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0 min(20px, 1.39vw);
}

.main-v-title {
  position: absolute;
  left: min(40px, 2.78vw);
  bottom: min(87px, 6.04vw);
  z-index: 10;
}

.main-v-title h1 {
  font-size: min(48px, 3.33vw);
  font-weight: 500;
  color: #fff;
}

.main-v-box {
  position: absolute;
  right: min(40px, 2.78vw);
  bottom: min(87px, 6.04vw);
  z-index: 10;
  display: flex;
  align-items: center;
}

.main-v-item {
  width: min(180px, 12.5vw);
  height: min(180px, 12.5vw);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
}

.main-v-item:first-child {
  margin-right: min(-10px, -0.69vw);
}

.main-v-item:nth-of-type(2) {
  margin-right: min(-10px, -0.69vw);
}

.main-v-item p {
  font-size: min(20px, 1.39vw);
  color: #fff;
}

/* p1-a */
.p1-a-container {
  padding: min(106px, 7.36vw) 0 min(80px, 5.56vw);
}

.p1-a-box {
  width: min(1120px, 77.78vw);
  margin: 0 auto;
}

.p1-a-title {
  display: flex;
  align-items: baseline;
  gap: min(10px, 0.69vw);
  padding-bottom: min(10px, 0.69vw);
}

.p1-a-title h2 {
  font-size: min(48px, 3.33vw);
  font-weight: 500;
  color: #79bcb6;
  line-height: 1;
}

.p1-a-title p {
  font-size: min(20px, 1.39vw);
  line-height: 1;
}

.p1-a-news {
  padding: min(40px, 2.78vw) min(80px, 5.56vw);
  border-top: min(1px, 0.07vw) solid #637c7a;
  border-bottom: min(1px, 0.07vw) solid #637c7a;
}

.p1-a-item {
  height: min(141px, 9.79vw);
  overflow: auto;
}

.p1-a-item::-webkit-scrollbar {
  width: min(3px, 0.21vw);
}

.p1-a-item::-webkit-scrollbar-thumb {
  background: #79bcb6;
}

.p1-a-item a {
  display: flex;
  align-items: center;
  gap: min(20px, 1.39vw);
  padding: min(15px, 1.04vw) 0;
}

.p1-a-item a:first-child {
  padding-top: 0;
}

.p1-a-item a:last-child {
  padding-bottom: 0;
}

.news-date {
  font-size: min(15px, 1.04vw);
  color: #637c7a;
}

.news-title {
  font-size: min(15px, 1.04vw);
  color: #637c7a;
}

/* p1-b */
.p1-b-container {
  background-image: url(../image/top-back1.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
}
.p1-b-box {
  width: min(1238px, 85.97vw);
  position: relative;
  display: flex;
  gap: min(210px, 14.58vw);
  margin: 0 auto;
}

.p1-b-title {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  gap: min(20px, 1.39vw);
  margin-top: min(45px, 3.13vw);
}

.p1-b-title h2 {
  writing-mode: vertical-rl;
  font-size: min(128px, 8.89vw);
  font-weight: 500;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: min(1px, 0.07vw) #7fa6a3;
}

.p1-b-title p {
  writing-mode: vertical-rl;
  font-size: min(32px, 2.22vw);
  line-height: 1.2;
  color: #fff;
  background: #79bcb6;
  padding: min(20px, 1.39vw) min(10px, 0.69vw);
}

.p1-b-text {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: row-reverse;
  gap: min(60px, 4.17vw);
  padding: min(60px, 4.17vw) min(120px, 8.33vw);
  border: min(1px, 0.07vw) solid #637c7a;
  margin-top: min(100px, 6.94vw);
}

.p1-b-text p {
  writing-mode: vertical-rl;
  font-size: min(32px, 2.22vw);
  line-height: 1.2;
  letter-spacing: 0.15em;
  color: #637c7a;
}

.p1-b-img {
  width: min(270px, 18.75vw);
  position: absolute;
  top: 0;
  left: min(246px, 17.08vw);
  z-index: 10;
}

.p1-b-img2 {
  width: min(525px, 36.46vw);
  position: absolute;
  bottom: max(-42px, -2.92vw);
  left: max(-77px, -5.35vw);
  z-index: 2;
}

.p1-b-img3 {
  width: min(533px, 37.01vw);
  position: absolute;
  top: 0;
  right: max(-101px, -7.01vw);
  z-index: 10;
}

.p1-b-img4 {
  width: min(404px, 28.06vw);
  position: absolute;
  bottom: max(-50px, -3.47vw);
  right: max(-72px, -5vw);
  z-index: 2;
}

/* p1-c */
.p1-c-container {
  padding: min(130px, 9.03vw) 0 min(80px, 5.56vw);
}

.p1-c-title {
  text-align: center;
  background-image: url(../image/top-back2.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  padding: min(40px, 2.78vw) 0;
  border-top: min(1px, 0.07vw) solid #79bcb6;
  border-bottom: min(1px, 0.07vw) solid #79bcb6;
}

.p1-c-title h2 {
  font-size: min(128px, 8.89vw);
  font-weight: 500;
  line-height: 1;
}

.p1-c-title h2 span {
  font-size: min(128px, 8.89vw);
  color: #79bcb6;
  line-height: 1;
}

.p1-c-title p {
  font-size: min(36px, 2.5vw);
  line-height: 1.2;
}

.p1-c-box {
  width: min(1280px, 88.89vw);
  display: flex;
  justify-content: space-between;
  margin: min(56px, 3.89vw) auto 0;
}

.p1-c-item {
  width: min(640px, 44.44vw);
}

.p1-c-number {
  text-align: center;
}

.p1-c-number img {
  width: min(152px, 10.56vw);
  height: auto;
  margin: 0 auto max(-15px, -1.04vw);
}

.p1-c-number span {
  font-size: min(100px, 6.94vw);
  color: #79bcb6;
  line-height: 1;
}

.p1-c-img {
  width: min(600px, 41.67vw);
  margin-top: min(50px, 3.47vw);
}

.p1-c-h3 {
  text-align: center;
  padding: min(30px, 2.08vw) 0 min(20px, 1.39vw);
  border-bottom: min(1px, 0.07vw) solid #637c7a;
}

.p1-c-h3 h3 {
  font-size: min(36px, 2.5vw);
  font-weight: 500;
}

.p1-c-text {
  margin-top: min(20px, 1.39vw);
}

.p1-c-text p {
  font-size: min(15px, 1.04vw);
  line-height: 2;
}

.p1-c-box2 {
  width: min(1280px, 88.89vw);
  display: flex;
  justify-content: space-between;
  margin: min(30px, 2.08vw) auto 0;
}

.p1-c-item2 {
  width: min(400px, 27.78vw);
}

.p1-c-item2:first-child {
  margin-top: min(60px, 4.17vw);
}

.p1-c-item2:last-child {
  margin-top: max(-60px, -4.17vw);
}

.p1-c-p {
  text-align: center;
  background-color: #79bcb6;
  padding: min(10px, 0.69vw) 0;
}

.p1-c-p p {
  font-size: min(20px, 1.39vw);
  color: #fff;
}

.p1-c-box3 {
  display: flex;
  margin-top: min(60px, 4.17vw);
}

.p1-c-img3 {
  width: calc(640 / 1440 * 100vw);
  box-shadow: min(40px, 2.78vw) min(40px, 2.78vw) 0 #79bcb6;
  height: fit-content;
}

.p1-c-box3 .p1-c-item {
  margin: 0 auto;
}

.p1-c-box4 {
  width: min(1280px, 88.89vw);
  display: flex;
  justify-content: space-between;
  margin: min(80px, 5.56vw) auto 0;
}

.p1-c-img4 {
  width: min(620px, 43.06vw);
}

.p1-c-box5 {
  background-image: url(../image/top-back3.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: min(80px, 5.56vw) 0;
  margin-top: min(60px, 4.17vw);
}

.p1-c-box5 .p1-c-item {
  width: min(1120px, 77.78vw);
  margin: 0 auto;
}

.p1-c-box5 .p1-c-text {
  text-align: center;
}

.p1-c-box5 .p1-c-number span,
.p1-c-box5 .p1-c-h3 h3,
.p1-c-box5 .p1-c-text p {
  color: #fff;
}

.p1-c-box5 .p1-c-h3 {
  border-bottom: min(1px, 0.07vw) solid #fff;
}

.p1-c-img-box {
  display: flex;
  justify-content: center;
  gap: min(40px, 2.78vw);
  margin-top: min(40px, 2.78vw);
}

.p1-c-img5 {
  width: min(400px, 27.78vw);
}

.p1-c-box6 {
  background-image: url(../image/top-back6.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  overflow: hidden;
  padding-top: min(80px, 5.56vw);
  margin-top: min(100px, 6.94vw);
}

.p1-c-img-box2 {
  width: min(1520px, 105.56vw);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: min(40px, 2.78vw);
}

.p1-c-img6 {
  width: min(480px, 33.33vw);
}

.p1-c-img6:first-child,
.p1-c-img6:last-child {
  margin-top: min(60px, 4.17vw);
}

/* p1-d */
.p1-d-container {
  padding-bottom: min(80px, 5.56vw);
}

.p1-d-title {
  text-align: center;
  background-image: url(../image/top-back4.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  padding: calc(105 / 1440 * 100vw) 0;
}

.p1-d-title h2 {
  font-size: min(128px, 8.89vw);
  font-weight: 500;
  line-height: 1;
}

.p1-d-title h2 span {
  font-size: min(128px, 8.89vw);
  color: #79bcb6;
  line-height: 1;
}

.p1-d-title p {
  position: relative;
  width: fit-content;
  font-size: min(36px, 2.5vw);
  line-height: 1.2;
  margin: min(20px, 1.39vw) auto 0;
}

.p1-d-title p::before,
.p1-d-title p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: min(80px, 5.56vw);
  height: min(1px, 0.07vw);
  background: #000;
}

.p1-d-title p::before {
  right: calc(100% + min(20px, 1.39vw));
  transform: translateY(-50%);
}

.p1-d-title p::after {
  left: calc(100% + min(20px, 1.39vw));
  transform: translateY(-50%);
}

.p1-d-box {
  display: flex;
  justify-content: center;
  gap: min(20px, 1.39vw);
}

.p1-d-item {
  width: min(460px, 31.94vw);
}

.p1-d-item:nth-of-type(1) .p1-d-link {
  background-color: #79bcb6;
}

.p1-d-item:nth-of-type(2) .p1-d-link {
  background-color: #7cbc79;
}

.p1-d-item:nth-of-type(3) .p1-d-link {
  background-color: #e3b434;
}

.p1-d-link {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(20px, 1.39vw);
  padding: min(20px, 1.39vw) 0 min(80px, 5.56vw);
}

.p1-d-link h3 {
  font-size: min(36px, 2.5vw);
  font-weight: 500;
  color: #fff;
}

.p1-d-link img {
  width: min(30px, 2.08vw);
  height: auto;
}

.p1-d-img {
  width: min(400px, 27.78vw);
  margin: max(-60px, -4.17vw) auto 0;
}

.p1-d-box2 {
  width: min(1280px, 88.89vw);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: min(30px, 2.08vw) min(26px, 1.81vw); /* 縦横のgapを可変に修正 */
  margin: min(60px, 4.17vw) auto 0;
}

.p1-d-item2 a {
  width: min(300px, 20.83vw);
  height: min(247px, 17.15vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(20px, 1.39vw);
  position: relative;
  background-color: #eff4f4;
  padding-top: min(30px, 2.08vw);
  border-radius: 0 min(30px, 2.22vw) 0 0;
}

.p1-d-title2 {
  text-align: center;
}

.p1-d-title2 h4 {
  font-size: min(24px, 1.67vw);
  font-weight: 500;
  line-height: 1.2;
}

.p1-d-title2 span {
  font-size: min(20px, 1.39vw);
  color: #79bcb6;
  line-height: 1;
}

.p1-d-img2 {
  width: min(80px, 5.56vw);
}

.p1-d-img3 {
  width: min(30px, 2.08vw);
  position: absolute;
  right: min(10px, 0.69vw);
  bottom: min(10px, 0.69vw);
  z-index: 10;
}

/* p1-e */
.p1-e-container {
  background-image: url(../image/top-back5.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: min(80px, 5.56vw) 0;
}

.p1-e-box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: min(90px, 6.25vw);
}

.p1-e-title h2 {
  writing-mode: vertical-rl;
  font-size: min(128px, 8.89vw);
  font-weight: 500;
  line-height: 1;
  color: #79bcb6;
}

.p1-e-item {
  width: min(480px, 33.33vw);
}

.p1-e-text p {
  font-size: min(15px, 1.04vw);
  line-height: 2;
}

.p1-e-img {
  width: 100%;
  margin-top: min(40px, 2.78vw);
}

.p1-e-img-box {
  width: min(480px, 33.33vw);
  position: relative;
}

.p1-e-neme-box {
  width: min(200px, 13.89vw);
  height: min(200px, 13.89vw);
  position: absolute;
  left: max(-40px, -2.78vw);
  bottom: max(-40px, -2.78vw);
  z-index: 10;
  display: flex;
  padding: min(10px, 0.69vw);
  border: min(1px, 0.07vw) solid #79bcb6;
  border-radius: 50%;
}

.p1-e-neme {
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #79bcb6;
  padding-top: min(36px, 2.5vw);
  border-radius: 50%;
}

.p1-e-neme p {
  font-size: min(18px, 1.25vw);
  color: #fff;
  line-height: 1.2;
}

.p1-e-neme h3 {
  font-size: min(32px, 2.22vw);
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  margin: min(10px, 0.69vw) 0;
}

.p1-e-neme span {
  font-size: min(16px, 1.11vw);
  color: #fff;
  line-height: 1.2;
}

/* 医院紹介 */
/* p2-a */
.p2-a-container {
  padding-top: min(60px, 4.17vw);
}

.p2-a-box {
  width: min(1280px, 88.89vw);
  display: flex;
  justify-content: space-between;
  margin: min(60px, 4.17vw) auto 0;
}

.p2-a-box.reverse {
  flex-direction: row-reverse;
}

.p2-a-item {
  width: min(640px, 44.44vw);
}

.p2-a-title {
  text-align: center;
  padding-bottom: min(20px, 1.39vw);
}

.p2-a-title h3 {
  font-size: min(36px, 2.5vw);
  font-weight: 500;
}

.p2-a-text {
  padding-top: min(20px, 1.39vw);
  border-top: min(1px, 0.07vw) solid #79bcb6;
}

.p2-a-text p {
  font-size: min(15px, 1.04vw);
  line-height: 2;
}

.p1-a-img {
  width: min(600px, 41.67vw);
  box-shadow: min(20px, 1.39vw) min(20px, 1.39vw) 0 #79bcb6;
  height: fit-content;
}

.reverse .p1-a-img {
  box-shadow: -20px 20px 0 #637c7a;
}

/* p2-b */
.p2-b-container {
  padding-top: min(90px, 6.25vw);
}

.p2-b-text {
  text-align: center;
  margin: min(40px, 2.78vw) auto 0;
}

.p2-b-text p {
  font-size: min(15px, 1.04vw);
  line-height: 2;
}

.p2-b-box {
  width: min(1280px, 88.89vw);
  display: flex;
  justify-content: space-between;
  margin: min(40px, 2.78vw) auto 0;
}

.p2-b-item {
  width: min(300px, 20.83vw);
}

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

.p2-b-title {
  text-align: center;
  background-color: #e3b434;
  padding: min(10px, 0.69vw) 0;
}

.p2-b-title span {
  font-size: min(20px, 1.39vw);
  color: #fff;
}

/* p2-c */
.p2-c-container {
  padding-top: min(70px, 4.86vw);
}

.p2-c-box {
  width: min(1280px, 88.89vw);
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: space-between;
  row-gap: min(40px, 2.78vw);
  margin: min(40px, 2.78vw) auto 0;
}

.p2-c-item {
  width: min(400px, 27.78vw);
}

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

.p2-c-title {
  width: 100%;
  height: min(170px, 11.81vw);
  background-color: #eff4f4;
  padding: min(15px, 1.04vw) min(20px, 1.39vw) 0;
}

.p2-c-title span {
  display: block;
  text-align: center;
  font-size: min(20px, 1.39vw);
  padding-bottom: min(10px, 0.69vw);
}

.p2-c-title p {
  font-size: min(15px, 1.04vw);
  line-height: 2;
  padding-top: min(10px, 0.69vw);
  border-top: min(1px, 0.07vw) solid #637c7a;
}

/* p2-d */
.p2-d-container {
  padding-top: min(80px, 5.56vw);
}

.p2-d-box-box {
  background-color: #eff4f4;
  padding: min(60px, 4.17vw) 0;
  margin-top: min(40px, 2.78vw);
}

.p2-d-box {
  width: min(1280px, 88.89vw);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.p2-d-map {
  width: min(680px, 47.22vw);
  height: min(400px, 27.78vw);
}

.p2-d-map iframe {
  width: 100%;
  height: 100%;
}

.p2-d-item {
  width: min(560px, 38.89vw);
}

.p2-d-p {
  display: flex;
  align-items: center;
  gap: min(10px, 0.69vw);
}

.p2-d-p:first-child {
  padding-bottom: min(20px, 1.39vw);
}

.p2-d-p img {
  width: min(20px, 1.39vw);
  height: auto;
}

.p2-d-p p {
  font-size: min(18px, 1.25vw);
  line-height: 1.2;
}

.p2-d .footer-table {
  width: 100%;
  background-color: #fff;
  padding: min(10px, 0.69vw) min(20px, 1.39vw) min(30px, 2.08vw);
  border-top: min(1px, 0.07vw) solid #637c7a;
  border-bottom: min(1px, 0.07vw) solid #637c7a;
  margin-top: min(40px, 2.78vw);
}

/* 院長紹介 */
/* p3-a */
.p3-a-container {
  padding-top: min(60px, 4.17vw);
}

.p3-a-box-box {
  background-image: url(../image/top-back5.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: min(60px, 4.17vw) 0;
  margin-top: min(40px, 2.78vw);
}

.p3-a-box {
  width: min(1100px, 76.39vw);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.p3-a-item {
  width: min(560px, 38.89vw);
}

.p3-a-title h3 {
  font-size: min(20px, 1.39vw);
  font-weight: 500;
  line-height: 2;
}

.p3-a-title h3 span {
  font-size: min(28px, 1.94vw);
  line-height: 2;
}

.p3-a-text {
  margin-top: min(20px, 1.39vw);
}

.p3-a-text p {
  font-size: min(15px, 1.04vw);
  line-height: 2;
}

.p3-a-neme {
  display: flex;
  align-items: baseline;
  gap: min(10px, 0.69vw);
  margin-top: min(20px, 1.39vw);
}

.p3-a-neme p:first-child {
  font-size: min(18px, 1.25vw);
  line-height: 1.2;
}

.p3-a-neme p:nth-of-type(2) {
  font-size: min(32px, 2.22vw);
  line-height: 1.2;
}

.p3-a-neme span {
  font-size: min(16px, 1.11vw);
  line-height: 1.2;
}

.p3-a-img {
  width: min(480px, 33.33vw);
}

.p3-a-box2 {
  width: min(1280px, 88.89vw);
  background-color: #eff4f4;
  padding: min(40px, 2.78vw) min(80px, 5.56vw);
  margin: min(40px, 2.78vw) auto 0;
}

.p3-a-title2 {
  text-align: center;
}

.p3-a-title2 h3 {
  position: relative;
  width: fit-content;
  font-size: min(36px, 2.5vw);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 auto;
}

.p3-a-title2 h3::before,
.p3-a-title2 h3::after {
  content: "";
  position: absolute;
  top: 50%;
  width: min(80px, 5.56vw);
  height: min(1px, 0.07vw);
  background-color: #000;
  transform: translateY(-50%);
}

.p3-a-title2 h3::before {
  right: calc(100% + min(20px, 1.39vw));
}

.p3-a-title2 h3::after {
  left: calc(100% + min(20px, 1.39vw));
}

.p3-a-list {
  margin-top: min(25px, 1.74vw);
}

.p3-a-list li {
  font-size: min(15px, 1.04vw);
  line-height: 2;
  display: flex;
  align-items: center;
  gap: min(20px, 1.39vw);
  padding: min(10px, 0.69vw) 0;
}

.p3-a-list li span {
  font-size: min(15px, 1.04vw);
  line-height: 2;
}

/* p3-b */
.p3-b-container {
  padding-top: min(100px, 6.94vw);
}

.p3-b-box {
  width: min(1120px, 77.78vw);
  margin: min(40px, 2.78vw) auto 0;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: min(24px, 1.67vw);
  color: #333;
}

.faq-item {
  width: 100%;
}

.faq-toggle {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #f1f5f5;
  border: none;
  padding: 0 min(24px, 1.67vw) 0 0;
  cursor: pointer;
  text-align: left;
}

.faq-icon-q {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #6fb9b5;
  color: #ffffff;
  font-size: min(28px, 1.94vw);
  width: min(54px, 3.75vw);
  height: min(54px, 3.75vw);
  margin-right: min(16px, 1.11vw);
  flex-shrink: 0;
}

.faq-title {
  font-size: min(18px, 1.25vw);
  line-height: 1.5;
  flex-grow: 1;
}

.faq-arrow {
  position: relative;
  width: min(16px, 1.11vw);
  height: min(16px, 1.11vw);
  flex-shrink: 0;
}

.faq-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #555555;
  transform: translateY(-50%);
}

.faq-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: #555555;
  transform: translateX(-50%);
}

.faq-item.active .faq-arrow::after {
  display: none;
}

.faq-content {
  display: none;
  border-left: min(1px, 0.07vw) solid #637c7a;
  border-right: min(1px, 0.07vw) solid #637c7a;
  border-bottom: min(1px, 0.07vw) solid #637c7a;
  background-color: #ffffff;
}

.faq-item.active .faq-content {
  display: block;
}

.faq-content-inner {
  padding: min(24px, 1.67vw);
}

.faq-content-inner p {
  margin: 0;
  font-size: min(15px, 1.04vw);
  line-height: 2;
}

/* p3-c */
.p3-c-container {
  padding: min(100px, 6.94vw) 0 min(60px, 4.17vw);
}

.p3-c-text {
  text-align: center;
  margin-top: min(40px, 2.78vw);
}

.p3-c-text p {
  font-size: min(15px, 1.04vw);
  line-height: 2;
}

/* 診療案内-1 */
/* p4-a */
.p4-a-container {
  padding-top: min(60px, 4.17vw);
}

.p4-a-box {
  width: min(1280px, 88.89vw);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: min(40px, 2.78vw) auto 0;
}

.p4-a-item {
  width: min(640px, 44.44vw);
}

.p4-a-title {
  padding-bottom: min(20px, 1.39vw);
  border-bottom: min(1px, 0.07vw) solid #637c7a;
}

.p4-a-title h3 {
  font-size: min(32px, 2.22vw);
  font-weight: 500;
}

.p4-a-text {
  margin-top: min(20px, 1.39vw);
}

.p4-a-text p {
  font-size: min(15px, 1.04vw);
  line-height: 2;
}

.p4-a-img {
  width: min(600px, 41.67vw);
}

.p4-a-box2 {
  width: min(1280px, 88.89vw);
  margin: min(40px, 2.78vw) auto 0;
}

.p4-a-table {
  width: 100%;
}

.p4-a-table table {
  width: 100%;
  border-collapse: collapse;
}

.p4-a-table th {
  background: #79bcb6;
  color: #fff;
  font-size: min(18px, 1.25vw);
  font-weight: 500;
  text-align: center;
  padding: min(10px, 0.69vw);
  border: 1px solid #d2e1de;
}

.p4-a-table td {
  vertical-align: top;
  padding: min(28px, 1.94vw);
  border: 1px solid #637c7a;
}

.p4-a-table td:first-child {
  width: min(340px, 23.61vw);
  text-align: center;
}

.p4-a-table td:first-child .en {
  display: block;
  font-size: min(24px, 1.67vw);
  line-height: 1;
}

.p4-a-table td:first-child p {
  font-size: min(14px, 0.97vw);
  margin-top: min(10px, 0.69vw);
}

.p4-a-table td:first-child img {
  width: min(200px, 13.89vw);
  margin: min(20px, 1.39vw) auto 0;
}

.p4-a-table td:nth-child(2),
.p4-a-table td:nth-child(3) {
  font-size: min(15px, 1.04vw);
  line-height: 2;
}

.p4-a-table td:nth-child(3) span {
  font-size: min(15px, 1.04vw);
  color: #79bcb6;
}

/* p4-b */
.p4-b-container {
  padding-top: min(100px, 6.94vw);
}

.p4-b-p {
  text-align: center;
  margin: min(40px, 2.78vw) auto;
}

.p4-b-p p {
  font-size: min(15px, 1.04vw);
  line-height: 2;
}

.p4-b-box {
  background-color: #eff4f4;
  padding: min(50px, 3.47vw) 0;
}

.p4-b-item {
  width: min(1120px, 77.78vw);
  margin: min(40px, 2.78vw) auto 0;
}

.p4-b-item:first-child {
  margin-top: 0;
}

.p4-b-title {
  display: flex;
  align-items: center;
  gap: min(10px, 0.69vw);
  padding-bottom: min(10px, 0.69vw);
  border-bottom: min(1px, 0.07vw) solid #637c7a;
}

.p4-b-title img {
  width: min(20px, 1.39vw);
}

.p4-b-title h4 {
  font-size: min(24px, 1.67vw);
  font-weight: 500;
}

.p4-b-text {
  margin-top: min(20px, 1.39vw);
}

.p4-b-text p {
  font-size: min(15px, 1.04vw);
  line-height: 2;
}

.p4-b-list ul {
  width: min(540px, 37.5vw);
  margin-top: min(10px, 0.69vw);
}

.p4-b-list ul li {
  display: flex;
  align-items: center;
  gap: min(10px, 0.69vw);
  padding: min(20px, 1.39vw) 0;
  border-bottom: 1px solid #637c7a;
}

.p4-b-list ul li span {
  font-size: min(16px, 1.11vw);
  line-height: 1.2;
}

.p4-b-list ul li img {
  width: min(20px, 1.39vw);
  height: auto;
}

.p4-b-box2 {
  width: min(1280px, 88.89vw);
  margin: min(40px, 2.78vw) auto 0;
}

.p4-b-table {
  width: 100%;
}

.p4-b-table table {
  width: 100%;
  border-collapse: collapse;
}

.p4-b-table th {
  background: #79bcb6;
  color: #fff;
  font-size: min(18px, 1.25vw);
  font-weight: 500;
  text-align: center;
  padding: min(10px, 0.69vw);
  border: 1px solid #d2e1de;
}

.p4-b-table td {
  padding: min(20px, 1.39vw) min(30px, 2.08vw);
  vertical-align: top;
  border: 1px solid #637c7a;
}

.p4-b-table td:first-child {
  width: min(360px, 25vw);
  text-align: center;
}

.p4-b-table td:first-child h4 {
  font-size: min(18px, 1.25vw);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: min(20px, 1.39vw);
}

.p4-b-table td:first-child img {
  width: min(200px, 13.89vw);
  margin: 0 auto;
}

.p4-b-table td:last-child {
  font-size: min(15px, 1.04vw);
  line-height: 2;
}

.p4-b-box3 {
  margin-top: min(40px, 2.78vw);
}

.p4-b-item3 {
  width: min(1120px, 77.78vw);
  display: flex;
  justify-content: space-between;
  margin: min(40px, 2.78vw) auto 0;
}

.p4-b-item3:first-child {
  margin-top: 0;
}

.p4-b-item3 .p4-b-item {
  width: min(780px, 54.17vw);
  margin: min(40px, 2.78vw) 0 0;
}

.p4-b-img3 {
  width: min(320px, 22.22vw);
}

/* p4-c */
.p4-c-container {
  padding-top: min(100px, 6.94vw);
}

/* p4-d */
.p4-d-container {
  padding-top: min(100px, 6.94vw);
}

.p4-d-box {
  width: min(1120px, 77.78vw);
  margin: min(40px, 2.78vw) auto 0;
}

.p4-d-table {
  width: 100%;
}

.p4-d-table table {
  width: 100%;
  border-collapse: collapse;
}

.p4-d-table th {
  width: min(320px, 22.22vw);
  background: #79bcb6;
  color: #fff;
  font-size: min(18px, 1.25vw);
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  padding: min(20px, 1.39vw);
  border-bottom: 1px solid #8ea7a4;
}

.p4-d-table td {
  background: #eff4f4;
  font-size: min(15px, 1.04vw);
  line-height: 1.6;
  padding: min(20px, 1.39vw) min(80px, 5.56vw) min(20px, 1.39vw)
    min(20px, 1.39vw);
  border-bottom: 1px solid #8ea7a4;
}

/* p4-e */
.p4-e-container {
  padding-top: min(100px, 6.94vw);
}

.p4-e-p {
  margin: min(20px, 1.39vw) auto;
}

.p4-e-box {
  background-image: url(../image/p4-back1.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: min(60px, 4.17vw) 0;
}

.p4-e-box2.p4-e-box {
  background-image: url(../image/p4-back2.png);
}

.p4-e-box2 .p4-e-title .en {
  color: #637c7a;
}

.p4-e-list {
  width: min(1280px, 88.89vw);
  background-color: #fff;
  padding: min(40px, 2.78vw) min(80px, 5.56vw);
  margin: 0 auto;
}

.p4-e-title {
  text-align: center;
}

.p4-e-title .en {
  display: block;
  font-size: min(48px, 3.33vw);
  font-weight: 500;
  line-height: 1;
  color: #79bcb6;
}

.p4-e-title h3 {
  font-size: min(24px, 1.67vw);
  font-weight: 500;
  margin-top: min(20px, 1.39vw);
}

.p4-e-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: min(40px, 2.78vw);
  margin-top: min(20px, 1.39vw);
}

.p4-e-list li {
  display: flex;
  align-items: center;
  gap: min(12px, 0.83vw);
  padding: min(24px, 1.67vw) 0;
  border-bottom: 1px solid #7f9592;
}

.p4-e-list li img {
  width: min(20px, 1.39vw);
  flex-shrink: 0;
}

.p4-e-list li span {
  font-size: min(16px, 1.11vw);
  line-height: 1.2;
}

/* p4-f */
.p4-f-container {
  padding: min(100px, 6.94vw) 0 min(40px, 2.78vw);
}

.p4-f-p {
  width: min(1120px, 77.78vw);
  margin: min(40px, 2.78vw) auto;
}

.p4-f-p2.p4-f-p {
  margin-top: min(20px, 1.39vw);
}

.p4-f-p p {
  font-size: min(15px, 1.04vw);
  line-height: 2;
}

.p4-f-title {
  text-align: center;
  margin: min(40px, 2.78vw) auto;
}

.p4-f-title h4 {
  position: relative;
  font-size: min(24px, 1.67vw);
  font-weight: 500;
  line-height: 1.2;
  display: inline-block;
}

.p4-f-title h4::before,
.p4-f-title h4::after {
  content: "";
  position: absolute;
  top: 50%;
  width: min(80px, 5.56vw);
  height: min(2px, 0.14vw);
  background: #637c7a;
}

.p4-f-title h4::before {
  right: calc(100% + min(20px, 1.39vw));
}

.p4-f-title h4::after {
  left: calc(100% + min(20px, 1.39vw));
}

.p4-f-box {
  width: min(1120px, 77.78vw);
  padding: min(40px, 2.78vw) 0;
  border: 1px solid #637c7a;
  margin: min(40px, 2.78vw) auto 0;
}

.p4-f-text {
  text-align: center;
}

.p4-f-text p {
  font-size: min(15px, 1.04vw);
  line-height: 2;
}

.p4-f-link a {
  width: min(240px, 16.67vw);
  font-size: min(18px, 1.25vw);
  color: #fff;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: min(10px, 0.69vw);
  background-color: #38948d;
  padding: min(10px, 0.69vw) 0;
  margin: min(40px, 2.78vw) auto 0;
}

.p4-f-link a img {
  width: max(min(12px, 0.83vw), 6px);
  height: auto;
}

/* 診療案内-2 */
/* p5-a */
.p5-a-container {
  padding-top: min(60px, 4.17vw);
}

.p5-a-p {
  margin-top: min(20px, 1.39vw);
}

.p5-a-box {
  margin-top: min(40px, 2.78vw);
}

.p5-a-list ul {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  gap: min(20px, 1.39vw) min(40px, 2.78vw);
}

.p5-a-list ul li {
  width: min(540px, 37.5vw);
  display: flex;
  align-items: center;
  gap: min(10px, 0.69vw);
  padding-bottom: min(10px, 0.69vw);
  border-bottom: 1px solid #637c7a;
}

.p5-a-list ul li img {
  width: min(20px, 1.39vw);
  height: auto;
}

.p5-a-list ul li span {
  font-size: min(15px, 1.04vw);
  line-height: 2;
}

.p5-a-box2 {
  width: min(1280px, 88.89vw);
  margin: 0 auto;
}

.p5-a-item2 {
  width: 100%;
  padding: min(40px, 2.78vw) min(80px, 5.56vw);
  border: 1px solid #637c7a;
  margin-top: min(40px, 2.78vw);
}

.p5-a-title2 {
  display: flex;
  align-items: center;
  gap: min(10px, 0.69vw);
  padding-bottom: min(10px, 0.69vw);
  border-bottom: min(1px, 0.07vw) solid #637c7a;
}

.p5-a-title2 img {
  width: min(20px, 1.39vw);
}

.p5-a-title2 h4 {
  font-size: min(24px, 1.67vw);
  font-weight: 500;
}

.p5-a-text2 {
  margin-top: min(20px, 1.39vw);
}

.p5-a-text2 p {
  font-size: min(15px, 1.04vw);
  line-height: 2;
}

.p5-a-text2 span {
  font-size: min(24px, 1.67vw);
}

.p5-a-item2 .p4-d-table {
  margin-top: min(20px, 1.39vw);
}

.p5-a-box3 {
  width: min(1120px, 77.78vw);
  margin: min(40px, 2.78vw) auto 0;
}

.p5-a-item3 {
  display: flex;
  align-items: center;
  padding: min(20px, 1.39vw) 0;
  border-top: 1px solid #637c7a;
}

.p5-a-item3:last-child {
  border-bottom: 1px solid #637c7a;
}

.p5-a-title3 {
  display: flex;
  align-items: baseline;
  gap: min(10px, 0.69vw);
  padding-right: min(45px, 3.13vw);
  border-right: 1px solid #637c7a;
}

.p5-a-title3 span.en {
  font-size: min(32px, 2.22vw);
  color: #79bcb6;
  line-height: 1;
}

.p5-a-title3 .p5-a-number {
  font-size: min(48px, 3.33vw);
  color: #79bcb6;
  line-height: 1;
}

.p5-a-text3 {
  width: min(800px, 55.56vw);
  margin-left: min(45px, 3.13vw);
}

.p5-a-text3 p {
  font-size: min(20px, 1.39vw);
  line-height: 2;
}

/* p5-b */
.p5-b-container {
  padding-top: min(60px, 4.17vw);
}

.p5-b-box {
  text-align: center;
  margin: min(40px, 2.78vw) auto;
}

.p5-b-box h3 {
  font-size: min(32px, 2.22vw);
  font-weight: 500;
  color: #79bcb6;
}

.p5-a-text3 .p5-b-p {
  font-size: min(15px, 1.04vw);
}

.p5-b .p4-b-p {
  width: min(1120px, 77.78vw);
}

/* p5-c */
.p5-c-container {
  padding: min(60px, 4.17vw) 0;
}

.p5-c .p4-a-title {
  border-bottom: none;
}

.p5-c-list ul li {
  display: flex;
  align-items: center;
  gap: min(10px, 0.69vw);
  padding: min(10px, 0.69vw) 0;
  border-bottom: 1px solid #637c7a;
}

.p5-c-list ul li img {
  width: min(20px, 1.39vw);
  height: auto;
}

.p5-c-list ul li span {
  font-size: min(15px, 1.04vw);
  line-height: 2;
}

.p5-c-box {
  background-color: #eff4f4;
  padding: min(60px, 4.17vw) 0;
  margin-top: min(40px, 2.78vw);
}

.p5-c-item {
  width: min(1120px, 77.78vw);
  display: flex;
  align-items: center;
  gap: min(40px, 2.78vw);
  margin: 0 auto;
}

.p5-c-img {
  width: min(320px, 22.22vw);
}

.p5-c-text {
  width: min(760px, 52.78vw);
}

.p5-c-text p {
  font-size: min(15px, 1.04vw);
  line-height: 2;
}

.p5-c-text .p5-c-p {
  margin-top: min(20px, 1.39vw);
}

.p5-c-list2 ul {
  margin-top: min(10px, 0.69vw);
}

.p5-c-list2 ul li {
  display: flex;
  align-items: center;
  gap: min(5px, 0.35vw);
  padding-top: min(10px, 0.69vw);
}

.p5-c-list2 ul li img {
  width: min(15px, 1.04vw);
  height: auto;
}

.p5-c-list2 ul li span {
  font-size: min(15px, 1.04vw);
  line-height: 2;
}

/* 料金表 */
/* p6-a */
.p6-a-container {
  padding: min(60px, 4.17vw) 0;
}

.p6-a-box {
  width: min(1120px, 77.78vw);
  margin: min(40px, 2.78vw) auto 0;
}

.p6-a-table {
  width: 100%;
}

.p6-a-table table {
  width: 100%;
  border-collapse: collapse;
}

.p6-a-table tr {
  background: #79bcb6;
}

.p6-a-table tr {
  border-bottom: 1px solid #637c7a;
}

.p6-a-table td {
  text-align: left;
  width: min(800px, 55.56vw);
  background: #79bcb6;
  padding: min(20px, 1.39vw) min(40px, 2.78vw);
}

.p6-a-table td .p6-a-p {
  font-size: min(15px, 1.04vw);
  color: #637c7a;
}

.p6-a-table td:last-child {
  width: min(320px, 22.22vw);
  text-align: right;
  white-space: nowrap;
  font-size: min(18px, 1.25vw);
  line-height: 1.2;
  background-color: #eff4f4;
}

.p6-a-table h4 {
  font-size: min(18px, 1.25vw);
  font-weight: 500;
  color: #fff;
}

.p6-a-table p {
  font-size: min(15px, 1.04vw);
  color: #fff;
}

/* 下層共通 */
.sub-v-container {
  margin: min(20px, 1.39vw) min(20px, 1.39vw) 0;
}

.sub-v-box {
  position: relative;
}

.sub-v-title {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.sub-v-title h1 {
  font-size: min(46px, 3.19vw);
  font-weight: 500;
  color: #fff;
}

.sub-v-title span {
  font-size: min(32px, 2.22vw);
  color: #fff;
}

.h2-title {
  width: min(1280px, 88.89vw);
  text-align: center;
  position: relative;
  background-color: #79bcb6;
  padding: min(20px, 1.39vw) 0;
  margin: 0 auto;
}

.h2-title h2 {
  font-size: min(36px, 2.5vw);
  font-weight: 500;
  color: #fff;
}

.h2-img,
.h2-img2 {
  width: min(50px, 3.47vw);
  position: absolute;
  z-index: 10;
}

.h2-img {
  top: min(10px, 0.69vw);
  left: min(10px, 0.69vw);
}

.h2-img2 {
  right: min(10px, 0.69vw);
  bottom: min(10px, 0.69vw);
}

.h3-title {
  width: min(1280px, 88.89vw);
  text-align: center;
  background-color: #b3bebd;
  padding: min(15px, 1.04vw) 0 min(10px, 0.69vw);
  margin: min(60px, 4.17vw) auto 0;
}

.h3-title h3 {
  font-size: min(28px, 1.94vw);
  font-weight: 500;
  color: #fff;
  padding-bottom: min(10px, 0.69vw);
  border-bottom: min(2px, 0.14vw) solid #fff;
}

/* フッター */
.footer-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(80px, 5.56vw);
  padding: min(60px, 4.17vw) 0;
}

.footer-item {
  width: min(396px, 27.5vw);
}

.footer-logo {
  width: 100%;
}

.footer-adres {
  display: flex;
  align-items: center;
  gap: min(10px, 0.69vw);
  margin: min(40px, 2.78vw) 0;
}

.footer-adres img {
  width: min(20px, 1.39vw);
  height: auto;
}

.footer-adres p {
  font-size: min(18px, 1.25vw);
  line-height: 1.2;
}

.footer-box .header-link a {
  border: min(1px, 0.07vw) solid #637c7a;
}

.footer-box .header-link a:last-child {
  border: none;
}

.footer-box .header-link a:first-child span {
  color: #637c7a;
}

.footer-box .header-link a:first-child p {
  color: #637c7a;
}

.footer-table {
  width: min(560px, 38.89vw);
  padding: min(10px, 0.69vw) min(20px, 1.39vw) min(30px, 2.08vw);
  border-top: min(1px, 0.07vw) solid #637c7a;
  border-bottom: min(1px, 0.07vw) solid #637c7a;
}

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

.footer-table th,
.footer-table td {
  text-align: center;
  padding: min(11px, 0.76vw) 0;
  border-bottom: min(1px, 0.07vw) solid #d2d2d2;
  color: #637c7a;
  font-size: min(18px, 1.25vw);
  font-weight: 400;
}

.footer-table th:first-child,
.footer-table td:first-child {
  text-align: left;
  width: min(140px, 9.72vw);
}

.footer-table th {
  font-weight: 500;
}

.footer-table td {
  font-size: min(20px, 1.39vw);
  line-height: 1;
}

.footer-table td:not(:first-child) {
  font-size: min(22px, 1.53vw);
  line-height: 1;
}

.footer-map {
  width: 100%;
  height: min(480px, 33.33vw);
  position: relative;
  overflow: hidden;
}

.footer-map a {
  width: min(200px, 13.89vw);
  height: min(42px, 2.92vw);
  position: absolute;
  top: min(20px, 1.39vw);
  left: min(20px, 1.39vw);
  z-index: 10;
}

.footer-map iframe {
  width: 100%;
  height: min(950px, 65.97vw);
  transform: translateY(max(-23%, -20vw));
}

.footer-nav {
  background-color: #79bcb6;
  padding: min(60px, 4.17vw) 0;
}

.footer-nav h3 {
  width: min(960px, 66.67vw);
  text-align: center;
  font-size: min(48px, 3.33vw);
  font-weight: 500;
  color: #fff;
  line-height: 1;
  padding: min(20px, 1.39vw) 0;
  border-bottom: min(1px, 0.07vw) solid #fff;
  margin: 0 auto;
}

.footer-nav nav {
  width: min(960px, 66.67vw);
  margin: min(40px, 2.78vw) auto 0;
}

.footer-nav nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: min(40px, 2.78vw);
}

.footer-nav nav ul li a {
  font-size: min(16px, 1.11vw);
  color: #fff;
  line-height: 1;
}

.copy-right {
  text-align: center;
  padding: min(30px, 2.08vw) 0;
}

.copy-right p {
  font-size: min(14px, 0.97vw);
  line-height: 1.2;
}

/* ナビゲーション */
.nav {
  width: min(1280px, 88.89vw);
  position: sticky;
  top: 0;
  z-index: 999;
  margin: max(-47px, -3.26vw) auto 0;
}

.nav.is-fixed {
  width: 100vw;
  max-width: none;
  position: fixed;
  top: 0;
  left: 0;
  transform: none;
  z-index: 999;
  margin-top: 0;
}

.nav-container {
  background-color: #79bcb6;
  background-image:
    url(../image/part4.png), url(../image/part5.png), url(../image/part6.png),
    url(../image/part7.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left, left, right, right;
}

.nav-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(45px, 3.13vw);
}

.nav-box > nav > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(100px, 6.94vw);
}

.nav.is-fixed .nav-box > nav > ul {
  gap: min(30px, 2.08vw);
}

.nav-box > nav > ul > li > a {
  font-size: min(14px, 0.97vw);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(5px, 0.35vw);
  padding: min(15px, 1.04vw) 0 min(30px, 2.08vw);
}

.nav-box > nav > ul > li > a > span {
  font-size: min(16px, 1.11vw);
  color: #fff;
}

.has-mega-menu {
  position: relative;
}

.has-mega-menu::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: min(15px, 1.04vw);
  transform: translateX(-50%);
  width: min(2px, 0.14vw);
  height: min(10px, 0.69vw);
  background-color: #fff;
}

.mega-menu {
  position: absolute;
  top: 92%;
  left: 50%;
  transform: translateX(-50%);
  width: min(380px, 26.39vw);
  padding: min(20px, 1.39vw) min(30px, 2.08vw);
  background: #469a94;
  display: flex;
  justify-content: space-between;
  gap: min(20px, 1.39vw);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 100;
}

.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-menu-col h4 {
  width: min(104px, 7.22vw);
  height: min(26px, 1.81vw);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: min(999px, 69.38vw);
  font-size: min(16px, 1.11vw);
  font-weight: 500;
  color: #38948d;
  margin-bottom: min(15px, 1.04vw);
}

.mega-menu-col ul {
  display: flex;
  flex-direction: column;
  gap: min(12px, 0.83vw);
}

.mega-menu-col ul li a {
  position: relative;
  display: inline-block;
  padding-left: min(14px, 0.97vw);
  color: #fff;
  font-size: min(16px, 1.11vw);
}

.mega-menu-col ul li a::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: min(10px, 0.69vw);
}

.nav-link {
  display: none;
}

.nav.is-fixed .nav-link {
  display: flex;
  align-items: center;
  gap: min(40px, 2.78vw);
}

/* お知らせ内容 1100で可変 */
.single-container {
  width: 100%;
  padding: min(60px, 5.45vw) 0;
}

.single-box {
  width: min(1000px, 90.91vw);
  margin: 0 auto;
}

.single-title {
  font-size: min(32px, 2.91vw);
  font-weight: 600;
  margin-bottom: min(30px, 2.73vw);
  line-height: 1.4;
}

.single-img {
  width: 100%;
  max-width: min(600px, 54.55vw);
  margin-bottom: min(40px, 3.64vw);
}

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

.single-content {
  font-size: min(16px, 1.45vw);
  line-height: 1.8;
  color: #333;
}

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

@media screen and (max-width: 767px) {
  /* 全体 */
  #header,
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  /* ヘッダー */
  .sp-header {
    position: fixed;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: 50px;
    background-color: transparent;
    z-index: 9999;
    display: block;
  }

  .sp-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding-right: 10px;
  }

  .sp-header-logo {
    width: 200px;
  }

  /* ハンバーガーボタン */
  .sp-menu-btn {
    position: relative;
    width: 38px;
    height: 38px;
    background-color: #79bcb6;
    border: none;
    z-index: 1000;
  }

  .sp-menu-btn span {
    position: absolute;
    left: 4px;
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
  }

  .sp-menu-btn span:nth-child(1) {
    top: 12px;
  }

  .sp-menu-btn span:nth-child(2) {
    top: 18px;
  }

  .sp-menu-btn span:nth-child(3) {
    top: 24px;
  }

  .sp-menu-btn.is-active span:nth-child(1) {
    top: 18px;
    transform: rotate(45deg);
  }

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

  .sp-menu-btn.is-active span:nth-child(3) {
    top: 18px;
    transform: rotate(-45deg);
  }

  /* 全画面メニュー */
  .sp-header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #79bcb6;
    background-image:
      url(../image/sp-part1.png), url(../image/sp-part2.png),
      url(../image/sp-part3.png), url(../image/sp-part4.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position:
      top left,
      top right,
      bottom left,
      bottom right;
    transition: 0.4s;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    z-index: 999;
    padding: 60px 0;
  }

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

  .sp-nav-list {
    text-align: center;
  }

  .sp-nav-list > li {
    margin-top: 20px;
  }

  .sp-nav-list > li > a,
  .sp-medical-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    width: 100%;
    color: #fff;
    font-size: 14px;
  }

  .sp-nav-list .en {
    font-size: 16px;
    color: #fff;
  }

  .sp-medical-arrow {
    width: 2px;
    height: 10px;
    background: #fff;
    margin-top: 5px;
  }

  .sp-medical-menu {
    width: 240px;
    background: #38948d;
    margin: 15px auto 0;
    padding: 20px;
    display: none;
    text-align: left;
  }

  .sp-medical.is-open .sp-medical-menu {
    display: block;
  }

  .sp-medical-col + .sp-medical-col {
    margin-top: 25px;
  }

  .sp-medical-col h4 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 110px;
    height: 30px;
    background: #fff;
    border-radius: 999px;
    color: #38948d;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
  }

  .sp-medical-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .sp-medical-col ul li a {
    position: relative;
    display: block;
    padding-left: 16px;
    color: #fff;
    font-size: 14px;
  }

  .sp-medical-col ul li a::before {
    content: "▶";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
  }

  /* トップ */
  .main-v {
    position: relative;
    margin-top: 10px;
    width: 100%;
    height: 710px;
    overflow: hidden;
  }

  .main-v-slider {
    position: absolute;
    inset: 0;
    margin: 0 10px;
  }

  .slide-img {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .slide-img.is-active {
    opacity: 1;
  }

  .slide1 {
    background-image: url(../image/top-img1.png);
  }

  .slide2 {
    background-image: url(../image/top-img2.png);
  }

  .slide3 {
    background-image: url(../image/top-img3.png);
  }

  .main-v-container {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0 20px;
  }

  .main-v-title {
    position: absolute;
    left: 20px;
    bottom: 50%;
    transform: translatey(50%);
    z-index: 10;
  }

  .main-v-title h1 {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
  }

  .main-v-box {
    position: absolute;
    right: 50%;
    bottom: 120px;
    z-index: 10;
    transform: translateX(50%);
    display: flex;
    align-items: center;
  }

  .main-v-item {
    width: 120px;
    height: 120px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 50%;
  }

  .main-v-item:first-child {
    margin-right: -15px;
  }

  .main-v-item:nth-of-type(2) {
    margin-right: -15px;
  }

  .main-v-item p {
    font-size: 13px;
    color: #fff;
  }

  /* p1-a */
  .p1-a-container {
    padding: 20px 0 40px;
  }

  .p1-a-box {
    width: 92%;
    margin: 0 auto;
  }

  .p1-a-title {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding-bottom: 10px;
  }

  .p1-a-title h2 {
    font-size: 24px;
    font-weight: 500;
    color: #79bcb6;
    line-height: 1;
  }

  .p1-a-title p {
    font-size: 15px;
    line-height: 1;
  }

  .p1-a-news {
    padding: 20px;
    border-top: 1px solid #637c7a;
    border-bottom: 1px solid #637c7a;
  }

  .p1-a-item {
    height: 275px;
    overflow: auto;
  }

  .p1-a-item::-webkit-scrollbar {
    width: 3px;
  }

  .p1-a-item::-webkit-scrollbar-thumb {
    background: #79bcb6;
  }

  .p1-a-item a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
  }

  .p1-a-item a:first-child {
    padding-top: 0;
  }

  .p1-a-item a:last-child {
    padding-bottom: 0;
  }

  .news-date {
    font-size: 13px;
    color: #637c7a;
  }

  .news-title {
    font-size: 13px;
    color: #637c7a;
  }

  /* p1-b */
  .p1-b-container {
    background-image: url(../image/top-back1.png);
    background-repeat: no-repeat;
    background-size: 927px auto;
    background-position: center center;
    overflow: hidden;
  }

  .p1-b-box {
    width: 375px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding-bottom: 20px;
    margin: 0 auto;
  }

  .p1-b-title {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 0;
  }

  .p1-b-title h2 {
    writing-mode: horizontal-tb;
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px #7fa6a3;
  }

  .p1-b-title p {
    writing-mode: horizontal-tb;
    font-size: 15px;
    line-height: 1.2;
    color: #fff;
    background: #79bcb6;
    padding: 5px 10px;
  }

  .p1-b-text {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    padding: 40px 60px;
    border: 1px solid #637c7a;
    margin-top: 0;
  }

  .p1-b-text p {
    writing-mode: vertical-rl;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.15em;
    color: #637c7a;
  }

  .p1-b-img {
    width: 136px;
    position: absolute;
    top: 78px;
    left: 5px;
    z-index: 10;
  }

  .p1-b-img2 {
    width: 227px;
    position: absolute;
    bottom: 0;
    left: -101px;
    z-index: 2;
  }

  .p1-b-img3 {
    width: 151px;
    position: absolute;
    top: 40px;
    right: -25px;
    z-index: 10;
  }

  .p1-b-img4 {
    width: 140px;
    position: absolute;
    bottom: 36px;
    right: -17px;
    z-index: 10;
  }

  /* p1-c */
  .p1-c-container {
    padding: 40px 0;
  }

  .p1-c-title {
    text-align: center;
    background-image: url(../image/top-back2.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    padding: 20px 0;
    border-top: 1px solid #79bcb6;
    border-bottom: 1px solid #79bcb6;
  }

  .p1-c-title h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
  }

  .p1-c-title h2 span {
    font-size: 40px;
    color: #79bcb6;
    line-height: 1;
  }

  .p1-c-title p {
    font-size: 20px;
    line-height: 1.2;
    margin-top: 10px;
  }

  .p1-c-box {
    width: 92%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    margin: 20px auto 0;
  }

  .p1-c-item {
    width: 100%;
  }

  .p1-c-number {
    text-align: center;
  }

  .p1-c-number img {
    width: 80px;
    height: auto;
    margin: 0 auto -10px;
  }

  .p1-c-number span {
    font-size: 48px;
    color: #79bcb6;
    line-height: 1;
  }

  .p1-c-img {
    max-width: 400px;
    width: 100%;
    margin-top: 0;
  }

  .p1-c-h3 {
    text-align: center;
    padding: 30px 0 20px;
    border-bottom: 1px solid #637c7a;
  }

  .p1-c-h3 h3 {
    font-size: 20px;
    font-weight: 500;
  }

  .p1-c-text {
    margin-top: 20px;
  }

  .p1-c-text p {
    font-size: 13px;
    line-height: 2;
  }

  .p1-c-box2 {
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px auto 0;
  }

  .p1-c-item2 {
    max-width: 400px;
    width: 100%;
  }

  .p1-c-item2:first-child {
    margin-top: 0;
  }

  .p1-c-item2:last-child {
    margin-top: 0;
  }

  .p1-c-p {
    text-align: center;
    background-color: #79bcb6;
    padding: 10px 0;
  }

  .p1-c-p p {
    font-size: 20px;
    color: #fff;
  }

  .p1-c-box3 {
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 30px auto 0;
  }

  .p1-c-img3 {
    max-width: 400px;
    width: 100%;
    box-shadow: 20px 20px 0 #79bcb6;
    height: fit-content;
  }

  .p1-c-box3 .p1-c-item {
    margin: 0 auto;
  }

  .p1-c-box4 {
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 30px auto 0;
  }

  .p1-c-img4 {
    max-width: 400px;
    width: 100%;
  }

  .p1-c-box5 {
    background-image: url(../image/top-back3.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 36px 0;
    margin-top: 30px;
  }

  .p1-c-box5 .p1-c-item {
    width: 92%;
    margin: 0 auto;
  }

  .p1-c-box5 .p1-c-text {
    text-align: left;
  }

  .p1-c-box5 .p1-c-number span,
  .p1-c-box5 .p1-c-h3 h3,
  .p1-c-box5 .p1-c-text p {
    color: #fff;
  }

  .p1-c-box5 .p1-c-h3 {
    border-bottom: 1px solid #fff;
  }

  .p1-c-img-box {
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px auto 0;
  }

  .p1-c-img5 {
    max-width: 400px;
    width: 100%;
  }

  .p1-c-box6 {
    background-image: url(../image/top-back6.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    overflow: hidden;
    padding-top: 30px;
    margin-top: 30px;
  }

  .p1-c-img-box2 {
    width: 580px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .p1-c-img6 {
    width: 180px;
  }

  .p1-c-img6:first-child,
  .p1-c-img6:last-child {
    margin-top: 40px;
  }

  /* p1-d */
  .p1-d-container {
    padding-bottom: 40px;
  }

  .p1-d-title {
    text-align: center;
    background-image: url(../image/top-back4.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    padding: 20px 0 30px;
  }

  .p1-d-title h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
  }

  .p1-d-title h2 span {
    font-size: 40px;
    color: #79bcb6;
    line-height: 1;
  }

  .p1-d-title p {
    position: relative;
    width: fit-content;
    font-size: 20px;
    line-height: 1.2;
    margin: 10px auto 0;
  }

  .p1-d-title p::before,
  .p1-d-title p::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: #000;
  }

  .p1-d-title p::before {
    right: calc(100% + 10px);
    transform: translateY(-50%);
  }

  .p1-d-title p::after {
    left: calc(100% + 10px);
    transform: translateY(-50%);
  }

  .p1-d-box {
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px auto 0;
  }

  .p1-d-item {
    max-width: 400px;
    width: 100%;
  }

  .p1-d-item:nth-of-type(1) .p1-d-link {
    background-color: #79bcb6;
  }

  .p1-d-item:nth-of-type(2) .p1-d-link {
    background-color: #7cbc79;
  }

  .p1-d-item:nth-of-type(3) .p1-d-link {
    background-color: #e3b434;
  }

  .p1-d-link {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px 0 80px;
  }

  .p1-d-link h3 {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
  }

  .p1-d-link img {
    width: 30px;
    height: auto;
  }

  .p1-d-img {
    max-width: 400px;
    width: 96%;
    margin: -68px auto 0;
  }

  .p1-d-box2 {
    width: 92%;
    display: grid;
    flex-wrap: nowrap;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 20px 15px;
    margin: 30px auto 0;
  }

  .p1-d-item2 a {
    width: 160px;
    height: 131px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    background-color: #eff4f4;
    padding-top: 16px;
    border-radius: 0 30px 0 0;
  }

  .p1-d-title2 {
    text-align: center;
  }

  .p1-d-title2 h4 {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
  }

  .p1-d-title2 span {
    font-size: 11px;
    color: #79bcb6;
    line-height: 1;
  }

  .p1-d-img2 {
    width: 42px;
  }

  .p1-d-img3 {
    width: 16px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 10;
  }

  /* p1-e */
  .p1-e-container {
    background-image: url(../image/top-back5.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 30px 0;
  }

  .p1-e-box {
    width: 92%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
    position: relative;
    padding-top: 60px;
    margin: 0 auto;
  }

  .p1-e-title {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 5;
    transform: translateX(-50%);
  }

  .p1-e-title h2 {
    writing-mode: horizontal-tb;
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
    color: #79bcb6;
  }

  .p1-e-item {
    width: 100%;
  }

  .p1-e-text p {
    font-size: 13px;
    line-height: 2;
  }

  .p1-e-img {
    max-width: 400px;
    width: 100%;
    margin: 20px auto 0;
  }

  .p1-e-img-box {
    max-width: 400px;
    width: 100%;
    position: relative;
  }

  .p1-e-img2 {
    width: 80%;
    margin: 0 auto;
  }

  .p1-e-neme-box {
    width: 140px;
    height: 140px;
    position: absolute;
    left: 10px;
    bottom: -20px;
    z-index: 10;
    display: flex;
    padding: 7px;
    border: 1px solid #79bcb6;
    border-radius: 50%;
  }

  .p1-e-neme {
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #79bcb6;
    padding-top: 25px;
    border-radius: 50%;
  }

  .p1-e-neme p {
    font-size: 12px;
    color: #fff;
    line-height: 1.2;
  }

  .p1-e-neme h3 {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    margin: 7px 0;
  }

  .p1-e-neme span {
    font-size: 11px;
    color: #fff;
    line-height: 1.2;
  }

  /* 医院紹介 */
  /* p2-a */
  .p2-a-container {
    padding-top: 40px;
  }

  .p2-a-box {
    width: 92%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
    margin: 20px auto 0;
  }

  .p2-a-box.reverse {
    flex-direction: column-reverse;
  }

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

  .p2-a-title {
    text-align: center;
    padding-bottom: 10px;
  }

  .p2-a-title h3 {
    font-size: 20px;
    font-weight: 500;
  }

  .p2-a-text {
    padding-top: 10px;
    border-top: 1px solid #79bcb6;
  }

  .p2-a-text p {
    font-size: 13px;
    line-height: 2;
  }

  .p1-a-img {
    max-width: 400px;
    width: 100%;
    box-shadow: 20px 20px 0 #79bcb6;
    height: fit-content;
  }

  .reverse .p1-a-img {
    box-shadow: -20px 20px 0 #637c7a;
  }

  /* p2-b */
  .p2-b-container {
    padding-top: 40px;
  }

  .p2-b-text {
    width: 92%;
    text-align: left;
    margin: 20px auto 0;
  }

  .p2-b-text p {
    font-size: 13px;
    line-height: 2;
  }

  .p2-b-box {
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px auto 0;
  }

  .p2-b-item {
    max-width: 400px;
    width: 100%;
  }

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

  .p2-b-title {
    text-align: center;
    background-color: #e3b434;
    padding: 10px 0;
  }

  .p2-b-title span {
    font-size: 16px;
    color: #fff;
  }

  /* p2-c */
  .p2-c-container {
    padding-top: 40px;
  }

  .p2-c-box {
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 20px auto 0;
  }

  .p2-c-item {
    max-width: 400px;
    width: 100%;
  }

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

  .p2-c-title {
    width: 100%;
    height: auto;
    background-color: #eff4f4;
    padding: 10px;
  }

  .p2-c-title span {
    display: block;
    text-align: center;
    font-size: 16px;
    padding-bottom: 10px;
  }

  .p2-c-title p {
    font-size: 13px;
    line-height: 2;
    padding-top: 10px;
    border-top: 1px solid #637c7a;
  }

  /* p2-d */
  .p2-d-container {
    padding-top: 40px;
  }

  .p2-d-box-box {
    background-color: #eff4f4;
    padding: 30px 0;
    margin-top: 20px;
  }

  .p2-d-box {
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
  }

  .p2-d-map {
    width: 100%;
    height: 400px;
  }

  .p2-d-map iframe {
    width: 100%;
    height: 100%;
  }

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

  .p2-d-p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .p2-d-p:first-child {
    padding-bottom: 10px;
  }

  .p2-d-p img {
    width: 16px;
    height: auto;
  }

  .p2-d-p p {
    font-size: 13px;
    line-height: 1.2;
  }

  .p2-d .footer-table {
    width: 100%;
    background-color: #fff;
    padding: 0 10px 10px;
    border-top: 1px solid #637c7a;
    border-bottom: 1px solid #637c7a;
    margin: 20px auto 0;
  }

  /* 院長紹介 */
  /* p3-a */
  .p3-a-container {
    padding-top: 40px;
  }

  .p3-a-box-box {
    background-image: url(../image/top-back5.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 0;
    margin-top: 20px;
  }

  .p3-a-box {
    width: 92%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
  }

  .p3-a-item {
    width: 100%;
  }

  .p3-a-title h3 {
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
  }

  .p3-a-title h3 span {
    font-size: 18px;
    line-height: 2;
  }

  .p3-a-text {
    margin-top: 10px;
  }

  .p3-a-text p {
    font-size: 13px;
    line-height: 2;
  }

  .p3-a-neme {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-top: 10px;
  }

  .p3-a-neme p:first-child {
    font-size: 16px;
    line-height: 1.2;
  }

  .p3-a-neme p:nth-of-type(2) {
    font-size: 20px;
    line-height: 1.2;
  }

  .p3-a-neme span {
    font-size: 14px;
    line-height: 1.2;
  }

  .p3-a-img {
    max-width: 400px;
    width: 100%;
  }

  .p3-a-box2 {
    width: 92%;
    background-color: #eff4f4;
    padding: 20px;
    margin: 20px auto 0;
  }

  .p3-a-title2 {
    text-align: center;
  }

  .p3-a-title2 h3 {
    position: relative;
    width: fit-content;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 auto;
  }

  .p3-a-title2 h3::before,
  .p3-a-title2 h3::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background-color: #000;
    transform: translateY(-50%);
  }

  .p3-a-title2 h3::before {
    right: calc(100% + 10px);
  }

  .p3-a-title2 h3::after {
    left: calc(100% + 10px);
  }

  .p3-a-list {
    margin-top: 15px;
  }

  .p3-a-list li {
    font-size: 13px;
    line-height: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
  }

  .p3-a-list li span {
    font-size: 13px;
    line-height: 2;
  }

  /* p3-b */
  .p3-b-container {
    padding-top: 40px;
  }

  .p3-b-box {
    width: 92%;
    margin: 20px auto 0;
  }

  .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #333;
  }

  .faq-item {
    width: 100%;
  }

  .faq-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background-color: #f1f5f5;
    border: none;
    padding: 0 20px 0 0;
    cursor: pointer;
    text-align: left;
  }

  .faq-icon-q {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #6fb9b5;
    color: #ffffff;
    font-size: 16px;
    width: 40px;
    height: 40px;
    margin-right: 0;
    flex-shrink: 0;
  }

  .faq-title {
    font-size: 13px;
    line-height: 1.5;
    flex-grow: 1;
  }

  .faq-arrow {
    position: relative;
    width: 10px;
    height: 10px;
    flex-shrink: 0;
  }

  .faq-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #555555;
    transform: translateY(-50%);
  }

  .faq-arrow::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background-color: #555555;
    transform: translateX(-50%);
  }

  .faq-item.active .faq-arrow::after {
    display: none;
  }

  .faq-content {
    display: none;
    border-left: 1px solid #637c7a;
    border-right: 1px solid #637c7a;
    border-bottom: 1px solid #637c7a;
    background-color: #ffffff;
  }

  .faq-item.active .faq-content {
    display: block;
  }

  .faq-content-inner {
    padding: 20px;
  }

  .faq-content-inner p {
    margin: 0;
    font-size: 13px;
    line-height: 2;
  }

  /* p3-c */
  .p3-c-container {
    padding: 40px 0;
  }

  .p3-c-text {
    width: 92%;
    text-align: left;
    margin: 20px auto 0;
  }

  .p3-c-text p {
    font-size: 13px;
    line-height: 2;
  }

  /* 診療案内-1 */
  /* p4-a */
  .p4-a-container {
    padding-top: 40px;
  }

  .p4-a-box {
    width: 92%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    margin: 20px auto 0;
  }

  .p4-a-item {
    width: 100%;
  }

  .p4-a-title {
    padding-bottom: 10px;
    border-bottom: 1px solid #637c7a;
  }

  .p4-a-title h3 {
    font-size: 18px;
    font-weight: 500;
  }

  .p4-a-text {
    margin-top: 10px;
  }

  .p4-a-text p {
    font-size: 13px;
    line-height: 2;
  }

  .p4-a-img {
    max-width: 400px;
    width: 100%;
  }

  .p4-a-box2 {
    width: 96%;
    overflow: auto;
    margin: 20px 0 0 4%;
  }

  .p4-a-table {
    width: 705px;
    margin-right: 4%;
  }

  .p4-a-table table {
    width: 100%;
    border-collapse: collapse;
  }

  .p4-a-table th {
    background: #79bcb6;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 10px;
    border: 1px solid #d2e1de;
  }

  .p4-a-table td {
    vertical-align: top;
    padding: 15px;
    border: 1px solid #637c7a;
  }

  .p4-a-table td:first-child {
    width: 200px;
    text-align: center;
  }

  .p4-a-table td:first-child .en {
    display: block;
    font-size: 24px;
    line-height: 1;
  }

  .p4-a-table td:first-child p {
    font-size: 14px;
    margin-top: 10px;
  }

  .p4-a-table td:first-child img {
    width: 170px;
    margin: 20px auto 0;
  }

  .p4-a-table td:nth-child(2),
  .p4-a-table td:nth-child(3) {
    font-size: 13px;
    line-height: 2;
  }

  .p4-a-table td:nth-child(3) span {
    font-size: 13px;
    color: #79bcb6;
  }

  /* p4-b */
  .p4-b-container {
    padding-top: 40px;
  }

  .p4-b-p {
    width: 92%;
    text-align: left;
    margin: 20px auto;
  }

  .p4-b-p p {
    font-size: 13px;
    line-height: 2;
  }

  .p4-b-box {
    background-color: #eff4f4;
    padding: 30px 0;
  }

  .p4-b-item {
    width: 92%;
    margin: 20px auto 0;
  }

  .p4-b-item:first-child {
    margin-top: 0;
  }

  .p4-b-title {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid #637c7a;
  }

  .p4-b-title img {
    width: 16px;
  }

  .p4-b-title h4 {
    font-size: 16px;
    font-weight: 500;
  }

  .p4-b-text {
    margin-top: 10px;
  }

  .p4-b-text p {
    font-size: 13px;
    line-height: 2;
  }

  .p4-b-list ul {
    width: 100%;
    margin-top: 10px;
  }

  .p4-b-list ul li {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
    border-bottom: 1px solid #637c7a;
  }

  .p4-b-list ul li span {
    font-size: 14px;
    line-height: 1.2;
  }

  .p4-b-list ul li img {
    width: 16px;
    height: auto;
  }

  .p4-b-box2 {
    width: 96%;
    overflow: auto;
    margin: 20px 0 0 4%;
  }

  .p4-b-table {
    width: 705px;
    margin-right: 4%;
  }

  .p4-b-table table {
    width: 100%;
    border-collapse: collapse;
  }

  .p4-b-table th {
    background: #79bcb6;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 10px;
    border: 1px solid #d2e1de;
  }

  .p4-b-table td {
    padding: 20px;
    vertical-align: top;
    border: 1px solid #637c7a;
  }

  .p4-b-table td:first-child {
    width: 200px;
    text-align: center;
  }

  .p4-b-table td:first-child h4 {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .p4-b-table td:first-child img {
    width: 170px;
    margin: 0 auto;
  }

  .p4-b-table td:last-child {
    font-size: 13px;
    line-height: 2;
  }

  .p4-b-box3 {
    margin-top: 20px;
  }

  .p4-b-item3 {
    width: 92%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin: 20px auto 0;
  }

  .p4-b-item3:first-child {
    margin-top: 0;
  }

  .p4-b-item3 .p4-b-item {
    width: 100%;
    margin: 20px 0 0;
  }

  .p4-b-img3 {
    max-width: 400px;
    width: 100%;
  }

  /* p4-c */
  .p4-c-container {
    padding-top: 40px;
  }

  /* p4-d */
  .p4-d-container {
    padding-top: 40px;
  }

  .p4-d-box {
    width: 92%;
    margin: 20px auto 0;
  }

  .p4-d-table {
    width: 100%;
  }

  .p4-d-table table {
    width: 100%;
    border-collapse: collapse;
  }

  .p4-d-table th {
    display: block;
    width: 100%;
    background: #79bcb6;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid #8ea7a4;
  }

  .p4-d-table td {
    display: block;
    background: #eff4f4;
    font-size: 13px;
    line-height: 1.6;
    padding: 10px;
    border-bottom: 1px solid #8ea7a4;
  }

  /* p4-e */
  .p4-e-container {
    padding-top: 40px;
  }

  .p4-e-p {
    margin: 20px auto;
  }

  .p4-e-box {
    background-image: url(../image/p4-back1.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 0;
  }

  .p4-e-box2.p4-e-box {
    background-image: url(../image/p4-back2.png);
  }

  .p4-e-box2 .p4-e-title .en {
    color: #637c7a;
  }

  .p4-e-list {
    width: 92%;
    background-color: #fff;
    padding: 20px;
    margin: 0 auto;
  }

  .p4-e-title {
    text-align: center;
  }

  .p4-e-title .en {
    display: block;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    color: #79bcb6;
  }

  .p4-e-title h3 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
  }

  .p4-e-list ul {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
  }

  .p4-e-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #7f9592;
  }

  .p4-e-list li img {
    width: 16px;
    flex-shrink: 0;
  }

  .p4-e-list li span {
    font-size: 13px;
    line-height: 1.2;
  }

  /* p4-f */
  .p4-f-container {
    padding: 40px 0;
  }

  .p4-f-p {
    width: 92%;
    margin: 20px auto;
  }

  .p4-f-p2.p4-f-p {
    margin-top: 20px;
  }

  .p4-f-p p {
    font-size: 13px;
    line-height: 2;
  }

  .p4-f-title {
    text-align: center;
    margin: 20px auto;
  }

  .p4-f-title h4 {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    display: inline-block;
  }

  .p4-f-title h4::before,
  .p4-f-title h4::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: #637c7a;
  }

  .p4-f-title h4::before {
    right: calc(100% + 10px);
  }

  .p4-f-title h4::after {
    left: calc(100% + 10px);
  }

  .p4-f-box {
    width: 92%;
    padding: 20px 10px;
    border: 1px solid #637c7a;
    margin: 20px auto 0;
  }

  .p4-f-text {
    text-align: left;
  }

  .p4-f-text p {
    font-size: 13px;
    line-height: 2;
  }

  .p4-f-link a {
    width: 220px;
    font-size: 16px;
    color: #fff;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    background-color: #38948d;
    padding: 10px 0;
    margin: 40px auto 0;
  }

  .p4-f-link a img {
    width: 10px;
    height: auto;
  }

  /* 診療案内-2 */
  /* p5-a */
  .p5-a-container {
    padding-top: 40px;
  }

  .p5-a-p {
    margin-top: 20px;
  }

  .p5-a-box {
    width: 92%;
    margin: 20px auto 0;
  }

  .p5-a-list ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .p5-a-list ul li {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid #637c7a;
  }

  .p5-a-list ul li img {
    width: 16px;
    height: auto;
  }

  .p5-a-list ul li span {
    font-size: 13px;
    line-height: 2;
  }

  .p5-a-box2 {
    width: 92%;
    margin: 0 auto;
  }

  .p5-a-item2 {
    width: 100%;
    padding: 20px 10px;
    border: 1px solid #637c7a;
    margin-top: 20px;
  }

  .p5-a-title2 {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-bottom: 10px;
    border-bottom: 1px solid #637c7a;
  }

  .p5-a-title2 img {
    width: 16px;
  }

  .p5-a-title2 h4 {
    font-size: 16px;
    font-weight: 500;
  }

  .p5-a-text2 {
    margin-top: 20px;
  }

  .p5-a-text2 p {
    font-size: 13px;
    line-height: 2;
  }

  .p5-a-text2 span {
    font-size: 16px;
  }

  .p5-a-item2 .p4-d-table {
    margin-top: 20px;
  }

  .p5-a-box3 {
    width: 92%;
    margin: 20px auto 0;
  }

  .p5-a-item3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
    border-top: 1px solid #637c7a;
  }

  .p5-a-item3:last-child {
    border-bottom: 1px solid #637c7a;
  }

  .p5-a-title3 {
    display: flex;
    align-items: baseline;
    gap: 5px;
    padding-right: 0;
    padding-bottom: 5px;
    border-right: none;
    border-bottom: 1px solid #637c7a;
  }

  .p5-a-title3 span.en {
    font-size: 18px;
    color: #79bcb6;
    line-height: 1;
  }

  .p5-a-title3 .p5-a-number {
    font-size: 22px;
    color: #79bcb6;
    line-height: 1;
  }

  .p5-a-text3 {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }

  .p5-a-text3 p {
    font-size: 13px;
    line-height: 2;
  }

  /* p5-b */
  .p5-b-container {
    padding-top: 40px;
  }

  .p5-b-box {
    width: 92%;
    text-align: center;
    margin: 20px auto;
  }

  .p5-b-box h3 {
    font-size: 18px;
    font-weight: 500;
    color: #79bcb6;
  }

  .p5-a-text3 .p5-b-p {
    font-size: 12px;
  }

  .p5-b .p4-b-p {
    width: 92%;
  }

  /* p5-c */
  .p5-c-container {
    padding: 40px 0;
  }

  .p5-c .p4-a-title {
    border-bottom: none;
  }

  .p5-c-list ul li {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
    border-bottom: 1px solid #637c7a;
  }

  .p5-c-list ul li img {
    width: 16px;
    height: auto;
  }

  .p5-c-list ul li span {
    font-size: 13px;
    line-height: 2;
  }

  .p5-c-box {
    background-color: #eff4f4;
    padding: 40px 0;
    margin-top: 20px;
  }

  .p5-c-item {
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
  }

  .p5-c-img {
    max-width: 400px;
    width: 100%;
  }

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

  .p5-c-text p {
    font-size: 13px;
    line-height: 2;
  }

  .p5-c-text .p5-c-p {
    margin-top: 20px;
  }

  .p5-c-list2 ul {
    margin-top: 10px;
  }

  .p5-c-list2 ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
  }

  .p5-c-list2 ul li img {
    width: 15px;
    height: auto;
  }

  .p5-c-list2 ul li span {
    font-size: 13px;
    line-height: 1.6;
  }

  /* 料金表 */
  /* p6-a */
  .p6-a-container {
    padding: 40px 0;
  }

  .p6-a-box {
    width: 92%;
    margin: 20px auto 0;
  }

  .p6-a-table {
    width: 100%;
  }

  .p6-a-table table {
    width: 100%;
    border-collapse: collapse;
  }

  .p6-a-table tr {
    background: #79bcb6;
  }

  .p6-a-table tr {
    border-bottom: 1px solid #637c7a;
  }

  .p6-a-table td {
    display: block;
    text-align: center;
    width: 100%;
    background: #79bcb6;
    padding: 10px;
  }

  .p6-a-table td .p6-a-p {
    font-size: 13px;
    color: #637c7a;
  }

  .p6-a-table td:last-child {
    width: 100%;
    text-align: center;
    white-space: nowrap;
    font-size: 16px;
    line-height: 1.2;
    background-color: #eff4f4;
  }

  .p6-a-table h4 {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
  }

  .p6-a-table p {
    font-size: 13px;
    color: #fff;
  }

  /* 下層共通 */
  .sub-v-container {
    margin: 10px 10px 0;
  }

  .sub-v-box {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
  }

  .sub-v-img {
    width: 100%;
    height: 100%;
  }

  .sub-v-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .sub-v-title {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }

  .sub-v-title h1 {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
  }

  .sub-v-title span {
    font-size: 16px;
    color: #fff;
  }

  .h2-title {
    width: 92%;
    text-align: center;
    position: relative;
    background-color: #79bcb6;
    padding: 10px 0;
    margin: 0 auto;
  }

  .h2-title h2 {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
  }

  .h2-img,
  .h2-img2 {
    width: 30px;
    position: absolute;
    z-index: 10;
  }

  .h2-img {
    top: 5px;
    left: 5px;
  }

  .h2-img2 {
    right: 5px;
    bottom: 5px;
  }

  .h3-title {
    width: 92%;
    text-align: center;
    background-color: #b3bebd;
    padding: 10px 5px;
    margin: 40px auto 0;
  }

  .h3-title h3 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    padding-bottom: 5px;
    border-bottom: 1px solid #fff;
  }

  /* フッター */
  .footer-container {
    background-color: #fff;
    padding-bottom: 50px;
  }

  .footer-box {
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    margin: 0 auto;
  }

  .footer-item {
    width: 100%;
  }

  .footer-logo {
    width: 247px;
    margin: 0 auto;
  }

  .footer-adres {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
  }

  .footer-adres img {
    width: 20px;
    height: auto;
  }

  .footer-adres p {
    font-size: 15px;
    line-height: 1.2;
  }

  .header-link {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-right: 0;
  }

  .header-link a {
    width: 160px;
    height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    border: 1px solid #fff;
  }

  .header-link a:last-child {
    position: relative;
    background-color: #38948d;
  }

  .header-link a:last-child::after {
    content: "";
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 12px;
    height: 3px;
    background-image: url(../image/part8.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
  }

  .header-link a span {
    font-size: 11px;
    color: #fff;
    line-height: 1.2;
  }

  .header-link a p {
    font-size: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.2;
  }

  .header-link a p img {
    width: 13px;
    height: auto;
  }

  .footer-box .header-link a {
    border: 1px solid #637c7a;
  }

  .footer-box .header-link a:last-child {
    border: none;
  }

  .footer-box .header-link a:first-child span {
    color: #637c7a;
  }

  .footer-box .header-link a:first-child p {
    color: #637c7a;
  }

  .footer-table {
    max-width: 400px;
    width: 100%;
    padding: 0 10px 12px;
    border-top: 1px solid #637c7a;
    border-bottom: 1px solid #637c7a;
  }

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

  .footer-table th,
  .footer-table td {
    text-align: center;
    padding: 8px 0;
    border-bottom: 1px solid #d2d2d2;
    color: #637c7a;
    font-size: 12px;
    font-weight: 400;
  }

  .footer-table th:first-child,
  .footer-table td:first-child {
    text-align: left;
    width: 80px;
  }

  .footer-table th {
    font-weight: 500;
  }

  .footer-table td {
    font-size: 12px;
    line-height: 1;
  }

  .footer-table td:not(:first-child) {
    font-size: 14px;
    line-height: 1;
  }

  .footer-map {
    width: 100%;
    height: 480px;
    position: relative;
    overflow: hidden;
  }

  .footer-map a {
    width: 150px;
    height: 32px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
  }

  .footer-map iframe {
    width: 100%;
    height: 950px;
    transform: translateY(-23%);
  }

  .footer-nav {
    background-color: #79bcb6;
    padding: 30px 0;
  }

  .footer-nav h3 {
    width: 92%;
    text-align: left;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    padding: 20px 0;
    border-bottom: 1px solid #fff;
    margin: 0 auto;
  }

  .footer-nav nav {
    width: 92%;
    margin: 20px auto 0;
  }

  .footer-nav nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 27px;
  }

  .footer-nav nav ul li a {
    font-size: 14px;
    color: #fff;
    line-height: 1;
  }

  .copy-right {
    text-align: center;
    padding: 30px 0;
  }

  .copy-right p {
    font-size: 12px;
    line-height: 1.2;
  }

  .sp-footer {
    width: 90%;
    height: 45px;
    position: fixed;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 999;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }

  .sp-footer a {
    text-decoration: none;
  }

  /* 電話 */
  .sp-footer-tel {
    flex: 1;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #637c7a;
  }

  .sp-footer-tel span {
    font-size: 11px;
    line-height: 1;
    color: #38948d;
  }

  .sp-footer-tel p {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    line-height: 1;
    color: #38948d;
    margin-top: 3px;
  }

  .sp-footer-tel img {
    width: 10px;
  }

  /* WEB予約 */
  .sp-footer-web {
    position: relative;
    flex: 1;
    background: #38948d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
  }

  .sp-footer-web::after {
    content: "";
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 10px;
    height: 4px;
    background: url(../image/part8.png) center/contain no-repeat;
  }

  .sp-footer-web span {
    font-size: 11px;
    line-height: 1;
    color: #fff;
  }

  .sp-footer-web p {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    line-height: 1;
    color: #fff;
    margin-top: 3px;
  }

  .sp-footer-web img {
    width: 14px;
  }

  /* アクセス */
  .sp-footer-access {
    width: 90px;
    background: #abd4d1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 1px solid #637c7a;
  }

  .sp-footer-access img {
    width: 15px;
  }

  .sp-footer-access span {
    font-size: 13px;
    color: #637c7a;
    line-height: 1;
  }

  /* ナビゲーション */
  .nav {
    display: none;
  }

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

  .single-box {
    width: 94%;
    margin: 0 auto;
  }

  .single-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
  }

  .single-img {
    width: 100%;
    max-width: 400px;
    margin-bottom: 30px;
  }

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

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

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

@media screen and (max-width: 375px) {
  /* トップ */
  .slide1 {
    background-image: url(../image/sp-back1.png);
  }

  .slide2 {
    background-image: url(../image/sp-back2.png);
  }

  .slide3 {
    background-image: url(../image/sp-back3.png);
  }
}
