@charset "UTF-8";
:root {
  --color-main:#83C0CD;
  --color-base:#FFFFFF;
  --color-accent:#9D7D66;
  --color-black:#415558;
  --color-gray:#A4A4A4;
  --text-link:#0578A9;
  --border-thin:#CADCDF;
  --bg-thin:#F3F9FA;
}

/* -------------------------
px => rem
------------------------- */
/* ===================================
Reset
=================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.8;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* input textarea reset
============================== */
input,
textarea,
select {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 100%;
  outline: none;
  outline: 0;
}

select::-ms-expand {
  display: none;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/* ===================================
Foundation
=================================== */
* {
  box-sizing: border-box;
  line-break: strict;
}

/* テキスト
============================== */
a {
  text-decoration: none;
  color: inherit;
}

strong {
  font-weight: bold;
}

b {
  font-weight: bold;
}

sup {
  vertical-align: top;
}

/* メディア
============================== */
img {
  display: block;
  max-width: 100%;
  height: auto;
  backface-visibility: hidden;
}

video {
  display: block;
  max-width: 100%;
  height: auto;
  outline: none;
}

iframe {
  max-width: 100%;
}

/* ===================================
base
=================================== */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: max(20px, 1.3888888889vw);
}

body {
  overscroll-behavior: none;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-break: strict;
  color: #333;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.1111111111vw;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (width <= 1024px) {
  body {
    font-size: clamp(14px, vw(16, tb), 16px);
  }
}
@media screen and (width <= 767px) {
  body {
    font-size: clamp(14px, vw(16, sp), 16px);
  }
}

@media (hover: hover) and (pointer: fine) {
  ::-moz-selection {
    background-color: var(--color-main);
    color: var(--color-base);
  }
  ::selection {
    background-color: var(--color-main);
    color: var(--color-base);
  }
}
.ly_2col {
  background-color: #FFF;
  border-radius: max(80px, 5.5555555556vw) max(80px, 5.5555555556vw) 0 0;
}
@media screen and (width <= 767px) {
  .ly_2col {
    border-radius: max(40px, 2.7777777778vw) max(40px, 2.7777777778vw) 0 0;
  }
}

@media screen and (width <= 767px) {
  .sp_no {
    display: none;
  }
}

.pc_no {
  display: none;
}
@media screen and (width <= 767px) {
  .pc_no {
    display: block;
  }
}

.br_sp {
  display: none;
}
@media (max-width: 400px) {
  .br_sp {
    display: block;
  }
}
@media (max-width: 380px) {
  .br_sp {
    display: none;
  }
}

.br_pc {
  display: block;
}
@media screen and (width <= 767px) {
  .br_pc {
    display: none;
  }
}

.sp_br {
  display: none;
}
@media screen and (width <= 767px) {
  .sp_br {
    display: block;
  }
}

@media (max-width: 600px) {
  .br_600 {
    display: none;
  }
}

.br_387 {
  display: none;
}
@media (max-width: 387px) {
  .br_387 {
    display: block;
  }
}

.br_403 {
  display: none;
}
@media (max-width: 410px) {
  .br_403 {
    display: block;
  }
}

.min_sp_br {
  display: block;
}
@media screen and (width <= 767px) {
  .min_sp_br {
    display: none;
  }
}
@media (max-width: 400px) {
  .min_sp_br {
    display: block;
  }
}

p {
  font-size: max(16px, 1.1111111111vw);
  font-family: "Noto Sans JP";
}
@media screen and (width <= 767px) {
  p {
    font-size: max(16px, 1.1111111111vw);
  }
}

span {
  font-size: max(16px, 1.1111111111vw);
  font-family: "Noto Sans JP";
}
@media screen and (width <= 767px) {
  span {
    font-size: max(16px, 1.1111111111vw);
  }
}

a {
  font-family: "Noto Sans JP";
}

.list_example {
  margin-top: 0 !important;
}

ul.wp-block-list.is-style-default li {
  position: relative;
  padding-left: max(20px, 1.3888888889vw);
  line-height: 1.8;
  align-items: center;
  font-size: max(16px, 1.1111111111vw);
}
@media screen and (width <= 767px) {
  ul.wp-block-list.is-style-default li {
    padding-left: max(20px, 1.3888888889vw);
  }
}
ul.wp-block-list.is-style-default li::before {
  content: "・";
  background-repeat: no-repeat;
  position: absolute;
  font-size: max(20px, 1.3888888889vw);
  font-weight: 700;
  left: 0;
  top: max(-4px, -0.2777777778vw);
  background-size: cover;
}
@media screen and (width <= 767px) {
  ul.wp-block-list.is-style-default li::before {
    font-size: max(18px, 1.25vw);
    top: max(-14px, -0.9722222222vw);
  }
}

.wp-element-caption {
  font-size: max(14px, 0.9722222222vw);
}
@media screen and (width <= 767px) {
  .wp-element-caption {
    font-size: max(12px, 0.8333333333vw);
  }
}

.is-style-checklist li,
.is-style-numbering li {
  font-size: max(16px, 1.1111111111vw);
}
@media screen and (width <= 767px) {
  .is-style-checklist li,
  .is-style-numbering li {
    font-size: max(14px, 0.9722222222vw);
  }
}

.has-fixed-layout .span-addtxt {
  font-size: max(14px, 0.9722222222vw) !important;
  color: #bbb;
}
@media screen and (width <= 767px) {
  .has-fixed-layout .span-addtxt {
    font-size: max(14px, 0.9722222222vw) !important;
    color: #bbb;
  }
}

.has-fixed-layout .span-txt {
  display: block;
}

.wp-block-list.is-style-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: max(12px, 0.8333333333vw) max(30px, 2.0833333333vw);
}
@media screen and (width <= 767px) {
  .wp-block-list.is-style-checklist {
    grid-template-columns: 1fr;
  }
}

.wp-block-list.is-style-checklist li {
  position: relative;
  display: grid;
  grid-template-columns: max(22px, 1.5277777778vw) 1fr;
  padding-bottom: max(12px, 0.8333333333vw);
  border-bottom: 1px solid #F1D8BD;
  gap: max(8px, 0.5555555556vw);
  align-items: center;
}

.wp-block-list.is-style-checklist li::before {
  content: "";
  background-image: url(../img/common/list_check.svg);
  background-repeat: no-repeat;
  position: relative;
  width: max(22px, 1.5277777778vw);
  aspect-ratio: 22/21;
  left: 0;
  background-size: cover;
}

/* 🔢 ナンバリングリスト */
.wp-block-list.is-style-numbering {
  counter-reset: my-counter;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: max(12px, 0.8333333333vw) max(28px, 1.9444444444vw);
}
@media screen and (width <= 767px) {
  .wp-block-list.is-style-numbering {
    grid-template-columns: 1fr;
  }
}

