@charset "utf-8";
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
common
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ----------------------------------------------------
element base setting (common)
---------------------------------------------------- */
body {
  color: #333333;
  line-height: 1.6;
  background: #fff;
}
a {
  color: #333333;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.clickable a, .clickable a:hover {
  color: #333;
}
img {
  width: 100%;
  height: auto;
}
.flex {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.inner {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 0;
}
:root {
  --ff-symbol: 'Material Symbols Outlined';
  --ff-serif: 'Shippori Mincho', serif;
  --ff-sans: 'dnp-shuei-mgothic-std', sans-serif;
  --ff-en: "Parisienne", cursive;
  --c-green: #7ec0b9;
  --c-pink: #f5dbdb;
  --c-pink-strong: #e79ca3;
  --c-brown: #6f5136;
  --c-lightBrown: #bca38e;
  --c-lightGray: #f0f0f0;
  --c-btn-pink: #b48889;
}
.ic--symbol {
  position: relative;
}
.ic--symbol::before {
  font-family: var(--ff-symbol);
  position: absolute;
}
.ic--fill::before {
  font-variation-settings: 'FILL'1;
}
.ic--left::before {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ic--top::before {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.ic--tel::before {
  content: "\e0b0";
}
.ic--device::before {
  content: "\e1b1";
}
.btn--reserve {
  display: block;
  color: #fff;
  background: var(--c-btn-pink);
  border: 2px solid var(--c-btn-pink);
  font-family: var(--ff-serif);
  border-radius: 30vw;
}
.btn--instagram {
  display: block;
  background: #6f5136;
  color: #fff;
  border: 2px solid var(--c-brown);
  font-family: var(--ff-serif);
  border-radius: 30vw;
}
/* ----------------------------------------------------
calendar (common)
---------------------------------------------------- */
div.cal_wrapper table.cal tr th div.cal_ui input {
  /* next.prev btn */
  border: 1px solid #6f6f6f;
  background-color: #6f6f6f;
  color: #fff !important;
}
div.cal_wrapper table.cal tr.headline td {
  /* 曜日 */
  border-top: 1px solid #87795d;
  border-bottom: 1px solid #87795d !important;
}
div.cal_wrapper table.cal tr td {
  border: 1px solid transparent;
}
/* 午後休診 */
div.cal_wrapper table.cal tr td div.Sat, div.cal_wrapper table.cal tr td div.Thu {
  background: #79c0ab;
  color: #fff;
}
/* Sun;日曜*/
div.cal_wrapper table.cal tr td div.Sun {
  background: #f1abab;
  color: #fff;
}
/* Holyday;祝日*/
div.cal_wrapper table.cal tr td div.Holyday {
  background: #f1abab;
  color: #fff;
}
/* PMOff；午後休診 */
div.cal_wrapper table.cal tr td div.PMOff {
  background: #79c0ab;
  color: #fff;
}
/* dayOff;祝日*/
div.cal_wrapper table.cal tr td div.dayOff {
  background: #f1abab;
  color: #fff;
}
/* otherDay;その他 */
div.cal_wrapper table.cal tr td div.otherDay {
  background: #e8b88c;
  color: #fff;
}
/* weekday;一日診療　*/
div.cal_wrapper table.cal tr td div.weekday {
  background: transparent;
  color: #333;
}
/* Today;当日 */
div.cal_wrapper table.cal tr td div.Today {
  font-weight: bold;
}
div.cal_wrapper table.cal tr td div.pointer:hover {
  background-color: #AAA;
  color: #fff;
}
.cal-off {
  color: #f1abab;
}
.cal-halfOff {
  color: #79c0ab;
}
.cal-other {
  color: #e8b88c;
}
/* ----------------------------------------------------
footer (common)
---------------------------------------------------- */
#bnrRecruit {
  margin: min(8.3vw, 100px) auto;
  width: 90%;
  max-width: 1030px;
  background: #dcf7f0 url("../img/common/bg-bnrRecruit-01.jpg") left top / auto 100% no-repeat;
  height: min(22.5vw, 270px);
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-end;
  padding: min(2.5vw, 30px);
  position: relative;
}
#bnrRecruit::before {
  content: "";
  width: calc(100% - min(1.6vw, 20px));
  height: calc(100% - min(1.6vw, 20px));
  border: 1px solid #fff;
  position: absolute;
  left: min(0.8vw, 10px);
  top: min(0.8vw, 10px);
}
.bnrRec__cont {
  width: 56%;
  position: relative;
}
.bnrRec__cont h2 {
  font-size: min(2.67vw, 3.2rem);
  margin-bottom: min(1vw, 12px);
}
.bnrRec__cont h2 a, .bnrRec__cont:hover a {
  color: #65b2a1;
}
.bnrRec__cont p {
  font-size: min(1.25vw, 1.5rem);
}
.bnrRec__cont ul {
  margin: min(2.5vw, 30px) 0 0;
  display: flex;
  display: -inline-block;
  flex-wrap: wrap;
  column-gap: 2%;
  font-size: min(1.25vw, 1.5rem);
}
.bnrRec__cont ul li {
  background: #fff;
  border-radius: 30vw;
  text-align: center;
  min-width: min(15vw, 180px);
  padding: min(1vw, 12px) min(2.5vw, 30px);
}
@media (max-width: 767px) {
  #bnrRecruit {
    margin: min(6vw, 100px) auto;
    height: min(50vw, 360px);
    padding: min(6vw, 30px);
    background-position: -16vw center;
  }
  #bnrRecruit::before {
    width: calc(100% - min(4vw, 20px));
    height: calc(100% - min(4vw, 20px));
    left: min(2vw, 10px);
    top: min(2vw, 10px);
  }
  .bnrRec__cont {
    width: 100%;
    text-align: right;
  }
  .bnrRec__cont h2 {
    font-size: min(6vw, 3.2rem);
    margin-bottom: min(1vw, 12px);
  }
  .bnrRec__cont p {
    font-size: min(3.6vw, 1.5rem);
  }
  .bnrRec__cont ul {
    margin: min(3vw, 30px) 0 0;
    justify-content: flex-end;
    font-size: min(3.6vw, 1.5rem);
  }
  .bnrRec__cont ul li {
    min-width: min(30vw, 180px);
    padding: min(2vw, 12px) min(4vw, 30px);
  }
}
#footer {
  background: var(--c-lightGray);
  padding: min(6.25vw, 75px) 0 0;
}
.ft__inr {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto min(5.83vw, 70px);
}
.ft__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
}
#ft-logo {
  width: min(26.6vw, 320px);
  margin-bottom: 10px;
}
.ft__cont {
  /* width: 62%; */
  width: 100%;
  font-size: min(1.3vw, 1.6rem);
  position: relative;
}
.ft__cal {
  width: 33%;
  background: #fff;
  padding: min(2.5vw, 30px) min(3.3vw, 40px);
}
.ft__tel {
  font-family: var(--ff-serif);
  color: var(--c-brown);
  font-size: min(2vw, 2.4rem);
  letter-spacing: 0.1rem;
}
.ft__tel span {
  font-size: min(2.67vw, 3.2rem);
}
.ft__btn {
}
.ft__btn .btn--reserve {
  font-size: min(1.66vw, 2rem);
  padding: min(0.4vw, 5px);
  width: min(20.83vw, 250px);
  text-align: center;
}
.ft__cont .timetable {
  margin-top: min(1.66vw, 20px);
}
.timetable {
  width: 100%;
}
.timetable th {
  background: #D3C9C4;
  color: var(--c-brown);
  font-weight: normal;
  text-align: center;
  padding: min(1.25vw, 15px) min(0.83vw, 10px);
}
.timetable td {
  border-bottom: 1px solid #777;
  padding: min(1.25vw, 15px) min(0.83vw, 10px);
  text-align: center;
  color: #454545;
}
.ft__note {
  font-size: min(1.16vw, 1.4rem);
  margin: min(1.25vw, 15px) 0 0;
}
.ft__map {
  height: min(36.6vw, 440px);
}
.ft__map iframe {
  width: 100%;
  height: 100%;
}
.ft__info {
  background: #777;
  color: #fff;
  font-size: min(1.16vw, 1.4rem);
  text-align: center;
  padding: min(2.5vw, 30px) 5%;
}
.ft__info a {
  color: #fff;
}
.navFooter {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  margin-bottom: min(2.5vw, 30px);
}
.navFooter li {
  padding: 0 min(1.66vw, 20px);
  line-height: 1;
}
.navFooter li:not(:last-child) {
  border-right: 1px solid #fff;
}
#pagetop {
  position: fixed;
  bottom: 4%;
  right: 3%;
  z-index: 150;
}
#pagetop a {
  display: block;
  width: 45px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #777777;
  color: #fff;
  position: relative;
  z-index: 8;
}
#pagetop a::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 9;
}
@media (max-width: 767px) {
  #footer {
    margin-top: min(4vw, 20px);
    padding: min(10vw, 75px) 0 0;
  }
  .ft__inr {
    margin: 0 auto min(5vw, 70px);
  }
  #ft-logo {
    width: min(60vw, 700px);
    margin: 0 auto min(5vw, 60px);
  }
  .ft__cont {
    width: 100%;
    font-size: min(3.8vw, 1.6rem);
    text-align: center;
  }
  .ft__cal {
    width: 90%;
    padding: min(6vw, 30px) min(8vw, 40px);
    margin: 5vw auto 0;
  }
  .ft__tel {
    font-size: min(5vw, 2.4rem);
  }
  .ft__tel span {
    font-size: min(7vw, 3.2rem);
  }
  .ft__btn {
    position: relative;
    right: inherit;
    top: inherit;
  }
  .ft__btn .btn--reserve {
    font-size: min(5vw, 2rem);
    padding: min(1vw, 5px);
    width: 80%;
    margin: 3vw auto;
  }
  .ft__cont .timetable {
    margin-top: min(4vw, 20px);
  }
  .timetable th {
    padding: 2vw;
  }
  .timetable td {
    padding: 2vw;
  }
  .ft__note {
    font-size: min(3.6vw, 1.4rem);
    margin: min(3vw, 15px) 0 0;
    text-align: left;
  }
  .ft__map {
    height: min(40vw, 440px);
  }
  .ft__info {
    font-size: min(3.2vw, 1.4rem);
    padding: min(3vw, 30px) 5%;
  }
  .navFooter {
    display: none;
  }
  #pagetop {
    bottom: 18vw;
  }
}
/* -----------------------------------------------------
home(common)
------------------------------------------------------- */
#homVisual {
  aspect-ratio: 160/80;
  width: 100%;
  position: relative;
  overflow: hidden;
}
#homVisual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homVis__title {
  position: absolute;
  right: 8%;
  bottom: 6%;
}
.homVis__title h1 {
  font-size: min(2.7vw, 3.3rem);
  color: var(--c-brown);
  text-shadow: #fff 2px 0px 10px, #fff -2px 0px 10px, #fff 0px -2px 10px, #fff 0px 2px 10px, #fff 2px 2px 10px, #fff -2px 2px 10px, #fff 2px -2px 10px;
}
.homVis__title p {
  margin: 0;
  font-family: var(--ff-en);
  color: #fff;
  font-size: min(10vw, 9rem);
  position: absolute;
  left: 0;
  top: 0;
  width: 90vw;
  transform: translateY(-100%);
  text-shadow: 1px 1px 15px rgba(220, 247, 240, 1), -1px -1px 15px rgba(220, 247, 240, 1);
}
@media (max-width: 767px) {
  #homVisual {
    aspect-ratio: 16/14;
  }
  #homVisual img {
    object-position: 75% center;
  }
  .homVis__title {
    left: 5vw;
    width: 90vw;
    top: inherit;
    bottom: 0;
    transform: none;
  }
  .homVis__title h1 {
    font-size: min(4.8vw, 4rem);
    color: #fff;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3), -2px 2px 3px rgba(0, 0, 0, 0.3), 2px -2px 3px rgba(0, 0, 0, 0.3), -2px -2px 3px rgba(0, 0, 0, 0.3);
  }
  .homVis__title p {
    font-size: min(10vw, 12rem);
    position: relative;
    left: inherit;
    bottom: inherit;
    width: auto;
    transform: none;
  }
}
/* point */
.pointWrap {
  padding: min(7.5vw, 90px) 0;
}
.pointWrap h2 {
  color: var(--c-brown);
  font-size: min(2.83vw, 3.4rem);
  position: relative;
}
.pointWrap h2 span {
  position: relative;
}
.point {
  width: 90%;
  max-width: 1200px;
  margin: min(4.16vw, 50px) auto min(2.5vw, 30px);
}
.point:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.point h3 {
  font-size: min(2vw, 2.4rem);
  margin: min(2.5vw, 30px) 0 min(0.83vw, 10px);
}
.point h3:first-of-type {
  margin-top: 0;
}
table.schedule {
  width: 100%;
  margin-bottom: min(0.83vw, 10px);
  font-size: min(1.25vw, 1.5rem);
}
table.schedule th {
  background: #E9DFE1;
  color: #3F3F3F;
  border: 1px solid #fff;
  text-align: center;
  font-weight: normal;
  padding: 5px;
  line-height: 1.4;
}
table.schedule td {
  border: 1px solid #fafaf8;
  text-align: center;
  padding: min(0.4vw, 5px);
  color: #333;
  background: #F1F1F2;
}
table.schedule tr th:first-child {
  background: #E9DFE1;
}
table.schedule th.sat, table.schedule thead th span.sat {
  color: #278bfc;
}
table.schedule th.red, table.schedule thead th span.red {
  color: #ff6e89;
}
table.schedule td.red {
  color: #e8342f;
  background: #f8dfdf;
  font-weight: bold;
}
.point p:last-child {
  margin-bottom: 0;
}
/*日付統合の調整*/
table.schedule thead th.merge span {
  display: inline-block;
}
table.schedule thead th.merge span.btw {
  padding: 0 0.5em;
  vertical-align: 50%;
}
@media (max-width: 767px) {
  .pointWrap {
    padding: min(10vw, 90px) 0;
  }
  .pointWrap h2 {
    font-size: min(6vw, 3.4rem);
  }
  .point {
    margin: min(8vw, 50px) auto min(6vw, 30px);
  }
  .point h3 {
    font-size: min(5vw, 2.4rem);
    margin: min(6vw, 30px) 0 min(2vw, 10px);
  }
  table.schedule {
    display: block;
    width: auto !important;
    margin: 2vw 0 3vw;
    border-collapse: collapse;
    font-size: min(3.8vw, 1.5rem);
  }
  table.schedule thead {
    display: block;
    float: left;
    width: 35%;
  }
  table.schedule tbody {
    display: block;
    width: 65%;
    float: left;
  }
  table.schedule th, table.schedule td {
    text-align: center;
    padding: 2vw 1vw;
    display: block;
    line-height: 1.6;
  }
  table.schedule th br {
    display: none;
  }
  table.schedule thead tr {
    display: block;
  }
  table.schedule tbody tr {
    width: 50%;
    display: block;
    float: left;
  }
  table.schedule th, table.schedule td {
    margin-top: -1px;
    margin-left: -1px;
  }
  table.schedule {
    zoom: 100%;
  }
  table.schedule:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  table.schedule td br {
    display: block;
  }
  table.schedule th br {
    display: none;
  }
  table.schedule th br.sp_br {
    display: block !important;
  }
  /*-----------------------------*/
  /*スマホでも横にレイアウト変したい時：長期休診用*/
  table.schedule.schedule_y {
    display: table;
    width: 100% !important;
    margin: 1vw 0;
    border-collapse: collapse;
  }
  table.schedule.schedule_y thead {
    display: table-header-group;
    float: none;
    width: 100%;
  }
  table.schedule.schedule_y tbody {
    display: table-row-group;
    width: 100%;
    float: none;
  }
  table.schedule.schedule_y th, table.schedule.schedule_y td {
    text-align: center;
    padding: 0.6vw 0.2vw;
    display: table-cell;
    font-weight: normal;
  }
  table.schedule.schedule_y td br {
    display: block;
  }
  table.schedule.schedule_y th br {
    display: block !important;
  }
  table.schedule.schedule_y th br.sp_br {
    display: none !important;
  }
  table.schedule.schedule_y thead tr {
    display: table-row;
  }
  table.schedule.schedule_y tbody tr {
    width: 100%;
    display: table-row;
    float: none;
  }
  table.schedule.schedule_y tbody tr th {
    width: 2em;
    padding: 1px 2px;
  }
  table.schedule.schedule_y th, table.schedule.schedule_y td {
    margin-top: -1px;
    margin-left: -1px;
  }
  table.schedule.schedule_y {
    zoom: 100%;
  }
  table.schedule.schedule_y:after {
    content: ".";
    display: table;
    height: 0;
    clear: both;
    visibility: hidden;
    font-size: 0;
  }
  table.schedule.schedule_y {
    font-size: 3.2vw;
  }
  table.schedule.schedule_y th, table.schedule.schedule_y td {
    vertical-align: middle !important;
  }
}
/* 20241209 */
.pointFlx {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  position: relative;
}
.pointFlx::before {
  content: "Information";
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-10%, -25%);
  font-family: var(--ff-en);
  color: #fff;
  font-size: min(10vw, 120px);
}
.homPtNews__wrapper {
  width: 65%;
  font-size: min(1.25vw, 1.5rem);
}
.homNews__pickup {
  margin: 0;
}
.homNews__pickup a {
  color: var(--c-brown);
  font-weight: 600;
}
.homNews__pickup li {
  position: relative;
  padding-left: 5.5em;
  margin: 0 0 min(1.25vw, 15px);
  line-height: 1.4;
}
.homNews__pickup li span {
  background: var(--c-btn-pink);
  color: #fff;
  position: absolute;
  left: 0;
  display: block;
  padding: min(0.4vw, 5px) min(1vw, 12px);
  border-radius: 30vw;
  line-height: 1;
  font-size: min(1.16vw, 1.4rem);
}
/* .homNews__list {
  margin: 0;
}
.homNews__list li {
  position: relative;
  padding: min(1.66vw, 20px) 0 min(1.66vw, 20px) 6.5em;
  border-bottom: 1px solid #fff;
}
.homNews__list li span {
  color: var(--c-brown);
  position: absolute;
  left: 0;
  display: block;
  font-weight: 600;
} */
.homNews__list {
  margin: 40px -15px 0;
}
.homNews__list-item {
  margin-inline: 15px;
}
.homNews__list-img {
  aspect-ratio: 3 / 2;
}
.homNews__list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-arrow {
  width: 40px;
  aspect-ratio: 1;
  background: #b48889 url(../img/common/icon_arrow01.svg) center / 10px auto no-repeat;
  border-radius: 50%;
  position: absolute;
  top: 25%;
  z-index: 1;
  cursor: pointer;
}
.slide-arrow.prev-arrow {
  left: -5px;
  scale: -1 1;
}
.slide-arrow.next-arrow {
  right: -5px;
}
@media (max-width: 767px) {
  .pointWrap h2 {
    margin-bottom: 6vw;
  }
  .pointFlx {
    display: block;
  }
  .pointFlx::before {
    font-size: min(20vw, 120px);
    transform: translate(-10%, -20%);
  }
  .homPtNews__wrapper {
    width: 100%;
    font-size: min(3.9vw, 1.5rem);
  }
  .homNews__pickup li {
    padding-left: 5em;
    margin: 0 0 min(3vw, 15px);
  }
  .homNews__pickup li span {
    padding: min(1vw, 5px) min(2.4vw, 12px);
    font-size: min(3.8vw, 1.4rem);
  }
  /* .homNews__list li {
    padding: min(4vw, 20px) 0;
  }
  .homNews__list li span {
    font-size: min(3.6vw, 1.4rem);
    position: relative;
  } */
}
/* info */
#homInfo {
  margin: min(10vw, 120px) auto 0;
  position: relative;
  padding-bottom: min(6.6vw, 80px);
}
#homInfo::before, #homInfo::after {
  content: "";
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
#homInfo::before {
  right: 5%;
  top: 40px;
  width: 42%;
  aspect-ratio: 56/38;
  background: url("../img/home/img-homInfo-04.jpg");
  -webkit-background-size: cover;
  background-size: cover;
  border-radius: 50px;
}
/*#homInfo::after {left: 21%; bottom: 80px; width:25%; aspect-ratio: 33/20; background: url("../img/home/img-homInfo-03.jpg");-webkit-background-size: cover;background-size:cover;}*/
#homInfo .inner {
  display: flex;
  display: -webkit-flex;
}
.homInfo__cont {
  width: min(49%, 585px);
  padding-top: min(2.92vw, 35px);
}
.homInfo__cont h2 {
  margin-bottom: min(3vw, 36px);
  position: relative;
}
.homInfo__cont h2::before {
  content: "Info";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  font-family: var(--ff-en);
  color: #f0f0f0;
  font-size: min(11.67vw, 140px);
}
.homInfo__cont h2 span {
  width: min(43.3vw, 520px);
  position: relative;
  display: inline-block;
}
.homInfo__address {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: min(3vw, 36px);
}
.homInfo__address p {
  margin: 0;
  font-size: min(1.3vw, 1.6rem);
}
.homInfo__btn {
  width: 43%;
}
.homInfo__btn a {
  text-align: center;
  display: block;
  width: 100%;
  padding: min(0.4vw, 5px) min(2.5vw, 30px);
  font-size: min(1.6vw, 2rem);
}
.homInfo__cont .timetable td {
  color: var(--c-brown);
}
@media (max-width: 767px) {
  #homInfo {
    margin: min(10vw, 120px) auto 0;
    padding-bottom: 68vw;
  }
  #homInfo::before {
    left: inherit;
    right: 0;
    top: inherit;
    bottom: 15vw;
    width: auto;
    height: 50vw;
  }
  #homInfo::after {
    left: 5vw;
    bottom: -23px;
    width: auto;
    height: 29vw
  }
  #homInfo .inner {
    display: block;
  }
  .homInfo__cont {
    width: 100%;
    padding-top: 0;
  }
  .homInfo__cont h2 {
    margin-bottom: min(4vw, 36px);
  }
  .homInfo__cont h2::before {
    font-size: min(22vw, 140px);
  }
  .homInfo__cont h2 span {
    width: 80vw;
  }
  .homInfo__address {
    position: relative;
    margin-bottom: min(6vw, 36px);
    display: block;
    text-align: center;
  }
  .homInfo__address p {
    font-size: min(4vw, 1.6rem);
  }
  .homInfo__btn {
    width: 80%;
    margin: 3vw auto 0;
  }
  .homInfo__btn a {
    padding: min(1vw, 5px) min(6vw, 30px);
    font-size: min(4.5vw, 2rem);
  }
}
/* concept */
#homConcept {
  margin: min(6.73vw, 80px) auto 0;
  position: relative;
  background-color: #e4dad4;
}
#homConcept::before, #homConcept::after {
  content: "";
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
#homConcept::before {
  right: 0;
  top: 280px;
  width: 38%;
  aspect-ratio: 78/53;
  background-position: right center;
  background-image: url("../img/home/img-homInfo-03.jpg?ver=20251201");
}
/*#homConcept::after{right:18%; bottom: 0; width: 24%; aspect-ratio:38/48; background-image: url("../img/home/img-homConcept-02.jpg");}*/
.homConcept__cont {
  width: 55%;
  padding-bottom: min(3vw, 35px)
}
#homConcept h2 {
  padding-top: min(6.6vw, 80px);
  position: relative;
  font-size: min(2.8vw, 3.8rem);
  margin-bottom: min(2.7vw, 32px);
}
#homConcept h2::before {
  content: "Concept";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-20%, -50%);
  font-family: var(--ff-en);
  color: #f0f0f0;
  font-size: min(11.67vw, 140px);
  letter-spacing: 1rem;
}
#homConcept h2 span {
  position: relative;
  color: #575757;
}
#homConcept h2 span span {
  color: var(--c-btn-pink);
}
#homConcept h2 span small {
    color: var(--c-brown);
}
/*
.homConcept__cont h2{ padding-top: min(6.6vw,80px); position: relative; font-size: min(2.8vw,3.8rem); margin-bottom: min(5.83vw,70px);}
.homConcept__cont h2::before{content: "Concept"; position: absolute; left: 0; top: 50%; transform: translate(-20%,-50%); font-family: var(--ff-en); color: #f0f0f0; font-size: min(11.67vw,140px); letter-spacing: 1rem;}
.homConcept__cont h2 span {position: relative; color: #575757;}
*/
.homConcept__cont p {
  line-height: 2;
  margin-bottom: min(2.5vw, 30px);
  color: var(--c-brown);
}
#homConcept .homConcept__btn {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
}
#homConcept .homConcept__btn li {
  width: 24%;
}
#homConcept .homConcept__btn li a {
  display: block;
  color: var(--c-btn-pink);
  background: #fff;
  border: 1px solid var(--c-btn-pink);
  padding: min(2vw, 24px) min(3.3vw, 40px);
  border-radius: 30vw;
  font-size: min(1.66vw, 2rem);
  position: relative;
}
#homConcept .homConcept__btn li a::before, #homConcept .homConcept__btn li a::after {
  content: "";
  position: absolute;
  right: min(1.6vw, 20px);
  top: 50%;
  height: 1px;
  background: var(--c-btn-pink);
  transform-origin: right bottom;
}
#homConcept .homConcept__btn li a::before {
  width: min(3vw, 36px);
}
#homConcept .homConcept__btn li a::after {
  width: min(1vw, 12px);
  transform: rotate(40deg);
}
@media (max-width: 767px) {
  #homConcept {
    margin: min(10vw, 160px) auto 0;
    padding-bottom: 90vw;
  }
  #homConcept::before {
    top: inherit;
    right: 0;
    bottom: 10vw;
    width: 80%;
    height: 70vw;
    aspect-ratio: inherit;
  }
  #homConcept::after {
    left: 5vw;
    right: inherit;
    width: auto;
    height: 60vw;
  }
  #homConcept h2 {
    font-size: 6vw;
  }
  #homConcept h2::before {
    transform: translate(-5%, -50%);
  }
  .homConcept__cont {
    width: 100%;
    padding-bottom: 0;
  }
  .homConcept__cont h2 {
    padding-top: min(10vw, 80px);
    font-size: min(5.2vw, 3.8rem);
    margin-bottom: min(6vw, 70px);
  }
  .homConcept__cont h2::before {
    left: inherit;
    right: 0;
    transform: translate(0, -60%);
    font-size: min(20vw, 140px);
    letter-spacing: 0.5rem;
  }
  .homConcept__cont h2 span {
    position: relative;
    color: #575757;
  }
  .homConcept__cont p {
    margin-bottom: min(4vw, 30px);
  }
  .homConcept__cont .homConcept__btn {
    width: 80%;
    margin: min(10vw, 80px) auto 0;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .homConcept__cont .homConcept__btn li {
    width: 100%;
    margin-bottom: 2vw;
  }
  .homConcept__cont .homConcept__btn li a {
    padding: min(4vw, 24px) min(6vw, 40px);
    font-size: min(4vw, 2rem);
  }
  .homConcept__cont .homConcept__btn li a::before, .homConcept__cont .homConcept__btn li a::after {
    right: min(4vw, 20px);
  }
  .homConcept__cont .homConcept__btn li a::before {
    width: min(7vw, 36px);
  }
  .homConcept__cont .homConcept__btn li a::after {
    width: min(2.4vw, 12px);
  }
  #homConcept .homConcept__btn {
    flex-wrap: wrap;
  }
  #homConcept .homConcept__btn li {
    width: 49%;
  }
  #homConcept .homConcept__btn li a {
    padding: 4vw 5vw;
    font-size: min(4vw, 2rem);
    margin-bottom: 3vw;
  }
}
/* homMenu */
#homMenu {
  margin: min(14.17vw, 60px) 0 0;
  position: relative;
}
#homMenu h2 {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, -100%);
  font-family: var(--ff-en);
  color: #f0f0f0;
  font-size: min(11.67vw, 140px);
  letter-spacing: 1rem;
  line-height: 0.7;
}
.homMenu__flex {
  display: flex;
  display: -webkit-flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding: 0 20px;
}
.homMenu__cont {
  width: calc((100% - 90px) / 4);
  text-align: center;
  /* color: #fff; */
}
.homMenu__cont-img {
  aspect-ratio: 3 / 2;
}
.homMenu__cont-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homMenu__cont h3 {
  font-size: min(2.67vw, 3.2rem);
  margin-bottom: min(1.66vw, 20px);
}
.homMenu__cont h3 a, .homMenu__cont:hover h3 a {
  color: var(--c-brown);
}
.homMenu__cont p {
  margin: 0;
  color: var(--c-brown);
}
.homMenu__txt {
  display: inline-block;
  position: relative;
}
/*
.homMenu__txt::before {
  content: "";
  background: url("../img/home/product-laser.png") center center / contain no-repeat;
  aspect-ratio: 97/320;
  width: auto;
  height: min(26.67vw, 320px);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(120%, -50%);
}
*/
.homMenu__sub {
  width: 90%;
  max-width: 900px;
  margin: min(7.5vw, 90px) auto;
}
.homMenu__sub ul {
  margin: 0;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  border-right: 1px solid #ccc;
}
.homMenu__sub ul li {
  text-align: center;
  width: 33.3333%;
  border-left: 1px solid #ccc;
}
.homMenu__sub ul li a {
  display: block;
  padding: min(2.5vw, 30px) 0;
}
.homMenu__sub ul li p {
  width: min(6.5vw, 78px);
  margin: 0 auto min(3.3vw, 40px);
}
.homMenu__sub ul li h3 {
  font-size: min(1.53vw, 2rem);
  color: #666;
  letter-spacing: 0.2rem;
}
.homMenu--01 {
}
.homMenu--02 {
}
.homMenu--03 {
}
.homMenu--04 {
}
@media (max-width: 767px) {
  #homMenu {
    margin: min(30vw, 90px) 0 0;
  }
  #homMenu h2 {
    font-size: min(14vw, 140px);
    letter-spacing: 0.4rem;
  }
  .homMenu__flex {
    display: block;
  }
  .homMenu__cont {
    width: 100%;
    padding: min(10vw, 105px) 0 min(8vw, 80px);
    min-height: min(38vw, 340px);
  }
  .homMenu__cont h3 {
    font-size: min(6vw, 3.2rem);
    margin-bottom: 0;
  }
  .homMenu__txt::before {
    height: min(30vw, 320px);
  }
  .homMenu__sub {
    margin: min(5vw, 90px) auto;
    width: 85%;
  }
  .homMenu__sub ul {
    display: block;
    border-right: none;
  }
  .homMenu__sub ul li {
    text-align: center;
    width: 100%;
    border-left: none;
    border-top: 1px solid #ccc;
  }
  .homMenu__sub ul li:first-child {
    border-top: none;
  }
  .homMenu__sub ul li a {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    padding: min(4vw, 30px);
  }
  .homMenu__sub ul li p {
    width: min(12vw, 78px);
    margin: 0;
  }
  .homMenu__sub ul li h3 {
    font-size: min(4vw, 1.8rem);
    margin-left: 3vw;
  }
}
/* homFaq */
#homFaq {
  padding: min(7.5vw, 90px) 0 min(8.3vw, 100px);
  background: rgb(186, 236, 210);
  background: linear-gradient(165deg, rgba(186, 236, 210, 1) 0%, rgba(126, 192, 185, 1) 50%);
}
#homFaq h2 {
  text-align: center;
  color: #fff;
  font-size: min(3.5vw, 4.2rem);
  position: relative;
}
#homFaq h2::before {
  content: "FAQ";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-en);
  color: rgba(255, 255, 255, 0.2);
  font-size: min(9.17vw, 110px);
  letter-spacing: 1rem;
}
#homFaq h2 span {
  position: relative;
}
.homFaq__list {
  width: 96%;
  max-width: 1440px;
  margin: min(5vw, 60px) auto 0;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
}
.homFaq__list li {
  width: 32.2%;
  font-family: var(--ff-serif);
  font-size: min(2vw, 2.4rem);
}
.homFaq__list li a {
  display: block;
  text-align: center;
  background: #fff3f3;
  border-radius: 30vw;
  padding: min(3.3vw, 40px) min(2vw, 30px);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
}
.homFaq__list li a span {
  font-size: min(2vw, 2.8rem);
  color: #ff7d7d;
}
@media (max-width: 767px) {
  #homFaq {
    padding: min(10vw, 90px) 0 min(7vw, 100px);
  }
  #homFaq h2 {
    font-size: min(6vw, 4.2rem);
  }
  #homFaq h2::before {
    font-size: min(18vw, 110px);
    letter-spacing: 0.2rem;
    width: 100vw;
  }
  .homFaq__list {
    width: 80%;
    margin: min(5vw, 60px) auto 0;
    display: block;
  }
  .homFaq__list li {
    width: 100%;
    font-size: min(4.2vw, 2.4rem);
    margin-bottom: 3vw;
  }
  .homFaq__list li a {
    padding: min(5vw, 40px);
  }
  .homFaq__list li a span {
    font-size: min(4.6vw, 2.8rem);
  }
}
/* homNews */
#homNews {
  /* margin: min(10vw, 120px) 0 0; */
  padding: min(13.3vw, 160px) 0 0;
  position: relative;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 10%, #f4dada 100%);
}
#homNews::before {
  content: "";
  width: 40%;
  height: min(28.67vw, 440px);
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url("../img/home/img-homInfo-01.jpg?ver=20251201") center center / cover no-repeat;
}
#homNews::after {
  content: "Medical Column";
  position: absolute;
  right: 3%;
  top: 0;
  font-family: var(--ff-en);
  color: #d5958e;
  font-size: min(8.3vw, 100px);
  letter-spacing: 0.1rem;
}
#homNews .inner {
  flex-direction: row-reverse;
}
.homNews__cont {
  width: 46%;
  font-size: min(1.25vw, 1.5rem);
  position: relative;
}
.homNews__cont h3 {
  color: var(--c-brown);
  font-size: min(3vw, 3.6rem);
  margin-bottom: min(3.3vw, 40px);
}
.homNews__news h3 {
  text-align: right;
}
.homNews__column ul {
  border-bottom: 1px solid #fff;
}
.homNews__column ul li {
  margin: 0;
  padding: min(2.5vw, 30px) 0;
}
.homNews__column ul li:not(:first-child) {
  border-top: 1px solid #fff;
}
.homNews__btn {
  margin-bottom: 0;
}
.homNews__btn a {
  display: inline-block;
  text-align: center;
  min-width: min(15vw, 180px);
  color: #fff;
  background: var(--c-btn-pink);
  border: 1px solid var(--c-btn-pink);
  border-radius: 30vw;
  font-family: var(--ff-serif);
  font-size: min(1.5vw, 1.8rem);
  padding: min(0.83vw, 10px);
}
.homNews__column .homNews__btn {
  text-align: right;
  margin-top: min(3.3vw, 40px);
}
@media (min-width: 767px) {
  .homNews__btn {
    margin-top: -150px;
    z-index: 9999;
  }
  .homNews__btn.c-homNews__btn {
    text-align: center;
    margin: 40px;
  }
}
@media (max-width: 767px) {
  #homNews {
    margin: min(15vw, 120px) 0 0;
    padding: 0 0 10vw;
  }
  #homNews::before {
    content: none;
  }
  #homNews::after {
    font-size: min(14vw, 100px);
    transform: translateY(-50%);
  }
  #homNews .inner {
    display: block;
    position: relative;
    z-index: 1;
  }
  .homNews__cont {
    width: 100%;
    font-size: min(4vw, 1.5rem);
  }
  .homNews__cont h3 {
    font-size: min(6vw, 3.6rem);
    margin-bottom: min(3vw, 40px);
  }
  .homNews__column {
    margin-top: min(10vw, 60px);
  }
  .homNews__news h3 {
    text-align: left;
  }
  .homNews__news dl {
    padding-bottom: min(3vw, 30px)
  }
  .homNews__news dl dt {
    padding: min(3vw, 30px) 0 min(2vw, 10px);
    margin-top: min(3vw, 30px);
  }
  .homNews__column ul li {
    padding: min(3vw, 30px) 0;
  }
  .homNews__btn a {
    display: block;
    width: 60%;
    min-width: inherit;
    font-size: min(4.2vw, 1.8rem);
    padding: min(3vw, 10px);
    margin: min(6vw, 40px) auto 0;
  }
  .homNews__news .homNews__btn {
    text-align: center;
    margin-top: min(4vw, 40px);
  }
  .homNews__column .homNews__btn {
    position: relative;
    right: inherit;
    top: inherit;
  }
}
/* loopSlider */
.homSlider {
  position: relative;
}
.homSlider::before {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  top: 0;
  background: #dcf7f0;
}
.loopSlider div p {
  /* width: min(33.3vw, 400px); */
  margin-bottom: 0;
  aspect-ratio: 3 / 2;
}
.loopSlider div p img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homSliderChild::before {
  background-color: #fff !important;
}
.homSliderChild div:nth-child(even) p {
  padding-top: 0 !important;
}
@media (max-width: 767px) {
  .loopSlider div p {
    margin: 0 min(3vw, 15px);
    width: min(40vw, 400px);
  }
  .loopSlider div:nth-child(even) p {
    padding-top: min(8vw, 40px);
  }
  #homVisual img {
    object-position: 67% center;
  }
  #homSlider .homSliderSp {
    aspect-ratio: 16 / 14;
  }
  .homVis__title p {
    font-size: min(10vw, 12rem);
    bottom: 0;
  }
  .homVis__title {
    bottom: 15px;
  }
}
/* ----------------------------------------------------
module(common)
---------------------------------------------------- */
/* vusial */
#pageVisual {
  height: 250px;
  /* background: url("../img/page/common/bg-visual-01.jpg") center center / cover no-repeat; */
}
#pageVisual.visual {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
#pageVisual.visual h2 {
  font-size: min(4.16vw, 5rem);
  color: var(--c-brown);
  line-height: 1.4;
  position: relative;
  z-index: 2;
  letter-spacing: 0.3rem;
}
#pageVisual.visual .bgTxt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-en);
  font-size: min(10vw, 12rem);
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.3rem;
}
#pageVisual.visual .bgTxt:first-letter {
  text-transform: capitalize;
}
/* topicPath */
ol.topicPath {
  list-style: none;
  margin: 0 auto;
  font-size: 0;
  width: 90%;
  padding: min(1.25vw, 15px) 0;
}
ol.topicPath li {
  font-size: min(1vw, 1.2rem);
  display: inline-block;
  position: relative;
  letter-spacing: 0.1rem;
}
ol.topicPath li:not(:first-child) {
  padding: 0 0 0 min(1.25vw, 15px);
  margin-left: min(0.4vw, 5px);
  position: relative;
}
ol.topicPath li:not(:first-child)::before {
  content: "";
  width: min(0.5vw, 6px);
  height: min(0.5vw, 6px);
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
ol.topicPath li a {
  color: #333;
}
/* layout */
#ul-container {
  margin-top: min(3.3vw, 40px);
}
#mainContent {
  margin: 0 auto min(8.3vw, 100px);
  width: 90%;
  max-width: 1200px;
}
.wrapContainer {
  margin: min(7.5vw, 90px) auto;
}
@media (max-width: 767px) {
  #pageVisual {
    height: min(40vw, 390px);
    padding-bottom: 10vw;
  }
  #pageVisual.visual {
    align-items: flex-end;
  }
  #pageVisual.visual h2 {
    font-size: min(6vw, 5rem);
  }
  #pageVisual.visual .bgTxt {
    font-size: min(20vw, 12rem);
    top: inherit;
    bottom: 0;
    transform: translate(-50%, 0);
    line-height: 1;
  }
  /* topicPath */
  ol.topicPath {
    padding: 3vw 0;
  }
  ol.topicPath li {
    font-size: 3vw;
  }
  ol.topicPath li:not(:first-child) {
    padding: 0 0 0 3vw;
    margin-left: 1vw;
  }
  ol.topicPath li:not(:first-child)::before {
    width: 1.2vw;
    height: 1.2vw;
  }
  #ul-container {
    margin-top: 0;
  }
  #mainContent {
    margin: 0 auto min(10vw, 100px);
  }
  .wrapContainer {
    margin: min(10vw, 90px) auto;
  }
}
/* hx */
.pageTitle {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  font-size: min(3.5vw, 4.2rem);
  font-family: var(--ff-serif);
  text-align: center;
  line-height: 1.3;
  color: var(--c-brown);
  font-weight: bold;
}
.pageTitle span {
  font-family: var(--ff-en);
  font-size: min(2vw, 2.4rem);
  color: var(--c-brown);
  display: block;
}
.hA {
  font-size: min(3.17vw, 3.8rem);
  color: var(--c-brown);
  font-weight: 500;
  line-height: 1.5;
  margin: min(6.6vw, 80px) 0 min(5vw, 60px);
  border-bottom: 1px solid var(--c-brown);
  padding-bottom: min(1.25vw, 15px);
}
.hB {
  font-size: min(2.67vw, 3.2rem);
  color: #333;
  padding: min(1.25vw, 15px) min(2.5vw, 30px);
  margin: min(5vw, 60px) 0 min(2.5vw, 30px);
  position: relative;
  line-height: 1.5;
  background: rgb(220, 247, 240);
  background: linear-gradient(90deg, rgba(220, 247, 240, 1) 0%, rgba(251, 242, 243, 1) 100%);
}
.hC {
  font-size: min(2.67vw, 3.2rem);
  color: var(--c-brown);
  margin: min(4.16vw, 50px) 0 min(2.5vw, 30px);
  line-height: 1.5;
}
.hD {
  font-size: min(2vw, 2.4rem);
  color: #3cb8ab;
  line-height: 1.5;
  position: relative;
  margin: min(2.5vw, 30px) 0 min(1.6vw, 20px);
}
.flexConent .hC:first-child, .flexConent .hD:first-child, .floatBox .hD:first-of-type {
  margin-top: 0;
}
@media (max-width: 767px) {
  .pageTitle {
    font-size: min(6.5vw, 4.2rem);
    margin-top: min(4vw, 20px);
  }
  .pageTitle span {
    font-size: min(4vw, 2.4rem);
  }
  .hA {
    font-size: min(6vw, 3.8rem);
    margin: min(5vw, 80px) 0 min(4vw, 60px);
    padding-bottom: min(3vw, 15px);
  }
  .hB {
    font-size: min(5.4vw, 3.2rem);
    padding: min(3vw, 15px) min(5vw, 30px);
    margin: min(5vw, 60px) 0 min(3vw, 30px);
  }
  .hC {
    font-size: min(5.4vw, 3.2rem);
    margin: min(4.5vw, 50px) 0 min(3vw, 30px);
  }
  .hD {
    font-size: min(5vw, 2.4rem);
    margin: min(4vw, 30px) 0 min(3vw, 20px);
  }
}
/* link  / list */
.telLink {
  padding-left: min(3.3vw, 40px);
  font-size: min(2.5vw, 3rem);
  color: var(--c-brown);
  font-family: var(--ff-serif);
  font-weight: 400;
}
.telLink::before {
  color: var(--c-green);
  font-size: min(3vw, 3.6rem);
}
a.linkArrow {
  display: inline-block;
  min-width: min(23vw, 280px);
  padding: min(1.5vw, 18px) min(2.5vw, 30px);
  text-align: center;
  background: #f5dbdb;
  border-radius: 30vw;
  color: #333;
  position: relative;
}
a.linkArrow::after {
  content: "";
  position: absolute;
  right: min(1.25vw, 15px);
  top: 50%;
  width: min(0.83vw, 10px);
  aspect-ratio: 1/1;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: translateY(-50%) rotate(45deg);
}
a.linkArrow.linkExternal::after {
  content: none;
}
a.linkExternal span::after {
  color: #333;
}
ul.listDot li::before {
  background: var(--c-green);
}
ul.listCheck li::before {
  color: var(--c-green);
}
.listData dt {
  color: var(--c-green);
  margin-top: min(0.4vw, 5px);
}
.listData dd {
  margin-bottom: min(2.5vw, 30px);
}
/* decBox */
.decBox {
  padding: min(2.5vw, 30px);
  margin-bottom: min(2.5vw, 30px);
}
.decBox .hD:first-of-type {
  margin-top: 0;
}
.decBox p:last-child, .decBox div:last-child, .decBox ul:last-child, .decBox ol:last-child, .decBox dl:last-child, .decBox table:last-child {
  margin-bottom: 0 !important;
}
.decBox01 {
  background: #dcf7f0;
}
.decBox02 {
  background: #f3f4f2;
}
.decBox03 {
  background: #fbf2f3;
}
.decBox04 {
  border: 3px solid #f5dbdb;
}
/* p */
.strongA {
  background: linear-gradient(transparent 60%, #ffff66 60%);
}
.strongB {
  font-size: 120%;
}
.txtSmall {
  font-size: 90%;
}
/* table */
.tblA th, .tblA td, .tblB th, .tblB td, .tblC th, .tblC td, .tblD th, .tblD td, .tblE th, .tblE td {
  border: 1px solid #6F5136;
  padding: min(0.83vw, 10px);
}
.tblA th, .tblB th, .tblC th, .tblD th, .tblE th {
  background: #ecdad7;
  color: var(--c-brown);
}
.tblA td, .tblB td, .tblC td, .tblD td, .tblE td {
  background: #fff;
}
.tblA.tblA--white * {
  background-color: #fff;
}
.tblB th {
  text-align: left;
}
.tblB td.inrTblB table tr {
  border-bottom: 1px solid #ddd;
}
.tblB td.inrTblB table td {
  border-left: 1px solid #ddd;
}
.tblC {
  border-top: 1px solid #ddd;
}
.tblD td:first-child, .tblE tr:nth-child(even) th {
  background: #fbf2f3;
  color: var(--c-brown);
}
.tblD td:first-child {
  font-weight: 600;
  text-align: center;
}
.tblE tr:nth-child(even) td {
  background: #f3f3f3;
}
@media (max-width: 767px) {
  .telLink {
    padding-left: min(10vw, 40px);
    font-size: min(8vw, 3rem);
  }
  .telLink::before {
    font-size: min(9vw, 3.6rem);
  }
  a.linkArrow {
    width: 80%;
    margin: 0 auto;
    display: block;
    padding: min(3.5vw, 18px) min(6vw, 30px);
  }
  a.linkArrow::after {
    right: min(3vw, 15px);
    width: min(2vw, 10px);
  }
  .listData dt {
    margin-top: min(1vw, 5px);
  }
  .decBox {
    padding: 5vw;
    margin-bottom: 4vw;
  }
  .listData dt {
    margin-top: 1vw;
  }
  .tblA th, .tblA td {
    padding: 2.5vw;
  }
  .tblA.tblVertical {
    border-bottom: 1px solid #6F5136;
  }
  .tblB {
    border-bottom: 1px solid #ddd;
  }
  .tblB td.inrTblB table th {
    background: #fbf2f3;
    color: var(--c-brown);
    text-align: left;
    font-weight: 600;
  }
  .tblD th {
    padding: inherit;
  }
  .tblD td {
    padding: inherit;
  }
  .tblD {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  .tblD td:before {
    padding: 3vw 1.5vw;
    background: #dcf7f0;
    color: var(--c-brown);
  }
  .tblD td span {
    padding: 3vw;
  }
  .tblD td:first-child {
    padding: 3vw;
  }
  .tbl-scroll::-webkit-scrollbar-track {
    background: #f3f3f3;
  }
  .tbl-scroll::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
  .tbl-scroll .tblE th::before {
    background: #ccc;
  }
  .tbl-scroll .tblE th::after {
    background: #ccc;
  }
}
/* step */
.stpBox {
  background: rgb(220, 247, 240);
  background: linear-gradient(90deg, rgba(220, 247, 240, 1) 0%, rgba(251, 242, 243, 1) 100%);
  border-radius: min(1.25vw, 15px);
  padding: min(4.16vw, 50px) min(4.16vw, 50px) min(3.3vw, 40px) min(4.16vw, 50px);
  position: relative;
}
.stpBox:not(:last-child) {
  margin-bottom: min(5vw, 60px);
}
.stpBox:not(:last-child)::before {
  content: "";
  width: 2px;
  height: min(5vw, 60px);
  background: var(--c-green);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
}
.stpBox:not(:last-child)::after {
  content: "";
  width: min(2.5vw, 30px);
  aspect-ratio: 1/1;
  border: 2px solid var(--c-green);
  border-top: none;
  border-left: none;
  position: absolute;
  left: 50%;
  bottom: 3px;
  transform: translate(-50%, min(2.5vw, 30px)) rotate(45deg);
}
.stpTitle {
  text-align: center;
  margin-bottom: min(2.5vw, 30px);
  color: var(--c-green);
}
.stpTitle p {
  margin: 0;
  font-family: var(--ff-serif);
}
.stpTitle p span {
  font-size: min(2.5vw, 3rem);
  padding-left: min(0.83vw, 10px);
}
.stpTitle h3 {
  font-size: min(2.5vw, 3rem);
}
.stpContent {
  overflow: hidden;
}
.stpContent .stpImg {
  float: right;
  width: 40%;
  margin: 0 0 min(1.66vw, 20px) min(3.3vw, 40px);
}
@media (max-width: 767px) {
  .stpBox {
    border-radius: min(3vw, 15px);
    padding: min(5vw, 50px);
  }
  .stpBox:not(:last-child) {
    margin-bottom: min(8vw, 60px);
  }
  .stpBox:not(:last-child)::before {
    height: min(12vw, 60px);
  }
  .stpBox:not(:last-child)::after {
    width: min(6vw, 30px);
    bottom: 3px;
    transform: translate(-50%, min(6vw, 30px)) rotate(45deg);
  }
  .stpTitle {
    margin-bottom: min(4vw, 30px);
  }
  .stpTitle p span {
    font-size: min(6vw, 3rem);
    padding-left: min(2vw, 10px);
  }
  .stpTitle h3 {
    font-size: min(5vw, 3rem);
  }
  .stpContent {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
  }
  .stpContent .stpImg {
    float: none;
    width: 100%;
    margin: 0 0 min(4vw, 20px);
  }
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
pcSetting
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (min-width:768px) {
  /* hover */
  a:hover, .clickable:hover {
    opacity: .8 !important;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
  }
  /* ----------------------------------------------------
header(pc)
---------------------------------------------------- */
  #header {
    padding: min(3.75vw, 45px) 3% 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10;
  }
  #hd-logo {
    width: min(23vw, 280px);
  }
  #hd-tel {
    width: min(23vw, 280px);
    text-align: center;
    font-family: var(--ff-serif);
    color: #7b5e45;
    font-size: min(1.66vw, 2rem);
    border-top: 1px solid #bca38e;
    border-bottom: 1px solid #bca38e;
    letter-spacing: 0.1rem;
    margin-top: min(1.66vw, 20px);
    padding: min(0.4vw, 5px) 0;
    line-height: 1.4;
  }
  #hd-tel span {
    font-size: min(2vw, 2.4rem);
  }
  #grandMenu {
    position: sticky;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 100;
    background: #e7e7e5;
    font-family: var(--ff-serif);
  }
  #navGlobal {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    height: min(7.5vw, 90px);
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
  }
  #navGlobal > li {
    flex-grow: 1;
  }
  #navGlobal > li > a {
    color: var(--c-brown);
    font-weight: bold;
    height: 100%;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  #navGlobal > li > a.current, #navGlobal > li > a.parentsLink {
    color: #70b845;
  }
  #navGlobal > li > a.current::before, #navGlobal > li > a.parentsLink::before {
    content: "";
    width: 1px;
    height: min(4.16vw, 50px);
    background: #70b845;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(0, -60%);
  }
  #navGlobal > li > a:hover {
    color: #b48889;
  }
  .navChild {
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(0, 100%);
    background: #fff;
    width: 100%;
    margin: 0;
    display: none;
    padding: min(0.83vw, 10px) 0 min(3.3vw, 40px);
    z-index: 100;
  }
  .navChild ul {
    margin: 0 auto;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1200px;
    font-size: min(1.3vw, 1.6rem);
  }
  .navChild ul li {
    width: 25%;
    position: relative;
  }
  .navChild ul li::before {
    content: "";
    width: 1px;
    height: 80%;
    background: #ddd;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: rotate(20deg);
  }
  .navChild ul li:nth-child(n+5) {
    margin-top: min(1.25vw, 15px);
  }
  .navChild ul li a {
    padding: min(1.25vw, 15px) min(5vw, 60px) min(1.25vw, 15px) min(2.5vw, 30px);
    line-height: 1.3;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
  }
  .navChild ul li a:hover {
    color: var(--c-pink-strong);
  }
  .navChild ul li a::before, .navChild ul li a::after {
    content: "";
    height: 1px;
    background: var(--c-pink-strong);
    position: absolute;
    right: min(2vw, 24px);
    bottom: min(1.25vw, 15px);
    transform-origin: right bottom;
  }
  .navChild ul li a::before {
    width: min(1.66vw, 20px);
  }
  .navChild ul li a::after {
    width: min(1.25vw, 10px);
    transform: rotate(40deg);
  }
  #hd-btn--reserve {
    right: min(1.66vw, 20px);
    font-size: min(2.33vw, 2.8rem);
    z-index: 150;
  }
  #hd-btn--reserve.first {
    position: absolute;
  }
  #hd-btn--reserve.fixed {
    position: fixed;
    top: min(5vw, 60px);
  }
  #hd-btn--reserve .btn--reserve {
    display: flex;
    display: -webkit-flex;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
    align-items: center;
    justify-content: center;
    padding: min(1.66vw, 20px) min(0.83vw, 10px) min(3.3vw, 40px);
    height: min(21.67vw, 260px);
    vertical-align: center;
  }
  #hd-btn--reserve .btn--reserve span {
    padding-top: 1.8em;
  }
  #hd-btn--reserve .btn--reserve span::before {
    font-size: 1.3em;
  }
  #hd-btn--reserve .btn--instagram {
    margin-top: min(0.83vw, 10px);
  }
  #hd-btn--reserve .btn--instagram img {
    padding: min(0.83vw, 10px);
  }
  /* ----------------------------------------------------
home(pc)
---------------------------------------------------- */
  /*point*/
  table.schedule td br {
    display: none
  }
  table.schedule th br.sp_br {
    display: none !important;
  }
  /* ----------------------------------------------------
localnavi(pc)
---------------------------------------------------- */
  #navLocal {
    width: 90%;
    margin: 0 auto min(5vw, 60px);
  }
  #navLocal ul {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: min(1.66vw, 20px);
  }
  #navLocal ul li {
    min-width: min(16.6vw, 200px);
    position: relative;
    font-family: var(--ff-serif);
    margin-bottom: min(1.25vw, 15px);
  }
  #navLocal ul li::before, #navLocal ul li:last-child::after {
    content: "";
    width: 1px;
    height: 100%;
    background: #ccc;
    position: absolute;
    left: 0;
    top: 0;
    transform-origin: right top;
    transform: translateX(-100%) rotate(20deg);
  }
  #navLocal ul li:last-child::after {
    left: inherit;
    right: max(-0.83vw, -10px);
    transform: translateX(200%) rotate(20deg);
  }
  #navLocal ul li a {
    display: block;
    padding: min(0.4vw, 5px) min(2.5vw, 30px) min(0.4vw, 5px) min(1.66vw, 20px);
    position: relative;
  }
  #navLocal ul li a.current, #navLocal ul li a:hover {
    color: var(--c-pink-strong);
  }
  #navLocal ul li a::before, #navLocal ul li a::after {
    content: "";
    height: 1px;
    background: var(--c-pink-strong);
    position: absolute;
    right: min(0.83vw, 10px);
    bottom: min(1.25vw, 15px);
    transform-origin: right bottom;
  }
  #navLocal ul li a::before {
    width: min(1.66vw, 20px);
  }
  #navLocal ul li a::after {
    width: min(1.25vw, 10px);
    transform: rotate(40deg);
  }
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
tabletSetting
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1200px) and (min-width: 768px) {}
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
spSetting
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 767px) {
  #mainContainer {
    width: 100%;
    position: relative;
  }
  /* ----------------------------------------------------
header(sp)
---------------------------------------------------- */
  #header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    width: 100%;
    height: min(15vw, 112px);
    padding: 2vw 3vw;
    transition: all, ease-in-out, 0.3s;
    background: rgba(255, 255, 255, 0.7);
  }
  #header.active {
    background: #fff;
  }
  #header #hd-logo {
    width: auto;
    height: 100%;
  }
  #header #hd-logo img {
    height: 100%;
    width: auto;
  }
  #btnGlobal {
    position: absolute;
    width: min(15vw, 112px);
    height: min(15vw, 112px);
    right: 0;
    top: 0;
    z-index: 120;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
  }
  #btnGlobal .btnWrapGlobal {
    position: relative;
    width: 7vw;
    height: 5vw;
  }
  #btnGlobal .btnLine {
    height: 2px;
    background: var(--c-brown);
    position: absolute;
    right: 0;
    width: 100%;
  }
  #btnGlobal .btnLine.btnLineT {
    top: 0;
  }
  #btnGlobal .btnLine.btnLineM {
    top: 50%;
    transform: translateY(-50%);
  }
  #btnGlobal .btnLine.btnLineB {
    bottom: 0;
  }
  #btnGlobal.active .btnLine.btnLineT {
    display: none;
  }
  #btnGlobal.active .btnLine.btnLineM {
    transform: translateY(0) rotate(45deg);
  }
  #btnGlobal.active .btnLine.btnLineB {
    transform: rotate(-45deg);
    bottom: inherit;
    top: 50%;
  }
  #btnGlobal .btnLine.btnLineM, #btnGlobal .btnLine.btnLineB {
    transition: all, ease-in-out, 0.3s;
  }
  #grandMenu {
    background: #fff;
    width: 100%;
    height: calc(100vh - min(15vw, 112px));
    position: fixed;
    z-index: 100;
    left: 0;
    top: min(15vw, 112px);
    display: none;
    overflow: auto;
    padding: 5vw 10%;
  }
  #grandMenu a {
    color: var(--c-brown);
  }
  #grandMenu #navGlobal li {
    font-size: min(4.2vw, 2rem);
    border-bottom: 1px solid var(--c-lightBrown);
    line-height: 1;
    font-family: var(--ff-serif);
  }
  #grandMenu #navGlobal > li > a {
    display: block;
    padding: min(5vw, 25px) 0;
    position: relative;
  }
  #grandMenu #navGlobal > li.btn-navChild > a::before, #grandMenu #navGlobal > li.btn-navChild > a::after {
    content: "";
    width: 3vw;
    height: 1px;
    background: var(--c-pink-strong);
    position: absolute;
    right: 2vw;
    top: 50%;
    transition: all, ease-in-out, 0.3s;
  }
  #grandMenu #navGlobal > li.btn-navChild > a::after {
    transform: rotate(90deg);
  }
  #grandMenu #navGlobal > li.btn-navChild > a.active::after {
    transform: rotate(0);
  }
  #grandMenu #navGlobal li.btn-navChild .navChild {
    display: none;
  }
  #grandMenu #navGlobal li.btn-navChild .navChild li {
    border-bottom: none;
    font-size: 4vw;
    padding-left: 3.7vw;
  }
  #grandMenu #navGlobal li.btn-navChild .navChild li a {
    padding: 3vw 3vw 3vw 4.5vw;
    display: block;
    position: relative;
  }
  #grandMenu #navGlobal li.btn-navChild .navChild li a::before {
    content: "";
    width: 3vw;
    height: 1px;
    background: var(--c-pink-strong);
    position: absolute;
    left: 0;
    top: 50%;
  }
  #grandMenu #navGlobal li.btn-navChild .navChild li a::after {
    content: none;
  }
  /* ----------------------------------------------------
footer(sp)
---------------------------------------------------- */
  #footer {
    padding-bottom: 15vw;
    position: relative;
  }
  #ftSlideBlock {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 99;
    display: flex;
    display: -webkit-flex;
  }
  #ftSlideBlock div {
    height: 100%;
  }
  #ftSlideBlock div a {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    height: 15vw;
    font-size: min(4.5vw, 2rem);
    font-family: var(--ff-serif);
    letter-spacing: 0.1rem;
  }
  #ftSlideBlock .ft-btn--tel, #ftSlideBlock .ft-btn--result {
    width: 50%;
  }
  #ftSlideBlock .ft-btn--instagram {
    width: 15%;
  }
  #ftSlideBlock .ft-btn--tel a, #ftSlideBlock .ft-btn--result a {
    background: #fff;
    border: 1px solid var(--c-btn-pink);
    border-right: 0;
    border-bottom: 0;
    color: #333;
  }
  #ftSlideBlock .ft-btn--tel a {
    border-left: 0;
  }
  #ftSlideBlock .ft-btn--instagram a {
    background: var(--c-pink);
    color: var(--c-brown);
  }
  #ftSlideBlock .ft-btn--tel a span.ic--left, #ftSlideBlock .ft-btn--result a span {
    padding-left: 1.5em;
  }
  #ftSlideBlock .ft-btn--tel a span.ic--tel::before, #ftSlideBlock .ft-btn--result a span::before {
    font-size: min(6.5vw, 3rem);
  }
  #ftSlideBlock .ft-btn--instagram img {
    width: 50%;
  }
  /* -----------------------------------------------------
home(sp)
------------------------------------------------------- */
  /* -----------------------------------------------------
 navLocal(sp)
------------------------------------------------------- */
  .col-reverse {
    display: flex;
    display: -webkit-flex;
    flex-direction: column-reverse;
  }
  #navLocal {
    background: var(--c-green);
    width: 100%
  }
  #navLocal ul {
    margin: 0;
  }
  #navLocal ul li a {
    display: block;
    color: #fff;
    font-size: 4vw;
    padding: 3vw 4vw;
    border-bottom: 1px solid #fff;
    position: relative;
  }
  #navLocal ul li a::after {
    content: "";
    width: 2vw;
    height: 2vw;
    margin-top: -0.5vw;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    right: 4vw;
    top: 50%;
    transform: rotate(45deg);
  }
  #navLocal ul li a.current, #navLocal ul.first li a.parentsLink {
    background: var(--c-pink);
    color: var(--c-brown);
  }
  /* ----------------------------------------------------
underLayer(sp)
---------------------------------------------------- */
}
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

