@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Shippori+Mincho:wght@400;500;600&family=Zen+Kaku+Gothic+New:wght@400;700&display=swap");
/* ===================================
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: 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;
  -webkit-box-sizing: border-box;
  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;
}

body {
  line-height: 1.8;
}

/* テキスト
============================== */
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;
}

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

iframe {
  max-width: 100%;
}

.is_textAnimation span {
  display: flex;
}
@media (hover: hover) {
  .is_textAnimation:hover .letter {
    text-shadow: 0 0 0 #000, 0 1.5em 0 #000;
  }
}
.is_textAnimation .letter {
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -1.5em 0 #000, 0 0 0 #000;
  transition: text-shadow 0.3s;
  transition-delay: calc(var(--index) * 0.05s);
}

.is_textWhiteAnimation {
  display: flex;
}
@media (hover: hover) {
  .is_textWhiteAnimation:hover .letter {
    text-shadow: 0 0 0 #fff, 0 1.5em 0 #fff;
  }
}
.is_textWhiteAnimation .letter {
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -1.5em 0 #fff, 0 0 0 #fff;
  transition: text-shadow 0.3s;
  transition-delay: calc(var(--index) * 0.05s);
}

.el_blogList {
  display: flex;
  flex-flow: row wrap;
  gap: 8rem 5.6rem;
}
@media screen and (max-width: 1024px) {
  .el_blogList {
    gap: 5.6rem 2.4rem;
  }
}
.el_blogList_item {
  width: calc(33.33% - 3.7333333333rem);
  display: flex;
}
@media screen and (max-width: 1024px) {
  .el_blogList_item {
    width: calc(33.33% - 1.6rem);
  }
}
@media screen and (max-width: 767px) {
  .el_blogList_item {
    width: calc(50% - 1.2rem);
  }
}
.el_blogList_item a {
  display: flex;
  flex-flow: column;
}
.el_blogList_thmb {
  margin-bottom: 1.6rem;
  max-width: 100%;
  aspect-ratio: 1/0.66666667;
  border-radius: 0.8rem;
  overflow: hidden;
}
.el_blogList_thmb img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .el_blogList_content {
    width: 100%;
  }
}
.el_blogList_textWrap {
  margin-bottom: 1.6rem;
  display: flex;
  flex-flow: row wrap;
  gap: 0.4rem 0.8rem;
}
.el_blogList_theme {
  display: flex;
  flex-flow: row wrap;
  gap: 0.4rem 0.8rem;
}
.el_blogList_theme p {
  padding: 0.4rem;
  background: #83C0CD;
  border-radius: 0.4rem;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}
.el_blogList_keyword {
  color: #A4A4A4;
  font-size: 1.2rem;
  display: flex;
  flex-flow: row wrap;
  gap: 0.4rem 0.8rem;
}
.el_blogList_ttl {
  margin-bottom: 1.6rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}
.el_blogList_date {
  margin-top: auto;
  margin-bottom: 1.2rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.2rem;
  line-height: 1.7;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0 0.8rem;
}
.el_blogList_date::before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  background: #83C0CD;
  border-radius: 50%;
}
.el_blogList_author {
  padding-top: 1.6rem;
  border-top: 0.2rem dotted #CADCDF;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0 1.4rem;
}
.el_blogList_author figure {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  overflow: hidden;
}
.el_blogList_author figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.el_blogList_author p {
  width: calc(100% - 4.8rem - 1.4rem);
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  line-height: 1;
}
.el_blogList_desc {
  font-size: 1.4rem;
  line-height: 1.8;
}
.el_blogList_excerpt {
  padding-top: 1.6rem;
  font-size: 1.4rem;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}
.el_blogList_excerpt::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.1rem;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #96AFB3, #96AFB3 0.2rem, transparent 0.2rem, transparent 0.6rem);
  background-size: 0.6rem 0.1rem;
  background-position: left bottom;
  background-repeat: repeat-x;
}

.el_btnGroup_center {
  margin-top: 8rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 2.4rem;
}

.el_btn {
  padding: 0 1.8rem 0 2rem;
  width: 100%;
  height: 5rem;
  background: #fff;
  border-radius: 99.9rem;
  border: 0.1rem solid #415558;
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.el_btn::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 0.7rem;
  background: url("../img/ico/ico_btn_arrow.svg") no-repeat center center;
  background-size: contain;
}

.el_caseList {
  display: flex;
  flex-flow: row wrap;
  gap: 8rem 3.2rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.el_caseList::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  .el_caseList {
    gap: 4.8rem 3.2rem;
    flex-flow: column;
    align-items: center;
  }
}
.el_caseList_item {
  width: calc(33.33% - 2.1333333333rem);
  position: relative;
}
@media screen and (max-width: 767px) {
  .el_caseList_item {
    width: 30rem;
    min-width: 30rem;
  }
}
@media (hover: hover) {
  .el_caseList a:hover img {
    transform: scale(1.1, 1.1);
  }
}
.el_caseList_thumb {
  margin-bottom: 2.4rem;
  position: relative;
}
.el_caseList_thumb figure {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 0.8rem;
  position: relative;
  overflow: hidden;
}
.el_caseList_thumb span {
  width: 5.6rem;
  height: 5.6rem;
  background: #fff;
  border-radius: 1rem 0 0 0;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.el_caseList_thumb span::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1.2rem;
  background: url("../img/ico/ico_caseList_thumb_arrow.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.el_caseList_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
  border-radius: 0.8rem;
  overflow: hidden;
}
.el_caseList_ttl {
  margin-bottom: 1.2rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.56;
}
.el_caseList_tag {
  margin-bottom: 2.4rem;
  display: flex;
  flex-flow: row wrap;
  gap: 0.8rem;
}
.el_caseList_tag > li {
  color: #829498;
  font-size: 1.2rem;
  line-height: 1;
}
.el_caseList_btn {
  margin: 0 auto;
  padding: 0 1.2rem;
  width: 100%;
  max-width: 18rem;
  height: 3.8rem;
  background: #fff;
  border: 0.1rem solid #CADCDF;
  border-radius: 0.4rem;
  color: #415558;
  font-size: 1.2rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}
@media (hover: hover) {
  .el_caseList_btn {
    transition: 0.5s;
  }
  .el_caseList_btn:hover {
    opacity: 0.5;
  }
}
.el_caseList_btn::after {
  content: "";
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  background: url("../img/ico/ico_caseList_round_plas_icon.svg") no-repeat center center;
  background-size: contain;
  transition: all 0.3s;
}
.el_caseList_btn.is_active {
  background: #83C0CD;
  color: #fff;
}
.el_caseList_btn.is_active::after {
  background: url("../img/ico/ico_caseList_round_minus_icon.svg") no-repeat center center;
  background-size: contain;
}
.el_caseList_popup {
  width: 52rem;
  padding: 1.6rem;
  background: #fff;
  border-radius: 0.8rem;
  position: absolute;
  z-index: 100;
  filter: drop-shadow(0 0 0.8rem rgba(152, 170, 184, 0.5));
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  margin-top: 8px;
  transform: translateX(-50%);
  left: 50%;
}
@media screen and (max-width: 1350px) {
  .el_caseList_popup {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .el_caseList_popup {
    width: 90%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 0;
  }
}
.el_caseList_popup.is_active {
  opacity: 1;
  pointer-events: auto;
}
.el_caseList_popup_list {
  font-size: 1.4rem;
  line-height: 1.4;
  display: flex;
  flex-flow: row wrap;
  gap: 1.6rem 0;
}
.el_caseList_popup_list dt:not(:last-of-type), .el_caseList_popup_list dd:not(:last-of-type) {
  padding-bottom: 1.6rem;
  border-bottom: 0.1rem solid #CADCDF;
}
.el_caseList_popup_list dt {
  width: 12rem;
  font-weight: 700;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  gap: 0 0.4rem;
}
.el_caseList_popup_list dt::before {
  content: "";
  display: block;
  width: 1rem;
  height: 0.8rem;
  background: url("../img/ico/ico_popup_arrow.svg") no-repeat center center;
  background-size: contain;
  margin-top: 0.5rem;
}
.el_caseList_popup_list dd {
  width: calc(100% - 12rem - 1.2rem);
  padding-left: 1.2rem;
}
.el_caseList_popup_list dd span {
  margin-top: 0.8rem;
  color: #829498;
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .el_cosmeticDermatologyList {
    margin-top: 1.2rem;
    padding: 0 1.2rem;
    display: flex;
    flex-flow: column;
    gap: 1.2rem 0;
  }
}
.el_cosmeticDermatologyList_item {
  padding: 9.8rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .el_cosmeticDermatologyList_item {
    padding: 0;
  }
}
.el_cosmeticDermatologyList_item:nth-child(even) {
  background: #F3F9FA;
}
@media screen and (max-width: 767px) {
  .el_cosmeticDermatologyList_item:nth-child(even) {
    background: #fff;
  }
}
@media screen and (max-width: 767px) {
  .el_cosmeticDermatologyList_head {
    position: relative;
  }
  .el_cosmeticDermatologyList_head::before {
    content: "";
    display: block;
    width: 1.8rem;
    height: 1.8rem;
    background: url("../img/ico/ico_caseList_round_plas_icon.svg") no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 1.2rem;
    transform: translate(0, -50%);
  }
  .el_cosmeticDermatologyList_head.is_active {
    background: #F3F9FA;
    border-color: #83C0CD;
  }
  .el_cosmeticDermatologyList_head.is_active::before {
    background: url("../img/ico/ico_caseList_round_minus_blue_icon.svg") no-repeat center center;
    background-size: contain;
  }
}
.el_cosmeticDermatologyList_content {
  margin: 0 auto;
  max-width: 112rem;
}
.el_cosmeticDermatologyList_ttl {
  margin-bottom: 5.6rem;
  width: fit-content;
  font-size: 2rem;
  letter-spacing: 0.05em;
  display: flex;
  flex-flow: row wrap;
  gap: 0 1.2rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .el_cosmeticDermatologyList_ttl {
    width: 100%;
    margin: 0;
    padding: 3.1rem 1.6rem;
    border: 0.1rem solid #CADCDF;
    font-size: 1.6rem;
    transition: all 0.6s;
  }
  .el_cosmeticDermatologyList_ttl.is_active {
    background: #F3F9FA;
    border: 0.1rem solid #83C0CD;
  }
}
.el_cosmeticDermatologyList_ttl::before, .el_cosmeticDermatologyList_ttl::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 0.9rem;
  background: url("../img/ico/ico_cosmetic-surgery-ttl_icon.svg") no-repeat center center;
  background-size: contain;
}
.el_cosmeticDermatologyList_list {
  display: flex;
  flex-flow: row wrap;
  gap: 6.4rem 4.8rem;
}
@media screen and (max-width: 767px) {
  .el_cosmeticDermatologyList_list {
    display: none;
    padding: 0 3rem;
  }
}
.el_cosmeticDermatologyList_list li {
  width: calc(25% - 3.6rem);
}
@media screen and (max-width: 767px) {
  .el_cosmeticDermatologyList_list li {
    width: 100%;
  }
}
.el_cosmeticDermatologyList_list li a {
  padding-bottom: 1.6rem;
  padding-right: 1.2rem;
  border-bottom: 0.1rem dotted #CADCDF;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .el_cosmeticDermatologyList_list li a {
    padding: 2.4rem 0;
  }
}
.el_cosmeticDermatologyList_list li a::after {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background: url("../img/ico/ico_cosmetic-surgery-list_arrow.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: calc(50% - 1.1rem);
  right: 0;
}
@media screen and (max-width: 767px) {
  .el_cosmeticDermatologyList_list li a::after {
    top: calc(50% - 1.6rem);
  }
}

.el_cosmeticSurgeryList {
  display: flex;
  flex-flow: row wrap;
}
@media screen and (max-width: 767px) {
  .el_cosmeticSurgeryList {
    padding: 2.4rem 1.2rem;
    flex-flow: column;
    gap: 1.2rem 0;
  }
}
.el_cosmeticSurgeryList_item {
  padding: 6.4rem 2rem;
  width: 33.33%;
  display: flex;
  flex-flow: column;
  align-items: center;
  border-right: 0.1rem solid #CADCDF;
}
.el_cosmeticSurgeryList_item:not(:nth-child(1), :nth-child(2), :nth-child(3)) {
  border-top: 0.1rem solid #CADCDF;
}
@media screen and (max-width: 1024px) {
  .el_cosmeticSurgeryList_item {
    width: 50%;
    border-top: 0.1rem solid #CADCDF;
  }
  .el_cosmeticSurgeryList_item:nth-child(1), .el_cosmeticSurgeryList_item:nth-child(2) {
    border-top: none;
  }
}
@media screen and (max-width: 767px) {
  .el_cosmeticSurgeryList_item {
    padding: 0;
    width: 100%;
    border: none;
  }
}
.el_cosmeticSurgeryList_head {
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .el_cosmeticSurgeryList_head {
    padding: 1.2rem 4rem 1.2rem 1.2rem;
    border: 0.1rem solid #CADCDF;
    display: flex;
    flex-flow: row-reverse;
    justify-content: flex-end;
    gap: 0 4rem;
    position: relative;
  }
  .el_cosmeticSurgeryList_head::before {
    content: "";
    display: block;
    width: 1.8rem;
    height: 1.8rem;
    background: url("../img/ico/ico_caseList_round_plas_icon.svg") no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 1.2rem;
    transform: translate(0, -50%);
  }
  .el_cosmeticSurgeryList_head.is_active {
    background: #F3F9FA;
    border-color: #83C0CD;
  }
  .el_cosmeticSurgeryList_head.is_active::before {
    background: url("../img/ico/ico_caseList_round_minus_blue_icon.svg") no-repeat center center;
    background-size: contain;
  }
}
.el_cosmeticSurgeryList_ttl {
  margin-bottom: 2rem;
  width: fit-content;
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  display: flex;
  flex-flow: row wrap;
  gap: 0 1.2rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .el_cosmeticSurgeryList_ttl {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
}
.el_cosmeticSurgeryList_ttl::before, .el_cosmeticSurgeryList_ttl::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 0.9rem;
  background: url("../img/ico/ico_cosmetic-surgery-ttl_icon.svg") no-repeat center center;
  background-size: contain;
}
.el_cosmeticSurgeryList_thumb {
  margin-bottom: 4.8rem;
  width: 10rem;
  height: 12.5rem;
  border-radius: 10rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .el_cosmeticSurgeryList_thumb {
    width: 8rem;
    height: 10rem;
    margin-bottom: 0;
  }
}
.el_cosmeticSurgeryList_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.el_cosmeticSurgeryList_content {
  width: 100%;
  display: block;
}
@media screen and (max-width: 767px) {
  .el_cosmeticSurgeryList_content {
    display: none;
  }
}
.el_cosmeticSurgeryList_list {
  margin: 0 auto;
  width: 100%;
  max-width: 33.6rem;
  display: flex;
  flex-flow: row wrap;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .el_cosmeticSurgeryList_list {
    margin-bottom: 2.4rem;
    max-width: 42.8rem;
    gap: 0;
    padding-inline: 3.2rem;
  }
}
.el_cosmeticSurgeryList_list > li {
  width: calc(50% - 1rem);
}
@media screen and (max-width: 767px) {
  .el_cosmeticSurgeryList_list > li {
    margin-top: 2.4rem;
    width: 100%;
  }
}
.el_cosmeticSurgeryList_list > li a {
  padding-bottom: 1.6rem;
  padding-right: 1.2rem;
  font-size: 1.4rem;
  line-height: 1.4;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (hover: hover) {
  .el_cosmeticSurgeryList_list > li a {
    transition: 0.5s;
  }
  .el_cosmeticSurgeryList_list > li a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .el_cosmeticSurgeryList_list > li a {
    padding-bottom: 2.4rem;
  }
}
.el_cosmeticSurgeryList_list > li a::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to right, #83C0CD, #83C0CD 0.2rem, transparent 0.2rem, transparent 0.6rem);
  background-size: 0.4rem 0.1rem;
  background-position: left bottom;
  background-repeat: repeat-x;
}
.el_cosmeticSurgeryList_list > li a::after {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background: url("../img/ico/ico_cosmetic-surgery-list_arrow.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: calc(50% - 1.1rem);
  right: 0;
}
@media screen and (max-width: 767px) {
  .el_cosmeticSurgeryList_list > li a::after {
    top: calc(50% - 1.6rem);
  }
}

.el_featureList {
  display: flex;
  flex-flow: row wrap;
}
.el_featureList_item {
  width: 33.33%;
  display: flex;
  border-bottom: 0.1rem solid #CADCDF;
}
@media screen and (max-width: 767px) {
  .el_featureList_item {
    width: 50%;
  }
  .el_featureList_item:nth-child(3n) {
    border-right: 0.1rem solid #CADCDF;
  }
}
.el_featureList_item:not(:nth-child(3n)) {
  border-right: 0.1rem solid #CADCDF;
}
.el_featureList_item a {
  padding: 3.2rem 2.6rem 4.8rem;
  display: flex;
  flex-flow: column;
}
@media (hover: hover) {
  .el_featureList_item a {
    transition: 0.5s;
  }
  .el_featureList_item a:hover {
    opacity: 0.5;
  }
}
.el_featureList_thmb {
  margin-bottom: 2.4rem;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 0.8rem;
  overflow: hidden;
}
.el_featureList_thmb img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .el_featureList_content {
    width: 100%;
  }
}
.el_featureList_ttl {
  margin-bottom: 1.2rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}
.el_featureList_keyword {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  flex-flow: row wrap;
  gap: 0.8rem;
}
@media screen and (max-width: 1024px) {
  .el_featureList_keyword {
    margin-bottom: 1.2rem;
  }
}
.el_featureList_keyword li {
  padding: 0.4rem;
  border-radius: 0.4rem;
  background: #83C0CD;
}
.el_featureList_date {
  margin-top: auto;
  font-family: "Shippori Mincho", serif;
  font-size: 1.2rem;
  line-height: 1.7;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0 0.8rem;
}
.el_featureList_date::before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  background: #83C0CD;
  border-radius: 50%;
}

.el_fixedSnsNavi {
  width: 10.5rem;
  position: fixed;
  bottom: 3.2rem;
  left: 3.2rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .el_fixedSnsNavi {
    display: none;
  }
}
.el_fixedSnsNavi .el_text {
  margin-bottom: 1.2rem;
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
}
.el_fixedSnsNavi .el_snsList {
  flex-flow: wrap;
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  gap: 1.2rem;
}
.el_fixedSnsNavi .el_snsList li a {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.el_topHeading {
  padding-bottom: 8rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .el_topHeading {
    padding-bottom: 5.6rem;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
}
.el_topHeading_wrap {
  width: fit-content;
  display: flex;
  flex-flow: column;
  gap: 2.4rem 0;
}
@media screen and (max-width: 767px) {
  .el_topHeading_wrap {
    align-items: center;
  }
}
.el_topHeading_label {
  width: 12rem;
  height: 3.7rem;
  background: #83C0CD;
  font-family: "Shippori Mincho", serif;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  border-radius: 50%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .el_topHeading_label {
    width: 9.8rem;
    font-size: 1.4rem;
  }
}
.el_topHeading_ttl {
  font-family: "Cinzel", serif;
  font-size: 5.6rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .el_topHeading_ttl {
    font-size: 3.6rem;
  }
}
.el_topHeading_btn {
  width: 22rem;
}
@media screen and (max-width: 767px) {
  .el_topHeading_btn {
    display: none;
  }
}

.el_newsList_item {
  border-bottom: 0.1rem solid #CADCDF;
}
@media (hover: hover) {
  .el_newsList_item {
    transition: 0.5s;
  }
  .el_newsList_item:hover {
    opacity: 0.5;
  }
}
.el_newsList_item a {
  padding: 3rem 0;
  display: flex;
}
@media screen and (max-width: 767px) {
  .el_newsList_item a {
    display: block;
    padding: 2.4rem 0;
  }
}
.el_newsList_date {
  display: block;
  width: 9.2rem;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .el_newsList_date {
    margin-bottom: 1.2rem;
    line-height: 1;
  }
}
.el_newsList_ttl {
  width: calc(100% - 9.2rem);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .el_newsList_ttl {
    width: 100%;
    line-height: 1;
  }
}

.el_reserveList {
  pointer-events: all;
  display: flex;
  flex-flow: row wrap;
  gap: 0 1.2rem;
}
.el_reserveList li a {
  padding: 0;
  width: 18rem;
  height: 4.4rem;
  border-radius: 99rem;
  background: #9D7D66;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 0 0.6rem;
}
.el_reserveList li a svg {
  width: 1.8rem;
  height: 1.8rem;
  object-fit: contain;
}

.el_sideSelect, .el_select {
  position: relative;
  border: 0.1rem solid #CADCDF;
  background: #F3F9FA;
  border-radius: 99.9rem;
  cursor: pointer;
}
.el_sideSelect:before, .el_select:before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background: url("../img/ico/ico_select_arrow.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 1.4rem;
  transform: translate(0, -50%);
}
.el_sideSelect select, .el_select select {
  width: 100%;
  padding: 1.4rem;
  border: none;
  color: #ccc;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  background: transparent;
}
.el_sideSelect option, .el_select option {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 100%;
}

.el_link_blank {
  width: fit-content;
  font-size: 1.4rem;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0 0.4rem;
}
@media (hover: hover) {
  .el_link_blank {
    transition: 0.5s;
  }
  .el_link_blank:hover {
    opacity: 0.5;
  }
}
.el_link_blank:after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background: url("../img/ico/ico_blank.svg") center center no-repeat;
  background-size: contain;
}

.el_Search {
  padding: 5.6rem 2rem;
  border-top: 0.1rem solid #CADCDF;
  border-bottom: 0.1rem solid #CADCDF;
}
@media screen and (max-width: 1024px) {
  .el_Search {
    padding: 4.8rem 2.4rem;
  }
}
.el_Search_inner {
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  gap: 0 5.6rem;
  max-width: 112rem;
}
@media screen and (max-width: 1024px) {
  .el_Search_inner {
    justify-content: center;
    gap: 3rem;
  }
}
.el_Search_item {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0 2.4rem;
}
@media screen and (max-width: 1024px) {
  .el_Search_item {
    flex-flow: column;
    align-items: flex-start;
    gap: 0.8rem 0;
  }
}
.el_Search_ttl {
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  line-height: 1.7;
}
.el_Search .el_select {
  width: 24rem;
}
@media screen and (max-width: 767px) {
  .el_Search .el_select {
    width: 30rem;
  }
}

.el_pager {
  margin-top: 8rem;
}
.el_pager_inner {
  font-family: "Cinzel", serif;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}
@media screen and (max-width: 767px) {
  .el_pager_inner {
    gap: 1rem;
  }
}
@media screen and (max-width: 374px) {
  .el_pager_inner {
    gap: 0.4rem;
  }
}
@media (hover: hover) {
  .el_pager a {
    transition: 0.5s;
  }
  .el_pager a:hover {
    opacity: 0.5;
  }
}
.el_pager .page-numbers {
  padding-top: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 3.2rem;
  height: 3.2rem;
  font-size: 1.6rem;
  line-height: 1.8;
}
.el_pager .page-numbers.current {
  border: 0.2rem dotted #83C0CD;
  color: #6FB5C4;
}
.el_pager .page-numbers.prev {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-right: 2.4rem;
}
@media screen and (max-width: 767px) {
  .el_pager .page-numbers.prev {
    margin-right: 0;
  }
}
.el_pager .page-numbers.prev::before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 0.7rem;
  background: url("../img/ico/ico_btn_arrow.svg") center center no-repeat;
  background-size: contain;
  transform: scale(-1, -1);
}
.el_pager .page-numbers.next {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-left: 2.4rem;
}
@media screen and (max-width: 767px) {
  .el_pager .page-numbers.next {
    margin-left: 0;
  }
}
.el_pager .page-numbers.next::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 0.7rem;
  background: url("../img/ico/ico_btn_arrow.svg") center center no-repeat;
  background-size: contain;
}
.el_pager .page-numbers .el_pager_text {
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

/* ===================================
base
=================================== */
/* layout
============================== */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 62.5%;
  font-family: "Zen Kaku Gothic New", serif;
  color: #415558;
  overflow-x: hidden;
}
@media screen and (max-width: 374px) {
  html {
    font-size: 50%;
  }
}

