@charset "UTF-8";

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

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

body {
  margin: 0;
}

h1,
h2,
h3,
h4,
p,
span,
a,
li,
th,
td {
  font-family: "Zen Old Mincho", serif;
  color: #76746c;
  line-height: 1.2;
}

li {
  list-style: none;
}

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

a:hover {
  opacity: 0.8;
}

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

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

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

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

/* ヘッダー */
/* 1350 */
#header {
  width: 100%;
  height: min(90px, 6.67vw);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.header-container {
  width: 100%;
  height: 100%;
  padding: min(8px, 0.59vw) min(85px, 6.3vw) 0;
}

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

.header-logo {
  width: min(276px, 20.44vw);
}

.header-item {
  height: min(60px, 4.44vw);
  display: flex;
  align-items: center;
}

.header-map {
  height: 100%;
  display: flex;
  align-items: center;
  gap: min(9px, 0.67vw);
  background-color: #d7c68e;
  padding: 0 min(20px, 1.48vw);
}

.header-map img {
  width: min(15px, 1.11vw);
  height: auto;
}

.header-map p,
.header-tel span,
.header-web-img span {
  font-size: clamp(9px, 1.19vw, 16px);
  color: #fff;
}

.header-tel {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(9px, 0.67vw);
  background-color: #aa975f;
  padding: 0 min(22px, 1.63vw);
}

.header-web {
  height: 100%;
}

.header-web a {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: min(10px, 0.74vw);
  background-color: #94b39c;
  padding: 0 min(28px, 2.07vw);
}

.header-web span:first-child {
  font-size: clamp(9px, 0.89vw, 12px);
  color: #fff;
}

.header-web-img {
  display: flex;
  align-items: center;
  gap: min(9px, 0.67vw);
}

.header-web-img img {
  width: min(17px, 1.26vw);
  height: auto;
}

/* トップ */
/* 1350 */
.main-v {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: visible;
}

.main-v-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-v-table {
  width: min(560px, 41.48vw);
  position: absolute;
  left: min(80px, 5.93vw);
  bottom: min(100px, 7.41vw);
  background: rgba(255, 255, 255, 0.9);
  padding: min(20px, 1.48vw);
}

.main-v-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(9px, 1.33vw, 18px);
  color: #76746c;
}

.main-v-table th:first-child {
  text-align: left;
}

.main-v-table th {
  font-weight: normal;
  padding: min(5px, 0.37vw) min(10px, 0.74vw);
  border-bottom: 1px solid #999;
}

.main-v-table td {
  text-align: center;
  padding: min(10px, 0.74vw);
}

.main-v-table td:first-child {
  text-align: left;
  padding-right: min(15px, 1.11vw);
}

.circle::before {
  content: "";
  display: inline-block;
  width: min(20px, 1.48vw);
  height: min(20px, 1.48vw);
  background: #8aa999;
  border-radius: 50%;
}

.slash::before {
  content: "／";
  color: #777;
}

.nav {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  background: #a8965f;
}