column base

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.colFlex {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1200px;
  margin-top: min(5vw, 60px) !important;
}
#colMain {
  width: 70%;
}
#colSide {
  width: 25%;
}
.navSide {
  margin-bottom: min(2.5vw, 30px);
}
.navSide h2 {
  text-align: center;
  padding: min(1.25vw, 15px);
  background: rgb(220, 247, 240);
  background: linear-gradient(90deg, #f4dada 0%, #fff 100%);
  color: var(--c-brown);
}
.navSide ul {
  margin: 0;
}
.navSide ul li {
  border-bottom: 1px dotted var(--c-green);
  line-height: 1.5;
  font-size: min(1.25vw, 1.5rem);
}
.navSide ul li a {
  display: block;
  padding: min(1.25vw, 15px) min(3.3vw, 20px);
}
.navSide ul li a:hover {
  color: var(--c-pink-strong);
  font-weight: 600;
}
.navSide ul li ul {
  border-top: 1px solid #fff;
}
.navSide ul li :is(ul li) {
  border: none;
}
.navSide ul li ul li a {
  padding: min(0.83vw, 10px) min(3.3vw, 20px) min(0.83vw, 10px) min(2.92vw, 35px);
}
.navSide .navSide__inr {
  padding: min(3.3vw, 20px) 0;
}
.navSide .navSide__inr select {
  width: 100%;
  padding: min(0.66vw, 8px);
}
.postIndex {
  padding: min(2.5vw, 30px) 0;
  border-bottom: 1px dashed var(--c-green);
}
.postIndex:first-child {
  border-top: 1px dashed var(--c-green);
}
.postIndex h2 {
  font-size: min(2vw, 2.4rem);
  margin: min(0.4vw, 5px) 0 0;
}
.wp-pagenavi {
  margin-top: min(5vw, 60px);
  text-align: center;
}
/* parts */
.postFlx {
  display: flex;
  display: -webkit-flex;
  column-gap: min(0.83vw, 10px);
}
.postDate {
  font-size: min(1.16vw, 1.4rem);
  margin: 0;
}
.postCat {
  margin: 0;
  display: flex;
  display: -webkit-flex;
  column-gap: min(0.4vw, 5px);
  flex-wrap: wrap;
  font-size: min(1.16vw, 1.4rem);
}
.postCat a {
  background: var(--c-btn-pink);
  color: #fff;
  padding: 3px min(0.83vw, 10px);
  border-radius: 30vw;
}
/* single */
.postHead {
  margin-bottom: min(2.5vw, 30px);
  padding-bottom: min(2.5vw, 30px);
  border-bottom: 1px dashed #ccc;
}
.postHead .postDate {
  text-align: right;
}
.postHead h2 {
  font-size: min(2.5vw, 3rem);
  margin: min(0.83vw, 10px) 0 0;
}
.postBody {}
.postBody figure {
  margin: min(2.5vw, 30px) auto;
}
.postBody img {
  width: auto;
  max-width: 100%;
}
.postBody ul {
  list-style: disc;
  padding-left: 1.5em;
}
.postBody ol {
  list-style: decimal;
  padding-left: 1.5em;
}
.postBody h1 {
  font-size: min(2vw, 2.4rem);
  color: #333;
  padding: min(1.25vw, 15px) min(2.5vw, 30px);
  margin: min(5vw, 60px) 0 min(2.5vw, 30px);
  position: relative;
  line-height: 1.5;
  background: rgb(251, 242, 243);
}
.postBody h2 {
  font-size: min(2vw, 2.4rem);
  color: var(--c-pink-strong);
  margin: min(3.3vw, 40px) 0 min(2.5vw, 30px);
  line-height: 1.5;
  border-bottom: 1px solid var(--c-pink-strong);
  padding-bottom: min(1.25vw, 15px);
}
.postBody h3 {
  font-size: min(1.66vw, 2rem);
  color: var(--c-pink-strong);
  line-height: 1.5;
  position: relative;
  margin: min(2.5vw, 30px) 0 min(1.6vw, 20px);
  font-weight: 600;
}
.postBody > * + * {
  margin-top: 1em;
}
.postRelated {
  margin-top: min(5vw, 60px);
  padding: min(2.5vw, 30px) min(3.3vw, 40px) min(3.3vw, 40px);
  background: #f3f3f3;
}
.postRelated h3 {
  font-weight: 600;
  font-size: min(2vw, 2.4rem);
  text-align: center;
  margin-bottom: min(1.66vw, 20px);
}
.postRelated ul {
  margin: 0;
}
.postRelated ul li a {
  display: block;
  border-bottom: 1px dashed #aaa;
  padding: min(1.25vw, 15px);
}
@media (max-width: 767px) {
  .colFlex {
    width: 100% !important;
  }
  #colMain {
    width: 100%;
  }
  #colSide {
    width: 100%;
    margin-top: 50px;
  }
  .navSide {
    margin-bottom: 0;
  }
  .navSide h2 {
    padding: min(3vw, 15px);
  }
  .navSide ul li {
    font-size: min(3.8vw, 1.5rem);
  }
  .navSide ul li:last-child {
    border-bottom: none;
  }
  .navSide ul li a {
    padding: min(3vw, 15px) min(6vw, 30px);
  }
  .navSide ul li ul li a {
    padding: min(2vw, 10px) min(4vw, 20px) min(2vw, 10px) min(8vw, 35px);
  }
  .navSide .navSide__inr {
    padding: min(4vw, 20px);
  }
  .navSide .navSide__inr select {
    padding: min(1.6vw, 8px);
  }
  .postIndex {
    width: 90%;
    margin: 0 auto;
    padding: min(4vw, 24px) 0;
  }
  .postIndex h2 {
    font-size: min(4.2vw, 2.4rem);
    margin: min(1vw, 5px) 0 0;
  }
  .wp-pagenavi {
    margin: min(6vw, 60px) 0 min(10vw, 50px);
  }
  /* parts */
  .postFlx {
    column-gap: min(2vw, 10px);
  }
  .postDate {
    font-size: min(3.4vw, 1.4rem);
  }
  .postCat {
    column-gap: min(2vw, 10px);
    font-size: min(3.4vw, 1.4rem);
  }
  .postCat a {
    padding: 0 min(2vw, 10px);
  }
  /* single */
  .postHead {
    width: 90%;
    margin: 0 auto min(4vw, 30px);
    padding-bottom: min(4vw, 30px);
  }
  .postHead h2 {
    font-size: min(4.6vw, 2.4rem);
    margin: 2vw 0 0;
  }
  .postBody {
    width: 88%;
    margin: 0 auto min(10vw, 60px);
  }
  .postBody figure {
    margin: min(6vw, 30px) auto;
  }
  .postBody h1 {
    font-size: min(5vw, 2.4rem);
    padding: min(3vw, 15px) min(5vw, 30px);
    margin: min(6vw, 60px) 0 min(5vw, 30px);
  }
  .postBody h2 {
    font-size: min(4.8vw, 2.4rem);
    margin: min(5vw, 40px) 0 min(4vw, 30px);
    padding-bottom: min(3vw, 15px);
    font-weight: bold;
  }
  .postBody h3 {
    font-size: min(4.5vw, 2rem);
    margin: min(4vw, 30px) 0 min(3.5vw, 20px);
  }
  .postRelated {
    margin: min(8vw, 60px) auto 5vw;
    width: 90%;
    padding: min(6vw, 30px) min(5vw, 30px) min(8vw, 50px);
  }
  .postRelated h3 {
    font-size: min(4.2vw, 2.4rem);
    margin-bottom: min(3vw, 20px);
  }
  .postRelated ul li a {
    padding: min(3vw, 15px);
  }
}
/* ---エレメンター用追加css--- */
.ib {
  display: inline-block!important;
}
.c-ff-en,
.c-ff-en * {
  font-family: var(--ff-en)!important;
}
.c-color-orange {
  color: #f1742d;
}
/* リンクリスト */
.c-link-list a::after {
    content: '';
    display: block;
    width: 1em;
    aspect-ratio: 1;
    background: url(https://mclinic.stellavertex-test.biz/wp-content/uploads/icon_arrow.png) center / contain no-repeat;
    position: absolute;
    inset: 50% 0 auto auto;
    translate: 0 -50%;
}

.c-link-list a {
    padding-right: 2em;
}
/* ボタン */
.c-btn01 a {
    padding-right: 40px;
}
.c-btn01 a::after {
    content: '';
    display: block;
    width: 20px;
    aspect-ratio: 1;
    background: url(https://mclinic.stellavertex-test.biz/wp-content/uploads/icon_arrow01.png) center / contain no-repeat;
    position: absolute;
    inset: 50% 10px auto auto;
    translate: 0 -50%;
}
.c-btn02 a {
    padding-inline: 60px;
}
.c-btn02 a::before {
    content: '';
    display: block;
    width: 30px;
    aspect-ratio: 1;
    background: center / contain no-repeat;
    position: absolute;
    inset: 50% auto auto 20px;
    translate: 0 -50%;
}
.c-btn02--train a::before {
    background-image: url(https://mclinic.stellavertex-test.biz/wp-content/uploads/icon_train.svg);
}
.c-btn02--bus a::before {
    background-image: url(https://mclinic.stellavertex-test.biz/wp-content/uploads/icon_bus.svg);
}
/* ---お知らせ系ページ--- */
.archive #mainContainer,
.single-post  #mainContainer {
    padding-top: 100px;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}
.nav-links > * {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--c-btn-pink);
    width: 40px;
    height: 40px;
    border: 1px solid var(--c-btn-pink);
    border-radius: 50%;
}
.nav-links .current {
  color: #fff;
  background-color: var(--c-btn-pink);
}
.nav-links .prev,.nav-links .next {
    background: url(https://mclinic.stellavertex-test.biz/wp-content/uploads/icon_arrow02.svg) center / 15px auto no-repeat;
}
.nav-links .prev {
    scale: -1 1;
}