.ly_main {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
}

.ly_inner {
  box-sizing: content-box;
  max-width: 112rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.ly_inner.un_policy {
  max-width: 96rem;
}

/* default
============================== */
@media screen and (max-width: 767px) {
  .un_pc {
    display: none !important;
  }
}

.un_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .un_sp {
    display: block !important;
  }
}

/* ===================================
common parts
=================================== */
/* ttl
============================== */
/* el_pageTtl */
.el_pageTtl {
  padding: 25.2rem 0 7.2rem 5.5555vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .el_pageTtl {
    padding: 16.3rem 2.4rem 7.2rem;
  }
}
.el_pageTtl::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #fff 28%, #C6E7EF 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0.8;
}
.el_pageTtl_en {
  width: fit-content;
  margin-bottom: 1.6rem;
  display: inline-block;
  font-family: "Cinzel", serif;
  color: #415558;
  font-size: 6.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .el_pageTtl_en {
    margin: 0 auto 1.2rem;
    font-size: 4.8rem;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    text-align: center;
  }
}
.el_pageTtl_en span {
  width: fit-content;
  background: url("../img/common/page_ttl_mask.png") no-repeat center center;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.el_pageTtl_ja {
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .el_pageTtl_ja {
    font-size: 1.6rem;
    text-align: center;
  }
}

/* ly_pageTtl02 */
.ly_pageTtl02 {
  padding-top: 23.6rem;
  padding-bottom: 14rem;
  border-bottom: 0.1rem solid #ccc;
}
@media screen and (max-width: 767px) {
  .ly_pageTtl02 {
    padding-top: 12rem;
    padding-bottom: 8rem;
  }
}
.ly_pageTtl02_inner {
  display: block;
  max-width: 128rem;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .ly_pageTtl02_inner {
    padding: 0 1.6rem;
  }
}

.el_pageTtl02_ja {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .el_pageTtl02_ja {
    font-size: 2.4rem;
  }
}

/* el_pageTtlPost */
.el_pageTtlPost {
  padding-top: 25.9rem;
  padding-bottom: 7.2rem;
  background: linear-gradient(to bottom, #fff 28%, #C6E7EF 100%);
}
@media screen and (max-width: 767px) {
  .el_pageTtlPost {
    padding-top: 17.6rem;
    padding-bottom: 9rem;
  }
}
.el_pageTtlPost_inner {
  display: block;
  max-width: 128rem;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .el_pageTtlPost_inner {
    padding: 0 1.6rem;
  }
}
.el_pageTtlPost_ja {
  font-family: "Shippori Mincho", serif;
  display: block;
  margin-top: 1.6rem;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.8;
  padding-right: 30rem;
}
@media screen and (max-width: 1024px) {
  .el_pageTtlPost_ja {
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .el_pageTtlPost_ja {
    font-size: 2.4rem;
    margin-top: 1.2rem;
  }
}
.el_pageTtlPost_en {
  font-family: "Cinzel", serif;
  display: block;
  color: #6FB5C4;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .el_pageTtlPost_en {
    font-size: 1.6rem;
  }
}
.el_pageTtlPost_date {
  display: block;
  margin-top: 1.6rem;
  color: #829498;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .el_pageTtlPost_date {
    margin-top: 0;
  }
}

/* el_secTtl */
.el_secTtl {
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .el_secTtl {
    font-size: 2rem;
  }
}

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

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

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

/* btn
============================== */
.el_btnNormal {
  font-family: "Shippori Mincho", serif;
  display: block;
  width: 100%;
  max-width: 20rem;
  padding: 1.2rem;
  border-radius: 0.4rem;
  border: 0.1rem solid #415558;
  background: #415558;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}
@media (hover: hover) {
  .el_btnNormal {
    transition: 0.5s;
  }
  .el_btnNormal:hover {
    background: #FFF;
    color: #6e6e6e;
  }
}

.el_btnArrow {
  display: flex;
  align-items: center;
  width: fit-content;
}
.el_btnArrow_ico {
  display: block;
  width: 4rem;
  height: 2rem;
  border-radius: 4rem;
  background: #6e6e6e;
  position: relative;
  overflow: hidden;
}
.el_btnArrow_ico::before {
  content: "";
  width: 1, 1rem;
  height: 0.8rem;
  background: url(../img/ico/ico_arrow-btn.svg);
  position: absolute;
  top: 0.6rem;
  left: 1.5rem;
}
.el_btnArrow_ico::after {
  content: "";
  width: 1.1rem;
  height: 0.8rem;
  background: url(../img/ico/ico_arrow-btn.svg);
  position: absolute;
  top: 0.6rem;
  left: 1.5rem;
  transform: translateX(-300%);
}
.el_btnArrow_text {
  display: block;
  margin-left: 1.2rem;
  color: #222;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .el_btnArrow_text {
    font-size: 1.4rem;
  }
}
@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: 10rem;
  background: #333;
  text-align: center;
  min-width: 26rem;
  height: 4.8rem;
}
.el_btnList a .el_text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
}
.el_btnList a .el_ico {
  content: "";
  width: 4rem;
  height: 4rem;
  border-radius: 3rem 0 0 3rem;
  background: #FFFFFF;
  position: absolute;
  left: 0.4rem;
  top: 0.4rem;
  overflow: hidden;
}
.el_btnList a .el_ico::before {
  content: "";
  background: url(../img/ico/ico_arrow-burger.svg) no-repeat;
  background-size: cover;
  width: 1.6rem;
  height: 1.7rem;
  position: absolute;
  top: 1rem;
  left: 1.4rem;
}
.el_btnList a .el_ico::after {
  content: "";
  background: url(../img/ico/ico_arrow-burger.svg) no-repeat;
  background-size: cover;
  width: 1.6rem;
  height: 1.7rem;
  position: absolute;
  top: 1rem;
  left: 1.4rem;
  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%);
  }
}
/* 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;
  }
}

/* textbox
============================== */
.el_textBox {
  position: relative;
  border-radius: 1.6rem;
  background: #FCFAF4;
  padding: 8rem 5.6rem 4rem;
}
@media screen and (max-width: 767px) {
  .el_textBox {
    padding: 6rem 2rem 2rem;
  }
}
.el_textBox_ico {
  padding: 2.4rem;
  border-radius: 50%;
  background: #FCFAF4;
  position: absolute;
  top: -6rem;
  left: calc(50% - 6rem);
}
@media screen and (max-width: 767px) {
  .el_textBox_ico {
    width: 10rem;
    padding: 1.6rem;
    top: -5rem;
    left: calc(50% - 5rem);
  }
}
.el_textBox_ttl {
  color: #6e6e6e;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  padding-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .el_textBox_ttl {
    font-size: 2rem;
  }
}
.el_textBox_ttl:before {
  content: "";
  width: 4.2rem;
  height: 0.6rem;
  background: url(../img/ico/ico_boxttl.svg);
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: calc(50% - 2.1rem);
}
@media screen and (max-width: 767px) {
  .el_textBox_ttl:before {
    width: 3.2rem;
    height: 0.45rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    left: calc(50% - 1.6rem);
  }
}
.el_textBox_ttl + .el_text {
  text-align: center;
  margin-top: 4.6rem;
}
@media screen and (max-width: 767px) {
  .el_textBox_ttl + .el_text {
    text-align: left;
    font-size: 1.4rem;
  }
}
.el_textBox .el_text.un_under {
  width: fit-content;
  margin: 2.4rem auto 0;
  background: linear-gradient(transparent 50%, #D8D2C0 50%);
  color: #222;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  padding: 0 0.8rem 0.2rem;
}
.el_textBox .el_text.un_center {
  text-align: center;
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .el_textBox .el_text.un_center {
    font-size: 1.4rem;
  }
}
.el_textBox .el_img {
  max-width: 14rem;
  margin: 4.6rem auto 0;
}
.el_textBox .el_img + .el_text {
  text-align: center;
  margin-top: 4.6rem;
  padding-bottom: 2rem;
}
.el_textBox_inbox {
  margin-top: 4.8rem;
  padding: 2.4rem;
  border-radius: 0.4rem;
  background: #FFF;
}
@media screen and (max-width: 767px) {
  .el_textBox_inbox {
    padding: 2rem;
  }
}
.el_textBox_inbox_inwrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .el_textBox_inbox_inwrap {
    flex-wrap: wrap;
    max-width: 20rem;
    margin: 0 auto;
  }
}
.el_textBox_inbox_inwrap + .el_textBox_inbox_inwrap {
  margin-top: 2.4rem;
}
.el_textBox_inbox_ttl {
  color: #6e6e6e;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .el_textBox_inbox_ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .el_textBox_inbox_ttl {
    width: 100%;
    margin-bottom: 0.6rem;
  }
}
.el_textBox_inbox_ttl span {
  margin: 0 0.4rem;
  color: #333;
  font-size: 160%;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .el_textBox_inbox_ttl span {
    font-size: 140%;
  }
}
.el_textBox_inbox_ico {
  margin: 0.8rem 1.6rem 0;
  width: 2.2rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .el_textBox_inbox_ico {
    height: 2rem;
    margin: 0;
    width: 1.8rem;
    display: block;
  }
  .el_textBox_inbox_ico + .el_textBox_inbox_ttl {
    width: calc(100% - 5rem);
  }
}
.el_textBox_inbox_ico:before {
  content: "";
  width: 1.8rem;
  height: 2rem;
  background-color: #6e6e6e;
  clip-path: polygon(1.8rem 50%, 0% 0%, 0% 2rem);
  display: inline-block;
}
.el_textBox_inbox .el_text {
  text-align: center;
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .el_textBox_inbox .el_text {
    font-size: 1.4rem;
    text-align: left;
  }
}
.el_textBox_inbox .el_text_small {
  color: #222;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .el_textBox_inbox .el_text_small {
    text-align: left;
  }
}
.el_textBox .el_subText {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .el_textBox .el_subText {
    margin-top: 1rem;
  }
}
.el_textBox .el_subText li {
  color: #6e6e6e;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  text-indent: -2rem;
  padding-left: 2rem;
}
.el_textBox .el_subText li::before {
  content: "・";
  letter-spacing: 0.6rem;
}
.el_textBox .el_subText li + li {
  margin-top: 0;
}
.el_textBox .el_subText + .el_subText_ttl {
  margin-top: 4rem;
}
.el_textBox .el_subText_inbox {
  border-top: 0.1rem solid #ccc;
  padding: 4rem 5.6rem 0;
  margin: 5rem -5.6rem 0;
}
@media screen and (max-width: 767px) {
  .el_textBox .el_subText_inbox {
    padding: 2rem 2rem 0;
    margin: 4rem -2rem 0;
  }
}
.el_textBox .el_subText_ttl {
  color: #6e6e6e;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
}

/* el_breadcrumbs
============================== */
.el_breadcrumbs {
  margin-right: 5.55vw;
  padding: 2.4rem 0;
  overflow: auto;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .el_breadcrumbs {
    margin: 0;
    padding: 2.4rem 0 2.4rem 2.4rem;
  }
}
.el_breadcrumbs_inner {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0 1rem;
  color: #A4A4A4;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  line-height: 1;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.el_breadcrumbs_inner::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  .el_breadcrumbs_inner {
    justify-content: flex-start;
    overflow: scroll;
  }
}
.el_breadcrumbs a {
  color: #415558;
}
.el_breadcrumbs .arrow {
  content: "";
  display: block;
  width: 0.8rem;
  min-width: 0.8rem;
  height: 0.1rem;
  background: #96AFB3;
}

/* tab item
============================== */
.el_tabBtn {
  display: flex;
  align-items: flex-end;
  gap: 0 0.8rem;
  padding: 0 2rem;
  margin: 0 auto;
  max-width: 116rem;
}
@media screen and (max-width: 767px) {
  .el_tabBtn {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    justify-content: flex-start;
  }
  .el_tabBtn::-webkit-scrollbar {
    display: none;
  }
}
.el_tabBtn_item {
  position: relative;
  padding: 0.8rem 3rem;
  border: 0.1rem solid #CADCDF;
  border-bottom: none;
  border-radius: 0.4rem 0.4rem 0 0;
  color: #CADCDF;
  font-family: "Shippori Mincho", serif;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  transition: 0.5s;
  cursor: pointer;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  gap: 0 0.8rem;
}
@media screen and (max-width: 1024px) {
  .el_tabBtn_item {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .el_tabBtn_item {
    font-size: 1.6rem;
    letter-spacing: 0;
  }
}
.el_tabBtn_item.is_active {
  padding: 1.2rem 3.1rem;
  color: #fff;
  font-weight: 600;
  background: #83C0CD;
}
@media screen and (max-width: 1024px) {
  .el_tabBtn_item.is_active {
    font-size: 1.6rem;
  }
}
.el_tabBtn_item.is_active::after {
  content: "";
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  background: url("../img/ico/ico_tab.svg") center center no-repeat;
  background-size: contain;
  position: relative;
  top: 0.2rem;
}

.el_tabContent {
  border-top: 0.1rem solid #CADCDF;
}
.el_tabContent .el_menuInjectionList {
  margin-bottom: 8rem;
  max-width: 116rem;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .el_tabContent .el_menuInjectionList {
    margin: 2.4rem auto;
    padding: 0 2.4rem;
  }
}

/* ===================================
common js setting
=================================== */
.js_acc_cont {
  display: none;
}

/* ===================================
view area
=================================== */
.ly_header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
.ly_header .ly_header_fv, .ly_header .ly_header_default {
  width: 100%;
  transition: all 0.6s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}
.ly_header .ly_header_fv {
  transform: translateY(0);
}
.ly_header .ly_header_fv .el_burger_btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .ly_header .ly_header_fv .el_burger_btn {
    display: flex;
  }
}
.ly_header .ly_header_default {
  transform: translateY(-100%);
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 70%);
}
.ly_header.is_view .ly_header_fv {
  transform: translateY(-100%);
}
.ly_header.is_view .ly_header_default {
  transform: translateY(0);
}
.ly_header_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2.8rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .ly_header_inner {
    padding: 2.6rem 1.6rem;
  }
}
.ly_header_logo {
  width: 8rem;
}
@media screen and (max-width: 767px) {
  .ly_header_logo {
    width: 5.2rem;
  }
}
.ly_header_logo a {
  display: block;
}
@media (hover: hover) {
  .ly_header_logo a {
    transition: 0.5s;
  }
  .ly_header_logo a:hover {
    opacity: 0.5;
  }
}
.ly_header_wrapper {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 3.2rem;
}
.ly_header_default .ly_header_wrapper {
  padding-right: 8.8rem;
}
.ly_header .el_snsList {
  margin-right: 3rem;
  pointer-events: all;
}
@media screen and (max-width: 767px) {
  .ly_header .el_snsList {
    gap: 2.4rem;
  }
}

.ly_head_nav {
  margin-left: auto;
  margin-right: 0;
  display: flex;
  align-items: center;
  gap: 0 2.4rem;
  /* tel */
}
@media screen and (max-width: 767px) {
  .ly_head_nav {
    display: none;
  }
}
.ly_head_nav .el_tel {
  pointer-events: all;
}
.ly_head_nav .el_tel_num {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  font-family: "Inter", sans-serif;
}
.ly_head_nav .el_tel_text {
  font-size: 1.4rem;
}
.ly_head_nav .el_tel a {
  display: flex;
  flex-flow: row wrap;
  gap: 0 0.8rem;
}
@media (hover: hover) {
  .ly_head_nav .el_tel a {
    transition: 0.5s;
  }
  .ly_head_nav .el_tel a:hover {
    opacity: 0.5;
  }
}

/* ===================================
burger
=================================== */
/* btn
============================== */
.el_burger_btn {
  width: 5.6rem;
  height: 5.6rem;
  position: absolute;
  top: 2.2rem;
  right: 4rem;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0 0.8rem;
  cursor: pointer;
}
@media (hover: hover) {
  .el_burger_btn {
    transition: 0.5s;
  }
  .el_burger_btn:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .el_burger_btn {
    width: 4rem;
    height: 4rem;
    right: 2rem;
  }
}

.bl_burger_inner {
  padding: 2rem;
}

.ly_burger {
  padding: 3rem 2.4rem;
  display: none;
  z-index: 100;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(65, 85, 88, 0.4);
  overflow: auto;
}

/* open */
body.is_menu_active {
  overflow: hidden;
}

/* inner
============================== */
@media screen and (max-width: 767px) {
  .ly_burger {
    padding-bottom: 9.5rem;
  }
}
.ly_burger_inner {
  display: flex;
  width: 100%;
  height: auto;
  min-height: 100%;
  background: #fff;
  border-radius: 4rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ly_burger_inner {
    flex-flow: column;
  }
}
.ly_burger_side {
  width: 20.83%;
  background: url("../img/common/burger_side_bg.jpg") no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .ly_burger_side {
    width: 100%;
    height: 19.4rem;
    background: url("../img/common/burger_side_bg-sp.jpg") no-repeat center center/cover;
  }
}
.ly_burger_main {
  width: 79.17%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .ly_burger_main {
    width: 100%;
  }
  .ly_burger_main .bl_burger_inner {
    padding: 4rem 2rem 4rem;
    max-width: 56rem;
    box-sizing: content-box;
  }
}
@media screen and (max-width: 767px) {
  .ly_burger_main .bl_burger_inner {
    max-width: 35rem;
  }
}
.ly_burger .el_logo {
  margin-bottom: 5.6rem;
  max-width: 32rem;
}
.ly_burger .el_reserveList {
  position: absolute;
  top: 3.8rem;
  right: 16rem;
}
@media screen and (max-width: 767px) {
  .ly_burger .el_reserveList {
    margin-bottom: 3.2rem;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 1.2rem 0;
    position: static;
  }
  .ly_burger .el_reserveList li {
    width: 100%;
    max-width: 30.4rem;
  }
  .ly_burger .el_reserveList li a {
    width: 100%;
  }
}
.ly_burger_bottom {
  position: relative;
  padding: 4rem 2rem 6rem;
  background: #FCFAF4;
}
@media screen and (max-width: 1024px) {
  .ly_burger_bottom {
    display: block;
  }
}
.ly_burger_bottom .el_tel a {
  width: fit-content;
  margin: 0 auto;
  display: block;
}
.ly_burger_bottom .el_tel .el_tel_num {
  color: #6e6e6e;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.64em;
  display: block;
  font-family: "Inter", sans-serif;
}
.ly_burger_bottom .el_tel .el_tel_text {
  color: #6e6e6e;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  display: block;
  margin-top: 0.6rem;
}
.ly_burger_bottom .el_btnList {
  max-width: 26rem;
  margin: 2rem auto 0;
}

.el_burger_close {
  position: absolute;
  top: 4.8rem;
  right: 4rem;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0 0.8rem;
  cursor: pointer;
  z-index: 1;
}
@media (hover: hover) {
  .el_burger_close {
    transition: 0.5s;
  }
  .el_burger_close:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .el_burger_close {
    display: none;
  }
}
.el_burger_close span {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
}
.el_burger_fixedClose {
  display: none;
}
@media screen and (max-width: 767px) {
  .el_burger_fixedClose {
    opacity: 0;
    width: 100%;
    height: 7.2rem;
    background: #83C0CD;
    font-family: "Inter", sans-serif;
    color: #fff;
    font-size: 1.4rem;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 0 1.2rem;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
  }
  .is_menu_active .el_burger_fixedClose {
    opacity: 1;
    pointer-events: auto;
  }
}
.el_burgerList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem 4rem;
  max-width: 74rem;
}
.el_burgerList li {
  width: calc(33.33% - 2.6666666667rem);
  position: relative;
}
@media screen and (max-width: 767px) {
  .el_burgerList li {
    width: 100%;
  }
}
.el_burgerList li::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to right, #83C0CD, #83C0CD 0.2rem, transparent 0.2rem, transparent 0.6rem);
  background-size: 0.6rem 0.1rem;
  background-position: left bottom;
  background-repeat: repeat-x;
}
.el_burgerList a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0;
  font-family: "Cinzel", serif;
  font-size: 2rem;
  line-height: 1;
}
@media (hover: hover) {
  .el_burgerList a {
    transition: 0.5s;
  }
  .el_burgerList a:hover {
    opacity: 0.5;
  }
}
.el_burgerList a::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 0.9rem;
  background: url("../img/ico/ico_right_arrow.svg") no-repeat center center/contain;
}
.el_burger_menu {
  display: flex;
  margin-top: 5.6rem;
  gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .el_burger_menu {
    flex-wrap: wrap;
    margin-top: 4.6rem;
  }
}
.el_burger_menu li {
  width: calc((100% - 1.6rem) / 3);
}
@media screen and (max-width: 767px) {
  .el_burger_menu li {
    width: 100%;
  }
}
.el_burger_menu a {
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 1.6rem;
  font-family: "Shippori Mincho", serif;
  padding: 2.2rem;
  position: relative;
  border-radius: 8px;
  line-height: 1;
}
.el_burger_menu a::before {
  content: "";
  width: 2.6rem;
  height: 2.6rem;
  background-image: url(../img/header/ico_btn_arrow.png);
  position: absolute;
  top: 18px;
  right: 20px;
  background-size: contain;
}
.el_burger_menu a.un_surgery {
  background-image: url(../img/header/bg_btn01.jpg);
}
.el_burger_menu a.un_dermatology {
  background-image: url(../img/header/bg_btn02.jpg);
}
.el_burger_menu a.un_injection {
  background-image: url(../img/header/bg_btn03.jpg);
}
@media (hover: hover) {
  .el_burger_menu a {
    transition: 0.5s;
  }
  .el_burger_menu a:hover {
    opacity: 0.5;
  }
}
.el_burger_info {
  margin-top: 5.2rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .el_burger_info {
    display: block;
    margin-top: 4.8rem;
    gap: 2.4rem 0;
  }
}
.el_burger_info .el_tel {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0 0.8rem;
}
.el_burger_sns {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0 1.2rem;
}
@media screen and (max-width: 767px) {
  .el_burger_sns {
    margin-bottom: 2.4rem;
  }
}
.el_burger_sns .el_text {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
}
.el_burger_sns .el_snsList {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  flex-flow: row;
  justify-content: center;
  gap: 0 1.2rem;
}
.el_burger_sns .el_snsList a {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.ly_footer_wrapper {
  padding: 12rem 2rem 9.8rem;
  background: url("../img/footer/footer_bg.png") no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .ly_footer_wrapper {
    padding: 8rem 2.4rem 5.6rem;
    background: url("../img/footer/footer_bg_sp.png") no-repeat top center;
    background-size: cover;
  }
}

/* ===================================
Reserve
=================================== */
/* reserve area
============================== */
.el_footReserve {
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .el_footReserve {
    margin-bottom: 6.4rem;
  }
}
.el_footReserve > .ly_inner {
  margin: 0 auto;
  padding: 0;
  padding-bottom: 8rem;
  max-width: 120rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .el_footReserve > .ly_inner {
    padding-bottom: 6.4rem;
  }
}
.el_footReserve > .ly_inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.2rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to right, #fff, #fff 0.2rem, transparent 0.2rem, transparent 0.6rem);
  background-size: 0.6rem 0.1rem;
  background-position: left bottom;
  background-repeat: repeat-x;
}
.el_footReserve_ttl {
  margin-bottom: 6.4rem;
  font-family: "Cinzel", serif;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 0 1.2rem;
}
.el_footReserve_ttl::before, .el_footReserve_ttl::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 0.1rem;
  background: #fff;
}
.el_footReserve .el_tel {
  margin-bottom: 3.2rem;
}
.el_footReserve .el_tel a {
  width: fit-content;
  position: relative;
  margin: 0 auto;
  color: #fff;
  display: flex;
  flex-flow: column;
  align-items: flex-end;
}
@media (hover: hover) {
  .el_footReserve .el_tel a {
    transition: 0.5s;
  }
  .el_footReserve .el_tel a:hover {
    opacity: 0.5;
  }
}
.el_footReserve .el_tel_txt {
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  position: absolute;
  top: 1.2rem;
  left: 0;
  transform: rotate(-90deg);
  transform-origin: center;
}
@media screen and (max-width: 767px) {
  .el_footReserve .el_tel_txt {
    top: 0.7rem;
  }
}
.el_footReserve .el_tel_num {
  padding-left: 4rem;
  font-family: "Cinzel", serif;
  color: #fff;
  font-size: 6.4rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .el_footReserve .el_tel_num {
    margin-bottom: 0.6rem;
    font-size: 4.8rem;
  }
}
.el_footReserve .el_tel_time {
  padding-right: 1rem;
  color: #FFF;
  text-align: right;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .el_footReserve .el_tel_time {
    font-size: 1.4rem;
  }
}
.el_footReserve .el_tel_time span {
  font-size: 1.6rem;
}
.el_footReserve_btnList {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 1.6rem 2rem;
}
.el_footReserve_btnList .el_btn {
  width: 24rem;
  border-color: #fff;
  justify-content: center;
  gap: 0 0.8rem;
}
@media screen and (max-width: 767px) {
  .el_footReserve_btnList .el_btn {
    width: 30.9rem;
  }
}
.el_footReserve_btnList .el_btn::after {
  display: none;
}
.el_footReserve_btnList .el_btn::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: url("../img/ico/ico_btn_arrow.svg") no-repeat center center;
  background-size: contain;
}
.el_footReserve_btnList .el_btn.is_line::before {
  background: url("../img/ico/ico_line.svg") no-repeat center center;
  background-size: contain;
}
.el_footReserve_btnList .el_btn.is_web::before {
  background: url("../img/ico/ico_yoyaku.svg") no-repeat center center;
  background-size: contain;
}

