@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;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

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

h2 {
  color: #333;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.06em;
}

li {
  list-style: none;
}

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

a:hover {
  opacity: .8;
}


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

/* 消してる要素 */
.sp {
  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);
}



/* ヘッダー 1100で可変 */
.header-a {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: min(143px, 13vw);
  z-index: 100;
  transition: transform 0.4s ease;
}

.header-a-container {
  width: 100%;
  height: 100%;
  padding-left: min(14px, 1.27vw);
}

.header-a-box {
  display: flex;
  justify-content: space-between;
}

.header-a-logo {
  width: min(500px, 45.45vw);
  margin-top: min(14px, 1.27vw);
}

.header-a-link {
  display: flex;
}

.header-a-tel {
  width: min(269px, 24.45vw);
  height: auto;
}

.header-a-web {
  width: min(159px, 14.45vw);
  height: auto;
}

.header-a-map {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(8px, 0.72vw);
  margin-top: min(10px, 0.9vw);
}

.header-a-map img {
  width: min(23px, 2.09vw);
  height: auto;
}

.header-a-map p {
  font-size: min(16px, 1.45vw);
  color: #fff;
}

/* ヘッダー2 1100で可変 */
.header-b {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: min(100px, 9.09vw);
  z-index: 110;
  background-color: #fff;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.header-b-container {
  width: 100%;
  height: 100%;
  padding-left: min(14px, 1.27vw);
}

.header-b-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-b-logo {
  width: min(433px, 39.36vw);
}

.header-b-item {
  display: flex;
  align-items: center;
}

.header-b-tel {
  width: min(269px, 24.45vw);
  height: auto;
}

.header-b-web {
  width: min(159px, 14.45vw);
  height: auto;
}

.header-b-map {
  width: min(30px, 2.73vw);
  margin-right: min(40px, 3.64vw);
}

/* ヘッダー切り替えのクラス */
.header-a.is-hide {
  transform: translateY(-100%);
}

.header-b.is-show {
  transform: translateY(0);
}

/* ハンバーガーメニュー 1100で可変 */
.nav-btn {
  width: min(100px, 9.09vw);
  height: min(100px, 9.09vw);
  background-color: #83D75D;
  border: none;
  cursor: pointer;
  z-index: 130;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.nav-btn .burger-lines {
  position: relative;
  width: min(63px, 5.73vw);
  height: min(24px, 2.18vw);
  margin-bottom: min(8px, 0.73vw);
}

.nav-btn span {
  position: absolute;
  left: 0;
  width: min(63px, 5.73vw);
  height: min(4px, 0.36vw);
  background-color: #fff;
  transition: all 0.3s ease;
}

.nav-btn span:nth-child(1) { top: 0; }
.nav-btn span:nth-child(2) { top: min(10px, 0.91vw); }
.nav-btn span:nth-child(3) { top: min(20px, 1.82vw); }

.nav-btn::after {
  content: "MENU";
  display: block;
  font-size: min(18px, 1.64vw);
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.06em;
}

.nav-btn.is-active span:nth-child(1) {
  top: min(10px, 0.91vw);
  transform: rotate(35deg);
}

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

.nav-btn.is-active span:nth-child(3) {
  top: min(10px, 0.91vw);
  transform: rotate(-35deg);
}

/* メニュー画面 1000で可変 */
.sp-nav {
  position: fixed;
  top: min(100px, 9.09vw); /* 1100で可変 */
  right: 0;
  width: min(500px, 50vw);
  height: calc(100vh - min(100px, 9.09vw));/* 1100で可変 */
  background-color: #fff;
  z-index: 90;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
}

.sp-nav.is-active {
  transform: translateX(0);
}

.sp-nav-inner {
  display: flex;
  justify-content: space-between;
  padding: min(100px, 10vw) min(24px, 2.4vw) min(60px, 6vw);
}

.sp-nav-group {
  width: min(170px, 17vw);
  margin-bottom: min(40px, 4vw);
}

.sp-nav-title {
  font-size: min(30px, 3vw);
  font-family: "Cormorant Garamond", serif;
  color: #F1D04E;
  margin-bottom: min(20px, 2vw);
  border-bottom: 1px solid #83D75D;
}

.sp-nav-title span {
  font-family: "Cormorant Garamond", serif;
  color: #83D75D;
}

.sp-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sp-nav ul li {
  margin-bottom: min(20px, 2vw);
}

.sp-nav ul li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
}

.sp-nav ul li a img {
  width: min(12px, 1.2vw);
  height: auto;
  margin-right: min(15px, 1.5vw);
  object-fit: contain;
}

.sp-nav ul li a p {
  font-size: min(16px, 1.6vw);
  font-weight: 500;
}

/* 背景固定用のスタイル */
body.is-fixed {
  overflow: hidden;
  height: 100%;
}

.sp-nav {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}


/* AIの設定 */
.side-banners {
  position: fixed;
  bottom: min(44px, 4vw);
  right: min(47px, 4.27vw);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: min(55px, 5vw);
}