.wp-block-list.is-style-numbering li {
  position: relative;
  margin-bottom: max(16px, 1.1111111111vw);
  align-items: center;
  padding-bottom: max(12px, 0.8333333333vw);
  border-bottom: 1px solid var(--orange-line, #F1D8BD);
  display: grid;
  grid-template-columns: max(36px, 2.5vw) 1fr;
  gap: max(10px, 0.6944444444vw);
  align-items: center;
  height: auto;
}

.wp-block-list.is-style-numbering li::before {
  content: "";
  background-image: url(../img/common/numbering_bg.svg);
  filter: drop-shadow(max(3px, 0.2083333333vw) max(3px, 0.2083333333vw) 0 #F2F2F2);
  transform: translateZ(0);
  background-repeat: no-repeat;
  position: relative;
  width: max(36px, 2.5vw);
  aspect-ratio: 36/37;
  left: 0;
  background-size: cover;
  display: block;
}

.wp-block-list.is-style-numbering li::after {
  counter-increment: my-counter;
  content: "0" counter(my-counter);
  color: #fff;
  font-weight: bold;
  font-size: max(16px, 1.1111111111vw);
  width: max(36px, 2.5vw);
  position: absolute;
  font-family: "Public Sans";
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  transform: translateY(-70%);
}

@media screen and (width <= 767px) {
  .has-fixed-layout tbody,
  .has-fixed-layout tr,
  .has-fixed-layout th,
  .has-fixed-layout td {
    width: 100%;
  }
  .has-fixed-layout th {
    border-bottom: none;
    font-weight: bold;
    background-color: #ffac54;
    color: #fff;
    text-align: left;
  }
  .has-fixed-layout td {
    padding: max(16px, 1.1111111111vw) !important;
    width: 100% !important;
    font-size: max(16px, 1.1111111111vw) !important;
  }
}
@media screen and (width <= 767px) and (width <= 767px) {
  .has-fixed-layout td {
    font-size: max(16px, 1.1111111111vw) !important;
  }
}
.un_border {
  background: var(--orange-bg02, #FFF4E7);
  padding: max(20px, 1.3888888889vw) max(24px, 1.6666666667vw);
  margin-top: max(30px, 2.0833333333vw);
  display: grid;
}
@media screen and (width <= 767px) {
  .un_border {
    padding: max(20px, 1.3888888889vw) max(24px, 1.6666666667vw);
  }
}
.un_border .un_border_ttl {
  margin-top: 0 !important;
  font-size: max(18px, 1.25vw);
  margin-bottom: max(10px, 0.6944444444vw);
}
@media screen and (width <= 767px) {
  .un_border .un_border_ttl {
    font-size: max(18px, 1.25vw);
    margin-bottom: max(10px, 0.6944444444vw);
  }
}
.un_border .un_border_txt {
  font-size: max(16px, 1.1111111111vw);
  margin-top: 0 !important;
  margin-bottom: max(30px, 2.0833333333vw);
}
.un_border .un_border_txt:nth-last-of-type(1) {
  margin-bottom: 0 !important;
}
@media screen and (width <= 767px) {
  .un_border .un_border_txt {
    font-size: max(14px, 0.9722222222vw);
    margin-bottom: max(30px, 2.0833333333vw);
  }
}

/* ===================================
layout
=================================== */
.ly_inner {
  box-sizing: content-box;
  max-width: max(1000px, 69.4444444444vw);
  width: auto;
  margin: 0 auto;
  padding: 0 max(20px, 1.3888888889vw);
}
@media screen and (width <= 1024px) {
  .ly_inner {
    padding: 0 max(40px, 3.90625vw);
  }
}
@media screen and (width <= 767px) {
  .ly_inner {
    padding: 0 max(20px, 1.3888888889vw);
  }
}

/* ===================================
device
=================================== */
@media screen and (width <= 767px) {
  .un_pc {
    display: none;
  }
}

.un_sp {
  display: none;
}
@media screen and (width <= 767px) {
  .un_sp {
    display: block;
  }
}

.el_reserveList {
  pointer-events: all;
}
@media screen and (width <= 767px) {
  .el_reserveList {
    display: none;
  }
}

.is-style-fancy-button .wp-block-button__link {
  border-radius: 10px;
}

.el_caseTable {
  width: 100% !important;
}

.un_sticky {
  position: sticky;
  top: max(100px, 6.9444444444vw);
  z-index: 10;
  background: #fff;
  padding: max(20px, 1.3888888889vw) 0;
}
@media screen and (width <= 767px) {
  .un_sticky {
    top: max(80px, 5.5555555556vw);
    padding: max(15px, 1.0416666667vw) 0 0;
  }
}

.bl_wave_scroll {
  height: 200px;
  margin-top: max(36px, 2.5vw);
  width: 120vw;
  position: relative;
  left: 50%;
  transform: translateX(-45%);
  overflow: hidden;
}

@media (max-width: 767px) {
  .svg-wave-text {
    font-size: 89px;
  }
}
.marker {
  background: linear-gradient(transparent 60%, #FFF4E7 60%);
  font-weight: 700;
}

.comingsoon {
  text-align: center;
  padding-bottom: max(100px, 6.9444444444vw);
  font-size: max(30px, 2.0833333333vw);
}
.comingsoon p {
  font-size: max(40px, 2.7777777778vw);
  font-weight: 700;
  line-height: 1.8;
  font-family: "Public Sans";
  background: linear-gradient(270deg, #FFCE9A 13.61%, #FFA94E 75.61%);
  background: -webkit-linear-gradient(270deg, #FFCE9A 13.61%, #FFA94E 75.61%);
  display: inline-block;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (width <= 767px) {
  .comingsoon p {
    font-family: "Public Sans";
    font-size: max(30px, 2.0833333333vw);
    line-height: 1;
    letter-spacing: max(0.48px, 0.0333333333vw);
  }
}

/* ===================================
header
=================================== */
.ly_header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  pointer-events: none;
  background-color: #fff;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #FFAC54;
}
.ly_header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: max(22px, 1.5277777778vw) max(30px, 2.0833333333vw) max(18px, 1.25vw);
}
@media screen and (width <= 767px) {
  .ly_header_inner {
    padding: max(12px, 0.8333333333vw) max(20px, 1.3888888889vw);
    min-height: max(60px, 4.1666666667vw);
  }
}
.ly_header .el_snsList {
  margin-right: max(30px, 2.0833333333vw);
  pointer-events: all;
}
@media screen and (width <= 767px) {
  .ly_header .el_snsList {
    gap: max(24px, 1.6666666667vw);
  }
}
.ly_header .el_reserveList {
  pointer-events: all;
}
@media (max-width: 850px) {
  .ly_header .el_reserveList {
    display: none;
  }
}
.ly_header .el_head_logo {
  max-width: max(271px, 18.8194444444vw);
  min-width: max(160px, 11.1111111111vw);
  pointer-events: all;
}
@media screen and (width <= 767px) {
  .ly_header .el_head_logo {
    width: 45%;
  }
}
.ly_header .el_head_logo a {
  display: block;
  transition: 0.3s;
}
@media (hover: hover) {
  .ly_header .el_head_logo a:hover {
    opacity: 0.7;
    transition: 0.3s;
  }
}
.ly_head_nav {
  display: flex;
  align-items: center;
  padding-right: max(64px, 4.4444444444vw);
  /* tel */
}
@media screen and (width <= 1024px) {
  .ly_head_nav {
    padding-right: max(80px, 7.8125vw);
  }
}
@media screen and (width <= 767px) {
  .ly_head_nav {
    padding-right: max(50px, 3.4722222222vw);
  }
}
.ly_head_nav .el_tel {
  margin-right: max(40px, 2.7777777778vw);
  padding: max(10px, 0.6944444444vw) max(40px, 2.7777777778vw) max(10px, 0.6944444444vw) 0;
  border-right: max(1px, 0.0694444444vw) solid #D8D2C0;
  pointer-events: all;
}
@media screen and (width <= 767px) {
  .ly_head_nav .el_tel {
    display: none;
  }
}
.ly_head_nav .el_tel_num {
  display: block;
  font-size: max(20px, 1.3888888889vw);
  font-weight: 700;
  line-height: 1;
}
.ly_head_nav .el_tel_text {
  display: block;
  margin-top: max(3px, 0.2083333333vw);
  font-size: max(12px, 0.8333333333vw);
  font-weight: 400;
  line-height: 1;
}
.ly_head_nav .el_tel a {
  display: block;
}
/* ===================================
burger
=================================== */
/* btn
============================== */
.el_burger_btn {
  width: max(64px, 4.4444444444vw);
  height: max(64px, 4.4444444444vw);
  border-radius: 50%;
  position: fixed;
  right: max(23px, 1.5972222222vw);
  top: max(23px, 1.5972222222vw);
  z-index: 10000;
  transition: 0.5s;
  cursor: pointer;
  pointer-events: auto;
  transition: 0.3s;
}
@media screen and (width <= 767px) {
  .el_burger_btn {
    top: max(12px, 0.8333333333vw);
    right: max(12px, 0.8333333333vw);
  }
}
@media (max-width: 520px) {
  .el_burger_btn {
    top: 1vw;
    right: 0%;
  }
}
@media (hover: hover) {
  .el_burger_btn:hover {
    opacity: 0.7;
    transition: 0.3s;
  }
}
.el_burger_btn .el_burger_btn_inner {
  cursor: pointer;
  border: none;
  background: none;
  width: 50%;
  position: absolute;
  height: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: auto;
  padding: 0;
}
.el_burger_btn .el_burger_btn_inner .el_burger_btn_line {
  width: 100%;
  height: 2px;
  background: #FFAC54;
  margin-bottom: 6px;
  transition: 0.3s ease-in-out;
}

.ly_burger {
  display: none;
  z-index: 99;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: #FCFAF4;
  overflow: auto;
}

/* open */
body.is_menu_active {
  overflow: hidden;
  transition: 0.5s ease-in-out;
}
body.is_menu_active .ly_head_nav {
  display: none;
  transition: 0.5s ease-in-out;
}

/* メニューオープン時 */
.el_burger_btn.active .el_burger_btn_inner .el_burger_btn_line:nth-of-type(1) {
  transform: translateY(8px) rotate(-30deg);
}

.el_burger_btn.active .el_burger_btn_inner .el_burger_btn_line:nth-of-type(2) {
  opacity: 0;
}

.el_burger_btn.active .el_burger_btn_inner .el_burger_btn_line:nth-of-type(3) {
  transform: translateY(-8px) rotate(30deg);
}

/* inner
============================== */
.ly_burger {
  width: 100vw;
}
.ly_burger_wrap {
  display: grid;
  grid-template-columns: 60% 1fr;
  width: 100%;
  height: auto;
  min-height: 100%;
}
@media screen and (width <= 1024px) {
  .ly_burger_wrap {
    display: flex;
    flex-direction: column-reverse;
    background: #cfcfcf;
  }
}
.ly_burger_side {
  background: var(--orange-bg02, #FFF4E7);
}
.ly_burger_side .el_footMenu:first-child {
  padding-top: 0;
}
.ly_burger_side .el_footMenu .ly_innerfooter {
  padding: 0;
}
.ly_burger_side .el_footMenu .el_footMenu_inner {
  grid-template-columns: 1fr 1fr;
  padding: 0;
}
@media screen and (width <= 767px) {
  .ly_burger_side .el_footMenu .el_footMenu_inner {
    grid-template-columns: 1fr;
  }
}
.ly_burger_side .bl_burger_inner {
  box-sizing: border-box;
  padding: max(158px, 10.9722222222vw) max(90px, 6.25vw) max(60px, 4.1666666667vw);
}
@media screen and (max-width: 1200px) {
  .ly_burger_side .bl_burger_inner {
    padding-right: max(40px, 2.7777777778vw);
    padding-left: max(40px, 2.7777777778vw);
  }
}
@media screen and (width <= 1024px) {
  .ly_burger_side .bl_burger_inner {
    padding-top: max(80px, 5.5555555556vw);
    padding-bottom: max(60px, 4.1666666667vw);
  }
}
@media screen and (width <= 767px) {
  .ly_burger_side .bl_burger_inner {
    padding-top: max(40px, 2.7777777778vw);
    padding-bottom: max(60px, 4.1666666667vw);
  }
}
.ly_burger_main {
  background-color: #FFF;
  position: relative;
}
.ly_burger_main .bl_burger_inner {
  display: grid;
  gap: max(40px, 2.7777777778vw);
  position: sticky;
  top: 0;
  box-sizing: border-box;
  padding: max(158px, 10.9722222222vw) max(80px, 5.5555555556vw) max(60px, 4.1666666667vw);
}
@media screen and (max-width: 1200px) {
  .ly_burger_main .bl_burger_inner {
    padding-right: max(40px, 2.7777777778vw);
    padding-left: max(40px, 2.7777777778vw);
  }
}
@media screen and (width <= 1024px) {
  .ly_burger_main .bl_burger_inner {
    max-width: max(560px, 54.6875vw);
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (width <= 767px) {
  .ly_burger_main .bl_burger_inner {
    padding-top: max(142px, 9.8611111111vw);
  }
}
.ly_burger_main .bl_burger_inner .el_burgerContact .el_reserveList {
  display: grid;
  gap: max(20px, 1.3888888889vw);
}
.ly_burger_main .bl_burger_inner .el_burgerContact .el_reserveList li {
  width: 100%;
}
.ly_burger_main .bl_burger_inner .el_burgerContact .el_reserveList li a {
  padding-top: max(16px, 1.1111111111vw);
  padding-bottom: max(16px, 1.1111111111vw);
}
.ly_burger_bottom {
  position: relative;
  padding: max(40px, 2.7777777778vw) max(20px, 1.3888888889vw) max(60px, 4.1666666667vw);
  background: #FCFAF4;
}
@media screen and (width <= 1024px) {
  .ly_burger_bottom {
    display: block;
  }
}

.el_burgerList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: max(24px, 1.6666666667vw) max(30px, 2.0833333333vw);
}
@media screen and (width <= 1024px) {
  .el_burgerList {
    gap: max(20px, 1.953125vw);
  }
}
.el_burgerList li {
  transition: 0.3s;
}
@media (hover: hover) {
  .el_burgerList li:hover {
    opacity: 0.7;
    transition: 0.3s;
  }
}
@media screen and (width <= 767px) {
  .el_burgerList li {
    width: 100%;
  }
}
.el_burgerList .el_burgerList_recruit a span {
  display: flex;
  gap: max(4px, 0.2777777778vw);
}
.el_burgerList a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  background: #FFF;
}
@media (hover: hover) {
  .el_burgerList a .el_burgerList_ico::before {
    animation-duration: 0.5s;
  }
  .el_burgerList a .el_burgerList_ico::after {
    animation-duration: 0.5s;
  }
  .el_burgerList a:hover .el_burgerList_ico::before {
    animation-name: el_btnArrow01;
  }
  .el_burgerList a:hover .el_burgerList_ico::after {
    animation-name: el_btnArrow02;
  }
}

.to-top {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.to-top.is-show {
  position: fixed;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

#js-top {
  position: fixed;
  z-index: 90;
  bottom: max(40px, 2.7777777778vw);
  right: max(40px, 2.7777777778vw);
}
@media screen and (width <= 767px) {
  #js-top {
    bottom: max(65px, 4.5138888889vw);
    right: max(15px, 1.0416666667vw);
  }
}
#js-top a {
  color: var(--orange-txt, #FFAC54);
  font-weight: 400;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #FFAC54;
  transition: all 0.3s ease-in-out;
  aspect-ratio: 1/1;
  border-radius: max(100px, 6.9444444444vw);
  width: max(60px, 4.1666666667vw);
  transform: rotate(180deg);
}
@media (hover: hover) {
  #js-top a:hover {
    background-color: #FFAC54;
  }
  #js-top a:hover svg path {
    stroke: #fff !important;
  }
}

/* ===================================
footer
=================================== */
.ly_footer {
  background: var(--orange-bg02, #FFF4E7);
}
.ly_footer.un_border_top {
  border-top: 1px solid var(--border-thin);
}

.ly_innerfooter {
  max-width: max(1120px, 77.7777777778vw);
  margin: 0 auto;
  padding: 0 max(40px, 2.7777777778vw);
  box-sizing: content-box;
}
@media screen and (width <= 1024px) {
  .ly_innerfooter {
    padding: 0 max(40px, 3.90625vw);
  }
}
@media screen and (width <= 767px) {
  .ly_innerfooter {
    padding: 0 max(20px, 1.3888888889vw);
  }
}

/* ===================================
Reserve
=================================== */
/* reserve area
============================== */
.el_footReserve {
  overflow: hidden;
  background-color: #fff;
  padding: max(100px, 6.9444444444vw) 0;
}
@media screen and (width <= 1024px) {
  .el_footReserve {
    padding: max(60px, 5.859375vw) 0;
  }
}
.el_footReserve_inner .el_footOnlineReserve_btn_inner {
  border-radius: max(4px, 0.2777777778vw);
  background-color: #FFF4E7;
  position: relative;
  padding-top: max(40px, 2.7777777778vw);
  padding-bottom: max(40px, 2.7777777778vw);
  padding-left: max(30px, 2.0833333333vw);
  padding-right: max(30px, 2.0833333333vw);
  box-sizing: border-box;
}
.el_footReserve_inner .el_footOnlineReserve_btn_inner .el_footOnlineReserve_btn_ttl {
  font-size: max(20px, 1.3888888889vw);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: max(0.4px, 0.0277777778vw);
  margin-bottom: max(45px, 3.125vw);
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (width <= 767px) {
  .el_footReserve_inner .el_footOnlineReserve_btn_inner .el_footOnlineReserve_btn_ttl {
    font-size: max(18px, 1.25vw);
  }
}
.el_footReserve_inner .el_footOnlineReserve_btn_inner .el_footOnlineReserve_btn_ttl::after {
  content: "";
  width: 100%;
  aspect-ratio: 268/15;
  background: url(../img/ico/online_underline.svg) no-repeat;
  background-size: cover;
  position: relative;
  display: block;
  bottom: 0;
  margin-bottom: max(-18px, -1.25vw);
  top: max(10px, 0.6944444444vw);
}
@media screen and (width <= 767px) {
  .el_footReserve_inner .el_footOnlineReserve_btn_inner .el_footOnlineReserve_btn_ttl::after {
    margin-bottom: max(-18px, -1.25vw);
    bottom: max(-18px, -1.25vw);
  }
}
.el_footReserve_inner .el_text .el_footReserve_text {
  font-size: max(18px, 1.25vw);
  line-height: 1.8;
  font-weight: 400;
  text-align: center;
  letter-spacing: max(0.36px, 0.025vw);
  margin-bottom: max(60px, 4.1666666667vw);
}
@media (max-width: 430px) {
  .el_footReserve_inner .el_text .el_footReserve_text {
    text-align: left;
  }
}
.el_footReserve_inner .el_reserveList {
  text-align: center;
  margin-bottom: max(80px, 5.5555555556vw);
  justify-content: center;
}
.el_footReserve_inner .el_btnList_simple {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: max(14px, 0.9722222222vw);
}
@media screen and (width <= 1024px) {
  .el_footReserve_inner .el_btnList_simple {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (width <= 767px) {
  .el_footReserve_inner .el_btnList_simple {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 380px) {
  .el_footReserve_inner .el_btnList_simple {
    grid-template-columns: 1fr;
  }
}
.el_footReserve_inner .el_btnList_simple li a {
  background: var(--orange-txt, #FFAC54);
  border-radius: max(4px, 0.2777777778vw);
  padding: max(24px, 1.6666666667vw) max(14px, 0.9722222222vw);
  transition: 0.3s;
  border: transparent solid 1px;
}
@media (hover: hover) {
  .el_footReserve_inner .el_btnList_simple li a:hover {
    background: #fff;
    transition: 0.3s;
    border: var(--orange-txt, #FFAC54) solid 1px;
  }
  .el_footReserve_inner .el_btnList_simple li a:hover span {
    color: var(--orange-txt, #FFAC54);
  }
  .el_footReserve_inner .el_btnList_simple li a:hover .el_btnArrow_ico {
    background: var(--orange-txt, #FFAC54);
  }
  .el_footReserve_inner .el_btnList_simple li a:hover .el_btnArrow_ico svg path {
    fill: var(--orange-txt, #fff);
  }
}
.el_footReserve_inner .el_btnList_simple li a .el_btnArrow_ico {
  transition: 0.3s;
  background: #fff;
}
.el_footReserve_inner .el_btnList_simple li span {
  color: #fff;
  font-size: max(14px, 0.9722222222vw);
  transition: 0.3s;
}

.el_reserveList_line {
  background: var(--green, #06C755);
  transition: 0.3s;
}
@media (hover: hover) {
  .el_reserveList_line:hover {
    background: #fff;
    transition: 0.3s;
  }
}
@media (hover: hover) {
  .el_reserveList_line:hover {
    transition: 0.3s;
    border: 1px solid #06C755;
  }
  .el_reserveList_line:hover span {
    color: #06C755;
  }
  .el_reserveList_line:hover svg path {
    fill: #06C755;
  }
}

@media screen and (width <= 1024px) {
  .ly_footer .el_footReserve .el_reserveList_footer {
    display: block;
  }
}
.ly_footer .el_footReserve .el_reserveList_footer li {
  box-shadow: max(3px, 0.2083333333vw) max(6px, 0.4166666667vw) 0px rgba(0, 0, 0, 0.1);
}
@media screen and (width <= 1024px) {
  .ly_footer .el_footReserve .el_reserveList_footer li {
    width: max(500px, 34.7222222222vw);
    margin: 0 auto;
  }
  .ly_footer .el_footReserve .el_reserveList_footer li:first-child {
    margin-bottom: max(24px, 1.6666666667vw);
  }
}
@media screen and (width <= 767px) {
  .ly_footer .el_footReserve .el_reserveList_footer li {
    width: 100%;
  }
  .ly_footer .el_footReserve .el_reserveList_footer li:first-child {
    margin-bottom: max(24px, 1.6666666667vw);
  }
}
.ly_footer .el_footReserve .el_reserveList_footer li a {
  width: max(400px, 27.7777777778vw);
  padding-top: max(24px, 1.6666666667vw);
  padding-bottom: max(24px, 1.6666666667vw);
}
@media screen and (width <= 1024px) {
  .ly_footer .el_footReserve .el_reserveList_footer li a {
    width: max(500px, 34.7222222222vw);
    padding-top: max(18px, 1.25vw);
    padding-bottom: max(18px, 1.25vw);
  }
}
@media screen and (width <= 767px) {
  .ly_footer .el_footReserve .el_reserveList_footer li a {
    width: 100%;
  }
}
.ly_footer .el_footReserve .el_reserveList_footer li a span {
  font-size: max(24px, 1.6666666667vw);
}
@media screen and (width <= 767px) {
  .ly_footer .el_footReserve .el_reserveList_footer li a span {
    font-size: max(20px, 1.3888888889vw);
  }
}

.swiper_reserve .swiper-wrapper {
  margin-bottom: max(50px, 3.4722222222vw);
}
@media screen and (width <= 767px) {
  .swiper_reserve .swiper-wrapper {
    margin-bottom: max(32px, 2.2222222222vw);
  }
}

.loop_text {
  font-size: 8vw;
  overflow: hidden;
  padding-left: 20px;
  color: #ffa07a;
  background: linear-gradient(160deg, #FFD8AD 13.61%, #FFA749 75.61%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Public Sans";
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  will-change: transform;
}
@media screen and (width <= 767px) {
  .loop_text {
    font-size: 15vw;
  }
}

.swiper_reserve .swiper-wrapper {
  transition-timing-function: linear !important;
  will-change: transform;
}
.swiper_reserve .swiper-slide {
  transition: none;
}

/* menu
============================== */
.el_footMenu {
  padding-top: max(40px, 2.7777777778vw);
  padding-bottom: max(40px, 2.7777777778vw);
  box-sizing: border-box;
}
.el_footMenu .el_footMenu_inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: max(40px, 2.7777777778vw);
}
@media screen and (width <= 1024px) {
  .el_footMenu .el_footMenu_inner {
    grid-template-columns: 1fr 1fr;
    flex-wrap: wrap;
    gap: 3.90625vw 1.953125vw;
  }
}
@media screen and (width <= 767px) {
  .el_footMenu .el_footMenu_inner {
    grid-template-columns: 1fr;
    padding: 0 5.3333333333vw;
    gap: 5.3333333333vw;
  }
}
.el_footMenu_wrap {
  width: 100%;
}
@media screen and (width <= 1024px) {
  .el_footMenu_wrap {
    width: 100%;
    max-width: none;
  }
}
@media screen and (width <= 767px) {
  .el_footMenu_wrap {
    width: 100%;
  }
}
.el_footMenu_bigttl {
  font-size: max(18px, 1.25vw);
  font-weight: 700;
  line-height: 1;
  line-height: 1.5;
  color: #FFAC54;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: max(20px, 1.3888888889vw);
}
.el_footMenu_bigttl::after {
  margin-left: max(16px, 1.1111111111vw);
  flex-grow: 1;
  position: relative;
  content: "";
  width: max(16px, 1.1111111111vw);
  height: max(1px, 0.0694444444vw);
  background: #FFAC54;
}
.el_footMenu_ttl {
  font-size: max(16px, 1.1111111111vw);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  pointer-events: none;
}
.el_footMenu_list {
  margin-top: 1.1111111111vw;
}
@media screen and (width <= 1024px) {
  .el_footMenu_list {
    margin-top: 1.5625vw;
  }
}
@media screen and (width <= 767px) {
  .el_footMenu_list {
    display: none;
    margin-top: 4.2666666667vw;
  }
}
.el_footMenu_list a {
  display: inline-block;
  font-size: 1.1111111111vw;
  text-decoration-line: underline;
}
@media screen and (width <= 1024px) {
  .el_footMenu_list a {
    font-size: clamp(14px, vw(16, tb), 16px);
  }
}
@media screen and (width <= 767px) {
  .el_footMenu_list a {
    font-size: clamp(14px, vw(16, sp), 16px);
  }
}
@media (hover: hover) {
  .el_footMenu_list a {
    transition: 0.5s;
  }
  .el_footMenu_list a:hover {
    opacity: 0.5;
  }
}
@media screen and (width <= 767px) {
  .el_footMenu_list a {
    text-decoration: none;
    border-bottom: 1px solid var(--border-thin);
    padding: 3.7333333333vw 7.4666666667vw 3.7333333333vw 4.8vw;
    display: block;
    position: relative;
  }
  .el_footMenu_list a:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 1.3333333333vw solid transparent;
    border-bottom: 1.3333333333vw solid transparent;
    border-left: 2.1333333333vw solid var(--color-accent);
    border-right: 0;
    position: absolute;
    top: calc(50% - 1.3333333333vw);
    right: 2.1333333333vw;
  }
}

/* footLinks
============================== */
.el_footLinks {
  padding: max(40px, 2.7777777778vw) 0;
  background: #222;
}
@media screen and (width <= 1024px) {
  .el_footLinks {
    padding: max(40px, 3.90625vw) 0;
  }
}
@media screen and (width <= 767px) {
  .el_footLinks {
    padding: max(40px, 2.7777777778vw) 0 calc(21.3333333333vw + env(safe-area-inset-bottom));
  }
}
.el_footLinks .ly_innerfooter {
  display: flex;
  align-items: center;
  gap: max(80px, 5.5555555556vw);
}
@media screen and (width <= 1024px) {
  .el_footLinks .ly_innerfooter {
    gap: max(40px, 3.90625vw);
  }
}
@media screen and (width <= 767px) {
  .el_footLinks .ly_innerfooter {
    display: block;
    padding: 0 max(20px, 1.3888888889vw);
  }
}
.el_footLinks_wrap {
  width: 100%;
}
.el_footLinks_list {
  display: flex;
  flex-wrap: wrap;
  gap: max(20px, 1.3888888889vw);
}
@media screen and (width <= 1024px) {
  .el_footLinks_list {
    gap: max(40px, 3.90625vw) max(20px, 1.953125vw);
  }
}
@media screen and (width <= 767px) {
  .el_footLinks_list {
    gap: max(20px, 1.3888888889vw) 0;
  }
}
.el_footLinks_list li {
  position: relative;
}
@media screen and (width <= 767px) {
  .el_footLinks_list li {
    width: 50%;
  }
}
.el_footLinks_list li:last-child a {
  position: relative;
}
.el_footLinks_list li:last-child a img {
  position: absolute;
  right: -35%;
  top: 23%;
  width: max(12px, 0.8333333333vw);
  height: max(12px, 0.8333333333vw);
}
.el_footLinks_list a {
  font-size: max(14px, 0.9722222222vw);
  line-height: 1.5;
  color: #fff;
  letter-spacing: max(0.28px, 0.0194444444vw);
}
@media (hover: hover) {
  .el_footLinks_list a {
    transition: 0.5s;
  }
  .el_footLinks_list a:hover {
    opacity: 0.5;
  }
}
.el_footLinks_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #555;
  padding-top: max(30px, 2.0833333333vw);
  margin-top: max(30px, 2.0833333333vw);
}
@media screen and (width <= 767px) {
  .el_footLinks_bottom {
    display: block;
    margin-top: max(20px, 1.3888888889vw);
    padding-top: max(20px, 1.3888888889vw);
    text-align: center;
  }
}
.el_footLinks_bottom .el_footLinks_list {
  gap: max(40px, 2.7777777778vw);
}
@media screen and (width <= 1024px) {
  .el_footLinks_bottom .el_footLinks_list {
    gap: max(40px, 3.90625vw);
  }
}
@media screen and (width <= 767px) {
  .el_footLinks_bottom .el_footLinks_list {
    gap: max(20px, 1.3888888889vw);
    justify-self: center;
  }
}
.el_footLinks_bottom .el_footLinks_list li {
  width: -moz-fit-content;
  width: fit-content;
}
.el_footLinks_bottom .el_footLinks_list li:before {
  display: none;
}
.el_footLinks_bottom .el_footLinks_list a {
  color: var(--color-gray);
  font-size: max(12px, 0.8333333333vw);
}
@media screen and (width <= 1024px) {
  .el_footLinks_bottom .el_footLinks_list a {
    font-size: max(12px, 1.171875vw);
  }
}
@media screen and (width <= 767px) {
  .el_footLinks_bottom .el_footLinks_list a {
    font-size: max(12px, 0.8333333333vw);
  }
}
.el_footLinks_copy {
  color: var(--color-gray);
  line-height: 1;
  font-size: max(12px, 0.8333333333vw);
}
@media screen and (width <= 1024px) {
  .el_footLinks_copy {
    font-size: max(12px, 1.171875vw);
  }
}
@media screen and (width <= 767px) {
  .el_footLinks_copy {
    margin-top: max(20px, 1.3888888889vw);
    font-size: max(12px, 0.8333333333vw);
  }
}

/* sp flow btn
============================== */
.el_flowArea {
  position: fixed;
  bottom: env(safe-area-inset-bottom);
  left: 0;
  width: 100%;
  z-index: 10000;
}
.el_flowArea .el_reserveList {
  gap: 0;
}
.el_flowArea .el_reserveList li {
  border-radius: 0;
  width: 50vw;
}
.el_flowArea .el_reserveList li a {
  border-radius: 0;
  padding-top: max(16px, 1.1111111111vw);
  padding-bottom: max(16px, 1.1111111111vw);
}

/* カテゴリーアコーディオン↓
============================== */
.bl_accordion {
  margin: 0 auto;
  padding-top: max(16px, 1.1111111111vw);
  background-color: var(--white-bg);
}
.bl_accordion details {
  overflow: hidden;
}
.bl_accordion summary {
  padding: max(6px, 0.4166666667vw) max(16px, 1.1111111111vw);
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white-bg);
  font-size: max(14px, 0.9722222222vw);
  background-color: #fff;
  margin-bottom: max(12px, 0.8333333333vw);
}
@media (hover: hover) {
  .bl_accordion summary {
    transition: 0.5s;
  }
  .bl_accordion summary:hover {
    opacity: 0.5;
  }
}
.bl_accordion summary::-webkit-details-marker {
  display: none;
}
.bl_accordion .js-icon {
  width: max(11px, 0.7638888889vw);
  height: max(11px, 0.7638888889vw);
  position: relative;
}
.bl_accordion .js-icon::before,
.bl_accordion .js-icon::after {
  content: "";
  position: absolute;
  transition: transform 0.3s ease;
}
.bl_accordion .js-icon::before {
  width: max(1px, 0.0694444444vw);
  height: max(11px, 0.7638888889vw);
  background-color: #000;
  top: 0;
  left: max(5px, 0.3472222222vw);
  transform-origin: center;
}
.bl_accordion .js-icon::after {
  width: max(11px, 0.7638888889vw);
  height: max(1px, 0.0694444444vw);
  background-color: #000;
  top: max(5px, 0.3472222222vw);
  left: 0;
}
.bl_accordion details[open] .js-icon::before {
  transform: scaleY(0);
}
.bl_accordion .content {
  padding-bottom: max(16px, 1.1111111111vw);
  gap: max(30px, 2.0833333333vw);
  font-size: max(16px, 1.1111111111vw);
}
@media (max-width: 400px) {
  .bl_accordion .content {
    gap: max(14px, 0.9722222222vw);
  }
}
.bl_accordion .content li {
  margin-bottom: max(6px, 0.4166666667vw);
}
@media (hover: hover) {
  .bl_accordion .content li a {
    transition: 0.5s;
  }
  .bl_accordion .content li a:hover {
    opacity: 0.5;
  }
}
.bl_accordion .el_menuList_cat_text {
  display: contents;
}

.ly_footer .bl_clinicList {
  padding-top: max(20px, 1.3888888889vw);
}

.bl_clinicList .bl_clinicList_info {
  display: flex;
  justify-content: center;
  gap: max(20px, 1.3888888889vw);
  margin-bottom: max(60px, 4.1666666667vw);
}
.bl_clinicList .bl_clinicList_info .el_clinicList_info_ttl {
  background-color: #333;
  color: #fff;
  padding: max(2px, 0.1388888889vw) max(8px, 0.5555555556vw);
  color: var(--white, #FFF);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: max(16px, 1.1111111111vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.32px, 0.0222222222vw);
  height: -moz-fit-content;
  height: fit-content;
}
.bl_clinicList .bl_clinicList_info .bl_clinicList_info_check {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 max(10px, 0.6944444444vw);
}
@media screen and (width <= 767px) {
  .bl_clinicList .bl_clinicList_info .bl_clinicList_info_check {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.bl_clinicList .bl_clinicList_info .bl_clinicList_info_check .el_weekday,
.bl_clinicList .bl_clinicList_info .bl_clinicList_info_check .el_sunday_holiday {
  color: var(--black, #333);
  font-size: max(16px, 1.1111111111vw);
}
.bl_clinicList .bl_clinicList_info .bl_clinicList_info_check .el_okayama_only {
  color: var(--black, #333);
  font-size: max(14px, 0.9722222222vw);
}

.el_footMenu_clinic {
  padding-bottom: max(80px, 5.5555555556vw);
}
.el_footMenu_clinic .el_List_list {
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (width <= 1024px) {
  .el_footMenu_clinic .el_List_list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (width <= 767px) {
  .el_footMenu_clinic .el_List_list {
    grid-template-columns: 1fr;
  }
}
.el_footMenu_clinic .post-wrapper a {
  border-bottom: 1px solid #F1D8BD !important;
}

.form_footer {
  padding: max(20px, 1.3888888889vw) 0;
}
.form_footer p {
  color: var(--color-gray);
  font-family: "Noto Sans JP";
  font-size: max(12px, 0.8333333333vw);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: max(0.24px, 0.0166666667vw);
  text-align: center;
}

.pg_form_thx .form_footer {
  position: fixed; /*←絶対位置*/
  bottom: 0; /*下に固定*/
  width: 100%;
}

/* ===================================
ttl
=================================== */
.header_area {
  height: max(80px, 5.5555555556vw);
}
@media (max-width: 540px) {
  .header_area {
    height: 14vw;
  }
}
@media (max-width: 500px) {
  .header_area {
    height: max(65px, 4.5138888889vw);
  }
}

/* el_pageTtl */
.el_pageTtl {
  position: relative;
  padding-top: max(178px, 12.3611111111vw);
}
@media screen and (width <= 1024px) {
  .el_pageTtl {
    padding-top: max(200px, 19.53125vw);
  }
}
@media screen and (width <= 767px) {
  .el_pageTtl {
    padding-top: max(162px, 11.25vw);
  }
}
@media (max-width: 500px) {
  .el_pageTtl {
    padding-top: 150px;
  }
}
.el_pageTtl_en {
  color: var(--orange-txt, #FFAC54);
  font-family: "Public Sans";
  font-size: max(28px, 1.9444444444vw);
  font-weight: 700;
  line-height: 1;
  margin-bottom: max(12px, 0.8333333333vw);
}
@media screen and (width <= 1024px) {
  .el_pageTtl_en {
    font-size: max(20px, 1.953125vw);
  }
}
@media screen and (width <= 767px) {
  .el_pageTtl_en {
    font-size: max(20px, 1.3888888889vw);
  }
}
.el_pageTtl_ja {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(40px, 2.7777777778vw);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (width <= 1024px) {
  .el_pageTtl_ja {
    font-size: max(40px, 3.90625vw);
  }
}
@media screen and (width <= 767px) {
  .el_pageTtl_ja {
    font-size: max(30px, 2.0833333333vw);
  }
}

/* ly_pageTtl02 */
.ly_pageTtl02 {
  padding-top: max(200px, 13.8888888889vw);
  padding-bottom: max(40px, 2.7777777778vw);
  border-bottom: 1px solid var(--border-thin);
}
@media screen and (width <= 1024px) {
  .ly_pageTtl02 {
    padding-top: calc(200 / tbq * 100vw);
    padding-bottom: 3.90625vw;
  }
}
@media screen and (width <= 767px) {
  .ly_pageTtl02 {
    padding-top: max(160px, 11.1111111111vw);
    padding-bottom: max(40px, 2.7777777778vw);
  }
}
.ly_pageTtl02_inner {
  display: block;
  max-width: max(1400px, 97.2222222222vw);
  margin: 0 auto;
  padding: 0 max(20px, 1.3888888889vw);
  box-sizing: content-box;
}
@media screen and (width <= 1024px) {
  .ly_pageTtl02_inner {
    max-width: 100%;
  }
}
@media screen and (width <= 767px) {
  .ly_pageTtl02_inner {
    padding: 0 max(16px, 1.1111111111vw);
  }
}

.el_pageTtl02_ja {
  display: block;
  font-size: max(40px, 2.7777777778vw);
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (width <= 1024px) {
  .el_pageTtl02_ja {
    font-size: max(40px, 3.90625vw);
  }
}
@media screen and (width <= 767px) {
  .el_pageTtl02_ja {
    font-size: max(40px, 2.7777777778vw);
  }
}

/* el_pageTtlPost */
.el_pageTtlPost_inner {
  background: var(--orange-bg02, #FFF4E7);
  display: block;
  margin: 0 auto;
  box-sizing: content-box;
}

/* el_ttl_wrap */
.el_ttl_wrap {
  text-align: center;
  /* el_secTtl */
}
.el_ttl_wrap .el_secTtl_en {
  font-size: max(20px, 1.3888888889vw);
  font-weight: 700;
  line-height: 1.8;
  font-family: "Public Sans";
  background: linear-gradient(270deg, #FFCE9A 13.61%, #FFA94E 75.61%);
  background: -webkit-linear-gradient(270deg, #FFCE9A 13.61%, #FFA94E 75.61%);
  display: inline-block;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (width <= 767px) {
  .el_ttl_wrap .el_secTtl_en {
    font-family: "Public Sans";
    font-size: max(18px, 1.25vw);
    line-height: 1;
    letter-spacing: max(0.36px, 0.025vw);
  }
}
.el_ttl_wrap .el_secTtl_ja {
  color: #333;
  font-size: max(32px, 2.2222222222vw);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  letter-spacing: max(0.64px, 0.0444444444vw);
  padding-bottom: max(60px, 4.1666666667vw);
}
@media screen and (width <= 767px) {
  .el_ttl_wrap .el_secTtl_ja {
    color: var(--black, #333);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: max(26px, 1.8055555556vw);
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: max(0.52px, 0.0361111111vw);
    padding-bottom: max(40px, 2.7777777778vw);
  }
}
.el_ttl_wrap .el_secTtl_ja .el_secTtl_ja_big {
  font-size: max(48px, 3.3333333333vw);
}

.ly_bgOrange .el_secTtl_en {
  background: linear-gradient(180deg, #FFE9CC 0.08%, #FFF 99.91%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* el_breadcrumbs
============================== */
.bl_commonBreadcrumbContainer {
  margin-top: max(30px, 2.0833333333vw);
  padding-bottom: max(70px, 4.8611111111vw);
}
@media screen and (width <= 767px) {
  .bl_commonBreadcrumbContainer {
    padding-bottom: max(60px, 4.1666666667vw);
  }
}
.bl_commonBreadcrumbContainer .bl_commonBreadcrumbList {
  display: flex;
  align-items: center;
  gap: max(8px, 0.5555555556vw);
}
@media screen and (width <= 767px) {
  .bl_commonBreadcrumbContainer .bl_commonBreadcrumbList {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    overflow-x: auto;
  }
}
.bl_commonBreadcrumbContainer .bl_commonBreadcrumbList::-webkit-scrollbar {
  display: none; /* スクロールバー非表示（任意） */
}
.bl_commonBreadcrumbContainer .bl_commonBreadcrumbItem {
  display: flex;
}
@media screen and (width <= 767px) {
  .bl_commonBreadcrumbContainer .bl_commonBreadcrumbItem {
    flex: 0 0 auto;
  }
}
.bl_commonBreadcrumbContainer .bl_commonBreadcrumbItem a {
  transition: 0.5s;
  font-size: max(12px, 0.8333333333vw);
  text-decoration: underline;
  text-underline-offset: 1px;
}
@media screen and (width <= 767px) {
  .bl_commonBreadcrumbContainer .bl_commonBreadcrumbItem a {
    font-size: max(12px, 0.8333333333vw);
  }
}
@media (hover: hover) {
  .bl_commonBreadcrumbContainer .bl_commonBreadcrumbItem a:hover {
    opacity: 0.7;
    transition: 0.5s;
  }
}
.bl_commonBreadcrumbContainer .bl_commonBreadcrumbItem span {
  font-size: max(12px, 0.8333333333vw);
}
@media screen and (width <= 767px) {
  .bl_commonBreadcrumbContainer .bl_commonBreadcrumbItem span {
    font-size: max(12px, 0.8333333333vw);
  }
}

.pg_form .bl_commonBreadcrumbContainer, .single_pg_doctor .bl_commonBreadcrumbContainer, .pg_404 .bl_commonBreadcrumbContainer {
  margin-left: max(40px, 2.7777777778vw);
}
@media screen and (width <= 767px) {
  .pg_form .bl_commonBreadcrumbContainer, .single_pg_doctor .bl_commonBreadcrumbContainer, .pg_404 .bl_commonBreadcrumbContainer {
    margin-left: max(20px, 1.3888888889vw);
  }
}

/* ===================================
text
=================================== */
.el_text {
  font-size: 1.1111111111vw;
  font-weight: 400;
  line-height: 1.6;
}

.el_text_ready {
  text-align: center;
  width: 100%;
  display: block;
  margin-top: 40px;
}

.el_subText li {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
}
.el_subText li + li {
  margin-top: 2.7777777778vw;
}

.el_link_blank {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin-top: 0.5555555556vw;
}
.el_link_blank:after {
  content: "";
  width: 0.9027777778vw;
  height: 0.9027777778vw;
  background: url(../img/ico/ico_blank.svg);
  background-size: cover;
  position: absolute;
  top: 0.4166666667vw;
  right: -1.3888888889vw;
}
@media screen and (width <= 1024px) {
  .el_link_blank:after {
    width: 1.26953125vw;
    height: 1.26953125vw;
    top: 0.5859375vw;
    right: -1.171875vw;
  }
}
@media screen and (width <= 767px) {
  .el_link_blank:after {
    width: 3.4666666667vw;
    height: 3.4666666667vw;
    top: 1.6vw;
    right: -3.2vw;
  }
}
@media (hover: hover) {
  .el_link_blank {
    transition: 0.5s;
  }
  .el_link_blank:hover {
    opacity: 0.5;
  }
}

/* ===================================
btn
=================================== */
.el_btnArrow {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.el_btnArrow_ico {
  display: block;
  width: max(32px, 2.2222222222vw);
  height: max(20px, 1.3888888889vw);
  border-radius: 40px;
  background: #000;
  position: relative;
  overflow: hidden;
}
.el_btnArrow_ico svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.el_btnArrow_text {
  display: block;
  margin-left: max(12px, 0.8333333333vw);
  color: #222;
  font-size: max(16px, 1.1111111111vw);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
@media screen and (width <= 767px) {
  .el_btnArrow_text {
    font-size: max(14px, 0.9722222222vw);
  }
}
@media (hover: hover) {
  .el_btnArrow .el_btnArrow_ico::before {
    animation-duration: 0.5s;
  }
  .el_btnArrow .el_btnArrow_ico::after {
    animation-duration: 0.5s;
  }
  .el_btnArrow:hover .el_btnArrow_ico::before {
    animation-name: el_btnArrow01;
  }
  .el_btnArrow:hover .el_btnArrow_ico::after {
    animation-name: el_btnArrow02;
  }
}

@keyframes el_btnArrow01 {
  0% {
    transform: translateX(-300%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes el_btnArrow02 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(300%);
  }
}
.el_btnList li + li {
  margin-top: 1.2rem;
}
.el_btnList a {
  display: block;
  padding: 1rem 5.2rem;
  color: #333;
  position: relative;
  border-radius: 100px;
  background: #333;
  text-align: center;
  min-width: 26rem;
  height: 5.5555555556vw;
}
.el_btnList a .el_text {
  font-size: max(16px, 1.1111111111vw);
  font-weight: 700;
  line-height: 1;
  color: var(--color-base);
}
@media screen and (width <= 767px) {
  .el_btnList a .el_text {
    font-size: max(14px, 0.9722222222vw);
  }
}
.el_btnList a .el_ico {
  content: "";
  width: 2.7777777778vw;
  height: 2.7777777778vw;
  border-radius: 3rem 0px 0px 3rem;
  background: var(--color-base);
  position: absolute;
  left: 2.7777777778vw;
  top: 2.7777777778vw;
  overflow: hidden;
}
.el_btnList a .el_ico::before {
  content: "";
  background: url(../img/ico/ico_arrow-burger.svg) no-repeat;
  background-size: cover;
  width: 1.1111111111vw;
  height: 1.7rem;
  position: absolute;
  top: 1rem;
  left: 0.9722222222vw;
}
.el_btnList a .el_ico::after {
  content: "";
  background: url(../img/ico/ico_arrow-burger.svg) no-repeat;
  background-size: cover;
  width: 1.1111111111vw;
  height: 1.7rem;
  position: absolute;
  top: 1rem;
  left: 0.9722222222vw;
  transform: translateX(-200%);
}
@media (hover: hover) {
  .el_btnList a .el_ico::before {
    animation-duration: 0.5s;
  }
  .el_btnList a .el_ico::after {
    animation-duration: 0.5s;
  }
  .el_btnList a:hover .el_ico::before {
    animation-name: el_btnList01;
  }
  .el_btnList a:hover .el_ico::after {
    animation-name: el_btnList02;
  }
}

@keyframes el_btnList01 {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes el_btnList02 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(200%);
  }
}
.el_reserveList_web,
.el_reserveList_line,
.el_reserveList_shop,
.el_reserveList_X {
  border-radius: 100px;
  border: 1px solid transparent;
  width: auto;
}
.el_reserveList_web a,
.el_reserveList_line a,
.el_reserveList_shop a,
.el_reserveList_X a {
  border-radius: 100px;
  width: 100%;
  border: 1px solid transparent;
  padding-top: max(12px, 0.8333333333vw);
  padding-bottom: max(12px, 0.8333333333vw);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: max(10px, 0.6944444444vw);
  transition: 0.3s;
  border-radius: 100px;
}
@media screen and (width <= 767px) {
  .el_reserveList_web a,
  .el_reserveList_line a,
  .el_reserveList_shop a,
  .el_reserveList_X a {
    padding-top: max(12px, 0.8333333333vw);
    padding-bottom: max(12px, 0.8333333333vw);
  }
}
.el_reserveList_web a span,
.el_reserveList_line a span,
.el_reserveList_shop a span,
.el_reserveList_X a span {
  color: #fff;
}

.el_reserveList_web {
  background: var(--blue, #4CB1FF);
  transition: 0.3s;
}
.el_reserveList_web svg path {
  fill: #4CB1FF;
}
@media (hover: hover) {
  .el_reserveList_web:hover {
    background: #fff;
    transition: 0.3s;
  }
}
@media (hover: hover) {
  .el_reserveList_web:hover {
    transition: 0.3s;
    border: 1px solid #4CB1FF;
  }
  .el_reserveList_web:hover span {
    color: #4CB1FF;
  }
}

.el_reserveList_line {
  background: var(--green, #06C755);
  transition: 0.3s;
}
@media (hover: hover) {
  .el_reserveList_line:hover {
    background: #fff;
    transition: 0.3s;
  }
}
@media (hover: hover) {
  .el_reserveList_line:hover {
    transition: 0.3s;
    border: 1px solid #06C755;
  }
  .el_reserveList_line:hover span {
    color: #06C755;
  }
  .el_reserveList_line:hover svg path {
    fill: #06C755;
  }
}

.el_reserveList_X {
  background: #333;
  transition: 0.3s;
}
@media (hover: hover) {
  .el_reserveList_X:hover {
    background: #fff;
    transition: 0.3s;
  }
}
@media (hover: hover) {
  .el_reserveList_X:hover {
    transition: 0.3s;
    border: 1px solid #333;
  }
  .el_reserveList_X:hover span {
    color: #333;
  }
  .el_reserveList_X:hover svg path {
    fill: #333;
  }
}

.el_reserveList_shop {
  background: #FFAC54;
  transition: 0.3s;
}
@media (hover: hover) {
  .el_reserveList_shop:hover {
    background: #fff;
    transition: 0.3s;
  }
}
@media (hover: hover) {
  .el_reserveList_shop:hover {
    transition: 0.3s;
    border: 1px solid #FFAC54;
  }
  .el_reserveList_shop:hover span {
    color: #FFAC54;
  }
  .el_reserveList_shop:hover svg path {
    fill: #FFAC54;
  }
}

.ly_head_nav .el_reserveList a {
  width: max(200px, 13.8888888889vw);
}

.el_reserveList {
  display: flex;
  align-items: center;
  gap: max(12px, 0.8333333333vw);
}
.el_reserveList a {
  position: relative;
}
.el_reserveList a .el_text {
  font-size: max(16px, 1.1111111111vw);
  font-weight: 700;
  line-height: 1;
}
@media screen and (width <= 767px) {
  .el_reserveList a .el_text {
    font-size: max(14px, 0.9722222222vw);
  }
}
.el_reserveList a .el_ico {
  width: 2rem;
  height: 2rem;
  border-radius: 3rem 0px 0px 3rem;
  background: #333;
  position: absolute;
  left: 0;
  top: 0.5rem;
  overflow: hidden;
}
.el_reserveList a .el_ico::before {
  content: "";
  background: url(../img/ico/ico_arrow-head.svg) no-repeat;
  background-size: cover;
  width: 5.5555555556vw;
  height: 5.5555555556vw;
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
}
.el_reserveList a .el_ico::after {
  content: "";
  background: url(../img/ico/ico_arrow-head.svg) no-repeat;
  background-size: cover;
  width: 5.5555555556vw;
  height: 5.5555555556vw;
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  transform: translateX(-200%);
}
@media (hover: hover) {
  .el_reserveList a .el_ico::before {
    animation-duration: 0.5s;
  }
  .el_reserveList a .el_ico::after {
    animation-duration: 0.5s;
  }
  .el_reserveList a:hover .el_ico::before {
    animation-name: el_btnList01;
  }
  .el_reserveList a:hover .el_ico::after {
    animation-name: el_btnList02;
  }
}

.swiper-button-next,
.swiper-button-prev {
  width: max(66px, 4.5833333333vw);
  height: max(34px, 2.3611111111vw);
  border-radius: 100px;
  background-color: #333;
}
.swiper-button-next svg,
.swiper-button-prev svg {
  width: 32.5%;
  height: auto;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.swiper-pagination .swiper-pagination-bullet {
  background-color: #DDD;
  opacity: 1;
  margin: 0 max(10px, 0.6944444444vw) !important;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #333 !important;
  opacity: 1;
}

.custom-button {
  width: max(228px, 15.8333333333vw);
  height: max(64px, 4.4444444444vw);
  background-color: transparent;
  border: 2px solid #333;
  border-radius: 9999px;
  position: relative;
  cursor: pointer;
  background-clip: padding-box;
  transition: transform 0.2s;
  left: 50%;
  transform: translateX(-50%);
}
.custom-button .custom-button_inner {
  width: max(220px, 15.2777777778vw);
  height: max(56px, 3.8888888889vw);
  background-color: #333;
  border-radius: 9999px;
  gap: max(10px, 0.6944444444vw);
  font-family: "Noto Sans JP";
  font-size: max(16px, 1.1111111111vw);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.32px, 0.0222222222vw);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.text-wrap {
  display: flex;
  gap: max(0.64px, 0.0444444444vw);
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.text-wrap:after {
  margin-left: max(14px, 0.9722222222vw);
  content: "";
  display: block;
  background: url(../img/common/arrow_white.svg) no-repeat;
  background-size: cover;
  width: max(16px, 1.1111111111vw);
  height: max(12px, 0.8333333333vw);
}

a:hover .letter {
  text-shadow: 0 0 0 #fff, 0 1.5em 0 #fff;
}

.letter {
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -1.5em 0 #fff, 0 0 0 #fff;
  transition: text-shadow 0.2s;
  transition-delay: calc(var(--index) * 0.05s);
  font-size: max(16px, 1.1111111111vw);
}

.bl_clinicList_item_infoContainer_item {
  display: grid;
  grid-template-columns: max(14px, 0.9722222222vw) 1fr;
  gap: max(6px, 0.4166666667vw);
  font-size: max(14px, 0.9722222222vw);
}
.bl_clinicList_item_infoContainer_item img {
  padding-top: max(6px, 0.4166666667vw);
}
.bl_clinicList_item_infoContainer_item .el_clinicList_item_infoContainer_item_link_txt {
  font-size: max(14px, 0.9722222222vw);
  line-height: 1.6;
  letter-spacing: max(0.28px, 0.0194444444vw);
  text-align: center;
  transition: 0.3s;
  margin-right: max(8px, 0.5555555556vw);
  margin-top: max(6px, 0.4166666667vw);
  position: relative;
}
.bl_clinicList_item_infoContainer_item .el_clinicList_item_infoContainer_item_link_txt::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: max(1px, 0.0694444444vw);
  background: transparent;
  transition: background 0.3s;
}
@media (hover: hover) {
  .bl_clinicList_item_infoContainer_item .el_clinicList_item_infoContainer_item_link_txt:hover::after {
    background: #BBB;
  }
}

.bl_clinicList_item_infoContainer_item_link {
  display: flex;
  color: #BBB;
  width: -moz-fit-content;
  width: fit-content;
}

.el_clinicList_item_infoContainer_item_tell {
  transition: 0.3s;
}
@media (hover: hover) {
  .el_clinicList_item_infoContainer_item_tell:hover {
    opacity: 0.7;
    transition: 0.3s;
  }
}

.bl_clinicList_item_link {
  display: flex;
  text-align: end;
  align-items: center;
  justify-content: flex-end;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 0;
  margin-left: auto;
  gap: max(12px, 0.8333333333vw);
  margin-top: max(20px, 1.3888888889vw);
  transition: 0.3s;
}
.bl_clinicList_item_link .el_clinicList_item_link_txt {
  font-size: max(14px, 0.9722222222vw);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: max(0.28px, 0.0194444444vw);
  transition: 0.3s;
}
@media (hover: hover) {
  .bl_clinicList_item_link:hover {
    opacity: 0.7;
    transition: 0.3s;
  }
}

/* ===================================
sns
=================================== */
.el_snsList {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.el_snsList a {
  display: block;
}
@media (hover: hover) {
  .el_snsList a {
    transition: 0.5s;
  }
  .el_snsList a:hover {
    opacity: 0.5;
  }
}

.el_topicpath {
  max-width: 91.6666666667vw;
  display: flex;
  gap: 0 2.0833333333vw;
  margin: 2.7777777778vw auto 2.7777777778vw;
  padding: 0 1.3888888889vw;
  overflow: auto;
  white-space: nowrap;
}
@media screen and (width <= 1024px) {
  .el_topicpath {
    gap: 0 2.9296875vw;
    margin: 3.90625vw auto 3.90625vw;
    padding: 0 1.953125vw;
    max-width: 100%;
  }
}
@media screen and (width <= 767px) {
  .el_topicpath {
    gap: 0 8vw;
    margin: 10.6666666667vw auto 10.6666666667vw;
    padding: 0 5.3333333333vw;
  }
}
.el_topicpath li, .el_topicpath a {
  color: var(--color-gray);
  font-size: 0.8333333333vw;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media screen and (width <= 1024px) {
  .el_topicpath li, .el_topicpath a {
    font-size: 1.171875vw;
  }
}
@media screen and (width <= 767px) {
  .el_topicpath li, .el_topicpath a {
    font-size: 3.2vw;
  }
}
.el_topicpath a {
  text-decoration: underline;
  font-weight: 500;
}
@media (hover: hover) {
  .el_topicpath a {
    transition: 0.5s;
  }
  .el_topicpath a:hover {
    opacity: 0.5;
  }
}
.el_topicpath li + li {
  position: relative;
}
.el_topicpath li + li:before {
  content: "";
  width: 0.2777777778vw;
  height: 0.2777777778vw;
  background-color: var(--color-main);
  position: absolute;
  top: 0.5555555556vw;
  left: -1.1111111111vw;
  border-radius: 50%;
}
@media screen and (width <= 1024px) {
  .el_topicpath li + li:before {
    width: 0.390625vw;
    height: 0.390625vw;
    top: 0.78125vw;
    left: -1.5625vw;
  }
}
@media screen and (width <= 767px) {
  .el_topicpath li + li:before {
    width: 1.0666666667vw;
    height: 1.0666666667vw;
    top: 2.1333333333vw;
    left: -4.2666666667vw;
  }
}

/* ===================================
tab
=================================== */
.el_tabBtn {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  -moz-column-gap: 2px;
       column-gap: 2px;
  justify-self: end;
  width: 100%;
  height: 100%;
  align-items: end;
}
@media screen and (width <= 767px) {
  .el_tabBtn {
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: unset;
    gap: max(8px, 0.5555555556vw);
    grid-auto-flow: unset;
  }
}
.el_tabBtn_item {
  border-radius: max(4px, 0.2777777778vw) max(4px, 0.2777777778vw) 0 0;
  background: var(--orange-bg02, #FFF4E7);
  position: relative;
  padding: max(10px, 0.6944444444vw) 0;
  text-align: center;
  transition: 0.5s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: max(8px, 0.5555555556vw);
}
@media screen and (width <= 767px) {
  .el_tabBtn_item {
    border-radius: max(4px, 0.2777777778vw);
    padding: max(12px, 0.8333333333vw) max(20px, 1.3888888889vw);
  }
}
@media (max-width: 380px) {
  .el_tabBtn_item {
    padding: max(12px, 0.8333333333vw) max(12px, 0.8333333333vw);
  }
}
.el_tabBtn_item .el_tabBtn_item_icon {
  width: max(24px, 1.6666666667vw);
  height: max(24px, 1.6666666667vw);
  transition: 0.5s;
  opacity: 0.5;
}
@media screen and (width <= 1024px) {
  .el_tabBtn_item .el_tabBtn_item_icon {
    width: max(20px, 1.3888888889vw);
    height: max(20px, 1.3888888889vw);
  }
}
@media screen and (width <= 767px) {
  .el_tabBtn_item:before {
    bottom: 0;
  }
}
.el_tabBtn_item p {
  font-size: max(18px, 1.25vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.44px, 0.0305555556vw);
  color: rgba(255, 172, 84, 0.5);
  transition: 0.5s;
}
@media screen and (width <= 1024px) {
  .el_tabBtn_item p {
    font-size: max(16px, 1.1111111111vw);
  }
}
@media (max-width: 380px) {
  .el_tabBtn_item p {
    font-size: max(14px, 0.9722222222vw);
  }
}
.el_tabBtn_item.is_active {
  padding-top: max(18px, 1.25vw);
  padding-bottom: max(18px, 1.25vw);
  background: #fff;
}
@media screen and (width <= 767px) {
  .el_tabBtn_item.is_active {
    padding-top: max(12px, 0.8333333333vw);
    padding-bottom: max(12px, 0.8333333333vw);
  }
}
.el_tabBtn_item.is_active:before {
  background: #222;
}
.el_tabBtn_item.is_active .el_tabBtn_item_icon {
  width: max(28px, 1.9444444444vw);
  height: max(28px, 1.9444444444vw);
  transition: 0.5s;
  opacity: 1;
}
@media screen and (width <= 767px) {
  .el_tabBtn_item.is_active .el_tabBtn_item_icon {
    width: max(20px, 1.3888888889vw);
    height: max(20px, 1.3888888889vw);
  }
}
.el_tabBtn_item.is_active p {
  font-size: max(22px, 1.5277777778vw);
  color: var(--orange-txt, #FFAC54);
  transition: 0.5s;
}
@media screen and (width <= 1024px) {
  .el_tabBtn_item.is_active p {
    font-size: max(16px, 1.1111111111vw);
  }
}
@media (max-width: 380px) {
  .el_tabBtn_item.is_active p {
    font-size: max(14px, 0.9722222222vw);
  }
}

.js_tab_item {
  background: #fff;
  padding: max(40px, 2.7777777778vw) max(30px, 2.0833333333vw);
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
@media screen and (width <= 767px) {
  .js_tab_item {
    padding: max(24px, 1.6666666667vw) max(20px, 1.3888888889vw);
    margin-top: max(12px, 0.8333333333vw);
  }
}
.js_tab_item .el_menuList_cat_inList_wrap .el_menuList_cat_inList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: max(24px, 1.6666666667vw) max(24px, 1.6666666667vw);
}
@media screen and (width <= 767px) {
  .js_tab_item .el_menuList_cat_inList_wrap .el_menuList_cat_inList {
    grid-template-columns: 1fr;
    gap: max(20px, 1.3888888889vw);
  }
}
.js_tab_item .el_menuList_cat_inList_wrap .el_menuList_cat_inList li {
  border-bottom: 1px solid var(--gray, #BBB);
}
.js_tab_item .el_menuList_cat_inList_wrap .el_menuList_cat_inList li a {
  padding-bottom: max(10px, 0.6944444444vw);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
  font-size: max(16px, 1.1111111111vw);
  height: 100%;
}
@media (hover: hover) {
  .js_tab_item .el_menuList_cat_inList_wrap .el_menuList_cat_inList li a:hover {
    opacity: 0.7;
    transition: 0.5s;
  }
}

.js_tab_container {
  position: relative;
  min-height: max(100px, 6.9444444444vw) !important;
  background: #fff;
}
@media screen and (width <= 767px) {
  .js_tab_container {
    min-height: max(100px, 6.9444444444vw) !important;
  }
}
.js_tab_container .el_menuList_cat_inList p {
  width: 88%;
}

/* ===================================
pager
=================================== */
.el_pager {
  margin-top: max(80px, 5.5555555556vw);
}
@media screen and (width <= 1024px) {
  .el_pager {
    margin-top: max(80px, 7.8125vw);
  }
}
@media screen and (width <= 767px) {
  .el_pager {
    margin-top: max(80px, 5.5555555556vw);
  }
}
@media (hover: hover) {
  .el_pager a {
    transition: 0.5s;
  }
  .el_pager a:hover {
    opacity: 0.5;
  }
}
.el_pager .nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: max(16px, 1.1111111111vw);
}
@media screen and (width <= 1024px) {
  .el_pager .nav-links {
    gap: max(16px, 1.5625vw);
  }
}
@media screen and (width <= 767px) {
  .el_pager .nav-links {
    gap: max(10px, 0.6944444444vw);
  }
}
.el_pager .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max(24px, 1.6666666667vw);
  padding: max(4px, 0.2777777778vw) 0;
  font-size: max(16px, 1.1111111111vw);
  font-weight: 400;
  line-height: 1.8;
  color: #bbb;
}
@media screen and (width <= 1024px) {
  .el_pager .page-numbers {
    width: max(24px, 2.34375vw);
    padding: max(4px, 0.390625vw) 0;
    font-size: max(16px, 1.5625vw);
  }
}
@media screen and (width <= 767px) {
  .el_pager .page-numbers {
    width: max(24px, 1.6666666667vw);
    padding: max(4px, 0.2777777778vw) 0;
    font-size: max(16px, 1.1111111111vw);
  }
}
.el_pager .page-numbers.current {
  color: #333;
}
.el_pager .page-numbers.prev, .el_pager .page-numbers.next {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: max(20px, 1.3888888889vw);
}
@media screen and (width <= 1024px) {
  .el_pager .page-numbers.prev, .el_pager .page-numbers.next {
    gap: max(20px, 1.953125vw);
  }
}
@media screen and (width <= 767px) {
  .el_pager .page-numbers.prev, .el_pager .page-numbers.next {
    gap: max(20px, 1.3888888889vw);
  }
}
.el_pager .page-numbers.prev {
  margin-right: max(40px, 2.7777777778vw);
}
@media screen and (width <= 1024px) {
  .el_pager .page-numbers.prev {
    margin-right: max(40px, 3.90625vw);
  }
}
@media screen and (width <= 767px) {
  .el_pager .page-numbers.prev {
    margin-right: 0;
  }
}
.el_pager .page-numbers.next {
  margin-left: max(40px, 2.7777777778vw);
}
@media screen and (width <= 1024px) {
  .el_pager .page-numbers.next {
    margin-left: max(40px, 3.90625vw);
  }
}
@media screen and (width <= 767px) {
  .el_pager .page-numbers.next {
    margin-left: 0;
  }
}
.el_pager .page-numbers .el_pager_text {
  background-color: #333;
  width: max(40px, 2.7777777778vw);
  height: max(40px, 2.7777777778vw);
  border-radius: 50px;
  position: relative;
}
@media screen and (width <= 767px) {
  .el_pager .page-numbers .el_pager_text {
    width: max(30px, 2.0833333333vw);
    height: max(30px, 2.0833333333vw);
  }
}
.el_pager .page-numbers .el_pager_text:before {
  content: "";
  background-image: url(../img/common/arrow_white.svg);
  background-size: cover;
  width: max(16px, 1.1111111111vw);
  height: max(12px, 0.8333333333vw);
  display: block;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  position: absolute;
}
@media screen and (width <= 1024px) {
  .el_pager .page-numbers .el_pager_text {
    font-size: max(14px, 1.3671875vw);
  }
}
@media screen and (width <= 767px) {
  .el_pager .page-numbers .el_pager_text {
    font-size: max(14px, 0.9722222222vw);
  }
}
.el_pager .page-numbers .el_pager_text_prev:before {
  transform: translate(-50%, -50%) rotate(180deg);
}

/* ===================================
sidebar
=================================== */
.el_caseSide {
  overflow: visible !important;
}

.el_sideSelect {
  position: relative;
  border: 1px solid var(--gray, #BBB);
  margin-bottom: max(40px, 2.7777777778vw);
  margin-top: max(16px, 1.1111111111vw);
  cursor: pointer;
}
@media screen and (width <= 767px) {
  .el_sideSelect {
    margin-bottom: max(20px, 1.3888888889vw);
  }
}
.el_sideSelect:last-child {
  margin-bottom: 0;
}
.el_sideSelect:before {
  content: "";
  background-image: url(../img/ico/side-arrow.svg);
  background-size: cover;
  width: max(12px, 0.8333333333vw);
  height: max(7px, 0.4861111111vw);
  -webkit-clip-path: polygon(50% max(10px, 0.6944444444vw), 0% 0%, max(12px, 0.8333333333vw) 0%);
          clip-path: polygon(50% max(10px, 0.6944444444vw), 0% 0%, max(12px, 0.8333333333vw) 0%);
  position: absolute;
  top: calc(50% - max(5px, 0.3472222222vw));
  right: max(16px, 1.1111111111vw);
}
.el_sideSelect select {
  width: 100%;
  padding: max(16px, 1.1111111111vw);
  border: none;
  color: #333;
  font-size: max(14px, 0.9722222222vw);
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  background: transparent;
}
@media screen and (width <= 1024px) {
  .el_sideSelect select {
    padding: max(16px, 1.5625vw);
    font-size: max(14px, 1.3671875vw);
  }
}
@media screen and (width <= 767px) {
  .el_sideSelect select {
    padding: max(16px, 1.1111111111vw);
    font-size: max(14px, 0.9722222222vw);
  }
}
.el_sideSelect option {
  font-size: max(14px, 0.9722222222vw);
  font-weight: 400;
  line-height: 1;
}
@media screen and (width <= 1024px) {
  .el_sideSelect option {
    font-size: max(14px, 1.3671875vw);
  }
}
@media screen and (width <= 767px) {
  .el_sideSelect option {
    font-size: max(14px, 0.9722222222vw);
  }
}

.el_caseSide_ttl {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(16px, 1.1111111111vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.32px, 0.0222222222vw);
}
@media screen and (width <= 767px) {
  .el_caseSide_ttl {
    font-size: max(16px, 1.1111111111vw);
    letter-spacing: max(0.32px, 0.0222222222vw);
  }
}

.el_Menu_Sidebar {
  margin-top: max(30px, 2.0833333333vw);
}
@media screen and (width <= 767px) {
  .el_Menu_Sidebar {
    margin-top: max(30px, 2.0833333333vw);
  }
}
.el_Menu_Sidebar:first-child {
  margin-top: 0;
}
.el_Menu_Sidebar .el_Menu_Sidebar_ttl {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(16px, 1.1111111111vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.32px, 0.0222222222vw);
  padding-left: max(16px, 1.1111111111vw);
  border-left: 4px solid var(--orange-bg01, #FFC990);
  margin-bottom: max(20px, 1.3888888889vw);
}
@media screen and (width <= 767px) {
  .el_Menu_Sidebar .el_Menu_Sidebar_ttl {
    font-size: max(16px, 1.1111111111vw);
    padding-left: max(12px, 0.8333333333vw);
    letter-spacing: max(0.32px, 0.0222222222vw);
    margin-bottom: max(20px, 1.3888888889vw);
  }
}
.el_Menu_Sidebar .el_menuList_cat_inList li a {
  padding: max(12px, 0.8333333333vw) 0;
  border-bottom: 1px solid var(--orange-line, #F1D8BD);
  transition: all 0.3s;
  display: block;
  font-size: max(16px, 1.1111111111vw);
}
@media screen and (width <= 1024px) {
  .el_Menu_Sidebar .el_menuList_cat_inList li a {
    text-align: center;
  }
}
@media screen and (width <= 767px) {
  .el_Menu_Sidebar .el_menuList_cat_inList li a {
    font-size: max(16px, 1.1111111111vw);
    padding: max(12px, 0.8333333333vw) 0;
  }
}
@media (hover: hover) {
  .el_Menu_Sidebar .el_menuList_cat_inList li a:hover {
    opacity: 0.7;
    transition: all 0.3s;
  }
}

@media screen and (width <= 1024px) {
  .pg_blog .el_menuList_cat_inList li a {
    text-align: left;
  }
}
@media screen and (width <= 767px) {
  .pg_blog .el_menuList_cat_inList li a {
    text-align: center;
  }
}

@media screen and (width <= 1024px) {
  .un_clinic .el_menuList_cat_inList li a {
    text-align: left;
  }
}
@media screen and (width <= 767px) {
  .un_clinic .el_menuList_cat_inList li a {
    text-align: left;
  }
}

.el_Menu_Sidebar_key_list .key_list_inList {
  display: flex;
  flex-wrap: wrap;
  gap: max(12px, 0.8333333333vw) max(10px, 0.6944444444vw);
}
.el_Menu_Sidebar_key_list .key_list_inList span {
  display: inline-block;
  font-size: max(14px, 0.9722222222vw);
  transition: all 0.3s;
}
@media screen and (width <= 767px) {
  .el_Menu_Sidebar_key_list .key_list_inList span {
    font-size: max(14px, 0.9722222222vw);
  }
}
@media (hover: hover) {
  .el_Menu_Sidebar_key_list .key_list_inList span:hover {
    opacity: 0.7;
    transition: all 0.3s;
  }
}

/* ===================================
 accordion
=================================== */
.js_acc_cont {
  display: none;
}

/* ===================================
edit
=================================== */
/* el_edit
============================== */
.el_edit {
  margin-bottom: max(40px, 2.7777777778vw);
}
@media screen and (width <= 1024px) {
  .el_edit {
    margin-bottom: max(40px, 3.90625vw);
  }
}
@media screen and (width <= 767px) {
  .el_edit {
    margin-bottom: max(40px, 2.7777777778vw);
  }
}
.el_edit p {
  margin-top: max(20px, 1.3888888889vw);
}
.el_edit a {
  display: inline-block;
  transition: opacity 0.3s;
  word-break: break-all;
}
@media (hover: hover) {
  .el_edit a:hover {
    transition: 0.5s;
  }
  .el_edit a:hover:hover {
    opacity: 0.5;
  }
}
.el_edit h2 {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(24px, 1.6666666667vw);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.48px, 0.0333333333vw);
  border-radius: max(2px, 0.1388888889vw);
  background: var(--orange-bg02, #FFF4E7);
  padding: max(10px, 0.6944444444vw) max(20px, 1.3888888889vw);
  margin-top: max(40px, 2.7777777778vw);
}
@media screen and (width <= 767px) {
  .el_edit h2 {
    font-size: max(20px, 1.3888888889vw);
  }
}
.el_edit h3 {
  position: relative;
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(20px, 1.3888888889vw);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.4px, 0.0277777778vw);
  padding-bottom: max(20px, 1.3888888889vw);
  margin-top: max(30px, 2.0833333333vw);
  border-bottom: 3px solid #FFAC54;
}
@media screen and (width <= 767px) {
  .el_edit h3 {
    font-size: max(18px, 1.25vw);
  }
}
.el_edit h4 {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(18px, 1.25vw);
  font-style: normal;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: max(0.36px, 0.025vw);
  margin-top: max(30px, 2.0833333333vw);
  padding-left: max(16px, 1.1111111111vw);
  border-left: 4px solid var(--black, #333);
}
@media screen and (width <= 767px) {
  .el_edit h4 {
    font-size: max(16px, 1.1111111111vw);
  }
}
.el_edit ul {
  margin-top: max(30px, 2.0833333333vw);
}
.el_edit ul li {
  font-size: max(16px, 1.1111111111vw);
}
.el_edit ol {
  margin-top: max(10px, 0.6944444444vw);
  counter-reset: number;
  list-style: none;
}
.el_edit ol li {
  position: relative;
  padding-left: max(30px, 2.0833333333vw);
  font-size: max(16px, 1.1111111111vw);
  line-height: 1.8;
}
@media screen and (width <= 1024px) {
  .el_edit ol li {
    padding-left: max(30px, 2.9296875vw);
  }
}
@media screen and (width <= 767px) {
  .el_edit ol li {
    padding-left: max(36px, 2.5vw);
  }
}
.el_edit ol li:before {
  counter-increment: number;
  content: "(" counter(number) ")";
  position: absolute;
  left: max(6px, 0.4166666667vw);
  font-size: max(16px, 1.1111111111vw);
}
@media screen and (width <= 1024px) {
  .el_edit ol li:before {
    left: max(6px, 0.5859375vw);
  }
}
@media screen and (width <= 767px) {
  .el_edit ol li:before {
    left: max(6px, 0.4166666667vw);
    font-size: max(16px, 1.1111111111vw);
  }
}
.el_edit .wp-block-table {
  margin-top: 2.7777777778vw;
}
@media screen and (width <= 1024px) {
  .el_edit .wp-block-table {
    margin-top: 3.90625vw;
  }
}
@media screen and (width <= 767px) {
  .el_edit .wp-block-table {
    margin-top: 10.6666666667vw;
  }
}
.el_edit .wp-block-table tr:last-of-type td {
  border-bottom: 1px solid #F1D8BD !important;
}
.el_edit .wp-block-table td:nth-of-type(1) {
  width: max(200px, 13.8888888889vw);
  border-left: 1px solid #F1D8BD !important;
  background: #FFAC54;
  color: #fff;
  font-weight: 700;
  vertical-align: middle;
  font-size: max(16px, 1.1111111111vw);
  text-align: center;
}
@media screen and (width <= 767px) {
  .el_edit .wp-block-table td:nth-of-type(1) {
    width: 100%;
    height: max(56px, 3.8888888889vw);
  }
}
.el_edit .wp-block-table td {
  width: calc(100% - max(200px, 13.8888888889vw));
  border-right: 1px solid #F1D8BD !important;
  border-top: 1px solid #F1D8BD !important;
  background: #fff;
  padding: max(16px, 1.1111111111vw);
  border: none;
}
@media screen and (width <= 1024px) {
  .el_edit .wp-block-table td {
    padding: max(16px, 1.5625vw);
  }
}
@media screen and (width <= 767px) {
  .el_edit .wp-block-table td {
    display: block;
    width: 100%;
    padding: max(14px, 0.9722222222vw);
    border-left: 1px solid #F1D8BD !important;
  }
}
.el_edit figure.wp-block-image {
  margin-top: max(40px, 2.7777777778vw);
  width: 100%;
}
.el_edit figure.wp-block-image img {
  width: 100%;
  height: auto;
}
.el_edit .wp-block-flexible-table-block-table {
  margin-top: max(30px, 2.0833333333vw);
}

.un_single_case .el_edit a, .un_single_blog .el_edit a, .pg_faq .js_acc_cont a {
  display: inline-block;
  transition: opacity 0.3s;
  color: var(--blue, #4CB1FF);
  text-decoration: underline;
}
@media (hover: hover) {
  .un_single_case .el_edit a:hover, .un_single_blog .el_edit a:hover, .pg_faq .js_acc_cont a:hover {
    transition: 0.5s;
  }
  .un_single_case .el_edit a:hover:hover, .un_single_blog .el_edit a:hover:hover, .pg_faq .js_acc_cont a:hover:hover {
    opacity: 0.5;
  }
}

/* ===================================
header
=================================== */
.pg_top .ly_header {
  opacity: 1;
  transition: 0.5s;
}
.pg_top .ly_header.is_view {
  opacity: 1;
  visibility: visible;
}

.ly_box {
  padding-top: max(120px, 8.3333333333vw);
  padding-bottom: max(120px, 8.3333333333vw);
}
@media screen and (width <= 767px) {
  .ly_box {
    padding-top: max(60px, 4.1666666667vw);
    padding-bottom: max(60px, 4.1666666667vw);
  }
}

.ly_bgOrange {
  background: var(--orange-bg01, #FFC990);
  overflow: hidden;
}

.ly_topFv {
  margin-top: max(52px, 3.6111111111vw);
}
@media screen and (width <= 767px) {
  .ly_topFv {
    margin-top: 0;
  }
}
.ly_topFv .swiper-slide {
  border-radius: max(50px, 3.4722222222vw);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.12);
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .ly_topFv .swiper-slide:hover {
    opacity: 0.5;
    transition: opacity 0.3s;
  }
}
@media screen and (width <= 767px) {
  .ly_topFv .swiper-slide {
    border-radius: max(0px, 0vw);
  }
}
.ly_topFv .swiper-slide img {
  border-radius: max(50px, 3.4722222222vw);
}
@media screen and (width <= 767px) {
  .ly_topFv .swiper-slide img {
    border-radius: max(0px, 0vw);
  }
}
.ly_topFv .swiper-pagination {
  position: relative;
  margin-top: max(32px, 2.2222222222vw);
}
@media screen and (width <= 767px) {
  .ly_topFv .swiper-pagination {
    margin-top: max(48px, 3.3333333333vw);
  }
}
.ly_topFv .swiper-button-wrap {
  position: absolute;
  width: -moz-fit-content !important;
  width: fit-content !important;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  display: grid;
  grid-template-columns: repeat(2, max(54px, 3.75vw));
  align-self: center;
  gap: max(213px, 14.7916666667vw);
  opacity: 1 !important;
  width: 100%;
  z-index: 2;
  padding-inline: max(0px, 0vw) !important;
  margin-top: max(32px, 2.2222222222vw);
  z-index: 100;
}
@media screen and (width <= 767px) {
  .ly_topFv .swiper-button-wrap {
    gap: max(180px, 12.5vw);
  }
}
.ly_topFv .swiper-button-next, .ly_topFv .swiper-button-prev {
  cursor: pointer;
  position: relative;
  width: 100%;
  top: auto !important;
  left: auto !important;
  bottom: auto !important;
  display: flex;
  right: auto !important;
  align-items: center;
  justify-content: center;
  transform: translate(0) !important;
  box-sizing: border-box;
  transition: all 0.3s var(--reverseTransition);
}

.ly_topCampaign {
  padding-top: max(80px, 5.5555555556vw);
}
.ly_topCampaign .el_campaignList_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: max(32px, 2.2222222222vw);
}
@media screen and (width <= 767px) {
  .ly_topCampaign .el_campaignList_list {
    display: flex;
    gap: max(30px, 2.0833333333vw);
    overflow: scroll;
  }
}
@media (max-width: 450px) {
  .ly_topCampaign .el_campaignList_list {
    gap: max(20px, 1.3888888889vw);
  }
}
.ly_topCampaign .el_campaignList_item {
  aspect-ratio: 1/1;
  border: 0.898px solid #DDD;
  overflow: hidden;
}
@media screen and (width <= 767px) {
  .ly_topCampaign .el_campaignList_item {
    min-width: 80vw;
  }
}
.ly_topCampaign .el_campaignList_item .el_campaignList_item_link {
  max-width: 500px;
  width: 100%;
  overflow: hidden;
}
.ly_topCampaign .el_campaignList_item .el_campaignList_item_link img {
  height: 100%;
  transform: scale(1);
  transition: transform 0.6s;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (hover: hover) {
  .ly_topCampaign .el_campaignList_item .el_campaignList_item_link:hover img {
    transform: scale(1.1);
    transition: transform 0.6s;
  }
}
.ly_topCampaign .el_bannerList_list {
  gap: max(20px, 1.3888888889vw);
}
@media (max-width: 600px) {
  .ly_topCampaign .el_bannerList_list {
    grid-template-columns: 1fr;
  }
}
.ly_topCampaign .el_bannerList_item {
  aspect-ratio: 160/133;
}
@media screen and (width <= 767px) {
  .ly_topCampaign .el_bannerList_item {
    max-width: max(320px, 22.2222222222vw);
    width: 100%;
    margin: 0 auto;
  }
}

.pg_top .el_pickUpMenuList_list {
  margin-bottom: max(60px, 4.1666666667vw);
}

.el_pickUpMenuList_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: max(26px, 1.8055555556vw);
}
@media screen and (width <= 767px) {
  .el_pickUpMenuList_list {
    grid-template-columns: 1fr 1fr;
    gap: max(20px, 1.3888888889vw);
  }
}
@media (max-width: 400px) {
  .el_pickUpMenuList_list {
    grid-template-columns: 1fr;
  }
}
.el_pickUpMenuList_list .post-wrapper a {
  display: flex;
  height: 100%;
  flex-direction: column;
  background: var(--orange-bg02, #FFF4E7);
  border-radius: max(4px, 0.2777777778vw);
  padding: max(20px, 1.3888888889vw);
  justify-content: space-between;
}
.el_pickUpMenuList_list .post-wrapper a .post-list_inner {
  display: flex;
  flex-direction: column;
  margin-bottom: max(20px, 1.3888888889vw);
}
.el_pickUpMenuList_list .post-wrapper a .post-list_imgContainer {
  margin-bottom: max(16px, 1.1111111111vw);
  cursor: pointer;
  max-width: 500px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 276/184;
}
.el_pickUpMenuList_list .post-wrapper a .post-list_imgContainer .post-list_img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
  transform: scale(1);
}
@media (hover: hover) {
  .el_pickUpMenuList_list .post-wrapper a:hover .post-list_img {
    transition: transform 0.6s ease;
    transform: scale(1.1);
  }
}
.el_pickUpMenuList_list .post-wrapper a .post-list_ttl {
  color: var(--black, #333);
  font-size: max(20px, 1.3888888889vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.4px, 0.0277777778vw);
  padding-bottom: max(10px, 0.6944444444vw);
  margin-bottom: max(12px, 0.8333333333vw);
  border-bottom: 1px solid var(--orange-line, #F1D8BD);
}
@media screen and (width <= 767px) {
  .el_pickUpMenuList_list .post-wrapper a .post-list_ttl {
    font-size: max(18px, 1.25vw);
  }
}
.el_pickUpMenuList_list .post-wrapper a .post-list_txt {
  color: var(--black, #333);
  font-size: max(16px, 1.1111111111vw);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: max(0.32px, 0.0222222222vw);
}
.el_pickUpMenuList_list .post-wrapper .post-list_btn {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: max(8px, 0.5555555556vw);
}
.el_pickUpMenuList_list .post-wrapper .post-list_btn p {
  font-size: max(16px, 1.1111111111vw);
}

.ly_topChairperson, .ly_menu {
  border-radius: max(80px, 5.5555555556vw) max(80px, 5.5555555556vw) 0 0;
  overflow: hidden;
}
@media screen and (width <= 767px) {
  .ly_topChairperson, .ly_menu {
    border-radius: max(50px, 3.4722222222vw) max(50px, 3.4722222222vw) 0 0;
  }
}

.el_chairpersonList_left_img {
  width: 100%;
  aspect-ratio: 340/453;
}
@media screen and (width <= 767px) {
  .el_chairpersonList_left_img {
    max-width: max(400px, 27.7777777778vw);
    margin: 0 auto;
    width: 100%;
  }
}
.el_chairpersonList_left_img img {
  border-radius: max(6px, 0.4166666667vw);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.el_chairpersonList_right .el_chairpersonList_btn {
  display: flex;
  justify-content: end;
}
.el_chairpersonList_right .el_chairpersonList_btn .custom-button {
  position: relative;
  transform: unset;
  right: 0;
  left: auto;
}

@media screen and (width <= 767px) {
  .pg_archiveClinic .el_chairpersonList_btn {
    justify-content: center;
  }
}

.el_chairpersonList_name {
  display: flex;
  gap: max(4px, 0.2777777778vw) max(8px, 0.5555555556vw);
  align-items: baseline;
  margin-bottom: max(30px, 2.0833333333vw);
  flex-wrap: wrap;
}

.el_chairpersonList_name_job {
  width: 100%;
  color: var(--black, #333);
  font-size: max(16px, 1.1111111111vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.32px, 0.0222222222vw);
}

.el_chairpersonList_name_ja {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(28px, 1.9444444444vw);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.56px, 0.0388888889vw);
}

.el_chairpersonList_name_en {
  color: var(--black, #333);
  font-family: Poppins, Public Sans, Noto Sans JP;
  font-size: max(14px, 0.9722222222vw);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.el_chairpersonList {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: max(60px, 4.1666666667vw);
}
@media screen and (width <= 767px) {
  .el_chairpersonList {
    grid-template-columns: 1fr;
    gap: max(30px, 2.0833333333vw);
  }
}

.el_chairpersonList_txt {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(16px, 1.1111111111vw);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: max(0.32px, 0.0222222222vw);
  margin-bottom: max(40px, 2.7777777778vw);
}

.el_chairpersonList_banner {
  width: 88%;
  margin: 0 auto;
  margin-top: max(60px, 4.1666666667vw);
  filter: drop-shadow(5px 5px 0px rgba(0, 0, 0, 0.05));
  transform: translateZ(0);
}
@media screen and (width <= 767px) {
  .el_chairpersonList_banner {
    width: 100%;
    margin-top: max(40px, 2.7777777778vw);
  }
}
.el_chairpersonList_banner a {
  background-color: #fff;
}
@media (hover: hover) {
  .el_chairpersonList_banner a:hover img {
    opacity: 0.7;
    transition: opacity 0.3s;
  }
}
.el_chairpersonList_banner a img {
  width: 100%;
  height: auto;
  transition: opacity 0.3s;
}

.el_chairpersonList_contact_txt {
  text-align: center;
  font-size: max(16px, 1.1111111111vw);
  text-decoration: underline;
  margin-top: max(20px, 1.3888888889vw);
  transition: opacity 0.3s;
  display: flex;
  justify-content: center;
}
@media (hover: hover) {
  .el_chairpersonList_contact_txt:hover {
    opacity: 0.7;
    transition: opacity 0.3s;
  }
}
@media screen and (width <= 767px) {
  .el_chairpersonList_contact_txt {
    margin-top: max(16px, 1.1111111111vw);
  }
}

.un_clinic .ly_topChairperson {
  border-radius: 0;
  border-bottom: 1px solid var(--orange-bg01, #FFC990);
}
@media screen and (width <= 767px) {
  .un_clinic .ly_topCampaign {
    padding-top: max(60px, 4.1666666667vw);
  }
}
@media (max-width: 600px) {
  .un_clinic .el_campaignList_list {
    grid-template-columns: 1fr;
  }
}
.un_clinic .el_chairpersonList .el_chairpersonList_name .el_chairpersonList_job {
  width: 100%;
  font-weight: 700;
}

/* ===================================
menu
=================================== */
/* archive
============================== */
.ly_inner.un_menu {
  margin-top: 1.1111111111vw;
}

/* single
============================== */
.ly_inner.un_menuSingle {
  padding-top: max(120px, 8.3333333333vw);
  padding-bottom: max(120px, 8.3333333333vw);
  display: grid;
  grid-template-columns: max(200px, 13.8888888889vw) 1fr;
  gap: max(60px, 4.1666666667vw);
}
@media screen and (width <= 1024px) {
  .ly_inner.un_menuSingle {
    display: flex;
    flex-direction: column-reverse;
    gap: max(30px, 2.0833333333vw);
  }
}
@media screen and (width <= 767px) {
  .ly_inner.un_menuSingle {
    padding-top: max(60px, 4.1666666667vw);
    padding-bottom: max(60px, 4.1666666667vw);
  }
}

.el_edit .wp-block-embed.is-type-video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  margin-top: 24px;
}
.el_edit .wp-block-embed.is-type-video .wp-block-embed__wrapper {
  width: 100%;
  height: 100%;
}
.el_edit .wp-block-embed.is-type-video iframe {
  width: 100%;
  height: 100%;
}
.el_edit .el_btnArrow.un_right {
  margin: 44px 0 0 auto !important;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
}
@media screen and (width <= 767px) {
  .el_edit .el_btnArrow.un_right {
    margin: 44px auto 0 0 !important;
  }
}
.el_edit .el_btnArrow.un_right .el_btnArrow_text {
  font-size: 14px;
}
@media (hover: hover) {
  .el_edit .el_btnArrow.un_right:hover {
    opacity: 1;
  }
}
.el_edit .el_menuColumn {
  border-radius: 8px;
  background: var(--brown-thin-bg, #FCFAF4);
  padding: 24px;
  margin-top: 54px;
}
.el_edit .el_menuColumn ul li:before {
  display: none;
}
.el_edit .el_menuColumn .el_menuColumn_list {
  margin: 0;
}
.el_edit .el_menuColumn .el_menuColumn_list_item {
  padding: 0;
}
.el_edit .el_menuColumn .el_menuColumn_list_item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  white-space: normal;
}
@media (hover: hover) {
  .el_edit .el_menuColumn .el_menuColumn_list_item a .el_menuColumn_list_thmb img {
    transition: 0.5s;
  }
  .el_edit .el_menuColumn .el_menuColumn_list_item a:hover {
    opacity: 1;
  }
  .el_edit .el_menuColumn .el_menuColumn_list_item a:hover .el_menuColumn_list_thmb img {
    scale: 1.2;
  }
}
.el_edit .el_menuColumn .el_menuColumn_list_item + li {
  margin-top: 16px;
}
.el_edit .el_menuColumn .el_menuColumn_list_thmb {
  width: 130px;
  height: 87px;
  border-radius: 8px;
  overflow: hidden;
}
.el_edit .el_menuColumn .el_menuColumn_list_thmb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.el_edit .el_menuColumn .el_menuColumn_list_ttl {
  color: var(--black-text, #222);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  width: calc(100% - 146px);
  margin: 0;
  text-decoration: none;
  white-space: break-spaces;
}
.el_edit .el_menuColumn .el_btnArrow.un_right {
  margin: 20px 0 0 auto !important;
}
.el_edit .wp-block-table .has-fixed-layout p {
  margin: 0;
}
.el_edit .wp-block-table .has-fixed-layout p em {
  color: var(--brown-thin-text, #8D837B);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  display: block;
}

.menu-case .el_caseList_item {
  padding: 0 !important;
  background: transparent !important;
}
.menu-case .js_acc_ttl {
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
}

.el_chairpersonList_explanation {
  grid-template-columns: 34% 1fr !important;
  gap: max(30px, 2.0833333333vw) !important;
  margin-top: max(30px, 2.0833333333vw);
}
@media screen and (width <= 767px) {
  .el_chairpersonList_explanation {
    grid-template-columns: 1fr !important;
  }
}
@media screen and (width <= 767px) {
  .el_chairpersonList_explanation .el_chairpersonList_left_img {
    width: 65%;
    margin: 0 auto;
  }
}
.el_chairpersonList_explanation .el_chairpersonList_left_img img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.el_chairpersonList_explanation .el_chairpersonList_explanation_job {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(16px, 1.1111111111vw);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.32px, 0.0222222222vw);
  margin-top: 0 !important;
}
.el_chairpersonList_explanation .el_chairpersonList_explanation_name {
  display: flex;
  gap: max(8px, 0.5555555556vw);
  align-items: baseline;
  margin-top: max(4px, 0.2777777778vw);
  flex-wrap: wrap;
}
.el_chairpersonList_explanation .el_chairpersonList_explanation_name_ja {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(28px, 1.9444444444vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.56px, 0.0388888889vw);
  margin-top: 0 !important;
}
@media screen and (width <= 767px) {
  .el_chairpersonList_explanation .el_chairpersonList_explanation_name_ja {
    font-size: max(24px, 1.6666666667vw);
  }
}
.el_chairpersonList_explanation .el_chairpersonList_explanation_name_en {
  color: var(--black, #333);
  font-family: Poppins, Public Sans, Noto Sans JP;
  font-size: max(14px, 0.9722222222vw);
  font-weight: 400;
  line-height: 1;
  margin-top: 0 !important;
}
.el_chairpersonList_explanation .el_chairpersonList_explanation_txt p {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(16px, 1.1111111111vw);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: max(0.32px, 0.0222222222vw);
  margin-top: max(24px, 1.6666666667vw) !important;
}

.el_pricePosts_price {
  width: 100% !important;
  max-width: unset !important;
}
.el_pricePosts_price .el_pricePosts_wrap {
  margin-top: 0 !important;
}

.el_pricePosts_sub {
  text-align: left !important;
  color: var(--gray, #BBB);
  font-family: "Noto Sans JP";
  font-size: max(14px, 0.9722222222vw);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: max(0.28px, 0.0194444444vw);
  margin-top: max(10px, 0.6944444444vw) !important;
}

.el_pickUpMenuList_recommendset .el_pickUpMenuList_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: max(20px, 1.3888888889vw);
}
@media screen and (width <= 767px) {
  .el_pickUpMenuList_recommendset .el_pickUpMenuList_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.el_pickUpMenuList_recommendset .el_pickUpMenuList_list .post-wrapper a {
  border-radius: 4px;
  background: var(--white, #FFF);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
}

.post-list_ttl,
.post-list_txt {
  margin-top: 0 !important;
}

.el_flowList {
  counter-reset: my-counter;
}
.el_flowList .el_flowList_item {
  display: grid;
  grid-template-columns: max(50px, 3.4722222222vw) 1fr;
  gap: 0 max(20px, 1.3888888889vw);
  padding-bottom: max(20px, 1.3888888889vw);
  position: relative;
  padding-left: 0 !important;
}
.el_flowList .el_flowList_item:before {
  display: none;
}
.el_flowList .el_flowList_item:before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background: var(--orange-txt, #FFAC54);
  position: absolute;
  bottom: 0;
  left: max(25px, 1.7361111111vw);
}
.el_flowList .el_flowList_item:last-child:before {
  display: none;
}
.el_flowList .el_flowList_l {
  width: 100%;
  height: max(50px, 3.4722222222vw);
  border-radius: 50%;
  background: var(--orange-txt, #FFAC54);
  position: relative;
}
.el_flowList .el_flowList_l:before {
  counter-increment: my-counter;
  content: "0" counter(my-counter);
  color: #fff;
  position: absolute;
  left: max(6px, 0.4166666667vw);
  font-size: max(20px, 1.3888888889vw);
  font-weight: 700;
  line-height: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Public Sans";
}
.el_flowList .el_flowList_r .el_flowList_ttl {
  margin-top: max(10px, 0.6944444444vw);
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(20px, 1.3888888889vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.4px, 0.0277777778vw);
}
.el_flowList .el_flowList_r .el_flowList_txt {
  margin-top: max(16px, 1.1111111111vw);
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(16px, 1.1111111111vw);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: max(0.32px, 0.0222222222vw);
}

.el_List_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: max(20px, 1.3888888889vw) max(30px, 2.0833333333vw);
}
@media screen and (width <= 767px) {
  .el_List_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.el_List_list .post-wrapper a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: max(16px, 1.1111111111vw);
  padding-bottom: max(10px, 0.6944444444vw);
  border-bottom: 1px solid var(--gray, #BBB);
}

.el_doctorList .el_doctorList_inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: max(20px, 1.3888888889vw);
  margin-top: max(30px, 2.0833333333vw);
}
@media (max-width: 435px) {
  .el_doctorList .el_doctorList_inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
.el_doctorList .bl_doctorCard {
  border-radius: max(4px, 0.2777777778vw);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.el_doctorList .doctor-box_l {
  width: 100%;
}
.el_doctorList .doctor-box_l_img {
  aspect-ratio: 1/1;
}
.el_doctorList .doctor-box_l_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.el_doctorList .doctor-box_r_ttl {
  margin-top: max(20px, 1.3888888889vw);
}
.el_doctorList .sns-button-group {
  margin-top: max(12px, 0.8333333333vw);
}
.el_doctorList a {
  display: flex !important;
}
.el_doctorList .doctor-box_ttl,
.el_doctorList .doctor-box_post,
.el_doctorList .doctor-box_job {
  margin-top: 0 !important;
}
.el_doctorList .sns-button-group a {
  width: max(22px, 1.5277777778vw);
  height: max(22px, 1.5277777778vw);
}

.el_clinicList_item_link_txt {
  margin-top: 0 !important;
  font-weight: 700;
}

.un_menu h2 {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(28px, 1.9444444444vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.56px, 0.0388888889vw);
  padding: max(30px, 2.0833333333vw) 0 max(20px, 1.3888888889vw);
  border-bottom: 3px solid var(--orange-txt, #FFAC54);
}
.un_menu h3 {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(24px, 1.6666666667vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.48px, 0.0333333333vw);
  padding: max(10px, 0.6944444444vw) max(20px, 1.3888888889vw);
  background: var(--orange-bg02, #FFF4E7);
}
.un_menu .el_menuList_cat_wrap {
  margin-top: max(60px, 4.1666666667vw);
}
.un_menu .el_menuList_cat_wrap:last-child {
  margin-bottom: max(60px, 4.1666666667vw);
}
.un_menu .el_menuList_cat_wrap .el_menuList_cat_name h3 {
  margin-top: 0 !important;
}
.un_menu .el_menuList_cat_wrap .el_menuList_cat_inList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: max(16px, 1.1111111111vw) max(30px, 2.0833333333vw);
  margin-top: max(30px, 2.0833333333vw);
}
@media screen and (width <= 1024px) {
  .un_menu .el_menuList_cat_wrap .el_menuList_cat_inList {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (width <= 767px) {
  .un_menu .el_menuList_cat_wrap .el_menuList_cat_inList {
    grid-template-columns: repeat(1, 1fr);
  }
}
.un_menu .el_menuList_cat_wrap .el_menuList_cat_inList li a {
  padding-bottom: max(12px, 0.8333333333vw);
  border-bottom: 1px solid var(--gray, #BBB);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: max(16px, 1.1111111111vw);
  transition: all 0.3s;
  height: 100%;
}
@media screen and (width <= 767px) {
  .un_menu .el_menuList_cat_wrap .el_menuList_cat_inList li a {
    min-height: max(69px, 4.7916666667vw);
  }
}
@media (hover: hover) {
  .un_menu .el_menuList_cat_wrap .el_menuList_cat_inList li a:hover {
    opacity: 0.7;
    transition: all 0.3s;
  }
}
.un_menu .el_menuList_cat_wrap .el_menuList_cat_inList li a .el_menuList_cat_inList_ttl {
  text-decoration: none;
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(16px, 1.1111111111vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.32px, 0.0222222222vw);
  display: flex;
  flex-direction: column;
  gap: max(8px, 0.5555555556vw);
}
.un_menu .el_menuList_cat_wrap .el_menuList_cat_inList .el_menuList_cat_text {
  color: var(--white, #FFF);
  font-family: "Noto Sans JP";
  font-size: max(12px, 0.8333333333vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.24px, 0.0166666667vw);
  padding: max(2px, 0.1388888889vw) max(4px, 0.2777777778vw);
  margin-right: max(6px, 0.4166666667vw);
  display: inline-block;
}
.un_menu .el_menuList_cat_wrap .el_menuList_cat_inList .el_menuList_cat_text:last-child {
  margin-right: 0;
}
.un_menu .el_menuList_cat_wrap .el_menuList_cat_inList .term-shinsaibashi {
  background: #E87A5C;
}
.un_menu .el_menuList_cat_wrap .el_menuList_cat_inList .term-umeda {
  background: #F48B94;
}
.un_menu .el_menuList_cat_wrap .el_menuList_cat_inList .term-tennoji {
  background: #FF8C74;
}
.un_menu .el_menuList_cat_wrap .el_menuList_cat_inList .term-kyoto-karasuma {
  background: #D47A6A;
}
.un_menu .el_menuList_cat_wrap .el_menuList_cat_inList .term-kobe {
  background: #CFA77F;
}
.un_menu .el_menuList_cat_wrap .el_menuList_cat_inList .term-okayama {
  background: #F29668;
}

.el_caseBfAf_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: max(30px, 2.0833333333vw);
}
.el_caseBfAf_wrap .el_caseBfAf_img {
  width: 100%;
  aspect-ratio: 1/1;
}
.el_caseBfAf_wrap .el_caseBfAf_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.el_caseBfAf_wrap .el_caseBfAf_ttl {
  font-family: "Public Sans";
  font-size: max(16px, 1.1111111111vw);
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  padding: max(12px, 0.8333333333vw) max(20px, 1.3888888889vw);
}
.el_caseBfAf_wrap .el_caseBfAf_before_ttl {
  color: var(--orange-txt, #FFAC54);
  border-top: 1px solid var(--orange-line, #F1D8BD);
  border-bottom: 1px solid var(--orange-line, #F1D8BD);
  border-left: 1px solid var(--orange-line, #F1D8BD);
  background: var(--white, #FFF);
}
.el_caseBfAf_wrap .el_caseBfAf_after_ttl {
  color: var(--orange-txt, #fff);
  border-top: 1px solid var(--orange-line, #FFAC54);
  border-bottom: 1px solid var(--orange-line, #FFAC54);
  border-right: 1px solid var(--orange-line, #FFAC54);
  background: var(--orange-txt, #FFAC54);
}

.swiperCase .swiper-pagination {
  position: relative;
  margin-top: max(60px, 4.1666666667vw);
  top: -20px !important;
}
@media screen and (width <= 767px) {
  .swiperCase .swiper-pagination {
    margin-top: max(55px, 3.8194444444vw);
    top: -15px !important;
  }
}
.swiperCase .swiper-button-wrap {
  position: absolute;
  width: -moz-fit-content !important;
  width: fit-content !important;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  display: grid;
  grid-template-columns: repeat(2, max(54px, 3.75vw));
  align-self: center;
  gap: max(213px, 14.7916666667vw);
  opacity: 1 !important;
  width: 100%;
  z-index: 2;
  padding-inline: max(0px, 0vw) !important;
  z-index: 100;
}
@media (max-width: 450px) {
  .swiperCase .swiper-button-wrap {
    grid-template-columns: repeat(2, max(40px, 3.75vw));
  }
}
@media screen and (width <= 767px) {
  .swiperCase .swiper-button-wrap {
    gap: max(180px, 12.5vw);
  }
}
.swiperCase .swiper-button-next,
.swiperCase .swiper-button-prev {
  cursor: pointer;
  position: relative;
  top: auto !important;
  left: auto !important;
  bottom: auto !important;
  display: flex;
  right: auto !important;
  align-items: center;
  justify-content: center;
  transform: translate(0) !important;
  box-sizing: border-box;
  transition: all 0.3s var(--reverseTransition);
  height: max(54px, 3.75vw);
  width: 100%;
}
@media (max-width: 450px) {
  .swiperCase .swiper-button-next,
  .swiperCase .swiper-button-prev {
    height: max(40px, 2.7777777778vw);
    width: max(40px, 2.7777777778vw);
  }
}
.swiperCase .swiper-button-next svg,
.swiperCase .swiper-button-prev svg {
  width: 32.5%;
}

.menu_accordion_cont p {
  padding-left: 0 !important;
}

.problem_menu_price {
  border-radius: max(8px, 0.5555555556vw);
  background: var(--white, #FFF);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
  margin-top: max(30px, 2.0833333333vw);
  padding: max(20px, 1.3888888889vw);
}
.problem_menu_price .problem_menu_price_top {
  display: grid;
  grid-template-columns: 1fr max(200px, 13.8888888889vw);
  gap: max(20px, 1.3888888889vw);
}
@media screen and (width <= 767px) {
  .problem_menu_price .problem_menu_price_top {
    display: flex;
    flex-direction: column-reverse;
    gap: max(20px, 1.3888888889vw);
  }
}
.problem_menu_price .problem_menu_price_top .top_r {
  width: 100%;
  aspect-ratio: 1/1;
}
.problem_menu_price .problem_menu_price_top .top_r img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.problem_menu_price .clinic-category-list {
  display: flex;
  margin-top: 0;
}
.problem_menu_price .clinic-category-list .clinic-category-item {
  background: var(--orange-txt, #FFAC54);
  color: var(--white, #FFF);
  padding: max(2px, 0.1388888889vw) max(4px, 0.2777777778vw);
  display: inline-block;
  margin-right: max(4px, 0.2777777778vw);
  font-size: max(14px, 0.9722222222vw);
}
@media screen and (width <= 767px) {
  .problem_menu_price .clinic-category-list .clinic-category-item {
    font-size: max(14px, 0.9722222222vw);
  }
}
.problem_menu_price .clinic-category-list .clinic-category-item:last-child {
  margin-right: 0;
}
.problem_menu_price .menu-title {
  margin-top: max(10px, 0.6944444444vw);
  padding-bottom: max(10px, 0.6944444444vw);
  border-bottom: 1px solid var(--orange-line, #F1D8BD);
}
.problem_menu_price a {
  display: flex;
  margin: 0 auto;
  margin-top: max(20px, 1.3888888889vw);
}

@media (max-width: 870px) {
  .pg_menu .bl_doctorCard {
    gap: max(20px, 1.3888888889vw);
  }
}

.pg_problem h2 {
  padding-top: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  border-bottom: none !important;
}
.pg_problem .el_tabBtn_item {
  border-top: 1px solid var(--gray, #BBB);
  border-right: 1px solid var(--gray, #BBB);
  border-left: 1px solid var(--gray, #BBB);
  background: var(--white, #FFF);
}
@media screen and (width <= 767px) {
  .pg_problem .el_tabBtn_item {
    border-bottom: 1px solid var(--gray, #BBB);
  }
}
.pg_problem .el_tabBtn_item_txt {
  color: #BBB;
}
.pg_problem .el_tabBtn_item.is_active .el_tabBtn_item_txt {
  color: var(--black, #333);
}
.pg_problem .el_tabBtn_item.is_active {
  border: none;
  background: var(--orange-bg02, #FFF4E7);
}
.pg_problem .js_tab_item {
  background: var(--orange-bg02, #FFF4E7);
}
.pg_problem .js_tab_container {
  background: var(--orange-bg02, #FFF4E7);
}
.pg_problem .el_tabBtn_item_icon {
  filter: brightness(0) saturate(100%) invert(89%) sepia(3%) saturate(19%) hue-rotate(33deg) brightness(87%) contrast(85%);
}
.pg_problem .el_tabBtn_item.is_active .el_tabBtn_item_icon {
  filter: none;
}

/* ===================================
case
=================================== */
/* archive
============================== */
.un_single_case .ly_2col {
  padding-top: max(120px, 8.3333333333vw);
  padding-bottom: max(120px, 8.3333333333vw);
}
@media screen and (width <= 767px) {
  .un_single_case .ly_2col {
    padding-top: max(60px, 4.1666666667vw);
    padding-bottom: max(60px, 4.1666666667vw);
  }
}

.ly_2col.un_case {
  padding-bottom: max(120px, 8.3333333333vw);
  box-sizing: content-box;
  max-width: max(1000px, 69.4444444444vw);
  display: grid;
  gap: max(98px, 6.8055555556vw);
  grid-template-columns: max(240px, 16.6666666667vw) 1fr;
  padding-bottom: 0;
}
@media (max-width: 1440px) {
  .ly_2col.un_case {
    gap: max(40px, 2.7777777778vw);
  }
}
@media screen and (width <= 1024px) {
  .ly_2col.un_case {
    grid-template-columns: max(200px, 13.8888888889vw) 1fr;
    gap: max(20px, 1.3888888889vw);
  }
}
@media screen and (width <= 767px) {
  .ly_2col.un_case {
    gap: max(40px, 2.7777777778vw);
    padding-bottom: 0;
    grid-template-columns: 1fr;
  }
}

.js_topCase_slide {
  margin-bottom: max(60px, 4.1666666667vw);
}

.el_caseList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex-wrap: wrap;
  gap: max(30px, 2.0833333333vw);
}
@media screen and (width <= 1024px) {
  .el_caseList {
    gap: max(20px, 1.3888888889vw);
  }
}
@media screen and (width <= 767px) {
  .el_caseList {
    gap: max(10px, 0.6944444444vw);
  }
}
@media (max-width: 380px) {
  .el_caseList {
    grid-template-columns: 1fr;
  }
}

@media screen and (width <= 767px) {
  .el_caseList_menu {
    gap: max(30px, 2.0833333333vw);
  }
}
@media (max-width: 500px) {
  .el_caseList_menu {
    grid-template-columns: 1fr;
  }
}

.ly_case .swiper-slide,
.ly_case .el_caseList_item,
.un_case .swiper-slide,
.un_case .el_caseList_item {
  padding: max(20px, 1.3888888889vw);
  background: var(--white, #FFF);
  border-radius: max(4px, 0.2777777778vw);
  background: var(--orange-bg02, #FFF4E7);
  transition: 0.5s;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (width <= 767px) {
  .ly_case .swiper-slide,
  .ly_case .el_caseList_item,
  .un_case .swiper-slide,
  .un_case .el_caseList_item {
    padding: max(15px, 1.0416666667vw);
  }
}
.ly_case .swiper-slide,
.un_case .swiper-slide {
  opacity: 0.5;
}
.ly_case .swiper-slide-next,
.ly_case .swiper-slide-prev,
.ly_case .swiper-slide-active,
.un_case .swiper-slide-next,
.un_case .swiper-slide-prev,
.un_case .swiper-slide-active {
  opacity: 1;
  transition: 0.5s;
}
.ly_case .swiper-pagination,
.un_case .swiper-pagination {
  display: none;
}
.ly_case .swiper-button-wrap,
.un_case .swiper-button-wrap {
  position: absolute;
  width: -moz-fit-content !important;
  width: fit-content !important;
  left: 50%;
  top: max(230px, 15.9722222222vw);
  translate: -50% 0;
  display: grid;
  grid-template-columns: repeat(2, max(54px, 3.75vw));
  align-self: center;
  gap: max(1050px, 72.9166666667vw);
  opacity: 1 !important;
  width: 100%;
  z-index: 2;
  padding-inline: max(0px, 0vw) !important;
  margin-top: max(32px, 2.2222222222vw);
  z-index: 100;
}
@media (max-width: 1440px) {
  .ly_case .swiper-button-wrap,
  .un_case .swiper-button-wrap {
    gap: 72.9166666667vw;
    top: 14vw;
  }
}
@media (max-width: 1024px) {
  .ly_case .swiper-button-wrap,
  .un_case .swiper-button-wrap {
    gap: 34vw;
    top: 22vw;
  }
}
@media (max-width: 767px) {
  .ly_case .swiper-button-wrap,
  .un_case .swiper-button-wrap {
    gap: 72vw;
    top: 40vw;
  }
}
.ly_case .swiper-button-next,
.ly_case .swiper-button-prev,
.un_case .swiper-button-next,
.un_case .swiper-button-prev {
  cursor: pointer;
  position: relative;
  width: 100%;
  top: auto;
  left: auto !important;
  bottom: auto !important;
  display: flex;
  right: auto !important;
  align-items: center;
  justify-content: center;
  transform: translate(0) !important;
  box-sizing: border-box;
  transition: all 0.3s var(--reverseTransition);
  height: max(54px, 3.75vw);
}
@media screen and (width <= 767px) {
  .ly_case .swiper-button-next,
  .ly_case .swiper-button-prev,
  .un_case .swiper-button-next,
  .un_case .swiper-button-prev {
    display: none;
  }
}
@media screen and (width <= 767px) {
  .ly_case .ly_box,
  .un_case .ly_box {
    padding-bottom: max(40px, 2.7777777778vw);
  }
}

.el_caseList_item .el_caseList_thmb {
  aspect-ratio: 1/1;
  overflow: hidden;
}
.el_caseList_item .el_caseList_thmb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.el_caseList_item a .el_caseList_thmb {
  width: 100%;
  overflow: hidden;
}
.el_caseList_item a .el_caseList_thmb img {
  transform: scale(1);
  transition: transform 0.6s;
}
@media (hover: hover) {
  .el_caseList_item a:hover img {
    transform: scale(1.1);
    transition: transform 0.6s;
    opacity: 1;
  }
}
.el_caseList_item .el_caseList_ttl {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(20px, 1.3888888889vw);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.4px, 0.0277777778vw);
  margin-top: max(12px, 0.8333333333vw);
  padding-bottom: max(16px, 1.1111111111vw);
}
@media screen and (width <= 767px) {
  .el_caseList_item .el_caseList_ttl {
    font-size: max(16px, 1.1111111111vw);
  }
}
.el_caseList_item .el_faqList_wrap {
  position: relative;
  z-index: 88;
}
.el_caseList_item .el_faqList_wrap .js_acc_ttl {
  cursor: pointer;
  background-color: #FFF;
  position: relative;
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(14px, 0.9722222222vw);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.28px, 0.0194444444vw);
  padding: max(8px, 0.5555555556vw) max(16px, 1.1111111111vw);
  transition: 0.5s;
}
@media screen and (width <= 767px) {
  .el_caseList_item .el_faqList_wrap .js_acc_ttl {
    font-size: max(12px, 0.8333333333vw);
    padding: max(8px, 0.5555555556vw) max(25px, 1.7361111111vw) max(8px, 0.5555555556vw) max(16px, 1.1111111111vw);
  }
}
@media (hover: hover) {
  .el_caseList_item .el_faqList_wrap .js_acc_ttl:hover {
    background-color: var(--orange-txt, #FFAC54);
    color: var(--white, #FFF);
  }
  .el_caseList_item .el_faqList_wrap .js_acc_ttl:hover .el_faqList_ico:after {
    background-color: #FFF;
  }
  .el_caseList_item .el_faqList_wrap .js_acc_ttl:hover .el_faqList_ico:before {
    background-color: #FFF;
  }
}
.el_caseList_item .el_faqList_wrap .js_acc_ttl .el_faqList_ico {
  background-color: unset;
  right: 2%;
}
@media screen and (width <= 767px) {
  .el_caseList_item .el_faqList_wrap .js_acc_ttl .el_faqList_ico {
    right: 6%;
  }
}
.el_caseList_item .el_faqList_wrap .js_acc_ttl .el_faqList_ico:after {
  background-color: #333;
  transition: 0.5s;
}
.el_caseList_item .el_faqList_wrap .js_acc_ttl .el_faqList_ico:before {
  background-color: #333;
  transition: 0.5s;
}
.el_caseList_item .el_faqList_wrap .is_active {
  background: var(--orange-txt, #FFAC54);
  color: var(--white, #FFF);
}
.el_caseList_item .el_faqList_wrap .is_active .el_faqList_ico:after {
  background-color: #FFF;
}
.el_caseList_item .el_faqList_wrap .is_active .el_faqList_ico:before {
  background-color: #FFF;
}
.el_caseList_item .el_faqList_wrap .js_acc_cont {
  background-color: #FFF;
}
.el_caseList_item .el_faqList_wrap .js_acc_cont .el_caseList_box {
  border-bottom: 1px solid var(--gray, #BBB);
  padding: max(12px, 0.8333333333vw);
}
.el_caseList_item .el_faqList_wrap .js_acc_cont .el_caseList_box:last-child {
  border-bottom: none;
}
.el_caseList_item .el_faqList_wrap .js_acc_cont .el_caseList_box .js_acc_cont_ttl {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(14px, 0.9722222222vw) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  padding: 0 !important;
  margin: 0 !important;
  letter-spacing: max(0.28px, 0.0194444444vw) !important;
  margin-bottom: max(10px, 0.6944444444vw) !important;
  border: unset !important;
}
.el_caseList_item .el_faqList_wrap .js_acc_cont .el_caseList_box .js_acc_cont_txt,
.el_caseList_item .el_faqList_wrap .js_acc_cont .el_caseList_box .js_acc_cont_txt_sub {
  margin-top: 0 !important;
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(14px, 0.9722222222vw);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: max(0.28px, 0.0194444444vw);
}
.el_caseList_item .el_faqList_wrap .js_acc_cont .el_caseList_box .js_acc_cont_txt {
  margin-bottom: max(8px, 0.5555555556vw);
}
.el_caseList_item .el_faqList_wrap .js_acc_cont .el_caseList_box .js_acc_cont_txt_sub {
  color: var(--red, #BBB);
}

.js_acc_cont_txt_sub_price {
  color: var(--black, #333) !important;
}

.el_caseList_item .term-list {
  margin-top: max(16px, 1.1111111111vw);
}
.el_caseList_item .term-list .term-item {
  color: var(--white, #FFF);
  font-family: "Noto Sans JP";
  font-size: max(12px, 0.8333333333vw);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.24px, 0.0166666667vw);
  padding: max(2px, 0.1388888889vw) max(4px, 0.2777777778vw);
  background: var(--orange-txt, #FFAC54);
}

/* single
============================== */
.un_single_case .swiper-slide {
  background-color: transparent;
}
.un_single_case strong {
  background: linear-gradient(transparent 60%, rgba(255, 172, 84, 0.5) 60%);
  font-weight: 400;
}

@media screen and (width <= 1024px) {
  .el_siderCase {
    width: 100%;
  }
}
.el_siderCase .el_siderCase_wrap {
  position: sticky;
  width: max(540px, 37.5vw);
  height: auto;
  box-sizing: content-box;
  margin: 0 auto;
}
@media screen and (width <= 767px) {
  .el_siderCase .el_siderCase_wrap {
    width: 75%;
  }
}
.el_siderCase_img {
  width: max(540px, 37.5vw);
  overflow: hidden;
  aspect-ratio: 1/1;
}
.el_siderCase_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (width <= 767px) {
  .el_siderCase_img {
    width: 100%;
  }
}
.el_siderCase_cap {
  text-align: left;
  font-size: max(12px, 0.8333333333vw);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: max(0.24px, 0.0166666667vw);
  margin-top: max(12px, 0.8333333333vw);
}
@media screen and (width <= 1024px) {
  .el_siderCase_cap {
    margin-top: max(12px, 1.171875vw);
    font-size: max(12px, 1.171875vw);
  }
}
@media screen and (width <= 767px) {
  .el_siderCase_cap {
    margin-top: max(8px, 0.5555555556vw);
    font-size: max(12px, 0.8333333333vw);
  }
}
.el_siderCase .js_case_slide {
  overflow: hidden;
}
.el_siderCase .swiper-btn-prev,
.el_siderCase .swiper-btn-next {
  background-color: #333;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - max(48px, 3.3333333333vw));
  cursor: pointer;
  outline: none;
  width: max(48px, 3.3333333333vw);
  height: max(48px, 3.3333333333vw);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (width <= 1024px) {
  .el_siderCase .swiper-btn-prev,
  .el_siderCase .swiper-btn-next {
    top: calc(50% - max(48px, 4.6875vw));
  }
}
@media screen and (width <= 767px) {
  .el_siderCase .swiper-btn-prev,
  .el_siderCase .swiper-btn-next {
    top: calc(50% - max(28px, 1.9444444444vw));
  }
}
@media (max-width: 600px) {
  .el_siderCase .swiper-btn-prev,
  .el_siderCase .swiper-btn-next {
    width: max(32px, 2.2222222222vw);
    height: max(32px, 2.2222222222vw);
  }
}
.el_siderCase .swiper-btn-prev.swiper-button-disabled,
.el_siderCase .swiper-btn-next.swiper-button-disabled {
  opacity: 0.2;
}
@media (hover: hover) {
  .el_siderCase .swiper-btn-prev,
  .el_siderCase .swiper-btn-next {
    transition: 0.5s;
  }
  .el_siderCase .swiper-btn-prev:hover,
  .el_siderCase .swiper-btn-next:hover {
    opacity: 0.5;
  }
}
.el_siderCase .swiper-btn-prev {
  left: max(-80px, -5.5555555556vw);
}
@media screen and (width <= 1024px) {
  .el_siderCase .swiper-btn-prev {
    left: max(-80px, -7.8125vw);
  }
}
@media screen and (width <= 767px) {
  .el_siderCase .swiper-btn-prev {
    left: max(-130px, -9.0277777778vw);
  }
}
@media (max-width: 500px) {
  .el_siderCase .swiper-btn-prev {
    left: max(-150px, -10.4166666667vw);
  }
}
@media (max-width: 350px) {
  .el_siderCase .swiper-btn-prev {
    left: max(-170px, -11.8055555556vw);
  }
}
.el_siderCase .swiper-btn-next {
  right: max(-80px, -5.5555555556vw);
}
@media screen and (width <= 1024px) {
  .el_siderCase .swiper-btn-next {
    right: max(-80px, -7.8125vw);
  }
}
@media screen and (width <= 767px) {
  .el_siderCase .swiper-btn-next {
    right: max(-130px, -9.0277777778vw);
  }
}
@media (max-width: 500px) {
  .el_siderCase .swiper-btn-next {
    right: max(-150px, -10.4166666667vw);
  }
}
@media (max-width: 350px) {
  .el_siderCase .swiper-btn-next {
    right: max(-170px, -11.8055555556vw);
  }
}
.el_siderCase .swiper-btn-next.swiper-button-disabled {
  opacity: 0.2;
}

.un_single_case .el_caseList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: max(25px, 1.7361111111vw);
}
@media screen and (width <= 767px) {
  .un_single_case .el_caseList {
    gap: 0;
  }
}
.un_single_case .slidesingle-case {
  margin-top: max(100px, 6.9444444444vw);
  overflow: hidden;
}
@media screen and (width <= 1024px) {
  .un_single_case .slidesingle-case {
    margin-top: max(100px, 9.765625vw);
  }
}
@media screen and (width <= 767px) {
  .un_single_case .slidesingle-case {
    margin-top: max(100px, 6.9444444444vw);
  }
}

.swiper-single-case-01 {
  margin-bottom: max(40px, 2.7777777778vw);
}
@media screen and (width <= 1024px) {
  .swiper-single-case-01 {
    margin-bottom: max(40px, 3.90625vw);
  }
}
@media screen and (width <= 767px) {
  .swiper-single-case-01 {
    margin-bottom: max(60px, 4.1666666667vw);
  }
}

@media screen and (width <= 767px) {
  .swiper-single-case-01,
  .swiper-single-case-02 {
    overflow: visible !important;
  }
}
.swiper-single-case-01 .el_textBox_ttl,
.swiper-single-case-02 .el_textBox_ttl {
  text-align: center;
  color: var(--black, #333);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: max(24px, 1.6666666667vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.48px, 0.0333333333vw);
  margin-bottom: max(40px, 2.7777777778vw);
}
@media screen and (width <= 1024px) {
  .swiper-single-case-01 .el_textBox_ttl,
  .swiper-single-case-02 .el_textBox_ttl {
    margin-bottom: max(40px, 3.90625vw);
  }
}
@media screen and (width <= 767px) {
  .swiper-single-case-01 .el_textBox_ttl,
  .swiper-single-case-02 .el_textBox_ttl {
    margin-bottom: max(40px, 2.7777777778vw);
  }
}
@media screen and (width <= 767px) {
  .swiper-single-case-01 .el_caseList_ttl,
  .swiper-single-case-02 .el_caseList_ttl {
    font-size: max(20px, 1.3888888889vw) !important;
  }
}

.el_pager {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-top: max(60px, 4.1666666667vw);
}

.el_case_prev {
  text-align: center;
  margin-top: max(60px, 4.1666666667vw);
}
.el_case_prev a {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(18px, 1.25vw);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: max(0.28px, 0.0194444444vw);
  text-decoration: underline;
  transition: 0.5s;
}
@media (hover: hover) {
  .el_case_prev a {
    transition: 0.5s;
  }
  .el_case_prev a:hover {
    opacity: 0.5;
  }
}

/* ===================================
price
=================================== */
.un_price {
  padding-top: max(120px, 8.3333333333vw);
  padding-bottom: max(120px, 8.3333333333vw);
  box-sizing: content-box;
  display: grid;
  grid-template-columns: max(240px, 16.6666666667vw) 1fr;
  gap: max(60px, 4.1666666667vw);
}
@media (max-width: 1440px) {
  .un_price {
    gap: max(40px, 2.7777777778vw);
  }
}
@media screen and (width <= 1024px) {
  .un_price {
    gap: max(20px, 1.3888888889vw);
    grid-template-columns: max(200px, 13.8888888889vw) 1fr;
  }
}
@media screen and (width <= 767px) {
  .un_price {
    grid-template-columns: 1fr;
    padding-top: max(60px, 4.1666666667vw);
    padding-bottom: max(60px, 0vw);
    gap: max(40px, 2.7777777778vw);
  }
}

.el_tab_item_dermatology .el_pricePosts_wrap:first-child {
  margin-top: 0;
}

.single_pg_price .el_pricePosts_wrap {
  margin-top: 0;
}

.el_pricePosts_wrap {
  margin-top: max(60px, 4.1666666667vw);
}
.el_pricePosts_sub {
  margin-top: max(10px, 0.6944444444vw);
}
.el_pricePosts_termName {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(28px, 1.9444444444vw);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: max(0.56px, 0.0388888889vw);
}
@media screen and (width <= 767px) {
  .el_pricePosts_termName {
    font-size: max(24px, 1.6666666667vw);
  }
}
.el_pricePosts_ttl {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(24px, 1.6666666667vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.48px, 0.0333333333vw);
  padding: max(10px, 0.6944444444vw) max(20px, 1.3888888889vw);
  border-radius: 2px;
  background: var(--orange-bg02, #FFF4E7);
  margin-top: max(40px, 2.7777777778vw);
  margin-bottom: max(24px, 1.6666666667vw);
}
@media screen and (width <= 767px) {
  .el_pricePosts_ttl {
    font-size: max(20px, 1.3888888889vw);
    padding: max(10px, 0.6944444444vw) max(20px, 1.3888888889vw);
  }
}
.el_pricePosts .el_priceTable_clinicinfo {
  color: var(--blue, #4CB1FF);
  font-family: "Noto Sans JP";
  font-size: max(14px, 0.9722222222vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.28px, 0.0194444444vw);
}
@media screen and (width <= 767px) {
  .el_pricePosts .el_priceTable_clinicinfo {
    font-size: max(14px, 0.9722222222vw);
  }
}
.el_pricePosts .el_priceTable_info {
  color: var(--gray, #BBB);
  font-family: "Noto Sans JP";
  font-size: max(14px, 0.9722222222vw);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: max(0.28px, 0.0194444444vw);
}
@media screen and (width <= 767px) {
  .el_pricePosts .el_priceTable_info {
    font-size: max(14px, 0.9722222222vw);
  }
}
.el_pricePosts .el_priceTable_info2 {
  margin-top: max(10px, 0.6944444444vw);
  color: var(--gray, #BBB);
  font-family: "Noto Sans JP";
  font-size: max(14px, 0.9722222222vw);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: max(0.28px, 0.0194444444vw);
}
@media screen and (width <= 767px) {
  .el_pricePosts .el_priceTable_info2 {
    font-size: max(14px, 0.9722222222vw);
  }
}
.el_pricePosts .bl_clinicList_item_link {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  margin-top: max(16px, 1.1111111111vw);
}
.el_pricePosts .bl_clinicList_item_link:first-of-type {
  margin-top: max(30px, 2.0833333333vw);
}

.el_priceTable_ttl_wrap {
  display: flex;
  gap: max(16px, 1.1111111111vw);
  align-items: end;
  flex-wrap: wrap;
}

.el_priceTable_ttl_sub {
  color: var(--orange-txt, #FFAC54);
  font-family: "Noto Sans JP";
  font-size: max(12px, 0.8333333333vw);
  font-weight: 700;
  line-height: 1.5;
  border: 1px solid var(--orange-txt, #FFAC54);
  padding: max(4px, 0.2777777778vw) max(8px, 0.5555555556vw);
  border: 1px solid var(--orange-txt, #FFAC54);
}

.el_priceTable {
  border-bottom: 1px solid var(--gray, #BBB);
  margin-top: max(24px, 1.6666666667vw);
  padding-bottom: max(10px, 0.6944444444vw);
}
@media screen and (width <= 767px) {
  .el_priceTable {
    margin-top: max(24px, 1.6666666667vw);
  }
}
.el_priceTable_ttl {
  position: relative;
  margin-top: max(30px, 2.0833333333vw) !important;
  padding-left: max(16px, 1.1111111111vw);
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(18px, 1.25vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.36px, 0.025vw);
}
@media screen and (width <= 767px) {
  .el_priceTable_ttl {
    font-size: max(18px, 1.25vw);
  }
}
@media screen and (width <= 767px) {
  .el_priceTable_ttl {
    margin-top: max(30px, 2.0833333333vw);
    padding-left: max(16px, 1.1111111111vw);
    font-size: max(18px, 1.25vw);
  }
}
.el_priceTable_ttl:before {
  content: "";
  width: max(4px, 0.2777777778vw);
  height: calc(100% - max(4px, 0.2777777778vw));
  background: var(--black, #333);
  position: absolute;
  top: max(2px, 0.1388888889vw);
  left: 0;
}
@media screen and (width <= 767px) {
  .el_priceTable_ttl:before {
    top: max(2px, 0.1388888889vw);
    width: max(4px, 0.2777777778vw);
    height: calc(100% - max(4px, 0.2777777778vw));
  }
}
.el_priceTable_dd {
  border-top: 1px dashed var(--gray, #BBB);
  padding: max(16px, 1.1111111111vw) 0;
  display: flex;
  flex-wrap: wrap;
}
.el_priceTable_dd:first-child {
  border-top: none;
}
@media screen and (width <= 767px) {
  .el_priceTable_dd {
    padding: max(10px, 0.6944444444vw) 0;
    flex-wrap: wrap;
  }
}
.el_priceTable_dd dt {
  width: 100%;
  text-align: left;
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(16px, 1.1111111111vw);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: max(20px, 1.3888888889vw);
}
@media screen and (width <= 767px) {
  .el_priceTable_dd dt {
    width: 100%;
    font-size: max(16px, 1.1111111111vw);
  }
}
.el_priceTable_dd dd {
  font-size: max(16px, 1.1111111111vw);
}
@media screen and (width <= 767px) {
  .el_priceTable_dd dd {
    font-size: max(16px, 1.1111111111vw);
  }
}
.el_priceTable_dd .el_priceTable_dd_center {
  width: 50%;
  text-align: left;
}
@media screen and (width <= 767px) {
  .el_priceTable_dd .el_priceTable_dd_center {
    width: 30%;
  }
}
.el_priceTable_dd .el_priceTable_dd_price {
  width: 35%;
  text-align: end;
}
@media screen and (width <= 767px) {
  .el_priceTable_dd .el_priceTable_dd_price {
    width: 40%;
  }
}
@media screen and (max-width: 350px) {
  .el_priceTable_dd .el_priceTable_dd_price {
    width: 30%;
  }
}
.el_priceTable_dd .el_priceTable_dd_right {
  width: 15%;
  text-align: end;
}
@media screen and (width <= 767px) {
  .el_priceTable_dd .el_priceTable_dd_right {
    width: 30%;
  }
}
@media screen and (max-width: 350px) {
  .el_priceTable_dd .el_priceTable_dd_right {
    width: 40%;
  }
}
.el_priceTable_dd.un_empty {
  border-top: none;
  margin-top: max(-26px, -1.8055555556vw);
  width: 100%;
}
@media screen and (width <= 1024px) {
  .el_priceTable_dd.un_empty {
    margin-top: max(-26px, -2.5390625vw);
  }
}
@media screen and (width <= 767px) {
  .el_priceTable_dd.un_empty {
    margin-top: max(-26px, -1.8055555556vw);
  }
}
.el_priceTable_dd.un_empty dt {
  margin-bottom: 0;
}
.el_priceTable_dd > * {
  color: #222;
  font-size: 1.1111111111vw;
}
@media screen and (width <= 1024px) {
  .el_priceTable_dd > * {
    font-size: clamp(14px, vw(16, tb), 16px);
  }
}
@media screen and (width <= 767px) {
  .el_priceTable_dd > * {
    font-size: clamp(14px, vw(16, sp), 16px);
  }
}

.el_priceSide_ttl {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(16px, 1.1111111111vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.32px, 0.0222222222vw);
  margin-bottom: max(16px, 1.1111111111vw);
}
@media screen and (width <= 767px) {
  .el_priceSide_ttl {
    font-size: max(16px, 1.1111111111vw);
  }
}

.is-orange {
  color: #FFAC54;
  font-weight: 700;
}

/* ===================================
blog
=================================== */
/* archive
============================== */
.ly_2col.un_blog {
  display: grid;
  grid-template-columns: max(200px, 13.8888888889vw) 1fr;
  gap: max(137px, 9.5138888889vw);
  padding-top: max(120px, 8.3333333333vw);
  padding-bottom: max(120px, 8.3333333333vw);
}
@media screen and (width <= 1024px) {
  .ly_2col.un_blog {
    grid-template-columns: max(175px, 17.08984375vw) 1fr;
    gap: max(20px, 1.3888888889vw);
  }
}
@media screen and (width <= 767px) {
  .ly_2col.un_blog {
    display: flex;
    flex-direction: column-reverse;
    gap: max(60px, 4.1666666667vw);
    padding-top: max(60px, 4.1666666667vw);
    padding-bottom: max(60px, 4.1666666667vw);
  }
}

.un_single_blog {
  padding-top: max(120px, 8.3333333333vw);
  padding-bottom: max(120px, 8.3333333333vw);
  display: grid;
  grid-template-columns: max(200px, 13.8888888889vw) 1fr;
  gap: max(60px, 4.1666666667vw);
}
.un_single_blog strong {
  background: linear-gradient(transparent 60%, rgba(255, 172, 84, 0.5) 60%);
  font-weight: 400;
}
@media screen and (width <= 1024px) {
  .un_single_blog {
    display: flex;
    flex-direction: column-reverse;
    gap: max(60px, 5.859375vw);
  }
}
@media screen and (width <= 767px) {
  .un_single_blog {
    gap: max(60px, 4.1666666667vw);
    padding-top: max(60px, 4.1666666667vw);
    padding-bottom: max(60px, 4.1666666667vw);
  }
}
.un_single_blog figure {
  width: 100%;
}
.un_single_blog figure img {
  width: 100%;
  height: auto;
}
.un_single_blog .el_edit > *:first-child {
  margin-top: 0 !important;
}
.un_single_blog .el_post_thumb {
  margin-bottom: max(40px, 2.7777777778vw);
}

/* single
============================== */
.un_blog .el_pageTtlPost_dateCat {
  display: flex;
  align-items: center;
  gap: max(10px, 0.6944444444vw);
  margin-bottom: max(13px, 0.9027777778vw);
}
@media screen and (width <= 767px) {
  .un_blog .el_pageTtlPost_dateCat {
    display: block;
  }
}

#toc_container,
#ez-toc-container {
  border: 1px solid var(--orange-bg01, #FFC990);
  padding: max(30px, 2.0833333333vw);
  display: grid;
  grid-template-columns: max(65px, 4.5138888889vw) 1fr;
  gap: max(30px, 2.0833333333vw);
}
@media screen and (width <= 767px) {
  #toc_container,
  #ez-toc-container {
    padding: max(20px, 1.3888888889vw);
    grid-template-columns: 1fr;
    gap: max(10px, 0.6944444444vw);
  }
}
#toc_container .toc_title,
#ez-toc-container .toc_title {
  margin: 0;
  font-size: max(18px, 1.25vw);
  font-weight: 600;
  line-height: 1.8;
  border-right: 1px solid var(--orange-bg01, #FFC990);
}
@media screen and (width <= 767px) {
  #toc_container .toc_title,
  #ez-toc-container .toc_title {
    font-size: max(16px, 1.1111111111vw);
    border-bottom: 1px solid var(--orange-bg01, #FFC990);
    border-right: none;
    padding-bottom: max(10px, 0.6944444444vw);
  }
}
#toc_container .toc_list,
#ez-toc-container .toc_list {
  margin-top: max(14px, 0.9722222222vw);
  counter-reset: step-counter;
  /* カウンターの初期化 */
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: max(16px, 1.1111111111vw) max(22px, 1.5277777778vw);
}
@media screen and (width <= 767px) {
  #toc_container .toc_list,
  #ez-toc-container .toc_list {
    grid-template-columns: 1fr;
    gap: max(0px, 0vw);
  }
}
#toc_container .toc_list a,
#ez-toc-container .toc_list a {
  color: #222;
  font-size: max(16px, 1.1111111111vw);
  font-weight: 400;
  line-height: 1.8;
  text-decoration: underline;
  word-wrap: break-word;
  white-space: break-spaces;
  word-break: break-all;
}
#toc_container .toc_list li,
#ez-toc-container .toc_list li {
  counter-increment: step-counter;
  /* カウンターを1ずつ増加 */
  font-family: "Public Sans";
  position: relative;
  padding-left: max(34px, 2.3611111111vw);
  /* 番号用のスペース確保 */
  margin-bottom: max(10px, 0.6944444444vw);
}
#toc_container .toc_list li:before,
#ez-toc-container .toc_list li:before {
  content: counter(step-counter, decimal-leading-zero);
  font-family: "Public Sans";
  font-size: max(20px, 1.3888888889vw);
  position: absolute;
  left: 0;
  top: 0;
  color: #FFAC54;
  font-weight: bold;
}

.el_single_pager {
  display: flex;
  justify-content: center;
  gap: max(60px, 4.1666666667vw);
  margin-top: max(60px, 4.1666666667vw);
  align-items: center;
}
@media screen and (width <= 767px) {
  .el_single_pager {
    gap: max(25px, 1.7361111111vw);
  }
}
.el_single_pager .el_btnNormal {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(18px, 1.25vw);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: max(0.36px, 0.025vw);
  text-decoration-line: underline;
}
@media (hover: hover) {
  .el_single_pager .el_btnNormal {
    transition: 0.5s;
  }
  .el_single_pager .el_btnNormal:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 370px) {
  .el_single_pager .el_btnNormal {
    font-size: max(14px, 0.9722222222vw);
  }
}
.el_single_pager .el_single_pager_item a {
  display: flex;
  align-items: center;
  gap: max(16px, 1.1111111111vw);
}
@media (hover: hover) {
  .el_single_pager .el_single_pager_item a {
    transition: 0.5s;
  }
  .el_single_pager .el_single_pager_item a:hover {
    opacity: 0.5;
  }
}
.el_single_pager .el_single_pager_btn {
  width: max(40px, 2.7777777778vw);
  height: max(40px, 2.7777777778vw);
  border-radius: max(100px, 6.9444444444vw);
  background: #333;
  position: relative;
}
@media screen and (width <= 767px) {
  .el_single_pager .el_single_pager_btn {
    width: max(30px, 2.0833333333vw);
    height: max(30px, 2.0833333333vw);
  }
}
.el_single_pager .el_single_pager_btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ly_blog {
  padding-bottom: 0;
}

.el_blogList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: max(32px, 2.2222222222vw);
  margin-bottom: max(60px, 4.1666666667vw);
}
@media screen and (width <= 767px) {
  .el_blogList {
    grid-template-columns: 1fr 1fr;
    gap: max(20px, 1.3888888889vw) max(8px, 0.5555555556vw);
  }
}

.el_archive_blogList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: max(60px, 4.1666666667vw) max(30px, 2.0833333333vw);
}
@media screen and (width <= 767px) {
  .el_archive_blogList {
    gap: max(60px, 4.1666666667vw) max(20px, 1.3888888889vw);
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 380px) {
  .el_archive_blogList {
    grid-template-columns: 1fr;
    gap: max(30px, 2.0833333333vw);
  }
}

@media screen and (width <= 767px) {
  .el_blogList_item a {
    display: block;
  }
}
@media (hover: hover) {
  .el_blogList_item a {
    transition: 0.5s;
  }
  .el_blogList_item a:hover {
    background: var(--bg-thin);
  }
  .el_blogList_item a:hover .el_blogList_img_img {
    transform: scale(1.1);
    transition: transform 0.6s;
  }
}

.el_blogList_img {
  margin-bottom: max(20px, 1.3888888889vw);
  border-radius: max(4px, 0.2777777778vw);
  max-width: 500px;
  width: 100%;
  aspect-ratio: 632/422;
  overflow: hidden;
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.05));
  transform: translateZ(0);
}
@media (max-width: 380px) {
  .el_blogList_img {
    margin-bottom: max(15px, 1.0416666667vw);
  }
}
.el_blogList_img img {
  border-radius: max(4px, 0.2777777778vw);
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s;
}

.el_blogList_date {
  color: var(--color-gray);
  font-size: max(14px, 0.9722222222vw);
  margin-bottom: max(6px, 0.4166666667vw);
}
@media screen and (width <= 1024px) {
  .el_blogList_date {
    font-size: max(14px, 1.3671875vw);
  }
}
@media screen and (width <= 767px) {
  .el_blogList_date {
    font-size: max(14px, 0.9722222222vw);
  }
}

.el_blogList_ttl {
  color: var(--black, #333);
  font-size: max(18px, 1.25vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.36px, 0.025vw);
  margin-bottom: max(20px, 1.3888888889vw);
}
@media screen and (width <= 767px) {
  .el_blogList_ttl {
    width: 100%;
  }
}

.el_author {
  margin-top: 0;
}
.el_author .el_author_item {
  padding: 0;
}
.el_author .el_author_item .el_author_img {
  width: max(50px, 3.4722222222vw);
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.el_author .el_author_item .el_author_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.el_author .el_author_item .el_author_img .no-img {
  border-radius: 50%;
  border: 1px solid #e1e1e1;
}
.el_author .el_author_item .el_author_nametxt {
  padding-left: max(12px, 0.8333333333vw);
}
.el_author .el_author_item .el_author_nametxt .el_author_job {
  color: var(--black, #333);
  font-size: max(12px, 0.8333333333vw);
  font-weight: 400;
  line-height: 1.5;
  width: 100%;
}
.el_author .el_author_item .el_author_nametxt .el_author_name {
  color: var(--black, #333);
  font-size: max(14px, 0.9722222222vw);
  font-weight: 400;
  line-height: 1.5;
  padding-left: 0;
  width: 100%;
}

.el_author_top {
  display: flex;
  align-items: center;
}

.el_blogList_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: max(14px, 0.9722222222vw);
}
@media screen and (width <= 767px) {
  .el_blogList_inner {
    display: grid;
    gap: max(6px, 0.4166666667vw);
  }
}
.el_blogList_inner .el_blogList_date {
  color: var(--black, #333);
  font-family: Poppins, Public Sans, Noto Sans JP;
  font-size: max(14px, 0.9722222222vw);
  font-weight: 400;
  line-height: 1;
  margin-right: max(4px, 0.2777777778vw);
}
@media screen and (width <= 767px) {
  .el_blogList_inner .el_blogList_date {
    width: 100%;
    margin-bottom: 0;
  }
}

.term-blog-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: max(6px, 0.4166666667vw);
  margin-top: max(4px, 0.2777777778vw);
}

.el_blogList_type01 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: max(6px, 0.4166666667vw);
}

.term-item {
  color: var(--orange-txt, #FFAC54);
  border: 1px solid var(--orange-txt, #FFAC54);
  font-size: max(12px, 0.8333333333vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.24px, 0.0166666667vw);
  border-radius: max(2px, 0.1388888889vw);
  padding: max(2px, 0.1388888889vw) max(8px, 0.5555555556vw);
  display: inline-block;
}
@media screen and (width <= 767px) {
  .term-item {
    font-size: max(12px, 0.8333333333vw);
    padding: max(2px, 0.1388888889vw) max(6px, 0.4166666667vw);
  }
}
.term-item:last-child {
  margin-right: 0;
}
.term-item_key {
  border: none;
}

.term-item_key {
  padding: 0;
}

.ly_blog .el_blogList_item {
  display: none;
}
@media screen and (max-width: 767px) {
  .ly_blog .el_blogList_item:nth-child(-n+4) {
    display: list-item;
  }
}
@media screen and (min-width: 768px) {
  .ly_blog .el_blogList_item:nth-child(-n+3) {
    display: list-item;
  }
}

/* single
============================== */
.un_blog .el_pageTtlPost_date {
  color: var(--black, #333);
  font-family: Poppins, Public Sans, Noto Sans JP;
  font-size: max(16px, 1.1111111111vw);
  font-weight: 400;
  line-height: 1;
}
@media screen and (width <= 767px) {
  .un_blog .el_pageTtlPost_date {
    font-size: max(14px, 0.9722222222vw);
  }
}

.el_pageTtl_blog {
  padding-top: 0;
}

.un_single_blog .el_author_item {
  border-top: 1px solid var(--orange-line, #F1D8BD);
  margin-top: max(60px, 4.1666666667vw);
  padding-top: max(40px, 2.7777777778vw);
  display: grid;
  gap: max(16px, 1.1111111111vw);
}
.un_single_blog .el_author_item .el_author_top {
  display: flex;
  align-items: center;
  gap: max(12px, 0.8333333333vw);
}
.un_single_blog .el_author_item .el_author_img {
  width: max(80px, 5.5555555556vw);
  height: max(80px, 5.5555555556vw);
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (width <= 767px) {
  .un_single_blog .el_author_item .el_author_img {
    width: max(80px, 5.5555555556vw);
    height: max(80px, 5.5555555556vw);
  }
}
.un_single_blog .el_author_item .el_author_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.un_single_blog .el_author_item .el_author_name .el_author_ttl {
  display: block;
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(14px, 0.9722222222vw);
  font-weight: 400;
  letter-spacing: max(0.28px, 0.0194444444vw);
}
@media screen and (width <= 767px) {
  .un_single_blog .el_author_item .el_author_name .el_author_ttl {
    font-size: max(14px, 0.9722222222vw);
  }
}
.un_single_blog .el_author_item .el_author_name .el_author_nametxt {
  margin-top: max(2px, 0.1388888889vw);
  padding-left: 0;
}
.un_single_blog .el_author_item .el_author_name .el_author_nametxt .el_author_job {
  font-size: max(14px, 0.9722222222vw);
  margin-right: max(8px, 0.5555555556vw);
  font-family: "Noto Sans JP";
  font-weight: 700;
  letter-spacing: max(0.28px, 0.0194444444vw);
}
@media screen and (width <= 767px) {
  .un_single_blog .el_author_item .el_author_name .el_author_nametxt .el_author_job {
    font-size: max(14px, 0.9722222222vw);
  }
}
.un_single_blog .el_author_item .el_author_name .el_author_nametxt .el_author_name {
  color: var(--black, #333);
  font-size: max(18px, 1.25vw);
  font-family: "Noto Sans JP";
  font-weight: 700;
  letter-spacing: max(0.28px, 0.0194444444vw);
}
@media screen and (width <= 767px) {
  .un_single_blog .el_author_item .el_author_name .el_author_nametxt .el_author_name {
    font-size: max(16px, 1.1111111111vw);
  }
}
.un_single_blog .el_author_item .el_author_text {
  font-size: max(16px, 1.1111111111vw);
}
@media screen and (width <= 767px) {
  .un_single_blog .el_author_item .el_author_text {
    font-size: max(14px, 0.9722222222vw);
  }
}
.un_single_blog .el_postShare {
  margin-top: max(40px, 2.7777777778vw);
  border-radius: max(4px, 0.2777777778vw);
  background: var(--orange-bg02, #FFF4E7);
  padding: max(30px, 2.0833333333vw) 0;
}
.un_single_blog .el_postShare_ttl {
  font-size: max(16px, 1.1111111111vw);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.un_single_blog .el_share_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: max(14px, 0.9722222222vw);
  gap: max(16px, 1.1111111111vw);
}
@media screen and (width <= 767px) {
  .un_single_blog .el_share_list {
    gap: max(10px, 0.6944444444vw) max(16px, 1.1111111111vw);
  }
}
@media screen and (max-width: 350px) {
  .un_single_blog .el_share_list li:first-child {
    margin-bottom: max(10px, 0.6944444444vw);
    width: 100%;
  }
  .un_single_blog .el_share_list li:first-child a {
    margin: 0 auto;
    width: max(200px, 13.8888888889vw);
  }
}
.un_single_blog .el_share_list a.un_url {
  border-radius: max(100px, 6.9444444444vw);
  background: #fff;
  color: var(--blue, #4CB1FF);
  padding: max(10px, 0.6944444444vw) max(16px, 1.1111111111vw);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.un_single_blog .el_share_list a.un_url .el_share_text {
  margin-left: max(10px, 0.6944444444vw);
  color: var(--blue, #4CB1FF);
  font-size: max(14px, 0.9722222222vw);
  font-weight: 400;
  line-height: 1;
}
.un_single_blog .el_share_list a {
  display: inline-block;
}
@media (hover: hover) {
  .un_single_blog .el_share_list a {
    transition: 0.5s;
  }
  .un_single_blog .el_share_list a:hover {
    opacity: 0.5;
  }
}

/* ===================================
monitor
=================================== */
#monitor .bl_areaList {
  border-top: 1px solid var(--orange-line, #F1D8BD);
  background-color: #fff;
  padding: max(120px, 8.3333333333vw) 0;
}
@media screen and (width <= 767px) {
  #monitor .bl_areaList {
    padding: max(60px, 4.1666666667vw) 0;
  }
}
#monitor .bl_monitor_ttl {
  display: flex;
  justify-content: center;
}
#monitor .bl_monitor_ttl .el_ttl_light {
  color: var(--black, #333);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: max(32px, 2.2222222222vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.64px, 0.0444444444vw);
}
@media screen and (width <= 767px) {
  #monitor .bl_monitor_ttl .el_ttl_light {
    font-size: max(28px, 1.9444444444vw);
  }
}
@media (max-width: 600px) {
  #monitor .bl_monitor_ttl .el_ttl_light {
    font-size: max(25px, 1.7361111111vw);
  }
}
@media (max-width: 400px) {
  #monitor .bl_monitor_ttl .el_ttl_light {
    font-size: max(20px, 1.3888888889vw);
  }
}
#monitor .bl_monitor_ttl svg {
  margin-top: -1%;
}
@media (max-width: 767px) {
  #monitor .bl_monitor_ttl svg {
    margin-top: -3%;
  }
}
@media (max-width: 400px) {
  #monitor .bl_monitor_ttl svg {
    margin-top: -6%;
  }
}
@media screen and (width <= 767px) {
  #monitor .bl_monitor_ttl svg:first-child {
    margin-right: -1%;
  }
}
@media (max-width: 400px) {
  #monitor .bl_monitor_ttl svg:first-child {
    margin-right: -2%;
    width: 10%;
  }
}
@media screen and (width <= 767px) {
  #monitor .bl_monitor_ttl svg:last-child {
    margin-left: -1%;
  }
}
@media (max-width: 400px) {
  #monitor .bl_monitor_ttl svg:last-child {
    margin-left: -2%;
    width: 10%;
  }
}
#monitor .bl_archiveClinicList_inner {
  gap: max(80px, 5.5555555556vw);
}
@media screen and (width <= 767px) {
  #monitor .bl_archiveClinicList_inner {
    gap: max(60px, 4.1666666667vw);
  }
}
#monitor .bl_cardList {
  border: unset;
  margin-bottom: max(80px, 5.5555555556vw);
  margin-top: 0;
  padding-top: 0;
}
#monitor .bl_cardList:last-child {
  margin-bottom: 0;
}
#monitor .bl_clinicList_item {
  background-color: transparent;
  padding: 0;
}
#monitor .bl_cardList_inner {
  display: block;
}
#monitor .bl_cardList_inner .monitor-item {
  display: grid;
  gap: max(30px, 2.0833333333vw);
  border-radius: max(6px, 0.4166666667vw);
  background: var(--orange-bg02, #FFF4E7);
  padding: max(40px, 2.7777777778vw) max(50px, 3.4722222222vw);
  margin-bottom: max(20px, 1.3888888889vw);
  outline: max(8px, 0.5555555556vw) solid #fff;
  outline-offset: max(-15px, -1.0416666667vw);
}
#monitor .bl_cardList_inner .monitor-item:last-child {
  margin-bottom: 0;
}
@media screen and (width <= 767px) {
  #monitor .bl_cardList_inner .monitor-item {
    outline-offset: -2vw;
    padding: max(30px, 2.0833333333vw) max(40px, 2.7777777778vw);
  }
}
@media (max-width: 500px) {
  #monitor .bl_cardList_inner .monitor-item {
    outline-offset: -3vw;
  }
}
#monitor .bl_cardList_inner .monitor-title {
  color: var(--black, #333);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: max(24px, 1.6666666667vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.48px, 0.0333333333vw);
}
@media screen and (width <= 767px) {
  #monitor .bl_cardList_inner .monitor-title {
    font-size: max(20px, 1.3888888889vw);
  }
}
#monitor .bl_cardList_inner .monitor-content_inner {
  display: grid;
  grid-template-columns: max(260px, 18.0555555556vw) 1fr;
  gap: max(30px, 2.0833333333vw);
}
@media screen and (width <= 767px) {
  #monitor .bl_cardList_inner .monitor-content_inner {
    grid-template-columns: 1fr;
    gap: max(32px, 3.125vw);
  }
}
#monitor .bl_cardList_inner .r_cnt {
  text-align: left;
}
#monitor .bl_cardList_inner .r_cnt h4 {
  margin-top: max(20px, 1.3888888889vw);
  margin-bottom: max(10px, 0.6944444444vw);
  background-color: #fff;
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(16px, 1.1111111111vw);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: max(0.32px, 0.0222222222vw);
  padding: max(2px, 0.1388888889vw) max(10px, 0.6944444444vw);
  display: inline-block;
}
#monitor .bl_cardList_inner .r_cnt h4:first-child {
  margin-top: 0;
}
#monitor .bl_cardList_inner .r_cnt p {
  font-family: "Noto Sans JP";
  font-size: max(16px, 1.1111111111vw);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: max(0.32px, 0.0222222222vw);
}
#monitor .bl_cardList_inner .r_cnt p span {
  color: var(--orange-txt, #FFAC54) !important;
  font-weight: 700;
}
#monitor .bl_cardList_inner .r_cnt p em {
  font-size: max(14px, 0.9722222222vw);
}
#monitor .bl_cardList_inner .r_cnt ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: max(19px, 1.3194444444vw);
  margin-top: max(16px, 1.1111111111vw);
}
@media screen and (width <= 1024px) {
  #monitor .bl_cardList_inner .r_cnt ul {
    grid-template-columns: 1fr;
    gap: max(5px, 0.48828125vw);
  }
}
#monitor .bl_cardList_inner .r_cnt ul li {
  display: flex;
  align-items: center;
  gap: max(10px, 0.6944444444vw);
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(16px, 1.1111111111vw);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: max(0.32px, 0.0222222222vw);
}
#monitor .bl_cardList_inner .r_cnt ul li::before {
  content: "";
  background-image: url(../img/common/list_check.svg);
  background-size: cover;
  width: max(22px, 1.5277777778vw);
  height: max(21px, 1.4583333333vw);
  display: inline-block;
}
#monitor .bl_cardList_inner .monitor-content_last {
  margin-top: max(30px, 2.0833333333vw);
  text-align: center;
}
#monitor .bl_cardList_inner .monitor-content_last p span {
  text-decoration: none !important;
  text-align: center;
  justify-content: center;
  align-items: center;
  background: linear-gradient(transparent 60%, rgba(255, 201, 144, 0.5) 60%);
  display: inline;
  position: relative;
}
#monitor .bl_cardList_inner .monitor-content_last p bold {
  font-weight: 700;
}

.AreaTitle {
  border-left: max(6px, 0.4166666667vw) solid var(--orange-txt, #FFAC54);
  padding-left: max(20px, 1.3888888889vw);
  box-sizing: border-box;
  margin-bottom: max(30px, 2.0833333333vw);
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(28px, 1.9444444444vw);
  font-weight: 700;
  line-height: 150%;
}
@media screen and (width <= 767px) {
  .AreaTitle {
    font-size: max(24px, 1.6666666667vw);
  }
}

/* ===================================
ABOUT
=================================== */
.ly_about .br_sp {
  display: none;
}
@media screen and (width <= 767px) {
  .ly_about .br_sp {
    display: block;
  }
}
.ly_about .ly_inner840 {
  max-width: max(840px, 58.3333333333vw);
}
.ly_about .el_about_catch_txt,
.ly_about .el_about_catch_last,
.ly_about .el_about_Feature_txt {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(16px, 1.1111111111vw);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: max(0.32px, 0.0222222222vw);
}
@media screen and (width <= 767px) {
  .ly_about .el_about_catch_txt,
  .ly_about .el_about_catch_last,
  .ly_about .el_about_Feature_txt {
    font-size: max(16px, 1.1111111111vw);
  }
}

.catch_balloon_box {
  text-align: center;
}

.catch_balloon {
  position: relative;
  display: inline-block;
  padding: max(8px, 0.5555555556vw) max(12px, 0.8333333333vw);
  min-width: 120px;
  max-width: 100%;
  border-radius: max(8px, 0.5555555556vw);
  background: var(--orange-txt, #FFAC54);
  color: var(--white, #FFF);
  font-size: max(22px, 1.5277777778vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.4px, 0.0277777778vw);
}
@media screen and (width <= 767px) {
  .catch_balloon {
    font-size: max(18px, 1.25vw);
  }
}

.catch_balloon:before {
  content: "";
  position: absolute;
  top: 97%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #FFAC54;
}

.ly_about .el_ttl_light {
  position: relative;
  color: var(--black, #333);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: max(32px, 2.2222222222vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.64px, 0.0444444444vw);
  margin-top: max(22px, 1.5277777778vw);
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (width <= 1024px) {
  .ly_about .el_ttl_light {
    font-size: max(30px, 2.9296875vw);
  }
}
@media screen and (width <= 767px) {
  .ly_about .el_ttl_light {
    font-size: max(28px, 1.9444444444vw);
  }
}
@media (max-width: 500px) {
  .ly_about .el_ttl_light {
    font-size: max(24px, 1.6666666667vw);
  }
}
.ly_about .el_ttl_light svg {
  position: absolute;
  top: -40%;
}
@media screen and (width <= 767px) {
  .ly_about .el_ttl_light svg {
    top: -22%;
  }
}
.ly_about .el_ttl_light svg:first-child {
  left: -4%;
}
@media screen and (width <= 767px) {
  .ly_about .el_ttl_light svg:first-child {
    left: -8%;
  }
}
.ly_about .el_ttl_light svg:last-child {
  right: -3%;
}
@media screen and (width <= 767px) {
  .ly_about .el_ttl_light svg:last-child {
    right: -5%;
  }
}
.ly_about .el_about_catch_txt {
  margin-top: max(60px, 4.1666666667vw);
  display: grid;
  gap: max(20px, 1.3888888889vw);
}
.ly_about .el_about_catch_list {
  margin-top: max(30px, 2.0833333333vw);
  border-radius: max(6px, 0.4166666667vw);
  background: var(--orange-bg02, #FFF4E7);
  padding: max(40px, 2.7777777778vw) max(50px, 3.4722222222vw);
  display: grid;
  gap: max(24px, 1.6666666667vw);
}
@media screen and (width <= 767px) {
  .ly_about .el_about_catch_list {
    padding: max(40px, 2.7777777778vw) max(20px, 1.3888888889vw);
  }
}
.ly_about .el_about_catch_list li {
  display: flex;
  align-items: center;
  gap: max(12px, 0.8333333333vw);
  border-bottom: 1px solid var(--orange-line, #F1D8BD);
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(18px, 1.25vw);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: max(0.36px, 0.025vw);
  padding-bottom: max(20px, 1.3888888889vw);
}
.ly_about .el_about_catch_list li img {
  width: max(34px, 2.3611111111vw);
  height: max(32px, 2.2222222222vw);
}
@media screen and (width <= 767px) {
  .ly_about .el_about_catch_list li {
    font-size: max(16px, 1.1111111111vw);
  }
}
.ly_about .el_about_catch_last {
  margin-top: max(20px, 1.3888888889vw);
}
@media screen and (width <= 767px) {
  .ly_about .el_about_catch_last {
    margin-top: max(30px, 2.0833333333vw);
  }
}

.ly_about_Feature {
  padding-top: max(120px, 8.3333333333vw);
  padding-bottom: max(120px, 8.3333333333vw);
}
@media screen and (width <= 767px) {
  .ly_about_Feature {
    padding-top: max(60px, 4.1666666667vw);
    padding-bottom: max(60px, 4.1666666667vw);
  }
}
.ly_about_Feature .el_about_Feature_txt {
  text-align: center;
  color: var(--black, #333);
}
@media (max-width: 600px) {
  .ly_about_Feature .el_about_Feature_txt {
    text-align: left;
  }
}

.ly_about_flow {
  padding-top: max(120px, 8.3333333333vw);
  padding-bottom: max(120px, 8.3333333333vw);
}
@media screen and (width <= 767px) {
  .ly_about_flow {
    padding-top: max(60px, 4.1666666667vw);
    padding-bottom: max(60px, 4.1666666667vw);
  }
}
.ly_about_flow .bl_flowList img {
  width: max(352px, 24.4444444444vw);
}
@media screen and (width <= 767px) {
  .ly_about_flow .bl_flowList img {
    width: 100%;
  }
}
.ly_about_flow .bl_flowList .bl_flowList_item {
  display: grid;
  grid-template-columns: max(352px, 24.4444444444vw) 1fr;
  gap: max(40px, 2.7777777778vw);
  align-items: center;
  margin-top: max(60px, 4.1666666667vw);
}
@media screen and (width <= 1024px) {
  .ly_about_flow .bl_flowList .bl_flowList_item {
    grid-template-columns: max(300px, 20.8333333333vw) 1fr;
  }
}
@media screen and (width <= 767px) {
  .ly_about_flow .bl_flowList .bl_flowList_item {
    grid-template-columns: 1fr;
    gap: max(20px, 1.3888888889vw);
  }
}
.ly_about_flow .bl_flowList .bl_flowList_item:first-child {
  margin-top: 0;
}
.ly_about_flow .bl_flowList .bl_flowList_item .bl_item_r .el_r_ttl {
  display: flex;
  gap: max(8px, 0.5555555556vw);
}
.ly_about_flow .bl_flowList .bl_flowList_item .bl_item_r .el_r_ttl .el_num {
  font-family: "Public Sans";
  color: var(--orange-txt, #FFAC54);
  font-size: max(36px, 2.5vw);
  font-weight: 700;
  line-height: 1;
}
@media screen and (width <= 767px) {
  .ly_about_flow .bl_flowList .bl_flowList_item .bl_item_r .el_r_ttl .el_num {
    font-size: max(30px, 2.0833333333vw);
  }
}
.ly_about_flow .bl_flowList .bl_flowList_item .bl_item_r .el_r_ttl .el_sentence {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(24px, 1.6666666667vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.48px, 0.0333333333vw);
}
@media screen and (width <= 767px) {
  .ly_about_flow .bl_flowList .bl_flowList_item .bl_item_r .el_r_ttl .el_sentence {
    font-size: max(20px, 1.3888888889vw);
  }
}
.ly_about_flow .bl_flowList .bl_flowList_item .bl_item_r .el_r_txt {
  margin-top: max(30px, 2.0833333333vw);
}
@media screen and (width <= 767px) {
  .ly_about_flow .bl_flowList .bl_flowList_item .bl_item_r .el_r_txt {
    margin-top: max(15px, 1.0416666667vw);
  }
}
.ly_about_flow .bl_flowList .bl_flowList_item .bl_item_r .el_reserveList {
  margin-top: max(30px, 2.0833333333vw);
}
@media screen and (width <= 1024px) {
  .ly_about_flow .bl_flowList .bl_flowList_item .bl_item_r .el_reserveList {
    display: block;
  }
}
.ly_about_flow .bl_flowList .bl_flowList_item .bl_item_r .el_reserveList .el_reserveList_line,
.ly_about_flow .bl_flowList .bl_flowList_item .bl_item_r .el_reserveList .el_reserveList_web {
  width: max(240px, 16.6666666667vw);
}
@media screen and (width <= 767px) {
  .ly_about_flow .bl_flowList .bl_flowList_item .bl_item_r .el_reserveList .el_reserveList_line,
  .ly_about_flow .bl_flowList .bl_flowList_item .bl_item_r .el_reserveList .el_reserveList_web {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
}
@media screen and (width <= 1024px) {
  .ly_about_flow .bl_flowList .bl_flowList_item .bl_item_r .el_reserveList .el_reserveList_web {
    margin-bottom: max(12px, 0.8333333333vw);
  }
}
@media screen and (width <= 767px) {
  .ly_about_flow .bl_flowList .bl_flowList_item .bl_item_r .el_reserveList .el_reserveList_web {
    margin-bottom: max(12px, 0.8333333333vw);
  }
}
.ly_about_flow .bl_box {
  border-radius: max(4px, 0.2777777778vw);
  background: var(--orange-bg02, #FFF4E7);
  padding: max(40px, 2.7777777778vw) max(30px, 2.0833333333vw);
  text-align: center;
  display: grid;
  gap: max(24px, 1.6666666667vw);
}
.ly_about_flow .bl_box_ttl {
  color: var(--black, #333);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: max(20px, 1.3888888889vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.4px, 0.0277777778vw);
  padding-bottom: unset;
  margin-top: unset;
  border-bottom: unset;
}
@media screen and (width <= 767px) {
  .ly_about_flow .bl_box_ttl {
    font-size: max(20px, 1.3888888889vw);
  }
}
.ly_about_flow .bl_box_txt {
  margin-top: 0;
}
@media (max-width: 600px) {
  .ly_about_flow .bl_box_txt {
    text-align: left;
  }
}
.ly_about_flow .bl_box_subtxt {
  font-size: max(14px, 0.9722222222vw);
  margin-top: 0;
}
@media (max-width: 600px) {
  .ly_about_flow .bl_box_subtxt {
    font-size: max(14px, 0.9722222222vw);
    text-align: left;
  }
}
.ly_about_flow .bl_box_minor {
  margin-top: max(120px, 8.3333333333vw);
}
@media screen and (width <= 767px) {
  .ly_about_flow .bl_box_minor {
    margin-top: max(120px, 8.3333333333vw);
  }
}
.ly_about_flow .bl_box_minor .bl_box_minor_ttl {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(24px, 1.6666666667vw);
}
@media screen and (width <= 767px) {
  .ly_about_flow .bl_box_minor .bl_box_minor_ttl {
    font-size: max(24px, 1.6666666667vw);
  }
}
.ly_about_flow .bl_box_minor a {
  color: var(--white, #FFF);
  font-family: "Noto Sans JP";
  font-size: max(16px, 1.1111111111vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.32px, 0.0222222222vw);
  background-color: #333;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: max(12px, 0.8333333333vw) max(36px, 2.5vw);
  border-radius: max(100px, 6.9444444444vw);
  border: 1px solid transparent;
  transition: 0.3s;
}
@media screen and (width <= 767px) {
  .ly_about_flow .bl_box_minor a {
    font-size: max(16px, 1.1111111111vw);
    padding: max(12px, 0.8333333333vw) max(36px, 2.5vw);
  }
}
@media (max-width: 620px) {
  .ly_about_flow .bl_box_minor a {
    padding: max(12px, 0.8333333333vw) max(20px, 1.3888888889vw);
  }
}
@media (hover: hover) {
  .ly_about_flow .bl_box_minor a:hover {
    border: 1px solid #333;
    background-color: #fff;
    color: #333;
    transition: 0.3s;
  }
  .ly_about_flow .bl_box_minor a:hover .icon .arrow {
    fill: #333;
    transition: 0.3s;
  }
  .ly_about_flow .bl_box_minor a:hover .icon .box {
    stroke: #333;
    transition: 0.3s;
  }
}
.ly_about_flow .bl_box_payment {
  margin-top: max(40px, 2.7777777778vw);
}
.ly_about_flow .wp-block-table {
  max-width: max(750px, 52.0833333333vw);
  width: 100%;
  margin: 0 auto;
}
@media screen and (width <= 767px) {
  .ly_about_flow .wp-block-table {
    width: 100%;
  }
}
.ly_about_flow .wp-block-table .has-fixed-layout td {
  text-align: left;
  padding: max(16px, 1.1111111111vw) max(20px, 1.3888888889vw) !important;
}
.ly_about_flow .wp-block-table .has-fixed-layout td:nth-of-type(1) {
  vertical-align: middle;
  text-align: center;
}
.ly_about_flow .wp-block-table .has-fixed-layout td .span-txt-top {
  margin-bottom: max(16px, 1.1111111111vw);
}
.ly_about_flow .wp-block-table .has-fixed-layout .bl_box_payment_Qr {
  display: flex;
  width: 100%;
  align-items: center;
  gap: max(6px, 0.4166666667vw);
}
.ly_about_flow .wp-block-table .has-fixed-layout .el_credit_img {
  width: max(375px, 26.0416666667vw);
  margin-bottom: max(12px, 0.8333333333vw);
}
.ly_about_flow .wp-block-table .has-fixed-layout .el_paypay_img {
  width: max(41px, 2.8472222222vw);
}

/* ===================================
Card
=================================== */
.el_aboutList .el_aboutList_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: max(32px, 2.2222222222vw);
  margin-top: max(80px, 5.5555555556vw);
  margin-bottom: max(80px, 5.5555555556vw);
}
@media screen and (width <= 767px) {
  .el_aboutList .el_aboutList_list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: max(40px, 2.7777777778vw);
    margin-bottom: max(40px, 2.7777777778vw);
  }
}
.el_aboutList .el_aboutList_list .el_aboutList_item {
  display: flex;
  flex-direction: column;
}
.el_aboutList .el_aboutList_list .el_aboutList_item .el_aboutList_ttlBox {
  display: flex;
  align-items: center;
  gap: max(16px, 1.1111111111vw);
}
.el_aboutList .el_aboutList_list .el_aboutList_item .el_aboutList_ttlBox img {
  width: max(85px, 5.9027777778vw);
  height: max(85px, 5.9027777778vw);
}
.el_aboutList .el_aboutList_list .el_aboutList_item .el_aboutList_ttlBox .el_aboutList_ttl {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(20px, 1.3888888889vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.4px, 0.0277777778vw);
}
@media screen and (width <= 767px) {
  .el_aboutList .el_aboutList_list .el_aboutList_item .el_aboutList_ttlBox .el_aboutList_ttl {
    font-size: max(18px, 1.25vw);
  }
}
.el_aboutList .el_aboutList_list .el_aboutList_item .el_aboutList_cntBox {
  border-radius: max(4px, 0.2777777778vw);
  background: var(--white, #FFF);
  box-shadow: max(5px, 0.3472222222vw) max(5px, 0.3472222222vw) 0px 0px rgba(0, 0, 0, 0.05);
  padding: max(20px, 1.3888888889vw);
  margin-top: max(24px, 1.6666666667vw);
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (width <= 767px) {
  .el_aboutList .el_aboutList_list .el_aboutList_item .el_aboutList_cntBox {
    margin-top: max(12px, 0.8333333333vw);
  }
}
.el_aboutList .el_aboutList_list .el_aboutList_item .el_aboutList_cntBox p .el_aboutList_cntBold {
  font-weight: 700;
}

.pg_top .wave_bg {
  width: 100%;
  height: 100%;
}
.pg_top .ly_about {
  margin-top: max(-9px, -0.625vw);
}
@media screen and (width <= 767px) {
  .pg_top .ly_about {
    margin-top: max(-8.5px, -0.5902777778vw);
  }
}
.pg_top .el_aboutList .el_aboutList_list {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
  margin-bottom: max(60px, 4.1666666667vw);
  gap: max(26px, 1.8055555556vw);
}
@media screen and (width <= 767px) {
  .pg_top .el_aboutList .el_aboutList_list {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ===================================
DOCTOR
=================================== */
.doctor-nav {
  padding-top: max(100px, 6.9444444444vw);
  padding-bottom: max(100px, 6.9444444444vw);
}
@media screen and (width <= 767px) {
  .doctor-nav {
    padding-top: max(60px, 4.1666666667vw);
    padding-bottom: max(60px, 4.1666666667vw);
  }
}
.doctor-nav .doctor-nav_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: max(24px, 1.6666666667vw) max(24px, 1.6666666667vw);
}
@media screen and (width <= 1024px) {
  .doctor-nav .doctor-nav_list {
    grid-template-columns: repeat(2, 1fr);
    gap: max(20px, 1.3888888889vw) max(18px, 1.25vw);
  }
}
@media (max-width: 360px) {
  .doctor-nav .doctor-nav_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.doctor-nav .doctor-nav_list li {
  border-radius: 4px;
  background: var(--white, #FFF);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
  position: relative;
}
.doctor-nav .doctor-nav_list li a {
  font-size: max(14px, 0.9722222222vw);
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.5;
  transition: 0.5s;
  font-weight: bold;
  padding: max(20px, 0.9722222222vw);
}
@media (hover: hover) {
  .doctor-nav .doctor-nav_list li a:hover {
    opacity: 0.5;
    transition: 0.5s;
  }
}
.doctor-nav .doctor-nav_list li a span {
  position: relative;
  display: block;
  transition: 0.5s;
  min-width: max(20px, 1.3888888889vw);
}

/* ===================================
clinicList クリニック紹介
=================================== */
.bl_clinicList_bg {
  background-color: #FFf;
  width: 100%;
}
.bl_clinicList_bg svg {
  width: 100%;
  height: auto;
}

.bl_clinicList {
  margin-top: max(-8.5px, -0.5902777778vw);
  padding: max(60px, 4.1666666667vw) 0 max(120px, 8.3333333333vw);
  background: var(--orange-bg01, #FFC990);
}
@media screen and (width <= 767px) {
  .bl_clinicList {
    margin-top: -3px;
  }
}
.bl_clinicList_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: max(20px, 1.3888888889vw);
}
@media (max-width: 1000px) {
  .bl_clinicList_inner {
    grid-template-columns: 1fr;
  }
}
.bl_clinicList_inner .bl_clinicList_item {
  background: #fff;
  padding: max(20px, 1.3888888889vw);
  border-radius: max(4px, 0.2777777778vw);
}
.bl_clinicList_inner .bl_clinicList_item_upper .bl_clinicList_item_ttl {
  font-size: max(20px, 1.3888888889vw);
  font-weight: 700;
  line-height: 1.5;
  color: #333;
  text-align: center;
  margin-bottom: max(24px, 1.6666666667vw);
}
.bl_clinicList_inner .bl_clinicList_item_lower {
  display: grid;
  grid-template-columns: max(180px, 12.5vw) 1fr;
  gap: max(12px, 0.8333333333vw);
}
@media (max-width: 1000px) {
  .bl_clinicList_inner .bl_clinicList_item_lower {
    grid-template-columns: max(300px, 20.8333333333vw) 1fr;
  }
}
@media (max-width: 767px) {
  .bl_clinicList_inner .bl_clinicList_item_lower {
    grid-template-columns: 1fr;
  }
}
.bl_clinicList_inner .bl_clinicList_item_lower_sp {
  display: grid;
  gap: max(12px, 0.8333333333vw);
}
@media (max-width: 767px) {
  .bl_clinicList_inner .bl_clinicList_item_lower_sp {
    gap: max(12px, 0.8333333333vw);
    grid-template-columns: max(100px, 6.9444444444vw) 1fr;
  }
}
.bl_clinicList_inner .bl_clinicList_item_lower_sp .bl_clinicList_item_imgContainer {
  overflow: hidden;
}
.bl_clinicList_inner .bl_clinicList_item_lower_sp .bl_clinicList_item_imgContainer img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media (max-width: 1000px) {
  .bl_clinicList_inner .bl_clinicList_item_lower_sp .bl_clinicList_item_imgContainer {
    width: 100%;
    height: max(300px, 20.8333333333vw);
  }
}
@media screen and (width <= 767px) {
  .bl_clinicList_inner .bl_clinicList_item_lower_sp .bl_clinicList_item_imgContainer {
    width: 100%;
    height: 100%;
  }
}
.bl_clinicList_inner .bl_clinicList_item_lower_sp .bl_clinicList_ttl_flex {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: max(12px, 0.8333333333vw);
}
.bl_clinicList_inner .bl_clinicList_item_lower_sp .bl_clinicList_ttl_flex .bl_clinicList_item_ttl {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(18px, 1.25vw);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.36px, 0.025vw);
}
.bl_clinicList_inner .bl_clinicList_item_lower_sp_right .bl_clinicList_item_infoContainer {
  display: grid;
  gap: max(14px, 0.9722222222vw);
}
.bl_clinicList_inner .bl_clinicList_item_lower_sp_right .bl_clinicList_item_infoContainer .el_clinicList_item_infoContainer_item_txt {
  font-size: max(14px, 0.9722222222vw);
  line-height: 1.5;
  letter-spacing: max(0.28px, 0.0194444444vw);
}
.bl_clinicList_inner .bl_clinicList_item_lower_sp_right .bl_clinicList_item_infoContainer .bl_clinicList_item_infoContainer_item {
  display: grid;
  grid-template-columns: max(14px, 0.9722222222vw) 1fr;
  gap: max(6px, 0.4166666667vw);
  font-size: max(14px, 0.9722222222vw);
}
.bl_clinicList_inner .bl_clinicList_item_lower_sp_right .bl_clinicList_item_infoContainer .bl_clinicList_item_infoContainer_item img {
  padding-top: max(6px, 0.4166666667vw);
}
.bl_clinicList_inner .bl_clinicList_item_lower_sp_right .bl_clinicList_item_infoContainer .bl_clinicList_item_infoContainer_item .el_clinicList_item_infoContainer_item_tell {
  transition: 0.3s;
}
@media (hover: hover) {
  .bl_clinicList_inner .bl_clinicList_item_lower_sp_right .bl_clinicList_item_infoContainer .bl_clinicList_item_infoContainer_item .el_clinicList_item_infoContainer_item_tell:hover {
    opacity: 0.7;
    transition: 0.3s;
  }
}
.bl_clinicList_inner .bl_clinicList_item_lower .bl_clinicSnsContainer {
  display: flex;
  gap: max(16px, 1.1111111111vw);
  justify-content: left;
}
.bl_clinicList_inner .bl_clinicList_item_lower .bl_clinicSnsContainer a {
  width: max(22px, 1.5277777778vw);
  height: max(22px, 1.5277777778vw);
  transition: 0.3s;
}
@media (hover: hover) {
  .bl_clinicList_inner .bl_clinicList_item_lower .bl_clinicSnsContainer a:hover {
    opacity: 0.7;
    transition: 0.3s;
  }
}

.ly_footer .bl_clinicList_item_imgContainer {
  overflow: hidden;
  aspect-ratio: 1/1;
  width: 100%;
}

.single_pg_doctor {
  /* === 共通スタイル === */
  /* === 経歴・所属学会セクション === */
}
.single_pg_doctor .bl_commonBreadcrumbContainer {
  margin-left: max(40px, 2.7777777778vw);
}
@media screen and (width <= 767px) {
  .single_pg_doctor .bl_commonBreadcrumbContainer {
    margin-left: max(20px, 1.3888888889vw);
  }
}
.single_pg_doctor .pc_no {
  display: none;
}
@media (max-width: 1024px) {
  .single_pg_doctor .pc_no {
    display: block;
  }
}
.single_pg_doctor .sp_no {
  display: block;
}
@media (max-width: 1024px) {
  .single_pg_doctor .sp_no {
    display: none;
  }
}
.single_pg_doctor .ly_profile {
  padding: max(100px, 6.9444444444vw) 0 max(120px, 8.3333333333vw);
  border-bottom: 1px solid var(--orange-bg01, #FFC990);
}
@media screen and (width <= 767px) {
  .single_pg_doctor .ly_profile {
    padding: 0 0 max(60px, 4.1666666667vw);
  }
}
.single_pg_doctor .ly_profile .bl_profileCnt_item {
  display: grid;
  grid-template-columns: max(384px, 26.6666666667vw) 1fr;
  gap: max(56px, 3.8888888889vw);
  align-items: center;
}
@media (max-width: 1024px) {
  .single_pg_doctor .ly_profile .bl_profileCnt_item {
    grid-template-columns: max(300px, 20.8333333333vw) 1fr;
    gap: max(40px, 2.7777777778vw);
  }
}
@media (max-width: 825px) {
  .single_pg_doctor .ly_profile .bl_profileCnt_item {
    display: flex;
    flex-direction: column;
    gap: max(56px, 3.8888888889vw);
  }
}
@media (max-width: 1024px) {
  .single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_l {
    width: 100%;
  }
}
.single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_l img {
  width: 100%;
  border-radius: max(10px, 0.6944444444vw);
}
@media (max-width: 1024px) {
  .single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_l img {
    margin: 0 auto;
    max-width: max(500px, 34.7222222222vw);
  }
}
@media (max-width: 767px) {
  .single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_l img {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_l .profile-img {
    order: 2;
  }
}
.single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_r {
  min-width: 0;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_r {
    width: 100%;
  }
}
.single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_r .el_profile_job {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(18px, 1.25vw);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.36px, 0.025vw);
  margin-bottom: max(4px, 0.2777777778vw);
}
.single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_r .el_profile_name {
  display: flex;
  align-items: baseline;
  gap: max(8px, 0.5555555556vw);
  padding-bottom: max(20px, 1.3888888889vw);
  border-bottom: 2px dashed var(--orange-txt, #FFAC54);
  flex-wrap: wrap;
}
.single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_r .el_profile_ttl {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(40px, 2.7777777778vw);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.8px, 0.0555555556vw);
}
@media screen and (width <= 767px) {
  .single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_r .el_profile_ttl {
    font-size: max(32px, 2.2222222222vw);
  }
}
.single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_r .el_profile_name_en {
  color: var(--black, #333);
  font-family: Poppins, Public Sans, Noto Sans JP;
  font-size: max(16px, 1.1111111111vw);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_r .el_profile_txt {
  font-size: max(24px, 1.6666666667vw);
  line-height: 1.8;
  color: #333;
}
@media (max-width: 1024px) {
  .single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_r .el_profile_txt {
    order: 4;
  }
}
.single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_r .el_profile_txt p {
  font-size: max(16px, 1.1111111111vw);
}
.single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_r .el_profile_contact {
  margin-top: max(60px, 4.1666666667vw);
  background: var(--orange-bg02, #FFF4E7);
  padding: max(40px, 2.7777777778vw) max(60px, 4.1666666667vw);
  display: grid;
  grid-template-columns: 1fr;
  gap: max(24px, 1.6666666667vw);
}
@media screen and (width <= 1024px) {
  .single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_r .el_profile_contact {
    padding: max(40px, 2.7777777778vw) max(40px, 2.7777777778vw);
  }
}
@media screen and (width <= 767px) {
  .single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_r .el_profile_contact {
    padding: max(40px, 2.7777777778vw) max(20px, 1.3888888889vw);
  }
}
@media (max-width: 350px) {
  .single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_r .el_profile_contact {
    padding: max(30px, 2.0833333333vw) max(14px, 0.9722222222vw);
  }
}
.single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_r .el_profile_contact .el_reserveList {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  gap: max(12px, 0.8333333333vw);
}
@media screen and (width <= 767px) {
  .single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_r .el_profile_contact .el_reserveList {
    margin: 0 auto;
    padding: 0 max(20px, 1.3888888889vw);
    max-width: max(300px, 20.8333333333vw);
  }
}
.single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_r .el_profile_contact p {
  text-align: center;
  color: var(--black, #333);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: max(20px, 1.3888888889vw);
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: max(0.4px, 0.0277777778vw);
}
@media screen and (width <= 767px) {
  .single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_r .el_profile_contact p {
    font-size: max(18px, 1.25vw);
  }
}
@media (max-width: 380px) {
  .single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_r .el_profile_contact p {
    font-size: max(16px, 1.1111111111vw);
  }
  .single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_r .el_profile_contact p svg {
    width: max(15px, 1.0416666667vw);
    height: max(15px, 1.0416666667vw);
  }
}
.single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_r .el_profile_contact p svg {
  position: relative !important;
  bottom: -25% !important;
}
.single_pg_doctor .ly_profile .bl_profileCnt_item .bl_profile_r .el_profile_contact p svg:last-child {
  left: max(-8px, -0.5555555556vw) !important;
}
.single_pg_doctor #message {
  padding-bottom: max(120px, 8.3333333333vw);
}
@media screen and (width <= 767px) {
  .single_pg_doctor #message {
    padding-bottom: max(60px, 4.1666666667vw);
  }
}
.single_pg_doctor #message .el_profile_txt_ttl {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(24px, 1.6666666667vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.48px, 0.0333333333vw);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: max(8px, 0.5555555556vw);
}
@media screen and (width <= 767px) {
  .single_pg_doctor #message .el_profile_txt_ttl {
    font-size: max(20px, 1.3888888889vw);
  }
}
.single_pg_doctor #message .el_profile_txt_txt {
  margin-top: max(40px, 2.7777777778vw);
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(16px, 1.1111111111vw);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: max(0.32px, 0.0222222222vw);
}
.single_pg_doctor .ly_historyAcademic .ly_historyAcademic_inner {
  display: flex;
  margin-inline: auto;
  gap: max(32px, 2.2222222222vw);
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .single_pg_doctor .ly_historyAcademic .ly_historyAcademic_inner {
    display: block;
  }
}
.single_pg_doctor .ly_history,
.single_pg_doctor .ly_academic,
.single_pg_doctor .ly_media {
  width: 47%;
  background-color: #fff;
  padding: max(24px, 1.6666666667vw);
  max-width: max(484px, 33.6111111111vw);
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 767px) {
  .single_pg_doctor .ly_history,
  .single_pg_doctor .ly_academic,
  .single_pg_doctor .ly_media {
    width: 100%;
    max-width: max(768px, 53.3333333333vw);
  }
}
.single_pg_doctor .ly_history .bl_topRecommendSec_ttlContainer,
.single_pg_doctor .ly_academic .bl_topRecommendSec_ttlContainer,
.single_pg_doctor .ly_media .bl_topRecommendSec_ttlContainer {
  margin-bottom: max(24px, 1.6666666667vw);
}
.single_pg_doctor .ly_history .bl_topRecommendSec_ttlContainer .el_commonSectionTtl_ttl_ttl,
.single_pg_doctor .ly_academic .bl_topRecommendSec_ttlContainer .el_commonSectionTtl_ttl_ttl,
.single_pg_doctor .ly_media .bl_topRecommendSec_ttlContainer .el_commonSectionTtl_ttl_ttl {
  color: var(--black, #333);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: max(18px, 1.25vw);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.36px, 0.025vw);
}
.single_pg_doctor .ly_history .bl_infomationCnt,
.single_pg_doctor .ly_academic .bl_infomationCnt,
.single_pg_doctor .ly_media .bl_infomationCnt {
  font-size: max(24px, 1.6666666667vw);
  line-height: 1.8;
}
.single_pg_doctor .ly_history .bl_infomationCnt dl,
.single_pg_doctor .ly_academic .bl_infomationCnt dl,
.single_pg_doctor .ly_media .bl_infomationCnt dl {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: max(83px, 5.7638888889vw) 1fr;
  gap: max(20px, 1.3888888889vw) max(0px, 0vw);
}
.single_pg_doctor .ly_history .bl_infomationCnt dt,
.single_pg_doctor .ly_academic .bl_infomationCnt dt,
.single_pg_doctor .ly_media .bl_infomationCnt dt {
  font-weight: 400;
  font-size: max(16px, 1.1111111111vw);
  line-height: 1.5;
  border-bottom: 1px solid var(--orange-line, #F1D8BD);
  padding-bottom: max(20px, 1.3888888889vw);
}
.single_pg_doctor .ly_history .bl_infomationCnt dt:last-child,
.single_pg_doctor .ly_academic .bl_infomationCnt dt:last-child,
.single_pg_doctor .ly_media .bl_infomationCnt dt:last-child {
  border-bottom: none;
}
@media (max-width: 767px) {
  .single_pg_doctor .ly_history .bl_infomationCnt dt,
  .single_pg_doctor .ly_academic .bl_infomationCnt dt,
  .single_pg_doctor .ly_media .bl_infomationCnt dt {
    font-size: max(16px, 1.1111111111vw);
  }
}
.single_pg_doctor .ly_history .bl_infomationCnt dd,
.single_pg_doctor .ly_academic .bl_infomationCnt dd,
.single_pg_doctor .ly_media .bl_infomationCnt dd {
  font-size: max(16px, 1.1111111111vw);
  border-bottom: 1px solid var(--orange-line, #F1D8BD);
  padding-bottom: max(20px, 1.3888888889vw);
}
.single_pg_doctor .ly_history .bl_infomationCnt dd:last-child,
.single_pg_doctor .ly_academic .bl_infomationCnt dd:last-child,
.single_pg_doctor .ly_media .bl_infomationCnt dd:last-child {
  border-bottom: none;
}
.single_pg_doctor .ly_history .bl_infomationCnt ul li,
.single_pg_doctor .ly_academic .bl_infomationCnt ul li,
.single_pg_doctor .ly_media .bl_infomationCnt ul li {
  font-size: max(16px, 1.1111111111vw);
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: max(10px, 0.6944444444vw);
}
.single_pg_doctor .ly_history .bl_infomationCnt ul li:last-child,
.single_pg_doctor .ly_academic .bl_infomationCnt ul li:last-child,
.single_pg_doctor .ly_media .bl_infomationCnt ul li:last-child {
  margin-bottom: 0;
}
.single_pg_doctor .ly_history .bl_infomationCnt dl dt:last-of-type,
.single_pg_doctor .ly_academic .bl_infomationCnt dl dt:last-of-type,
.single_pg_doctor .ly_media .bl_infomationCnt dl dt:last-of-type {
  border-bottom: none;
}
@media screen and (width <= 767px) {
  .single_pg_doctor .ly_history,
  .single_pg_doctor .ly_media {
    margin-bottom: max(32px, 2.2222222222vw);
  }
}
.single_pg_doctor .ly_case {
  padding-bottom: 0;
}
.single_pg_doctor .ly_case .custom-button {
  width: max(290px, 20.1388888889vw);
}
.single_pg_doctor .ly_case .custom-button .custom-button_inner {
  width: max(282px, 19.5833333333vw);
}
.single_pg_doctor .bl_areaList .bl_clinicList_item {
  padding: 0 !important;
  background-color: transparent !important;
}
.single_pg_doctor .bl_areaList .bl_clinicList_item .bl_clinicList_item_ttl {
  margin-bottom: 0;
}

.ly_snsbox {
  border-radius: 4px;
  background: var(--orange-bg02, #FFF4E7);
  border-radius: 4px;
  outline: 3px solid var(--white, #FFF);
  outline-offset: max(-13px, -0.9027777778vw);
  padding: max(50px, 3.4722222222vw) max(40px, 2.7777777778vw);
  box-sizing: border-box;
  display: grid;
  gap: max(30px, 2.0833333333vw);
  margin-top: max(120px, 8.3333333333vw);
}
@media screen and (width <= 767px) {
  .ly_snsbox {
    outline-offset: max(-40px, -2.7777777778vw);
    margin-top: max(60px, 4.1666666667vw);
  }
}
.ly_snsbox .ly_sns_ttl {
  color: var(--black, #333);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: max(20px, 1.3888888889vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.4px, 0.0277777778vw);
}
@media screen and (width <= 767px) {
  .ly_snsbox .ly_sns_ttl {
    font-size: max(18px, 1.25vw);
  }
}
@media (max-width: 410px) {
  .ly_snsbox .ly_sns_ttl {
    line-height: 1.8;
  }
}
.ly_snsbox .ly_sns_ttl span {
  color: var(--black, #333);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: max(20px, 1.3888888889vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.4px, 0.0277777778vw);
  background-image: radial-gradient(circle at center, orange 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: max(20px, 1.3888888889vw) max(7px, 0.4861111111vw);
  padding-top: max(4px, 0.2777777778vw);
}
.ly_snsbox .sns-button-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: max(30px, 2.0833333333vw);
}
@media screen and (width <= 767px) {
  .ly_snsbox .sns-button-group {
    grid-template-columns: repeat(1, 1fr);
    gap: max(20px, 1.3888888889vw);
  }
}
.ly_snsbox .sns-button-group a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: max(10px, 0.6944444444vw);
  background-color: #fff;
  border-radius: 100px;
  padding: max(20px, 1.3888888889vw) 0;
  transition: 0.5s;
}
@media (hover: hover) {
  .ly_snsbox .sns-button-group a:hover {
    opacity: 0.7;
    transition: 0.5s;
  }
}
.ly_snsbox .sns-button-group a img {
  width: max(44px, 3.0555555556vw);
  height: max(44px, 3.0555555556vw);
}
.ly_snsbox .sns-button-group a span {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(16px, 1.1111111111vw);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.32px, 0.0222222222vw);
}

.ly_information .ly_access_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: max(40px, 2.7777777778vw);
  align-items: center;
}
@media screen and (width <= 1024px) {
  .ly_information .ly_access_inner {
    grid-template-columns: 1fr;
  }
}
.ly_information .bl_accessList {
  display: grid;
  grid-template-columns: 1fr;
  gap: max(20px, 1.3888888889vw);
  align-items: center;
}
.ly_information .bl_accessList_item {
  display: grid;
  grid-template-columns: max(120px, 8.3333333333vw) 1fr;
  gap: max(30px, 2.0833333333vw);
  border-bottom: 1px solid var(--orange-line, #F1D8BD);
  padding-bottom: max(20px, 1.3888888889vw);
}
@media (max-width: 500px) {
  .ly_information .bl_accessList_item {
    grid-template-columns: 35% 60%;
    gap: 5%;
  }
}
.ly_information .bl_accessList_item dt {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(16px, 1.1111111111vw);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.32px, 0.0222222222vw);
}
.ly_information .bl_accessList_item dd {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(16px, 1.1111111111vw);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: max(0.32px, 0.0222222222vw);
  width: 100%;
  word-wrap: break-word;
}
.ly_information .bl_accessList_item dd a {
  color: inherit;
  text-decoration: none;
}
.ly_information .bl_accessList_item dd a.el_accessList_item_tellBtn {
  color: #333;
  font-weight: normal;
  transition: 0.5s;
}
@media (hover: hover) {
  .ly_information .bl_accessList_item dd a.el_accessList_item_tellBtn:hover {
    opacity: 0.7;
    transition: 0.5s;
  }
}
.ly_information .bl_accessList_item_mapBtn {
  display: inline-flex;
  align-items: center;
  font-size: max(14px, 0.9722222222vw);
  margin-top: max(8px, 0.5555555556vw);
  transition: 0.5s;
}
.ly_information .bl_accessList_item_mapBtn p {
  margin-right: max(4px, 0.2777777778vw);
  color: #BBB;
}
.ly_information .bl_accessList_item_mapBtn img {
  width: max(12px, 0.8333333333vw);
  height: auto;
}
@media (hover: hover) {
  .ly_information .bl_accessList_item_mapBtn:hover {
    opacity: 0.7;
    transition: 0.5s;
  }
  .ly_information .bl_accessList_item_mapBtn:hover img {
    opacity: 0.7;
    transition: 0.5s;
  }
}
.ly_information .bl_accessInfoContainer_map iframe {
  width: 100% !important;
}
@media screen and (width <= 767px) {
  .ly_information .bl_accessInfoContainer_map iframe {
    height: 120vw !important;
  }
}

.bl_cardList {
  border-top: 1px solid var(--orange-line, #F1D8BD);
  padding-top: max(30px, 2.0833333333vw);
  margin-top: max(40px, 2.7777777778vw);
}

.bl_cardList_inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: max(20px, 1.3888888889vw);
}
@media (max-width: 950px) {
  .bl_cardList_inner {
    grid-template-columns: repeat(1, 1fr);
  }
}

.bl_cardList_ttl {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(18px, 1.25vw);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.36px, 0.025vw);
  margin-bottom: max(20px, 1.3888888889vw);
}

.bl_doctorCard {
  background-color: var(--white-bg, #FFF);
  border-radius: max(4px, 0.2777777778vw);
  transition: all 0.4s var(--reverseTransition);
  padding: max(20px, 1.3888888889vw);
  display: grid;
  grid-template-columns: max(140px, 9.7222222222vw) 1fr;
  gap: max(20px, 1.3888888889vw);
}
@media (max-width: 950px) {
  .bl_doctorCard {
    grid-template-columns: 40% 56%;
    gap: 4%;
    align-items: center;
  }
}
@media screen and (width <= 767px) {
  .bl_doctorCard {
    grid-template-columns: 40% 56%;
    gap: 4%;
  }
}
@media (max-width: 500px) {
  .bl_doctorCard {
    grid-template-columns: 1fr;
    gap: max(10px, 0.6944444444vw);
  }
}
.bl_doctorCard .doctor-box_l {
  width: 100%;
  height: 100%;
}
.bl_doctorCard .doctor-box_l img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bl_doctorCard .doctor-box_r_ttl {
  display: flex;
  justify-content: flex-start;
  align-items: anchor-center;
  gap: 0 max(8px, 0.5555555556vw);
  align-items: center;
  flex-wrap: wrap;
}
.bl_doctorCard .doctor-box_r_ttl .doctor-box_ttl {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(20px, 1.3888888889vw);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.4px, 0.0277777778vw);
  margin-bottom: max(4px, 0.2777777778vw);
}
.bl_doctorCard .doctor-box_r .doctor-box_post,
.bl_doctorCard .doctor-box_r .doctor-box_job {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(14px, 0.9722222222vw);
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}
.bl_doctorCard .doctor-box_r .doctor-box_post {
  margin-bottom: max(12px, 0.8333333333vw);
}
.bl_doctorCard .doctor-box_r .sns-button-group {
  margin-bottom: max(10px, 0.6944444444vw);
  height: max(22px, 1.5277777778vw);
}
.bl_doctorCard .doctor-box_r .sns-button-group a {
  width: max(22px, 1.5277777778vw);
  height: max(22px, 1.5277777778vw);
  display: inline-block;
  transition: 0.5s;
  margin-right: max(8px, 0.5555555556vw);
}
.bl_doctorCard .doctor-box_r .sns-button-group a:last-child {
  margin-right: 0;
}
@media (hover: hover) {
  .bl_doctorCard .doctor-box_r .sns-button-group a:hover {
    opacity: 0.7;
    transition: 0.5s;
  }
}

.bl_doctorCard_menu {
  gap: 0;
}

.ly_archiveDoctor .bl_areaList,
.ly_archiveClinic .bl_areaList,
.single_pg_doctor .bl_areaList {
  margin-top: max(80px, 5.5555555556vw);
}
.ly_archiveDoctor .bl_areaList:first-child,
.ly_archiveClinic .bl_areaList:first-child,
.single_pg_doctor .bl_areaList:first-child {
  margin-top: 0;
}

.single_pg_doctor .bl_areaList {
  margin-bottom: max(120px, 8.3333333333vw);
}
@media screen and (width <= 767px) {
  .single_pg_doctor .bl_areaList {
    margin-bottom: max(60px, 4.1666666667vw);
  }
}

.bl_areaList_ttl .el_ttl_light {
  border-left: max(6px, 0.4166666667vw) solid var(--orange-txt, #FFAC54);
  padding-left: max(20px, 1.3888888889vw);
  box-sizing: border-box;
  margin-bottom: max(30px, 2.0833333333vw);
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(28px, 1.9444444444vw);
  font-weight: 700;
  line-height: 150%;
}

.clinicCatSection .bl_archiveClinicList_inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: max(40px, 2.7777777778vw);
  padding-bottom: max(60px, 4.1666666667vw);
}
@media screen and (width <= 767px) {
  .clinicCatSection .bl_archiveClinicList_inner {
    gap: max(30px, 2.0833333333vw);
  }
}
.clinicCatSection .bl_archiveClinicList_inner .bl_clinicList_item {
  border-radius: max(4px, 0.2777777778vw);
  background: var(--orange-bg02, #FFF4E7);
  padding: max(40px, 2.7777777778vw);
}
.clinicCatSection .bl_archiveClinicList_inner .bl_clinicList_item .bl_clinicList_item_ttl {
  margin-bottom: 0;
}
@media screen and (width <= 767px) {
  .clinicCatSection .bl_archiveClinicList_inner .bl_clinicList_item .bl_clinicList_item_ttl {
    font-size: max(18px, 1.25vw);
  }
}
.clinicCatSection .bl_archiveClinicList_inner .bl_clinicList_item .bl_clinicList_item_lower {
  grid-template-columns: max(460px, 31.9444444444vw) 1fr;
  gap: max(40px, 2.7777777778vw);
}
@media (max-width: 900px) {
  .clinicCatSection .bl_archiveClinicList_inner .bl_clinicList_item .bl_clinicList_item_lower {
    grid-template-columns: 1fr max(300px, 20.8333333333vw);
  }
}
@media screen and (width <= 767px) {
  .clinicCatSection .bl_archiveClinicList_inner .bl_clinicList_item .bl_clinicList_item_lower {
    grid-template-columns: 1fr;
  }
}
.clinicCatSection .bl_archiveClinicList_inner .bl_clinicList_item .bl_clinicList_item_lower_sp {
  display: block;
}
.clinicCatSection .bl_archiveClinicList_inner .bl_clinicList_item .bl_clinicList_item_upper {
  width: -moz-fit-content;
  width: fit-content;
}
.clinicCatSection .bl_archiveClinicList_inner .bl_clinicList_item .bl_clinicList_item_upper p {
  margin-bottom: 0;
}

@media (hover: hover) {
  .un_clinic .swiper4 .swiper-slide:hover {
    pointer-events: none;
    opacity: 1;
  }
}
.un_clinic .bl_fvSlideBanner .bl_fvSlideBanner_imgContainer img {
  border-radius: 0;
  width: 100%;
}

.ly_clinicChairperson .el_chairpersonList_txt {
  margin-bottom: 0;
}
.ly_clinicChairperson .ly_snsbox {
  margin-top: max(60px, 4.1666666667vw);
}
.ly_clinicChairperson .sns-button-group {
  grid-template-columns: repeat(3, 1fr);
  gap: max(30px, 2.0833333333vw) max(30px, 2.0833333333vw);
}
@media screen and (width <= 1024px) {
  .ly_clinicChairperson .sns-button-group {
    grid-template-columns: repeat(2, 1fr);
    gap: max(30px, 2.0833333333vw) max(30px, 2.0833333333vw);
  }
}
@media screen and (width <= 767px) {
  .ly_clinicChairperson .sns-button-group {
    grid-template-columns: repeat(1, 1fr);
    gap: max(30px, 2.0833333333vw);
  }
}
.ly_clinicChairperson .sns-button-group a {
  padding: max(20px, 1.3888888889vw);
}
@media (max-width: 400px) {
  .ly_clinicChairperson .sns-button-group a img {
    width: max(30px, 2.0833333333vw);
    height: max(30px, 2.0833333333vw);
  }
}

.ly_access .access-steps {
  margin-bottom: max(60px, 4.1666666667vw);
}
.ly_access .access-steps:last-child {
  margin-bottom: 0;
}
.ly_access .access-steps h3 {
  font-family: "Shippori Mincho";
  font-size: max(20px, 1.3888888889vw);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: max(40px, 2.7777777778vw);
  padding: max(10px, 0.6944444444vw) max(20px, 1.3888888889vw);
  text-align: left;
  border-radius: 2px;
  background: var(--orange-bg02, #FFF4E7);
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(24px, 1.6666666667vw);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.48px, 0.0333333333vw);
}
.ly_access .access-steps_inner > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: max(60px, 4.1666666667vw) max(20px, 1.3888888889vw);
}
@media (max-width: 1024px) {
  .ly_access .access-steps_inner > div {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .ly_access .access-steps_inner > div {
    gap: max(16px, 1.1111111111vw);
  }
}
.ly_access .access_step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: max(24px, 1.6666666667vw);
}
@media (max-width: 767px) {
  .ly_access .access_step {
    gap: max(16px, 1.1111111111vw);
  }
}
.ly_access .step_image {
  width: 100%;
  aspect-ratio: 830/623;
}
.ly_access .step_image figure {
  width: 100%;
  height: 100%;
}
.ly_access .step_image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.ly_access .bl_access_txtWrapper {
  display: flex;
  flex-direction: column;
  gap: max(12px, 0.8333333333vw);
}
.ly_access .el_reservationContainerList_upper_num p {
  color: var(--white, #FFF);
  font-family: "Public Sans";
  font-size: max(16px, 1.1111111111vw);
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: max(0.32px, 0.0222222222vw);
}
.ly_access .step-description {
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(16px, 1.1111111111vw);
  font-style: normal;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: max(0.32px, 0.0222222222vw);
}
.ly_access .access_parking .access_parking_inner {
  padding: max(30px, 2.0833333333vw);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: max(40px, 2.7777777778vw);
  background-color: var(--white-bg);
  border-radius: max(12px, 0.8333333333vw);
}
@media (max-width: 767px) {
  .ly_access .access_parking .access_parking_inner {
    border-radius: max(6px, 0.4166666667vw);
    padding: max(24px, 1.6666666667vw);
    display: block;
    gap: 0;
  }
}
.ly_access .access_parking .access_parking_inner .access_parking_l {
  width: 60%;
}
@media (max-width: 767px) {
  .ly_access .access_parking .access_parking_inner .access_parking_l {
    width: 100%;
  }
}
.ly_access .access_parking .access_parking_inner .access_parking_l img {
  width: 100%;
  height: auto;
  border-radius: max(8px, 0.5555555556vw);
}
@media (max-width: 767px) {
  .ly_access .access_parking .access_parking_inner .access_parking_l img {
    border-radius: max(6px, 0.4166666667vw);
  }
}
.ly_access .access_parking .access_parking_inner .access_parking_r {
  width: 100%;
}
.ly_access .access_parking .access_parking_inner .access_parking_r h3 {
  font-family: "Shippori Mincho";
  font-size: max(22px, 1.5277777778vw);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: max(16px, 1.1111111111vw);
}
@media (max-width: 767px) {
  .ly_access .access_parking .access_parking_inner .access_parking_r h3 {
    margin-bottom: max(14px, 0.9722222222vw);
    margin-top: max(22px, 1.5277777778vw);
  }
}
.ly_access .access_parking .access_parking_inner .access_parking_r .el_access_txt p {
  font-size: max(16px, 1.1111111111vw);
  line-height: 1.8;
  font-weight: 400;
}
.ly_access .access_parking .access_parking_inner .access_parking_r .el_access_txt p a {
  text-decoration: underline;
  color: var(--baseFontColor);
  transition: all 0.3s var(--reverseTransition);
}
@media (hover: hover) {
  .ly_access .access_parking .access_parking_inner .access_parking_r .el_access_txt p a:hover {
    opacity: 0.6;
    transition: all 0.3s var(--reverseTransition);
  }
}

.swiper4 {
  padding-top: max(120px, 8.3333333333vw);
}
@media screen and (width <= 767px) {
  .swiper4 {
    padding-top: max(60px, 4.1666666667vw);
  }
}
.swiper4 .swiper-wrapper .swiper-slide {
  transform: scale(0.8);
  transition: 0.5s;
}
.swiper4 .swiper-wrapper .swiper-slide-active {
  transform: scale(1);
  transition: 0.5s;
}

.el_doctorList .sns-button-group {
  display: flex;
  gap: max(8px, 0.5555555556vw);
}
@media screen and (width <= 767px) {
  .el_doctorList .sns-button-group {
    gap: max(8px, 0.5555555556vw);
  }
}

/* ===================================
FAQ
=================================== */
.pg_faq .bl_menuFaqSec_inner {
  padding-top: max(80px, 5.5555555556vw);
}
@media screen and (width <= 767px) {
  .pg_faq .bl_menuFaqSec_inner {
    padding-top: max(80px, 5.5555555556vw);
  }
}
.pg_faq .bl_menuFaqSec_inner:nth-child(1) {
  padding-top: 0;
}
.pg_faq .un_faq {
  display: grid;
  gap: max(40px, 2.7777777778vw);
}
@media screen and (width <= 767px) {
  .pg_faq .un_faq {
    gap: max(40px, 2.7777777778vw);
  }
}
.pg_faq .el_secTtl {
  color: var(--black, #333);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: max(28px, 1.9444444444vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.56px, 0.0388888889vw);
}
@media screen and (width <= 767px) {
  .pg_faq .el_secTtl {
    font-size: max(24px, 1.6666666667vw);
    letter-spacing: max(0.48px, 0.0333333333vw);
  }
}

.bl_menuFaqSec .bl_commonfaqList_item {
  border-top: 1px solid var(--orange-line, #F1D8BD);
}
.bl_menuFaqSec .bl_commonfaqList_item:last-child {
  border-bottom: 1px solid var(--orange-line, #F1D8BD);
}
.bl_menuFaqSec .el_faqList_wrap {
  position: relative;
}
.bl_menuFaqSec .js_acc_ttl,
.bl_menuFaqSec .js_acc_cont {
  position: relative;
  padding: max(20px, 1.3888888889vw) 0;
  align-items: center;
  gap: max(12px, 0.8333333333vw);
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(18px, 1.25vw);
  font-style: normal;
  line-height: 1.5;
  letter-spacing: max(0.36px, 0.025vw);
}
@media screen and (width <= 767px) {
  .bl_menuFaqSec .js_acc_ttl,
  .bl_menuFaqSec .js_acc_cont {
    padding: max(16px, 1.1111111111vw) 0;
    font-size: max(16px, 1.1111111111vw);
    gap: max(16px, 1.1111111111vw);
  }
}
.bl_menuFaqSec .js_acc_ttl {
  font-weight: 700;
  display: grid;
  grid-template-columns: max(36px, 2.5vw) 1fr;
  cursor: pointer;
  padding-right: max(40px, 2.7777777778vw);
}
@media screen and (width <= 767px) {
  .bl_menuFaqSec .js_acc_ttl {
    padding-right: max(20px, 1.3888888889vw);
    grid-template-columns: max(36px, 2.5vw) 1fr;
  }
}
.bl_menuFaqSec .js_acc_cont {
  padding-top: max(6px, 0.4166666667vw);
  font-weight: 400;
  position: relative;
}
.bl_menuFaqSec .js_acc_cont_txt {
  padding-left: max(46px, 3.1944444444vw);
  margin-top: 0 !important;
}
@media screen and (width <= 767px) {
  .bl_menuFaqSec .js_acc_cont_txt {
    padding-left: max(46px, 3.1944444444vw);
  }
}
.bl_menuFaqSec .el_faqList_QA {
  height: max(36px, 2.5vw);
  border-radius: 50px;
  display: block;
  position: relative;
  border: 1px solid var(--orange-txt, #FFAC54);
}
@media screen and (width <= 767px) {
  .bl_menuFaqSec .el_faqList_QA {
    width: max(36px, 2.5vw);
    height: max(36px, 2.5vw);
  }
}
.bl_menuFaqSec .el_faqList_QA:before {
  text-align: center;
  font-family: "Public Sans";
  font-size: max(18px, 1.25vw);
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (width <= 767px) {
  .bl_menuFaqSec .el_faqList_QA:before {
    font-size: max(18px, 1.25vw);
  }
}
.bl_menuFaqSec .el_faqList_Q {
  background: var(--orange-txt, #FFAC54);
}
.bl_menuFaqSec .el_faqList_Q:before {
  content: "Q";
  color: var(--white, #FFF);
}
.bl_menuFaqSec .el_faqList_A {
  width: max(36px, 2.5vw);
  background: #fff;
  position: absolute;
  margin-top: max(-8px, -0.5555555556vw);
}
@media screen and (width <= 767px) {
  .bl_menuFaqSec .el_faqList_A {
    margin-top: max(-14px, -0.9722222222vw);
    width: max(36px, 2.5vw);
  }
}
.bl_menuFaqSec .el_faqList_A:before {
  content: "A";
  color: var(--orange-txt, #FFAC54);
}
.bl_menuFaqSec .js_acc_cont_txt {
  font-size: max(16px, 1.1111111111vw);
}

.el_faqList_ico {
  display: block;
  background: var(--color-base);
  width: max(32px, 2.2222222222vw);
  height: max(32px, 2.2222222222vw);
  position: absolute;
  top: calc(50% - 1.1111111111vw);
  right: max(2px, 0.1388888889vw);
}
@media screen and (width <= 1024px) {
  .el_faqList_ico {
    width: max(32px, 3.125vw);
    height: max(32px, 3.125vw);
    top: calc(50% - max(16px, 1.5625vw));
    right: max(2px, 0.1953125vw);
  }
}
@media screen and (width <= 767px) {
  .el_faqList_ico {
    width: max(20px, 1.3888888889vw);
    height: max(20px, 1.3888888889vw);
    top: calc(50% - max(16px, 1.1111111111vw));
    right: max(2px, 0.1388888889vw);
  }
}
.el_faqList_ico:before, .el_faqList_ico::after {
  content: "";
  width: max(16px, 1.1111111111vw);
  height: max(2px, 0.1388888889vw);
  background: var(--orange-txt, #FFAC54);
  position: absolute;
  top: max(14px, 0.9722222222vw);
  left: max(8px, 0.5555555556vw);
}
@media screen and (width <= 1024px) {
  .el_faqList_ico:before, .el_faqList_ico::after {
    width: max(16px, 1.5625vw);
    height: max(2px, 0.1953125vw);
    top: max(14px, 1.3671875vw);
    left: max(8px, 0.78125vw);
  }
}
@media screen and (width <= 767px) {
  .el_faqList_ico:before, .el_faqList_ico::after {
    width: max(16px, 1.1111111111vw);
    height: max(2px, 0.1388888889vw);
    top: max(14px, 0.9722222222vw);
    left: max(8px, 0.5555555556vw);
  }
}
.el_faqList_ico:after {
  transform: rotate(90deg);
  transition: 0.5s;
}
.is_active .el_faqList_ico:after {
  transform: rotate(0);
}

.bl_menuFaqSec_accordion .js_acc_ttl {
  grid-template-columns: 1fr !important;
}

/* ===================================
accordion
=================================== */
.js_acc_cont {
  display: none;
}

/* ===================================
CONTACT
=================================== */
/* フォーム全体のスタイル */
.wpcf7 {
  max-width: max(900px, 62.5vw);
  margin: 0 auto;
}

.CF7_table {
  width: 100%;
}
.CF7_table tbody {
  display: grid;
  gap: max(32px, 2.2222222222vw);
}
@media screen and (width <= 767px) {
  .CF7_table tbody {
    gap: max(30px, 2.0833333333vw);
  }
}

.date-input-wrap {
  display: inline-block;
  width: 100%;
}

.date-input-wrap input[type=date] {
  width: 100%;
  padding: 12px 40px 12px 12px;
  /* 右側にアイコン用スペース */
  font-size: max(16px, 1.1111111111vw);
  border: 1px solid #ccc;
  border-radius: max(6px, 0.4166666667vw);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.date-input-wrap .date-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  /* アイコン自体はクリックされないように */
}

.date-label {
  display: block;
  margin-bottom: 6px;
}

/* 基本レイアウト */
.wpcf7-form p {
  font-size: max(16px, 1.1111111111vw);
  line-height: 1.6;
  color: #333;
  margin-top: 0 !important;
}
@media screen and (width <= 767px) {
  .wpcf7-form p {
    font-size: max(14px, 0.9722222222vw);
  }
}

.wpcf7-form label {
  display: flex;
  margin-bottom: max(6px, 0.4166666667vw);
  align-items: center;
}
@media screen and (width <= 767px) {
  .wpcf7-form label {
    margin-bottom: max(6px, 0.4166666667vw);
  }
}

.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: max(16px, 1.1111111111vw) max(20px, 1.3888888889vw);
}
.wpcf7-checkbox .wpcf7-list-item {
  display: flex;
  align-items: center;
  width: max(185px, 12.8472222222vw);
  text-align: left;
}
@media screen and (width <= 767px) {
  .wpcf7-checkbox .wpcf7-list-item {
    width: 46%;
  }
}

.wpcf7-list-item {
  margin-left: 0 !important;
}

.wpcf7-radio-clinic {
  width: 85%;
}
.wpcf7-radio-clinic .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: max(16px, 1.1111111111vw) max(40px, 2.7777777778vw);
}
@media screen and (width <= 767px) {
  .wpcf7-radio-clinic .wpcf7-radio {
    gap: max(16px, 1.1111111111vw) 0;
  }
}
.wpcf7-radio-clinic .wpcf7-radio .wpcf7-list-item {
  display: flex;
  align-items: center;
  width: max(125px, 8.6805555556vw);
  text-align: left;
}
@media screen and (width <= 767px) {
  .wpcf7-radio-clinic .wpcf7-radio .wpcf7-list-item {
    width: 46%;
  }
}

.wpcf7-radio-def .wpcf7-radio {
  display: flex;
  gap: max(30px, 2.0833333333vw);
}

.wpcf7-radio-block .wpcf7-radio {
  display: grid;
  gap: max(16px, 1.1111111111vw);
}

/* 必須・任意表示 */
.CF7_req {
  background: #f39800;
  color: #fff;
  font-size: max(12px, 0.8333333333vw);
  padding: max(2px, 0.1388888889vw) max(6px, 0.4166666667vw);
  border-radius: max(4px, 0.2777777778vw);
  height: -moz-fit-content;
  height: fit-content;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (width <= 767px) {
  .CF7_req {
    font-size: max(10px, 0.6944444444vw);
    padding: max(2px, 0.1388888889vw) max(6px, 0.4166666667vw);
  }
}

.CF7_unreq {
  background: #ccc;
  color: #fff;
  font-size: max(12px, 0.8333333333vw);
  padding: max(2px, 0.1388888889vw) max(6px, 0.4166666667vw);
  border-radius: max(4px, 0.2777777778vw);
  height: -moz-fit-content;
  height: fit-content;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (width <= 767px) {
  .CF7_unreq {
    font-size: max(10px, 0.6944444444vw);
    padding: max(2px, 0.1388888889vw) max(6px, 0.4166666667vw);
  }
}

/* テキスト・メール・電話・数字入力 */
.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=tel],
.wpcf7-form input[type=number],
.wpcf7-form input[type=date],
.wpcf7-form textarea {
  width: 100%;
  padding: max(10px, 0.6944444444vw) max(14px, 0.9722222222vw);
  font-size: max(16px, 1.1111111111vw);
  border: 1px solid #bbb;
  border-radius: max(6px, 0.4166666667vw);
  box-sizing: border-box;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
@media screen and (width <= 767px) {
  .wpcf7-form input[type=text],
  .wpcf7-form input[type=email],
  .wpcf7-form input[type=tel],
  .wpcf7-form input[type=number],
  .wpcf7-form input[type=date],
  .wpcf7-form textarea {
    width: 100%;
    padding: max(10px, 0.6944444444vw) max(14px, 0.9722222222vw);
    font-size: max(14px, 0.9722222222vw);
  }
}

.wpcf7-form input[name=age] {
  width: max(100px, 6.9444444444vw);
  margin-right: max(20px, 1.3888888889vw);
}
@media screen and (width <= 767px) {
  .wpcf7-form input[name=age] {
    width: max(100px, 6.9444444444vw);
    margin-right: max(20px, 1.3888888889vw);
  }
}

.wpcf7-form input[name=karute-number] {
  width: max(180px, 12.5vw);
}

.wpcf7-form-control-wrap {
  position: unset !important;
}

.date-picker-wrap .date-input-wrap {
  display: grid;
  gap: max(20px, 1.3888888889vw);
}
.date-picker-wrap .date-input-wrap-inner {
  display: grid;
  grid-template-columns: 0.5fr 0.3fr 1fr;
  gap: max(20px, 1.3888888889vw);
  width: 90%;
  align-items: center;
}
@media screen and (width <= 767px) {
  .date-picker-wrap .date-input-wrap-inner {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
}
@media screen and (width <= 767px) {
  .date-picker-wrap .date-input-wrap-inner .date-ttl {
    width: 100%;
  }
}
@media screen and (width <= 767px) {
  .date-picker-wrap .date-input-wrap-inner .date-ittl {
    width: 30%;
  }
}
@media screen and (width <= 767px) {
  .date-picker-wrap .date-input-wrap-inner p {
    width: 65%;
  }
}

.text-box th {
  margin-top: max(8px, 0.5555555556vw);
}
@media screen and (width <= 767px) {
  .text-box th {
    margin-top: 0;
  }
}

.wpcf7-radio-def br,
.wpcf7-radio-history br,
.wpcf7-radio-block br {
  display: none;
}

.wpcf7-radio-def .wpcf7-checkbox,
.wpcf7-radio-def .wpcf7-radio,
.wpcf7-radio-history .wpcf7-checkbox,
.wpcf7-radio-history .wpcf7-radio,
.wpcf7-radio-block .wpcf7-checkbox,
.wpcf7-radio-block .wpcf7-radio {
  margin-bottom: max(10px, 0.6944444444vw);
}

.CF7_table {
  /* テキストエリア */
  /* ラジオ・チェックボックス全体 */
  /* ラジオ/チェック共通カスタム */
  /* カレンダーアイコンエリア */
  /* プライバシー同意 */
  /* 送信ボタン */
}
.CF7_table tr {
  position: relative;
  border-bottom: 1px solid var(--orange-line, #F1D8BD);
  padding-bottom: max(40px, 2.7777777778vw);
  display: grid;
  grid-template-columns: max(257px, 17.8472222222vw) 1fr;
  gap: max(40px, 2.7777777778vw) max(32px, 2.2222222222vw);
  align-items: start;
}
@media screen and (width <= 1024px) {
  .CF7_table tr {
    grid-template-columns: max(200px, 19.53125vw) 1fr;
  }
}
@media screen and (width <= 767px) {
  .CF7_table tr {
    grid-template-columns: 1fr;
    gap: max(20px, 1.3888888889vw);
    padding-bottom: max(20px, 1.3888888889vw);
  }
}
.CF7_table th p {
  text-align: left;
  display: grid;
  gap: max(40px, 2.7777777778vw);
  grid-template-columns: max(180px, 12.5vw) 1fr;
  font-size: max(16px, 1.1111111111vw);
}
@media screen and (width <= 1024px) {
  .CF7_table th p {
    gap: max(20px, 1.953125vw);
    grid-template-columns: 1fr max(40px, 3.90625vw);
  }
}
@media screen and (width <= 767px) {
  .CF7_table th p {
    display: flex;
    flex-direction: column-reverse;
    gap: max(10px, 0.6944444444vw);
    font-size: max(16px, 1.1111111111vw);
  }
}
.CF7_table .wpcf7-form textarea {
  height: 120px;
  resize: vertical;
  font-family: "Noto Sans JP";
}
.CF7_table .wpcf7-form .wpcf7-radio,
.CF7_table .wpcf7-form .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: max(10px, 0.6944444444vw) max(20px, 1.3888888889vw);
}
.CF7_table .wpcf7-form .wpcf7-list-item {
  position: relative;
  display: flex;
  align-items: center;
}
.CF7_table input[type=radio],
.CF7_table input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: max(18px, 1.25vw);
  height: max(18px, 1.25vw);
  margin: 0 max(8px, 0.5555555556vw) 0 0;
  border: 1px solid #bbb;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  position: relative;
}
.CF7_table input[type=checkbox] {
  border-radius: max(4px, 0.2777777778vw);
}
.CF7_table input[type=checkbox]:checked {
  border: 1px solid #333;
}
.CF7_table input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: max(3px, 0.2083333333vw);
  left: max(3px, 0.2083333333vw);
  width: max(10px, 0.6944444444vw);
  height: max(10px, 0.6944444444vw);
  background: #333;
  border-radius: 50%;
}
.CF7_table input[type=checkbox]:checked::before {
  content: "";
  border-radius: max(2px, 0.1388888889vw);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  border-radius: max(2px, 0.1388888889vw);
}
.CF7_table input[type=checkbox]:checked::after {
  content: "";
  border-radius: max(2px, 0.1388888889vw);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 65%;
  background-image: url("../img/ico/contact_check.svg");
  background-size: cover;
}
.CF7_table .has-icon {
  position: relative;
}
.CF7_table .has-icon input[type=date] {
  padding-right: max(44px, 3.0555555556vw);
  background-color: #fff;
}
.CF7_table .has-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: max(14px, 0.9722222222vw);
  transform: translateY(-50%);
  pointer-events: none;
}
.CF7_table .wpcf7-acceptance {
  margin-top: 10px;
}
.CF7_table .wpcf7-submit {
  display: inline-block;
  background: #333;
  color: #fff;
  font-size: max(16px, 1.1111111111vw);
  padding: max(12px, 0.8333333333vw) max(40px, 2.7777777778vw);
  border: none;
  border-radius: max(30px, 2.0833333333vw);
  cursor: pointer;
  transition: background 0.3s ease;
}
.CF7_table .wpcf7-submit:hover {
  background: #f39800;
}
.CF7_table .list-box p:first-child {
  display: none;
}

.wpcf7-radio-history .wpcf7-checkbox {
  gap: max(30px, 2.0833333333vw);
}
.wpcf7-radio-history .wpcf7-checkbox .wpcf7-list-item {
  width: auto;
}
.wpcf7-radio-history input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: max(18px, 1.25vw);
  height: max(18px, 1.25vw);
  margin: 0 max(8px, 0.5555555556vw) 0 0;
  border: 1px solid #bbb;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  position: relative;
}
.wpcf7-radio-history input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  width: max(10px, 0.6944444444vw);
  height: max(10px, 0.6944444444vw);
  background: #333;
  border-radius: 50%;
}
.wpcf7-radio-history input[type=checkbox]:checked::before {
  display: none;
}

.wpcf7-not-valid-tip {
  position: absolute;
  left: max(300px, 20.8333333333vw);
  bottom: max(10px, 0.6944444444vw);
}
@media screen and (width <= 1024px) {
  .wpcf7-not-valid-tip {
    left: max(230px, 15.9722222222vw);
  }
}
@media screen and (width <= 767px) {
  .wpcf7-not-valid-tip {
    top: 0;
    left: max(50px, 3.4722222222vw);
  }
}

.wpcf7-acceptance input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: max(18px, 1.25vw);
  height: max(18px, 1.25vw);
  margin: 0 max(8px, 0.5555555556vw) 0 0;
  border: 1px solid #bbb;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  position: relative;
  border-radius: max(4px, 0.2777777778vw);
}
.wpcf7-acceptance input[type=checkbox]:checked {
  border: 1px solid #333;
}
.wpcf7-acceptance input[type=checkbox]:checked::before {
  content: "";
  border-radius: max(2px, 0.1388888889vw);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  border-radius: max(2px, 0.1388888889vw);
}
.wpcf7-acceptance input[type=checkbox]:checked::after {
  content: "";
  border-radius: max(2px, 0.1388888889vw);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 65%;
  background-image: url("../img/ico/contact_check.svg");
  background-size: cover;
}

.privacy_txt {
  text-align: center;
  margin-top: max(32px, 2.2222222222vw);
}
.privacy_txt a {
  text-decoration: underline;
  color: var(--blue, #4CB1FF);
}
@media screen and (width <= 767px) {
  .privacy_txt {
    margin-top: max(30px, 2.0833333333vw);
  }
}
@media (max-width: 400px) {
  .privacy_txt {
    text-align: left;
  }
}

.privacy_box {
  margin-top: max(10px, 0.6944444444vw);
}
@media screen and (width <= 767px) {
  .privacy_box {
    margin-top: max(10px, 0.6944444444vw);
  }
}
.privacy_box p {
  text-align: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: max(32px, 2.2222222222vw);
}
@media screen and (width <= 767px) {
  .privacy_box p {
    margin-bottom: max(30px, 2.0833333333vw);
  }
}

.btn_area {
  text-align: center;
  margin-top: max(40px, 2.7777777778vw);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (width <= 767px) {
  .btn_area {
    margin-top: max(40px, 2.7777777778vw);
  }
}
.btn_area .wpcf7-form-control {
  width: 100%;
  padding: max(16px, 1.1111111111vw) max(30px, 2.0833333333vw);
  font-weight: 700;
  border-radius: max(100px, 6.9444444444vw);
  color: #fff;
  background-color: #333;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  width: max(220px, 15.2777777778vw);
}
@media (hover: hover) {
  .btn_area .wpcf7-form-control:hover {
    background-color: #fff;
    color: #333;
    border: 1px solid #333;
    transition: all 0.3s ease;
  }
}
@media screen and (width <= 767px) {
  .btn_area .wpcf7-form-control {
    padding: max(16px, 1.1111111111vw) max(30px, 2.0833333333vw);
  }
}
.btn_area .wpcf7-form-control:disabled {
  background-color: #ccc;
  color: #fff;
  border: 1px solid #ccc;
}
@media (hover: hover) {
  .btn_area .wpcf7-form-control:disabled:hover {
    border: 1px solid #ccc;
  }
}

input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset;
}

label {
  cursor: pointer;
}

textarea {
  resize: vertical;
  font-family: "Noto Sans JP";
}

tr {
  font-family: "Noto Sans JP";
}

input {
  font-family: "Noto Sans JP";
}

.wpcf7-radio-2col .wpcf7-radio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: max(16px, 1.1111111111vw) max(40px, 2.7777777778vw);
  width: -moz-fit-content;
  width: fit-content;
}
.wpcf7-radio-2col .wpcf7-radio .wpcf7-list-item {
  width: max(220px, 15.2777777778vw);
}
@media screen and (width <= 767px) {
  .wpcf7-radio-2col .wpcf7-radio {
    grid-template-columns: 1fr;
  }
}

.wpcf7-spinner {
  display: none !important;
}

@media screen and (width <= 767px) {
  .pg_contact .ly_box {
    padding-bottom: 0;
  }
}
@media screen and (width <= 767px) {
  .pg_contact .ly_box .el_edit {
    margin-bottom: max(60px, 4.1666666667vw);
  }
}

.ly_page404 .ly_inner,
.ly_page_form .ly_inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: max(40px, 2.7777777778vw);
  padding-top: max(112px, 7.7777777778vw);
  padding-bottom: max(140px, 9.7222222222vw);
}
@media screen and (width <= 767px) {
  .ly_page404 .ly_inner,
  .ly_page_form .ly_inner {
    padding-top: max(60px, 4.1666666667vw);
    padding-bottom: max(70px, 4.8611111111vw);
  }
}
.ly_page404 .ly_page404_ttl,
.ly_page404 .ly_page_form_ttl,
.ly_page_form .ly_page404_ttl,
.ly_page_form .ly_page_form_ttl {
  text-align: center;
  color: var(--black, #333);
  font-family: "Noto Sans JP";
  font-size: max(32px, 2.2222222222vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: max(0.64px, 0.0444444444vw);
}
@media screen and (width <= 767px) {
  .ly_page404 .ly_page404_ttl,
  .ly_page404 .ly_page_form_ttl,
  .ly_page_form .ly_page404_ttl,
  .ly_page_form .ly_page_form_ttl {
    font-size: max(24px, 1.6666666667vw);
  }
}
@media (max-width: 382px) {
  .ly_page404 .ly_page404_ttl,
  .ly_page_form .ly_page404_ttl {
    font-size: max(18px, 1.25vw);
  }
}
.ly_page404 .un_404,
.ly_page404 .un_form,
.ly_page_form .un_404,
.ly_page_form .un_form {
  text-align: center;
}
@media screen and (width <= 767px) {
  .ly_page404 .un_404,
  .ly_page404 .un_form,
  .ly_page_form .un_404,
  .ly_page_form .un_form {
    text-align: left;
  }
}
.ly_page404 .un_404 .text-wrap::after,
.ly_page404 .un_form .text-wrap::after,
.ly_page_form .un_404 .text-wrap::after,
.ly_page_form .un_form .text-wrap::after {
  display: none;
}
.ly_page404 .un_404 .text-wrap::before,
.ly_page404 .un_form .text-wrap::before,
.ly_page_form .un_404 .text-wrap::before,
.ly_page_form .un_form .text-wrap::before {
  margin-right: max(14px, 0.9722222222vw);
  content: "";
  display: block;
  background: url(../img/common/arrow_white.svg) no-repeat;
  background-size: cover;
  width: max(16px, 1.1111111111vw);
  height: max(12px, 0.8333333333vw);
  transform: rotate(180deg);
}
.ly_page404 .un_404 .el_edit p,
.ly_page404 .un_form .el_edit p,
.ly_page_form .un_404 .el_edit p,
.ly_page_form .un_form .el_edit p {
  margin-top: 0 !important;
}
@media screen and (width <= 767px) {
  .ly_page404 .un_404 .el_edit p,
  .ly_page404 .un_form .el_edit p,
  .ly_page_form .un_404 .el_edit p,
  .ly_page_form .un_form .el_edit p {
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}

.pg_contact .first_sentence {
  margin-bottom: max(80px, 5.5555555556vw) !important;
  max-width: max(900px, 62.5vw);
  margin: 0 auto;
}
@media screen and (width <= 767px) {
  .pg_contact .first_sentence {
    margin-bottom: max(60px, 4.1666666667vw) !important;
  }
}

.ly_inner_880 {
  max-width: max(880px, 61.1111111111vw);
}

.pg_other .el_edit h2 {
  background-color: transparent;
  padding: 0;
  margin-top: max(80px, 5.5555555556vw);
}
.pg_other .el_edit h2:first-of-type {
  margin-top: 0;
}

@media screen and (width <= 767px) {
  .un_form .el_edit p {
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}

.un_other .guideline_homepage a {
  text-decoration: underline;
  display: inline;
}

.pg_contact .el_edit,
.pg_reserve .el_edit {
  margin-bottom: 0;
}