/* access
============================== */
.el_footAccess .ly_inner {
  max-width: 120rem;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0 8rem;
}
@media screen and (max-width: 767px) {
  .el_footAccess .ly_inner {
    padding: 0;
  }
}
.el_footAccess_map {
  width: calc(100% - 40rem - 8rem);
  height: 36.7rem;
  border-radius: 2rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .el_footAccess_map {
    width: 100%;
    height: auto;
    aspect-ratio: 1/0.5;
    max-width: none;
  }
}
.el_footAccess_map iframe {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .el_footAccess_map iframe {
    max-height: none;
    height: 50vw;
  }
}
.el_footAccess_content {
  width: 40rem;
}
.el_footAccess_list {
  border-top: 0.1rem solid #fff;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.8;
  display: flex;
  flex-flow: row wrap;
}
@media screen and (max-width: 767px) {
  .el_footAccess_list {
    margin-top: 2.4rem;
    border-top: 0.1rem solid #fff;
  }
}
.el_footAccess_list dt, .el_footAccess_list dd {
  padding: 2rem 0;
  border-bottom: 0.1rem solid #fff;
}
.el_footAccess_list dt {
  width: 5.6rem;
}
.el_footAccess_list dd {
  padding-left: 2.4rem;
  width: calc(100% - 5.6rem);
}
.el_footAccess_list dd a {
  text-decoration: underline;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0 0.4rem;
}
.el_footAccess_list dd a::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: url("../img/ico/ico_blank_white.svg") no-repeat center center;
  background-size: contain;
}

/* menu
============================== */
.el_footMenu .ly_inner {
  padding-top: 8rem;
  padding-bottom: 8rem;
  display: flex;
  flex-flow: row wrap;
  gap: 0 12rem;
  justify-content: space-between;
  max-width: 120rem;
  border-bottom: 0.1rem solid #CADCDF;
}
@media screen and (max-width: 767px) {
  .el_footMenu .ly_inner {
    padding: 5.6rem 2.4rem 4rem;
  }
}
.el_footMenu_head {
  width: 30rem;
}
@media screen and (max-width: 767px) {
  .el_footMenu_head {
    margin-bottom: 5.6rem;
    width: 100%;
  }
}
.el_footMenu_logo {
  margin-bottom: 0.4rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .el_footMenu_logo {
    margin-bottom: 2.4rem;
  }
}
.el_footMenu_content {
  width: calc(100% - 30rem - 12rem);
  max-width: 78rem;
  display: flex;
  flex-flow: column;
  gap: 4rem 0;
}
@media screen and (max-width: 767px) {
  .el_footMenu_content {
    width: 100%;
  }
}
.el_footMenu_snsList {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0 1.6rem;
}
@media screen and (max-width: 767px) {
  .el_footMenu_snsList {
    justify-content: flex-start;
  }
}
.el_footMenu_snsList li {
  width: 2rem;
}
@media (hover: hover) {
  .el_footMenu_snsList li a {
    transition: 0.5s;
  }
  .el_footMenu_snsList li a:hover {
    opacity: 0.5;
  }
}
.el_footMenu_wrap {
  width: 100%;
}
.el_footMenu_ttl {
  font-family: "Cinzel", serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
}
.el_footMenu_ttl a {
  position: relative;
  display: inline-block;
}
@media (hover: hover) {
  .el_footMenu_ttl a {
    transition: 0.5s;
  }
  .el_footMenu_ttl a:hover {
    opacity: 0.5;
  }
}
.el_footMenu_ttl a::before {
  content: "";
  background: url(../img/footer/ico_arrow_menu.png) no-repeat;
  background-size: cover;
  width: 22px;
  height: 22px;
  position: absolute;
  right: -28px;
  top: -4px;
}
.el_footMenu_list {
  margin-top: 2.4rem;
  display: flex;
  flex-flow: row wrap;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .el_footMenu_list {
    margin-top: 1.8rem;
    display: flex;
    flex-flow: row wrap;
  }
}
@media screen and (max-width: 767px) {
  .el_footMenu_list li {
    width: calc(50% - 1.6rem);
  }
}
.el_footMenu_list a {
  display: inline-block;
  color: #222;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  text-decoration-line: underline;
  text-underline-offset: 0.2rem;
}
@media (hover: hover) {
  .el_footMenu_list a {
    transition: 0.5s;
  }
  .el_footMenu_list a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .el_footMenu_list a {
    display: block;
    line-height: 1.4;
  }
}