.side-banner-item {
  width: min(171px, 15.55vw);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.side-banner-item:hover {
  transform: translateY(min(2px, 0.18vw));
}

.side-banner-item img {
  width: 100%;
  height: auto;
  display: block;
}


/* トップ */
/* 1200で可変 */
.main-v {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.main-v-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  z-index: 1;
}

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

.slide1 { background-image: url(../image/top-back1.png); }
.slide2 { background-image: url(../image/top-back2.png); }
.slide3 { background-image: url(../image/top-back3.png); }

.main-v-container {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 260px;
}

.main-v-title h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-v-title h1 span {
  display: inline-block;
  font-size: min(50px, 4.17vw);
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  padding-bottom: min(5px, 0.42vw);
  border-bottom: 1px solid #fff;
  margin-bottom: min(10px, 0.83vw);
}

.main-v-text {
  text-align: center;
  margin-top: min(30px, 2.5vw);
}

.main-v-text p {
  font-size: min(24px, 2vw);
  color: #fff;
  line-height: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.main-v-box {
  position: absolute;
  bottom: 0;
  left: min(90px, 7.5vw);
  z-index: 10;
  display: flex;
}

.main-v-item-box {
  width: min(313px, 26.08vw);
  height: min(298px, 24.83vw);
}

.main-v-item-box:first-child {
  background-image: url(../image/top-back13.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.main-v-item-box:last-child {
  background-image: url(../image/top-back14.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-left: min(-30px, -2.5vw);
}

.main-v-item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.main-v-item p {
  text-align: center;
  font-size: min(30px, 2.5vw);
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
}

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

/* 1200で可変 */
.p1-a-container {
  background-color: #F3F3F3;
  padding: min(80px, 6.67vw) 0 min(55px, 4.58vw);
}

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

.p1-a-title {
  text-align: center;
  margin-bottom: min(55px, 4.58vw);
}

.p1-a-title h2 {
  font-size: min(50px, 4.17vw);
  color: #02D037;
}

.p1-a-news {
  width: min(517px, 43.08vw);
}

.news-scroll-box {
  height: min(335px, 27.92vw);
  overflow-y: auto;
  padding-right: min(15px, 1.25vw);
}

.news-scroll-box::-webkit-scrollbar {
  width: min(6px, 0.5vw);
}

.news-scroll-box::-webkit-scrollbar-track {
  background: transparent;
}

.news-scroll-box::-webkit-scrollbar-thumb {
  background: rgba(102, 102, 102, 0.6);
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list li:last-child {
  border-bottom: none;
}

.news-list li a {
  display: flex;
  align-items: center;
  gap: min(25px, 2.08vw);
  padding: min(20px, 1.67vw) 0;
  font-size: min(16px, 1.33vw);
}

.news-list li .date {
  width: min(100px, 8.33vw);
  flex-shrink: 0;
}

.news-list li .title {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p1-a-item {
  width: min(528px, 44vw);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  border: min(1px, 0.08vw) solid #83D75D;
}

.schedule-table th {
  background-color: #83D75D;
  font-weight: 500;
  padding: min(12px, 1vw) 0;
  font-size: min(16px, 1.33vw);
  border: none;
}

.schedule-table td {
  text-align: center;
  padding: min(15px, 1.25vw) 0;
  font-size: min(20px, 1.67vw);
  font-weight: 500;
  color: #83D75D;
  background-color: #fff;
  border-bottom: min(1px, 0.08vw) solid #83D75D;
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

.schedule-table td.time {
  font-size: min(16px, 1.33vw);
  color: #333;
  width: min(140px, 11.67vw);
  text-align: center;
  border-right: none;
}

.schedule-table td.off {
  color: #333;
  font-size: min(16px, 1.33vw);
}

.schedule-table td.tri, 
.schedule-info .tri {
  color: #d4bc40;
}

.schedule-info {
  padding: min(20px, 1.67vw) 0;
  font-size: min(16px, 1.33vw);
  font-weight: 500;
  line-height: 2;
}

/* 1440で可変 */
.p1-b {
  overflow: visible;
}

.p1-b-container {
  padding-bottom: min(140px, 9.72vw);
}

.p1-b-box {
  position: relative;
  display: flex;
  justify-content: center;
  background-image: url(../image/top-back8.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: min(80px, 5.56vw);
  padding-bottom: min(120px, 8.33vw);
}

.p1-b-title {
  transform: translateX(-12%);
}

.p1-b-title h2 {
  display: flex;
  align-items: flex-start;
  gap: min(50px, 3.47vw);
}

.p1-b-title span {
  display: inline-block;
  font-size: min(40px, 2.78vw);
  writing-mode: vertical-rl;
  background-color: #fff;
  box-shadow: min(7px, 0.49vw) min(7px, 0.49vw) 0 0 #0292AD;
  padding: min(10px, 0.69vw) min(20px, 1.39vw) min(20px, 1.39vw);
}

.p1-b-part {
  width: min(500px, 34.72vw);
  height: min(500px, 34.72vw);
  position: absolute;
  top: calc(min(80px, 5.56vw) * -1); /* top: -80px相当 */
  right: calc(min(10px, 0.69vw) * -1); /* right: -10px相当 */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  pointer-events: none;
}

.circle-text {
  width: 100%;
  height: 100%;
  position: relative;
  animation: rotation 20s linear infinite;
}

.circle-text span {
  position: absolute;
  top: 0;
  left: 50%;
  transform-origin: center min(250px, 17.36vw);
  margin-left: calc(min(35px, 2.43vw) * -1);
  font-size: min(70px, 4.86vw);
  font-family: "Cormorant Garamond", serif;
  color: #F1D04E;
  line-height: 1;
}

@keyframes rotation {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 1350で可変 */
.p1-b-box2 {
  width: min(1280px, 94.81vw);
  display: flex;
  justify-content: space-between;
  margin: min(22px, 1.63vw) auto 0;
}

.p1-b-item {
  width: min(665px, 49.26vw);
}

.p1-b-h3 h3 {
  font-size: min(30px, 2.22vw);
  font-weight: 600;
}

.p1-b-text {
  margin-top: min(26px, 1.93vw);
}

.p1-b-text p {
  font-size: min(16px, 1.19vw);
  line-height: 1.8;
}

.p1-b-img-box {
  width: min(579px, 42.89vw);
  position: relative;
  z-index: 5;
  margin-top: calc(min(60px, 4.44vw) * -1); /* -60px相当 */
}

.p1-b-name {
  text-align: center;
  padding-top: min(40px, 2.96vw);
  padding-bottom: min(20px, 1.48vw);
  border-bottom: min(1px, 0.07vw) solid #333;
}

.p1-b-name h3 {
  font-size: min(36px, 2.67vw);
  font-weight: 600;
}

.p1-b-name span:first-child {
  font-size: min(24px, 1.78vw);
  margin-right: min(10px, 0.74vw);
}

.p1-b-name span:last-child {
  font-size: min(24px, 1.78vw);
  color: #0292AD;
  margin-left: min(45px, 3.33vw);
}

/* 1440で可変 */
.p1-c-container {
  padding-bottom: min(100px, 6.94vw);
}

.p1-c-box {
  width: min(1440px, 100vw);
  display: flex;
  margin: 0 auto;
}

.p1-c-title {
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.p1-c-title h2 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  writing-mode: vertical-rl;
  font-size: min(200px, 13.89vw);
  font-weight: 400;
  line-height: 1;
  color: #F9F3DC;
  z-index: 1;
  letter-spacing: 0.05em;
  pointer-events: none;
}

.p1-c-title h2 span {
  font-family: "Cormorant Garamond", serif;
  color: #83D75D;
}

.p1-c-title p {
  position: relative;
  z-index: 2;
  margin: 0;
  writing-mode: vertical-rl;
  font-size: min(30px, 2.08vw);
  font-weight: 600;
  color: #333;
  line-height: 1.2;
  letter-spacing: min(6px, 0.42vw);
  padding-top: min(100px, 6.94vw);
}

.p1-c-title p span {
  font-size: min(64px, 4.44vw);
  text-combine-upright: all;
  -webkit-text-combine: horizontal;
  color: #F1D04E;
}

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

.p1-c-text-box {
  display: flex;
  margin-top: min(40px, 2.78vw);
}

.p1-c-text {
  width: min(572px, 39.72vw);
  position: relative;
}

.p1-c-h3 h3 {
  font-size: min(32px, 2.22vw);
  font-weight: 600;
  letter-spacing: 0.10em;
}

.p1-c-p {
  width: min(538px, 37.36vw);
  margin-top: min(20px, 1.39vw);
  position: relative;
  z-index: 5;
}

.p1-c-p p {
  font-size: min(16px, 1.11vw);
  line-height: 2;
  letter-spacing: 0.10em;
}

.p1-c-span {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.p1-c-span span {
  font-size: min(180px, 12.5vw);
  color: #F3F3F3;
}

.p1-c-img2 {
  width: min(600px, 41.67vw);
  position: relative;
  z-index: 5;
  margin-top: calc(min(263px, 18.26vw) * -1); /* -263px相当 */
}

/* 1440で可変 */
.p1-d-box {
  width: min(1440px, 100vw);
  position: relative;
  display: flex;
  justify-content: flex-end;
  background-image: url(../image/top-back9.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  padding-top: min(38px, 2.64vw);
  padding-right: min(80px, 5.56vw);
  margin: 0 auto;
}

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

.p1-d-title span {
  display: inline-block;
  font-size: min(40px, 2.78vw);
  background-color: #fff;
  box-shadow: min(7px, 0.49vw) min(7px, 0.49vw) 0 0 #F1D04E;
  padding: min(6px, 0.42vw) min(18px, 1.25vw);
  margin-bottom: min(20px, 1.39vw);
}

.p1-d-title h2 {
  display: inline-block;
  font-size: min(50px, 3.47vw);
  font-weight: 600;
  color: #F1D04E;
  background-color: #333;
  box-shadow: min(7px, 0.49vw) min(7px, 0.49vw) 0 0 #F1D04E;
  line-height: 1;
  padding-top: min(6px, 0.42vw);
}

.p1-d-title h2 span {
  color: #fff;
  background-color: transparent;
  box-shadow: none;
  padding: 0 0 0 min(20px, 1.39vw);
  margin-bottom: 0;
  font-size: min(40px, 2.78vw);
}

.p1-d-h3 {
  padding-left: min(36px, 2.5vw);
  margin-top: min(27px, 1.88vw);
}

.p1-d-h3 h3 {
  font-size: min(30px, 2.08vw);
  font-weight: 600;
  line-height: 1.8;
}

.p1-d-text {
  position: relative;
  z-index: 5;
  margin-top: min(42px, 2.92vw);
}

.p1-d-text p {
  font-size: min(16px, 1.11vw);
  line-height: 2;
}

.p1-d-span {
  position: absolute;
  right: min(80px, 5.56vw);
  bottom: calc(min(40px, 2.78vw) * -1); /* -40px相当 */
  z-index: 2;
}

.p1-d-span span {
  font-size: min(180px, 12.5vw);
  color: #F3F3F3;
  line-height: 1;
}

/* 1350で可変 */
.p1-e-container {
  padding-top: min(130px, 9.63vw);
}

.p1-e-box-box {
  width: min(1280px, 94.81vw);
  background-color: #F3F3F3;
  margin: 0 auto;
}

.p1-e-box {
  position: relative;
  background-image: url(../image/part7.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom calc(min(20px, 1.48vw) * -1);
  padding: min(66px, 4.89vw) min(48px, 3.56vw);
}

.p1-e-title {
  text-align: center;
  position: relative;
  z-index: 5;
}

.p1-e-title h3 {
  font-size: min(30px, 2.22vw);
  font-weight: 600;
}

.p1-e-text {
  width: min(949px, 70.3vw);
  position: relative;
  z-index: 5;
  margin: min(58px, 4.3vw) auto 0;
}

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

.p1-e-img-box {
  display: flex;
  justify-content: space-between;
  margin-top: min(50px, 3.7vw);
  position: relative;
  z-index: 5;
}

.p1-e-img {
  width: min(363px, 26.89vw);
}

.p1-e-span {
  position: absolute;
  top: min(60px, 4.44vw);
  right: min(165px, 12.22vw);
  z-index: 1;
}

.p1-e-span span {
  font-size: min(180px, 13.33vw);
  color: #FFFFFF;
  line-height: 1;
}

/* 1440で可変 */
.p1-f-container {
  padding-top: min(90px, 6.25vw);
}

.p1-f-box {
  display: flex;
  justify-content: center;
  gap: min(18px, 1.25vw);
}

.p1-f-item {
  width: min(458px, 31.81vw);
  position: relative;
  background-color: #F3F3F3;
  padding: min(38px, 2.64vw) min(34px, 2.36vw);
}

.p1-f-box .p1-f-item:nth-of-type(2) {
  background-color: #F6F2E2;
}

.p1-f-box .p1-f-item:nth-of-type(2) .p1-f-title {
  margin-top: min(40px, 2.78vw);
}

.p1-f-title {
  margin-top: min(18px, 1.25vw);
}

.p1-f-title h3 {
  font-size: min(30px, 2.08vw);
  font-weight: 500;
  color: #2CA74B;
}

.p1-f-text {
  position: relative;
  z-index: 5;
  padding-left: min(17px, 1.18vw);
  margin-top: min(24px, 1.67vw);
}

.p1-f-text p {
  font-size: min(16px, 1.11vw);
  letter-spacing: normal;
  line-height: 2;
}

.p1-f-span {
  position: absolute;
  bottom: 0;
  right: calc(min(20px, 1.39vw) * -1);
  z-index: 1;
}

.p1-f-span span {
  font-size: min(180px, 12.5vw);
  color: #FFFFFF;
  line-height: 0.9;
}

/* 1440で可変 */
.p1-g-container {
  padding-top: min(110px, 7.64vw);
}

.p1-g-box {
  width: min(1440px, 100vw);
  background-image: url(../image/top-back10.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right;
  margin: 0 auto;
}

.p1-g-item {
  width: min(500px, 34.72vw);
  padding-left: min(25px, 1.74vw);
}

.p1-g-span span {
  font-size: min(180px, 12.5vw);
  color: #F3F3F3;
  line-height: 1;
}

.p1-g-title h3 {
  font-size: min(32px, 2.22vw);
  font-weight: 600;
  line-height: 1.8;
}

.p1-g-text {
  margin-top: min(40px, 2.78vw);
}

.p1-g-text p {
  font-size: min(16px, 1.11vw);
  line-height: 2;
}

/* 1440で可変 */
.p1-h-container {
  padding-top: min(140px, 9.72vw);
}

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

.p1-h-title h2 {
  font-size: min(150px, 10.42vw);
  font-weight: 400;
  color: #F9F3DC;
}

.p1-h-title h2 span {
  font-size: min(150px, 10.42vw);
  font-weight: 400;
  font-family: "Cormorant Garamond", serif;
  color: #83D75D;
}

.p1-h-title p {
  font-size: min(30px, 2.08vw);
  font-weight: 600;
}

.p1-h-box {
  width: min(1440px, 100vw);
  display: flex;
  justify-content: center;
  gap: min(37px, 2.57vw);
  background-image: url(../image/part2.png), url(../image/part3.png), url(../image/top-back11.png);
  background-repeat: no-repeat;
  /* 背景サイズも可変に */
  background-size: min(180px, 12.5vw) auto, min(180px, 12.5vw) auto, cover;
  background-position: left top, right bottom, center center;
  padding-top: min(110px, 7.64vw);
  padding-bottom: min(90px, 6.25vw);
  margin: min(50px, 3.47vw) auto 0;
}

.p1-h-item {
  width: min(396px, 27.5vw);
  background-color: #F6F2E2;
  border: min(5px, 0.35vw) solid #fff;
}

.p1-h-img-box {
  position: relative;
}

.p1-h-h3 {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: min(10px, 0.69vw);
  left: 0;
  z-index: 5;
}

.p1-h-h3 span {
  font-size: min(24px, 1.67vw);
  color: #fff;
}

.p1-h-h3 h3 {
  font-size: min(40px, 2.78vw);
  color: #fff;
}

.p1-h-text {
  background-image: url(../image/part4.png);
  background-repeat: no-repeat;
  background-size: min(38px, 2.64vw) auto;
  background-position: right bottom;
  padding: min(26px, 1.81vw) min(33px, 2.29vw);
}

.p1-h-text span {
  width: 100%;
  display: inline-block;
  font-size: min(16px, 1.11vw);
  font-weight: 600;
  padding: min(8px, 0.56vw) 0;
  border-bottom: min(1px, 0.07vw) dashed #DED356;
}

/* 1350で可変 */
.p1-i-container {
  padding-top: min(72px, 5.33vw);
  padding-bottom: min(130px, 9.63vw);
}

.p1-i-box {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, min(370px, 27.41vw));
  justify-content: center;
  gap: min(26px, 1.93vw) min(24px, 1.78vw);
}

.p1-i-item-box {
  width: min(370px, 27.41vw);
  height: min(256px, 18.96vw);
  position: relative;
  background-color: #F3F3F3;
  padding: min(5px, 0.37vw) min(7px, 0.52vw);
}

.p1-i-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.p1-i-item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: min(1px, 0.07vw) solid #fff;
}

.p1-i-img {
  width: min(124px, 9.19vw);
  height: min(124px, 9.19vw);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #83D75D;
  border-radius: 50%;
}

.p1-i-p {
  margin-top: min(15px, 1.11vw);
}

.p1-i-p p {
  font-size: min(20px, 1.48vw);
  font-weight: 600;
  line-height: 1;
}

.p1-i-img2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  pointer-events: none; 
}

.p1-i-img2 img {
  width: min(38px, 2.81vw);
  height: auto;
}

.p1-i-box .p1-i-item-box:nth-of-type(1) .p1-i-img img {
  width: min(85px, 6.3vw);
  height: auto;
  transform: translateX(min(5px, 0.37vw));
}

.p1-i-box .p1-i-item-box:nth-of-type(2) .p1-i-img img {
  width: min(94px, 6.96vw);
  height: auto;
  transform: translateX(calc(min(5px, 0.37vw) * -1));
}

.p1-i-box .p1-i-item-box:nth-of-type(3) .p1-i-img img {
  width: min(107px, 7.93vw);
  height: auto;
}

.p1-i-box .p1-i-item-box:nth-of-type(4) .p1-i-img img {
  width: min(59px, 4.37vw);
  height: auto;
}

.p1-i-box .p1-i-item-box:nth-of-type(5) .p1-i-img img {
  width: min(85px, 6.3vw);
  height: auto;
}

/* 1440で可変 */
.p1-j {
  margin-bottom: min(150px, 11.11vw);
}

.p1-j-box-box {
  background-color: #F3F3F3;
}

.p1-j-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url(../image/top-back15.png), url(../image/top-back16.png);
  background-repeat: no-repeat;
  background-size: auto 100%, auto 100%;
  background-position: left center, right center;
  padding-top: min(102px, 7.08vw);
  padding-bottom: min(90px, 6.25vw);
}

.p1-j-title {
  text-align: center;
}

.p1-j-title h2 {
  font-size: min(90px, 6.25vw);
  font-weight: 400;
  color: #F1D04E;
}

.p1-j-title h2 span {
  font-size: min(90px, 6.25vw);
  font-weight: 400;
  font-family: "Cormorant Garamond", serif;
  color: #83D75D;
}

.p1-j-title p {
  font-size: min(30px, 2.08vw);
  font-weight: 600;
}

.p1-j-text {
  margin-top: min(48px, 3.33vw);
}

.p1-j-text p {
  font-size: min(16px, 1.11vw);
  font-weight: 600;
  line-height: 2;
}

.p1-j-link {
  width: min(268px, 18.61vw);
  height: min(73px, 5.07vw);
  background-color: #0292AD;
  margin: min(75px, 5.21vw) auto 0;
}

.p1-j-link a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-right: min(56px, 3.89vw);
}

.p1-j-link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: min(56px, 3.89vw);
  height: 1px;
  background-color: #fff;
}

.p1-j-link a span {
  font-size: min(20px, 1.39vw);
  color: #fff;
}



/* クリニック紹介 */
/* 1440で可変 */
.p2-a-container {
  padding-top: min(60px, 4.17vw);
}

.p2-a-box {
  width: min(1288px, 89.44vw);
  position: relative;
  display: flex;
  justify-content: flex-end;
  background-image: url(../image/top-back9.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  padding-top: min(20px, 1.39vw);
  margin: min(40px, 2.78vw) auto 0;
}

.p2-a-box .p1-d-item {
  width: min(435px, 30.21vw);
}

.p2-a-box .p1-d-h3 {
  text-align: center;
  padding-left: 0;
  margin-top: min(30px, 2.08vw);
}

.p2-a-box .p1-d-text {
  width: min(419px, 29.1vw);
  margin-top: min(15px, 1.04vw);
  margin-left: auto;
}

/* 1350で可変 */
.p2-b-container {
  padding-top: min(144px, 10.67vw);
}

.p2-b-box {
  width: min(1280px, 94.81vw);
  display: grid;
  grid-template-columns: repeat(3, min(417px, 30.89vw));
  gap: min(45px, 3.33vw) min(14px, 1.04vw);
  margin: min(120px, 8.89vw) auto 0;
}

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

.p2-b-text {
  width: 100%;
  height: min(92px, 6.81vw);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  background-color: #83D75D;
  padding: min(14px, 1.04vw) min(20px, 1.48vw);
}

.p2-b-item:nth-child(even) .p2-b-text {
  background-color: #02D037; 
}

.p2-b-text h3 {
  font-size: min(20px, 1.48vw);
  font-weight: 400;
  color: #fff;
}

.p2-b-text p {
  font-size: min(16px, 1.19vw);
  color: #fff;
  line-height: 2;
}

.p2-b-text span {
  font-size: min(20px, 1.48vw);
  font-weight: 400;
  color: #fff;
  line-height: 1;
}

/* 1350で可変 */
.p2-c-container {
  padding-top: min(154px, 11.41vw);
}

.p2-c-box {
  width: min(1280px, 94.81vw);
  display: flex;
  justify-content: space-between;
  margin: min(50px, 3.7vw) auto min(80px, 5.93vw);
}

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

.p2-c-title h3 {
  font-size: min(30px, 2.22vw);
  font-weight: 600;
  line-height: 1.5;
}

.p2-c-text {
  margin-top: min(40px, 2.96vw);
}

.p2-c-text p {
  font-size: min(16px, 1.19vw);
  line-height: 2;
}

.p2-c-name {
  text-align: center;
  padding-bottom: min(20px, 1.48vw);
  border-bottom: min(1px, 0.07vw) solid #333;
  margin-top: min(30px, 2.22vw);
}

.p2-c-name h3 {
  font-size: min(36px, 2.67vw);
  font-weight: 600;
}

.p2-c-name span:first-child {
  font-size: min(24px, 1.78vw);
  margin-right: min(10px, 0.74vw);
}

.p2-c-name span:last-child {
  font-size: min(24px, 1.78vw);
  color: #0292AD;
  margin-left: min(45px, 3.33vw);
}

.p2-c-img {
  width: min(512px, 37.93vw);
  box-shadow: min(17px, 1.26vw) min(15px, 1.11vw) 0 0 #83D75D;
  margin: min(40px, 2.96vw) min(17px, 1.26vw) min(15px, 1.11vw) 0;
}

.p2-c-box2 {
  position: relative;
  background-color: #FBF5F0;
  padding: min(42px, 3.11vw) 0 min(62px, 4.59vw);
}

.p2-c-item2 {
  width: min(622px, 46.07vw);
  background-color: #fff;
  padding: min(15px, 1.11vw) min(36px, 2.67vw) min(20px, 1.48vw);
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.p2-c-title2 {
  text-align: center;
  padding-bottom: min(17px, 1.26vw);
  border-bottom: min(1px, 0.07vw) solid #83D75D;
}

.p2-c-title2 h3 {
  font-size: min(24px, 1.78vw);
  font-weight: 600;
  color: #2CA74B;
}

.p2-c-text2 ul {
  width: min(479px, 35.48vw);
  margin: 0 auto;
}

.p2-c-text2 ul li {
  font-size: min(16px, 1.19vw);
  padding: min(15px, 1.11vw) 0 min(15px, 1.11vw) min(90px, 6.67vw);
  border-bottom: min(1px, 0.07vw) dotted #d9d9d9;
}

.p2-c-text2 ul li span {
  width: min(115px, 8.52vw);
  font-size: min(16px, 1.19vw);
  display: inline-block;
}

/* 1350で可変 */
.p2-d-container {
  padding-top: min(154px, 11.41vw);
}

.p2-d-img {
  width: min(830px, 61.48vw);
  box-shadow: min(24px, 1.78vw) min(22px, 1.63vw) 0 0 #83D75D;
  margin: min(70px, 5.19vw) auto 0;
}

.p2-d-box {
  margin-top: min(108px, 8vw);
}

.p2-d-map {
  width: min(877px, 64.96vw);
  height: min(278px, 20.59vw);
  margin: min(60px, 4.44vw) auto 0;
}

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

/* 1350で可変 */
.p2-e-container {
  padding-top: min(154px, 11.41vw);
  padding-bottom: min(648px, 48vw);
}

.p2-e-box {
  width: min(1190px, 88.15vw);
  display: flex;
  justify-content: space-between;
  margin: min(62px, 4.59vw) auto 0;
}

.p2-e-table {
  width: min(587px, 43.48vw);
}

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

.p2-e-table table tr th, 
.p2-e-table table tr td {
  font-size: min(16px, 1.19vw);
  font-weight: 500;
  padding: min(15px, 1.11vw) 0;
  line-height: 1.7;
  border-bottom: min(1px, 0.07vw) solid #777777;
}

.p2-e-table table tr th {
  width: min(190px, 14.07vw);
  text-align: left;
  padding-left: min(5px, 0.37vw);
}

.p2-e-img {
  width: min(529px, 39.19vw);
  margin-top: min(18px, 1.33vw);
}


/* 診療案内 1350で可変 */
.p3-b-container {
  padding-top: min(140px, 10.37vw);
}

.p3-b-box {
  width: min(1280px, 94.81vw);
  display: flex;
  justify-content: space-between;
  margin: min(50px, 3.7vw) auto 0;
}

.p3-b-item {
  width: min(628px, 46.52vw);
}

.p3-b-title {
  margin-top: min(32px, 2.37vw);
}

.p3-b-title h3 {
  font-size: min(30px, 2.22vw);
  font-weight: 600;
  line-height: 1.8;
}

.p3-b-text {
  margin-top: min(45px, 3.33vw);
}

.p3-b-text p {
  font-size: min(16px, 1.19vw);
  line-height: 2;
}

.p3-b-img {
  width: min(622px, 46.07vw);
}

.p3-b-box2 {
  background-color: #FBF5F0;
  padding: min(40px, 2.96vw) 0;
  margin-top: min(40px, 2.96vw);
}

.p3-b-item2 {
  width: min(1167px, 86.44vw);
  background-color: #fff;
  padding: min(17px, 1.26vw) min(27px, 2vw) min(33px, 2.44vw);
  margin: 0 auto;
}

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

.p3-b-title2 span {
  font-size: min(70px, 5.19vw);
  font-family: "Cormorant Garamond", serif;
  color: #83D75D;
  line-height: 1;
}

.p3-b-title2 h3 {
  font-size: min(30px, 2.22vw);
  font-weight: 400;
  color: #fff;
  background-color: #0292AD;
  padding: min(10px, 0.74vw) 0;
}

.p3-b-list ul {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  margin-top: min(24px, 1.78vw);
}

.p3-b-list ul li {
  width: 100%;
  display: flex;
  align-items: center;
  gap: min(16px, 1.19vw);
  padding: min(15px, 1.11vw) 0 0 min(200px, 14.81vw);
}

.p3-b-list ul li:nth-child(even) {
  padding-left: min(135px, 10vw);
}

.p3-b-list ul li img {
  width: min(18px, 1.33vw);
  height: auto;
}

.p3-b-list ul li p {
  font-size: min(16px, 1.19vw);
  font-weight: 500;
}

.p3-b-box3 {
  width: min(1280px, 94.81vw);
  display: flex;
  justify-content: space-between;
  margin: min(62px, 4.59vw) auto 0;
}

.p3-b-item3 {
  width: min(628px, 46.52vw);
  padding-top: min(4px, 0.3vw);
  border-top: min(1px, 0.07vw) solid #333;
}

.p3-b-title3 {
  text-align: center;
  padding: min(5px, 0.37vw) 0;
  border-top: min(1px, 0.07vw) solid #333;
  border-bottom: min(1px, 0.07vw) solid #333;
}

.p3-b-title3 h3 {
  font-size: min(24px, 1.78vw);
  font-weight: 600;
}

.p3-b-text3 {
  margin-top: min(15px, 1.11vw);
}

.p3-b-text3 p {
  font-size: min(16px, 1.19vw);
  font-weight: 500;
  line-height: 2;
} 

.p3-b-text3 p:first-child {
  padding-bottom: min(30px, 2.22vw);
}

.p3-b-text3 p:nth-of-type(2) {
  padding-bottom: min(30px, 2.22vw);
}



/* 診療案内共通 1200で可変 */
.p3-a-container {
  padding-top: min(50px, 4.17vw);
}

.p3-a-box {
  width: min(1020px, 85vw);
  display: grid;
  grid-template-columns: repeat(4, min(230px, 19.17vw));
  gap: min(23px, 1.92vw) min(25px, 2.08vw);
  margin: 0 auto;
}

.p3-a-item {
  width: min(230px, 19.17vw);
  height: min(80px, 6.67vw);
  background-color: #83D75D;
  box-shadow: min(8px, 0.67vw) min(8px, 0.67vw) 0 0 #0292AD;
  transition: all 0.2s ease;
}

.p3-a-item:hover {
  transform: translate(min(8px, 0.67vw), min(8px, 0.67vw));
  box-shadow: 0 0 0 0 #0292AD;
}

.p3-a-item a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(11px, 0.92vw);
}

.p3-a-item a span {
  font-size: min(20px, 1.67vw);
  font-weight: 600;
}

.p3-a-item a img {
  width: min(11px, 0.92vw);
  height: auto; 
  margin-top: min(2px, 0.17vw);
}

.p3-d .p3-b-item3 {
  width: 100%;
}

.p3-d .p3-b-title3 {
  margin-bottom: min(23px, 1.7vw);
}

.p3-d .p3-b-text3 {
  width: min(1120px, 82.96vw);
  padding-top: min(47px, 3.48vw);
  margin: 0 auto;
}

.p3-d-title {
  border-bottom: min(1px, 0.07vw) dotted #333;
}

.p3-d-title h3 {
  font-size: min(24px, 1.78vw);
  font-weight: 600;
}

.p3-d-title h3 span {
  font-size: min(24px, 1.78vw);
  font-weight: 600;
  color: #2CA74B;
}

.p3-d-text {
  padding: min(24px, 1.78vw) min(20px, 1.48vw) 0 min(30px, 2.22vw);
}

.p3-d .p3-d-text p {
  padding-bottom: 0;
}

.p3-e .p3-e-box .p3-e-p {
  padding-top: min(20px, 1.48vw);
}

.p3-f .p3-b-container {
  padding-bottom: min(440px, 32.59vw);
}

.p3-f-p {
  text-align: center;
}

.p3-f-p p {
  font-size: min(16px, 1.19vw);
  font-weight: 500;
}

.p3-f-box-box {
  width: min(1120px, 82.96vw);
  margin: min(60px, 4.44vw) auto 0;
}

.p3-f-title {
  width: min(327px, 24.22vw);
  height: min(57px, 4.22vw);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #83D75D;
}

.p3-f-title span {
  font-size: min(24px, 1.78vw);
  color: #fff;
}

.p3-f .p3-d-title {
  margin-top: min(50px, 3.7vw);
}

.p3-f-box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: min(68px, 5.04vw);
  margin-top: min(50px, 3.7vw);
}

/* align-items: flex-start を打ち消して高さを揃える設定 */
.p3-f-box.p3-f-box3 {
  align-items: stretch;
}

.p3-f-item {
  width: min(513px, 38vw);
  min-height: min(268px, 19.85vw);
  background-color: #F8F8F8;
  padding: min(25px, 1.85vw) min(32px, 2.37vw) min(27px, 2vw);
}

.p3-f-h4 {
  text-align: center;
}

.p3-f-h4 h4 {
  font-size: min(24px, 1.78vw);
  font-weight: 500;
  border-bottom: min(1px, 0.07vw) solid #333;
}

.p3-f-list {
  padding: min(16px, 1.19vw) min(46px, 3.41vw) 0;
}

.p3-f-list ul li {
  display: flex;
  align-items: flex-start;
  gap: min(7px, 0.52vw);
  padding: min(13px, 0.96vw) 0;
  border-bottom: min(1px, 0.07vw) dotted #333;
}

.p3-f-list ul li img {
  width: min(18px, 1.33vw);
  height: auto;
  margin-top: min(4px, 0.3vw);
}

.p3-f-list ul li p {
  font-size: min(16px, 1.19vw);
}

.p3-d-title h3 .p3-f-title-span {
  font-size: min(20px, 1.48vw);
  color: #333;
}

/* 個別クラスのパディング可変設定 */
.p3-f-list.p3-f-list2 {
  padding-left: 0;
  padding-right: 0;
}

.p3-f-list.p3-f-list3 {
  padding-bottom: min(40px, 2.96vw);
}

.p3-f-list.p3-f-list4 {
  padding-left: min(20px, 1.48vw);
  padding-right: min(20px, 1.48vw);
}

.p3-f-list.p3-f-list5 {
  padding-left: min(20px, 1.48vw);
  padding-right: min(20px, 1.48vw);
  padding-bottom: min(40px, 2.96vw);
}

.p3-f-list.p3-f-list6 {
  padding-left: min(10px, 0.74vw);
  padding-right: min(10px, 0.74vw);
}


/* ホワイトニング */
/* 1350で可変 */
.p4-a-container {
  padding-top: min(110px, 8.15vw);
}

.p4-a-box {
  width: min(1280px, 94.81vw);
  display: flex;
  justify-content: space-between;
  margin: min(50px, 3.7vw) auto 0;
}

/* row-reverse の指定 */
.p4-a-box.revrce {
  flex-direction: row-reverse;
}

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

.p4-a-title h3 {
  font-size: min(30px, 2.22vw);
  font-weight: 600;
  line-height: 1.8;
}

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

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

.p4-a-text ul {
  padding: min(20px, 1.48vw) 0;
}

.p4-a-text ul li {
  font-size: min(16px, 1.19vw);
  position: relative;
  padding-left: min(15px, 1.11vw);
}

.p4-a-text ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  font-size: min(16px, 1.19vw);
}

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

/* 1350で可変 */
.p4-b {
  background-color: #FFF9F5;
  padding-top: min(100px, 7.41vw);
  padding-bottom: min(75px, 5.56vw);
  margin-top: min(80px, 5.93vw);
}

.p4-b-container {
  width: min(1280px, 94.81vw);
  border-top: min(1px, 0.07vw) solid #333;
  margin: 0 auto;
}

.p4-b-title {
  text-align: center;
  padding: min(12px, 0.89vw) 0;
  border-top: min(1px, 0.07vw) solid #333;
  border-bottom: min(1px, 0.07vw) solid #333;
  margin-top: min(4px, 0.3vw);
}

.p4-b-title h2 {
  font-size: min(30px, 2.22vw);
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}

.p4-b-p {
  text-align: center;
  margin-top: min(25px, 1.85vw);
}

.p4-b-p p {
  font-size: min(16px, 1.19vw);
  font-weight: 500;
}

.p4-b-span {
  width: min(839px, 62.15vw);
  height: min(57px, 4.22vw);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #83D75D;
  margin: min(43px, 3.19vw) auto 0;
}

.p4-b-span span {
  font-size: min(24px, 1.78vw);
  color: #fff;
}

.p4-b-box {
  display: flex;
  justify-content: center;
  gap: min(148px, 10.96vw);
  margin: min(65px, 4.81vw) auto 0;
}

.p4-b-item {
  width: min(513px, 38vw);
  height: min(342px, 25.33vw);
  background-color: #fff;
  padding: min(25px, 1.85vw) min(32px, 2.37vw);
  border: min(1px, 0.07vw) solid #83D75D;
}

.p4-b-title2 {
  text-align: center;
  padding: min(5px, 0.37vw) 0;
  border-bottom: min(1px, 0.07vw) solid #333;
}

.p4-b-title2 h3 {
  font-size: min(24px, 1.78vw);
  font-weight: 600;
}

.p4-b-img {
  width: min(108px, 8vw);
  margin: min(27px, 2vw) auto 0;
}

.p4-b-item ul {
  margin-top: min(20px, 1.48vw);
}

.p4-b-item ul li {
  font-size: min(16px, 1.19vw);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: min(10px, 0.74vw);
  padding: min(10px, 0.74vw) 0 min(5px, 0.37vw) min(46px, 3.41vw);
}

.p4-b-item ul li img {
  width: min(18px, 1.33vw);
  height: auto;
  margin-top: min(2px, 0.15vw);
}

.p4-b-list {
  padding-top: min(20px, 1.48vw);
}

.p4-b-text {
  text-align: center;
  margin-top: min(54px, 4vw);
}

.p4-b-text h4 {
  font-size: min(24px, 1.78vw);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p4-b-text h4::before,
.p4-b-text h4::after {
  content: "";
  width: min(2px, 0.15vw);
  height: min(20px, 1.48vw);
  background-color: #333;
}

.p4-b-text h4::before {
  transform: rotate(-45deg);
  margin-right: min(13px, 0.96vw);
}

.p4-b-text h4::after {
  transform: rotate(45deg);
}

.p4-b-text p {
  font-size: min(16px, 1.19vw);
  font-weight: 500;
  padding-top: min(10px, 0.74vw);
}

/* 1350で可変 */
.p4-c-container {
  width: min(1280px, 94.81vw);
  border-top: min(1px, 0.07vw) solid #333;
  margin: min(110px, 8.15vw) auto 0;
}

.p4-c-box {
  display: flex;
  justify-content: space-between;
  margin-top: min(40px, 2.96vw);
}

.p4-c-item {
  width: min(610px, 45.19vw);
  padding: min(27px, 2vw) min(20px, 1.48vw) min(23px, 1.7vw);
  border: min(1px, 0.07vw) solid #2CA74B;
}

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

.p4-c-title h3 {
  font-size: min(24px, 1.78vw);
  font-weight: 600;
}

.p4-c-img {
  margin-top: min(20px, 1.48vw);
}

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

.p4-c-text p {
  font-size: min(16px, 1.19vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

/* 1350で可変 */
.p4-d-container {
  padding-top: min(200px, 14.81vw);
  padding-bottom: min(623px, 46.15vw);
}

.p4-d-box {
  width: min(1170px, 86.67vw);
  margin: min(60px, 4.44vw) auto 0;
}

.p4-d-item {
  width: min(1133px, 83.93vw);
  min-height: min(158px, 11.7vw);
  display: flex;
  align-items: center;
  position: relative;
  background-color: #FFF9F5;
  padding: 0 min(100px, 7.41vw);
  margin-left: min(38px, 2.81vw);
}

.p4-d-item p {
  font-size: min(16px, 1.19vw);
  font-weight: 500;
  line-height: 1.8;
}

.p4-d-item p span {
  font-size: min(14px, 1.04vw);
  font-weight: 500;
  color: #FF0000;
  line-height: 1.8;
}

.p4-d-span {
  width: min(82px, 6.07vw);
  height: min(82px, 6.07vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #83D75D;
  position: absolute;
  top: 50%;
  left: max(-38px, -2.81vw);
  z-index: 5;
  transform: translateY(-50%);
}

.p4-d-span span {
  font-size: min(20px, 1.48vw);
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  line-height: 1;
}

.p4-d-span .number {
  font-size: min(40px, 2.96vw);
  font-family: "Noto Serif JP", serif;
}

.p4-d-img {
  width: min(87px, 6.44vw);
  margin: min(15px, 1.11vw) auto min(30px, 2.22vw);
}


/* 審美歯科 */
/* 1350で可変 */
.p5-a-p {
  padding-top: min(30px, 2.22vw);
}


/* 1350で可変 */
.p5-b-container {
  width: min(1280px, 94.81vw);
  border-top: min(1px, 0.07vw) solid #333;
  margin: min(166px, 12.3vw) auto 0;
}

.p5-b-box {
  width: min(995px, 73.7vw);
  display: grid;
  grid-template-columns: repeat(2, min(449px, 33.26vw));
  gap: min(27px, 2vw) min(100px, 7.41vw);
  margin: min(30px, 2.22vw) auto 0;
}

.p5-b-item {
  width: min(449px, 33.26vw);
  border: min(1px, 0.07vw) solid #83D75D;
}

.p5-b-text {
  height: min(79px, 5.85vw);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p5-b-text p {
  font-size: min(20px, 1.48vw);
  font-weight: 500;
}


/* 1350で可変 */
.p5-c.p4-b {
  margin: min(129px, 9.56vw) 0 min(476px, 35.26vw);
}

.p5-c-box {
  display: flex;
  justify-content: space-between;
}

.p5-c-item {
  width: min(310px, 22.96vw);
  background-color: #fff;
  padding: 0 min(20px, 1.48vw) min(14px, 1.04vw);
  border: min(1px, 0.07vw) solid #83D75D;
  margin-top: min(57px, 4.22vw);
}

.p5-c-img1 {
  width: min(237px, 17.56vw);
  margin: 0 auto min(37px, 2.74vw);
}

.p5-c-img2 {
  width: min(250px, 18.52vw);
  margin: min(9px, 0.67vw) auto min(37px, 2.74vw);
}

.p5-c-img3 {
  width: min(275px, 20.37vw);
  margin: min(18px, 1.33vw) auto min(17px, 1.26vw);
}

.p5-c-img4 {
  width: min(220px, 16.3vw);
  margin: 0 auto min(14px, 1.04vw);
}

.p5-c-title {
  text-align: center;
  padding-bottom: min(14px, 1.04vw);
  border-bottom: min(1px, 0.07vw) solid #333;
}

.p5-c-title h3 {
  font-size: min(24px, 1.78vw);
  font-weight: 600;
}

.p5-c-title span {
  font-size: min(20px, 1.48vw);
  font-weight: 600;
}

.p5-c-text {
  margin-top: min(12px, 0.89vw);
}

.p5-c-text p {
  font-size: min(16px, 1.19vw);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.p5-c .p4-b-text h4::after {
  margin-left: min(13px, 0.96vw);
}


/* 予防歯科 */
/* 1350で可変 */
.p6-a-p {
  padding-top: min(25px, 1.85vw);
}

/* 1350で可変 */
.p6-b-container {
  width: min(1280px, 94.81vw);
  margin: min(135px, 10vw) auto 0;
}

.p6-b-p {
  text-align: center;
  border-bottom: min(1px, 0.07vw) solid #333;
}

.p6-b-p p {
  font-size: min(96px, 7.11vw);
  font-family: "Cormorant Garamond", serif;
  color: #F9F3DC;
  line-height: 1;
}

.p6-b-p p span {
  font-size: min(96px, 7.11vw);
  font-family: "Cormorant Garamond", serif;  
  color: #83D75D;
  line-height: 1;
}

.p6-b-box-box {
  margin-top: min(35px, 2.59vw);
}

.p6-b-box {
  display: flex;
  justify-content: space-between;
  padding-top: min(33px, 2.44vw);
  padding-bottom: min(35px, 2.59vw);
  border-bottom: min(1px, 0.07vw) dotted #333;
}

.p6-b-box.revrce {
  flex-direction: row-reverse;
}

.p6-b-img {
  width: min(564px, 41.78vw);
}

.p6-b-item {
  width: min(628px, 46.52vw);
}

.p6-b-title h3 {
  font-size: min(30px, 2.22vw);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: min(27px, 2vw);
}

.p6-b-title h3 span {
  font-size: min(64px, 4.74vw);
  font-weight: 600;
  color: #02D037;
}

.p6-b-text {
  margin-top: min(14px, 1.04vw);
}

.p6-b-text p {
  font-size: min(16px, 1.19vw);
  font-weight: 500;
  line-height: 1.8;
}

/* 1350で可変 */
.p6-c {
  background-color: #FFF9F5;
}

.p6-c-container {
  width: min(1280px, 94.81vw);
  padding-top: min(15px, 1.11vw);
  padding-bottom: min(90px, 6.67vw);
  margin: min(88px, 6.52vw) auto 0;
}

.p6-c-box {
  display: flex;
  justify-content: space-between;
  margin-top: min(90px, 6.67vw);
}

.p6-c-item {
  width: min(310px, 22.96vw);
  background-color: #fff;
  padding: min(10px, 0.74vw) min(12px, 0.89vw) min(30px, 2.22vw);
  border: min(1px, 0.07vw) solid #83D75D;
}

.p6-c-numner {
  text-align: center;
  margin-top: min(10px, 0.74vw);
}

.p6-c-numner span {
  font-size: min(40px, 2.96vw);
  font-weight: 600;
  color: #83D75D;
}

.p6-c-text {
  display: flex;
  justify-content: center;
  margin-top: min(10px, 0.74vw);
}

.p6-c-text p {
  font-size: min(16px, 1.19vw);
  font-weight: 500;
  line-height: 1.5;
}

.p6-c-p {
  padding-left: min(150px, 11.11vw);
  margin-top: min(108px, 8vw);
}

.p6-c-p p {
  font-size: min(16px, 1.19vw);
  font-weight: 500;
  line-height: 2;
}

/* 1350で可変 */
.p6-d-container {
  width: min(1280px, 94.81vw);
  margin: min(70px, 5.19vw) auto min(650px, 48.15vw);
}

.p6-d-box-box {
  margin-top: min(16px, 1.19vw);
}

.p6-d-box {
  width: min(1080px, 80vw);
  display: flex;
  justify-content: space-between;
  padding: min(16px, 1.19vw) min(26px, 1.93vw) min(15px, 1.11vw);
  border: min(1px, 0.07vw) solid #83D75D;
  margin: min(36px, 2.67vw) auto 0;
}

.p6-d-item {
  width: min(705px, 52.22vw);
}

.p6-d-img {
  width: min(292px, 21.63vw);
}

.p6-d-title {
  position: relative;
  display: inline-block;
  line-height: 1;
  margin-top: min(25px, 1.85vw);
}

.p6-d-title h3 {
  font-size: min(24px, 1.78vw);
  font-weight: 600;
  position: relative;
  z-index: 2;
  margin: 0;
}

.p6-d-title span {
  font-size: min(40px, 2.96vw);
  font-weight: 600;
  color: #D1F0C3;
  position: absolute;
  left: 0;
  bottom: min(5px, 0.37vw);
  z-index: 1;
  white-space: nowrap;
  font-family: "Cormorant Garamond", serif;
}

.p6-d-text {
  margin-top: min(40px, 2.96vw);
}

.p6-d-text p {
  font-size: min(16px, 1.19vw);
  font-weight: 500;
  line-height: 2;
}


/* 料金表 */
/* 1350で可変 */
.p7-a {
  margin-top: min(60px, 4.44vw);
}

.p7-a-container {
  background-color: #FBF5F0;
  padding-top: min(34px, 2.52vw);
  margin-top: min(60px, 4.44vw);
}

.p7-a-box-box {
  width: min(1280px, 94.81vw);
  margin: 0 auto;
}

.p7-a-p {
  text-align: center;
  border-bottom: min(1px, 0.07vw) solid #333;
}

.p7-a-p p {
  font-size: min(32px, 2.37vw);
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  color: #83D75D;
}

.p7-a-box {
  width: min(740px, 54.81vw);
  padding-bottom: min(82px, 6.07vw);
  margin: min(57px, 4.22vw) auto 0;
}

.p7-a-item {
  display: flex;
  align-items: center;
  padding: min(20px, 1.48vw) 0;
  border-bottom: min(1px, 0.07vw) dashed #777777;
}

.p7-a-item span {
  font-size: min(16px, 1.19vw);
  font-weight: 500;
}

.p7-a-nemu {
  width: min(540px, 40vw);
}

.p7-b-container {
  padding-top: min(76px, 5.63vw);
}

.p7-b-box {
  padding-bottom: min(120px, 8.89vw);
  margin: min(57px, 4.22vw) auto 0;
}

.p7-c-container {
  background-color: #FBF5F0;
  padding-top: min(80px, 5.93vw);
}

.p7-c-box {
  padding-bottom: min(22px, 1.63vw);
  margin: min(27px, 2vw) auto 0;
}

.p7-d-box {
  padding-bottom: min(60px, 4.44vw);
  margin: min(27px, 2vw) auto 0;
}

.p7-c-span {
  width: min(193px, 14.3vw);
  height: min(45px, 3.33vw);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #83D75D;
  margin-top: min(50px, 3.7vw);
  margin-left: min(186px, 13.78vw);
}

.p7-c-span span {
  font-size: min(24px, 1.78vw);
  color: #fff;
}

.p7-e-container {
  background-color: #fff;
  padding-top: min(80px, 5.93vw);
}

.p7-e-box {
  padding-bottom: min(22px, 1.63vw);
  margin: min(27px, 2vw) auto 0;
}

.p7-e-box .p7-a-item {
  justify-content: space-between;
  padding-right: min(145px, 10.74vw);
}

.p7-e-box .p7-a-nemu {
  width: auto;
}

/* 1350で可変 */
.p7-f-container {
  width: min(1280px, 94.81vw);
  background-color: #F3F3F3;
  padding-top: min(24px, 1.78vw);
  padding-bottom: min(62px, 4.59vw);
  margin: min(120px, 8.89vw) auto min(460px, 34.07vw);
}

.p7-f-box {
  margin-top: min(30px, 2.22vw);
}

.p7-f-text {
  width: min(1025px, 75.93vw);
  margin: 0 auto;
}

.p7-f-text p {
  font-size: min(16px, 1.19vw);
  font-weight: 500;
  line-height: 1.8;
}

.p7-f-item {
  width: min(480px, 35.56vw);
  margin: min(40px, 2.96vw) auto 0;
}

.p7-f-p p {
  font-size: min(16px, 1.19vw);
  font-weight: 500;
  line-height: 1.8;
}

.p7-f-link {
  width: min(445px, 32.96vw);
  height: min(67px, 4.96vw);
  background-color: #002C6D;
  margin-top: min(10px, 0.74vw);
}

.p7-f-link a {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p7-f-link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: min(80px, 5.93vw);
  width: min(15px, 1.11vw);
  height: min(15px, 1.11vw);
  transform: translateY(-25%);
  background-image: url(../image/part14.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p7-f-link a span {
  font-size: min(20px, 1.48vw);
  font-weight: 400;
  color: #fff;
}


/* 採用情報 */
/* 1350で可変 */
.p8-a-container {
  padding-top: min(80px, 5.93vw);
  padding-bottom: min(430px, 31.85vw);
}

.p8-a-box {
  width: min(1030px, 76.3vw);
  margin: min(80px, 5.93vw) auto 0;
}

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

.p8-a-table table {
  width: 100%;
  border-collapse: collapse;
  border: min(1px, 0.07vw) solid #83D75D;
}

.p8-a-table table th, .p8-a-table table td {
  font-size: min(16px, 1.19vw);
  font-weight: 500;
  line-height: 1.5;
  padding-top: min(15px, 1.11vw);
  padding-bottom: min(15px, 1.11vw);
  border-bottom: min(1px, 0.07vw) solid #83D75D;
}

.p8-a-table table th {
  width: min(220px, 16.3vw);
  vertical-align: top;
  border-right: min(1px, 0.07vw) solid #83D75D;
}

.p8-a-table table td {
  padding-left: min(80px, 5.93vw);
  padding-right: min(30px, 2.22vw);
}

.p8-a-table table td a {
  text-decoration: underline;
  color: inherit;
}

.p8-a-table table td a:hover {
  text-decoration: none;
}


/* インプラント */
/* 1350で可変 */
.p9-b-container {
  padding-top: min(90px, 6.67vw);
  padding-bottom: min(200px, 14.81vw);
}

.p9-b-box {
  width: min(1280px, 94.81vw);
  padding-top: min(4px, 0.3vw);
  border-top: 1px solid #333;
  margin: 0 auto;
}

.qa-section {
  width: min(1240px, 91.85vw);
  padding: min(20px, 1.48vw);
  margin: min(50px, 3.7vw) auto 0;
}

.qa-item {
  margin-bottom: min(20px, 1.48vw);
  padding-bottom: min(16px, 1.19vw);
}

.qa-question {
  font-size: min(20px, 1.48vw);
  font-weight: 600;
  margin-bottom: min(6px, 0.44vw);
  background-color: #83D75D;
  padding: min(15px, 1.11vw) min(20px, 1.48vw);
}

.qa-answer {
  font-size: min(18px, 1.33vw);
  color: #555;
  line-height: 1.6;
  padding: min(15px, 1.11vw) min(20px, 1.48vw);
  margin-top: min(10px, 0.74vw);
}

.qa-label {
  color: #2CA74B;
  font-weight: 600;
  font-size: min(18px, 1.33vw);
  margin-right: min(6px, 0.44vw);
}


/* 下層共通メイン 1200で可変 */
.sub-v {
  width: 100%;
  height: min(450px, 37.5vw);
  background-image: url(../image/sub-back.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.sub-v-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub-v-title {
  text-align: center;
}

.sub-v-title h1 {
  font-size: min(50px, 4.17vw);
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.sub-v-title span {
  font-size: min(40px, 3.33vw);
  font-family: "Cormorant Garamond", serif;
  color: #83D75D;
}

/* 下層共通タイトル 1350で可変 */
.sub-title {
  width: min(1280px, 94.81vw);
  text-align: center;
  background-image: url(../image/part8.png), url(../image/part9.png), url(../image/part10.png);
  background-repeat: no-repeat;
  background-size: min(45px, 3.33vw) auto, min(45px, 3.33vw) auto, cover;
  background-position: left top, right top, center center;
  padding: min(45px, 3.33vw) 0;
  border-bottom: min(3px, 0.22vw) solid #83D75D;
  margin: 0 auto;
}

.sub-title h2 {
  font-size: min(40px, 2.96vw);
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}



/* ナビゲーション共通 */
/* 1100で可変 */
.nav {
  background-color: #fff;
}

.nav-box ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  padding-top: min(40px, 3.33vw);
}

.nav-box ul li {
  padding-bottom: min(40px, 3.33vw);
  position: relative;
}

.nav-box ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(5px, 0.42vw);
  text-decoration: none;
  color: #333;
}

.nav-box ul li .ja {
  font-size: min(18px, 1.5vw);
}

.nav-box ul li .en {
  font-size: min(14px, 1.17vw);
  color: #83D75D;
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.nav-box ul li.is-active .en,
.nav-box ul li a:hover .en {
  position: relative;
}

.nav-box ul li.is-active .en::after,
.nav-box ul li a:hover .en::after {
  content: "";
  position: absolute;
  top: calc(100% + min(8px, 0.67vw));
  left: 50%;
  transform: translateX(-50%);
  width: min(24px, 2vw);
  height: min(5px, 0.42vw);
  background-color: #83D75D;
}

.nav-box ul li .sub-menu {
  position: absolute;
  top: min(98px, 8.17vw);
  left: 50%;
  transform: translateX(-50%);
  width: min(282px, 23.5vw);
  background-color: rgba(131, 215, 93, 0.5);
  padding: min(15px, 1.25vw) min(44px, 3.67vw);
  margin: 0;
  list-style: none;
  z-index: 999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-box ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.nav-box ul li .sub-menu li {
  width: 100%;
  padding-bottom: 0;
  border-bottom: min(1px, 0.08vw) dashed #fff;
}

.nav-box ul li .sub-menu li a {
  padding: min(15px, 1.25vw) 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: min(15px, 1.25vw);
  text-decoration: none;
  color: #fff;
}

.nav-box ul li .sub-menu li a img {
  width: min(12px, 1vw);
  height: auto;
}

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


/* フッター */
/* 1350で可変 */
.footer-container {
  padding-bottom: min(95px, 7.04vw);
}

.footer-box {
  display: flex;
  justify-content: center;
  gap: min(116px, 8.59vw);
}

.footer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  width: min(500px, 37.04vw);
}

.footer-p {
  display: flex;
  align-items: center;
  gap: min(8px, 0.59vw);
  margin-top: min(35px, 2.59vw);
}

.footer-p img {
  width: min(23px, 1.7vw);
  height: auto;
}

.footer-p p {
  font-size: min(16px, 1.19vw);
}

.footer-link {
  display: flex;
  margin-top: min(35px, 2.59vw);
}

.footer-tel {
  width: min(269px, 19.93vw);
}

.footer-web {
  width: min(159px, 11.78vw);
}

.footer-link2 {
  background-color: #F3F3F3;
  padding: min(23px, 1.92vw) 0;
}

.footer-link2 img {
  width: min(531px, 44.25vw);
  height: auto;
  margin: 0 auto;
}

.footer-map {
  width: 100%;
  height: min(278px, 23.17vw);
}

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

.footer-nav {
  width: min(1114px, 92.83vw);
  margin: min(57px, 4.75vw) auto min(45px, 3.75vw);
}

.f-nav-inner {
  display: flex;
  justify-content: flex-start;
  gap: min(127px, 10.58vw);
}

.f-nav-group:nth-of-type(1) {
  width: min(384px, 32vw);
}

.f-nav-group:nth-of-type(2) {
  width: min(603px, 50.25vw);
}

.f-nav-title {
  font-size: min(30px, 2.5vw);
  font-weight: 400;
  font-family: "Cormorant Garamond", serif;
  padding: min(8px, 0.67vw) 0;
  border-bottom: min(1px, 0.08vw) solid #83D75D;
  margin-bottom: min(30px, 2.5vw);
  color: #F1D04E;
}

.f-nav-title span {
  font-family: "Cormorant Garamond", serif;
  color: #83D75D;
  font-size: min(30px, 2.5vw);
}

.f-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.f-nav-group:nth-of-type(2) .f-nav-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: min(20px, 1.67vw);
  row-gap: min(25px, 2.08vw);
}

.f-nav-group:nth-of-type(1) .f-nav-list {
  display: flex;
  flex-direction: column;
  gap: min(25px, 2.08vw);
}

.f-nav-list li a {
  display: flex;
  align-items: center;
  gap: min(10px, 0.83vw);
  text-decoration: none;
  color: #333;
}

.f-nav-list li a img {
  width: min(12px, 1vw);
  height: auto;
}

.f-nav-list li a p {
  font-size: min(16px, 1.33vw);
  font-weight: 500;
  line-height: 1;
}

.copy-right {
  text-align: center;
  background-color: #83D75D;
  padding: min(20px, 1.67vw) 0;
}

.copy-right p {
  font-size: min(16px, 1.33vw);
  font-weight: 600;
}

/* ===== SP固定フッター ===== */
.sp-fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

@media screen and (max-width: 767px) {
  .sp-fixed-footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  body {
    padding-bottom: 70px;
  }
}

.sp-fixed-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 10px 0;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
}

.sp-fixed-item span {
  color: #fff;
}

.sp-fixed-item img {
  width: 20px;
  height: auto;
}

.sp-fixed-item.tel {
  background: #2CA74B;
}

.sp-fixed-item.tel img {
  width: 32px;
}

.sp-fixed-item.web {
  background: #0292AD;
}

.sp-fixed-item.web img {
  width: 40px;
}

.sp-fixed-item.access {
  background: #F1D04E;
}

.sp-fixed-item.access img {
  width: 25px;
}

.sp-fixed-item.top {
  background: #02D037;
}

.sp-fixed-item.top img {
  width: 20px;
}

.sp-fixed-item:active {
  opacity: 0.7;
}

/* トップに戻る */
.p-pagetop {
  position: fixed;
  right: min(38px, 3.17vw);
  bottom: min(148px, 12.33vw);
  z-index: 100;
  width: min(84px, 7vw);
  height: min(84px, 7vw);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.p-pagetop a {
  display: block;
  width: 100%;
  height: 100%;
}

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

.p-pagetop:hover {
  opacity: 0.7;
  transform: translateY(min(-5px, -0.42vw));
}





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

.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) {
  /* 全体 */
  .pc, .nav {
    display: none;
  }

  .sp {
    display: block;
  }

  /* ヘッダー */
  .header-a {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 46px;
    z-index: 100;
    transition: transform 0.4s ease;
  }

  .header-a-container {
    width: 100%;
    height: 100%;
    padding-left: 9px;
    padding-right: 4px;
  }

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

  .header-a-logo {
    width: 191px;
    margin-top: 0;
    margin-bottom: 5px;
  }

  .header-a-link {
    display: flex;
  }

  .header-a-tel {
    display: none;
  }

  .header-a-web {
    display: none;
  }

  .header-a-map {
    display: none;
  }

  .header-a-map img {
    display: none;
  }

  /* ヘッダー2 1100で可変 */
  .header-b {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 46px;
    z-index: 110;
    background-color: #fff;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
  }

  .header-b-container {
    width: 100%;
    height: 100%;
    padding-left: 9px;
    padding-right: 4px;
  }

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

  .header-b-logo {
    width: 191px;
    margin-top: 0;
    margin-bottom: 5px;
  }

  .header-b-item {
    display: flex;
    align-items: center;
  }

  .header-b-tel {
    display: none;
  }

  .header-b-web {
    display: none;
  }

  .header-b-map {
    display: none;
  }

  /* ヘッダー切り替えのクラス */
  .header-a.is-hide {
    transform: translateY(-100%);
  }

  .header-b.is-show {
    transform: translateY(0);
  }

  /* ハンバーガーメニュー 1100で可変 */
  .nav-btn {
    width: 41px;
    height: 41px;
    background-color: #83D75D;
    border: none;
    cursor: pointer;
    z-index: 130;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    position: relative;
  }

  .nav-btn .burger-lines {
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 23px;
    height: 11.5px;
  }

  .nav-btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: #fff;
    transition: all 0.3s ease;
  }

  .nav-btn span:nth-child(1) { top: 0; }
  .nav-btn span:nth-child(2) { top: 5.5px; }
  .nav-btn span:nth-child(3) { top: 11px; }

  .nav-btn::after {
    content: "MENU";
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 10px;
    font-family: "Noto Serif JP", serif;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    text-align: center;
  }

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

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

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

  /* メニュー画面 1000で可変 */
  .sp-nav {
    position: fixed;
    top: 0;
    right: 0;
    max-width: 500px;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 90;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
  }

  .sp-nav.is-active {
    transform: translateX(0);
  }

  .sp-nav-inner {
    flex-direction: column;
    gap: 20px;
    padding: 60px 20px 30px;
  }

  .sp-nav-group {
    width: 100%;
    margin-bottom: 0;
  }

  .sp-nav-group:last-child ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-nav-title {
    font-size: 24px;
    font-family: "Cormorant Garamond", serif;
    color: #F1D04E;
    margin-bottom: 10px;
    border-bottom: 1px solid #83D75D;
  }

  .sp-nav-title span {
    font-family: "Cormorant Garamond", serif;
    color: #83D75D;
  }

  .sp-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .sp-nav ul li {
    margin-bottom: 10px;
  }

  .sp-nav ul li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
  }

  .sp-nav ul li a img {
    width: 10px;
    height: auto;
    margin-right: 10px;
    object-fit: contain;
  }

  .sp-nav ul li a p {
    font-size: 16px;
    font-weight: 500;
  }


  /* AIの設定 */
  .side-banners {
    position: fixed;
    bottom: 75px;
    right: 10px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .side-banners.is-show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .side-banner-item {
    width: 152px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .side-banner-item:hover {
    transform: translateY(0);
  }

  .side-banner-item img {
    width: 100%;
    height: auto;
    display: block;
  }


  /* トップ */
  /* 1200で可変 */
  .main-v {
    width: 100%;
    height: 720px;
    position: relative;
    overflow: hidden;
  }

  .main-v-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    z-index: 1;
  }

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

  .slide1 { background-image: url(../image/top-back1.png); }
  .slide2 { background-image: url(../image/top-back2.png); }
  .slide3 { background-image: url(../image/top-back3.png); }

  .main-v-container {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 155px;
  }

  .main-v-title h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .main-v-title h1 span {
    display: inline-block;
    font-size: 26px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    padding-bottom: 5px;
    border-bottom: 1px solid #fff;
    margin-bottom: 10px;
  }

  .main-v-text {
    text-align: center;
    margin-top: 30px;
  }

  .main-v-text p {
    font-size: 18px;
    color: #fff;
    line-height: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .main-v-box {
    position: absolute;
    bottom: 100px;
    left: -10px;
    z-index: 10;
    display: flex;
  }

  .main-v-item-box {
    width: 205px;
    height: 195px;
  }

  .main-v-item-box:first-child {
    background-image: url(../image/top-back13.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

  .main-v-item-box:last-child {
    background-image: url(../image/top-back14.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-left: min(-30px, -2.5vw);
  }

  .main-v-item {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .main-v-item p {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    line-height: 1.4;
  }

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

  /* 1200で可変 */
  .p1-a-map {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 72px 0 53px;
  }

  .p1-a-map p {
    font-size: 16px;
    font-weight: 500;
  }

  .p1-a-map img {
    width: 23px;
    height: auto;
  }

  .p1-a-container {
    padding: 48px 0 130px;
  }

  .p1-a-box {
    width: 96%;
    flex-direction: column;
    align-items: center;
    gap: 70px;
    margin: 0 auto;
  }

  .p1-a-title {
    text-align: center;
    margin-bottom: 26px;
  }

  .p1-a-title h2 {
    font-size: 40px;
    color: #02D037;
  }

  .p1-a-news {
    max-width: 400px;
    width: 100%;
  }

  .news-scroll-box {
    height: 167px;
    overflow-y: auto;
    padding-right: 8px;
  }

  .news-scroll-box::-webkit-scrollbar {
    width: 5px;
  }

  .news-scroll-box::-webkit-scrollbar-track {
    background: transparent;
  }

  .news-scroll-box::-webkit-scrollbar-thumb {
    background: rgba(102, 102, 102, 0.6);
  }

  .news-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .news-list li:last-child {
    border-bottom: none;
  }

  .news-list li a {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 0;
    font-size: 16px;
  }

  .news-list li .date {
    width: 100%;
    flex-shrink: 0;
  }

  .news-list li .title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

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

  .schedule-table {
    width: 356px;
    border-collapse: collapse;
    border: 1px solid #83D75D;
    margin: 0 auto;
  }

  .schedule-table th {
    background-color: #83D75D;
    font-weight: 500;
    padding: 7px 0;
    font-size: 15px;
    border: none;
  }

  .schedule-table td {
    text-align: center;
    padding: 9px 0;
    font-size: 15px;
    font-weight: 500;
    color: #83D75D;
    background-color: #fff;
    border-bottom: 1px solid #83D75D;
  }

  .schedule-table tr:last-child td {
    border-bottom: none;
  }

  .schedule-table td.time {
    font-size: 15px;
    color: #333;
    width: 114px;
    text-align: center;
    border-right: none;
  }

  .schedule-table td.off {
    color: #333;
    font-size: 15px;
  }

  .schedule-table td.tri, 
  .schedule-info .tri {
    color: #d4bc40;
  }

  .schedule-info {
    width: 356px;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0 auto;
  }

  /* 1440で可変 */
  .p1-b {
    overflow: visible;
  }

  .p1-b-container {
    padding-bottom: 84px;
  }

  .p1-b-box {
    position: relative;
    display: flex;
    justify-content: center;
    background-image: url(../image/top-back8.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding-top: 252px;
    padding-bottom: 25px;
  }

  .p1-b-title {
    transform: translateX(0);
  }

  .p1-b-title h2 {
    display: flex;
    align-items: flex-start;
    gap: 42px;
  }

  .p1-b-title span {
    display: inline-block;
    font-size: 24px;
    writing-mode: vertical-rl;
    background-color: #fff;
    box-shadow: 6px 6px 0 0 #0292AD;
    padding: 10px 20px 15px;
  }

  .p1-b-part {
    width: 272px;
    height: 272px;
    position: absolute;
    top: -80px;
    right: 20px;
    z-index: 1;
    pointer-events: none;
    /* 子要素を中央に集めるための設定 */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .circle-text {
    width: 100%;
    height: 100%;
    position: relative;
    animation: rotation 20s linear infinite;
  }

  .circle-text span {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: center 136px;
    font-size: 50px;
    font-family: "Cormorant Garamond", serif;
    color: #DED356;
    line-height: 1;
  }

  @keyframes rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* 1350で可変 */
  .p1-b-box2 {
    width: 94%;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 55px auto 0;
  }

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

  .p1-b-h3 h3 {
    font-size: 24px;
    font-weight: 600;
  }

  .p1-b-text {
    margin-top: 30px;
  }

  .p1-b-text p {
    font-size: 16px;
    line-height: 1.8;
  }

  .p1-b-img-box {
    max-width: 400px;
    width: 100%;
    position: relative;
    z-index: 5;
    margin-top: 0;
  }

  .p1-b-name {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid #333;
  }

  .p1-b-name h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
  }

  .p1-b-name span:first-child {
    font-size: 24px;
    margin-right: 10px;
  }

  .p1-b-name span:last-child {
    font-size: 24px;
    color: #0292AD;
    margin-left: 0;
  }

  /* 1440で可変 */
  .p1-c-container {
    padding-bottom: 44px;
  }

  .p1-c-box {
    width: 100%;
    display: flex;
    margin: 0 auto;
  }

  .p1-c-title {
    display: none;
  }

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

  .p1-c-text-box {
    width: 94%;
    flex-direction: column-reverse;
    align-items: center;
    margin: 0 auto;
  }

  .p1-c-text {
    width: 100%;
    position: relative;
  }

  .p1-c-h3 {
    width: 300px;
    position: relative;
    z-index: 5;
    margin: 0 auto;
  }

  .p1-c-h3 h3 {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.10em;
  }

  .p1-c-p {
    width: 100%;
    margin-top: 28px;
    position: relative;
    z-index: 5;
  }

  .p1-c-p p {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.10em;
  }

  .p1-c-span {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    z-index: 1;
  }

  .p1-c-span span {
    font-size: 96px;
    color: #F3F3F3;
  }

  .p1-c-img2 {
    width: 335px;
    position: relative;
    z-index: 5;
    margin-top: -70px;
  }

  /* 1440で可変 */
  .p1-d-box {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    background-image: url(../image/sp-top-img2.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding-top: 216px;
    padding-right: 0;
    margin: 0 auto;
  }

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

  .p1-d-title span {
    display: inline-block;
    font-size: 30px;
    background-color: #fff;
    box-shadow: 5px 5px 0 0 #F1D04E;
    padding: 6px 18px;
    margin-bottom: 20px;
  }

  .p1-d-title h2 {
    display: inline-block;
    font-size: 40px;
    font-weight: 600;
    color: #F1D04E;
    background-color: #333;
    box-shadow: 5px 5px 0 0 #F1D04E;
    line-height: 1;
    padding-top: 6px;
  }

  .p1-d-title h2 span {
    color: #fff;
    background-color: transparent;
    box-shadow: none;
    padding: 0 0 0 20px;
    margin-bottom: 0;
    font-size: 30px;
  }

  .p1-d-h3 {
    position: relative;
    z-index: 5;
    padding-left: 0;
    margin-top: 30px;
  }

  .p1-d-h3 h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.8;
  }

  .p1-d-text {
    position: relative;
    z-index: 5;
    margin-top: 16px;
  }

  .p1-d-text p {
    font-size: 15px;
    line-height: 2;
  }

  .p1-d-span {
    position: absolute;
    right: 3%;
    bottom: 200px; /* -40px相当 */
    z-index: 2;
  }

  .p1-d-span span {
    font-size: 96px;
    color: #F3F3F3;
    line-height: 1;
  }

  /* 1350で可変 */
  .p1-e-container {
    padding-top: 72px;
  }

  .p1-e-box-box {
    width: 100%;
    background-color: #F3F3F3;
    margin: 0 auto;
  }

  .p1-e-box {
    position: relative;
    background-image: url(../image/part7.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center bottom -20px;
    padding: 60px 3% 70px;
  }

  .p1-e-title {
    text-align: left;
    position: relative;
    z-index: 5;
  }

  .p1-e-title h3 {
    font-size: 30px;
    font-weight: 600;
  }

  .p1-e-text {
    width: 100%;
    position: relative;
    z-index: 5;
    margin: 20px auto 0;
  }

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

  .p1-e-img-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    position: relative;
    z-index: 5;
  }

  .p1-e-img {
    width: min(300px, 44.12vw);
  }

  .p1-e-span {
    position: absolute;
    top: 60px;
    right: 3%;
    z-index: 1;
  }

  .p1-e-span span {
    font-size: 96px;
    color: #FFFFFF;
    line-height: 1;
  }

  /* 1440で可変 */
  .p1-f-container {
    padding-top: 43px;
  }

  .p1-f-box {
    max-width: 400px;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 0 auto;
  }

  .p1-f-item {
    width: 100%;
    position: relative;
    background-color: #F3F3F3;
    padding: 28px 3% 46px;
  }

  .p1-f-box .p1-f-item:nth-of-type(2) {
    background-color: #F6F2E2;
  }

  .p1-f-box .p1-f-item:nth-of-type(2) .p1-f-title {
    margin-top: 27;
  }

  .p1-f-title {
    margin-top: 35px;
  }

  .p1-f-title h3 {
    font-size: 30px;
    font-weight: 500;
    color: #2CA74B;
  }

  .p1-f-text {
    position: relative;
    z-index: 5;
    padding-left: 0;
    margin-top: 20px;
  }

  .p1-f-text p {
    font-size: 16px;
    letter-spacing: normal;
    line-height: 2;
  }

  .p1-f-span {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
  }

  .p1-f-span span {
    font-size: 96px;
    color: #FFFFFF;
    line-height: 0.9;
  }

  /* 1440で可変 */
  .p1-g-container {
    padding-top: 40px;
  }

  .p1-g-box {
    width: 100%;
    background-image: url(../image/sp-top-img4.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top center;
    margin: 0 auto;
  }

  .p1-g-item {
    width: 94%;
    padding-left: 0;
    padding-top: min(520px, 67.89vw);
    margin: 0 auto;
  }

  .p1-g-span {
    text-align: right;
    margin-bottom: -10px;
  }

  .p1-g-span span {
    font-size: 96px;
    color: #F3F3F3;
    line-height: 1;
  }

  .p1-g-title h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.5;
  }

  .p1-g-text {
    margin-top: 34px;
  }

  .p1-g-text p {
    font-size: 16px;
    line-height: 2;
  }

  /* 1440で可変 */
  .p1-h-container {
    padding-top: 100px;
  }

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

  .p1-h-title h2 {
    font-size: 60px;
    font-weight: 400;
    color: #F9F3DC;
  }

  .p1-h-title h2 span {
    font-size: 60px;
    font-weight: 400;
    font-family: "Cormorant Garamond", serif;
    color: #83D75D;
  }

  .p1-h-title p {
    font-size: 30px;
    font-weight: 600;
  }

  .p1-h-box {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: min(37px, 2.57vw);
    background-image: url(../image/part2.png), url(../image/part3.png), url(../image/sp-top-img5.png);
    background-repeat: no-repeat;
    /* 背景サイズも可変に */
    background-size: 122px auto, 122px auto, cover;
    background-position: left top -10px, right bottom, center center;
    padding: 77px 3% 42px;
    margin: 42px auto 0;
  }

  .p1-h-item {
    max-width: 400px;
    width: 100%;
    background-color: #F6F2E2;
    border: 5px solid #fff;
  }

  .p1-h-img-box {
    position: relative;
  }

  .p1-h-h3 {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 8px;
    left: 0;
    z-index: 5;
  }

  .p1-h-h3 span {
    font-size: 20px;
    color: #fff;
  }

  .p1-h-h3 h3 {
    font-size: 30px;
    color: #fff;
  }

  .p1-h-text {
    background-image: url(../image/part4.png);
    background-repeat: no-repeat;
    background-size: 32px auto;
    background-position: right bottom;
    padding: 15px 20px 15px 12px;
  }

  .p1-h-text span {
    width: 100%;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    padding: 7px 0;
    border-bottom: 1px dashed #DED356;
  }

  /* 1350で可変 */
  .p1-i-container {
    padding-top: 47px;
    padding-bottom: 70px;
  }

  .p1-i-box {
    width: 94%;
    display: grid;
    grid-template-columns: repeat(2, clamp(162px, 43.2vw, 200px));
    justify-content: center;
    gap: clamp(10px, 2.66vw, 20px);
    margin: 0 auto;
  }

  .p1-i-item-box {
    width: clamp(162px, 43.2vw, 200px);
    height: clamp(112px, 29.8vw, 138px);
    padding: clamp(4px, 1vw, 6px);
  }

  .p1-i-item-box:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: clamp(162px, 43.2vw, 200px);
    height: clamp(112px, 29.8vw, 138px);
  }

  .p1-i-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
  }

  .p1-i-item {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
  }

  .p1-i-img {
    width: clamp(54px, 14.4vw, 66px);
    height: clamp(54px, 14.4vw, 66px);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #83D75D;
    border-radius: 50%;
  }

  .p1-i-p {
    margin-top: clamp(8px, 2.13vw, 12px);
  }

  .p1-i-p p {
    font-size: clamp(16px, 4.26vw, 16px);
    font-weight: 600;
    line-height: 1;
  }

  .p1-i-img2 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 5;
    pointer-events: none; 
  }

  .p1-i-img2 img {
    width: 17px;
    height: auto;
  }

  .p1-i-box .p1-i-item-box:nth-of-type(1) .p1-i-img img {
    width: clamp(37px, 9.86vw, 45px);
    height: auto;
    transform: translateX(2px);
  }

  .p1-i-box .p1-i-item-box:nth-of-type(2) .p1-i-img img {
    width: clamp(41px, 10.9vw, 50px);
    height: auto;
  }

  .p1-i-box .p1-i-item-box:nth-of-type(3) .p1-i-img img {
    width: clamp(47px, 12.5vw, 56px);
    height: auto;
  }

  .p1-i-box .p1-i-item-box:nth-of-type(4) .p1-i-img img {
    width: clamp(25px, 6.66vw, 32px);
    height: auto;
  }

  .p1-i-box .p1-i-item-box:nth-of-type(5) .p1-i-img img {
    width: clamp(37px, 9.86vw, 45px);
    height: auto;
  }

  /* 1440で可変 */
  .p1-j {
    margin-bottom: 50px;
  }

  .p1-j-box-box {
    background-color: #F3F3F3;
  }

  .p1-j-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(../image/sp-top-img3.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top center;
    padding-top: min(530px, 69.19vw);
    padding-bottom: 70px;
  }

  .p1-j-title {
    text-align: center;
  }

  .p1-j-title h2 {
    font-size: 70px;
    font-weight: 400;
    color: #F1D04E;
  }

  .p1-j-title h2 span {
    font-size: 70px;
    font-weight: 400;
    font-family: "Cormorant Garamond", serif;
    color: #83D75D;
  }

  .p1-j-title p {
    font-size: 30px;
    font-weight: 600;
  }

  .p1-j-text {
    width: 92%;
    margin: 26px auto 0;
  }

  .p1-j-text p {
    font-size: 16px;
    font-weight: 600;
    line-height: 2;
  }

  .p1-j-link {
    width: 268px;
    height: 73px;
    background-color: #0292AD;
    margin: 50px auto 0;
  }

  .p1-j-link a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-right: 56px;
  }

  .p1-j-link a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 56px;
    height: 1px;
    background-color: #fff;
  }

  .p1-j-link a span {
    font-size: 20px;
    color: #fff;
  }


  /* クリニック紹介 */
  /* 1440で可変 */
  .p2-a-container {
    padding-top: 40px;
  }

  .p2-a-box {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    background-image: url(../image/sp-top-img2.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding-top: 216px;
    margin: 30px auto 0;
  }

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

  .p2-a-box .p1-d-h3 {
    text-align: center;
    padding-left: 0;
    margin-top: 30px;
  }

  .p2-a-box .p1-d-text {
    max-width: 400px;
    width: 100%;
    margin-top: 10px;
    margin-left: auto;
  }

  /* 1350で可変 */
  .p2-b-container {
    padding-top: 70px;
  }

  .p2-b-box {
    width: 94%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 60px auto 0;
  }

  .p2-b-item {
    width: 100%;
    max-width: 417px;
    margin: 0 auto;
  }

  .p2-b-text {
    width: 100%;
    height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    background-color: #83D75D;
    padding: 10px 15px;
  }

  .p2-b-item:nth-child(even) .p2-b-text {
    background-color: #02D037; 
  }

  .p2-b-text h3 {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
  }

  .p2-b-text p {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
  }

  .p2-b-text span {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
  }

  /* 1350で可変 */
  .p2-c-container {
    padding-top: 70px;
  }

  .p2-c-box {
    width: 94%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 25px auto 80px;
  }

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

  .p2-c-title h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
  }

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

  .p2-c-text p {
    font-size: 16px;
    line-height: 1.5;
  }

  .p2-c-name {
    max-width: 400px;
    width: 100%;
    text-align: center;
    padding-bottom: 5px;
    border-bottom: 1px solid #333;
    margin: 20px auto 0;
  }

  .p2-c-name h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
  }

  .p2-c-name span:first-child {
    font-size: 24px;
    margin-right: 10px;
  }

  .p2-c-name span:last-child {
    font-size: 24px;
    color: #0292AD;
    margin-left: 0;
  }

  .p2-c-img {
    max-width: 400px;
    width: 100%;
    box-shadow: 7px 7px 0 0 #83D75D;
    margin: 40px auto 0;
  }

  .p2-c-box2 {
    position: relative;
    background-color: #FBF5F0;
    padding: 140px 3% 30px;
  }

  .p2-c-item2 {
    max-width: 400px;
    width: 100%;
    background-color: #fff;
    padding: 8px 20px 10px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
  }

  .p2-c-title2 {
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #83D75D;
  }

  .p2-c-title2 h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2CA74B;
  }

  .p2-c-text2 ul {
    width: 96%;
    margin: 0 auto;
  }

  .p2-c-text2 ul li {
    font-size: 15px;
    padding: 8px 10px;
    border-bottom: 1px dotted #d9d9d9;
  }

  .p2-c-text2 ul li span {
    width: 95px;
    font-size: 15px;
    display: inline-block;
  }

  /* 1350で可変 */
  .p2-d-container {
    padding-top: 70px;
  }

  .p2-d-img {
    max-width: 500px;
    width: 94%;
    box-shadow: 7px 7px 0 0 #83D75D;
    margin: min(70px, 5.19vw) auto 0;
  }

  .p2-d-box {
    margin-top: 50px;
  }

  .p2-d-map {
    width: 96%;
    height: 278px;
    margin: 30px auto 0;
  }

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

  /* 1350で可変 */
  .p2-e-container {
    padding-top: 70px;
    padding-bottom: 300px;
  }

  .p2-e-box {
    width: 96%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 30px auto 0;
  }

  .p2-e-table {
    width: 100%;
  }

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

  .p2-e-table table tr th, 
  .p2-e-table table tr td {
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    line-height: 1.7;
    border-bottom: 1px solid #777777;
  }

  .p2-e-table table tr th {
    width: 95px;
    text-align: left;
    padding-left: 0;
  }

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


  /* 診療案内 1350で可変 */
  .p3-b-container {
    padding-top: 70px;
  }

  .p3-b-box {
    width: 94%;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 30px auto 0;
  }

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

  .p3-b-title {
    margin-top: 30px;
  }

  .p3-b-title h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: normal;
  }

  .p3-b-text {
    margin-top: 30px;
  }

  .p3-b-text p {
    font-size: 16px;
    line-height: 1.8;
  }

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

  .p3-b-box2 {
    background-color: #FBF5F0;
    padding: 20px 0;
    margin-top: 30px;
  }

  .p3-b-item2 {
    width: 94%;
    background-color: #fff;
    padding: 10px 10px 20px;
    margin: 0 auto;
  }

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

  .p3-b-title2 span {
    font-size: 30px;
    font-family: "Cormorant Garamond", serif;
    color: #83D75D;
    line-height: 1;
  }

  .p3-b-title2 h3 {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    background-color: #0292AD;
    padding: 8px 0;
  }

  .p3-b-list ul {
    display: grid;
    grid-template-columns: repeat(1, 100%);
    justify-content: center;
    margin-top: 20px;
  }

  .p3-b-list ul li {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0 10px 10px;
  }

  .p3-b-list ul li:nth-child(even) {
    padding-left: 10px;
  }

  .p3-b-list ul li img {
    width: 18px;
    height: auto;
  }

  .p3-b-list ul li p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: normal;
  }

  .p3-b-box3 {
    width: 94%;
    flex-direction: column;
    align-items: center;
    margin: 30px auto 0;
  }

  .p3-b-item3 {
    width: 100%;
    padding-top: 4px;
    border-top: 1px solid #333;
  }

  .p3-b-title3 {
    text-align: center;
    padding: 5px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
  }

  .p3-b-title3 h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: normal;
  }

  .p3-b-text3 {
    margin-top: 15px;
  }

  .p3-b-text3 p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
  } 

  .p3-b-text3 p:first-child {
    padding-bottom: 10px;
  }

  .p3-b-text3 p:nth-of-type(2) {
    padding-bottom: 10px;
  }



  /* 診療案内共通 1200で可変 */
  .p3-a-container {
    padding-top: 30px;
  }

  .p3-a-box {
    width: 94%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    justify-content: center;
    gap: 15px;
    margin: 0 auto;
  }

  .p3-a-item {
    width: 100%;
    max-width: 200px;
    height: 50px;
    background-color: #83D75D;
    box-shadow: 4px 4px 0 0 #0292AD;
    transition: all 0.2s ease;
    margin: 0 auto;
  }

  .p3-a-item:hover {
    transform: translate(5px, 5px );
    box-shadow: 0 0 0 0 #0292AD;
  }

  .p3-a-item a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .p3-a-item a span {
    font-size: 15px;
    font-weight: 600;
  }

  .p3-a-item a img {
    width: 8px;
    height: auto; 
    margin-top: 2px;
  }

  .p3-d .p3-b-item3 {
    width: 100%;
  }

  .p3-d .p3-b-title3 {
    margin-bottom: 10px;
  }

  .p3-d .p3-b-text3 {
    width: 100%;
    padding-top: 30px;
    margin: 0 auto;
  }

  .p3-d-title {
    border-bottom: 1px dotted #333;
  }

  .p3-d-title h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.03em;
  }

  .p3-d-title h3 span {
    font-size: 20px;
    font-weight: 600;
    color: #2CA74B;
  }

  .p3-d-text {
    padding: 10px 15px 0;
  }

  .p3-d .p3-d-text p {
    padding-bottom: 0;
  }

  .p3-e .p3-e-box .p3-e-p {
    padding-top: 10px;
  }

  .p3-f .p3-b-container {
    padding-bottom: 220px;
  }

  .p3-f-p {
    text-align: center;
  }

  .p3-f-p p {
    font-size: 16px;
    font-weight: 500;
  }

  .p3-f-box-box {
    width: 100%;
    margin: 30px auto 0;
  }

  .p3-f-title {
    width: 265px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #83D75D;
  }

  .p3-f-title span {
    font-size: 20px;
    color: #fff;
  }

  .p3-f .p3-d-title {
    margin-top: 30px;
  }

  .p3-f-box {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
  }

  /* align-items: flex-start を打ち消して高さを揃える設定 */
  .p3-f-box.p3-f-box3 {
    align-items: center;
  }

  .p3-f-item {
    max-width: 400px;
    width: 100%;
    min-height: auto;
    background-color: #F8F8F8;
    padding: 15px 15px 30px;
  }

  .p3-f-h4 {
    text-align: center;
  }

  .p3-f-h4 h4 {
    font-size: 20px;
    font-weight: 500;
    border-bottom: 1px solid #333;
  }

  .p3-f-list {
    padding: 10px 0 0;
  }

  .p3-f-list ul li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    padding: 10px 0;
    border-bottom: 1px dotted #333;
  }

  .p3-f-list ul li img {
    width: 14px;
    height: auto;
    margin-top: 3px;
  }

  .p3-f-list ul li p {
    font-size: 14px;
  }

  .p3-d-title h3 .p3-f-title-span {
    font-size: 16px;
    color: #333;
  }

  /* 個別クラスのパディング可変設定 */
  .p3-f-list.p3-f-list2 {
    padding-left: 0;
    padding-right: 0;
  }

  .p3-f-list.p3-f-list3 {
    padding-bottom: 0;
  }

  .p3-f-list.p3-f-list4 {
    padding-left: 0;
    padding-right: 0;
  }

  .p3-f-list.p3-f-list5 {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }

  .p3-f-list.p3-f-list6 {
    padding-left: 0;
    padding-right: 0;
  }


  /* ホワイトニング */
  /* 1350で可変 */
  .p4-a-container {
    padding-top: 50px;
  }

  .p4-a-box {
    width: 94%;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 30px auto 0;
  }

  /* row-reverse の指定 */
  .p4-a-box.revrce {
    flex-direction: column;
  }

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

  .p4-a-title h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: normal;
  }

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

  .p4-a-text p {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.02em;
  }

  .p4-a-text ul {
    padding: 15px 0;
  }

  .p4-a-text ul li {
    font-size: 15px;
    position: relative;
    padding-left: 15px;
  }

  .p4-a-text ul li::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 15px;
  }

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


  /* 1350で可変 */
  .p4-b {
    background-color: #FFF9F5;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: 40px;
  }

  .p4-b-container {
    width: 94%;
    border-top: 1px solid #333;
    margin: 0 auto;
  }

  .p4-b-title {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-top: 3px;
  }

  .p4-b-title h2 {
    font-size: 20px;
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
  }

  .p4-b-p {
    text-align: center;
    margin-top: 25px;
  }

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

  .p4-b-span {
    width: auto;
    height: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #83D75D;
    padding: 10px 0;
    margin: 30px auto 0;
  }

  .p4-b-span span {
    font-size: 18px;
    color: #fff;
  }

  .p4-b-box {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 30px auto 0;
  }

  .p4-b-item {
    max-width: 400px;
    width: 100%;
    height: auto;
    background-color: #fff;
    padding: 10px;
    border: 1px solid #83D75D;
  }

  .p4-b-title2 {
    text-align: center;
    padding: 5px 0;
    border-bottom: 1px solid #333;
  }

  .p4-b-title2 h3 {
    font-size: 18px;
    font-weight: 600;
  }

  .p4-b-img {
    width: 60px;
    margin: 15px auto 0;
  }

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

  .p4-b-item ul li {
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0 5px;
  }

  .p4-b-item ul li img {
    width: 15px;
    height: auto;
    margin-top: 2px;
  }

  .p4-b-list {
    padding-top: 0px;
  }

  .p4-b-text {
    text-align: center;
    margin-top: 30px;
  }

  .p4-b-text h4 {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .p4-b-text h4::before,
  .p4-b-text h4::after {
    content: "";
    width: 1px;
    height: 20px;
    background-color: #333;
  }

  .p4-b-text h4::before {
    transform: rotate(-45deg);
    margin-right: 10px;
  }

  .p4-b-text h4::after {
    transform: rotate(45deg);
    margin-left: 10px;
  }

  .p4-b-text p {
    font-size: 15px;
    font-weight: 500;
    padding-top: 10px;
  }

  /* 1350で可変 */
  .p4-c-container {
    width: 96%;
    border-top: 1px solid #333;
    margin: 50px auto 0;
  }

  .p4-c-box {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
  }

  .p4-c-item {
    max-width: 400px;
    width: 100%;
    padding: 15px 7px 20px;
    border: 1px solid #2CA74B;
  }

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

  .p4-c-title h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.03em;
  }

  .p4-c-img {
    margin-top: 20px;
  }

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

  .p4-c-text p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: normal;
  }

  /* 1350で可変 */
  .p4-d-container {
    padding-top: 100px;
    padding-bottom: 300px;
  }

  .p4-d-box {
    width: 94%;
    margin: 40px auto 0;
  }

  .p4-d-item {
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #FFF9F5;
    padding: 40px 20px 30px;
    margin-left: auto;
  }

  .p4-d-item p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
  }

  .p4-d-item p span {
    font-size: 12px;
    font-weight: 500;
    color: #FF0000;
    line-height: 1.8;
  }

  .p4-d-span {
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #83D75D;
    position: absolute;
    top: -20px;
    left: 0;
    z-index: 5;
    transform: translateY(0);
  }

  .p4-d-span span {
    font-size: 12px;
    font-family: "Cormorant Garamond", serif;
    color: #fff;
    line-height: 1;
  }

  .p4-d-span .number {
    font-size: 22px;
    font-family: "Noto Serif JP", serif;
  }

  .p4-d-img {
    width: 48px;
    margin: 15px auto 20px;
  }


  /* 審美歯科 */
  /* 1350で可変 */
  .p5-a-p {
    padding-top: 10px;
  }


  /* 1350で可変 */
  .p5-b-container {
    width: 94%;
    border-top: 1px solid #333;
    margin: 80px auto 0;
  }

  .p5-b-box {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, 300px);
    justify-content: center;
    gap: 20px 10px;
    margin: 30px auto 0;
  }

  .p5-b-item {
    width: 300px;
    border: 1px solid #83D75D;
  }

  .p5-b-text {
    height: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .p5-b-text p {
    font-size: 16px;
    font-weight: 500;
  }


  /* 1350で可変 */
  .p5-c.p4-b {
    margin: 60px 0 200px;
  }

  .p5-c-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, 300px);
    justify-content: center;
    gap: 20px 10px;
    margin-top: 20px;
  }

  .p5-c-item {
    width: 300px;
    background-color: #fff;
    padding: 0 10px 7px;
    border: 1px solid #83D75D;
    margin-top: 0;
  }

  .p5-c-img1 {
    width: 133px;
    margin: 0 auto 20px;
  }

  .p5-c-img2 {
    width: 140px;
    margin: 6px auto 20px;
  }

  .p5-c-img3 {
    width: 154px;
    margin: 10px auto 10px;
  }

  .p5-c-img4 {
    width: 123px;
    margin: 0 auto 7px;
  }

  .p5-c-title {
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 1px solid #333;
  }

  .p5-c-title h3 {
    font-size: 20px;
    font-weight: 600;
  }

  .p5-c-title span {
    font-size: 18px;
    font-weight: 600;
  }

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

  .p5-c-text p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }

  .p5-c .p4-b-text h4::after {
    margin-left: 13px;
  }


  /* 予防歯科 */
  /* 1350で可変 */
  .p6-a-p {
    padding-top: 10px;
  }

  /* 1350で可変 */
  .p6-b-container {
    width: 94%;
    margin: 60px auto 0;
  }

  .p6-b-p {
    text-align: center;
    border-bottom: 1px solid #333;
  }

  .p6-b-p p {
    font-size: 45px;
    font-family: "Cormorant Garamond", serif;
    color: #F9F3DC;
    line-height: 1;
  }

  .p6-b-p p span {
    font-size: 45px;
    font-family: "Cormorant Garamond", serif;  
    color: #83D75D;
    line-height: 1;
  }

  .p6-b-box-box {
    margin-top: 30px;
  }

  .p6-b-box {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px dotted #333;
  }

  .p6-b-box.revrce {
    flex-direction: column;
  }

  .p6-b-img {
    max-width: 400px;
    width: 100%;
  }

  .p6-b-item {
    width: 100%;
  }

  .p6-b-title h3 {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .p6-b-title h3 span {
    font-size: 30px;
    font-weight: 600;
    color: #02D037;
  }

  .p6-b-text {
    margin-top: 14px;
  }

  .p6-b-text p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
  }

  /* 1350で可変 */
  .p6-c {
    background-color: #FFF9F5;
  }

  .p6-c-container {
    width: 94%;
    padding-top: 15px;
    padding-bottom: 50px;
    margin: 50px auto 0;
  }

  .p6-c-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, 300px);
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
  }

  .p6-c-item {
    width: 300px;
    background-color: #fff;
    padding: 10px 10px 20px;
    border: 1px solid #83D75D;
  }

  .p6-c-numner {
    text-align: center;
    margin-top: 10px;
  }

  .p6-c-numner span {
    font-size: 30px;
    font-weight: 600;
    color: #83D75D;
  }

  .p6-c-text {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .p6-c-text p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.03em;
  }

  .p6-c-p {
    padding-left: 0;
    margin-top: 30px;
  }

  .p6-c-p p {
    font-size: 15px;
    font-weight: 500;
    line-height: 2;
  }

  /* 1350で可変 */
  .p6-d-container {
    width: 94%;
    margin: 40px auto 200px;
  }

  .p6-d-box-box {
    margin-top: 16px;
  }

  .p6-d-box {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 10px 10px 20px;
    border: 1px solid #83D75D;
    margin: 30px auto 0;
  }

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

  .p6-d-img {
    max-width: 400px;
    width: 100%;
  }

  .p6-d-title {
    position: relative;
    display: inline-block;
    line-height: 1;
    margin-top: 20px;
  }

  .p6-d-title h3 {
    font-size: 20px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    margin: 0;
  }

  .p6-d-title span {
    font-size: 30px;
    font-weight: 600;
    color: #D1F0C3;
    position: absolute;
    left: 0;
    bottom: 5px;
    z-index: 1;
    white-space: nowrap;
    font-family: "Cormorant Garamond", serif;
  }

  .p6-d-text {
    margin-top: 30px;
  }

  .p6-d-text p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
  }
  

  /* 料金表 */
  /* 1350で可変 */
  .p7-a {
    margin-top: 40px;
  }

  .p7-a-container {
    background-color: #FBF5F0;
    padding-top: 30px;
    margin-top: 40px;
  }

  .p7-a-box-box {
    width: 94%;
    margin: 0 auto;
  }

  .p7-a-p {
    text-align: center;
    border-bottom: 1px solid #333;
  }

  .p7-a-p p {
    font-size: 24px;
    font-weight: 600;
    font-family: "Cormorant Garamond", serif;
    color: #83D75D;
  }

  .p7-a-box {
    width: 100%;
    padding-bottom: 40px;
    margin: 30px auto 0;
  }

  .p7-a-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #777777;
  }

  .p7-a-item span {
    font-size: 15px;
    font-weight: 500;
  }

  .p7-a-nemu {
    width: auto;
  }

  .p7-b-container {
    padding-top: 40px;
  }

  .p7-b-box {
    padding-bottom: 40px;
    margin: 30px auto 0;
  }

  .p7-c-container {
    background-color: #FBF5F0;
    padding-top: 40px;
  }

  .p7-c-box {
    padding-bottom: 20px;
    margin: 25px auto 0;
  }

  .p7-d-box {
    padding-bottom: 40px;
    margin: 25px auto 0;
  }

  .p7-c-span {
    width: 150px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #83D75D;
    padding: 10px 0;
    margin-top: 30px;
    margin-left: 0;
  }

  .p7-c-span span {
    font-size: 18px;
    color: #fff;
  }

  .p7-e-container {
    background-color: #fff;
    padding-top: 40px;
  }

  .p7-e-box {
    padding-bottom: 20px;
    margin: 25px auto 0;
  }

  .p7-e-box .p7-a-item {
    justify-content: space-between;
    padding-right: 0;
  }

  .p7-e-box .p7-a-nemu {
    width: auto;
  }

  /* 1350で可変 */
  .p7-f-container {
    width: 94%;
    background-color: #F3F3F3;
    padding-top: 24px;
    padding-bottom: 30px;
    margin: 60px auto 200px;
  }

  .p7-f-box {
    margin-top: 30px;
  }

  .p7-f-text {
    width: 96%;
    margin: 0 auto;
  }

  .p7-f-text p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
  }

  .p7-f-item {
    width: 96%;
    margin: 20px auto 0;
  }

  .p7-f-p p {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
  }

  .p7-f-link {
    width: 300px;
    height: 40px;
    background-color: #002C6D;
    margin: 10px auto 0;
  }

  .p7-f-link a {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .p7-f-link a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 40px;
    width: 10px;
    height: 10px;
    transform: translateY(-25%);
    background-image: url(../image/part14.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .p7-f-link a span {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
  }


  /* 採用情報 */
  /* 1350で可変 */
  .p8-a-container {
    padding-top: 40px;
    padding-bottom: 200px;
  }

  .p8-a-box {
    width: 94%;
    margin: 40px auto 0;
  }

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

  .p8-a-table table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #83D75D;
  }

  .p8-a-table table th, .p8-a-table table td {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #83D75D;
  }

  .p8-a-table table th {
    width: 90px;
    vertical-align: top;
    border-right: 1px solid #83D75D;
  }

  .p8-a-table table td {
    padding-left: 15px;
    padding-right: 5px;
  }

  .p8-a-table table td a {
    text-decoration: underline;
    color: inherit;
  }

  .p8-a-table table td a:hover {
    text-decoration: none;
  }


  /* インプラント */
  /* 1350で可変 */
  .p9-b-container {
    padding-top: 40px;
    padding-bottom: 200px;
  }

  .p9-b-box {
    width: 94%;
    padding-top: 3px;
    border-top: 1px solid #333;
    margin: 0 auto;
  }

  .qa-section {
    width: 100%;
    padding: 0;
    margin: 30px auto 0;
  }

  .qa-item {
    margin-bottom: 15px;
    padding-bottom: 10px;
  }

  .qa-question {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    background-color: #83D75D;
    padding: 10px;
  }

  .qa-answer {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    padding: 10px 15px;
    margin-top: 10px;
  }

  .qa-label {
    color: #2CA74B;
    font-weight: 600;
    font-size: 15px;
    margin-right: 4px;
  }


  /* 下層共通メイン 1200で可変 */
  .sub-v {
    width: 100%;
    height: 200px;
    background-image: url(../image/sub-back.png);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .sub-v-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sub-v-title {
    text-align: center;
  }

  .sub-v-title h1 {
    font-size: 30px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .sub-v-title span {
    font-size: 24px;
    font-family: "Cormorant Garamond", serif;
    color: #83D75D;
  }

  /* 下層共通タイトル 1350で可変 */
  .sub-title {
    width: 94%;
    text-align: center;
    background-image: url(../image/part8.png), url(../image/part9.png), url(../image/part10.png);
    background-repeat: no-repeat;
    background-size: 30px auto, 30px auto, cover;
    background-position: left top, right top, center center;
    padding: 20px 0;
    border-bottom: 3px solid #83D75D;
    margin: 0 auto;
  }

  .sub-title h2 {
    font-size: 24px;
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
  }


  /* フッター */
  /* 1350で可変 */
  .footer-container {
    padding-bottom: 40px;
  }

  .footer-box {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    width: 330px;
  }

  .footer-p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
  }

  .footer-p img {
    width: 23px;
    height: auto;
  }

  .footer-p p {
    font-size: 16px;
  }

  .footer-link {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
  }

  .footer-tel {
    width: 269px;
  }

  .footer-web {
    width: 159px;
  }

  .footer-link2 {
    background-color: #F3F3F3;
    padding: 46px 0;
  }

  .footer-link2 img {
    width: 335px;
    height: auto;
    margin: 0 auto;
  }

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

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

  .footer-nav {
    width: 94%;
    margin: 56px auto 60px;
  }

  .f-nav-inner {
    flex-direction: column;
    gap: 24px;
  }

  .f-nav-group:nth-of-type(1) {
    width: 100%;
  }

  .f-nav-group:nth-of-type(2) {
    width: 100%;
  }

  .f-nav-title {
    font-size: 30px;
    font-weight: 400;
    font-family: "Cormorant Garamond", serif;
    padding: 8px 0;
    border-bottom: 1px solid #83D75D;
    margin-bottom: 28px;
    color: #F1D04E;
  }

  .f-nav-title span {
    font-family: "Cormorant Garamond", serif;
    color: #83D75D;
    font-size: 30px;
  }

  .f-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .f-nav-group:nth-of-type(2) .f-nav-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
    row-gap: 20px;
  }

  .f-nav-group:nth-of-type(1) .f-nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .f-nav-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
  }

  .f-nav-list li a img {
    width: 10px;
    height: auto;
  }

  .f-nav-list li a p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
  }

  .copy-right {
    text-align: center;
    background-color: #83D75D;
    padding: 20px 0;
  }

  .copy-right p {
    font-size: 16px;
    font-weight: 600;
  }

  /* トップに戻る */
  .p-pagetop {
    display: none;
  }


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

  .single-box {
    width: 94%;
    margin: 0 auto;
  }

  .single-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    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: 600px) {
  /* トップ */
  .p1-b-box {
    position: relative;
    display: flex;
    justify-content: center;
    background-image: url(../image/sp-top-img1.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top center;
    padding-top: 252px;
    padding-bottom: 25px;
  }

  .p1-e-box {
    position: relative;
    background-image: url(../image/part15.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center bottom -20px;
    padding: 60px 3% 70px;
  }




}