.nav-list {
  height: min(80px, 5.93vw);
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-list li {
  position: relative;
  padding: 0 min(60px, 4.44vw);
  border-left: 1px solid #fff;
}

.nav-list li:last-child {
  border-right: 1px solid #fff;
}

.nav-list li a {
  font-size: clamp(9px, 1.33vw, 18px);
  color: #fff;
}

.menu-toggle {
  font-size: clamp(9px, 1.33vw, 18px);
  font-family: "Zen Old Mincho", serif;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: min(8px, 0.59vw);
}

.arrow {
  width: min(10px, 0.74vw);
  transition: transform 0.3s;
}

.menu-toggle.active .arrow {
  transform: rotate(180deg);
}

.mega-menu {
  display: none;
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translateX(-50%);
  width: min(1280px, 94.81vw);
  background: #dfe5e1;
  padding: min(20px, 1.48vw);
  z-index: 20;
}

.mega-menu.active {
  display: block;
}

.mega-row {
  display: flex;
  gap: min(10px, 0.74vw);
  margin-bottom: min(20px, 1.48vw);
}

.mega-title {
  width: min(300px, 22.22vw);
  height: min(120px, 8.89vw);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #7e9b89;
  border-left: 5px solid #659471;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

.mega-title span {
  display: inline-block;
  font-size: clamp(9px, 1.78vw, 24px);
  color: #fff;
  margin-right: min(30px, 2.22vw);
}

.mega-item {
  width: min(300px, 22.22vw);
  height: min(120px, 8.89vw);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(9px, 1.48vw, 20px);
  color: #76746c;
  background: #fff;
  box-shadow: 0 min(5px, 0.37vw) min(10px, 0.74vw) rgba(0, 0, 0, 0.1);
}

.mega-item.mega-item2 {
  display: none;
}

.mega-item img {
  width: min(19px, 1.41vw);
  height: auto;
  position: absolute;
  right: min(5px, 0.37vw);
  bottom: min(5px, 0.37vw);
  z-index: 10;
}

.nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: min(80px, 5.93vw);
  z-index: 9999;
}

/* 1350 */
.p1-a {
  background-color: #f2efe7;
}

.p1-a-container {
  padding: min(60px, 4.44vw) 0;
}

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

.p1-a-title h2 {
  font-size: clamp(9px, 3.56vw, 48px);
  font-family: "Cinzel", serif;
  font-weight: 400;
  color: #76746c;
}

.p1-a-title h2 span {
  font-size: clamp(9px, 3.56vw, 48px);
  font-family: "Cinzel", serif;
  font-weight: 400;
  color: #94b39c;
}

.p1-a-box {
  width: min(1280px, 94.81vw);
  background-color: #fff;
  box-shadow: min(4px, 0.3vw) min(4px, 0.3vw) min(30px, 2.22vw)
    rgba(0, 0, 0, 0.15);
  padding: min(40px, 2.96vw);
  margin: min(15px, 1.11vw) auto 0;
}

.p1-a-news {
  display: flex;
  gap: min(20px, 1.48vw);
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}

.p1-news-item {
  flex: 0 0 min(280px, 20.74vw);
  display: block;
}

.p1-news-date {
  font-size: clamp(9px, 1.11vw, 15px);
  font-family: "Zen Old Mincho", serif;
  color: #76746c;
  margin-top: min(20px, 1.48vw);
}

.p1-news-title {
  font-size: clamp(9px, 1.11vw, 15px);
  font-family: "Zen Old Mincho", serif;
  color: #76746c;
  margin-top: min(10px, 0.74vw);
  margin-bottom: min(20px, 1.48vw);
}

.p1-a-news::-webkit-scrollbar {
  height: min(6px, 0.44vw);
}

.p1-a-news::-webkit-scrollbar-track {
  background: transparent;
}

.p1-a-news::-webkit-scrollbar-thumb {
  background: #76746c;
}

/* 1350 */
.p1-b-container {
  padding: min(60px, 4.44vw) 0;
}

.p1-b-box {
  width: min(1280px, 94.81vw);
  background-image: url(../image/top-back1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: min(40px, 2.96vw) 0;
  margin: 0 auto;
}

.p1-b-span {
  text-align: center;
}

.p1-b-span span {
  font-size: clamp(9px, 2.37vw, 32px);
  color: #fff;
  letter-spacing: 0.3em;
  display: inline-block;
  background-color: #aa975f;
  padding: min(10px, 0.74vw) min(50px, 3.7vw);
}

.p1-b-title {
  text-align: center;
  margin-top: min(30px, 2.22vw);
}

.p1-b-title h2 {
  font-size: clamp(9px, 2.67vw, 36px);
  font-weight: 400;
  color: #76746c;
}

.p1-b-title h2 span {
  font-size: clamp(9px, 3.56vw, 48px);
  font-weight: 400;
  color: #76746c;
}

.p1-b-title h2 span .accent,
.p1-b-title p .accent {
  color: #a57755;
}

.p1-b-title p {
  font-size: clamp(9px, 1.78vw, 24px);
  color: #76746c;
  padding-top: min(22px, 1.63vw);
}

.p1-b-item-box {
  width: min(940px, 69.63vw);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: min(40px, 2.96vw);
  background-color: rgba(255, 255, 255, 0.7);
  padding: min(40px, 2.96vw) min(80px, 5.93vw);
  margin: min(30px, 2.22vw) auto 0;
}

.p1-b-item {
  display: flex;
  align-items: center;
  gap: min(20px, 1.48vw);
}

.p1-b-item:nth-child(2),
.p1-b-item:nth-child(4) {
  margin-left: min(60px, 4.44vw);
}

.p1-b-item img {
  width: min(33px, 2.44vw);
  height: auto;
}

.p1-b-item p {
  font-size: clamp(9px, 2.37vw, 32px);
}

.p1-b-item p span {
  font-size: clamp(9px, 2.96vw, 40px);
}

/* 1440 */
.p1-c {
  margin-top: min(120px, 8.33vw);
  margin-bottom: min(120px, 8.33vw);
}

.p1-c-container {
  position: relative;
  background-color: #f2efe7;
  padding-top: min(26px, 1.81vw);
  padding-bottom: min(45px, 3.13vw);
}

.p1-c-title {
  width: min(720px, 50vw);
  display: flex;
  align-items: flex-end;
  gap: min(20px, 1.39vw);
  padding-right: 6.94vw;
  padding-bottom: min(10px, 0.69vw);
  border-bottom: 1px solid #76746c;
  margin-left: auto;
}

.p1-c-title h2 {
  font-size: min(64px, 4.44vw);
  font-weight: 400;
  color: #659471;
}

.p1-c-title span {
  font-size: min(32px, 2.22vw);
  margin-bottom: min(5px, 0.35vw);
}

.p1-c-item-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-image: url(../image/top-back12.png);
  background-repeat: no-repeat;
  background-size: cover;
  gap: min(30px, 2.08vw);
  padding: min(27px, 1.88vw) 6.94vw min(27px, 1.88vw) 0;
  margin-top: min(30px, 2.08vw);
}

.p1-c-img {
  width: min(59px, 4.1vw);
}

.p1-c-span span {
  font-size: min(32px, 2.22vw);
  padding-bottom: min(20px, 1.39vw);
}

.p1-c-p-box {
  display: flex;
  align-items: center;
  gap: min(20px, 1.39vw);
}

.p1-c-p-box p {
  width: min(360px, 25vw);
  height: min(68px, 4.72vw);
  font-size: min(32px, 2.22vw);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: min(10px, 0.69vw);
  background-color: #fff;
}

.p1-c-p-box p span {
  font-size: min(40px, 2.78vw);
  color: #659471;
}

.p1-c .main-v-table {
  position: static;
}

.p1-c-box2 {
  width: min(1042px, 72.36vw);
  margin-left: auto;
  margin-right: 3.13vw;
}

.p1-c-item-box2 {
  display: flex;
  justify-content: flex-end;
  gap: min(30px, 2.08vw);
  margin-top: min(10px, 0.69vw);
}

.p1-c-table {
  background-color: rgba(255, 255, 255, 0.9);
  padding: min(20px, 1.39vw);
}

.p1-c-table table {
  width: 100%;
  border-spacing: min(10px, 0.69vw) 0;
}

.p1-c-table th,
.p1-c-table td {
  font-size: min(19px, 1.32vw);
  font-weight: 400;
  padding: min(10px, 0.69vw);
  border-bottom: 1px solid #76746c;
}

.p1-c-table th {
  width: min(85px, 5.9vw);
}

.p1-c-table td {
  width: min(350px, 24.31vw);
}

.p1-c-item-box3 {
  margin-top: min(40px, 2.78vw);
}

.p1-c-list ul li {
  display: flex;
  align-items: center;
  gap: min(20px, 1.39vw);
  margin-bottom: min(30px, 2.08vw);
}

.p1-c-list ul li img {
  width: min(33px, 2.29vw);
  height: auto;
}

.p1-c-list ul li span {
  font-size: min(32px, 2.22vw);
}

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

.p1-c-link a {
  display: flex;
  align-items: center;
  gap: min(10px, 0.69vw);
  padding: 0 min(20px, 1.39vw) min(5px, 0.35vw);
  border-bottom: 1px solid #659471;
}

.p1-c-link a img {
  width: min(10px, 0.69vw);
  height: auto;
}

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

.p1-c-img2 {
  width: 45.83vw;
  position: absolute;
  top: -3.08vw;
  left: 0;
  z-index: 10;
}

.p1-c-img3 {
  width: 26.39vw;
  position: absolute;
  top: 13.89vw;
  left: 0;
  z-index: 10;
}

.p1-c-img4 {
  width: min(580px, 40.28vw);
  position: absolute;
  bottom: max(-90px, -6.25vw);
  right: 0;
  z-index: 10;
}

.p1-c-title2 {
  position: absolute;
  top: min(143px, 9.93vw);
  left: 5.56vw;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: serif;
  line-height: 1.5;
}

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

.p1-c-title2 p:last-child {
  margin-right: min(20px, 1.39vw);
  margin-top: min(40px, 2.78vw);
}

.p1-c-title2 p span {
  display: inline-flex;
  align-items: center;
  font-size: min(56px, 3.89vw);
  color: #659471;
}

.p1-c-title2 .tcy {
  text-combine-upright: all;
  -webkit-text-combine: horizontal;
  line-height: 1;
  vertical-align: baseline;
  transform: translateX(max(-8px, -0.56vw));
}

/* 1350 */
.p1-d {
  padding-top: min(150px, 11.11vw);
}

.p1-d-box {
  width: 100%;
  height: 33.33vw;
  display: flex;
  align-items: flex-end;
  background-image: url(../image/top-back2.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.p1-d-title {
  width: 100%;
  background: linear-gradient(
    to right,
    rgba(170, 158, 109, 0.7) 0%,
    rgba(204, 197, 171, 0.7) 50%,
    rgba(170, 158, 109, 0.7) 100%
  );
  padding: min(30px, 2.22vw) 0 min(30px, 2.22vw) min(80px, 5.93vw);
}

.p1-d-title h2 {
  font-size: min(64px, 4.74vw);
  font-weight: 400;
  color: #fff;
  padding-bottom: min(10px, 0.74vw);
}

.p1-d-title p {
  font-size: min(32px, 2.37vw);
  color: #fff;
}

.p1-d-span {
  position: absolute;
  top: max(-60px, -4.44vw);
  right: min(110px, 8.15vw);
  z-index: 10;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.p1-d-span p {
  font-size: min(72px, 5.33vw);
}

.p1-d-span span {
  font-size: min(56px, 4.15vw);
}

.p1-d-container {
  height: min(1748px, 121.39vw);
  background-image: url(../image/top-back3.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding-top: min(80px, 5.56vw);
}

.p1-d-box2 {
  width: min(1280px, 88.89vw);
  position: relative;
  margin: 0 auto;
}

.p1-d-item2 {
  width: min(920px, 63.89vw);
  background-color: #fff;
  padding: min(40px, 2.78vw);
}

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

.p1-d-text2 h3 {
  font-size: min(40px, 2.78vw);
  font-weight: 400;
}

.p1-d-text2 h3 span {
  font-size: min(32px, 2.22vw);
}

.p1-d-text2 h3 span .p1-d-span2 {
  color: #659471;
}

.p1-d-text2 p {
  font-size: min(16px, 1.11vw);
  line-height: 2;
  padding-top: min(20px, 1.39vw);
}

.p1-d-img {
  width: min(560px, 38.89vw);
  position: absolute;
  bottom: min(60px, 4.17vw);
  right: min(80px, 5.56vw);
  z-index: 10;
}

.p1-d-box3 {
  width: min(1120px, 77.78vw);
  display: grid;
  grid-template-columns: repeat(2, min(540px, 37.5vw));
  gap: min(94px, 6.53vw) min(40px, 2.78vw);
  margin: min(60px, 4.17vw) auto 0;
}

.p1-d-item3:nth-of-type(1) .p1-d-title3 {
  background-color: rgba(170, 151, 95, 0.8);
}

.p1-d-item3:nth-of-type(2) .p1-d-title3 {
  background-color: rgba(166, 119, 85, 0.8);
}

.p1-d-item3:nth-of-type(3) .p1-d-title3 {
  background-color: rgba(101, 148, 113, 0.8);
}

.p1-d-item3:nth-of-type(4) .p1-d-title3 {
  background-color: rgba(95, 113, 140, 0.8);
}

.p1-d-title3 {
  width: 100%;
  height: min(80px, 5.56vw);
  display: flex;
  align-items: center;
  gap: min(15px, 1.04vw);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  position: relative;
  z-index: 10;
  margin-bottom: max(-10px, -0.69vw);
}

.p1-d-title3 .p1-d-en {
  font-size: min(18px, 1.25vw);
  font-family: "Cinzel", serif;
  color: #fff;
  writing-mode: vertical-rl;
}

.p1-d-title3 .p1-d-number {
  font-size: min(64px, 4.44vw);
  font-family: "Cinzel", serif;
  color: #fff;
}

.p1-d-title3 p {
  font-size: min(24px, 1.67vw);
  color: #fff;
}

.p1-d-title3 p span {
  font-size: min(32px, 2.22vw);
  color: #fff;
}

.p1-d-text3 {
  background-color: #fff;
  padding: min(20px, 1.39vw) min(30px, 2.08vw);
}

.p1-d-text3 h4 {
  font-size: min(28px, 1.94vw);
  font-weight: 400;
}

.p1-d-text3 p {
  font-size: min(16px, 1.11vw);
  line-height: 2;
  padding: min(10px, 0.69vw) 0 min(37px, 2.57vw);
}

.p1-d-link a {
  width: min(156px, 10.83vw);
  display: flex;
  align-items: center;
  gap: min(10px, 0.69vw);
  padding: 0 min(20px, 1.39vw) min(14px, 0.97vw);
  border-bottom: min(1px, 0.07vw) solid #659471;
}

.p1-d-link a img {
  width: min(10px, 0.69vw);
  height: auto;
}

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

/* 1350 */
.p1-e-container {
  padding-top: min(330px, 24.44vw);
  padding-bottom: min(80px, 5.93vw);
}

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

.p1-e-title h2 {
  font-size: min(56px, 4.15vw);
  font-weight: 400;
}

.p1-e-title h2 span {
  font-size: min(48px, 3.56vw);
  color: #76746c;
}

.p1-e-title img {
  width: min(600px, 44.44vw);
  margin: min(30px, 2.22vw) auto;
}

.p1-e-title span {
  font-size: min(48px, 3.56vw);
  font-family: "Cinzel", serif;
  color: #659471;
}

.p1-e-img {
  width: min(1280px, 94.81vw);
  position: relative;
  margin: min(20px, 1.48vw) auto 0;
}

.p1-e-h3 {
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  background: linear-gradient(
    to right,
    rgba(170, 158, 109, 0.7) 0%,
    rgba(204, 197, 171, 0.7) 50%,
    rgba(170, 158, 109, 0.7) 100%
  );
  padding-top: min(20px, 1.48vw);
  padding-bottom: min(64px, 4.74vw);
}

.p1-e-h3 span {
  font-size: min(32px, 2.37vw);
  color: #fff;
}

.p1-e-h3 h3 {
  font-size: min(64px, 4.74vw);
  font-weight: 400;
  color: #fff;
}

.p1-e-h3 h3 span {
  font-size: min(48px, 3.56vw);
  color: #fff;
}

.p1-e-item-box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: min(40px, 2.96vw);
  position: relative;
  z-index: 15;
  margin-top: max(-44px, -3.26vw);
}

.p1-e-item {
  width: min(360px, 26.67vw);
  box-shadow: min(4px, 0.3vw) min(4px, 0.3vw) min(20px, 1.48vw)
    rgba(0, 0, 0, 0.25);
}

.p1-e-img2 {
  position: relative;
}

.p1-e-img2 p {
  font-size: min(28px, 2.07vw);
  color: #fff;
  line-height: 1.8;
  position: absolute;
  left: min(20px, 1.48vw);
  bottom: min(20px, 1.48vw);
  z-index: 10;
}

.p1-e-text {
  background-color: #fff;
  padding: min(20px, 1.48vw);
}

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

.p1-e-text2 {
  text-align: center;
  margin-top: min(40px, 2.96vw);
}

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

/* 1350 */
.p1-f {
  background-image: url(../image/top-back5.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.p1-f-container {
  width: min(1280px, 94.81vw);
  padding-top: 5.56vw;
  padding-bottom: 2.99vw;
  margin: 0 auto;
}

.p1-f-title {
  padding-bottom: min(10px, 0.74vw);
  position: relative;
}

.p1-f-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(790px, 58.52vw);
  height: min(5px, 0.37vw);
  background-color: #659471;
}

.p1-f-title p {
  font-size: min(56px, 4.15vw);
  line-height: 1.6;
}

.p1-f-title h2 {
  font-size: min(56px, 4.15vw);
  font-weight: 400;
  line-height: 1.6;
}

.p1-f-title h2 span {
  font-size: min(64px, 4.74vw);
  line-height: 1.6;
}

.p1-f-box {
  display: flex;
  justify-content: space-between;
  margin-top: min(33px, 2.44vw);
}

.p1-f-img {
  width: min(520px, 38.52vw);
}

.p1-f-item {
  width: min(710px, 52.59vw);
}

.p1-f-name {
  width: min(360px, 26.67vw);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p1-f-name span {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: min(15px, 1.11vw) 0;
}

.p1-f-name span:first-child {
  font-size: min(32px, 2.37vw);
  color: #fff;
  background: linear-gradient(
    to right,
    rgba(170, 158, 109, 1) 0%,
    rgba(204, 197, 171, 1) 50%,
    rgba(170, 158, 109, 1) 100%
  );
}

.p1-f-name span:last-child {
  font-size: min(48px, 3.56vw);
  display: inline-block;
  background-color: #fff;
}

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

.p1-f-text p {
  font-size: min(16px, 1.19vw);
  color: #fff;
  line-height: 2;
  text-shadow: 0 min(1px, 0.07vw) min(3px, 0.22vw) rgba(0, 0, 0, 0.25);
}

.p1-f-list {
  display: flex;
  justify-content: space-between;
  margin-top: min(20px, 1.48vw);
}

.p1-f-list span {
  font-size: min(24px, 1.78vw);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #413b22;
  padding: min(10px, 0.74vw) 0;
  margin-bottom: min(10px, 0.74vw);
}

.p1-f-table {
  width: min(330px, 24.44vw);
}

.p1-f-table table {
  width: 100%;
}

.p1-f-table table th,
.p1-f-table table td {
  text-align: left;
  font-size: min(16px, 1.19vw);
  font-weight: 400;
  color: #fff;
  padding-bottom: min(8px, 0.59vw);
}

.p1-f-ul {
  width: min(330px, 24.44vw);
}

.p1-f-ul ul li {
  font-size: min(16px, 1.19vw);
  color: #fff;
  padding-bottom: min(8px, 0.59vw);
}

.p1-f-box2 {
  width: min(1200px, 88.89vw);
  display: flex;
  align-items: center;
  margin: min(40px, 2.96vw) auto 0;
}

.p1-f-item-box2 {
  width: min(814px, 60.3vw);
  background-color: rgba(255, 255, 255, 0.8);
  padding: min(30px, 2.22vw) min(70px, 5.19vw);
}

.p1-f-name2 {
  display: flex;
  align-items: center;
  gap: min(40px, 2.96vw);
}

.p1-f-name2 span {
  width: min(100px, 7.41vw);
  height: min(100px, 7.41vw);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(32px, 2.37vw);
  border: min(1px, 0.07vw) solid #76746c;
}

.p1-f-name2 h3 {
  display: flex;
  align-items: center;
  font-size: min(48px, 3.56vw);
  font-weight: 400;
}

.p1-f-name2 h3 span {
  font-size: min(32px, 2.37vw);
  padding: 0;
  border: none;
  margin-top: min(10px, 0.74vw);
  margin-right: min(10px, 0.74vw);
}

.p1-f-img2 {
  width: min(400px, 29.63vw);
  position: relative;
  z-index: 5;
  margin-left: max(-14px, -1.04vw);
}

.p1-f-box2 .p1-f-table table th,
.p1-f-box2 .p1-f-table table td,
.p1-f-box2 .p1-f-ul ul li {
  color: #76746c;
}

/* 1350 */
.p1-g-container {
  padding: min(80px, 5.93vw) 0;
}

.p1-g-logo {
  width: min(276px, 20.44vw);
  margin: 0 auto;
}

.p1-g-box {
  width: 100%;
  aspect-ratio: 1440 / 580;
  position: relative;
  background-image: url(../image/top-back6.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: min(40px, 2.96vw);
}

.p1-g-title {
  width: min(600px, 44.44vw);
  text-align: center;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 50%;
  bottom: min(40px, 2.96vw);
  transform: translateX(-50%);
  z-index: 5;
  padding: min(20px, 1.48vw) min(100px, 7.41vw);
}

.p1-g-title h2 {
  font-size: min(56px, 4.15vw);
  font-weight: 400;
}

.p1-g-title img {
  margin: min(20px, 1.48vw) auto;
}

.p1-g-title span {
  font-size: min(48px, 3.56vw);
  font-family: "Cinzel", serif;
  color: #659471;
}

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

.p1-g-h3 {
  text-align: center;
}

.p1-g-h3 h3 {
  font-size: min(40px, 2.96vw);
  font-weight: 400;
  color: #659471;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(40px, 2.96vw);
}

.p1-g-h3 h3::before,
.p1-g-h3 h3::after {
  content: "";
  width: min(80px, 5.93vw);
  height: min(1px, 0.07vw);
  background: #659471;
}

.p1-g-text {
  width: min(1120px, 82.96vw);
  margin: min(30px, 2.22vw) auto 0;
}

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

/* 1350 */
.p1-h-container {
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  background-image: url(../image/top-back7.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.p1-h-box {
  width: min(1280px, 94.81vw);
  position: relative;
  margin: 0 auto;
}

.p1-h .mega-row {
  gap: min(26px, 1.93vw);
}

.p1-h-title {
  width: min(320px, 23.7vw);
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
}

.p1-h-title h2 {
  font-size: min(56px, 4.15vw);
  font-weight: 400;
}

.p1-h-title img {
  margin: min(20px, 1.48vw) auto;
}

.p1-h-title span {
  font-size: min(48px, 3.56vw);
  font-family: "Cinzel", serif;
  color: #659471;
}

/* 1350 */
.p1-i {
  background-image: url(../image/top-back8.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: min(180px, 13.33vw);
}

.p1-i-container {
  width: min(1280px, 94.81vw);
  position: relative;
  padding: min(186px, 13.78vw) 0 min(120px, 8.89vw);
  margin: 0 auto;
}

.p1-i-title-box {
  position: absolute;
  top: max(-100px, -7.41vw);
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: min(60px, 4.44vw);
}

.p1-i-logo {
  width: min(345px, 25.56vw);
}

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

.p1-i-title p {
  font-size: min(40px, 2.96vw);
  position: absolute;
  top: min(40px, 2.96vw);
  left: min(120px, 8.89vw);
  z-index: 5;
  white-space: nowrap;
}

.p1-i-title h2 {
  font-size: min(64px, 4.74vw);
  font-weight: 400;
}

.p1-i-title h2 span:first-child {
  font-size: min(180px, 13.33vw);
}

.p1-i-title h2 span:last-child {
  font-size: min(96px, 7.11vw);
}

.p1-i-box {
  display: grid;
  grid-template-columns: repeat(2, min(480px, 35.56vw));
  gap: min(100px, 7.41vw) min(60px, 4.44vw);
}

.p1-i-item {
  width: min(480px, 35.56vw);
  position: relative;
  background-color: #fff;
  padding: min(40px, 2.96vw);
  border: min(1px, 0.07vw) solid #868686;
}

.p1-i-number {
  position: absolute;
  top: max(-70px, -5.19vw);
  left: min(40px, 2.96vw);
  z-index: 5;
  display: flex;
  align-items: flex-end;
}

.p1-i-number span:first-child {
  font-size: min(40px, 2.96vw);
  font-family: "Cinzel", serif;
  margin-bottom: min(15px, 1.11vw);
}

.p1-i-number span:last-child {
  font-size: min(90px, 6.67vw);
  font-family: "Cinzel", serif;
}

.p1-i-h3 p {
  font-size: min(28px, 2.07vw);
}

.p1-i-h3 h3 {
  font-size: min(36px, 2.67vw);
  font-weight: 400;
}

.p1-i-img {
  width: 100%;
  margin-top: min(30px, 2.22vw);
}

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

.p1-i-text ul li {
  font-size: min(16px, 1.19vw);
  display: flex;
  align-items: center;
  gap: min(10px, 0.74vw);
  margin-bottom: min(10px, 0.74vw);
}

.p1-i-text ul li img {
  width: min(12px, 0.89vw);
}

.p1-i-text ul li:last-child {
  margin-bottom: 0;
}

/* 1350 */
.p1-j-container {
  padding-top: min(40px, 2.96vw);
}

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

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

.p1-j-box {
  width: min(1280px, 94.81vw);
  position: relative;
  margin: min(180px, 13.33vw) auto min(70px, 5.19vw);
}

.p1-j-title {
  display: flex;
  align-items: flex-start;
  gap: min(10px, 0.74vw);
  position: absolute;
  top: max(-70px, -5.19vw);
  left: min(40px, 2.96vw);
  z-index: 5;
}

.p1-j-title p,
.p1-j-title h2 {
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  line-height: 1.6;
}

.p1-j-title h2 {
  font-size: min(56px, 4.15vw);
  font-weight: 400;
  color: #fff;
  background-image: url(../image/part13.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding: min(20px, 1.48vw) 0;
  margin-top: min(65px, 4.81vw);
}

.p1-j-title h2 span {
  font-size: min(48px, 3.56vw);
  color: #fff;
}

.p1-j-title p {
  font-size: min(40px, 2.96vw);
}

/* 1350 */
.p1-k-container {
  background-color: #f2efe7;
  padding: min(40px, 2.96vw) 0;
}

.p1-k-box {
  width: min(1280px, 94.81vw);
  background-color: #fff;
  position: relative;
  padding: min(54px, 4vw) min(80px, 5.93vw) min(90px, 6.67vw);
  margin: 0 auto;
}

.p1-k-title {
  display: inline-block;
  position: relative;
  margin-left: min(320px, 23.7vw);
}

.p1-k-title h2 {
  font-size: min(48px, 3.56vw);
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.p1-k-title::after {
  content: "";
  position: absolute;
  left: max(-28px, -2.07vw);
  bottom: max(-10px, -0.74vw);
  width: min(586px, 43.41vw);
  height: min(30px, 2.22vw);
  background: #f1efe7;
  z-index: 0;
}

.p1-k-title h2 span {
  font-size: min(40px, 2.96vw);
  position: relative;
  z-index: 1;
}

.p1-k-item {
  display: flex;
  justify-content: space-between;
  margin-top: min(100px, 7.41vw);
}

.p1-k-text {
  width: min(640px, 47.41vw);
}

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

.p1-k-img {
  width: min(400px, 29.63vw);
}

.p1-k-list {
  background-image: url(../image/top-back9.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: min(30px, 2.22vw) min(80px, 5.93vw) min(60px, 4.44vw);
  border-top: min(5px, 0.37vw) solid #ada891;
  margin-top: min(35px, 2.59vw);
}

.p1-k-list h3 {
  text-align: center;
  font-size: min(24px, 1.78vw);
  font-weight: 400;
  color: #fff;
  background-color: #659471;
  padding: min(20px, 1.48vw) 0;
}

.p1-k-list ul {
  display: grid;
  grid-template-columns: repeat(4, min(210px, 15.56vw));
  column-gap: min(40px, 2.96vw);
  margin-top: min(23px, 1.7vw);
}

.p1-k-list ul li {
  font-size: min(16px, 1.19vw);
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: min(23px, 1.7vw);
  padding: min(20px, 1.48vw) 0;
  border-bottom: min(1px, 0.07vw) solid #659471;
}

.p1-k-list ul li img {
  width: min(20px, 1.48vw);
  height: auto;
}

.p1-k-span {
  width: min(315px, 23.33vw);
  height: min(287px, 21.26vw);
  display: flex;
  align-items: center;
  position: absolute;
  top: max(-85px, -6.3vw);
  left: min(10px, 0.74vw);
  z-index: 5;
  background-image: url(../image/top-back11.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.p1-k-span span {
  display: inline-block;
  font-size: min(32px, 2.37vw);
  color: #fff;
  margin-left: min(77px, 5.7vw);
}

/* 1350 */
.p1-l-container {
  padding-top: min(80px, 5.93vw);
}

.p1-l-logo {
  width: min(276px, 20.44vw);
  margin: 0 auto;
}

.p1-l-box {
  width: min(1280px, 94.81vw);
  display: flex;
  margin: min(40px, 2.96vw) auto 0;
}

.p1-l-img {
  width: 50%;
}

.p1-l-item {
  width: 50%;
  background-color: #e8f2eb;
  padding: min(50px, 3.7vw) min(40px, 2.96vw);
}

.p1-l-title {
  text-align: left;
}

.p1-l-title h2 {
  font-size: min(40px, 2.96vw);
  font-weight: 400;
}

.p1-l-title img {
  width: 100%;
  margin: min(20px, 1.48vw) 0;
}

.p1-l-title span {
  font-size: min(40px, 2.96vw);
  font-family: "Cinzel", serif;
  color: #659471;
}

.p1-l-text {
  padding-top: min(40px, 2.96vw);
}

.p1-l-text h3 {
  font-size: min(32px, 2.37vw);
  font-weight: 400;
  line-height: 1.3;
}

.p1-l-text p {
  font-size: min(16px, 1.19vw);
  line-height: 2;
  padding-top: min(20px, 1.48vw);
}

/* 1350 */
.p1-m-container {
  padding-top: min(100px, 7.41vw);
}

.p1-m-title {
  width: min(600px, 44.44vw);
  text-align: center;
  margin: 0 auto;
}

.p1-m-title h2 {
  font-size: min(40px, 2.96vw);
  font-weight: 400;
}

.p1-m-title img {
  width: 100%;
  margin: min(20px, 1.48vw) 0;
}

.p1-m-title span {
  font-size: min(40px, 2.96vw);
  font-family: "Cinzel", serif;
  color: #659471;
}

.p1-m-box {
  width: min(1120px, 82.96vw);
  margin: min(40px, 2.96vw) auto 0;
}

.faq-item {
  margin-bottom: min(40px, 2.96vw);
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  height: min(80px, 5.93vw);
  display: flex;
  align-items: center;
  border: none;
  padding: 0;
  cursor: pointer;
  background: none;
}

.faq-q {
  width: min(80px, 5.93vw);
  height: min(80px, 5.93vw);
  background: #e6e3d5;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(48px, 3.56vw);
  font-weight: 400;
  font-family: "Lora", serif;
  color: #c2bda7;
}

.faq-title {
  width: calc(100% - min(160px, 11.85vw));
  height: min(80px, 5.93vw);
  background: #f1efe7;
  display: flex;
  align-items: center;
  padding: 0 min(20px, 1.48vw);
  font-size: min(24px, 1.78vw);
  font-family: "Zen Old Mincho", serif;
  color: #76746c;
}

.faq-icon {
  width: min(80px, 5.93vw);
  height: min(80px, 5.93vw);
  background: #f1efe7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-icon img {
  width: min(20px, 1.48vw);
  transition: 0.3s;
}

.faq-question.is-active .faq-icon img {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: min(20px, 1.48vw);
  background: #fff;
  gap: min(20px, 1.48vw);
}

.faq-answer.is-open {
  display: flex;
}

.faq-a {
  font-size: min(48px, 3.56vw);
  font-family: "Lora", serif;
  color: #c2bda7;
  flex-shrink: 0;
}

.faq-text {
  font-size: min(16px, 1.19vw);
  font-family: "Zen Old Mincho", serif;
  color: #76746c;
  line-height: 2;
  padding-left: min(20px, 1.48vw);
}
/* 1350 */
.p1-n-container {
  background-color: #e8f2eb;
  padding: min(60px, 4.44vw) 0;
  margin-top: min(100px, 7.41vw);
}

.p1-n-box {
  width: min(960px, 71.11vw);
  position: relative;
  margin: 0 auto;
}

.gallery-main {
  width: 100%;
}

.gallery-main img {
  width: 100%;
  height: min(640px, 47.41vw);
  object-fit: cover;
  display: block;
}

.gallery-thumb {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(26px, 1.93vw);
  margin-top: min(20px, 1.48vw);
}

.thumb {
  width: min(220px, 16.3vw);
  height: min(147px, 10.89vw);
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s;
}

.thumb.is-active {
  opacity: 1;
}

.p1-n-title {
  width: min(320px, 23.7vw);
  height: min(178px, 13.19vw);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: min(20px, 1.48vw);
  left: min(20px, 1.48vw);
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.9);
}

.p1-n-title h2 {
  font-size: min(48px, 3.56vw);
  font-weight: 400;
  font-family: "Cinzel", serif;
  color: #659471;
}

/* 1350 */
.p1-o-container {
  padding: min(100px, 7.41vw) 0 min(80px, 5.93vw);
}

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

.p1-o-title h2 {
  font-size: min(64px, 4.74vw);
  font-weight: 400;
  font-family: "Cinzel", serif;
  color: #659471;
}

.p1-o-box {
  width: min(1280px, 94.81vw);
  height: min(540px, 40vw);
  position: relative;
  overflow: hidden;
  margin: min(40px, 2.96vw) auto 0;
}

.p1-o-box iframe {
  width: 100%;
  height: min(1500px, 111.11vw);
  transform: translateY(-30%);
}

.p1-o-img {
  width: min(199px, 14.74vw);
  position: absolute;
  top: min(20px, 1.48vw);
  left: min(20px, 1.48vw);
  z-index: 5;
}

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

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

.p2-a-box:nth-of-type(2) {
  margin-top: min(80px, 5.93vw);
}

.p2-a-item {
  display: flex;
  justify-content: space-between;
  margin-top: min(40px, 2.96vw);
}

.p2-a-img {
  width: min(400px, 29.63vw);
  position: relative;
}

.p2-a-nume {
  width: 100%;
  display: flex;
  align-items: center;
  gap: min(20px, 1.48vw);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  background-color: rgba(255, 255, 255, 0.8);
  padding: min(13px, 0.96vw) min(24px, 1.78vw);
}

.p2-a-nume span {
  width: min(160px, 11.85vw);
  height: min(40px, 2.96vw);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(20px, 1.48vw);
  color: #fff;
  background: linear-gradient(
    to right,
    rgba(170, 158, 109, 1) 0%,
    rgba(204, 197, 171, 1) 50%,
    rgba(170, 158, 109, 1) 100%
  );
}

.p2-a-nume p {
  font-size: min(40px, 2.96vw);
}

.p2-a-text-box {
  width: min(840px, 62.22vw);
}

.p2-a-text h3 {
  font-size: min(28px, 2.07vw);
  font-weight: 400;
  line-height: 1.8;
}

.p2-a-text p {
  font-size: min(16px, 1.19vw);
  line-height: 2;
  padding-top: min(10px, 0.74vw);
}

.p2-a-list-box {
  display: flex;
  justify-content: space-between;
  margin-top: min(60px, 4.44vw);
}

.p2-a-list {
  width: min(460px, 34.07vw);
  background-color: #f1efe7;
  padding: min(20px, 1.48vw);
}

.p2-a-list:last-child {
  width: min(360px, 26.67vw);
}

.p2-a-list h4 {
  width: 100%;
  text-align: center;
  font-size: min(20px, 1.48vw);
  font-weight: 400;
  color: #fff;
  background-color: #c3b27f;
  padding: min(8px, 0.59vw) 0;
}

.p2-a-list ul {
  margin-top: min(20px, 1.48vw);
}

.p2-a-list ul li {
  font-size: min(15px, 1.11vw);
  position: relative;
  padding-left: min(20px, 1.48vw);
  margin-bottom: min(13px, 0.96vw);
}

.p2-a-list ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: min(14px, 1.04vw);
  height: min(14px, 1.04vw);
  background: #c3b27f;
  border-radius: 50%;
  transform: translateY(-50%);
}

.p2-a-list ul li:last-child {
  margin-bottom: 0;
}

.p2-a-box2 {
  width: min(600px, 44.44vw);
  margin: min(60px, 4.44vw) auto 0;
}

.p2-a-title h2 {
  width: 100%;
  text-align: center;
  font-size: min(20px, 1.48vw);
  font-weight: 400;
  color: #fff;
  background-color: #c3b27f;
  padding: min(8px, 0.59vw) 0;
}

.p2-a-title p {
  text-align: center;
  font-size: min(28px, 2.07vw);
  line-height: 1.8;
  padding-top: min(10px, 0.74vw);
}

.p2-a-img2 {
  width: 100%;
  margin-top: min(20px, 1.48vw);
}

/* 1350 */
.p2-b-container {
  padding-top: min(80px, 5.93vw);
  padding-bottom: min(120px, 8.89vw);
}
.p2-b-box {
  width: min(1280px, 94.81vw);
  margin: 0 auto;
}

.p2-b .h3-title {
  margin-top: min(60px, 4.44vw);
}

.p2-b-item-box {
  display: grid;
  grid-template-columns: repeat(3, min(400px, 29.63vw));
  gap: min(40px, 2.96vw);
  margin-top: min(40px, 2.96vw);
}

.p2-b-span {
  text-align: center;
  background-color: #659471;
  padding: min(10px, 0.74vw) 0;
  margin-top: min(20px, 1.48vw);
}

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

.p2-b-text {
  margin-top: min(10px, 0.74vw);
}

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

/* 料金 */
/* 1350 */
.p3-a-container {
  padding-bottom: min(120px, 8.89vw);
}

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

.p3-a-item {
  margin-top: min(40px, 2.96vw);
}

.p3-a-title {
  text-align: center;
  background-color: #659471;
  padding: min(10px, 0.74vw) 0;
}

.p3-a-title h3 {
  font-size: min(20px, 1.48vw);
  font-weight: 400;
  color: #fff;
  line-height: 2;
}

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

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

.p3-a-table thead th {
  background: #94b39c;
  color: #fff;
  font-size: min(16px, 1.19vw);
  font-weight: 400;
  padding: min(20px, 1.48vw);
  border-right: min(1px, 0.07vw) solid #fff;
}

.p3-a-table thead th:first-child {
  border-left: min(1px, 0.07vw) solid #94b39c;
}

.p3-a-table thead th:last-child {
  border-right: min(1px, 0.07vw) solid #94b39c;
}

.p3-a-table tbody td {
  font-size: min(16px, 1.19vw);
  text-align: center;
  padding: min(22px, 1.63vw) min(20px, 1.48vw);
  border: min(1px, 0.07vw) solid #000;
  border-top: none;
}

.p3-a-h4 {
  text-align: center;
  background-color: #94b39c;
  padding: min(10px, 0.74vw) 0;
}

.p3-a-h4 h4 {
  font-size: min(16px, 1.19vw);
  font-weight: 400;
  color: #fff;
  line-height: 2;
}

.p3-a-text-box {
  padding: min(20px, 1.48vw) min(40px, 2.96vw);
  border: min(1px, 0.07vw) solid #000;
  border-top: none;
}

.p3-a-text {
  width: 100%;
  height: min(230px, 17.04vw);
  overflow-y: scroll;
  padding-right: min(35px, 2.59vw);
}

.p3-a-text.p3-a-text2 {
  height: auto;
}

.p3-a-text span {
  font-size: min(20px, 1.48vw);
  line-height: 2;
}

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

.p3-a-text::-webkit-scrollbar {
  width: min(8px, 0.59vw);
}

.p3-a-text::-webkit-scrollbar-track {
  background: #fff;
}

.p3-a-text::-webkit-scrollbar-thumb {
  background: #659471;
}

/* アクセス */
/* 1350 */
.p4-a-container {
  padding-bottom: min(120px, 8.89vw);
}

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

.p4-a-img {
  width: min(1120px, 82.96vw);
  margin: min(40px, 2.96vw) auto 0;
}

.p4-a-table {
  width: min(1120px, 82.96vw);
  margin: min(40px, 2.96vw) auto 0;
}

.p4-a-table table {
  width: 100%;
  border-spacing: min(10px, 0.74vw) 0;
  background-color: #f1efe7;
  padding: min(40px, 2.96vw) min(80px, 5.93vw);
}

.p4-a-table th,
.p4-a-table td {
  padding-top: min(10px, 0.74vw);
  padding-bottom: min(10px, 0.74vw);
  font-size: min(16px, 1.19vw);
  font-weight: 400;
  line-height: 2;
  color: #7f7a73;
  vertical-align: middle;
  border-bottom: min(1px, 0.07vw) solid #76746c;
}

.p4-a-table th {
  width: min(290px, 21.48vw);
  text-align: center;
}

.p4-a-table td {
  padding-left: min(20px, 1.48vw);
}

/* 1350 */
.p4-a-box2 {
  width: min(1280px, 94.81vw);
  margin: min(80px, 5.93vw) auto 0;
}

.p4-a-item2 {
  width: min(1120px, 82.96vw);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(20px, 1.48vw);
  padding: min(15px, 1.11vw) 0;
  border: min(1px, 0.07vw) solid #94b39c;
  margin: min(40px, 2.96vw) auto 0;
}

.p4-a-item2 img {
  width: min(60px, 4.44vw);
  height: auto;
}

.p4-a-item2 p {
  font-size: min(16px, 1.19vw);
  color: #94b39c;
  line-height: 2;
  letter-spacing: 0.1em;
}

.p4-a-item2 p span {
  font-size: min(32px, 2.37vw);
  color: #94b39c;
  line-height: 2;
}

/* 診療メニュー */
/* 1350 */
.p5-a-container {
  width: min(1280px, 94.81vw);
  background-color: #f1efe7;
  padding: min(60px, 4.44vw) min(80px, 5.93vw);
  margin: min(70px, 5.19vw) auto 0;
}

.p5-a .h2-title {
  width: min(1120px, 82.96vw);
  clip-path: polygon(
    0 100%,
    min(30px, 2.22vw) 0,
    100% 0,
    min(1090px, 80.74vw) 100%
  );
}

.p5.h3-title {
  margin-top: min(40px, 2.96vw);
}

.p5-item {
  display: flex;
  justify-content: space-between;
  margin-top: min(30px, 2.22vw);
}

.p5-item.reverce {
  flex-direction: row-reverse;
}

.p5-img {
  width: min(520px, 38.52vw);
}

.p5-text {
  width: min(560px, 41.48vw);
}

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

.p5-text h3 {
  font-size: min(28px, 2.07vw);
  font-weight: 400;
  color: #c3b27f;
  line-height: 2;
  padding-bottom: min(20px, 1.48vw);
}

.p5-text2 {
  margin-top: min(30px, 2.22vw);
}

.p5-text2 h3 {
  font-size: min(28px, 2.07vw);
  font-weight: 400;
  color: #c3b27f;
  line-height: 2;
  padding-bottom: min(20px, 1.48vw);
}

.p5.p5-text2 h3 {
  padding-bottom: 0;
}

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

.p5-p {
  padding-top: min(30px, 2.22vw);
}

.p5-link a {
  width: min(156px, 11.56vw);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(10px, 0.74vw);
  padding: min(5px, 0.37vw) 0;
  border-bottom: min(1px, 0.07vw) solid #c3b27f;
  margin: 0 auto;
}

.p5-link img {
  width: min(12px, 0.89vw);
  height: auto;
}

.p5-link span {
  font-size: min(20px, 1.48vw);
  color: #c3b27f;
  line-height: 1.8;
}

.p5-item-box2 {
  display: flex;
  justify-content: space-between;
  margin-top: min(20px, 1.48vw);
}

.p5-item2 {
  width: min(540px, 40vw);
  background-color: #fff;
  padding: min(20px, 1.48vw) min(30px, 2.22vw);
}

.p5-item2 h4 {
  text-align: center;
  font-size: min(20px, 1.48vw);
  font-weight: 400;
  color: #fff;
  background-color: #94b39c;
  line-height: 1.2;
  padding: min(8px, 0.59vw) 0;
}

.p5-item2 p {
  font-size: min(16px, 1.19vw);
  line-height: 2;
  padding-top: min(20px, 1.48vw);
}

.p5-item2 ul {
  margin-top: min(20px, 1.48vw);
}

.p5-item2 ul li {
  font-size: min(15px, 1.11vw);
  position: relative;
  padding-left: min(20px, 1.48vw);
  margin-bottom: min(13px, 0.96vw);
}

.p5-item2 ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: min(14px, 1.04vw);
  height: min(14px, 1.04vw);
  background: #94b39c;
  border-radius: 50%;
  transform: translateY(-50%);
}

.p5-item2 ul li:last-child {
  margin-bottom: 0;
}

/* 1350 */
.p5-b .p5-a-container {
  margin-top: min(80px, 5.93vw);
}

.p5-you {
  width: min(800px, 59.26vw);
  height: min(440px, 32.59vw);
  margin: min(20px, 1.48vw) auto 0;
}

.p5-you iframe {
  width: 100%;
  height: 100%;
}

.p5-b .p5-item2 {
  width: min(360px, 26.67vw);
}

.p5-item3 {
  width: 100%;
  text-align: center;
  background-color: #fff;
  padding: min(30px, 2.22vw) min(40px, 2.96vw);
  margin-top: min(40px, 2.96vw);
}

.p5-item3 span {
  font-size: min(48px, 3.56vw);
  font-family: "Cinzel", serif;
  color: #94b39c;
  line-height: 1.2;
}

.p5-item3 h3 {
  font-size: min(24px, 1.78vw);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  background-color: #94b39c;
  padding: min(20px, 1.48vw) 0;
}

.p5-item3 ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: min(30px, 2.22vw);
}

.p5-item3 ul li {
  width: min(500px, 37.04vw);
  font-size: min(16px, 1.19vw);
  display: flex;
  align-items: center;
  gap: min(10px, 0.74vw);
  padding: min(20px, 1.48vw) 0;
  border-bottom: min(1px, 0.07vw) solid #94b39c;
}

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

.p5-h3 {
  background-color: #fff;
  padding: min(20px, 1.48vw) min(18px, 1.33vw);
  border-left: min(20px, 1.48vw) solid #c3b27f;
  margin-top: min(30px, 2.22vw);
}

.p5-h3 h3 {
  font-size: min(24px, 1.78vw);
  font-weight: 400;
  color: #c3b27f;
  line-height: 1.2;
}

.p5-text3 {
  padding-bottom: min(20px, 1.48vw);
  border-bottom: min(1px, 0.07vw) solid #d5d3c9;
  margin-top: min(30px, 2.22vw);
}

.p5-text3 h3 {
  font-size: min(28px, 2.07vw);
  font-weight: 400;
  color: #c3b27f;
  line-height: 2;
  padding-bottom: min(10px, 0.74vw);
}

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

/* 1350 */
.p5-c .p5-a-container {
  margin-top: min(80px, 5.93vw);
  margin-bottom: min(120px, 8.89vw);
}

/* 下層共通 */
/* 1350 */
.sub-v {
  position: relative;
  width: 100%;
  height: min(530px, 39.26vw);
  overflow: visible;
}

.sub-v-video {
  position: absolute;
  width: 100%;
  height: min(450px, 33.33vw);
  object-fit: cover;
}

.sub-v-title {
  position: absolute;
  left: min(80px, 5.93vw);
  bottom: min(160px, 11.85vw);
}

.sub-v-title h1 {
  font-size: min(64px, 4.74vw);
  font-weight: 400;
  color: #fff;
  text-shadow: min(4px, 0.3vw) min(4px, 0.3vw) min(20px, 1.48vw)
    rgba(0, 0, 0, 1);
}

.h2-title {
  width: min(1280px, 94.81vw);
  text-align: center;
  background-color: #c3b27f;
  padding: min(23px, 1.7vw) 0;
  color: #fff;
  clip-path: polygon(
    0 100%,
    min(30px, 2.22vw) 0,
    100% 0,
    min(1250px, 92.59vw) 100%
  );
  margin: 0 auto;
}

.h2-title h2 {
  font-size: min(32px, 2.37vw);
  font-weight: 400;
  color: #fff;
}

.h3-title {
  text-align: center;
  background-color: #fff;
  padding: min(17px, 1.26vw) 0;
  border-top: min(3px, 0.22vw) solid #c3b27f;
  border-bottom: min(3px, 0.22vw) solid #c3b27f;
}

.h3-title h3 {
  font-size: min(28px, 2.07vw);
  font-weight: 400;
  color: #c3b27f;
  line-height: 1.2;
}

/* フッター */
footer {
  width: 100%;
}

.footer-container {
  background-image: url(../image/top-back10.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: min(80px, 5.93vw);
}

.footer-logo {
  width: min(345px, 25.56vw);
  margin: 0 auto;
}

.footer-box {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: min(40px, 2.96vw);
  margin-top: min(40px, 2.96vw);
}

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

.footer-item {
  display: flex;
  gap: min(10px, 0.74vw);
}

.footer-tel {
  width: min(320px, 23.7vw);
  text-align: center;
  padding: min(15px, 1.11vw) 0;
  border-top: min(1px, 0.07vw) solid #fff;
  border-bottom: min(1px, 0.07vw) solid #fff;
}

.footer-tel span {
  font-size: min(16px, 1.19vw);
  color: #fff;
  line-height: 1.2;
}

.footer-tel p {
  font-size: min(24px, 1.78vw);
  color: #fff;
  line-height: 1.2;
  padding-top: min(5px, 0.37vw);
}

.footer-web a {
  width: min(320px, 23.7vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(5px, 0.37vw);
  background-color: rgba(255, 255, 255, 0.7);
  padding: min(20px, 1.48vw) 0;
}

.footer-web span {
  font-size: min(16px, 1.19vw);
  line-height: 1.2;
}

.footer-web-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(10px, 0.74vw);
}

.footer-web-item img {
  width: min(24px, 1.78vw);
  height: auto;
}

.footer-web-item p {
  font-size: min(28px, 2.07vw);
  line-height: 1.2;
}

.footer-item2 {
  display: flex;
  align-items: center;
  gap: min(35px, 2.59vw);
  margin-top: min(40px, 2.96vw);
}

.footer-map,
.footer-map2 {
  display: flex;
  align-items: center;
  gap: min(20px, 1.48vw);
}

.footer-img-box {
  width: min(60px, 4.44vw);
  height: min(60px, 4.44vw);
  display: flex;
  justify-content: center;
  align-items: center;
  border: min(1px, 0.07vw) solid #fff;
}

.footer-map .footer-img-box img {
  width: min(15px, 1.11vw);
  height: auto;
}

.footer-map2 .footer-img-box img {
  width: min(17px, 1.26vw);
  height: auto;
}

.footer-map p {
  font-size: min(20px, 1.48vw);
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

.footer-map2 p {
  font-size: min(24px, 1.78vw);
  color: #fff;
  line-height: 1.2;
}

.footer-map2 span {
  font-size: min(16px, 1.19vw);
  color: #fff;
  line-height: 1.2;
}

.footer-table .main-v-table {
  position: static;
  background: rgba(255, 255, 255, 0.7);
}

.footer-table p {
  font-size: min(16px, 1.19vw);
  color: #fff;
  line-height: 1.8;
  padding-top: min(10px, 0.74vw);
}

.footer-box2 {
  display: flex;
  justify-content: center;
  gap: min(40px, 2.96vw);
  margin-top: min(60px, 4.44vw);
}

.footer-nav {
  width: min(620px, 45.93vw);
}

.footer-nav h3 {
  font-size: min(32px, 2.37vw);
  font-weight: 400;
  font-family: "Cinzel", serif;
  color: #fff;
  padding-bottom: min(10px, 0.74vw);
  border-bottom: min(2px, 0.15vw) solid #fff;
}

.footer-nav ul {
  margin-top: min(30px, 2.22vw);
}

.footer-nav:first-child ul {
  width: min(350px, 25.93vw);
  display: flex;
  flex-wrap: wrap;
  gap: min(20px, 1.48vw);
}

.footer-nav:last-child ul {
  width: min(570px, 42.22vw);
  display: flex;
  flex-wrap: wrap;
  gap: min(20px, 1.48vw);
}

.footer-nav ul li {
  width: auto;
}

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

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

.copy-right p {
  font-size: min(15px, 1.11vw);
  color: #fff;
  line-height: 1.2;
}

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

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

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

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

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

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

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

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

  .sp {
    display: block;
  }

  body.is-fixed {
    overflow: hidden;
  }

  /* ヘッダー */
  .sp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #aa975f;
    z-index: 9999;
    display: block;
  }

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

  .sp-header-logo img {
    height: 30px;
    width: auto;
  }

  /* ハンバーガーボタン */
  .sp-menu-btn {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    z-index: 1000;
    cursor: pointer;
  }

  .sp-menu-btn span {
    position: absolute;
    left: 7px;

    width: 26px;
    height: 1px;

    background-color: #fff;

    transition: 0.3s;
  }

  /* 上線 */
  .sp-menu-btn span:nth-child(1) {
    top: 11px;
  }

  /* 下線 */
  .sp-menu-btn span:nth-child(2) {
    top: 19px;
  }

  /* テキスト */
  .menu-text {
    position: absolute;
    left: 50%;
    bottom: 5px;

    transform: translateX(-50%);

    font-size: 10px;
    line-height: 1;

    color: #fff;
  }

  /* 開いた時 */
  .sp-menu-btn.is-active span:nth-child(1) {
    top: 15px;
    transform: rotate(30deg);
  }

  .sp-menu-btn.is-active span:nth-child(2) {
    top: 15px;
    transform: rotate(-30deg);
  }

  /* MENU → CLOSE */
  .sp-menu-btn.is-active .menu-text {
    font-size: 0;
  }

  .sp-menu-btn.is-active .menu-text::before {
    content: "CLOSE";

    font-size: 9px;
    color: #fff;
  }

  /* 全画面メニュー */
  .sp-header-nav {
    position: fixed;
    top: 40px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 40px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #ffffff;
    transition: 0.4s;
    display: flex;
    z-index: 999;
    padding: 30px 40px;
  }

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

  .sp-nav-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sp-nav-list li {
    width: 100%;
    padding: 25px 0;
    border-top: 1px solid #76746c;
  }
  .sp-nav-list li a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    font-size: 18px;
    color: #76746c;
  }

  .sp-has-menu {
    width: 100%;
  }

  /* ボタン */
  .sp-menu-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    font-size: 18px;
    font-family: "Zen Old Mincho", serif;
    color: #76746c;
  }

  /* 矢印 */
  .sp-arrow {
    width: 12px;
    transition: 0.3s;
  }

  /* 回転 */
  .sp-menu-toggle.is-open .sp-arrow {
    transform: rotate(180deg);
  }

  /* サブメニュー */
  .sp-sub-menu {
    width: 180px;
    display: none;
    background: #f1efe7;
    padding: 20px 0;
    margin-top: 25px;
  }

  /* 開いた時 */
  .sp-sub-menu.is-open {
    display: block;
  }

  .sp-sub-menu li {
    padding: 0 20px;
    border-top: none;
  }

  .sp-sub-menu li a {
    display: block;

    padding-bottom: 20px;

    font-size: 14px;
  }

  .sp-sub-menu li:last-child a {
    padding-bottom: 0;
  }

  /* 固定フッター */
  .sp-footer {
    width: 92%;
    height: 40px;
    position: fixed;
    bottom: 10px;
    left: 20px;
    z-index: 100;
    display: block;
  }

  .sp-footer-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .sp-footer-access {
    width: 35%;
    height: 100%;
    background-color: #d7c68e;
  }

  .sp-footer-access a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .sp-footer-access a img {
    width: 9px;
    height: auto;
  }

  .sp-footer-access a span {
    font-size: 14px;
    color: #fff;
  }

  .sp-footer-tel {
    width: 25%;
    height: 100%;
    background-color: #aa975f;
  }

  .sp-footer-tel a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .sp-footer-tel a span {
    font-size: 14px;
    color: #fff;
  }

  .sp-footer-web {
    width: 40%;
    height: 100%;
    background-color: #94b39c;
  }

  .sp-footer-web a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    align-items: center;
  }

  .sp-footer-web a span {
    font-size: 10px;
    color: #fff;
    line-height: 1.2;
  }

  .sp-footer-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .sp-footer-item img {
    width: 16px;
    height: auto;
  }

  .sp-footer-item p {
    font-size: 14px;
    color: #fff;
  }

  /* トップ */
  /* 1350 */
  .main-v {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #e8f1eb;
    overflow: visible;
    padding-bottom: 30px;
  }

  .main-v-video {
    position: static;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .main-v-table {
    width: 335px;
    position: static;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.15);
    padding: 12px;
    margin: 30px auto 0;
  }

  .main-v-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 10px;
    color: #76746c;
  }

  .main-v-table th:first-child {
    text-align: left;
  }

  .main-v-table th {
    font-weight: normal;
    padding: 5px 10px;
    border-bottom: 1px solid #999;
  }

  .main-v-table td {
    text-align: center;
    padding: 5px;
  }

  .main-v-table td:first-child {
    text-align: left;
    padding-right: 10px;
  }

  .circle::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #8aa999;
    border-radius: 50%;
  }

  .slash::before {
    content: "／";
    color: #777;
  }

  .nav {
    display: none;
  }

  /* 1350 */
  .p1-a {
    background-color: #f2efe7;
  }

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

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

  .p1-a-title h2 {
    font-size: 32px;
    font-family: "Cinzel", serif;
    font-weight: 400;
    color: #76746c;
  }

  .p1-a-title h2 span {
    font-size: 32px;
    font-family: "Cinzel", serif;
    font-weight: 400;
    color: #94b39c;
  }

  .p1-a-box {
    width: 92%;
    background-color: #fff;
    box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.15);
    padding: min(40px, 2.96vw);
    margin: 10px auto 0;
  }

  .p1-a-news {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 27px;
    height: 800px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .p1-news-item {
    max-width: 400px;
    width: 100%;
    display: block;
    padding-right: 10px;
  }

  .p1-news-img img {
    width: 100%;
    height: auto;
  }

  .p1-news-date {
    font-size: 15px;
    font-family: "Zen Old Mincho", serif;
    color: #76746c;
    margin-top: 10px;
  }

  .p1-news-title {
    font-size: 15px;
    font-family: "Zen Old Mincho", serif;
    color: #76746c;
    margin-top: 17px;
    margin-bottom: 0;
  }

  .p1-a-news::-webkit-scrollbar {
    width: 6px;
    height: auto;
  }

  .p1-a-news::-webkit-scrollbar-track {
    background: transparent;
  }

  .p1-a-news::-webkit-scrollbar-thumb {
    background: #76746c;
  }

  /* 1350 */
  .p1-b-container {
    padding: 30px 0;
  }

  .p1-b-box {
    width: 92%;
    background-image: url(../image/top-back1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin: 0 auto;
  }

  .p1-b-span {
    text-align: center;
  }

  .p1-b-span span {
    font-size: 24px;
    color: #fff;
    letter-spacing: 0.3em;
    display: inline-block;
    background-color: #aa975f;
    padding: 10px 50px;
  }

  .p1-b-title {
    text-align: center;
    margin-top: 10px;
  }

  .p1-b-title h2 {
    font-size: 20px;
    font-weight: 400;
    color: #76746c;
  }

  .p1-b-title h2 span {
    font-size: 28px;
    font-weight: 400;
    color: #76746c;
  }

  .p1-b-title h2 span .accent,
  .p1-b-title p .accent {
    color: #a57755;
  }

  .p1-b-title p {
    font-size: 16px;
    color: #76746c;
    line-height: 1.8;
    padding-top: 15px;
  }

  .p1-b-item-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 18px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 38px 42px;
    margin: 10px auto 0;
  }

  .p1-b-item {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .p1-b-item:nth-child(2),
  .p1-b-item:nth-child(4) {
    margin-left: 0;
  }

  .p1-b-item img {
    width: 22px;
    height: auto;
  }

  .p1-b-item p {
    font-size: 16px;
  }

  .p1-b-item p span {
    font-size: 20px;
  }

  /* 1440 */
  .p1-c {
    margin-top: calc(28 / 375 * 100vw);
    margin-bottom: calc(40 / 375 * 100vw);
  }

  .p1-c-container {
    position: relative;
    background-color: #f2efe7;
    padding-top: calc(100 / 375 * 100vw);
    padding-bottom: calc(30 / 375 * 100vw);
  }

  .p1-c-title {
    width: calc(215 / 375 * 100vw);
    display: flex;
    align-items: flex-end;
    gap: calc(10 / 375 * 100vw);
    padding-right: 0;
    padding-bottom: calc(14 / 375 * 100vw);
    border-bottom: 1px solid #76746c;
    margin-left: 4%;
  }

  .p1-c-title h2 {
    font-size: calc(20 / 375 * 100vw);
    font-weight: 400;
    color: #659471;
  }

  .p1-c-title span {
    font-size: 14px;
    margin-bottom: 0;
  }

  .p1-c-item-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../image/top-back12.png);
    background-repeat: no-repeat;
    background-size: cover;
    gap: 10px;
    padding: 10px 4%;
    margin-top: 20px;
  }

  .p1-c-img {
    width: 25px;
  }

  .p1-c-span span {
    font-size: 16px;
    padding-bottom: min(20px, 1.39vw);
  }

  .p1-c-p-box {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .p1-c-p-box p {
    width: 140px;
    height: 29px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 5px;
    background-color: #fff;
  }

  .p1-c-p-box p span {
    font-size: 16px;
    color: #659471;
  }

  .p1-c .main-v-table {
    position: static;
  }

  .p1-c-box2 {
    width: 92%;
    margin: 20px auto;
  }

  .p1-c-item-box2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 0;
  }

  .p1-c-table {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
  }

  .p1-c-table table {
    width: 100%;
    border-spacing: 10px 0;
  }

  .p1-c-table th,
  .p1-c-table td {
    font-size: 14px;
    font-weight: 400;
    padding: 10px 0;
    border-bottom: 1px solid #76746c;
  }

  .p1-c-table th {
    width: 60px;
  }

  .p1-c-table td {
    width: 220px;
  }

  .p1-c-item-box3 {
    max-width: 400px;
    width: 100%;
    margin: 20px auto 0;
  }

  .p1-c-list ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }

  .p1-c-list ul li img {
    width: 22px;
    height: auto;
  }

  .p1-c-list ul li span {
    font-size: 16px;
  }

  .p1-c-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .p1-c-link a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 15px 10px;
    border-bottom: 1px solid #659471;
  }

  .p1-c-link a img {
    width: 10px;
    height: auto;
  }

  .p1-c-link a span {
    font-size: 14px;
    color: #659471;
  }

  .p1-c-img2 {
    width: calc(335 / 375 * 100vw);

    position: absolute;

    top: calc(-28 / 375 * 100vw);

    left: 0;

    z-index: 10;
  }

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

  .p1-c-img4 {
    width: calc(180 / 375 * 100vw);
    max-width: 240px;
    position: absolute;
    bottom: calc(-40 / 375 * 100vw);
    right: 0;
    z-index: 10;
  }

  .p1-c-title2 {
    position: absolute;
    top: 0;
    left: auto;
    right: 4%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-family: serif;

    line-height: 1.5;
  }

  .p1-c-title2 p {
    font-size: 16px;
    background-color: #fff;
    box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.15);
    padding: 10px;
  }

  .p1-c-title2 p:last-child {
    margin-right: 10px;
    margin-top: 7px;
  }

  .p1-c-title2 p span {
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    color: #659471;
  }

  .p1-c-title2 .tcy {
    text-combine-upright: all;
    -webkit-text-combine: horizontal;
    line-height: 1;
    vertical-align: baseline;
    transform: translateX(-4px);
  }

  /* 1350 */
  .p1-d {
    padding-top: 40px;
  }

  .p1-d-box {
    width: 100%;
    height: calc(250 / 375 * 100vw);
    display: flex;
    align-items: flex-end;
    background-image: url(../image/sp-top-back1.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }

  .p1-d-title {
    width: 100%;
    background: linear-gradient(
      to right,
      rgba(170, 158, 109, 0.7) 0%,
      rgba(204, 197, 171, 0.7) 50%,
      rgba(170, 158, 109, 0.7) 100%
    );
    padding: 20px 36px;
  }

  .p1-d-title h2 {
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    padding-bottom: 10px;
  }

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

  .p1-d-span {
    position: absolute;
    top: -20px;
    right: 20px;
    z-index: 10;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }

  .p1-d-span p {
    font-size: 32px;
  }

  .p1-d-span span {
    font-size: 20px;
    display: inline-block;
    padding: 0 10px;
  }

  .p1-d-container {
    height: 100%;
    background-image: url(../image/top-back3.png);
    background-repeat: no-repeat;
    background-size: auto 2900px;
    background-position: top center;
    padding-top: 0;
  }

  .p1-d-box2 {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
  }

  .p1-d-item2 {
    width: 96%;
    background-color: #fff;
    padding: 40px 100px 40px 20px;
  }

  .p1-d-text2 {
    width: 100%;
  }

  .p1-d-text2 h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
  }

  .p1-d-text2 h3 span {
    font-size: 16px;
  }

  .p1-d-text2 h3 span .p1-d-span2 {
    color: #659471;
  }

  .p1-d-text2 p {
    font-size: 13px;
    line-height: 2;
    padding-top: 30px;
  }

  .p1-d-img {
    width: 200px;
    position: absolute;
    top: 10px;
    bottom: auto;
    right: -30px;
    z-index: 10;
  }

  .p1-d-box3 {
    max-width: 400px;
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 70px;
    margin: 34px auto 0;
  }

  .p1-d-item3:nth-of-type(1) .p1-d-title3 {
    background-color: rgba(170, 151, 95, 0.8);
  }

  .p1-d-item3:nth-of-type(2) .p1-d-title3 {
    background-color: rgba(166, 119, 85, 0.8);
  }

  .p1-d-item3:nth-of-type(3) .p1-d-title3 {
    background-color: rgba(101, 148, 113, 0.8);
  }

  .p1-d-item3:nth-of-type(4) .p1-d-title3 {
    background-color: rgba(95, 113, 140, 0.8);
  }

  .p1-d-title3 {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    position: relative;
    z-index: 10;
    margin-bottom: -10px;
  }

  .p1-d-title3 .p1-d-en {
    font-size: 13px;
    font-family: "Cinzel", serif;
    color: #fff;
    writing-mode: vertical-rl;
  }

  .p1-d-title3 .p1-d-number {
    font-size: 40px;
    font-family: "Cinzel", serif;
    color: #fff;
  }

  .p1-d-title3 p {
    font-size: 16px;
    color: #fff;
  }

  .p1-d-title3 p span {
    font-size: 16px;
    color: #fff;
  }

  .p1-d-text3 {
    background-color: #fff;
    padding: 30px 20px;
  }

  .p1-d-text3 h4 {
    font-size: 16px;
    font-weight: 400;
  }

  .p1-d-text3 p {
    font-size: 13px;
    line-height: 2;
    padding: 20px 0;
  }

  .p1-d-link a {
    width: 132px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px 14px;
    border-bottom: 1px solid #659471;
  }

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

  .p1-d-link a span {
    font-size: 15px;
    color: #659471;
  }

  /* 1350 */
  .p1-e-container {
    padding-top: 40px;
    padding-bottom: 20px;
  }

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

  .p1-e-title h2 {
    font-size: 20px;
    font-weight: 400;
  }

  .p1-e-title h2 span {
    font-size: 16px;
    color: #76746c;
  }

  .p1-e-title img {
    width: 255px;
    margin: 10px auto;
  }

  .p1-e-title span {
    font-size: 24px;
    font-family: "Cinzel", serif;
    color: #659471;
  }

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

  .p1-e-h3 {
    width: 100%;
    text-align: center;
    position: static;
    left: 0;
    bottom: 0;
    z-index: 10;
    background: linear-gradient(
      to right,
      rgba(170, 158, 109, 1) 0%,
      rgba(204, 197, 171, 1) 50%,
      rgba(170, 158, 109, 1) 100%
    );
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .p1-e-h3 span {
    font-size: 16px;
    color: #fff;
  }

  .p1-e-h3 h3 {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
  }

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

  .p1-e-item-box {
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 15;
    margin: 20px auto 0;
  }

  .p1-e-item {
    max-width: 400px;
    width: 100%;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
  }

  .p1-e-img2 {
    position: relative;
  }

  .p1-e-img2 p {
    font-size: 20px;
    color: #fff;
    line-height: 1.8;
    position: absolute;
    left: 20px;
    bottom: 40px;
    z-index: 10;
  }

  .p1-e-text {
    background-color: #fff;
    padding: 20px;
  }

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

  .p1-e-text2 {
    width: 92%;
    text-align: left;
    margin: 30px auto 0;
  }

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

  /* 1350 */
  .p1-f {
    background-image: url(../image/sp-top-back2.png);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .p1-f-container {
    width: 100%;
    padding-top: calc(80 / 375 * 100vw);
    padding-bottom: 0;
    margin: 0 auto;
  }

  .p1-f-title {
    width: 92%;

    padding-bottom: calc(10 / 375 * 100vw);

    position: relative;

    margin: 0 auto;
  }

  .p1-f-title::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 0;

    width: calc(300 / 375 * 100vw);

    height: calc(5 / 375 * 100vw);
    max-height: 5px;

    background-color: #659471;
  }

  .p1-f-title p {
    font-size: calc(20 / 375 * 100vw);
    line-height: 1.6;
  }

  .p1-f-title h2 {
    font-size: calc(20 / 375 * 100vw);
    font-weight: 400;
    line-height: 1.6;
  }

  .p1-f-title h2 span {
    font-size: calc(24 / 375 * 100vw);
    line-height: 1.6;
  }

  .p1-f-box {
    width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: calc(25 / 375 * 100vw) auto 0;
  }

  .p1-f-img {
    max-width: 400px;
    width: 100%;
  }

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

  .p1-f-name {
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: calc(20 / 375 * 100vw) auto;
  }

  .p1-f-name span {
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: 10px 0;
  }

  .p1-f-name span:first-child {
    font-size: 24px;
    color: #fff;
    background: linear-gradient(
      to right,
      rgba(170, 158, 109, 1) 0%,
      rgba(204, 197, 171, 1) 50%,
      rgba(170, 158, 109, 1) 100%
    );
  }

  .p1-f-name span:last-child {
    font-size: 32px;
    display: inline-block;
    background-color: #fff;
  }

  .p1-f-text {
    margin-top: calc(20 / 375 * 100vw);
  }

  .p1-f-text p {
    font-size: 13px;
    color: #fff;
    line-height: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  }

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

  .p1-f-list span {
    font-size: 24px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #413b22;
    padding: 10px 0;
    margin-bottom: 10px;
  }

  .p1-f-table {
    width: 100%;
  }

  .p1-f-table table {
    width: 100%;
  }

  .p1-f-table table th,
  .p1-f-table table td {
    text-align: left;
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    padding-bottom: 8px;
  }

  .p1-f-table table th {
    width: 50px;
    vertical-align: top;
  }

  .p1-f-ul {
    width: 100%;
  }

  .p1-f-ul ul li {
    font-size: 13px;
    color: #fff;
    padding-bottom: 8px;
  }

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

  .p1-f-item-box2 {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
  }

  .p1-f-name2 {
    max-width: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 36px;
    margin: 0 auto;
  }

  .p1-f-name2 span {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border: 1px solid #76746c;
  }

  .p1-f-name2 h3 {
    display: flex;
    align-items: center;
    font-size: 36px;
    font-weight: 400;
  }

  .p1-f-name2 h3 span {
    font-size: 18px;
    padding: 0;
    border: none;
    margin-top: 10px;
    margin-right: 2px;
  }

  .p1-f-img2 {
    max-width: 400px;
    width: 92%;
    position: relative;
    z-index: 5;
    margin-left: 0;
  }

  .p1-f-box2 .p1-f-table table th,
  .p1-f-box2 .p1-f-table table td,
  .p1-f-box2 .p1-f-ul ul li {
    color: #76746c;
  }

  /* 1350 */
  .p1-g-container {
    padding: 30px 0;
  }

  .p1-g-logo {
    width: 150px;
    margin: 0 auto;
  }

  .p1-g-box {
    width: 100%;
    aspect-ratio: 1440 / 580;
    position: relative;
    background-image: url(../image/top-back6.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 30px;
  }

  .p1-g-title {
    width: 100%;
    text-align: center;
    background-color: transparent;
    position: static;
    transform: translateX(0);
    padding: 30px 0;
  }

  .p1-g-title h2 {
    font-size: 20px;
    font-weight: 400;
  }

  .p1-g-title img {
    width: 255px;
    margin: 20px auto;
  }

  .p1-g-title span {
    font-size: 24px;
    font-family: "Cinzel", serif;
    color: #659471;
  }

  .p1-g-item {
    width: 92%;
    margin: 20px auto 0;
  }

  .p1-g-h3 {
    text-align: center;
  }

  .p1-g-h3 h3 {
    font-size: 16px;
    font-weight: 400;
    color: #659471;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .p1-g-h3 h3::before,
  .p1-g-h3 h3::after {
    content: "";
    width: 20px;
    height: 2px;
    background: #659471;
  }

  .p1-g-text {
    width: 100%;
    margin: 20px auto 0;
  }

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

  /* 1350 */
  .p1-h-container {
    aspect-ratio: none;
    display: flex;
    align-items: center;
    background-image: url(../image/top-back7.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 0;
  }

  .p1-h-box {
    width: 92%;
    position: relative;
    margin: 0 auto;
  }

  .p1-h .mega-row {
    gap: 15px 20px;
  }

  .mega-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .mega-title {
    width: 160px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #7e9b89;
    border-left: 5px solid #659471;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  }

  .mega-title span {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    margin-right: 15px;
  }

  .mega-item {
    width: 160px;
    height: 64px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #76746c;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  .mega-item2 {
    background-color: transparent;
    box-shadow: none;
    pointer-events: none;
  }

  .mega-item img {
    width: 10px;
    height: auto;
    position: absolute;
    right: 5px;
    bottom: 5px;
    z-index: 10;
  }

  .p1-h-title {
    width: 100%;
    text-align: center;
    position: static;
    top: 0;
    right: 0;
    z-index: 5;
    margin-bottom: 20px;
  }

  .p1-h-title h2 {
    font-size: 20px;
    font-weight: 400;
  }

  .p1-h-title img {
    width: 255px;
    margin: 20px auto;
  }

  .p1-h-title span {
    font-size: 24px;
    font-family: "Cinzel", serif;
    color: #659471;
  }

  /* 1350 */
  .p1-i {
    background-image: url(../image/sp-top-back3.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 60px;
  }

  .p1-i-container {
    width: 92%;
    position: relative;
    padding: 200px 0 40px;
    margin: 0 auto;
  }

  .p1-i-title-box {
    width: 100%;
    position: absolute;
    top: -30px;
    left: 50%;
    z-index: 5;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .p1-i-logo {
    width: 172px;
  }

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

  .p1-i-title p {
    font-size: 24px;
    position: absolute;
    top: 0;
    left: 50px;
    z-index: 5;
    white-space: nowrap;
  }

  .p1-i-title h2 {
    font-size: 48px;
    font-weight: 400;
  }

  .p1-i-title h2 span:first-child {
    font-size: 80px;
  }

  .p1-i-title h2 span:last-child {
    font-size: 60px;
  }

  .p1-i-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
  }

  .p1-i-item {
    max-width: 400px;
    width: 100%;
    position: relative;
    background-color: #fff;
    padding: 40px 30px 30px;
    border: 1px solid #868686;
  }

  .p1-i-number {
    position: absolute;
    top: -40px;
    left: 30px;
    z-index: 5;
    display: flex;
    align-items: flex-end;
  }

  .p1-i-number span:first-child {
    font-size: 24px;
    font-family: "Cinzel", serif;
    margin-bottom: 10px;
  }

  .p1-i-number span:last-child {
    font-size: 56px;
    font-family: "Cinzel", serif;
  }

  .p1-i-h3 p {
    font-size: 16px;
  }

  .p1-i-h3 h3 {
    font-size: 20px;
    font-weight: 400;
  }

  .p1-i-img {
    width: 100%;
    margin-top: 10px;
  }

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

  .p1-i-text ul li {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
  }

  .p1-i-text ul li img {
    width: 10px;
  }

  .p1-i-text ul li:last-child {
    margin-bottom: 0;
  }

  /* 1350 */
  .p1-j-container {
    padding-top: 20px;
  }

  .p1-j-p {
    width: 92%;
    text-align: left;
    margin: 0 auto;
  }

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

  .p1-j-box {
    width: 100%;
    position: relative;
    margin: 80px auto 30px;
  }

  .p1-j-title {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: absolute;
    top: -50px;
    left: 30px;
    z-index: 5;
  }

  .p1-j-title p,
  .p1-j-title h2 {
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
    line-height: 1.6;
  }

  .p1-j-title h2 {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    background-image: url(../image/part13.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 13px 15px;
    margin-top: 25px;
  }

  .p1-j-title h2 span {
    font-size: 16px;
    color: #fff;
  }

  .p1-j-title p {
    font-size: 16px;
  }

  /* 1350 */
  .p1-k-container {
    background-color: #f2efe7;
    padding: 20px 0;
  }

  .p1-k-box {
    width: 92%;
    background-color: #fff;
    position: relative;
    padding: 124px 20px 30px;
    margin: 0 auto;
  }

  .p1-k-title {
    text-align: center;
    display: block;
    position: relative;
    margin-left: auto;
  }

  .p1-k-title h2 {
    font-size: 24px;
    font-weight: 400;
    position: relative;
    z-index: 1;
  }

  .p1-k-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 295px;
    height: 20px;
    transform: translateX(-50%);
    background: #f1efe7;
    z-index: 0;
  }

  .p1-k-title h2 span {
    font-size: 20px;
    position: relative;
    z-index: 1;
  }

  .p1-k-item {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }

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

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

  .p1-k-img {
    width: 135px;
    position: absolute;
    top: -30px;
    right: 20px;
    z-index: 5;
  }

  .p1-k-list {
    background-image: url(../image/sp-top-back4.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: top center;
    padding: 20px;
    border-top: 5px solid #ada891;
    margin-top: 20px;
  }

  .p1-k-list h3 {
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background-color: #659471;
    padding: 10px;
  }

  .p1-k-list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 15px;
    margin-top: 20px;
  }

  .p1-k-list ul li {
    font-size: 13px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: min(1px, 0.07vw) solid #659471;
  }

  .p1-k-list ul li img {
    width: 20px;
    height: auto;
  }

  .p1-k-span {
    width: 130px;
    height: 118px;
    display: flex;
    align-items: center;
    position: absolute;
    top: -30px;
    left: 20px;
    z-index: 5;
    background-image: url(../image/top-back11.png);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .p1-k-span span {
    display: inline-block;
    font-size: 20px;
    color: #fff;
    margin-left: 20px;
  }

  /* 1350 */
  .p1-l-container {
    padding-top: 30px;
  }

  .p1-l-logo {
    width: 138px;
    margin: 0 auto;
  }

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

  .p1-l-img {
    max-width: 400px;
    width: 100%;
  }

  .p1-l-item {
    max-width: 400px;
    width: 100%;
    background-color: #e8f2eb;
    padding: 20px;
  }

  .p1-l-title {
    text-align: left;
  }

  .p1-l-title h2 {
    font-size: 20px;
    font-weight: 400;
  }

  .p1-l-title img {
    width: 100%;
    margin: 20px 0;
  }

  .p1-l-title span {
    font-size: 24px;
    font-family: "Cinzel", serif;
    color: #659471;
  }

  .p1-l-text {
    padding-top: 20px;
  }

  .p1-l-text h3 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
  }

  .p1-l-text p {
    font-size: 13px;
    line-height: 2;
    padding-top: 20px;
  }

  /* 1350 */
  .p1-m-container {
    padding-top: 40px;
  }

  .p1-m-title {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .p1-m-title h2 {
    font-size: 20px;
    font-weight: 400;
  }

  .p1-m-title img {
    width: 255px;
    margin: 20px auto;
  }

  .p1-m-title span {
    font-size: 24px;
    font-family: "Cinzel", serif;
    color: #659471;
  }

  .p1-m-box {
    width: 92%;
    margin: 20px auto 0;
  }

  .faq-item {
    margin-bottom: 30px;
  }

  .faq-item:last-child {
    margin-bottom: 0;
  }

  .faq-question {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    border: none;
    padding: 0;
    cursor: pointer;
    background: none;
  }

  .faq-q {
    width: 40px;
    height: 40px;
    background: #e6e3d5;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    font-family: "Lora", serif;
    color: #c2bda7;
  }

  .faq-title {
    width: calc(100% - 40px);
    height: 40px;
    text-align: left;
    background: #f1efe7;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 13px;
    font-family: "Zen Old Mincho", serif;
    color: #76746c;
    line-height: 1.4;
  }

  .faq-icon {
    width: 40px;
    height: 40px;
    background: #f1efe7;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .faq-icon img {
    width: 10px;
    transition: 0.3s;
  }

  .faq-question.is-active .faq-icon img {
    transform: rotate(180deg);
  }

  .faq-answer {
    display: none;
    padding: 20px 15px;
    background: #fff;
    gap: 10px;
  }

  .faq-answer.is-open {
    display: flex;
  }

  .faq-a {
    font-size: 20px;
    font-family: "Lora", serif;
    color: #c2bda7;
    flex-shrink: 0;
  }

  .faq-text {
    font-size: 13px;
    font-family: "Zen Old Mincho", serif;
    color: #76746c;
    line-height: 2;
    padding-left: 5px;
  }

  /* 1350 */
  .p1-n-container {
    background-color: #e8f2eb;
    padding: 30px 0;
    margin-top: 40px;
  }

  .p1-n-box {
    width: 92%;
    position: relative;
    margin: 0 auto;
  }

  .gallery-main {
    width: 335px;
    height: 223px;
    margin: 20px auto 0;
  }

  .gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .gallery-thumb {
    width: 335px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
    margin: 10px auto 0;
  }

  .thumb {
    width: 160px;
    height: 107px;
    object-fit: cover;
    cursor: pointer;
    transition: 0.3s;
  }

  .thumb.is-active {
    opacity: 1;
  }

  .p1-n-title {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: static;
    background-color: transparent;
  }

  .p1-n-title h2 {
    font-size: 32px;
    font-weight: 400;
    font-family: "Cinzel", serif;
    color: #659471;
  }

  /* 1350 */
  .p1-o-container {
    padding: 30px 0;
  }

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

  .p1-o-title h2 {
    font-size: 32px;
    font-weight: 400;
    font-family: "Cinzel", serif;
    color: #659471;
  }

  .p1-o-box {
    width: 92%;
    height: 480px;
    position: relative;
    overflow: hidden;
    margin: 20px auto 0;
  }

  .p1-o-box iframe {
    width: 100%;
    height: 1400px;
    transform: translateY(-30%);
  }

  .p1-o-img {
    width: 140px;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
  }

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

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

  .p2-a-box:nth-of-type(2) {
    margin-top: 40px;
  }

  .p2-a-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }

  .p2-a-img {
    max-width: 400px;
    width: 100%;
    position: relative;
  }

  .p2-a-nume {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 5;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 15px;
  }

  .p2-a-nume span {
    width: 140px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(
      to right,
      rgba(170, 158, 109, 1) 0%,
      rgba(204, 197, 171, 1) 50%,
      rgba(170, 158, 109, 1) 100%
    );
  }

  .p2-a-nume p {
    font-size: 24px;
  }

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

  .p2-a-text h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
  }

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

  .p2-a-list-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
  }

  .p2-a-list {
    max-width: 400px;
    width: 100%;
    background-color: #f1efe7;
    padding: 10px;
  }

  .p2-a-list:last-child {
    max-width: 400px;
    width: 100%;
  }

  .p2-a-list h4 {
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background-color: #c3b27f;
    padding: 8px 0;
  }

  .p2-a-list ul {
    margin-top: 20px;
  }

  .p2-a-list ul li {
    font-size: 12px;
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
  }

  .p2-a-list ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    background: #c3b27f;
    border-radius: 50%;
    transform: translateY(-50%);
  }

  .p2-a-list ul li:last-child {
    margin-bottom: 0;
  }

  .p2-a-box2 {
    max-width: 400px;
    width: 92%;
    margin: 30px auto 0;
  }

  .p2-a-title h2 {
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background-color: #c3b27f;
    padding: 8px 0;
  }

  .p2-a-title p {
    text-align: center;
    font-size: 20px;
    line-height: 1.8;
    padding-top: 10px;
  }

  .p2-a-img2 {
    width: 100%;
    margin-top: 20px;
  }

  /* 1350 */
  .p2-b-container {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .p2-b-box {
    width: 92%;
    margin: 0 auto;
  }

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

  .p2-b-item-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
  }

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

  .p2-b-span {
    text-align: center;
    background-color: #659471;
    padding: 10px 0;
    margin-top: 10px;
  }

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

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

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

  /* 料金 */
  /* 1350 */
  .p3-a-container {
    padding-bottom: 60px;
  }

  .p3-a-box {
    width: 92%;
    margin: 40px auto 0;
  }

  .p3-a-item {
    margin-top: 30px;
  }

  .p3-a-title {
    text-align: center;
    background-color: #659471;
    padding: 10px 0;
  }

  .p3-a-title h3 {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 2;
  }

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

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

  .p3-a-table .sp,
  .p3-a-table thead,
  .p3-a-table tbody,
  .p3-a-table tr,
  .p3-a-table th,
  .p3-a-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .p3-a-table .sp th {
    width: 100%;
    background: #94b39c;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    padding: 10px;
    border-right: 1px solid #fff;
  }

  .p3-a-table .sp th:first-child {
    border-left: 1px solid #94b39c;
    border-right: 1px solid #94b39c;
  }

  .p3-a-table .sp th:last-child {
    border-right: 1px solid #94b39c;
  }

  .p3-a-table .sp td {
    width: 100%;
    font-size: 13px;
    text-align: center;
    padding: 12px 10px;
    border: 1px solid #000;
    border-top: none;
    border-bottom: none;
  }

  .p3-a-h4 {
    text-align: center;
    background-color: #94b39c;
    padding: 10px 0;
  }

  .p3-a-h4 h4 {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    line-height: 2;
  }

  .p3-a-text-box {
    padding: 10px 20px;
    border: 1px solid #000;
    border-top: none;
  }

  .p3-a-text {
    width: 100%;
    height: 200px;
    overflow-y: scroll;
    padding-right: 20px;
  }

  .p3-a-text.p3-a-text2 {
    height: auto;
  }

  .p3-a-text span {
    font-size: 16px;
    line-height: 2;
  }

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

  .p3-a-text::-webkit-scrollbar {
    width: 4px;
  }

  .p3-a-text::-webkit-scrollbar-track {
    background: #fff;
  }

  .p3-a-text::-webkit-scrollbar-thumb {
    background: #659471;
  }

  /* アクセス */
  /* 1350 */
  .p4-a-container {
    padding-bottom: 60px;
  }

  .p4-a-box {
    width: 92%;
    margin: 30px auto 0;
  }

  .p4-a-img {
    width: 90%;
    margin: 20px auto 0;
  }

  .p4-a-table {
    width: 100%;
    margin: 20px auto 0;
  }

  .p4-a-table table {
    width: 100%;
    border-spacing: 5px 0;
    background-color: #f1efe7;
    padding: 20px;
  }

  .p4-a-table th,
  .p4-a-table td {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.8;
    color: #7f7a73;
    vertical-align: middle;
    border-bottom: 1px solid #76746c;
  }

  .p4-a-table th {
    width: 80px;
    text-align: center;
  }

  .p4-a-table td {
    padding-left: 10px;
  }

  /* 1350 */
  .p4-a-box2 {
    width: 92%;
    margin: 30px auto 0;
  }

  .p4-a-item2 {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #94b39c;
    margin: 20px auto 0;
  }

  .p4-a-item2 img {
    width: 30px;
    height: auto;
  }

  .p4-a-item2 p {
    font-size: 13px;
    color: #94b39c;
    line-height: 1.5;
  }

  .p4-a-item2 p span {
    font-size: 16px;
    color: #94b39c;
    line-height: 1.5;
  }

  /* 診療メニュー */
  /* 1350 */
  .p5-a-container {
    width: 92%;
    background-color: #f1efe7;
    padding: 20px 10px;
    margin: 40px auto 0;
  }

  .p5-a .h2-title {
    width: 100%;
    clip-path: polygon(0 100%, 2% 0, 100% 0, 98% 100%);
  }

  .p5.h3-title {
    margin-top: 20px;
  }

  .p5-a .h3-title h3 {
    font-size: 16px;
  }

  .p5-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }

  .p5-item.reverce {
    flex-direction: column;
  }

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

  .p5-text {
    width: 100%;
  }

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

  .p5-text h3 {
    font-size: 16px;
    font-weight: 400;
    color: #c3b27f;
    line-height: 2;
    padding-bottom: 20px;
  }

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

  .p5-text2 h3 {
    font-size: 16px;
    font-weight: 400;
    color: #c3b27f;
    line-height: 1.5;
    padding-bottom: 20px;
  }

  .p5.p5-text2 h3 {
    padding-bottom: 0;
  }

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

  .p5-p {
    padding-top: 20px;
  }

  .p5-link a {
    width: 156px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    border-bottom: 1px solid #c3b27f;
    margin: 0 auto;
  }

  .p5-link img {
    width: 10px;
    height: auto;
  }

  .p5-link span {
    font-size: 13px;
    color: #c3b27f;
    line-height: 1.8;
  }

  .p5-item-box2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }

  .p5-item2 {
    max-width: 400px;
    width: 100%;
    background-color: #fff;
    padding: 10px 15px;
  }

  .p5-item2 h4 {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background-color: #94b39c;
    line-height: 1.2;
    padding: 8px 0;
  }

  .p5-item2 p {
    font-size: 13px;
    line-height: 2;
    padding-top: 20px;
  }

  .p5-item2 ul {
    margin-top: 20px;
  }

  .p5-item2 ul li {
    font-size: 13px;
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
  }

  .p5-item2 ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    background: #94b39c;
    border-radius: 50%;
    transform: translateY(-50%);
  }

  .p5-item2 ul li:last-child {
    margin-bottom: 0;
  }

  /* 1350 */
  .p5-b .p5-a-container {
    margin-top: 40px;
  }

  .p5-you {
    width: 325px;
    height: 179px;
    margin: 20px auto 0;
  }

  .p5-you iframe {
    width: 100%;
    height: 100%;
  }

  .p5-b .p5-item2 {
    max-width: 400px;
    width: 100%;
  }

  .p5-item3 {
    max-width: 400px;
    width: 100%;
    text-align: center;
    background-color: #fff;
    padding: 10px 20px;
    margin: 30px auto 0;
  }

  .p5-item3 span {
    font-size: 24px;
    font-family: "Cinzel", serif;
    color: #94b39c;
    line-height: 1.2;
  }

  .p5-item3 h3 {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    background-color: #94b39c;
    padding: 20px 0;
  }

  .p5-item3 ul {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-top: 20px;
  }

  .p5-item3 ul li {
    width: 100%;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #94b39c;
  }

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

  .p5-h3 {
    background-color: #fff;
    padding: 15px 10px;
    border-left: 10px solid #c3b27f;
    margin-top: 30px;
  }

  .p5-h3 h3 {
    font-size: 16px;
    font-weight: 400;
    color: #c3b27f;
    line-height: 1.2;
  }

  .p5-text3 {
    padding-bottom: 10px;
    border-bottom: 1px solid #d5d3c9;
    margin-top: 20px;
  }

  .p5-text3 h3 {
    font-size: 16px;
    font-weight: 400;
    color: #c3b27f;
    line-height: 2;
    padding-bottom: 10px;
  }

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

  /* 1350 */
  .p5-c .p5-a-container {
    margin-top: 40px;
    margin-bottom: 60px;
  }

  /* 下層共通 */
  /* 1350 */
  .sub-v {
    position: relative;
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .sub-v-video {
    position: static;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .sub-v-title {
    position: absolute;
    left: 20px;
    bottom: 20px;
  }

  .sub-v-title h1 {
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    text-shadow: 4px 4px 20px rgba(0, 0, 0, 1);
  }

  .h2-title {
    width: 100%;
    text-align: center;
    background-color: #c3b27f;
    padding: 10px 0;
    color: #fff;
    clip-path: polygon(0 100%, 2% 0, 100% 0, 98% 100%);
    margin: 0 auto;
  }

  .h2-title h2 {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
  }

  .h3-title {
    text-align: center;
    background-color: #fff;
    padding: 10px 0;
    border-top: 2px solid #c3b27f;
    border-bottom: 2px solid #c3b27f;
  }

  .h3-title h3 {
    font-size: 20px;
    font-weight: 400;
    color: #c3b27f;
    line-height: 1.2;
  }

  /* フッター */
  footer {
    width: 100%;
  }

  .footer-container {
    background-image: url(../image/top-back10.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 36px;
  }

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

  .footer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 20px;
  }

  .footer-item-box {
    max-width: 400px;
    width: 92%;
    margin-top: 0;
  }

  .footer-item {
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-tel {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }

  .footer-tel span {
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
  }

  .footer-tel p {
    font-size: 20px;
    color: #fff;
    line-height: 1.2;
    padding-top: 5px;
  }

  .footer-web {
    max-width: 400px;
    width: 100%;
  }

  .footer-web a {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 17px 0;
  }

  .footer-web span {
    font-size: 14px;
    line-height: 1.2;
  }

  .footer-web-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }

  .footer-web-item img {
    width: 18px;
    height: auto;
  }

  .footer-web-item p {
    font-size: 20px;
    line-height: 1.2;
  }

  .footer-item2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 20px;
  }

  .footer-map,
  .footer-map2 {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .footer-img-box {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
  }

  .footer-map .footer-img-box img {
    width: 15px;
    height: auto;
  }

  .footer-map2 .footer-img-box img {
    width: 17px;
    height: auto;
  }

  .footer-map p {
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.1em;
  }

  .footer-map2 p {
    font-size: 18px;
    color: #fff;
    line-height: 1.2;
  }

  .footer-map2 span {
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
  }

  .footer-table .main-v-table {
    position: static;
    background: rgba(255, 255, 255, 0.7);
  }

  .footer-table p {
    font-size: 13px;
    color: #fff;
    line-height: 1.8;
    padding-top: 10px;
  }

  .footer-box2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 22px;
    margin-top: 30px;
  }

  .footer-nav {
    max-width: 400px;
    width: 92%;
    margin: 0 auto;
  }

  .footer-nav h3 {
    font-size: 32px;
    font-weight: 400;
    font-family: "Cinzel", serif;
    color: #fff;
    padding-bottom: 10px;
    border-bottom: 2px solid #fff;
  }

  .footer-nav ul {
    margin-top: 30px;
  }

  .footer-nav:first-child ul {
    width: 278px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-nav:last-child ul {
    width: 335px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-nav ul li {
    width: auto;
  }

  .footer-nav ul li a {
    font-size: 14px;
    color: #fff;
    line-height: 1.2;
  }

  .copy-right {
    text-align: center;
    padding: 60px 0 90px;
  }

  .copy-right p {
    font-size: 12px;
    color: #fff;
    line-height: 1.2;
  }

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

  .single-box {
    width: 94%;
    margin: 0 auto;
  }

  .single-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
  }

  .single-img {
    width: 100%;
    max-width: 400px;
    margin-bottom: 30px;
  }

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

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

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

@media screen and (max-width: 550px) {
  .mega-item.mega-item2 {
    display: block;
  }
}