/* footLinks
============================== */
.el_footLinks {
  padding: 8rem 0 10.8rem;
}
@media screen and (max-width: 767px) {
  .el_footLinks {
    padding: 4rem 0 calc(12rem + env(safe-area-inset-bottom));
  }
}
.el_footLinks .ly_inner {
  max-width: 120rem;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  .el_footLinks .ly_inner {
    display: block;
    padding: 0 2.4rem;
  }
}
.el_footLinks_wrap {
  display: flex;
  flex-flow: nowrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0 4rem;
}
@media screen and (max-width: 767px) {
  .el_footLinks_wrap {
    display: block;
  }
}
.el_footLinks_list {
  max-width: 76rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem 4.4rem;
}
@media screen and (max-width: 767px) {
  .el_footLinks_list {
    margin-bottom: 4.8rem;
    gap: 1.6rem;
  }
}
.el_footLinks_list li {
  position: relative;
}
@media screen and (max-width: 767px) {
  .el_footLinks_list li {
    width: calc(50% - 1.6rem);
  }
}
.el_footLinks_list li::before {
  content: "";
  width: 0.1rem;
  height: 100%;
  background: #415558;
  position: absolute;
  top: 0;
  right: -2.2rem;
}
@media screen and (max-width: 767px) {
  .el_footLinks_list li::before {
    display: none;
  }
}
.el_footLinks_list li:last-child::before {
  display: none;
}
.el_footLinks_list a {
  font-family: "Cinzel", serif;
  color: #222;
  font-size: 1.6rem;
  line-height: 1;
}
@media (hover: hover) {
  .el_footLinks_list a {
    transition: 0.5s;
  }
  .el_footLinks_list a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .el_footLinks_list a {
    font-size: 1.8rem;
  }
}
.el_footLinks_bottom {
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  flex-flow: column;
  gap: 1.6rem;
  align-items: flex-end;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .el_footLinks_bottom {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
  }
}
.el_footLinks_privacy {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

/* sp flow btn
============================== */
.el_flowArea {
  position: fixed;
  bottom: env(safe-area-inset-bottom);
  left: 0;
  width: 100%;
  z-index: 99;
}
.el_flowArea .el_flowArea_inner {
  display: flex;
  gap: 0.4rem;
  padding: 1.2rem;
}
.el_flowArea .el_btnList {
  display: flex;
  gap: 0.4rem;
  width: calc(100% - 5.2rem);
}
.el_flowArea .el_btnList li {
  width: calc((100% - 0.4rem) / 2);
}
.el_flowArea .el_btnList li + li {
  margin-top: 0;
}
.el_flowArea .el_btnList a {
  min-width: auto;
  width: 100%;
  padding: 1rem 1rem 1rem 5.2rem;
}
.el_flowArea .el_btnList a .el_text {
  word-break: break-all;
}
@media screen and (max-width: 374px) {
  .el_flowArea .el_btnList a .el_text {
    font-size: 1.4rem;
  }
}
.el_flowArea .el_tel {
  width: 4.8rem;
  height: 4.8rem;
  background: #6e6e6e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===================================
GUIDE
=================================== */
.un_guide.un_1col {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 4rem;
  padding: 5.6rem;
}
@media screen and (max-width: 1024px) {
  .un_guide.un_1col {
    margin-top: 2rem;
    padding: 6rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .un_guide.un_1col {
    display: block;
  }
}
.un_guide.un_1col.un_first {
  margin-top: 16rem;
}
@media screen and (max-width: 767px) {
  .un_guide.un_1col.un_first {
    margin-top: 10rem;
  }
}
.un_guide.un_1col .el_textBox_ttl {
  width: 31rem;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .un_guide.un_1col .el_textBox_ttl {
    width: 26rem;
  }
}
@media screen and (max-width: 767px) {
  .un_guide.un_1col .el_textBox_ttl {
    width: 100%;
    text-align: center;
  }
}
.un_guide.un_1col .el_textBox_ttl:before {
  left: 0;
}
@media screen and (max-width: 767px) {
  .un_guide.un_1col .el_textBox_ttl:before {
    left: calc(50% - 1.6rem);
  }
}
.un_guide.un_1col .el_textBox_right {
  width: calc(100% - 31rem);
}
@media screen and (max-width: 1024px) {
  .un_guide.un_1col .el_textBox_right {
    width: calc(100% - 26rem);
  }
}
@media screen and (max-width: 767px) {
  .un_guide.un_1col .el_textBox_right {
    width: 100%;
    margin-top: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .un_guide.un_1col .el_textBox_right .el_text {
    font-size: 1.4rem;
  }
}
.un_guide.un_1col .el_textBox_right .el_text + figure {
  max-width: 37.6rem;
  display: block;
  margin-top: 2.2rem;
}

.un_guide .el_textBox_ttl {
  padding-bottom: 2.8rem;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .un_guide .el_textBox_ttl {
    font-size: 2.4rem;
  }
}
.un_guide .el_textBox_ttl + .el_text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .un_guide .el_textBox_ttl + .el_text {
    font-size: 1.4rem;
    text-align: left;
  }
}
.un_guide .el_textBox_reserve {
  max-width: 36rem;
}
@media screen and (max-width: 767px) {
  .un_guide .el_textBox_reserve {
    margin: 0 auto;
  }
}
.un_guide .el_tel {
  margin: 2.4rem auto 0;
  width: fit-content;
}
.un_guide .el_tel a {
  display: block;
}
@media (hover: hover) {
  .un_guide .el_tel a {
    transition: 0.5s;
  }
  .un_guide .el_tel a:hover {
    opacity: 0.5;
  }
}
.un_guide .el_tel_num {
  display: block;
  color: #6e6e6e;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.un_guide .el_tel_text {
  display: block;
  color: #6e6e6e;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  margin-top: 0.6rem;
  text-align: center;
}
.un_guide .el_btnList {
  max-width: 36rem;
  margin-top: 1.6rem;
}
.un_guide .el_btnList a {
  min-width: 20rem;
}
@media screen and (max-width: 767px) {
  .un_guide .el_btnList a {
    padding: 1rem 1rem 1rem 4.2rem;
  }
}
.un_guide .el_btnList li + li {
  margin-top: 0.8rem;
}
.un_guide .el_btn_white {
  border-radius: 10rem;
  border: 0.1rem solid #ccc;
  background: #FFF;
  padding: 1.4rem 0;
  margin: 2.4rem auto 0;
  max-width: 28rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.un_guide .el_btn_white .el_ico {
  background: url(../img/ico/ico_download.svg) no-repeat;
  width: 1.4rem;
  height: 1.4rem;
  background-size: cover;
  margin-right: 1rem;
}
.un_guide .el_btn_white .el_text {
  color: #222;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .un_guide .el_btn_white .el_text {
    font-size: 1.2rem;
  }
}
@media (hover: hover) {
  .un_guide .el_btn_white {
    transition: 0.5s;
  }
  .un_guide .el_btn_white:hover {
    opacity: 0.5;
  }
}

.el_guideFlow li + li {
  margin-top: 5rem;
}
.el_guideFlow_ttl {
  position: relative;
  padding: 0.8rem 0 0 6rem;
}
.el_guideFlow_ttl_num {
  display: inline-block;
  color: #6e6e6e;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
}
.el_guideFlow_ttl_num::before {
  content: "";
  width: 5.6rem;
  height: 0.1rem;
  background: #6e6e6e;
  position: absolute;
  top: 2.4rem;
  right: -3rem;
  transform: rotate(135deg);
}
.el_guideFlow_ttl_ja {
  display: inline-block;
  color: #6e6e6e;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}
.el_guideFlow .el_text {
  margin-top: 2.2rem;
  color: #222;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .el_guideFlow .el_text {
    font-size: 1.4rem;
  }
}

/* ===================================
ABOUT
=================================== */
.bl_aboutConcept {
  margin-top: 16rem;
  margin-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .bl_aboutConcept {
    margin-top: 10rem;
    margin-bottom: 8rem;
  }
}
.bl_aboutConcept .el_text {
  color: #222;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.4;
  margin-top: 10rem;
}

.el_aboutConcept_ttl {
  color: #ccc;
  font-family: "Cinzel", serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .el_aboutConcept_ttl {
    font-size: 1.6rem;
  }
}
.el_aboutConcept_copy {
  width: fit-content;
  margin: 11rem auto 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .el_aboutConcept_copy {
    margin: 4rem auto 0;
  }
}
.el_aboutConcept_copy_ja {
  color: #222;
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.18em;
  position: absolute;
  bottom: 2.2rem;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .el_aboutConcept_copy_ja {
    font-size: 2rem;
    bottom: -4.6rem;
  }
}

.el_separator {
  height: 20rem;
  overflow: hidden;
}
.el_separator img {
  width: 100%;
  height: calc(100% + 8rem);
  object-fit: cover;
}

.bl_aboutMessage {
  display: flex;
  align-items: center;
  max-width: 82rem;
  margin: 12rem auto;
}
@media screen and (max-width: 767px) {
  .bl_aboutMessage {
    display: block;
    margin: 8rem auto;
  }
}
.bl_aboutMessage .el_text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  width: calc(100% - 32.2rem);
}
@media screen and (max-width: 767px) {
  .bl_aboutMessage .el_text {
    width: 100%;
  }
}

.el_aboutMessage_text {
  width: 32.2rem;
}
@media screen and (max-width: 767px) {
  .el_aboutMessage_text {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.el_aboutMessage_text span {
  color: #6e6e6e;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  border-bottom: 0.2rem solid #ccc;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .el_aboutMessage_text span {
    font-size: 2.4rem;
  }
}

.bl_aboutClinic {
  width: calc(100% - 4rem);
  padding: 12rem 2rem;
  margin: 0 auto;
  background: #FCFAF4;
}
@media screen and (max-width: 767px) {
  .bl_aboutClinic {
    width: calc(100% - 4rem);
    padding: 6rem 2rem;
  }
}
.bl_aboutClinic .el_textBox_ttl {
  font-size: 2.8rem;
  padding-bottom: 3rem;
}

.el_infoList {
  max-width: 56rem;
  margin: 5.6rem auto 0;
}
.el_infoList > div {
  display: flex;
  padding: 2.4rem 0;
  border-bottom: 0.1rem solid #ccc;
}
.el_infoList dt, .el_infoList dd {
  color: #222;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .el_infoList dt, .el_infoList dd {
    font-size: 1.4rem;
  }
}
.el_infoList dt {
  width: 13rem;
}
@media screen and (max-width: 767px) {
  .el_infoList dt {
    width: 10rem;
  }
}
.el_infoList dd {
  width: calc(100% - 13rem);
}
@media screen and (max-width: 767px) {
  .el_infoList dd {
    width: calc(100% - 10rem);
  }
}
.el_infoList .el_link_blank {
  display: inline-block;
  width: fit-content;
  position: relative;
  font-size: 1.4rem;
  margin-top: 0.8rem;
}
.el_infoList .el_link_blank:after {
  content: "";
  width: 1.3rem;
  height: 1.3rem;
  background: url(../img/ico/ico_blank.svg);
  background-size: cover;
  position: absolute;
  top: 0.6rem;
  right: -2rem;
}
@media screen and (max-width: 767px) {
  .el_infoList .el_link_blank:after {
    width: 1rem;
    height: 1rem;
    right: -1.2rem;
  }
}
@media (hover: hover) {
  .el_infoList .el_link_blank {
    transition: 0.5s;
  }
  .el_infoList .el_link_blank:hover {
    opacity: 0.5;
  }
}

.pg_about .el_breadcrumbs {
  margin-top: 2.4rem;
}

.el_historyList {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 0;
  margin-top: 2.6rem;
}
.el_historyList dt {
  width: 5.4rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
}
.el_historyList dd {
  width: calc(100% - 5.4rem);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}

/* ===================================
DISCOUNT
=================================== */
.el_textBox.un_discount {
  margin-top: 12rem;
}
.el_textBox.un_discount:nth-child(1) {
  margin-top: 29rem;
}
@media screen and (max-width: 1024px) {
  .el_textBox.un_discount:nth-child(1) {
    margin-top: 16rem;
  }
}
.el_textBox.un_discount .el_btnCampaign {
  border: 0.1rem solid #ccc;
  padding: 1.6rem 4rem;
  max-width: none;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .el_textBox.un_discount .el_btnCampaign {
    padding: 1.6rem;
    width: 100%;
  }
}

/* ===================================
PRIVACY POLICY
=================================== */
.un_policy .el_edit_page {
  margin-top: 8rem;
}

/* ===================================
特定商取引法に基づく表記
=================================== */
.un_commerce .el_edit_page {
  margin-top: 12rem;
  margin-bottom: 16rem;
}
@media screen and (max-width: 767px) {
  .un_commerce .el_edit_page {
    margin-top: 6rem;
  }
}
.un_commerce.ly_inner {
  max-width: 96rem;
}
.un_commerce .el_edit_page h2 {
  margin-top: 4rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

/* ===================================
RECRUIT
=================================== */
.ly_recruit_copy {
  margin-top: 16rem;
  margin-bottom: 12rem;
  padding: 0 2rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.4em;
}
@media screen and (max-width: 768px) {
  .ly_recruit_copy {
    margin-top: 10rem;
    margin-bottom: 8rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 600px) {
  .ly_recruit_copy {
    line-height: 2;
  }
}

.ly_recruit_ideal {
  overflow: hidden;
  position: relative;
  padding: 0 2rem;
  background-image: url(../img/recruit/bg_ideal.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 600px) {
  .ly_recruit_ideal {
    background-image: url(../img/recruit/bg_ideal_sp.jpg);
    padding: 12rem 2rem;
  }
}
.ly_recruit_ideal .ly_ideal_wrap {
  aspect-ratio: 1/1;
  max-width: 69rem;
  width: 100%;
  height: auto;
  margin: -7.6rem auto;
  padding: 15.6rem 2rem;
  background-color: #FCFAF4;
  border-radius: 100%;
}
.ly_recruit_ideal .ly_ideal_wrap .el_ideal_ttl {
  width: fit-content;
  margin: auto;
  margin-bottom: 6.4rem;
  padding-bottom: 0.3rem;
  border-bottom: 0.1rem solid #ccc;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0em;
}
.ly_recruit_ideal .ly_ideal_wrap .bl_ideal_content {
  margin-bottom: 6.4rem;
}
.ly_recruit_ideal .ly_ideal_wrap .bl_ideal_content .el_en_txt {
  margin-bottom: 0.7rem;
  font-family: "Cinzel", serif;
  text-align: center;
  color: #6e6e6e;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.098em;
}
.ly_recruit_ideal .ly_ideal_wrap .bl_ideal_content .el_en_txt span {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 4.8rem;
}
.ly_recruit_ideal .ly_ideal_wrap .bl_ideal_content .el_ja_txt {
  text-align: center;
  color: #6e6e6e;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.ly_recruit_ideal .ly_ideal_wrap .el_ideal_txt {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4;
  letter-spacing: 0em;
}
.ly_recruit_ideal .ly_ideal_wrap .el_ideal_txt .se_br {
  display: none;
}
@media screen and (max-width: 1024px) {
  .ly_recruit_ideal .ly_ideal_wrap {
    max-width: 53rem;
    margin: -4rem auto;
    padding: 11rem 2rem;
  }
  .ly_recruit_ideal .ly_ideal_wrap .el_ideal_ttl {
    margin-bottom: 3rem;
  }
  .ly_recruit_ideal .ly_ideal_wrap .bl_ideal_content {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 600px) {
  .ly_recruit_ideal .ly_ideal_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: unset;
    width: calc(100% + 16rem);
    margin: 0 -8rem;
    padding: 5rem 8rem;
  }
  .ly_recruit_ideal .ly_ideal_wrap .el_ideal_ttl {
    margin-bottom: 1rem;
  }
  .ly_recruit_ideal .ly_ideal_wrap .bl_ideal_content {
    margin-bottom: 2rem;
  }
  .ly_recruit_ideal .ly_ideal_wrap .bl_ideal_content .el_en_txt {
    margin-bottom: 0rem;
    font-size: 3rem;
  }
  .ly_recruit_ideal .ly_ideal_wrap .bl_ideal_content .el_en_txt span {
    font-size: 3.5rem;
  }
  .ly_recruit_ideal .ly_ideal_wrap .bl_ideal_content .el_ja_txt {
    font-size: 1.4rem;
  }
  .ly_recruit_ideal .ly_ideal_wrap .el_ideal_txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 360px) {
  .ly_recruit_ideal .ly_ideal_wrap .bl_ideal_content .el_en_txt {
    font-size: 2.8rem;
  }
  .ly_recruit_ideal .ly_ideal_wrap .bl_ideal_content .el_en_txt span {
    font-size: 3rem;
  }
  .ly_recruit_ideal .ly_ideal_wrap .el_ideal_txt .se_br {
    display: inline;
  }
}

.un_recruit {
  max-width: 122rem;
  padding: 12rem 2rem 0;
}
@media screen and (max-width: 768px) {
  .un_recruit {
    padding: 10rem 2rem 0;
  }
}
.un_recruit .ly_recruit_wrap {
  display: flex;
  gap: 5.6rem;
}
.un_recruit .ly_recruit_wrap .ly_sec {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .un_recruit .ly_recruit_wrap {
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .un_recruit .ly_recruit_wrap {
    flex-direction: column;
    gap: 6rem;
  }
  .un_recruit .ly_recruit_wrap .ly_sec {
    width: 100%;
  }
}
.un_recruit .ly_sec .el_sec_ttl {
  display: flex;
  gap: 1.6rem;
  width: 100%;
  color: #6e6e6e;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0;
}
.un_recruit .ly_sec .el_sec_ttl::before {
  content: "";
  display: block;
  margin-top: 0.8rem;
  width: 1.5rem;
  height: 1.6rem;
  border-radius: 1.2rem 0 0 1.2rem;
  background-color: #6e6e6e;
}
.un_recruit .ly_sec .ly_sec_cont {
  height: 100%;
  max-height: 33.2rem;
  margin-top: 2.4rem;
  border-radius: 0.8rem;
  padding: 5.6rem;
  background-color: #FCFAF4;
}
@media screen and (max-width: 1024px) {
  .un_recruit .ly_sec .ly_sec_cont {
    max-height: 31rem;
    padding: 4rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  .un_recruit .ly_sec .ly_sec_cont {
    max-height: unset;
    height: auto;
  }
}
.un_recruit .ly_sec.un_personality .ly_sec_cont {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem 1.7rem;
}
@media screen and (max-width: 768px) {
  .un_recruit .ly_sec.un_personality .ly_sec_cont {
    padding: 4rem 2rem;
  }
}
.un_recruit .ly_sec.un_personality .bl_personality_list {
  max-width: 46rem;
  width: 100%;
}
.un_recruit .ly_sec.un_personality .bl_personality_list li {
  display: flex;
  gap: 0.8rem;
  border-radius: 0.8rem;
  background-color: #cfcfcf;
  padding: 1.2rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}
.un_recruit .ly_sec.un_personality .bl_personality_list li + li {
  margin-top: 1.6rem;
}
.un_recruit .ly_sec.un_personality .bl_personality_list li::before {
  content: "";
  display: block;
  flex-direction: column;
  aspect-ratio: 1/1;
  width: 2rem;
  height: 2rem;
  margin-top: 0.4rem;
  background-image: url(../img/recruit/list_deco.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .un_recruit .ly_sec.un_personality .bl_personality_list {
    max-width: 100%;
  }
}
.un_recruit .ly_sec.un_message .ly_sec_cont {
  display: flex;
  align-items: center;
  gap: 3.9rem;
  padding: 1.6rem 1.7rem;
}
.un_recruit .ly_sec.un_message .ly_sec_cont .el_profile_img {
  border-radius: 16rem 16rem 0.8rem 0.8rem;
  max-width: 21.5rem;
  width: 100%;
  aspect-ratio: 43/60;
  overflow: hidden;
}
.un_recruit .ly_sec.un_message .ly_sec_cont .el_profile_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.un_recruit .ly_sec.un_message .ly_sec_cont .el_message_txt {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .un_recruit .ly_sec.un_message .ly_sec_cont {
    gap: 2rem;
  }
  .un_recruit .ly_sec.un_message .ly_sec_cont .el_profile_img {
    max-width: 40%;
  }
  .un_recruit .ly_sec.un_message .ly_sec_cont .el_message_txt {
    line-height: 2;
  }
}
@media screen and (max-width: 768px) {
  .un_recruit .ly_sec.un_message .ly_sec_cont {
    padding: 4rem 2rem;
  }
}
@media screen and (max-width: 450px) {
  .un_recruit .ly_sec.un_message .ly_sec_cont {
    flex-direction: column;
  }
  .un_recruit .ly_sec.un_message .ly_sec_cont .el_profile_img {
    max-width: 80%;
  }
  .un_recruit .ly_sec.un_message .ly_sec_cont .el_message_txt .sp_none_br {
    display: none;
  }
}
.un_recruit .ly_sec.un_recruit_list {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .un_recruit .ly_sec.un_recruit_list {
    margin-top: 6rem;
  }
}
.un_recruit .ly_sec.un_recruit_list .bl_recruit_list {
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
}
.un_recruit .ly_sec.un_recruit_list .bl_recruit_list li {
  width: calc(33.3333333333% - 1.6rem);
}
.un_recruit .ly_sec.un_recruit_list .bl_recruit_list li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.5rem 3.2rem;
  padding-right: 8rem;
  background-color: #6e6e6e;
  border: 0.1rem solid #6e6e6e;
  border-radius: 10rem;
  color: #FCFAF4;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0;
  background-image: url(../img/ico/ico_arrow-foot.svg);
  background-position: center right 3.2rem;
  background-size: 1.4rem;
  background-repeat: no-repeat;
}
@media (hover: hover) {
  .un_recruit .ly_sec.un_recruit_list .bl_recruit_list li a {
    transition: background-color 0.5s, color 0.5s;
  }
  .un_recruit .ly_sec.un_recruit_list .bl_recruit_list li a:hover {
    background-color: #FCFAF4;
    color: #6e6e6e;
    background-image: url(../img/ico/ico_arrow-foot_hover.svg);
    background-position: center right 3.2rem;
    background-size: 1.4rem;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 1024px) {
  .un_recruit .ly_sec.un_recruit_list .bl_recruit_list {
    gap: 1.8rem;
  }
  .un_recruit .ly_sec.un_recruit_list .bl_recruit_list li {
    width: calc(33.3333333333% - 1.2rem);
  }
  .un_recruit .ly_sec.un_recruit_list .bl_recruit_list li a {
    padding: 1.5rem 2.8rem;
    background-position: center right 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .un_recruit .ly_sec.un_recruit_list .bl_recruit_list li {
    width: 100%;
  }
}

/* ===================================
応募フォーム
=================================== */
.un_recruit_form {
  max-width: 80rem;
  margin-top: 8rem;
}
.un_recruit_form .ly_form_item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.un_recruit_form .ly_form_item + .ly_form_item {
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .un_recruit_form .ly_form_item {
    flex-direction: column;
    gap: 1rem;
  }
}
.un_recruit_form .ly_form_item .el_name_wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
}
.un_recruit_form .ly_form_item .el_name_wrap .un_required {
  flex-direction: column;
  display: block;
  background-color: #333;
  border: 0.1rem solid #333;
  border-radius: 5rem;
  padding: 0 0.8rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}
.un_recruit_form .ly_form_item .el_name_wrap .un_option {
  flex-direction: column;
  display: block;
  background-color: transparent;
  border: 0.1rem solid #333;
  border-radius: 5rem;
  padding: 0 0.8rem;
  color: #333;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}
.un_recruit_form .ly_form_item .el_name_wrap .el_item_name {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}
.un_recruit_form .ly_form_item .bl_form_wrap {
  max-width: 55.8rem;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .un_recruit_form .ly_form_item .bl_form_wrap {
    max-width: 50rem;
  }
}
@media screen and (max-width: 768px) {
  .un_recruit_form .ly_form_item .bl_form_wrap {
    max-width: 100%;
  }
}
.un_recruit_form .ly_form_item .bl_form_wrap .el_ex_txt {
  margin-top: 0.8rem;
  color: #ccc;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}
.un_recruit_form .ly_form_item .bl_form_wrap > p > span {
  width: 100%;
}
.un_recruit_form .ly_form_item .bl_form_wrap > p > span input[type=text],
.un_recruit_form .ly_form_item .bl_form_wrap > p > span input[type=tel],
.un_recruit_form .ly_form_item .bl_form_wrap > p > span input[type=email] {
  display: block;
  width: 100%;
  border: none;
  border-radius: 0.4rem;
  background: #FFF;
  padding: 0.8rem;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}
.un_recruit_form .ly_form_item .bl_form_wrap > p > span input[type=text]:-webkit-autofill,
.un_recruit_form .ly_form_item .bl_form_wrap > p > span input[type=tel]:-webkit-autofill,
.un_recruit_form .ly_form_item .bl_form_wrap > p > span input[type=email]:-webkit-autofill {
  box-shadow: 0 0 0 100rem white inset;
}
.un_recruit_form .ly_form_item .bl_form_wrap > p > span input[type=text]:autofill,
.un_recruit_form .ly_form_item .bl_form_wrap > p > span input[type=tel]:autofill,
.un_recruit_form .ly_form_item .bl_form_wrap > p > span input[type=email]:autofill {
  box-shadow: 0 0 0 100rem white inset;
}
.un_recruit_form .ly_form_item .bl_form_wrap > p > span input[name=job_name] {
  pointer-events: none;
  font-weight: 700;
  background-color: #FCFAF4;
}
.un_recruit_form .ly_form_item .bl_form_wrap > p > span input[type=file] {
  font-size: 1.6rem;
}
.un_recruit_form .ly_form_item .bl_form_wrap > p > span textarea {
  display: block;
  width: 100%;
  resize: vertical;
  border: none;
  border-radius: 0.4rem;
  background: #FFF;
  padding: 0.8rem;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}
.un_recruit_form .ly_form_item .bl_form_wrap > p > span textarea::placeholder {
  color: #ccc;
}
.un_recruit_form .ly_form_item.un_file_item .el_name_wrap {
  margin-top: 0;
}
.un_recruit_form .ly_form_check_item {
  margin-top: 5.6rem;
  margin-bottom: 5.6rem;
}
.un_recruit_form .ly_form_check_item .el_check_txt {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
}
.un_recruit_form .ly_form_check_item .el_check_txt a {
  color: #3F7AB8;
  text-decoration: underline;
}
@media (hover: hover) {
  .un_recruit_form .ly_form_check_item .el_check_txt a {
    transition: 0.5s;
  }
  .un_recruit_form .ly_form_check_item .el_check_txt a:hover {
    opacity: 0.5;
  }
}
.un_recruit_form .ly_form_check_item .el_chek_item {
  display: block;
  width: 100%;
  margin: auto;
}
.un_recruit_form .ly_form_check_item .el_chek_item input[type=checkbox] {
  display: none;
}
.un_recruit_form .ly_form_check_item .el_chek_item .wpcf7-not-valid-tip {
  width: 100%;
  text-align: center;
}
.un_recruit_form .ly_form_check_item .el_chek_item .wpcf7-checkbox {
  width: fit-content;
  margin: auto;
  display: block;
}
.un_recruit_form .ly_form_check_item .el_chek_item input[type=checkbox] + span {
  position: relative;
  cursor: pointer;
  display: block;
  width: fit-content;
  padding: 0.1rem;
  padding-left: 3.2rem;
  word-break: break-all;
  line-height: 1.4em;
  letter-spacing: 0.02em;
}
.un_recruit_form .ly_form_check_item .el_chek_item input[type=checkbox] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  background-color: #fff;
  border-radius: 0.4rem;
  transition: 0.3s;
}
.un_recruit_form .ly_form_check_item .el_chek_item input[type=checkbox] + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.8rem;
  left: 0.7rem;
  transform: rotate(-45deg);
  width: 0.8rem;
  height: 0.4rem;
  background-color: unset;
  border-left: 0.2rem solid #333;
  border-bottom: 0.2rem solid #333;
  border-radius: 0;
  opacity: 0;
  transition: 0.3s;
}
.un_recruit_form .ly_form_check_item .el_chek_item input[type=checkbox]:checked + span {
  position: relative;
  cursor: pointer;
  display: block;
  width: fit-content;
  padding: 0.1rem;
  padding-left: 3.2rem;
  line-height: 1.4em;
  letter-spacing: 0.02em;
}
.un_recruit_form .ly_form_check_item .el_chek_item input[type=checkbox]:checked + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  background-color: #fff;
  border-radius: 0.4rem;
  transition: 0.3s;
}
.un_recruit_form .ly_form_check_item .el_chek_item input[type=checkbox]:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.8rem;
  left: 0.7rem;
  transform: rotate(-45deg);
  width: 0.8rem;
  height: 0.4rem;
  background-color: unset;
  border-left: 0.2rem solid #333;
  border-bottom: 0.2rem solid #333;
  border-radius: 0;
  opacity: 1;
  transition: 0.3s;
}
.un_recruit_form .ly_form_check_item .wpcf7-list-item {
  margin: 0;
}
.un_recruit_form .ly_submit_btn {
  max-width: 32rem;
  width: 100%;
  margin: auto;
}
.un_recruit_form .ly_submit_btn input[type=submit] {
  display: block;
  width: 100%;
  padding: 1.6rem 3.2rem;
  border-radius: 10rem;
  background-color: #6e6e6e;
  border: 0.1rem solid #6e6e6e;
  text-align: center;
  color: #FCFAF4;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0;
}
@media (hover: hover) {
  .un_recruit_form .ly_submit_btn input[type=submit] {
    transition: 0.5s;
  }
  .un_recruit_form .ly_submit_btn input[type=submit]:hover {
    background: #FCFAF4;
    color: #6e6e6e;
  }
}
.un_recruit_form .wpcf7-response-output {
  display: none !important;
}

/* ===================================
応募完了画面
=================================== */
.un_recruit_thanks {
  padding-top: 14rem;
}
.un_recruit_thanks h1 {
  margin-bottom: 8rem;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0;
}
.un_recruit_thanks h1 .sp_br {
  display: none;
}
.un_recruit_thanks p {
  text-align: center;
}
.un_recruit_thanks p .un_pink_txt {
  color: #333;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .un_recruit_thanks {
    padding-top: 10rem;
  }
  .un_recruit_thanks h1 {
    margin-bottom: 6rem;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 600px) {
  .un_recruit_thanks h1 .sp_br {
    display: inline;
  }
  .un_recruit_thanks p {
    text-align: left;
  }
}
@media screen and (max-width: 375px) {
  .un_recruit_thanks h1 {
    font-size: 2.4rem;
  }
}

/* ===================================
404
=================================== */
.ly_inner.un_404 {
  margin-top: 12rem;
  margin-bottom: 16rem;
  max-width: 74rem;
}
@media screen and (max-width: 767px) {
  .ly_inner.un_404 {
    margin-top: 6rem;
    margin-bottom: 9.8rem;
    padding: 0 2.4rem;
  }
}
.ly_inner.un_404 .el_edit {
  margin: 0 0 1.6rem;
}
.ly_inner.un_404 .el_edit p {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ly_inner.un_404 .el_edit p {
    margin-bottom: 5.6rem;
    text-align: left;
    font-size: 1.6rem;
  }
}
.ly_inner.un_404 .el_btnNormal {
  margin: 8rem auto 0;
}
@media screen and (max-width: 767px) {
  .ly_inner.un_404 .el_btnNormal {
    margin-top: 0;
  }
}

/* ===================================
GUIDE
=================================== */
.ly_inner.un_about {
  margin-top: 12rem;
  margin-bottom: 16rem;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .ly_inner.un_about {
    margin-top: 6rem;
    margin-bottom: 9.8rem;
  }
}

.el_mission {
  margin: 0 auto 22rem;
  max-width: 82.8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .el_mission {
    margin-bottom: 16rem;
  }
}
.el_mission_lead {
  margin-bottom: 1.2rem;
  font-family: "Cinzel", serif;
  font-size: 1.6rem;
  line-height: 2.2;
}
.el_mission_ttl {
  margin: 0 auto 6.4rem;
  max-width: 39.2rem;
}
@media screen and (max-width: 767px) {
  .el_mission_ttl {
    max-width: 31.4rem;
  }
}
.el_mission_desc {
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  line-height: 2.6;
}
@media screen and (max-width: 767px) {
  .el_mission_desc {
    padding: 0 2.4rem;
    font-size: 1.6rem;
    text-align: justify;
  }
}

.el_clinicPoint {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.el_clinicPoint_item {
  height: 200vh;
  position: sticky;
  top: 0;
}
.el_clinicPoint_item:nth-of-type(3) {
  height: 100vh;
}
.el_clinicPoint_content {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}
.el_clinicPoint_bg {
  display: block;
  width: 100%;
  height: 100%;
}
.el_clinicPoint_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.el_clinicPoint_wrap {
  position: absolute;
  bottom: 5rem;
  right: 5rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .el_clinicPoint_wrap {
    padding: 0 2.4rem;
    bottom: 9.8rem;
    right: auto;
    left: 0;
  }
}
.el_clinicPoint_num {
  margin-bottom: 4rem;
  font-family: "Cinzel", serif;
  line-height: 1;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .el_clinicPoint_num {
    text-align: left;
  }
}
.el_clinicPoint_num .el_text {
  font-size: 1.6rem;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  transform: scale(-1, -1);
}
.el_clinicPoint_num .el_num {
  font-size: 7.2rem;
}
.el_clinicPoint_ttl {
  margin-bottom: 3.2rem;
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .el_clinicPoint_ttl {
    text-align: left;
    line-height: 1.4;
  }
}
.el_clinicPoint_text {
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  text-align: right;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .el_clinicPoint_text {
    text-align: left;
  }
}

.el_clinicInfo {
  margin: 16rem auto;
  max-width: 64rem;
}
@media screen and (max-width: 767px) {
  .el_clinicInfo {
    margin: 9.8rem auto;
  }
}
.el_clinicInfo_ttl {
  margin-bottom: 4.8rem;
  text-align: center;
}
.el_clinicInfo_ttl p {
  margin-bottom: 0.8rem;
  font-family: "Shippori Mincho", serif;
  color: #A4A4A4;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  line-height: 1.8;
}
.el_clinicInfo_ttl h2 {
  font-family: "Cinzel", serif;
  font-size: 4rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.el_clinicInfo_list {
  display: flex;
  flex-flow: column;
  gap: 2.4rem 0;
}
.el_clinicInfo_list div {
  padding-bottom: 2.4rem;
  border-bottom: 0.1rem solid #CADCDF;
  display: flex;
  flex-flow: row wrap;
  gap: 0 5.6rem;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .el_clinicInfo_list div {
    display: block;
  }
}
.el_clinicInfo_list div dt {
  width: 10rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .el_clinicInfo_list div dt {
    margin-bottom: 0.8rem;
    width: 100%;
  }
}
.el_clinicInfo_list div dd {
  width: calc(100% - 10rem - 5.6rem);
}
@media screen and (max-width: 767px) {
  .el_clinicInfo_list div dd {
    width: 100%;
  }
}

.el_clinicSlider {
  margin-bottom: 16rem;
}
@media screen and (max-width: 767px) {
  .el_clinicSlider {
    margin-bottom: 9.8rem;
  }
}
.el_clinicSlider .swiper-wrapper {
  transition-timing-function: linear;
  align-items: center;
}
.el_clinicSlider .swiper-wrapper .swiper-slide img {
  height: auto;
  width: 100%;
}

/* ===================================
ACCESS
=================================== */
.ly_2col.un_access {
  margin: 12rem auto 16rem;
  padding: 0 2rem;
  max-width: 128rem;
  box-sizing: content-box;
  overflow-x: hidden;
}
@media screen and (max-width: 1024px) {
  .ly_2col.un_access {
    margin: 6rem auto 9.8rem;
    padding: 0 2.4rem;
  }
}

.el_accessWrap {
  margin: 0 auto;
  max-width: 108rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .el_accessWrap {
    flex-flow: column;
    gap: 4.8rem 0;
  }
}

.el_accessMap {
  width: calc(100% - 54.4rem - 5.6rem);
  aspect-ratio: 1/1.25;
  border-radius: 2rem;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .el_accessMap {
    width: 100%;
    aspect-ratio: 1/0.5;
  }
}
@media screen and (max-width: 767px) {
  .el_accessMap {
    aspect-ratio: 1/0.66578947;
  }
}
.el_accessMap iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1024px) {
  .el_accessInfo {
    width: 100%;
  }
}
.el_accessInfo_logo {
  margin-bottom: 4.4rem;
  max-width: 30rem;
}
.el_accessInfo_address {
  margin-bottom: 4.4rem;
  font-size: 1.4rem;
  line-height: 1.6;
}
.el_accessInfo_address br.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .el_accessInfo_address br.sp {
    display: block;
  }
}
.el_accessInfo_address .el_link_blank {
  margin-top: 0.4rem;
}
.el_accessInfo_ttl {
  margin-bottom: 2.4rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.8;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0 0.6rem;
}
.el_accessInfo_ttl::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  background: url("../img/pages/access/ttl_icon.svg") center center no-repeat;
  background-size: contain;
}
.el_accessInfo_list {
  font-size: 1.4rem;
  line-height: 1.8;
  display: flex;
  flex-flow: row wrap;
  gap: 1.2rem 0;
}
@media screen and (max-width: 767px) {
  .el_accessInfo_list {
    gap: 0.2rem 0;
  }
}
.el_accessInfo_list dt, .el_accessInfo_list dd {
  width: 50%;
  padding-bottom: 1.2rem;
  border-bottom: 0.1rem solid #CADCDF;
}
@media screen and (max-width: 767px) {
  .el_accessInfo_list dt, .el_accessInfo_list dd {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .el_accessInfo_list dt {
    padding: 1.2rem 0 0;
    border-bottom: none;
  }
}
.el_accessInfo_list dd {
  padding-left: 0.6rem;
}
@media screen and (max-width: 767px) {
  .el_accessInfo_list dd {
    padding: 0 0 1.2rem;
  }
}

.el_accessRoot {
  margin-top: 9.8rem;
  padding-top: 9.8rem;
  border-top: 0.1rem solid #CADCDF;
}
.el_accessRoot_inner {
  margin: 0 auto;
  max-width: 108rem;
}
.el_accessRoot_ttl {
  font-family: "Shippori Mincho", serif;
  margin-bottom: 8rem;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .el_accessRoot_ttl {
    margin-bottom: 4.8rem;
    font-size: 2rem;
  }
}
.el_accessRoot_slider {
  padding-bottom: 8rem;
  position: relative;
}
.el_accessRoot_slider .swiper-scrollbar {
  height: 0.6rem !important;
  background: #F3F9FA;
  z-index: 1 !important;
}
.el_accessRoot_slider .swiper-scrollbar-drag {
  background: #83C0CD;
}
.el_accessRoot_thumb {
  margin-bottom: 1.2rem;
  width: 100%;
  aspect-ratio: 1/0.66666667;
  border-radius: 1.2rem;
  overflow: hidden;
}
.el_accessRoot_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.el_accessRoot_num {
  font-family: "Cinzel", serif;
  color: #6FB5C4;
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.4;
}
.el_accessRoot_num span {
  font-size: 2.4rem;
}
.el_accessRoot_txt {
  font-size: 1.4rem;
  line-height: 1.6;
}

/* ===================================
BLOG
=================================== */
/* archive
============================== */
.ly_inner.un_blog {
  margin-top: 12rem;
  margin-bottom: 15.8rem;
  padding: 0;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .ly_inner.un_blog {
    margin-top: 6rem;
    margin-bottom: 9.8rem;
  }
}
.ly_inner.un_blog .el_blogList {
  margin: 0 auto;
  max-width: 116rem;
  padding: 0 2rem;
}

.el_blogSearch {
  margin-bottom: 3.2rem;
  padding: 5.6rem 2rem;
  border-top: 0.1rem solid #CADCDF;
  border-bottom: 0.1rem solid #CADCDF;
}
@media screen and (max-width: 1024px) {
  .el_blogSearch {
    padding: 4.8rem 2.4rem;
  }
}
.el_blogSearch_inner {
  margin: 0 auto;
  width: 100%;
  max-width: 112rem;
  display: flex;
  flex-flow: row wrap;
  gap: 0 5.6rem;
}
@media screen and (max-width: 1024px) {
  .el_blogSearch_inner {
    justify-content: center;
    gap: 3rem;
  }
}
.el_blogSearch_item {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0 2.4rem;
}
@media screen and (max-width: 1024px) {
  .el_blogSearch_item {
    flex-flow: column;
    align-items: flex-start;
    gap: 0.8rem 0;
  }
}
.el_blogSearch_ttl {
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  line-height: 1.7;
}
.el_blogSearch .el_select {
  width: 24rem;
}
@media screen and (max-width: 767px) {
  .el_blogSearch .el_select {
    width: 30rem;
  }
}

/* single
============================== */
.ly_2col.un_blog.un_single {
  margin: 13rem auto 16rem;
  padding: 0 2rem;
  max-width: 112rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .ly_2col.un_blog.un_single {
    margin-top: 13.6rem;
    margin-bottom: 9.8rem;
    padding: 0 2.4rem;
  }
}
.ly_2col.un_blog.un_single .el_breadcrumbs {
  margin-bottom: 0.8rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .ly_2col.un_blog.un_single .el_breadcrumbs {
    padding-left: 0;
    padding-right: 0;
  }
}
.ly_2col.un_blog.un_single .el_breadcrumbs_inner {
  justify-content: flex-start;
}
.ly_2col.un_blog.un_single .el_btnNormal {
  margin: 0 auto;
}

.el_blogPosts {
  width: calc(100% - 32rem);
  max-width: 74rem;
}
@media screen and (max-width: 767px) {
  .el_blogPosts {
    width: 100%;
  }
}
.el_blogPosts_head {
  margin-bottom: 5.6rem;
}
.el_blogPosts_ttl {
  margin-bottom: 2rem;
  font-family: "Shippori Mincho", serif;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .el_blogPosts_ttl {
    margin-bottom: 1.6rem;
  }
}
.el_blogPosts_category {
  margin-bottom: 2rem;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0.4rem 0.8rem;
}
@media screen and (max-width: 767px) {
  .el_blogPosts_category {
    margin-bottom: 1.6rem;
  }
}
.el_blogPosts_theme {
  height: fit-content;
  margin-right: 0.8rem;
  padding: 0.4rem;
  background: #83C0CD;
  border-radius: 0.4rem;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}
.el_blogPosts_keyword {
  color: #A4A4A4;
  font-size: 1.2rem;
  display: flex;
  flex-flow: row wrap;
  gap: 0.8rem;
}
.el_blogPosts_date {
  margin-top: auto;
  margin-bottom: 1.2rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.2rem;
  line-height: 1.7;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0 0.8rem;
}
.el_blogPosts_date::before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  background: #83C0CD;
  border-radius: 50%;
}

.el_blogsSide {
  width: 30rem;
}
@media screen and (max-width: 767px) {
  .el_blogsSide {
    margin-top: 5.6rem;
    padding-top: 5.6rem;
    width: 100%;
    position: relative;
  }
  .el_blogsSide::before {
    content: "";
    display: block;
    width: 100%;
    height: 0.2rem;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(to right, #83C0CD, #83C0CD 0.2rem, transparent 0.2rem, transparent 0.6rem);
    background-size: 0.6rem 0.1rem;
    background-position: left bottom;
    background-repeat: repeat-x;
  }
}
.el_blogsSide .el_blogSearch {
  padding: 0;
  border: none;
}
.el_blogsSide .el_blogSearch_inner {
  flex-flow: column;
  gap: 3.2rem 0;
  align-items: center;
}
.el_blogsSide .el_blogSearch_item {
  width: 100%;
  max-width: 38rem;
  flex-flow: column;
  gap: 0.8rem 0;
  align-items: flex-start;
}
.el_blogsSide .el_blogSearch_item .el_select {
  width: 100%;
}

/* ===================================
case
=================================== */
/* archive
============================== */
.pg_case .el_pageTtl_en span {
  white-space: nowrap;
}

.ly_2col.un_case {
  padding: 0 2rem;
  margin: 12rem auto 16rem;
  box-sizing: content-box;
  max-width: 112rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .ly_2col.un_case {
    margin-top: 6rem;
    margin-bottom: 9.8rem;
    flex-flow: column-reverse;
  }
}

.el_casePosts {
  width: calc(100% - 28rem);
  max-width: 79rem;
}
@media screen and (max-width: 767px) {
  .el_casePosts {
    width: 100%;
    max-width: none;
  }
}
.el_casePosts .el_caseList {
  flex-flow: row wrap;
}
@media screen and (max-width: 600px) {
  .el_casePosts .el_caseList {
    flex-flow: column;
  }
}
.el_casePosts .el_caseList_item {
  min-width: auto;
}
@media screen and (max-width: 1024px) {
  .el_casePosts .el_caseList_item {
    width: calc(50% - 1.6rem);
  }
}
@media screen and (max-width: 600px) {
  .el_casePosts .el_caseList_item {
    width: 100%;
    max-width: 70.09vw;
  }
}

.el_caseSide {
  width: 26rem;
}
@media screen and (max-width: 767px) {
  .el_caseSide {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 6rem;
    padding: 4.8rem 0;
    border-top: 0.1rem solid #CADCDF;
    border-bottom: 0.1rem solid #CADCDF;
  }
}
@media screen and (max-width: 767px) {
  .el_caseSide_inner {
    margin: 0 auto;
    max-width: 30rem;
  }
}
.el_caseSide_ttl {
  font-family: "Shippori Mincho", serif;
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.7;
}
.el_sideSelect + .el_caseSide_ttl {
  margin-top: 3.2rem;
}

/* single
============================== */
.ly_inner.un_case.un_single {
  margin-top: 12.1rem;
  margin-bottom: 16rem;
  max-width: 116rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 0 2rem;
}
@media screen and (max-width: 1024px) {
  .ly_inner.un_case.un_single {
    margin-top: 6rem;
    margin-bottom: 9.8rem;
    padding: 0;
    flex-flow: column;
  }
}
.ly_inner.un_case.un_single .el_edit {
  width: 52rem;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .ly_inner.un_case.un_single .el_edit {
    width: 100%;
    padding: 0 2.4rem;
  }
}
.ly_inner.un_case.un_single .el_edit h2 {
  font-size: 2.4rem;
  padding-bottom: 1.8rem;
}
.ly_inner.un_case.un_single .el_edit h3 {
  font-size: 2rem;
  margin-top: 3.4rem;
  padding-left: 1rem;
}
.ly_inner.un_case.un_single .el_edit h3:before {
  height: calc(100% - 0.4rem);
  top: 0.2rem;
}
.ly_inner.un_case.un_single .el_edit h4 {
  margin-top: 2.6rem;
}

.el_sideCase {
  width: calc(100% - 54rem);
  max-width: 57.6rem;
}
@media screen and (max-width: 1024px) {
  .el_sideCase {
    margin: 0 auto 8rem;
    width: 100%;
    padding: 0 0.6rem;
  }
}
.el_sideCase_wrap {
  position: sticky;
  top: 10rem;
  height: auto;
  width: calc(100% - 9.6rem);
  margin: 0 auto;
}
.el_sideCase_img {
  border-radius: 0.8rem;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.el_sideCase_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.el_sideCase_cap {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.01em;
  margin-top: 0.8rem;
}
.el_sideCase .js_case_slide {
  overflow: hidden;
}
.el_sideCase .swiper-btn-prev, .el_sideCase .swiper-btn-next {
  width: 4rem;
  height: 4rem;
  top: 50%;
  transform: translate(0, -50%);
}
@media (hover: hover) {
  .el_sideCase .swiper-btn-prev, .el_sideCase .swiper-btn-next {
    transition: 0.5s;
  }
  .el_sideCase .swiper-btn-prev:hover, .el_sideCase .swiper-btn-next:hover {
    opacity: 0.5;
  }
}
.el_sideCase .swiper-btn-prev {
  position: absolute;
  left: -4.8rem;
  cursor: pointer;
  outline: none;
}
.el_sideCase .swiper-btn-prev.swiper-button-disabled {
  opacity: 0.2;
}
.el_sideCase .swiper-btn-next {
  position: absolute;
  right: -4.8rem;
  outline: none;
  cursor: pointer;
}
.el_sideCase .swiper-btn-next.swiper-button-disabled {
  opacity: 0.2;
}

.el_relationCase {
  margin: 9.8rem auto 0;
  padding: 9.8rem 0 0;
  width: 100%;
  border-top: 0.1rem solid #CADCDF;
}
@media screen and (max-width: 1024px) {
  .el_relationCase {
    margin-top: 8rem;
    padding: 9.8rem 2.4rem 0;
    border-top: none;
  }
}
@media screen and (max-width: 767px) {
  .el_relationCase {
    margin-top: 8rem;
    padding: 0 2.4rem;
    border-top: none;
  }
}
.el_relationCase_inner {
  max-width: 106.4rem;
  margin: 0 auto;
}
.el_relationCase .el_textBox_ttl {
  margin-bottom: 5.6rem;
  padding: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  text-align: left;
  line-height: 1.4;
}
.el_relationCase .el_caseList {
  gap: 0 3.4rem;
}
@media screen and (max-width: 767px) {
  .el_relationCase .el_caseList {
    flex-flow: row wrap;
    gap: 4rem 2.4rem;
  }
}
.el_relationCase .el_caseList_item {
  width: calc(25% - 2.55rem);
}
@media screen and (max-width: 767px) {
  .el_relationCase .el_caseList_item {
    width: calc(50% - 1.2rem);
    min-width: auto;
  }
}
.el_relationCase .el_caseList_thumb::before {
  width: 4.5rem;
  height: 4.5rem;
}
/* ===================================
GUIDE
=================================== */
.el_guideTtl {
  margin-bottom: 4.8rem;
}
.el_guideTtl_ja {
  margin-bottom: 0.8rem;
  font-family: "Shippori Mincho", serif;
  color: #A4A4A4;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
.el_guideTtl_en {
  font-family: "Cinzel", serif;
  font-size: 4rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .el_guideTtl_en {
    font-size: 3.2rem;
  }
}

.pg_guide .ly_reserve {
  margin-bottom: 16rem;
  padding: 14.8rem 2rem 0;
}
@media screen and (max-width: 767px) {
  .pg_guide .ly_reserve {
    margin-bottom: 9.8rem;
    padding-top: 6rem;
  }
}
.pg_guide .ly_reserve_inner {
  margin: 0 auto;
  max-width: 92rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0 2rem;
}
@media screen and (max-width: 767px) {
  .pg_guide .ly_reserve_inner {
    max-width: 100%;
    justify-content: center;
  }
}
.pg_guide .el_reserve_content {
  max-width: 38rem;
}
@media screen and (max-width: 767px) {
  .pg_guide .el_reserve_content {
    margin-bottom: 5.6rem;
    max-width: 100%;
  }
}
.pg_guide .el_reserve_head {
  margin-bottom: 3.2rem;
  padding-bottom: 3.2rem;
  text-align: center;
  border-bottom: 0.2rem dotted #CADCDF;
}
.pg_guide .el_reserve_head .el_guideTtl {
  margin-bottom: 3.2rem;
}
.pg_guide .el_reserve_desc {
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  line-height: 1.8;
}
.pg_guide .el_reserve_image {
  max-width: 40rem;
}
@media screen and (max-width: 1024px) {
  .pg_guide .el_reserve_image {
    max-width: 36rem;
  }
}
@media screen and (max-width: 767px) {
  .pg_guide .el_reserve_image {
    margin: 0 calc(50% - 50vw);
    max-width: 100vw;
  }
}
.pg_guide .el_reserve_tel {
  margin-bottom: 2.4rem;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  line-height: 1;
  gap: 0 0.8rem;
}
.pg_guide .el_reserve_tel .el_tel {
  font-family: "Cinzel", serif;
  font-size: 3.2rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
.pg_guide .el_reserve_tel .el_text {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
}
.pg_guide .el_reserve_tel .el_text span {
  font-size: 1.4rem;
}
.pg_guide .el_reserve_list .el_reserveList {
  flex-flow: column-reverse;
  gap: 0.8rem 0;
}
.pg_guide .el_reserve_list .el_reserveList li a {
  width: 31.3rem;
  height: 5.2rem;
}
@media (hover: hover) {
  .pg_guide .el_reserve_list .el_reserveList li a {
    transition: 0.5s;
  }
  .pg_guide .el_reserve_list .el_reserveList li a:hover {
    opacity: 0.5;
  }
}
.pg_guide .ly_flow {
  margin-bottom: 16rem;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .pg_guide .ly_flow {
    margin-bottom: 9.8rem;
    padding: 0 2.4rem;
  }
}
.pg_guide .ly_flow_inner {
  margin: 0 auto;
  padding: 9.8rem 0;
  max-width: 128rem;
  border-top: 0.1rem solid #CADCDF;
}
@media screen and (max-width: 767px) {
  .pg_guide .ly_flow_inner {
    padding: 0;
    border-top: none;
  }
}
.pg_guide .el_flow_content {
  margin: 0 auto;
  max-width: 112rem;
}
.pg_guide .el_flow_list {
  display: flex;
  flex-flow: row wrap;
  gap: 0 6rem;
}
@media screen and (max-width: 1024px) {
  .pg_guide .el_flow_list {
    gap: 0 4rem;
  }
}
@media screen and (max-width: 767px) {
  .pg_guide .el_flow_list {
    gap: 8.4rem 0;
  }
}
.pg_guide .el_flow_list li {
  width: calc(25% - 4.5rem);
}
@media screen and (max-width: 1024px) {
  .pg_guide .el_flow_list li {
    width: calc(25% - 3rem);
  }
}
@media screen and (max-width: 767px) {
  .pg_guide .el_flow_list li {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    gap: 0 2rem;
    position: relative;
  }
  .pg_guide .el_flow_list li:not(:last-child)::after {
    content: "";
    display: block;
    width: 2rem;
    height: 1.2rem;
    background: url("../img/ico/ico_right_arrow.svg") center center no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translate(-50%, 100%) rotate(90deg);
  }
}
.pg_guide .el_flow_list li:not(:last-child) figure {
  position: relative;
}
.pg_guide .el_flow_list li:not(:last-child) figure::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1.2rem;
  background: url("../img/ico/ico_right_arrow.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: -2rem;
  transform: translate(100%, -50%);
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .pg_guide .el_flow_list li:not(:last-child) figure::after {
    right: -1rem;
  }
}
@media screen and (max-width: 767px) {
  .pg_guide .el_flow_list li:not(:last-child) figure::after {
    display: none;
  }
}
.pg_guide .el_flow_list li figure {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .pg_guide .el_flow_list li figure {
    margin: 0;
    width: 16rem;
    aspect-ratio: 1/1;
  }
}
.pg_guide .el_flow_list li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.8rem;
  overflow: hidden;
}
.pg_guide .el_flow_list li h3 {
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  line-height: 1.3;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  gap: 0 0.8rem;
}
@media screen and (max-width: 767px) {
  .pg_guide .el_flow_list li h3 {
    flex-flow: column;
    gap: 0.8rem 0;
  }
}
.pg_guide .el_flow_list li h3 span {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
}
.pg_guide .el_flow_list li p {
  font-size: 1.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .pg_guide .el_flow_list_content {
    width: calc(100% - 16rem - 2rem);
  }
}
.pg_guide .ly_guideWrapper {
  margin-bottom: 16rem;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .pg_guide .ly_guideWrapper {
    margin-bottom: 9.8rem;
    padding: 0;
  }
}
.pg_guide .ly_guideWrapper_inner {
  margin: 0 auto;
  max-width: 128rem;
  border-top: 0.1rem solid #CADCDF;
  border-bottom: 0.1rem solid #CADCDF;
  display: flex;
  flex-flow: row wrap;
}
@media screen and (max-width: 767px) {
  .pg_guide .ly_guideWrapper_inner {
    display: block;
  }
}
.pg_guide .ly_payment {
  padding: 9.8rem 3rem 16rem;
  width: 50%;
  border-right: 0.1rem solid #CADCDF;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .pg_guide .ly_payment {
    padding: 9.8rem 2.4rem;
    width: 100%;
    border-bottom: 0.1rem solid #CADCDF;
    justify-content: flex-start;
  }
}
.pg_guide .ly_payment_inner {
  max-width: 48rem;
}
.pg_guide .ly_payment .el_text {
  margin-bottom: 2.4rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  line-height: 1.8;
}
.pg_guide .ly_payment .el_payment_list {
  display: flex;
  gap: 0 0.8rem;
}
.pg_guide .ly_payment .el_payment_list li {
  max-width: 5.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pg_guide .ly_minor {
  padding: 9.8rem 3rem 16rem;
  width: 50%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .pg_guide .ly_minor {
    padding: 9.8rem 2.4rem;
    width: 100%;
    justify-content: flex-start;
  }
}
.pg_guide .ly_minor_inner {
  max-width: 48rem;
}
.pg_guide .ly_minor .el_text {
  margin-bottom: 4.8rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  line-height: 1.8;
}
.pg_guide .ly_minor .el_minor_btn {
  margin-bottom: 1.2rem;
  max-width: 28rem;
  height: 4.4rem;
  background: #415558;
  border-radius: 0.4rem;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 0.8rem;
}
@media (hover: hover) {
  .pg_guide .ly_minor .el_minor_btn {
    transition: 0.5s;
  }
  .pg_guide .ly_minor .el_minor_btn:hover {
    opacity: 0.5;
  }
}
.pg_guide .ly_minor .el_minor_btn:before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background: url("../img/ico/ico_download.svg") center center no-repeat;
  background-size: contain;
}
.pg_guide .ly_minor .el_minor_attention {
  font-size: 1.2rem;
  line-height: 1.6;
}

/* ===================================
FAQ
=================================== */
.ly_inner.un_faq {
  margin-top: 12rem;
  margin-bottom: 16rem;
}
@media screen and (max-width: 767px) {
  .ly_inner.un_faq {
    margin-top: 6rem;
    margin-bottom: 9.8rem;
  }
}

.ly_secFaq {
  margin-top: 12.2rem;
}
.ly_secFaq:first-child {
  margin-top: 0;
}
.ly_secFaq:last-child {
  margin-bottom: 18rem;
}
@media screen and (max-width: 767px) {
  .ly_secFaq:last-child {
    margin-bottom: 9.8rem;
  }
}

.el_faqList {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .el_faqList {
    margin-top: 4.8rem;
  }
}
.el_faqList dt {
  cursor: pointer;
  position: relative;
  margin-top: 1.6rem;
  padding: 2.4rem 7.8rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .el_faqList dt {
    padding: 2rem 6rem;
  }
}
.el_faqList dt::before, .el_faqList dt::after {
  content: "";
  height: 0.1rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
.el_faqList dt::before {
  width: 100%;
  background: #CADCDF;
}
.el_faqList dt::after {
  width: 8rem;
  background: #83C0CD;
}
.el_faqList dd {
  padding: 2.4rem 1.6rem;
  font-size: 1.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .el_faqList dd {
    padding: 2rem;
  }
}
.el_faqList dd a {
  text-decoration: underline;
}
@media (hover: hover) {
  .el_faqList dd a {
    transition: 0.5s;
  }
  .el_faqList dd a:hover {
    opacity: 0.5;
  }
}
.el_faqList dd strong {
  color: #83C0CD;
  font-weight: 700;
}
.el_faqList_q {
  position: absolute;
  top: 2.8rem;
  left: 3rem;
  color: #6FB5C4;
  font-family: "Cinzel", serif;
  font-size: 2.4rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .el_faqList_q {
    top: 2rem;
    left: 1.6rem;
  }
}
.el_faqList_ico {
  display: block;
  border-radius: 50%;
  background: #FFF;
  width: 3.2rem;
  height: 3.2rem;
  position: absolute;
  top: calc(50% - 1.6rem);
  right: 3rem;
}
@media screen and (max-width: 767px) {
  .el_faqList_ico {
    right: 1.6rem;
  }
}
.el_faqList_ico:before {
  content: "";
  width: 1.6rem;
  height: 0.3rem;
  border-radius: 0.2rem;
  background: #415558;
  position: absolute;
  top: 1.4rem;
  left: 0.8rem;
}
.el_faqList_ico:after {
  content: "";
  width: 1.6rem;
  height: 0.3rem;
  border-radius: 0.2rem;
  background: #415558;
  position: absolute;
  top: 1.4rem;
  left: 0.8rem;
  transform: rotate(90deg);
  transition: 0.5s;
}
.is_active .el_faqList_ico:after {
  transform: rotate(0);
}

/* ===================================
feature archive
=================================== */
.ly_inner.un_feature {
  margin-top: 12rem;
  margin-bottom: 16rem;
}
@media screen and (max-width: 1024px) {
  .ly_inner.un_feature {
    margin-top: 6rem;
    margin-bottom: 10.2rem;
    padding: 0;
  }
}

/* ===================================
feature single
=================================== */
.ly_2col.un_feature.un_single {
  box-sizing: content-box;
  padding: 0 2rem;
  margin: 11.6rem auto 16rem;
  max-width: 112rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .ly_2col.un_feature.un_single {
    margin-bottom: 10.2rem;
  }
}
.ly_2col.un_feature.un_single .el_breadcrumbs {
  width: 100%;
  padding: 3.2rem 0;
}
.ly_2col.un_feature.un_single .el_breadcrumbs_inner {
  justify-content: flex-start;
}
.ly_2col.un_feature.un_single .el_btnNormal {
  margin: 8rem auto 0;
}

.el_featurePosts {
  width: calc(100% - 32rem);
  max-width: 74rem;
}
@media screen and (max-width: 1024px) {
  .el_featurePosts {
    width: 100%;
    max-width: 100%;
    margin-bottom: 5.6rem;
    padding-bottom: 5.6rem;
    position: relative;
  }
  .el_featurePosts::before {
    content: "";
    display: block;
    width: 100%;
    height: 0.1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to right, #83C0CD, #83C0CD 0.2rem, transparent 0.2rem, transparent 0.6rem);
    background-size: 0.6rem 0.1rem;
    background-position: left bottom;
    background-repeat: repeat-x;
  }
}

.el_featureSide {
  width: 30rem;
  height: fit-content;
  display: flex;
  flex-flow: column;
  gap: 3rem 0;
  position: sticky;
  top: 14.5rem;
  align-self: flex-start;
}
@media screen and (max-width: 1024px) {
  .el_featureSide {
    width: 100%;
    max-width: 38rem;
    margin: 0 auto;
  }
}

.el_featureHead {
  margin-bottom: 5.6rem;
}
.el_featureHead_ttl {
  margin-bottom: 2rem;
  font-family: "Shippori Mincho", serif;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.8;
}
.el_featureHead_cat {
  display: flex;
  flex-flow: row wrap;
  gap: 0.6rem 1.2rem;
  margin-bottom: 2rem;
}
.el_featureHead_cat a {
  padding: 0.4rem;
  border-radius: 0.4rem;
  background: #83C0CD;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
}

/* ===================================
doctor archive
=================================== */
.ly_inner.un_doctor {
  margin-top: 12rem;
  margin-bottom: 16rem;
  max-width: 102rem;
}
@media screen and (max-width: 1024px) {
  .ly_inner.un_doctor {
    margin-top: 6rem;
    margin-bottom: 10.2rem;
  }
}

.el_doctorList > li {
  margin-bottom: 9.8rem;
  padding-bottom: 9.8rem;
  border-bottom: 0.1rem solid #CADCDF;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .el_doctorList > li {
    flex-flow: column;
    align-items: center;
    gap: 3.2rem 0;
  }
}
.el_doctorList_img {
  height: fit-content;
  width: 100%;
  max-width: 42.8rem;
  padding-left: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .el_doctorList_img {
    margin-bottom: 4.8rem;
    max-width: 35.6rem;
    width: 100%;
    padding-left: 1.6rem;
  }
}
.el_doctorList_img figure {
  filter: drop-shadow(0 0 0.2rem rgba(152, 170, 184, 0.3));
}
.el_doctorList_img p {
  font-family: "Cinzel", serif;
  font-size: 5.6rem;
  line-height: 1.2;
  position: absolute;
  bottom: -2.6rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .el_doctorList_img p {
    font-size: 4.8rem;
    bottom: -0.6rem;
  }
}
.el_doctorList_content {
  width: 51.2rem;
}
@media screen and (max-width: 1024px) {
  .el_doctorList_content {
    width: 100%;
  }
}
.el_doctorList_textWrap {
  margin-bottom: 4.8rem;
  font-family: "Shippori Mincho", serif;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
}
.el_doctorList_job {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}
.el_doctorList_name {
  margin-left: 2.4rem;
  font-size: 3.2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .el_doctorList_name {
    font-size: 2.8rem;
  }
}
.el_doctorList_profile {
  margin-bottom: 5rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  line-height: 2;
}
.el_doctorList_ttl {
  margin-bottom: 2.4rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  padding: 0.2rem 0 0.2rem 1.2rem;
}
.el_doctorList_ttl:before {
  content: "";
  width: 0.4rem;
  height: 100%;
  background: #83C0CD;
  border-radius: 2.4rem;
  position: absolute;
  top: 0.1rem;
  left: 0;
}
.el_doctorList_history {
  margin-bottom: 5rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  flex-flow: row wrap;
  gap: 1rem 3.2rem;
}
.el_doctorList_history dt {
  width: 4.8rem;
}
.el_doctorList_history dd {
  width: calc(100% - 4.8rem - 3.2rem);
}
.el_doctorList_license {
  margin-bottom: 4.8rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  flex-flow: row wrap;
  gap: 1rem 0;
}
.el_doctorList_license li {
  width: 100%;
}
.el_doctorList_sns {
  display: flex;
  flex-flow: row wrap;
  gap: 1.2rem;
}
.el_doctorList_sns li {
  width: calc(50% - 0.6rem);
  border: 0.1rem solid #000;
  border-radius: 0.4rem;
}
@media (hover: hover) {
  .el_doctorList_sns li {
    transition: 0.5s;
  }
  .el_doctorList_sns li:hover {
    opacity: 0.5;
  }
}
.el_doctorList_sns li a {
  width: 100%;
  height: 4.8rem;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 0 0.8rem;
}
@media screen and (max-width: 374px) {
  .el_doctorList_sns li a {
    gap: 0 0.4rem;
  }
}
.el_doctorList_sns li a::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.el_doctorList_sns li a.icon_Instagram::before {
  background-image: url("../img/archive/doctor/icon-instagram.svg");
}
.el_doctorList_sns li a.icon_TikTok::before {
  background-image: url("../img/archive/doctor/icon-tiktok.svg");
}
.el_doctorList_sns li a.icon_YouTube::before {
  background-image: url("../img/archive/doctor/icon-youtube.svg");
}
@media screen and (max-width: 767px) {
  .el_doctorList.is_nurse > li {
    position: relative;
  }
  .el_doctorList.is_nurse > li::before {
    content: "";
    width: 100vw;
    height: 0.1rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.el_doctorList.is_nurse > li:nth-child(odd) {
  flex-flow: row-reverse wrap;
}
@media screen and (max-width: 1024px) {
  .el_doctorList.is_nurse > li:nth-child(odd) {
    flex-flow: column;
    align-items: center;
  }
}
.el_doctorList.is_nurse > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.el_doctorList.is_nurse .el_doctorList {
  gap: 0 10rem;
}
.el_doctorList.is_nurse .el_doctorList_img {
  width: 100%;
  max-width: 26rem;
}
@media screen and (max-width: 767px) {
  .el_doctorList.is_nurse .el_doctorList_img {
    width: 25.6rem;
  }
}
.el_doctorList.is_nurse .el_doctorList_img p {
  font-size: 3.8rem;
}
.el_doctorList.is_nurse .el_doctorList_content {
  width: 68rem;
}
@media screen and (max-width: 1024px) {
  .el_doctorList.is_nurse .el_doctorList_content {
    width: 100%;
  }
}
.el_doctorList.is_nurse .el_doctorList_textWrap {
  margin-bottom: 2.8rem;
}
.el_doctorList.is_nurse .el_doctorList_name {
  font-size: 2.8rem;
}
.el_doctorList.is_nurse .el_doctorList_sns {
  margin-bottom: 2.8rem;
  gap: 0 1.3rem;
}
.el_doctorList.is_nurse .el_doctorList_sns li {
  width: 1.8rem;
  height: 1.8rem;
  border: none;
}
.el_doctorList.is_nurse .el_doctorList_sns li a {
  width: 100%;
  height: 100%;
}
.el_doctorList.is_nurse .el_doctorList_profile {
  margin-bottom: 4.8rem;
}
.el_doctorList.is_nurse .el_doctorList_wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 0 3.2rem;
}
.el_doctorList.is_nurse .el_doctorList_wrap > * {
  width: calc(50% - 1.6rem);
}
@media screen and (max-width: 767px) {
  .el_doctorList.is_nurse .el_doctorList_wrap > * {
    width: 100%;
  }
}
.el_doctorList.is_nurse .el_doctorList_license {
  margin-bottom: 0;
}

.ly_main.un_std .el_breadcrumbs {
  margin: 0 auto;
  max-width: 112rem;
}

/* ===================================
menu archive
=================================== */
.ly_inner.un_menu {
  margin-top: 12rem;
  margin-bottom: 16rem;
  padding: 0;
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .ly_inner.un_menu {
    margin-top: 6rem;
    margin-bottom: 10.2rem;
  }
}

.el_menuResult_ttl {
  margin-bottom: 6.5rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  line-height: 1.1;
}
.el_menuResult_ttl span {
  padding: 0 2.1rem;
  margin: 0 1.2rem 0 0;
  display: inline-block;
  color: #83C0CD;
  font-size: 2.8rem;
  position: relative;
}
.el_menuResult_ttl span::before, .el_menuResult_ttl span::after {
  content: "";
  display: block;
  width: 1.3rem;
  height: 1rem;
  background: url("../img/ico/ico_quotation.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
}
.el_menuResult_ttl span::before {
  left: 0;
  transform: scale(-1, -1);
}
.el_menuResult_ttl span::after {
  right: 0;
}
.el_menuResult_list {
  display: flex;
  flex-flow: row wrap;
  gap: 4.5rem 4.8rem;
}
@media screen and (max-width: 767px) {
  .el_menuResult_list {
    gap: 1.6rem 4.8rem;
  }
}
.el_menuResult_list li {
  width: calc(25% - 3.6rem);
  border-bottom: 0.1rem dotted #CADCDF;
}
@media screen and (max-width: 1024px) {
  .el_menuResult_list li {
    width: calc(33.33% - 3.2rem);
  }
}
@media screen and (max-width: 767px) {
  .el_menuResult_list li {
    width: calc(50% - 2.4rem);
  }
}
@media screen and (max-width: 600px) {
  .el_menuResult_list li {
    width: 100%;
  }
}
.el_menuResult_list li a {
  padding: 1.9rem 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 1.4rem;
}
@media (hover: hover) {
  .el_menuResult_list li a {
    transition: 0.5s;
  }
  .el_menuResult_list li a:hover {
    opacity: 0.5;
  }
}
.el_menuResult_list li a::after {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background: url("../img/ico/ico_cosmetic-surgery-list_arrow.svg") no-repeat center center;
  background-size: contain;
}

/* ===================================
menu single
=================================== */
.el_menuRichFv {
  margin: 19.7rem auto 0;
  padding: 0 2rem;
  width: 100%;
  max-width: 140rem;
}
@media screen and (max-width: 767px) {
  .el_menuRichFv {
    margin-top: 15.2rem;
    padding: 0;
  }
}
.el_menuRichFv_inner {
  width: 100%;
  padding: 9.8rem 0;
  position: relative;
  border-radius: 2.4rem 2.4rem 0 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .el_menuRichFv_inner {
    padding: 6.4rem 0 13.3rem;
  }
}
.el_menuRichFv_inner::before {
  content: "";
  width: calc(100% - 2rem);
  height: calc(100% - 1rem);
  border: 0.1rem solid #fff;
  border-radius: 2.4rem 2.4rem 0 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
  pointer-events: none;
}
.el_menuRichFv_ttl {
  width: fit-content;
  height: fit-content;
  font-family: "Shippori Mincho", serif;
  font-size: 4.6rem;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  border-right: 0.1rem solid #415558;
  padding-right: 1.2rem;
  position: absolute;
  top: 9.8rem;
  right: 11.76%;
  z-index: 3;
}
@media screen and (max-width: 1160px) {
  .el_menuRichFv_ttl {
    right: 8%;
  }
}
@media screen and (max-width: 960px) {
  .el_menuRichFv_ttl {
    right: 6%;
    padding-right: 0.4rem;
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .el_menuRichFv_ttl {
    padding: 0 0.2rem 0.6rem;
    margin-left: 3.2rem;
    margin-bottom: 6.2rem;
    font-size: 3rem;
    position: static;
    writing-mode: horizontal-tb;
    line-height: 1.14;
    border-right: none;
    border-bottom: 0.1rem solid #415558;
  }
}
.el_menuRichFv_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2, 1.2);
  filter: blur(1rem);
}
.el_menuRichFv_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(190, 230, 255, 0.7);
  z-index: 1;
  pointer-events: none;
}
.el_menuRichFv_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.el_menuRichFv_thumb {
  width: 64rem;
  aspect-ratio: 640/427;
  margin: 0 auto;
  display: flex;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1160px) {
  .el_menuRichFv_thumb {
    width: 54rem;
  }
}
@media screen and (max-width: 960px) {
  .el_menuRichFv_thumb {
    width: 50rem;
  }
}
@media screen and (max-width: 767px) {
  .el_menuRichFv_thumb {
    width: 74vw;
    aspect-ratio: 1/1;
    position: static;
  }
}
.el_menuRichFv_thumb figure {
  width: 100%;
  height: 100%;
  position: relative;
}
.el_menuRichFv_thumb figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.6rem;
  overflow: hidden;
}
.el_menuRichFv_catchphrase {
  font-family: "Shippori Mincho", serif;
  font-size: 2.2rem;
  letter-spacing: 0.15em;
  line-height: 1.16;
  writing-mode: vertical-rl;
  position: absolute;
  top: 3.2rem;
  left: 3.2rem;
  z-index: 1;
  display: flex;
  flex-flow: column;
  gap: 0.6rem;
}
@media screen and (max-width: 767px) {
  .el_menuRichFv_catchphrase {
    top: auto;
    bottom: 5rem;
    left: auto;
    right: 3.2rem;
  }
}
.el_menuRichFv_catchphrase > p {
  padding: 0.8rem 1.2rem;
  background: #fff;
  border-radius: 0.4rem;
}
.el_menuRichFv_cat {
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: 9.8rem;
  line-height: 1;
  letter-spacing: 0.04em;
  position: absolute;
  bottom: -2rem;
  left: 1rem;
}
@media screen and (max-width: 767px) {
  .el_menuRichFv_cat {
    font-size: 5.6rem;
    left: -1.6rem;
    bottom: -1rem;
  }
}

.el_menuStdFv {
  margin: 19.7rem auto 0;
  padding: 0 2rem;
  width: 100%;
  max-width: 112rem;
}
.el_menuStdFv_inner {
  width: 100%;
  height: 100%;
  padding: 2.4rem 2.4rem;
  position: relative;
  border-radius: 2.4rem;
  overflow: hidden;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0 4.2rem;
}
@media screen and (max-width: 767px) {
  .el_menuStdFv_inner {
    flex-flow: column;
    gap: 4.2rem 0;
    padding-bottom: 4.2rem;
  }
}
.el_menuStdFv_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2, 1.2);
  filter: blur(1rem);
  z-index: -1;
}
.el_menuStdFv_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 1;
  pointer-events: none;
}
.el_menuStdFv_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.el_menuStdFv_thumb {
  width: 32rem;
  aspect-ratio: 1/1;
  border-radius: 1.2rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .el_menuStdFv_thumb {
    width: 100%;
    aspect-ratio: 332/221;
  }
}
.el_menuStdFv_thumb figure {
  width: 100%;
  height: 100%;
}
.el_menuStdFv_thumb figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.el_menuStdFv_content {
  width: calc(100% - 32rem - 4.2rem);
}
@media screen and (max-width: 767px) {
  .el_menuStdFv_content {
    width: 100%;
  }
}
.el_menuStdFv_cat {
  margin-bottom: 2.4rem;
  width: fit-content;
  padding: 0.8rem 1.2rem;
  background: #83C0CD;
  border-radius: 0.8rem;
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: 2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .el_menuStdFv_cat {
    margin-bottom: 2.4rem;
    font-size: 1.8rem;
  }
}
.el_menuStdFv_ttl {
  font-family: "Shippori Mincho", serif;
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.el_menuStdFv_catchphrase {
  font-family: "Shippori Mincho", serif;
  color: #A4A4A4;
  font-size: 1rem;
  line-height: 1.8;
  text-align: right;
  position: absolute;
  bottom: 2.4rem;
  right: 2.4rem;
}

.ly_inner.un_menu.un_single {
  max-width: 80rem;
  margin-top: 12rem;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .ly_inner.un_menu.un_single {
    margin-top: 6rem;
    padding: 0 2.4rem;
  }
}
.ly_inner.un_menu.un_single .el_btnNormal {
  margin: 0 auto;
}

.el_menuBreadcrumb .el_breadcrumbs {
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 140rem;
}

/* ===================================
MENU INJECTION
=================================== */
.ly_inner.un_menu.un_injection {
  margin-top: 12rem;
  margin-bottom: 16rem;
}
@media screen and (max-width: 767px) {
  .ly_inner.un_menu.un_injection {
    margin-top: 6rem;
    margin-bottom: 9.8rem;
  }
}

.el_menuInjectionList {
  margin: 8rem auto 0;
  max-width: 112rem;
  display: flex;
  flex-flow: row wrap;
  gap: 4.5rem 4.8rem;
}
@media screen and (max-width: 767px) {
  .el_menuInjectionList {
    gap: 1.6rem 4.8rem;
    padding: 0 2.4rem;
  }
}
.el_menuInjectionList li {
  width: calc(25% - 3.6rem);
}
@media screen and (max-width: 1024px) {
  .el_menuInjectionList li {
    width: calc(33.33% - 3.2rem);
  }
}
@media screen and (max-width: 767px) {
  .el_menuInjectionList li {
    width: calc(50% - 2.4rem);
  }
}
@media screen and (max-width: 600px) {
  .el_menuInjectionList li {
    width: 100%;
  }
}
.el_menuInjectionList li a {
  padding-bottom: 1.6rem;
  padding-right: 1.2rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  font-size: 1.4rem;
}
@media (hover: hover) {
  .el_menuInjectionList li a {
    transition: 0.5s;
  }
  .el_menuInjectionList li a:hover {
    opacity: 0.5;
  }
}
.el_menuInjectionList li a::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to right, #83C0CD, #83C0CD 0.2rem, transparent 0.2rem, transparent 0.6rem);
  background-size: 0.4rem 0.1rem;
  background-position: left bottom;
  background-repeat: repeat-x;
}
.el_menuInjectionList li a::after {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background: url("../img/ico/ico_cosmetic-surgery-list_arrow.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: calc(50% - 1.1rem);
  right: 0;
}

/* ===================================
MENU SURGERY
=================================== */
.ly_inner.un_menu.un_result {
  margin-top: 12rem;
  margin-bottom: 16rem;
  max-width: 112rem;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .ly_inner.un_menu.un_result {
    margin-top: 6rem;
    margin-bottom: 9.8rem;
  }
}

/* ===================================
MENU RESULT
=================================== */
.ly_inner.un_menu.un_surgery {
  margin-top: 12rem;
  margin-bottom: 16rem;
}
@media screen and (max-width: 767px) {
  .ly_inner.un_menu.un_surgery {
    margin-top: 6rem;
    margin-bottom: 9.8rem;
  }
}

/* ===================================
NEWS
=================================== */
.ly_inner.un_news {
  margin-top: 8.8rem;
  margin-bottom: 16rem;
  max-width: 80rem;
}
@media screen and (max-width: 767px) {
  .ly_inner.un_news {
    margin-top: 6rem;
    margin-bottom: 9.8rem;
  }
}

/* single
============================== */
.ly_inner.un_news.ly_single {
  margin-top: 14.4rem;
  margin-bottom: 16rem;
}
@media screen and (max-width: 767px) {
  .ly_inner.un_news.ly_single {
    margin-top: 8.4rem;
    margin-bottom: 9.8rem;
    padding: 0 2.4rem;
  }
}
.ly_inner.un_news.ly_single .el_btnNormal {
  margin: 0 auto;
}

/* ===================================
PRICE
=================================== */
.ly_2col.un_price {
  padding: 0 2rem;
  margin: 12rem auto 16rem;
  box-sizing: content-box;
  max-width: 112rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .ly_2col.un_price {
    flex-direction: column-reverse;
    margin: 6rem auto 9.8rem;
    padding: 0;
  }
}
.ly_2col.un_price .el_tabBtn {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .ly_2col.un_price .el_tabBtn {
    padding: 0 2.4rem;
  }
}

.el_pricePosts {
  width: calc(100% - 27rem);
  max-width: 80.2rem;
}
@media screen and (max-width: 767px) {
  .el_pricePosts {
    width: 100%;
    max-width: none;
  }
}
.el_pricePosts_content {
  padding-top: 1.6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .el_pricePosts_content {
    padding: 1.6rem 2.4rem 0;
  }
}
.el_pricePosts_content::before {
  content: "";
  width: 100%;
  height: 0.2rem;
  background: #83C0CD;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .el_pricePosts_content::before {
    height: 0.1rem;
  }
}
.el_pricePosts_sub {
  font-size: 1.2rem;
  line-height: 1.6;
}
.el_pricePosts_ttl {
  padding-bottom: 1.6rem;
  font-family: "Shippori Mincho", serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
}
.el_pricePosts_ttl::before {
  content: "";
  width: 100%;
  height: 0.2rem;
  background-image: linear-gradient(to right, #83C0CD, #83C0CD 0.2rem, transparent 0.2rem, transparent 0.6rem);
  background-size: 0.6rem 0.1rem;
  background-position: left bottom;
  background-repeat: repeat-x;
  position: absolute;
  bottom: 0;
  left: 0;
}
.el_pricePosts_wrap {
  margin-top: 8rem;
}
.el_pricePosts_wrap + .el_pricePosts_wrap {
  margin-top: 4rem;
}

.el_priceTable {
  margin-top: 3rem;
  border-bottom: 0.1rem solid #CADCDF;
}
.el_priceTable_ttl {
  position: relative;
  margin-top: 4.1rem;
  padding-left: 0.8rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.el_priceTable_ttl:before {
  content: "";
  width: 0.4rem;
  height: 100%;
  background: #83C0CD;
  border-radius: 0.4rem;
  position: absolute;
  top: 0.2rem;
  left: 0;
}
.el_priceTable_dd {
  border-top: 0.1rem solid #CADCDF;
  padding: 1.6rem 0;
  display: flex;
}
.el_priceTable_dd:nth-of-type(1) {
  border-top: none;
}
@media screen and (max-width: 767px) {
  .el_priceTable_dd {
    flex-wrap: wrap;
  }
}
.el_priceTable_dd dt {
  width: calc(100% - 24rem);
  text-align: left;
}
@media screen and (max-width: 767px) {
  .el_priceTable_dd dt {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.el_priceTable_dd dd {
  width: 8rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .el_priceTable_dd dd {
    width: 30%;
  }
}
.el_priceTable_dd.un_empty {
  border-top: none;
}
.el_priceTable_dd > * {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
}
.el_priceTable_info {
  color: #A4A4A4;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 2.6rem;
}

.el_priceSide {
  width: 24rem;
}
@media screen and (max-width: 767px) {
  .el_priceSide {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 6rem;
    padding: 4.8rem 0;
    border-top: 0.1rem solid #CADCDF;
    border-bottom: 0.1rem solid #CADCDF;
  }
}
@media screen and (max-width: 767px) {
  .el_priceSide_inner {
    margin: 0 auto;
    max-width: 30rem;
  }
}
.el_priceSide_ttl {
  font-family: "Shippori Mincho", serif;
  margin-bottom: 1.4rem;
  font-size: 1.6rem;
  line-height: 1;
}
.el_sideSelect + .el_priceSide_ttl {
  margin-top: 3.2rem;
}

.ly_2col.un_price.un_single .el_pricePosts_content {
  padding-top: 0;
}
.ly_2col.un_price.un_single .el_pricePosts_content::before {
  display: none;
}

/* ===================================
common
=================================== */
/* el_edit
============================== */
.ly_edit {
  max-width: 80rem;
  margin-top: 22rem;
}
.ly_edit .el_btnArrow {
  margin: 0 auto;
}

.el_edit {
  margin-bottom: 7.4rem;
}
.el_edit_ttl {
  color: #6e6e6e;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.6;
}
.el_edit_date {
  color: #ccc;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 1.6rem;
  display: block;
}
.el_edit p {
  margin-top: 2.4rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}
.el_edit p strong {
  color: #6FB5C4;
}
.el_edit p.has-small-font-size {
  color: #A4A4A4;
  font-size: 1.2rem;
}
.el_edit a {
  display: inline-block;
  white-space: nowrap;
  word-break: break-all;
  white-space: break-spaces;
  color: #3F7AB8;
  text-decoration-line: underline;
}
@media (hover: hover) {
  .el_edit a {
    transition: 0.5s;
  }
  .el_edit a:hover {
    opacity: 0.5;
  }
}
.el_edit h2 {
  font-family: "Shippori Mincho", serif;
  position: relative;
  margin-top: 7.2rem;
  padding-top: 3.2rem;
  padding-bottom: 2.4rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .el_edit h2 {
    font-size: 2.4rem;
    margin-top: 7.2rem;
  }
  .el_edit h2 img {
    width: 5rem !important;
  }
}
.el_edit h2 span {
  font: inherit;
}
.el_edit h2::before {
  content: "";
  width: 100%;
  height: 0.2rem;
  background-image: linear-gradient(to right, #83C0CD, #83C0CD 0.2rem, transparent 0.2rem, transparent 0.6rem);
  background-size: 0.6rem 0.1rem;
  background-position: left bottom;
  background-repeat: repeat-x;
  position: absolute;
  top: 0;
  left: 0;
}
.el_edit h3 {
  margin-top: 5.6rem;
  padding: 0.6rem 0.8rem;
  background: #83C0CD;
  border-radius: 0.4rem;
  font-family: "Shippori Mincho", serif;
  color: #fff;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .el_edit h3 {
    font-size: 1.8rem;
  }
}
.el_edit h4 {
  margin-top: 3.2rem;
  padding: 0 0.9rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
}
.el_edit h4::before {
  content: "";
  display: block;
  width: 0.3rem;
  height: 2rem;
  background: #83C0CD;
  border-radius: 2rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.el_edit ul {
  margin-top: 2.4rem;
}
.el_edit ul li {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  position: relative;
  padding-left: 1.4rem;
}
.el_edit ul li + li {
  margin-top: 0.8rem;
}
.el_edit ul li:before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background: #83C0CD;
  border-radius: 50%;
  position: absolute;
  top: 0.9rem;
  left: 0;
}
.el_edit ol {
  margin-top: 2.4rem;
  padding-left: 2.4rem;
  list-style: revert;
}
.el_edit ol li {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  position: relative;
}
.el_edit ol li + li {
  margin-top: 0.8rem;
}
.el_edit ol ::marker {
  color: #6e6e6e;
}
.el_edit .is-style-check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .el_edit .is-style-check-list {
    gap: 0.8rem;
  }
}
.el_edit .is-style-check-list li {
  width: calc((100% - 1.6rem) / 2);
  padding: 1.2rem 1.2rem 1.2rem 4rem;
  border: 0.1rem solid #CADCDF;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .el_edit .is-style-check-list li {
    width: 100%;
  }
}
.el_edit .is-style-check-list li strong {
  color: #83C0CD;
}
.el_edit .is-style-check-list li::before {
  background: url("../img/ico/ico_check.svg");
  background-size: cover;
  width: 2rem;
  height: 2.1rem;
  top: 1.6rem;
  left: 1.2rem;
}
.el_edit .is-style-check-list li + li {
  margin: 0;
}
.el_edit .wp-block-table {
  margin-top: 2.4rem;
  font-size: 1.4rem;
}
.el_edit .wp-block-table td {
  border: none;
}
@media screen and (max-width: 767px) {
  .el_edit .wp-block-table td {
    display: block;
    width: 100%;
  }
}
.el_edit .wp-block-table td:nth-of-type(1) {
  width: 20rem;
  background: #F3F9FA;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .el_edit .wp-block-table td:nth-of-type(1) {
    width: 100%;
  }
}
.el_edit .wp-block-table td {
  width: calc(100% - 20rem);
  border-bottom: 0.1rem solid #CADCDF !important;
  padding: 1rem 1rem 0.8rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .el_edit .wp-block-table td {
    width: 100%;
    font-size: 1.4rem;
  }
  .el_edit .wp-block-table td > * {
    font-size: 1.4rem;
  }
}
.el_edit figure {
  margin-top: 2.4rem !important;
}
.el_edit figure img {
  border-radius: 0.8rem;
  overflow: hidden;
}
.el_edit figure figcaption {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
}

/* el_edit_page
============================== */
.el_edit_page {
  margin-top: 12rem;
}
.el_edit_page p {
  margin-top: 2.4rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}
.el_edit_page a {
  display: inline-block;
  word-break: break-all;
  color: #3F7AB8;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  text-decoration-line: underline;
}
@media (hover: hover) {
  .el_edit_page a {
    transition: 0.5s;
  }
  .el_edit_page a:hover {
    opacity: 0.5;
  }
}
.el_edit_page h2 {
  margin-top: 6.4rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .el_edit_page h2 {
    font-size: 2rem;
  }
}
.el_edit_page h3 {
  margin-top: 4rem;
  background: #83C0CD;
  padding: 0.2rem 0.8rem;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.el_edit_page ol {
  margin-top: 2.4rem;
  counter-reset: number;
}
.el_edit_page ol li {
  padding-left: 2rem;
  position: relative;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}
.el_edit_page ol li:before {
  counter-increment: number;
  content: counter(number) ".";
  position: absolute;
  left: 0.6rem;
}
.el_edit_page ul {
  margin-top: 2.4rem;
  counter-reset: number;
}
.el_edit_page ul li {
  padding-left: 2.2rem;
  position: relative;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}
.el_edit_page ul li:before {
  content: "・";
  position: absolute;
  left: 0.2rem;
}
.el_edit_page .el_box {
  width: fit-content;
  margin-top: 2.4rem;
  padding: 3.2rem;
  border: 0.1rem solid #CADCDF;
}

/* ===================================
case
=================================== */
/* ===================================
column
=================================== */
/* archive
============================== */
.ly_2col.un_column {
  padding: 0 2rem;
  margin: 16rem auto;
  box-sizing: content-box;
  max-width: 113rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .ly_2col.un_column {
    display: block;
    margin: 10rem auto 0;
    padding: 0 1.6rem;
  }
}

.el_columnPosts {
  width: calc(100% - 27rem);
  max-width: 80rem;
}
@media screen and (max-width: 1024px) {
  .el_columnPosts {
    width: 100%;
    max-width: none;
  }
}

.el_columnList {
  display: flex;
  flex-wrap: wrap;
  gap: 5.6rem;
}
@media screen and (max-width: 1024px) {
  .el_columnList {
    gap: 5.6rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .el_columnList {
    gap: 3rem 0.8rem;
  }
}
.el_columnList_item {
  width: calc((100% - 5.6rem) / 2);
}
@media screen and (max-width: 1024px) {
  .el_columnList_item {
    width: calc((100% - 2rem) / 2);
  }
}
@media screen and (max-width: 767px) {
  .el_columnList_item {
    width: calc((100% - 0.8rem) / 2);
  }
}
.el_columnList a {
  display: block;
}
@media (hover: hover) {
  .el_columnList a .el_columnList_thmb img {
    transition: 0.5s;
  }
  .el_columnList a:hover .el_columnList_thmb img {
    scale: 1.1;
  }
}
.el_columnList_thmb {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 0.8rem;
}
.el_columnList_thmb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.el_columnList_ttl {
  margin-top: 2.4rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
}
.el_columnList_theme {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}
.el_columnList_theme > a span,
.el_columnList_theme > span {
  padding: 0.4rem;
  border: 0.1rem solid #ccc;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
}

.el_columnSide {
  width: 25rem;
}
@media screen and (max-width: 1024px) {
  .el_columnSide {
    max-width: 25rem;
    width: 100%;
    margin: 6rem auto 0;
  }
}
.el_columnSide_ttl {
  position: relative;
  max-width: 15.4rem;
  margin: 0 auto;
}
.el_columnSide_ttl + .el_columnSide_ttl {
  margin-top: 8rem;
}
.el_columnSide_ttl::before {
  content: "";
  width: 100%;
  height: 0.1rem;
  background: #D8D2C0;
  position: absolute;
  bottom: 0.6rem;
  left: 0;
}
.el_columnSide_ttl_en {
  display: block;
  color: #6e6e6e;
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
}
.el_columnSide_ttl_ja {
  display: block;
  position: relative;
  width: fit-content;
  background: #cfcfcf;
  margin: 0.8rem auto 0;
  padding: 0 1.6rem;
  color: #6e6e6e;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
.el_columnSide_theme {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 3rem;
}
.el_columnSide_theme + .el_columnSide_ttl {
  margin-top: 8rem;
}
.el_columnSide_theme li {
  border-radius: 0.4rem;
  border: 0.1rem solid #ccc;
}
.el_columnSide_theme li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.4rem 0.6rem;
  font-size: 1.4rem;
  font-weight: 400;
}
@media (hover: hover) {
  .el_columnSide_theme li a {
    transition: 0.5s;
  }
  .el_columnSide_theme li a:hover {
    background: #ccc;
    color: #fff;
  }
}
.el_columnSide_theme li.is_active a {
  background: #ccc;
  color: #fff;
}
.el_columnSide_key {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 3rem;
}
.el_columnSide_key a {
  color: #6e6e6e;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  text-decoration-line: underline;
}
@media (hover: hover) {
  .el_columnSide_key a {
    transition: 0.5s;
  }
  .el_columnSide_key a:hover {
    opacity: 0.5;
  }
}
.el_columnSide_key .is_active a {
  opacity: 0.5;
}

/* single
============================== */
.un_column .el_pageTtlPost_date {
  margin-top: 0.6rem;
}

.el_pageTtlPost_category {
  display: flex;
  flex-wrap: wrap;
}

.el_caseList_key {
  margin-top: 1rem;
  margin-left: 1.6rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.el_caseList_key_ico svg {
  display: block;
}
.el_caseList_key a {
  color: #6e6e6e;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  text-decoration-line: underline;
}
@media (hover: hover) {
  .el_caseList_key a {
    transition: 0.5s;
  }
  .el_caseList_key a:hover {
    opacity: 0.5;
  }
}

.ly_2col.un_column.un_single {
  margin-top: 8rem;
}
.ly_2col.un_column.un_single .el_edit {
  width: calc(100% - 6.4rem);
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .ly_2col.un_column.un_single .el_edit {
    width: 100%;
  }
}
.ly_2col.un_column.un_single .el_btnNormal {
  margin: 8rem auto 0;
}

.el_post_thumb {
  border-radius: 0.8rem;
  overflow: hidden;
}

#toc_container, #ez-toc-container {
  border-radius: 1.6rem;
  background: #F3F9FA;
  padding: 3.2rem;
  margin: 12rem auto 0;
}
@media screen and (max-width: 767px) {
  #toc_container, #ez-toc-container {
    margin-top: 6rem;
  }
}
#toc_container .toc_title, #ez-toc-container .toc_title {
  margin: 0;
  width: 12rem;
  height: 3.7rem;
  background: #83C0CD;
  border-radius: 50%;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
#toc_container .toc_list, #ez-toc-container .toc_list {
  margin-top: 1.2rem;
}
#toc_container .toc_list a, #ez-toc-container .toc_list a {
  font-family: "Shippori Mincho", serif;
  color: #415558;
  font-size: 1.6rem;
  line-height: 1.8;
  text-decoration: none;
  word-wrap: break-word;
  white-space: break-spaces;
  word-break: break-all;
  text-decoration: underline;
}
#toc_container .toc_list ul, #ez-toc-container .toc_list ul {
  margin-top: 1.2rem;
}
#toc_container .toc_list li, #ez-toc-container .toc_list li {
  margin-top: 1.2rem;
}
#toc_container .toc_list li:before, #ez-toc-container .toc_list li:before {
  content: "";
  background: #83C0CD;
  position: absolute;
  top: 1.4rem;
  left: 0;
  width: 0.8rem;
  height: 0.2rem;
  border-radius: 0.4rem;
}

.el_postShare {
  padding: 2rem;
  border: 0.1rem solid #CADCDF;
  border-radius: 0.8rem;
}
.el_postShare_thumb {
  margin-bottom: 2rem;
  width: 100%;
  aspect-ratio: 260/173;
  border-radius: 0.4rem;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .el_postShare_thumb {
    display: none;
  }
}
.el_postShare_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.el_postShare_ttl {
  margin-bottom: 1.6rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.el_share_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}
.el_share_list a.un_url {
  border: 0.1rem solid #415558;
  border-radius: 0.4rem;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.el_share_list a.un_url .el_share_text {
  margin-left: 0.4rem;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: -0.08em;
}
.el_share_list a {
  display: inline-block;
}
@media (hover: hover) {
  .el_share_list a {
    transition: 0.5s;
  }
  .el_share_list a:hover {
    opacity: 0.5;
  }
}

.el_postSearch_ttl {
  margin-bottom: 0.8rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  line-height: 1.7;
}

.el_author {
  margin-top: 8rem;
  border: 0.1rem solid #CADCDF;
  position: relative;
}
.el_author::after {
  content: "";
  width: 4.8rem;
  height: 4.8rem;
  background: url("../img/single/post_author_box_decoration.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -0.1rem;
  right: -0.1rem;
}
.el_author_item {
  padding: 3rem 3rem 5.6rem;
  border-radius: 0.8rem;
  background: #fff;
}
.el_author_top {
  display: flex;
  align-items: center;
}
.el_author_img {
  width: 8rem;
  border-radius: 50%;
  overflow: hidden;
}
.el_author_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.el_author_name {
  width: calc(100% - 8rem);
  padding-left: 1.2rem;
}
.el_author_ttl {
  font-family: "Shippori Mincho", serif;
  font-size: 1.2rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.8rem;
}
.el_author_nametxt {
  font-family: "Shippori Mincho", serif;
}
.el_author_job {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}
.el_author_name {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}
.el_author_text {
  color: #222;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 1.6rem;
}

.el_single_pager {
  margin-top: 8.6rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .el_single_pager {
    flex-flow: column;
  }
}
.el_single_pager a {
  display: block;
  padding: 1.6rem;
  background: #F3F9FA;
  border-radius: 0.8rem;
  height: 100%;
}
.el_single_pager > * {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .el_single_pager > * {
    width: 100%;
  }
}
.el_single_pager_text {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.4rem;
}
.el_single_pager_text:before {
  content: "";
  width: 0.8rem;
  height: 1rem;
  background-color: #83C0CD;
  clip-path: polygon(0% 50%, 0.8rem 0%, 0.8rem 1rem);
  position: absolute;
  top: 0.6rem;
  left: 0;
}
.el_single_pager_post {
  display: flex;
  align-items: center;
  margin-top: 0.8rem;
}
.el_single_pager_img {
  width: 12rem;
  border-radius: 0.4rem;
  overflow: hidden;
  aspect-ratio: 12/8;
}
.el_single_pager_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.el_single_pager_ttl {
  width: calc(100% - 12rem);
  padding-left: 1.6rem;
  color: #222;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.el_single_pager_item.un_next .el_single_pager_post {
  flex-direction: row-reverse;
}
.el_single_pager_item.un_next .el_single_pager_ttl {
  padding-right: 1.6rem;
  padding-left: 0;
}
.el_single_pager_item.un_next .el_single_pager_text {
  text-align: right;
  padding-right: 1.4rem;
  padding-left: 0;
}
.el_single_pager_item.un_next .el_single_pager_text:before {
  transform: rotate(180deg);
  left: auto;
  right: 0;
}

/* ===================================
news
=================================== */
/* archive
============================== */
.el_news_posts {
  margin: 12.8rem auto 0;
}

/* ===================================
menu
=================================== */
/* single
============================== */
.el_edit .wp-block-embed.is-type-video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  margin-top: 2.4rem;
}
.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%;
}
@media screen and (max-width: 767px) {
  .el_edit .el_caseList {
    overflow: auto;
    flex-flow: row nowrap;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 600px) {
  .el_edit .el_caseList {
    flex-flow: column;
  }
}
.el_edit .el_caseList li {
  padding: 0 !important;
}
.el_edit .el_caseList li::before {
  display: none;
}
.el_edit .el_caseList li + li {
  margin-top: 0;
}
@media screen and (max-width: 600px) {
  .el_edit .el_caseList_item {
    width: 100%;
  }
}
.el_edit .el_caseList_ttl {
  margin: 0 0 1.2rem;
  padding: 0;
  background: none;
  color: #415558;
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.56;
}
.el_edit .el_caseList_tag {
  margin-bottom: 2.4rem;
  display: flex;
  flex-flow: row wrap;
  gap: 0.8rem;
}
.el_edit .el_caseList_tag > li {
  color: #829498;
  font-size: 1.2rem;
  line-height: 1;
}
.el_edit .el_caseList a {
  text-decoration: none;
  white-space: inherit;
}
@media (hover: hover) {
  .el_edit .el_caseList a:hover {
    opacity: 1;
  }
}
.el_edit .el_btnArrow.un_right {
  margin: 4.4rem 0 0 auto !important;
  display: flex;
  width: fit-content;
  text-decoration: none;
  flex-flow: row wrap;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .el_edit .el_btnArrow.un_right {
    margin: 4.4rem auto 0 0 !important;
  }
}
.el_edit .el_btnArrow.un_right::before {
  content: "";
  display: block;
  width: 4rem;
  height: 2.34rem;
  background: url("../img/ico/ico_round_arrow.svg") center center no-repeat;
  background-size: contain;
}
.el_edit .el_btnArrow.un_right .el_btnArrow_text {
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
}
@media (hover: hover) {
  .el_edit .el_btnArrow.un_right:hover {
    opacity: 1;
  }
}
.el_edit h3.el_priceTable_ttl {
  margin-top: 3rem;
  padding: 0.8rem;
  background: #83C0CD;
  color: #fff;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
}
@media screen and (max-width: 767px) {
  .el_edit h3.el_priceTable_ttl {
    font-size: 1.8rem;
    padding: 0.6rem 0.8rem;
  }
}
.el_edit h3.el_priceTable_ttl:before {
  display: none;
}
.el_edit .el_priceTable {
  margin-top: 2rem;
}
.el_edit .el_priceTable_dd:first-child {
  border-top: none;
}
.el_edit .el_priceTable_info {
  margin-top: 1.6rem;
}
.el_edit .el_menuColumn {
  border-radius: 0.8rem;
  margin-top: 5.4rem;
}
.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: 1.6rem;
}
.el_edit .el_menuColumn .el_menuColumn_list_thmb {
  width: 13rem;
  height: 8.7rem;
  border-radius: 0.8rem;
  overflow: hidden;
}
.el_edit .el_menuColumn .el_menuColumn_list_thmb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.el_edit .el_menuColumn .el_menuColumn_list_ttl {
  color: var(--black-text, #222);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  width: calc(100% - 14.6rem);
  margin: 0;
  text-decoration: none;
  white-space: break-spaces;
}
.el_edit .el_menuColumn .el_btnArrow.un_right {
  margin: 2rem 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: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  display: block;
}

/* ===================================
FV
=================================== */
.pg_top {
  overflow-x: hidden;
}

.ly_fv {
  max-width: 100%;
  height: 100vh;
  height: 100svh;
  padding: 10rem 0 9.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ly_fv {
    padding: 12.4rem 0 11.6rem;
  }
}
.ly_fv::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 28.88vw;
  height: calc(100vh + 3.2rem);
  height: calc(100svh + 3.2rem);
  background: #C6E7EF;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .ly_fv::before {
    max-width: 100%;
    height: 45.23svh;
  }
}
.ly_fv .el_burger_btn {
  position: absolute;
  top: auto;
  right: 3.2rem;
  bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .ly_fv .el_burger_btn {
    display: none;
  }
}

.el_fv {
  position: relative;
}
.el_fv_content {
  position: absolute;
  bottom: 18.17vh;
  left: 1.8vw;
}
@media screen and (max-width: 767px) {
  .el_fv_content {
    top: -2.6rem;
    position: relative;
    bottom: auto;
    left: 0.2rem;
  }
}
.el_fv_catch {
  margin-left: 3.47vw;
  margin-bottom: 3rem;
  display: block;
  width: 16.18vw;
}
@media screen and (max-width: 767px) {
  .el_fv_catch {
    width: 20.4rem;
    position: absolute;
    top: 9.4rem;
    right: 0.8rem;
  }
}
.el_fv_catch.is_pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .el_fv_catch.is_pc {
    display: none;
  }
}
.el_fv_catch.is_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .el_fv_catch.is_sp {
    display: block;
  }
}
.el_fv_catch img {
  width: 100%;
}
.el_fv_title picture {
  display: block;
  width: 84.23vw;
}
@media screen and (max-width: 767px) {
  .el_fv_title picture {
    width: 97.66vw;
    margin: 0 auto;
  }
}
.el_fv_title picture img {
  width: 100%;
}
.el_fv_image {
  margin: 0 0 0 auto;
  max-width: 75vw;
  height: 75.85vh;
  border-radius: 1.6rem 0 0 1.6rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .el_fv_image {
    max-width: 92.52%;
    height: 56.37svh;
    border-radius: 1.6rem 0 0 1.6rem;
  }
}
.el_fv_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================================
pickup
=================================== */
.ly_pickup {
  padding: 17.2rem 2.4rem 0;
}
@media screen and (max-width: 767px) {
  .ly_pickup {
    padding: 0 2.4rem;
  }
}
.ly_pickup_inner {
  margin: 0 auto;
  max-width: 120rem;
}

.el_pickup_ttl {
  padding-left: 15.9rem;
  color: #83C0CD;
  font-family: "Cinzel", serif;
  font-size: 8rem;
  position: relative;
  letter-spacing: 0.02em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .el_pickup_ttl {
    padding-left: 5.6rem;
    font-size: 3.2rem;
  }
}
.el_pickup_ttl span {
  letter-spacing: -0.05em;
}
.el_pickup_ttl::before {
  content: "";
  display: block;
  width: 14.3rem;
  height: 0.1rem;
  background: #CADCDF;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .el_pickup_ttl::before {
    width: 4rem;
  }
}
.el_pickup_subTtl {
  margin-bottom: 6.4rem;
  display: flex;
  flex-flow: row wrap;
  gap: 0 3.5rem;
  align-items: center;
  line-height: 1.24;
}
@media screen and (max-width: 767px) {
  .el_pickup_subTtl {
    margin-bottom: 4.8rem;
  }
}
.el_pickup_subTtl span {
  display: inline-block;
}
.el_pickup_subTtl .is-ttl {
  color: #83C0CD;
  font-family: "Cinzel", serif;
  font-size: 8rem;
  letter-spacing: 0.02em;
  line-height: 1.24;
}
@media screen and (max-width: 767px) {
  .el_pickup_subTtl .is-ttl {
    margin-bottom: 0.8rem;
    font-size: 3.2rem;
  }
}
.el_pickup_subTtl .is-txt {
  color: #A4A4A4;
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .el_pickup_subTtl .is-txt {
    font-size: 1.2rem;
    line-height: 1.7;
  }
}
.el_pickup_list {
  display: flex;
  flex-flow: row wrap;
  gap: 0.8rem;
}
.el_pickup_list_item {
  color: #415558;
  width: calc(25% - 0.6rem);
  background: url("../img/top/pickup_list_bg01.png") no-repeat center center;
  background-size: cover;
  border-radius: 0.8rem;
}
.el_pickup_list_item.un_menu01 {
  background: url("../img/top/pickup_list_bg01.png") no-repeat center center;
}
.el_pickup_list_item.un_menu02 {
  background: url("../img/top/pickup_list_bg02.png") no-repeat center center;
}
.el_pickup_list_item.un_menu03 {
  background: url("../img/top/pickup_list_bg03.png") no-repeat center center;
}
.el_pickup_list_item.un_menu04 {
  background: url("../img/top/pickup_list_bg04.png") no-repeat center center;
}
@media screen and (max-width: 1024px) {
  .el_pickup_list_item {
    width: calc(50% - 0.8rem);
  }
}
@media screen and (max-width: 767px) {
  .el_pickup_list_item {
    width: 100%;
  }
}
.el_pickup_list_item a {
  padding: 4rem;
  display: flex;
  flex-flow: column;
  align-items: center;
}
@media (hover: hover) {
  .el_pickup_list_item a:hover .el_pickup_list_image::after {
    top: -100%;
    left: 100%;
  }
}
@media screen and (max-width: 767px) {
  .el_pickup_list_item a {
    padding: 2.4rem 1.6rem;
    position: relative;
    align-items: flex-start;
  }
}
.el_pickup_list_ttl {
  margin: 0 auto 5rem;
  max-width: fit-content;
  font-family: "Cinzel", serif;
  font-size: 2rem;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}
@media screen and (max-width: 767px) {
  .el_pickup_list_ttl {
    margin: 0 0 2.4rem 11.6rem;
    font-size: 1.6rem;
  }
  .el_pickup_list_ttl br {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .el_pickup_list_ttl {
    margin-left: 11rem;
    font-size: 3.2vw;
  }
}
.el_pickup_list_ttl::before, .el_pickup_list_ttl::after {
  content: "";
  display: block;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: #415558;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.el_pickup_list_ttl::before {
  left: -0.8rem;
}
.el_pickup_list_ttl::after {
  right: -0.8rem;
}
.el_pickup_list_image {
  margin-bottom: 5rem;
  max-width: 19.1rem;
  border-radius: 0.8rem;
  display: block;
  filter: drop-shadow(0 0 2rem rgba(255, 255, 255, 0.9));
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .el_pickup_list_image {
    margin: 0;
    max-width: 8.8rem;
    position: absolute;
    top: 50%;
    left: 1.6rem;
    transform: translate(0, -50%);
  }
}
.el_pickup_list_image::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.3) 50%, transparent 60%);
  position: absolute;
  top: 100%;
  left: -100%;
  transition: all 0.6s ease-in-out;
}
.el_pickup_list_link {
  width: 100%;
  display: block;
  padding-bottom: 1.6rem;
  max-width: 100%;
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .el_pickup_list_link {
    width: calc(100% - 11.6rem);
    margin-left: 11.6rem;
  }
}
@media screen and (max-width: 374px) {
  .el_pickup_list_link {
    margin-left: 11rem;
  }
}
.el_pickup_list_link::before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 0.9rem;
  background: url("../img/top/pickup_list_arrow.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 0.4rem;
  right: 0;
}
.el_pickup_list_link::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to right, #96AFB3, #96AFB3 0.2rem, transparent 0.2rem, transparent 0.6rem);
  background-size: 0.6rem 0.1rem;
  background-position: left bottom;
  background-repeat: repeat-x;
}

/* ===================================
about
=================================== */
.ly_about {
  padding: 20rem 0 16.8rem;
  background: linear-gradient(to bottom, #FFFFFF 50%, #C6E7EF 100%);
}
@media screen and (max-width: 767px) {
  .ly_about {
    padding: 13.2rem 0;
  }
}
.ly_about_inner {
  margin: 0 auto;
  padding: 0 2.4rem;
  max-width: 108rem;
}
@media screen and (max-width: 767px) {
  .ly_about_inner {
    padding: 0;
    max-width: 73.83vw;
  }
}

.bl_about {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.bl_about_ttl {
  max-width: calc(100% - 49rem);
}
@media screen and (max-width: 767px) {
  .bl_about_ttl {
    margin-bottom: 7.2rem;
    max-width: 100%;
  }
}
.bl_about_content {
  max-width: 49rem;
}
@media screen and (max-width: 767px) {
  .bl_about_content {
    max-width: 100%;
  }
}

.el_about_lead {
  margin-bottom: 1.2rem;
  font-family: "Cinzel", serif;
  font-size: 1.6rem;
  line-height: 2.2;
}
.el_about_ttl {
  max-width: 34.8rem;
}
.el_about_desc {
  margin-top: 4.7rem;
  margin-bottom: 4.6rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .el_about_desc {
    margin-top: 0;
    margin-bottom: 4.1rem;
    font-size: 1.6rem;
  }
}
.el_about_list_item a {
  display: block;
  padding: 3.4rem 0;
  border-bottom: 0.1rem solid #96AFB3;
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  line-height: 1;
  position: relative;
}
.el_about_list_item a::before {
  content: "";
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  background: url("../img/top/about_list_arrow.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .el_about_list_item a::before {
    width: 2.6rem;
    height: 2.6rem;
  }
}

/* ===================================
feature
=================================== */
.ly_feature {
  margin-top: 13.2rem;
  margin-bottom: 13.2rem;
}
@media screen and (max-width: 767px) {
  .ly_feature {
    margin-top: 9.4rem;
    margin-bottom: 9.8rem;
  }
}
.ly_feature_inner {
  margin: 0 auto;
  padding: 0 2.4rem;
  max-width: 116rem;
}
.ly_feature .el_feature_btn {
  margin: 5.6rem auto 0;
  max-width: 22rem;
}
.ly_feature .el_feature_btn .el_btn {
  height: 4.6rem;
}

.el_topFeatureList {
  display: flex;
  flex-flow: row wrap;
}
.el_topFeatureList_item {
  width: 33.33%;
  border-bottom: 0.1rem solid #CADCDF;
}
@media screen and (max-width: 767px) {
  .el_topFeatureList_item {
    max-width: 100%;
  }
  .el_topFeatureList_item:not(.el_topFeatureList_item:nth-child(1)) {
    width: 100%;
  }
  .el_topFeatureList_item:not(.el_topFeatureList_item:nth-child(1)) a {
    padding: 3.2rem 0;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 0 1.2rem;
  }
  .el_topFeatureList_item:not(.el_topFeatureList_item:nth-child(1)) .el_topFeatureList_image {
    margin: 0;
    width: 16.82vw;
  }
  .el_topFeatureList_item:not(.el_topFeatureList_item:nth-child(1)) .el_topFeatureList_content {
    max-width: calc(100% - 16.82vw - 1.2rem);
  }
  .el_topFeatureList_item:not(.el_topFeatureList_item:nth-child(1)) .el_topFeatureList_ttl {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.7;
  }
  .el_topFeatureList_item:not(.el_topFeatureList_item:nth-child(1)) .el_topFeatureList_desc {
    display: none;
  }
}
.el_topFeatureList_item a {
  display: block;
  padding: 4rem 2.6rem;
}
@media (hover: hover) {
  .el_topFeatureList_item a {
    transition: 0.5s;
  }
  .el_topFeatureList_item a:hover {
    opacity: 0.5;
  }
}
.el_topFeatureList_item:nth-child(1) {
  padding: 0;
  width: 100%;
  border-top: 0.1rem solid #CADCDF;
}
.el_topFeatureList_item:nth-child(1) a {
  padding: 4rem 0;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0 2.4rem;
}
@media screen and (max-width: 767px) {
  .el_topFeatureList_item:nth-child(1) a {
    padding: 4rem 0 3.2rem;
  }
}
.el_topFeatureList_item:nth-child(1) .el_topFeatureList_image {
  margin: 0;
  max-width: 36rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .el_topFeatureList_item:nth-child(1) .el_topFeatureList_image {
    margin: 0 auto 2.4rem;
    max-width: 32rem;
  }
}
.el_topFeatureList_item:nth-child(1) .el_topFeatureList_content {
  max-width: calc(100% - 36rem - 2.4rem);
}
@media screen and (max-width: 767px) {
  .el_topFeatureList_item:nth-child(1) .el_topFeatureList_content {
    max-width: 100%;
  }
}
.el_topFeatureList_item:nth-child(1) .el_topFeatureList_ttl {
  font-size: 2.2rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .el_topFeatureList_item:nth-child(1) .el_topFeatureList_ttl {
    font-size: 2rem;
  }
}
.el_topFeatureList_item:nth-child(3), .el_topFeatureList_item:nth-child(4) {
  border-left: 0.1rem solid #CADCDF;
}
@media screen and (max-width: 767px) {
  .el_topFeatureList_item:nth-child(3), .el_topFeatureList_item:nth-child(4) {
    border-left: none;
  }
}
.el_topFeatureList_image {
  margin: 0 auto 2.4rem;
  max-width: 24rem;
  aspect-ratio: 1/1;
  border-radius: 0.8rem;
  overflow: hidden;
}
.el_topFeatureList_image img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
.el_topFeatureList_ttl {
  font-family: "Shippori Mincho", serif;
  margin-bottom: 1.6rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.el_topFeatureList_desc {
  font-size: 1.4rem;
  line-height: 1.8;
}

/* ===================================
director
=================================== */
.ly_director {
  margin-right: 11.11vw;
  padding: 8rem 2rem;
  background: url("../img/top/director_bg.jpg") no-repeat center center;
  background-size: cover;
  border-radius: 0 1.6rem 1.6rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ly_director {
    padding: 2.4rem 5.4vw 4rem;
    margin-right: 11.21vw;
  }
}
.ly_director::before {
  content: "MESSAGE";
  color: #415558;
  font-family: "Cinzel", serif;
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  writing-mode: vertical-rl;
  position: absolute;
  top: 50%;
  right: -3.888889vw;
  transform: translate(100%, -50%);
}
@media screen and (max-width: 767px) {
  .ly_director::before {
    font-size: 2.4rem;
    top: 1.2rem;
    right: -1.2rem;
    transform: translate(100%, 0);
  }
}
@media screen and (max-width: 374px) {
  .ly_director::before {
    right: -0.6rem;
  }
}
.ly_director_inner {
  margin: 0 auto;
  max-width: 86.8rem;
}

.el_director {
  display: flex;
  align-items: center;
  gap: 0 7.2rem;
  font-family: "Shippori Mincho", serif;
  color: #142427;
}
@media screen and (max-width: 767px) {
  .el_director {
    flex-flow: column;
    gap: 4.8rem 0;
  }
}
.el_director_img {
  width: calc(100% - 41.6rem - 7.2rem);
}
@media screen and (max-width: 767px) {
  .el_director_img {
    width: 100%;
  }
}
.el_director_img img {
  filter: drop-shadow(0.2rem 0.2rem 0.4rem rgba(152, 170, 184, 0.5));
}
.el_director_content {
  width: 41.6rem;
}
@media screen and (max-width: 767px) {
  .el_director_content {
    width: 100%;
  }
}
.el_director_ttl {
  margin-bottom: 4rem;
  font-size: 3.2rem;
  line-height: 1.8;
  filter: drop-shadow(0.1rem 0.1rem 0.2rem rgb(255, 255, 255));
}
@media screen and (max-width: 767px) {
  .el_director_ttl {
    text-align: center;
    font-size: 2.2rem;
  }
}
.el_director_desc {
  margin-bottom: 2.4rem;
  font-size: 1.4rem;
  line-height: 2;
  filter: drop-shadow(0.1rem 0.1rem 0.2rem rgb(255, 255, 255));
}
@media screen and (max-width: 767px) {
  .el_director_desc {
    text-align: center;
    font-size: 1.2rem;
  }
}
.el_director_name {
  margin-bottom: 4rem;
  font-size: 2.4rem;
  filter: drop-shadow(0.1rem 0.1rem 0.2rem rgb(255, 255, 255));
}
@media screen and (max-width: 767px) {
  .el_director_name {
    text-align: center;
    font-size: 2.2rem;
  }
}
.el_director_name span {
  font-size: 1.4rem;
}
.el_director_btn {
  max-width: 22rem;
}
@media screen and (max-width: 767px) {
  .el_director_btn {
    margin: 0 auto;
  }
}
.el_director_btn .el_btn {
  height: 4.6rem;
  background: none;
}

/* ===================================
menu
=================================== */
.ly_menu {
  padding: 13.2rem 0 0;
}
@media screen and (max-width: 767px) {
  .ly_menu {
    padding-top: 0;
    padding-bottom: 9.8rem;
  }
}
.ly_menu .el_topHeading {
  margin: 0 auto 8rem;
  max-width: 112rem;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .ly_menu .el_topHeading {
    margin-bottom: 5.6rem;
  }
}
.ly_menu .el_cosmeticSurgeryList_list {
  padding: 0 5.2rem;
  max-width: none;
}
@media screen and (max-width: 1200px) {
  .ly_menu .el_cosmeticSurgeryList_list {
    padding: 0 3.2rem;
  }
}

@media screen and (max-width: 767px) {
  .el_menu {
    margin-bottom: 3.2rem;
  }
}
.el_menu .el_tabBtn {
  border-bottom: none;
}
.el_menu_btn {
  margin: 0 auto;
  max-width: 22rem;
}
.el_menu_btn .el_btn {
  height: 4.6rem;
}

/* ===================================
loopLogo
=================================== */
.el_loopLogo {
  padding: 0.6rem 0;
  border-top: 0.1rem solid #83C0CD;
  border-bottom: 0.1rem solid #83C0CD;
  background: #fff;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.el_loopLogo_wrap {
  padding: 2.4rem 0;
  background: #83C0CD;
  display: flex;
  gap: 7.2rem;
}
.el_loopLogo_item {
  display: flex;
  gap: 7.2rem;
  animation: scroll 20s linear infinite;
}
.el_loopLogo img {
  width: 20rem;
}
@media screen and (max-width: 767px) {
  .el_loopLogo img {
    width: 12rem;
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ===================================
case
=================================== */
.ly_case {
  padding: 13.2rem 2rem 16rem;
  background: linear-gradient(to bottom, #fff 70%, #C6E7EF 100%);
}
@media screen and (max-width: 767px) {
  .ly_case {
    padding: 9.8rem 2.4rem;
  }
}
.ly_case_inner {
  margin: 0 auto;
  max-width: 112rem;
}
.ly_case .el_caseList {
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .ly_case .el_caseList {
    margin-bottom: 5.6rem;
    flex-flow: row nowrap;
    align-items: flex-start;
    gap: 0 2.4rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 100vw;
    padding: 0 2.4rem;
    margin-left: -2.4rem;
  }
}
.ly_case .el_caseList_item {
  max-width: 30rem;
}

.el_case_btn {
  margin: 0 auto;
  width: 22rem;
}
.el_case_btn .el_btn {
  height: 4.6rem;
  background: none;
}

/* ===================================
sns
=================================== */
.ly_sns {
  margin: 13.8rem 0 13.8rem 11.11vw;
  padding: 8rem 2rem;
  background: url("../img/top/director_bg.jpg") no-repeat center center;
  background-size: cover;
  border-radius: 1.6rem 0 0 1.6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ly_sns {
    margin-top: 4.8rem;
    margin-bottom: 9.8rem;
    padding: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .ly_sns {
    padding: 4rem 2rem;
  }
}
.ly_sns::before {
  content: "OFFICIAL SNS";
  color: #415558;
  font-family: "Cinzel", serif;
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  writing-mode: vertical-rl;
  position: absolute;
  top: 50%;
  left: -3.888889vw;
  transform: translate(-100%, -50%) scale(-1, -1);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .ly_sns::before {
    font-size: 2.4rem;
    top: 1.2rem;
    left: -3.6rem;
    transform: translate(0, 0) scale(-1, -1);
  }
}
@media screen and (max-width: 374px) {
  .ly_sns::before {
    left: -2.9rem;
  }
}
.ly_sns_inner {
  margin-left: 4.15vw;
  max-width: 100rem;
}
@media screen and (max-width: 767px) {
  .ly_sns_inner {
    margin: 0;
  }
}

.el_topSnsList {
  display: flex;
  flex-flow: row wrap;
  gap: 4.4rem 6.4rem;
}
@media screen and (max-width: 767px) {
  .el_topSnsList {
    flex-flow: column;
    gap: 1.6rem 0;
  }
}
.el_topSnsList_item {
  width: calc(50% - 3.2rem);
  background: #fff;
  border-left: 0.4rem solid #415558;
  border-radius: 0 0.8rem 0.8rem 0;
  box-shadow: 0.2rem 0.2rem 0.4rem rgba(152, 179, 184, 0.5);
  position: relative;
}
@media screen and (max-width: 767px) {
  .el_topSnsList_item {
    width: 100%;
  }
}
.el_topSnsList_item a {
  display: block;
  padding: 2rem;
}
@media (hover: hover) {
  .el_topSnsList_item a {
    transition: 0.5s;
  }
  .el_topSnsList_item a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .el_topSnsList_item a {
    padding: 2rem 2rem 2rem 1.4rem;
    width: 100%;
  }
}
.el_topSnsList_content {
  max-width: 22rem;
}
@media screen and (max-width: 767px) {
  .el_topSnsList_content {
    max-width: 100%;
  }
}
.el_topSnsList_ttl {
  margin-bottom: 7.2rem;
  font-size: 2.8rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .el_topSnsList_ttl {
    margin-bottom: 4rem;
    font-size: 2.4rem;
    position: relative;
    z-index: 1;
  }
}
.el_topSnsList_ttl p {
  margin-bottom: 0.8rem;
  font-family: "Inter", sans-serif;
  font-weight: 200;
  font-style: italic;
}
.el_topSnsList_ttl h3 {
  font-family: "Cinzel", serif;
  font-weight: 400;
}
.el_topSnsList_desc {
  max-width: 22rem;
  color: #ddd;
  font-size: 1rem;
  line-height: 1.2;
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}
@media screen and (max-width: 767px) {
  .el_topSnsList_desc {
    max-width: 20rem;
    font-size: 1rem;
    text-align: right;
    bottom: auto;
    left: auto;
    top: 2rem;
    right: 2rem;
  }
}
.el_topSnsList_btn {
  width: fit-content;
  margin: 0 0 0 auto;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0 1rem;
  position: relative;
  z-index: 1;
}
.el_topSnsList_btn span {
  text-decoration: underline;
}
.el_topSnsList_btn::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
}
@media screen and (max-width: 767px) {
  .el_topSnsList_btn::after {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.is-instagram .el_topSnsList_btn::after {
  background: url("../img/top/icon_instagram.svg") no-repeat center center;
  background-size: contain;
}
.is-tiktok .el_topSnsList_btn::after {
  background: url("../img/top/icon_tiktok.svg") no-repeat center center;
  background-size: contain;
}
.is-youtube .el_topSnsList_btn::after {
  background: url("../img/top/icon_youtube.svg") no-repeat center center;
  background-size: contain;
}

/* ===================================
blog
=================================== */
.ly_blog {
  padding: 0 2rem 16rem;
}
@media screen and (max-width: 767px) {
  .ly_blog {
    padding-bottom: 9.8rem;
  }
}
.ly_blog .el_topHeading {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .ly_blog .el_topHeading {
    align-items: center;
  }
}
.ly_blog .el_topHeading_ttl {
  font-size: 4.8rem;
}
@media screen and (max-width: 767px) {
  .ly_blog .el_topHeading_ttl {
    font-size: 3.6rem;
  }
}
.ly_blog .el_topHeading_btn {
  display: block;
}
@media screen and (max-width: 767px) {
  .ly_blog .el_topHeading_btn {
    width: 18rem;
  }
}
@media screen and (max-width: 767px) {
  .ly_blog .el_topHeading_btn .el_btn {
    width: 18rem;
    height: 4.6rem;
  }
}
.ly_blog_inner {
  margin: 0 auto;
  max-width: 112rem;
}

.el_topBlogList {
  display: flex;
  flex-flow: row wrap;
  gap: 8rem 5.6rem;
}
@media screen and (max-width: 1024px) {
  .el_topBlogList {
    gap: 5.6rem 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .el_topBlogList {
    gap: 5.6rem 2.4rem;
  }
}
.el_topBlogList_item {
  width: calc(33.33% - 3.7333333333rem);
  display: flex;
}
@media screen and (max-width: 1024px) {
  .el_topBlogList_item {
    width: calc(33.33% - 1.6rem);
  }
}
@media screen and (max-width: 767px) {
  .el_topBlogList_item {
    width: 100%;
  }
}
.el_topBlogList_item a {
  display: flex;
  flex-flow: column;
}
@media (hover: hover) {
  .el_topBlogList_item a {
    transition: 0.5s;
  }
  .el_topBlogList_item a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .el_topBlogList_item a {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    gap: 0 1.2rem;
  }
}
.el_topBlogList_thmb {
  margin-bottom: 1.6rem;
  max-width: 100%;
  aspect-ratio: 1/0.66666667;
  border-radius: 0.8rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .el_topBlogList_thmb {
    margin-bottom: 0;
    width: 28.03vw;
  }
}
.el_topBlogList_thmb img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .el_topBlogList_content {
    width: calc(100% - 28.03vw - 1.2rem);
  }
}
.el_topBlogList_textWrap {
  margin-bottom: 1.6rem;
  display: flex;
  flex-flow: row wrap;
  gap: 0.4rem 0.8rem;
}
.el_topBlogList_theme {
  padding: 0.4rem;
  background: #83C0CD;
  border-radius: 0.4rem;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}
.el_topBlogList_keyword {
  color: #A4A4A4;
  font-size: 1.2rem;
  display: flex;
  flex-flow: row wrap;
  gap: 0.8rem;
}
.el_topBlogList_ttl {
  margin-bottom: 1.6rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}
@media screen and (max-width: 767px) {
  .el_topBlogList_ttl {
    margin-bottom: 0.6rem;
  }
}
.el_topBlogList_excerpt {
  padding-top: 1.6rem;
  font-size: 1.4rem;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}
@media screen and (max-width: 767px) {
  .el_topBlogList_excerpt {
    padding-top: 0.6rem;
  }
}
.el_topBlogList_excerpt::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.1rem;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #96AFB3, #96AFB3 0.2rem, transparent 0.2rem, transparent 0.6rem);
  background-size: 0.6rem 0.1rem;
  background-position: left bottom;
  background-repeat: repeat-x;
}

/* ===================================
news
=================================== */
.ly_news {
  padding: 0 2rem 16rem;
}
@media screen and (max-width: 767px) {
  .ly_news {
    padding-bottom: 9.8rem;
  }
}
.ly_news_inner {
  margin: 0 auto;
  max-width: 112rem;
}

.bl_news {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 12rem;
}
@media screen and (max-width: 767px) {
  .bl_news {
    gap: 0;
  }
}
.bl_news_title {
  width: 20rem;
}
@media screen and (max-width: 767px) {
  .bl_news_title {
    margin-bottom: 3.2rem;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
  }
}
.bl_news_title .el_txt {
  width: fit-content;
  margin-bottom: 5.6rem;
  font-family: "Cinzel", serif;
  font-size: 4.8rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .bl_news_title .el_txt {
    margin: 0;
    font-size: 3.6rem;
  }
}
.bl_news_title .el_btn {
  width: 20rem;
}
@media screen and (max-width: 767px) {
  .bl_news_title .el_btn {
    width: 18rem;
    height: 4.6rem;
  }
}
.bl_news_list {
  width: calc(100% - 20rem - 12rem);
}
@media screen and (max-width: 767px) {
  .bl_news_list {
    width: 100%;
  }
}

/* ===================================
fixed bottom navi
=================================== */
.el_fixedBottomNav {
  display: none;
}
@media screen and (max-width: 767px) {
  .el_fixedBottomNav {
    display: block;
    padding: 0 2rem 1rem;
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1;
  }
  .el_fixedBottomNav .el_reserveList {
    flex-flow: row nowrap;
  }
  .el_fixedBottomNav .el_reserveList li {
    width: calc(50% - 0.6rem);
  }
  .el_fixedBottomNav .el_reserveList li a {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    min-width: 100%;
  }
}