@charset "UTF-8";
/* ===================================
BITO BEAUTY CLINIC - Main Stylesheet
=================================== */
/* Abstracts
============================== */
/* ===================================
Variables
=================================== */
:root {
  --color-main: #768371;
  --color-dark: #5E6C58;
  --color-sub: #947F28;
  --color-black:#444444;
  --color-white:#FFFFFF;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-jpTtl: "Shippori Mincho", serif;
  --font-enTtl: "Noto Serif Display", serif;
  --font-en: "Cormorant Infant", serif;
}

/* ===================================
Functions
=================================== */
/* ===================================
Mixins
=================================== */
/* ===================================
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;
  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;
}
a[href^=tel] {
  text-decoration: underline;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  a[href^=tel] {
    transition: 0.3s;
  }
  a[href^=tel]:hover {
    opacity: 0.5;
  }
}

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

/* ===================================
Base Styles
=================================== */
:root {
  --header-height: 12rem;
}
@media screen and (max-width: 1024px) {
  :root {
    --header-height: 8.2rem;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --header-height: 5.2rem;
  }
}

html {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 62.5%;
  font-family: var(--font-jp);
  color: #444;
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

/* ===================================
Layout
=================================== */
.ly_inner {
  box-sizing: content-box;
  max-width: 112rem;
  margin: 0 auto;
  padding: 0 4rem;
}
.ly_inner.un_policy {
  max-width: 96rem;
}
.ly_inner.un_edit {
  max-width: 90rem;
}
@media screen and (max-width: 767px) {
  .ly_inner {
    padding: 0 2rem;
  }
}

.el_innerContent {
  padding-block: 12rem 20rem;
}
@media screen and (max-width: 767px) {
  .el_innerContent {
    padding-block: 8rem 16rem;
  }
}

/* ===================================
Device Utility Classes
=================================== */
@media screen and (max-width: 767px) {
  .un_pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .un_sp {
    display: none;
  }
}

main:not(.pg_top),
.normal_bg {
  background-image: url("../img/common/main_bg.webp");
  background-repeat: repeat;
  background-position: top center;
}

/* 改行
==============================　*/
/*PCのみ*/
.pc-br {
  display: inline;
}

/*TBのみ*/
.tb-br {
  display: none;
}

/*PC〜TBにかけて*/
.pc-tb-br {
  display: inline;
}

/*TB〜SPにかけて*/
.tb-sp-br {
  display: none;
}

/*SPのみ*/
.sp-br {
  display: none;
}

/*iphoneSE用*/
.se-br {
  display: none;
}

.-se-br {
  display: inline;
}

@media screen and (max-width: 781px) {
  .pc-br {
    display: none;
  }
  .tb-br {
    display: inline;
  }
  .tb-sp-br {
    display: inline;
  }
}
@media screen and (max-width: 600px) {
  .pc-tb-br {
    display: none;
  }
  .tb-br {
    display: none;
  }
  .sp-br {
    display: inline;
  }
}
@media screen and (max-width: 425px) {
  .-se-br {
    display: none;
  }
  .se-br {
    display: inline;
  }
}
@media screen and (min-width: 375px) {
  .min-sp-br {
    display: none;
  }
}
/* ===================================
view area
=================================== */
.ly_header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  pointer-events: none;
}
.ly_header_inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 4rem;
}
@media screen and (max-width: 1024px) {
  .ly_header_inner {
    padding: 2rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .ly_header_inner {
    padding: 2.6rem 1.6rem;
  }
}
.ly_header .el_snsList {
  margin-right: 3rem;
  pointer-events: all;
}
@media screen and (max-width: 767px) {
  .ly_header .el_snsList {
    gap: 2.4rem;
  }
}
.ly_header .el_reserveList {
  pointer-events: all;
}
@media screen and (max-width: 767px) {
  .ly_header .el_reserveList {
    display: none;
  }
}
.ly_header .el_reserveList .un_reserve {
  padding-block: unset;
  height: 4.2rem;
  font-size: 1.6rem;
  min-width: unset;
}
.ly_header .el_head_logo {
  position: fixed;
  left: 50%;
  top: 3rem;
  pointer-events: all;
  transform: translateX(-50%);
  color: var(--color-sub);
}
.ly_header .el_head_logo svg {
  width: 8.2rem;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .ly_header .el_head_logo {
    top: 2.2rem;
  }
  .ly_header .el_head_logo svg {
    width: 6.5rem;
  }
}
@media screen and (max-width: 767px) {
  .ly_header .el_head_logo svg {
    width: 5.6rem;
  }
}
.ly_header .el_head_logo.is_head_white {
  color: #fff;
}
.ly_header .el_head_logo a {
  display: block;
}
@media (hover: hover) {
  .ly_header .el_head_logo a {
    transition: 0.5s;
    cursor: pointer;
  }
}
@media (hover: hover) and (hover: hover) and (pointer: fine) {
  .ly_header .el_head_logo a:hover {
    opacity: 0.5;
  }
}

.ly_head_nav .el_reserveList {
  gap: 2rem;
}
@media screen and (max-width: 1024px) {
  .ly_head_nav .el_reserveList {
    gap: 1rem;
  }
  .ly_head_nav .el_reserveList .el_btnNormal {
    padding-inline: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .ly_head_nav .el_reserveList {
    display: none;
  }
}
.ly_head_nav .el_btnReserve {
  font-size: 1.6rem;
  padding: 1.1rem 4rem;
}

/* ===================================
burger
=================================== */
/* btn
============================== */
.el_burger_btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  position: fixed;
  top: 4.5rem;
  left: 4rem;
  z-index: 1000;
  transition: 0.5s;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .el_burger_btn {
    top: 2.8rem;
  }
}
@media screen and (max-width: 600px) {
  .el_burger_btn {
    top: 2.6rem;
    left: 2rem;
  }
}
@media (hover: hover) {
  .el_burger_btn {
    transition: 0.5s;
    cursor: pointer;
  }
}
@media (hover: hover) and (hover: hover) and (pointer: fine) {
  .el_burger_btn:hover {
    opacity: 0.5;
  }
}
.el_burger_btn span, .el_burger_btn::before, .el_burger_btn::after {
  content: "";
  width: 3rem;
  height: 0.1rem;
  background: #444;
  position: absolute;
  transition: 0.5s;
  left: 0;
}
body.is_menu_active .el_burger_btn span, body.is_menu_active .el_burger_btn::before, body.is_menu_active .el_burger_btn::after {
  background: var(--color-black);
}
.el_burger_btn span {
  top: 50%;
}
body.is_menu_active .el_burger_btn span {
  opacity: 0;
}
.el_burger_btn::before {
  top: calc(50% - 0.7rem);
}
body.is_menu_active .el_burger_btn::before {
  transform: rotate(45deg);
  top: 50%;
}
.el_burger_btn::after {
  top: calc(50% + 0.7rem);
}
body.is_menu_active .el_burger_btn::after {
  transform: rotate(-45deg);
  top: 1.5rem;
}
.el_burger_btn.is_head_white span, .el_burger_btn.is_head_white::before, .el_burger_btn.is_head_white::after {
  background: #fff;
}

.bl_burger_inner {
  width: 100%;
}

.ly_burger {
  display: none;
  z-index: 100;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/common/main_bg.webp");
  background-repeat: repeat;
  background-position: top center;
  overflow: auto;
}

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

/* inner
============================== */
.ly_burger_wrap {
  display: flex;
  justify-content: space-between;
  gap: 8rem;
  max-width: 124rem;
  padding: 2rem;
  margin-inline: auto;
  margin-block: 8rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .ly_burger_wrap {
    display: block;
  }
}
.ly_burger_side {
  width: 100%;
  max-width: 35rem;
  flex-shrink: 1.3;
}
.ly_burger_side .el_logo img {
  max-width: 18rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .ly_burger_side .el_logo img {
    max-width: 136px;
  }
}
.ly_burger_side .el_reserveList {
  margin-top: 6rem;
  flex-direction: column;
  gap: 2rem;
}
.ly_burger_side .el_reserveList li {
  max-width: 35rem;
  width: 100%;
}
.ly_burger_side .el_reserveList .un_reserve {
  width: 100%;
  font-size: 2.6rem;
  padding-block: 1.8rem;
}
.ly_burger_side .el_snsList {
  gap: 0.8rem;
  margin-top: 3rem;
  justify-content: center;
}
.ly_burger_side .el_snsList a {
  background: #fff;
  border-radius: 100px;
  padding: 1rem;
}
.ly_burger_side .bl_accses {
  margin-top: 3rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: var(--black, #444);
  font-family: var(--font-jpTtl, "Shippori Mincho", serif);
  font-size: 1.4rem;
  line-height: 1.5;
}
.ly_burger_side .el_link_blank {
  color: var(--black, #444);
  margin-inline-start: unset;
}
@media screen and (max-width: 767px) {
  .ly_burger_side {
    margin-inline: auto;
  }
}
.ly_burger_main {
  max-width: 70rem;
  width: 100%;
}
.ly_burger_main .bl_burger_index {
  margin-top: 8rem;
}
.ly_burger_main .el_burger_ttl {
  color: var(--color-main);
  font-family: var(--font-jpTtl, "Shippori Mincho", serif);
  font-size: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--40, rgba(118, 131, 113, 0.4));
}
@media screen and (max-width: 767px) {
  .ly_burger_main {
    max-width: unset;
    margin-top: 4rem;
  }
  .ly_burger_main .bl_burger_index {
    margin-top: 6rem;
  }
}
.ly_burger_bottom {
  position: relative;
  padding: 40px 20px 60px;
  background: #FCFAF4;
}
@media screen and (max-width: 1024px) {
  .ly_burger_bottom {
    display: block;
  }
}
.ly_burger_bottom .el_tel a {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: block;
}
.ly_burger_bottom .el_tel .el_tel_num {
  color: #6e6e6e;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.64px;
  display: block;
}
.ly_burger_bottom .el_tel .el_tel_text {
  color: #6e6e6e;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  display: block;
  margin-top: 6px;
}
.ly_burger_bottom .el_btnList {
  max-width: 26rem;
  margin: 2rem auto 0;
}

.el_burgerList_menu {
  display: grid;
  gap: 3rem 3.5rem;
  align-items: flex-start;
  grid-template-columns: repeat(auto-fill, minmax(min(270px, 100%), 1fr));
  margin-top: 2rem;
}
.el_burgerList_menu li {
  width: auto;
  border-radius: 6px;
  background: var(--color-main);
  color: var(--color-white);
}
.el_burgerList_menu li::after {
  content: none;
}
@media (hover: hover) {
  .el_burgerList_menu li {
    transition: 0.5s;
    cursor: pointer;
  }
}
@media (hover: hover) and (hover: hover) and (pointer: fine) {
  .el_burgerList_menu li:hover {
    opacity: 0.5;
  }
}
.el_burgerList_menu li a {
  font-size: 2rem;
  font-family: var(--font-jpTtl, "Shippori Mincho", serif);
  width: 100%;
  padding: 1.4rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.4rem;
  position: relative;
}
.el_burgerList_menu li a::before {
  position: absolute;
  right: 2rem;
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  background: var(--color-white);
  border-radius: 50%;
}
.el_burgerList_menu li a::after {
  position: unset;
  transform: unset;
  padding-right: unset;
  content: "";
  display: block;
  margin-right: 0.9rem;
  width: 1.2rem;
  height: 1.2rem;
  -webkit-mask: url(../img/ico/ico_Arrow.svg) no-repeat center center/contain;
          mask: url(../img/ico/ico_Arrow.svg) no-repeat center center/contain;
  rotate: -90deg;
  background: var(--color-main);
}
@media screen and (max-width: 767px) {
  .el_burgerList_menu {
    gap: 2rem;
  }
  .el_burgerList_menu li a {
    font-size: 1.8rem;
  }
}
.el_burgerList_index {
  display: grid;
  gap: 3.2rem 5rem;
  align-items: flex-start;
  grid-template-columns: repeat(auto-fill, minmax(min(270px, 100%), 1fr));
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .el_burgerList_index {
    margin-top: 3rem;
  }
}
.el_burgerList_index li {
  width: auto;
  font-weight: 500;
}
.el_burgerList_index li::after {
  content: none;
}
@media (hover: hover) {
  .el_burgerList_index li {
    transition: 0.5s;
    cursor: pointer;
  }
}
@media (hover: hover) and (hover: hover) and (pointer: fine) {
  .el_burgerList_index li:hover {
    opacity: 0.5;
  }
}
.el_burgerList_index li a {
  width: 100%;
  padding-bottom: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.4rem;
  border-bottom: 1px solid rgba(118, 131, 113, 0.4);
}
.el_burgerList_index li a::after {
  position: unset;
  transform: unset;
  padding-right: unset;
  content: "";
  display: block;
  margin-right: 0.9rem;
  width: 1.2rem;
  height: 1.2rem;
  -webkit-mask: url(../img/ico/ico_Arrow.svg) no-repeat center center/contain;
          mask: url(../img/ico/ico_Arrow.svg) no-repeat center center/contain;
  rotate: -90deg;
  background: currentColor;
}
@media screen and (max-width: 767px) {
  .el_burgerList_index {
    gap: 2rem;
  }
}

.el_burger_sns .el_text {
  color: #6e6e6e;
  font-family: var(--font-en, "Cormorant Infant", serif);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  margin-right: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .el_burger_sns .el_text {
    margin: 4rem auto 0;
    text-align: center;
  }
}
.el_burger_sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: var(--color-white);
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .el_burger_sns a {
    border: 1px solid #ccc;
  }
}
.el_burger_sns a img {
  width: 1.6rem;
}
@media (hover: hover) {
  .el_burger_sns a {
    transition: 0.5s;
    cursor: pointer;
  }
}
@media (hover: hover) and (hover: hover) and (pointer: fine) {
  .el_burger_sns a:hover {
    opacity: 0.5;
  }
}
.el_burger_sns .el_snsList {
  justify-content: center;
  gap: 0.8rem;
}
@media screen and (max-width: 1024px) {
  .el_burger_sns .el_snsList {
    margin-top: 1.6rem;
    gap: 1.6rem;
  }
}

.el_fixed_snsList {
  position: fixed;
  bottom: 3.2rem;
  left: 4rem;
  color: #444;
  font-family: var(--font-jpTtl, "Shippori Mincho", serif);
  z-index: 5;
}
.el_fixed_snsList.is_none {
  opacity: 0;
  pointer-events: none;
}
.el_fixed_snsList.is_sns_white {
  color: #fff;
}
.el_fixed_snsList li {
  transition: 0.3s;
}
.el_fixed_snsList a {
  text-decoration: underline;
  transition: 0.5s;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .el_fixed_snsList a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .el_fixed_snsList {
    display: none;
  }
}

.ly_footer.un_border_top {
  border-top: 1px solid var(--40, rgba(118, 131, 113, 0.4));
}

/* ===================================
Reserve
=================================== */
/* reserve area
============================== */
.el_footReserve {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 1rem;
  position: relative;
}
.el_footReserve_inner {
  width: 100%;
  padding-block: 13rem;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.el_footReserve_inner .el_pageTtl_ja, .el_footReserve_inner .el_pageTtl_en {
  color: #fff;
  text-align: center;
}
.el_footReserve_inner .el_reserveList {
  max-width: 68rem;
  margin-inline: auto;
  margin-top: 6rem;
  padding-inline: 2rem;
  box-sizing: content-box;
  margin-inline: auto;
}
.el_footReserve_inner .el_reserveList li {
  flex-grow: 1;
}
.el_footReserve_inner .el_reserveList li .un_reserve {
  width: 100%;
  font-size: 2.2rem;
  padding: 2.6rem 4rem;
}
@media screen and (max-width: 767px) {
  .el_footReserve_inner {
    padding-block: 8.5rem;
  }
  .el_footReserve_inner .el_reserveList {
    max-width: 32rem;
    flex-direction: column;
    gap: 2rem;
  }
  .el_footReserve_inner .el_reserveList li {
    width: 100%;
  }
}

.bl_footCont {
  background: var(--color-main);
}
.bl_footCont .ly_inner {
  padding-block: 8rem 2rem;
}

/* access
============================== */
.el_footAccess {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8rem;
}
@media screen and (max-width: 1024px) {
  .el_footAccess {
    gap: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .el_footAccess {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 4rem;
  }
}
.el_footAccess_map {
  flex-grow: 1;
  max-width: 52rem;
  height: 400px;
}
@media screen and (max-width: 767px) {
  .el_footAccess_map {
    width: 100%;
    max-width: none;
    height: unset;
  }
}
.el_footAccess_map iframe {
  border-radius: 6px;
  border: 1px solid var(--green, #768371);
  display: block;
  width: 100%;
  max-height: 40rem;
}
@media screen and (max-width: 767px) {
  .el_footAccess_map iframe {
    max-height: none;
    height: 75vw;
  }
}
.el_footAccess_map iframe + .el_link_blank {
  margin-inline-start: auto;
}
.el_footAccess_text {
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .el_footAccess_text {
    width: 100%;
  }
}
.el_footAccess_text .clinic-info {
  color: #ffffff;
  display: grid;
  grid-template-columns: auto 1fr;
}
.el_footAccess_text .clinic-info dt {
  padding-right: 4rem;
}
.el_footAccess_text .clinic-info dt, .el_footAccess_text .clinic-info dd {
  line-height: 1.5;
  padding-block: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.el_footAccess_text .clinic-info dt:first-of-type, .el_footAccess_text .clinic-info dd:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

/* el_breadcrumbs
============================== */
.el_breadcrumbs {
  max-width: 112rem;
  box-sizing: content-box;
  display: flex;
  gap: 0 0.8rem;
  margin-inline: auto;
  padding: 1.2rem 2rem;
  overflow: auto;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .el_breadcrumbs {
    padding: 1.2rem 1.6rem;
  }
}
.el_breadcrumbs li, .el_breadcrumbs a {
  font-family: var(--font-jpTtl);
  color: #444;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.el_breadcrumbs a {
  color: rgba(118, 131, 113, 0.4);
  text-decoration: underline;
}
@media (hover: hover) {
  .el_breadcrumbs a {
    transition: 0.3s;
  }
  .el_breadcrumbs a:hover {
    color: #444;
  }
}
.el_breadcrumbs li + li {
  position: relative;
}
.el_breadcrumbs li + li:before {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 0.1rem;
  background: currentColor;
  rotate: -60deg;
  margin-right: 0.8rem;
  vertical-align: middle;
}

/* menu
============================== */
.el_footMenu {
  color: var(--color-white);
}
.el_footMenu.ly_inner {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.el_footMenu_wrap:not(:first-child) {
  margin-top: 4rem;
}
.el_footMenu_ttl {
  font-size: 2rem;
  font-family: var(--font-jpTtl);
  font-weight: 600;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 1.4rem;
}
.el_footMenu_ttl a {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  transition: 0.5s;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .el_footMenu_ttl a:hover {
    opacity: 0.5;
  }
}
.el_footMenu_ttl a span {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  width: 3rem;
  background: var(--color-white);
  border-radius: 50%;
}
.el_footMenu_ttl a span::after {
  display: block;
  content: "";
  background-image: url(../img/ico/ico_Arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 12px;
  height: 12px;
  rotate: -90deg;
}
.el_footMenu_list {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1.8rem;
}
.el_footMenu_list a {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  text-decoration-line: underline;
  transition: 0.5s;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .el_footMenu_list a:hover {
    opacity: 0.5;
  }
}
.el_footMenu_catList {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 15rem 1fr;
  gap: 3rem 4rem;
}
.el_footMenu_catWrap {
  font-weight: 600;
  display: grid;
  grid-template-columns: subgrid;
  align-items: start;
  grid-column: span 2;
}
.el_footMenu_catWrap:first-child {
  margin-top: 2rem;
}
.el_footMenu_catWrap .el_footMenu_list {
  margin-top: 0;
  row-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .el_footMenu_catWrap {
    grid-template-columns: unset;
    row-gap: 1.4rem;
  }
}
.el_footMenu_catTtl {
  font-family: var(--font-jpTtl);
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  padding-left: 1.2rem;
}
.el_footMenu_catTtl::before {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background: var(--color-white);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* footLinks
============================== */
.el_footLinks .ly_inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10rem;
}
@media screen and (max-width: 767px) {
  .el_footLinks .ly_inner {
    display: block;
    padding: 0 2rem;
  }
}
.el_footLinks_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1rem;
}
.el_footLinks_list li {
  position: relative;
  font-weight: 500;
}
.el_footLinks_list li:not(:last-child):after {
  content: "/";
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .el_footLinks_list li:not(:last-child):after {
    display: none;
  }
}
.el_footLinks_list a {
  transition: 0.5s;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .el_footLinks_list a:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 767px) {
  .el_footLinks_list {
    display: grid;
    gap: 1.2rem 4rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.el_footLinks_top {
  padding-block: 4rem;
}
.el_footLinks_top .el_footerLink_home .el_logo {
  display: block;
  max-width: 21.6rem;
  margin-bottom: 2.4rem;
  transition: 0.5s;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .el_footLinks_top .el_footerLink_home .el_logo:hover {
    opacity: 0.5;
  }
}
.el_footLinks_top .el_footLinks_list {
  max-width: 60rem;
  width: 70%;
}
@media screen and (max-width: 767px) {
  .el_footLinks_top .el_footLinks_list {
    max-width: unset;
    margin-top: 4rem;
    grid-template-columns: repeat(auto-fill, minmax(min(120px, 100%), 1fr));
    justify-content: start;
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .el_footLinks_top .el_footLinks_list {
    grid-template-columns: repeat(2, 120px);
  }
}
.el_footLinks_bottom {
  border-top: 1px solid rgba(118, 131, 113, 0.4);
  padding-block: 1.6rem calc(1.6rem + env(safe-area-inset-bottom));
}
.el_footLinks_bottom .el_footLinks_list {
  margin-inline-start: auto;
  display: flex;
  gap: 1.4rem 1rem;
  font-size: 1.2rem;
  align-items: center;
}
.el_footLinks_bottom .el_footLinks_list .el_note {
  color: rgba(68, 68, 68, 0.4);
}
.el_footLinks_bottom .el_footLinks_list li::after {
  display: none;
}
.el_footLinks_bottom .el_footLinks_list a {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .el_footLinks_bottom .el_footLinks_list {
    margin-inline: auto;
    flex-direction: column;
    padding-bottom: 8rem;
  }
}
.el_footLinks_copy {
  color: #AAA;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .el_footLinks_copy {
    margin-top: 1.8rem;
  }
}

/* sp flow btn
============================== */
.el_flowArea {
  position: fixed;
  bottom: env(safe-area-inset-bottom);
  left: 0;
  width: 100%;
  z-index: 99;
}
.el_flowArea .el_btnList {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.el_flowArea .el_btnList li {
  max-width: 17rem;
  flex-grow: 1;
}
.el_flowArea .el_btnList li a {
  min-width: unset;
  width: 100%;
  padding: 0.6rem 2rem;
}

.bl_clinic-address {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 0 1.2rem;
}

/* ===================================
Button Components
=================================== */
.el_btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  border: none;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.6rem;
  line-height: 1;
}
@media (hover: hover) {
  .el_btn:hover {
    opacity: 0.7;
  }
}

.el_reserveList {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.el_btnReserve {
  font-size: 2.2rem;
  padding: 2.6rem 4rem;
  text-align: center;
  display: block;
  background: #fff;
  color: #947F28;
  font-weight: 600;
  font-family: var(--font-jpTtl);
  border-radius: 10rem;
  border: 1px solid rgba(186, 167, 81, 0.4);
  transition: 0.5s;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .el_btnReserve:hover {
    opacity: 0.5;
  }
}

.el_link_blank {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-decoration-line: underline;
  margin-top: 1.4rem;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  color: #fff;
  transition: 0.5s;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .el_link_blank:hover {
    opacity: 0.5;
  }
}
.el_link_blank:after {
  content: "";
  width: 1.3em;
  height: 1.3em;
  -webkit-mask: url(../img/about/next.webp) no-repeat center center/contain;
          mask: url(../img/about/next.webp) no-repeat center center/contain;
  background: currentColor;
  display: inline-block;
  margin-left: 0.8rem;
  vertical-align: middle;
}

.el_btnNormal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.4rem 4rem;
  border-radius: 5rem;
  font-family: var(--font-en);
  font-size: 1.8rem;
  color: #fff;
  background: var(--color-main);
}
.el_btnNormal::after {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  background: currentColor;
  border-radius: 50%;
}
.el_btnNormal.un_center {
  margin-inline: auto;
}
.el_btnNormal.un_jp {
  font-family: var(--font-jpTtl);
  font-size: 1.6rem;
}
.el_btnNormal.un_color {
  color: var(--color-main);
  background: #fff;
}
.el_btnNormal.un_reserve {
  background: #fff;
  color: #947F28;
  border: 1px solid rgba(148, 127, 40, 0.4);
  font-family: var(--font-jpTtl);
  min-width: 20rem;
}
.el_btnNormal.un_reserve::after {
  content: none;
}
.el_btnNormal .el_btn_wrap {
  position: relative;
  display: inline-block;
  height: 1lh;
  line-height: 1.2;
  overflow: hidden;
  vertical-align: middle;
}
.el_btnNormal .el_btn_wrap::before {
  content: attr(data-text);
  top: 100%;
  display: block;
  position: absolute;
  left: 0;
  transition: all 0.5s;
  opacity: 0;
}
.el_btnNormal .el_btn_wrap .el_btn_txt {
  display: block;
  transform: translateY(0);
  transition: all 0.5s;
}
.el_btnNormal:hover .el_btn_wrap::before {
  top: 0%;
  opacity: 1;
}
.el_btnNormal:hover .el_btn_wrap .el_btn_txt {
  transform: translateY(-100%);
  opacity: 0;
}

.el_btnDownload {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 1.4rem 4rem;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--font-jpTtl);
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  background: var(--color-main);
  border-radius: 5rem;
  transition: 0.5s;
  cursor: pointer;
}
.el_btnDownload::after {
  content: "";
  display: inline-block;
  -webkit-mask: url(../img/ico/ico_download.svg) no-repeat center center/contain;
          mask: url(../img/ico/ico_download.svg) no-repeat center center/contain;
  background: currentColor;
  width: 2rem;
  height: 2rem;
}
@media (hover: hover) and (pointer: fine) {
  .el_btnDownload:hover {
    opacity: 0.5;
  }
}

.el_btnSingle {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.4rem 2rem;
  border-radius: 0.6rem;
  color: #fff;
  font-weight: 600;
  font-family: var(--font-jpTtl);
  background: var(--color-main);
  max-width: 21rem;
  width: 100%;
  height: 5rem;
  margin-inline: auto;
  transition: 0.5s;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .el_btnSingle:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 600px) {
  .el_btnSingle {
    max-width: 19rem;
  }
}

.el_search_btn {
  font-size: 1.6rem;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.4rem 3rem;
  border-radius: 5rem;
  color: #fff;
  font-weight: 600;
  font-family: var(--font-jpTtl);
  background: var(--color-main);
  max-width: 20rem;
  width: 100%;
  height: 4.5rem;
  transition: 0.5s;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .el_search_btn:hover {
    opacity: 0.5;
  }
}
.el_search_btn.un_404 {
  margin-inline: auto;
  margin-top: 6rem;
  max-width: 28rem;
  line-height: 1;
  height: unset;
  padding: 2rem;
}

/* pager
============================== */
.el_pager {
  margin-top: 8rem;
}
.el_pager .nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  justify-content: center;
}
.el_pager .page-numbers:not(.next):not(.prev) {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  width: 2.6rem;
  height: 2.6rem;
  font-family: var(--font-en);
  line-height: 1;
}
.el_pager .page-numbers:not(.next):not(.prev).current {
  color: var(--color-white);
  background: var(--color-main);
  border-radius: 5rem;
}
.el_pager a.page-numbers {
  transition: 0.5s;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .el_pager a.page-numbers:hover {
    opacity: 0.5;
  }
}
.el_pager .prev {
  margin-right: 4rem;
}
.el_pager .next {
  margin-left: 4rem;
}
@media screen and (max-width: 600px) {
  .el_pager:has(.prev) .next {
    margin-left: auto;
  }
  .el_pager:has(.next) .prev {
    margin-right: auto;
  }
}
@media screen and (max-width: 374px) {
  .el_pager .nav-links {
    gap: 1rem;
  }
}

.prev, .next {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: 0.5s;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .prev:hover, .next:hover {
    opacity: 0.5;
  }
}
.prev .el_pager_text, .next .el_pager_text {
  font-family: var(--font-enTtl);
  line-height: 1;
}
.prev.un_no, .next.un_no {
  opacity: 0;
  pointer-events: none;
}
.prev::before, .prev::after, .next::before, .next::after {
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  -webkit-mask: url(../img/ico/ico_Arrow.svg) no-repeat center center/contain;
          mask: url(../img/ico/ico_Arrow.svg) no-repeat center center/contain;
  background: currentColor;
}
.prev .prev, .next .prev {
  margin-right: 4rem;
}
.prev .next, .next .next {
  margin-left: 4rem;
}

.prev::before {
  content: "";
  rotate: 90deg;
}

.next::after {
  content: "";
  rotate: -90deg;
}

.single-pager {
  margin-inline: auto;
  max-width: 46rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 6rem;
}
.single-pager .el_btnSingle_wrap {
  flex-grow: 1;
}

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

/* tab item
============================== */
.el_tabBtn {
  display: flex;
  justify-content: center;
  gap: 2rem 6.4rem;
  border-top: 1px solid rgba(118, 131, 113, 0.4);
  border-bottom: 1px solid rgba(118, 131, 113, 0.4);
}
@media screen and (max-width: 767px) {
  .el_tabBtn {
    gap: 3rem;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 0 20px;
  }
  .el_tabBtn::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .el_tabBtn {
    justify-content: flex-start;
  }
}
.el_tabBtn_item {
  position: relative;
  padding-block: 1.6rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
  transition: 0.5s;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .el_tabBtn_item {
    font-size: 18px;
  }
}
.el_tabBtn_item:before {
  content: "";
  width: 100%;
  height: 3px;
  background: transparent;
  transition: 0.5s;
  position: absolute;
  bottom: -0.05em;
}
@media screen and (max-width: 767px) {
  .el_tabBtn_item:before {
    bottom: 0;
  }
}
.el_tabBtn_item.is_active {
  color: #fff;
}
.el_tabBtn_item.is_active:before {
  background: #fff;
}

/* ===================================
common parts
=================================== */
/* ttl
============================== */
/* el_pageTtl */
.el_pageTtl {
  padding-block: 10rem 8rem;
  height: 438px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  border-bottom: 1px solid rgba(118, 131, 113, 0.4);
}
@media screen and (max-width: 767px) {
  .el_pageTtl {
    padding-top: 14rem;
    padding-bottom: 40px;
  }
}
.el_pageTtl .bl_inner {
  max-width: 112rem;
  padding-inline: 2rem;
  box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  letter-spacing: 0rem;
}
@media (max-width: 1024px) {
  .el_pageTtl .bl_inner {
    align-items: stretch;
  }
}
@media (max-width: 767px) {
  .el_pageTtl .bl_inner {
    display: block;
  }
}
.el_pageTtl_en {
  display: block;
  color: #768371;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.1em;
  word-break: keep-all;
  text-align: left;
  font-size: 100px;
  letter-spacing: 0.1rem;
  font-weight: 400;
  font-family: "Noto Serif Display", serif;
}
@media screen and (max-width: 1024px) {
  .el_pageTtl_en {
    font-size: 80px;
  }
}
@media screen and (max-width: 767px) {
  .el_pageTtl_en {
    font-size: 60px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 374px) {
  .el_pageTtl_en {
    font-size: 54px;
  }
}
.el_pageTtl_ja {
  display: block;
  color: #768371;
  margin-bottom: 1rem;
  margin-top: 1.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  text-align: left;
  word-break: keep-all;
  font-family: var(--font-jpTtl);
}
@media screen and (max-width: 767px) {
  .el_pageTtl_en {
    font-size: 60px;
  }
}

/* ly_pageTtl02 */
.ly_pageTtl02 {
  padding-top: 23.6rem;
  padding-bottom: 14rem;
  border-bottom: 1px 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-block: 10rem 8rem;
  border-bottom: 1px solid rgba(118, 131, 113, 0.4);
  min-height: 438px;
  display: flex;
  align-items: flex-end;
}
.el_pageTtlPost_inner {
  display: block;
  max-width: 122rem;
  width: 100%;
  margin-inline: auto;
  padding-inline: 4rem;
}
@media screen and (max-width: 767px) {
  .el_pageTtlPost_inner {
    padding: 0 1.6rem;
  }
}
.el_pageTtlPost_ja {
  display: block;
  color: var(--color-main);
  font-family: var(--font-jpTtl);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.5;
}
.el_pageTtlPost_en {
  display: block;
  color: var(--color-main);
  font-family: var(--font-enTtl);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1.4rem;
}
.el_pageTtlPost_date {
  display: block;
  margin-top: 1.6rem;
  color: var(--color-black);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .el_pageTtlPost {
    padding-block: 15rem 5rem;
    min-height: 31.5rem;
  }
  .el_pageTtlPost_ja {
    font-size: 2.6rem;
  }
}

/* el_secTtl */
.el_secTtl {
  color: #768371;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .el_secTtl {
    font-size: 2.4rem;
  }
}

/* text_key
============================== */
.el_pageTtlPost_date {
  font-family: var(--font-en);
}

/* text_key
============================== */
.el_text_key {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 0.6em;
       column-gap: 0.6em;
  color: var(--color-main);
  font-size: 1.2rem;
}
.el_pageTtlPost .el_text_key {
  margin-bottom: 1.6rem;
}

/* textbox
============================== */
.bl_text_wrap p {
  line-height: 2.2;
  font-weight: 400;
}
.bl_text_wrap p:not(:first-child) {
  margin-top: 20px;
}

.el_text_ready {
  font-family: var(--font-en);
  font-size: 2rem;
}
.el_text_ready.un_center {
  text-align: center;
}

.bl_charge_archive {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.bl_charge_archive .el_charge_icon {
  width: min(25%, 5rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .bl_charge_archive .el_charge_icon {
    width: min(25%, 3.6rem);
  }
}
.bl_charge_archive .el_charge_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bl_charge_archive .el_charge_post {
  color: rgba(68, 68, 68, 0.4);
  font-size: 1.2rem;
  line-height: 1.4;
  display: block;
}
.bl_charge_archive .el_charge_name {
  font-size: 1.4rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .bl_charge_archive {
    margin-top: 1.4rem;
  }
}

.bl_charge_single {
  margin-top: 6rem;
  border-radius: 6px;
  border: 1px solid rgba(118, 131, 113, 0.4);
  background: #FFF;
  padding: 4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem 2.2rem;
}
.bl_charge_single .el_charge_icon {
  grid-area: 1/1/2/2;
  max-width: 10rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.bl_charge_single .el_charge_icon:has(.no_img) {
  border: 1px solid rgba(118, 131, 113, 0.4);
}
.bl_charge_single .el_charge_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bl_charge_single .el_charge_info {
  grid-area: 1/2/2/2;
}
.bl_charge_single .el_charge_info .el_charge_ttl {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}
.bl_charge_single .el_charge_info .el_charge_name {
  display: inline-block;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 374px) {
  .bl_charge_single .el_charge_info .el_charge_name {
    font-size: 1.8rem;
  }
}
.bl_charge_single .el_charge_info .el_charge_post {
  font-size: 1.4rem;
  font-weight: 500;
  margin-right: 1rem;
}
.bl_charge_single .el_charge_info .el_snsList {
  margin-top: 2rem;
}
.bl_charge_single .el_charge_description {
  grid-area: 2/1/2/3;
}
@media screen and (max-width: 767px) {
  .bl_charge_single {
    grid-template-columns: min(10rem, 30%) 1fr;
    padding: 3rem;
  }
}

.ly_2col, .ly_all2col {
  display: flex;
  gap: 6rem 4rem;
  justify-content: space-between;
  align-items: flex-start;
}
.ly_2col .bl_side, .ly_all2col .bl_side {
  max-width: 25rem;
  width: 20%;
  position: sticky;
  top: 2rem;
}
@media screen and (max-width: 1024px) {
  .ly_2col .bl_side, .ly_all2col .bl_side {
    position: static;
  }
}
.ly_2col .el_edit, .ly_all2col .el_edit {
  width: 75%;
  max-width: 74rem;
  flex-grow: 1;
}
@media screen and (max-width: 1024px) {
  .ly_2col, .ly_all2col {
    flex-direction: column;
  }
  .ly_2col .bl_side, .ly_all2col .bl_side {
    max-width: 100%;
    width: 100%;
  }
  .ly_2col .el_edit, .ly_all2col .el_edit {
    width: 100%;
    max-width: 100%;
  }
}

/* 目次
============================== */
.el_toc + .el_toc {
  margin-top: 2rem;
}
.el_toc .toc_title {
  font-size: 1.8rem;
  font-family: var(--font-enTtl);
  font-weight: 600;
  color: var(--color-main);
  line-height: 1;
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(118, 131, 113, 0.4);
}
.el_toc .toc_title .el_faqList_ico {
  display: none;
}
@media screen and (max-width: 1024px) {
  .el_toc .toc_title .el_faqList_ico {
    display: block;
  }
}
.el_toc .toc_list li {
  line-height: 1.5;
}
.el_toc .toc_list li:not(:last-child) {
  margin-bottom: 0.8rem;
}
.el_toc .toc_list li a {
  display: inline-block;
  width: 100%;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  transition: 0.5s;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .el_toc .toc_list li a:hover {
    opacity: 0.5;
  }
}
.el_toc .toc_list.un_key {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0.8rem;
}
.el_toc .toc_list.un_key li {
  margin-bottom: 0;
}
.el_toc.un_tax .toc_list li a {
  opacity: 0.5;
}
@media (hover: hover) and (pointer: fine) {
  .el_toc.un_tax .toc_list li a:hover {
    opacity: 1;
  }
}
.el_toc.un_tax .toc_list .is-current a {
  opacity: 1;
  pointer-events: none;
}
.el_toc .toc_banner {
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}

.un_accordion + .el_toc {
  margin-top: 4rem;
}
@media screen and (min-width: 1025px) {
  .un_accordion .js_acc_ttl {
    pointer-events: none;
  }
}
.un_accordion .js_acc_ttl .el_faqList_ico {
  display: none;
}
@media screen and (max-width: 1024px) {
  .un_accordion .js_acc_ttl .el_faqList_ico {
    display: block;
  }
}
.un_accordion .toc_list {
  display: none;
}
@media screen and (min-width: 1025px) {
  .un_accordion .toc_list {
    display: block !important;
  }
}
@media screen and (max-width: 1024px) {
  .un_accordion .toc_title {
    cursor: pointer;
    pointer-events: auto;
  }
}

/* 記事シェア
============================== */
.el_postShare {
  margin-top: 10rem;
}
.el_postShare .el_postShare_ttl {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: var(--font-jpTtl);
  line-height: 1.5;
  color: var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
.el_postShare .el_postShare_ttl::before, .el_postShare .el_postShare_ttl::after {
  content: "";
  display: inline-block;
  flex-grow: 1;
  height: 1px;
  background: rgba(118, 131, 113, 0.4);
}
.el_postShare .el_share_list {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
.el_postShare .el_share_list a {
  cursor: pointer;
  transition: 0.5s;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .el_postShare .el_share_list a:hover {
    opacity: 0.5;
  }
}
.el_postShare .el_share_list a.un_url {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-jpTtl);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-main);
  background: var(--color-white);
  padding: 0.8rem 1.6rem;
  border-radius: 10rem;
}

/* edit
============================== */
.el_edit > *:first-child {
  margin-top: 0 !important;
}
.el_edit h2 {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-top: 8rem;
  font-family: var(--font-jpTtl);
  color: var(--color-main);
}
.el_edit h3:not(.el_priceTable_ttl) {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-top: 4.6rem;
  font-family: var(--font-jpTtl);
  background: var(--color-main);
  color: var(--color-white);
  padding: 1.2rem 2rem;
  position: relative;
}
.el_edit h3:not(.el_priceTable_ttl):before, .el_edit h3:not(.el_priceTable_ttl)::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
}
.el_edit h3:not(.el_priceTable_ttl)::after {
  bottom: 0.4rem;
}
.el_edit h3:not(.el_priceTable_ttl)::before {
  top: 0.4rem;
}
.el_edit h4 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-top: 3rem;
  font-family: var(--font-jpTtl);
  color: var(--color-main);
  padding-left: 1.4rem;
  border-left: 4px solid var(--color-main);
}
.el_edit p:not([class]) {
  margin-top: 2.4rem;
}
.el_edit p:not([class]) a {
  color: var(--color-main);
  text-decoration: underline;
  transition: 0.5s;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .el_edit p:not([class]) a:hover {
    opacity: 0.5;
  }
}
.el_edit strong:not(.wp-block-flexible-table-block-table) {
  font-weight: 700;
  padding: 0 0.3rem 0.3rem;
  background: linear-gradient(0deg, rgba(148, 127, 40, 0.6) 35%, rgba(255, 255, 255, 0) 35%);
}
.el_edit em:not(.wp-block-flexible-table-block-table) {
  font-size: 0.9em;
  color: rgba(118, 131, 113, 0.6);
}
.el_edit .wp-block-buttons {
  margin-top: 2.4rem;
}
.el_edit .wp-block-button a {
  background: var(--color-main);
  color: var(--color-white);
  font-family: var(--font-jp);
  font-size: inherit;
  padding: 0.5rem 2rem;
  border-radius: 10rem;
  text-decoration: none;
  transition: 0.5s;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .el_edit .wp-block-button a:hover {
    opacity: 0.5;
  }
}
.el_edit .wp-block-image {
  margin-top: 2.4rem;
}
.el_edit .wp-block-image img {
  max-width: 100%;
  height: auto;
}
.el_edit .wp-block-image .wp-element-caption {
  font-size: 1.2rem;
  color: rgba(68, 68, 68, 0.4);
  margin-block: 1rem 0;
}
.el_edit ol:not([class]),
.el_edit ol.wp-block-list {
  list-style-type: auto;
  padding-left: 1em;
  margin-top: 2.4rem;
}
.el_edit ol:not([class]) li a,
.el_edit ol.wp-block-list li a {
  color: var(--color-main);
  text-decoration: underline;
  transition: 0.5s;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .el_edit ol:not([class]) li a:hover,
  .el_edit ol.wp-block-list li a:hover {
    opacity: 0.5;
  }
}
.el_edit ol:not([class]) li + li,
.el_edit ol.wp-block-list li + li {
  margin-top: 0.4rem;
}
.el_edit ul:not([class]),
.el_edit ul.wp-block-list {
  list-style-type: disc;
  padding-left: 1em;
  margin-top: 2.4rem;
}
.el_edit ul:not([class]) li::marker,
.el_edit ul.wp-block-list li::marker {
  color: var(--color-main);
}
.el_edit ul:not([class]) li a,
.el_edit ul.wp-block-list li a {
  color: var(--color-main);
  text-decoration: underline;
  transition: 0.5s;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .el_edit ul:not([class]) li a:hover,
  .el_edit ul.wp-block-list li a:hover {
    opacity: 0.5;
  }
}
.el_edit ul:not([class]) li + li,
.el_edit ul.wp-block-list li + li {
  margin-top: 0.4rem;
}
.el_edit .el_infoTable {
  width: 100%;
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: auto 1fr;
}
.el_edit .el_infoTable dt, .el_edit .el_infoTable dd {
  padding: 1.2rem;
  border-bottom: 1px solid rgba(118, 131, 113, 0.4);
}
.el_edit .el_infoTable dt {
  background: #D4DCCD;
}
.el_edit .el_infoTable dd {
  background: #fff;
}
.el_edit .wp-block-flexible-table-block-table {
  margin-top: 2.4rem;
}
.el_edit .wp-block-flexible-table-block-table a {
  text-decoration: underline;
  transition: 0.5s;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .el_edit .wp-block-flexible-table-block-table a:hover {
    opacity: 0.5;
  }
}
.el_edit .wp-block-flexible-table-block-table img {
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .el_edit h2 {
    font-size: 2.6rem;
  }
  .el_edit h3:not(.el_priceTable_ttl) {
    font-size: 2rem;
  }
}

/* ===================================
common
=================================== */
.ly_innerTop {
  box-sizing: content-box;
  max-width: 112rem;
  margin: 0 auto;
  padding: 14rem 4rem;
}
.ly_innerTop.un_inner {
  max-width: unset;
  padding-inline: 4rem;
}
@media screen and (max-width: 767px) {
  .ly_innerTop {
    padding: 8rem 2rem;
  }
  .ly_innerTop.un_inner {
    padding-inline: 2rem;
  }
}

.bl_rowPost {
  display: grid;
  gap: 6rem;
}
@media screen and (max-width: 1024px) {
  .bl_rowPost .el_btnNormal {
    margin-inline: auto;
  }
}
@media screen and (min-width: 1025px) {
  .bl_rowPost {
    grid-template-columns: auto 1fr;
    gap: 6rem 12rem;
  }
  .bl_rowPost .el_rowTtl {
    grid-area: 1/1/2/2;
  }
  .bl_rowPost .el_rowTtl .el_pageTtl_en {
    font-size: 8rem;
  }
  .bl_rowPost .bl_grid_post {
    grid-area: 1/2/4/3;
  }
  .bl_rowPost .el_btnNormal {
    grid-area: 2/1/3/2;
  }
}

/* ===================================
header
=================================== */
.video-wrap {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  overflow: hidden;
}
.video-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%);
}
.video-wrap video {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100vh;
  width: 100%;
  -o-object-position: center;
     object-position: center;
}

/* ===================================
FV
=================================== */
.ly_topFv {
  position: relative;
  width: 100%;
  height: 270vh;
}
.ly_topFv .bl_topfv {
  position: sticky;
  top: 0;
  height: 100vh;
}
.ly_topFv .bl_topfv #fv_ja {
  position: absolute;
  bottom: 22%;
  left: 41%;
  max-width: 60vw;
  width: 100%;
  transform: translate(-50%, 0);
  transform-origin: center center;
  will-change: transform, top, left;
}
@media screen and (max-width: 767px) {
  .ly_topFv .bl_topfv #fv_ja {
    left: 38%;
    max-width: 75vw;
    bottom: calc(100vh - 100svh + 15% + 2rem);
  }
}
.ly_topFv .bl_topfv #fv_en {
  position: absolute;
  bottom: 18%;
  left: 63%;
  max-width: 52vw;
  width: 100%;
  transform: translate(-50%, 100%);
  transform-origin: center center;
  will-change: transform, top, left;
}
@media screen and (max-width: 767px) {
  .ly_topFv .bl_topfv #fv_en {
    max-width: 62vw;
    bottom: calc(100vh - 100svh + 15%);
  }
}

.ly_secFv {
  width: 100%;
  height: 100vh;
  margin-top: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .ly_secFv .bl_secfv {
    width: 60vw;
  }
  .ly_secFv .bl_secfv img {
    margin-inline: auto;
  }
}

/* ===================================
ABOUT
=================================== */
.ly_about {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 17rem 22vw;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .ly_about {
    padding-top: 8rem;
    padding-bottom: 43vw;
  }
}
.ly_about .bl_about_inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 7rem;
}
@media screen and (max-width: 1024px) {
  .ly_about .bl_about_inner {
    gap: 4rem;
    padding-left: 4rem;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767px) {
  .ly_about .bl_about_inner {
    padding-left: 2rem;
  }
}
.ly_about .bl_about_inner .topSwiper_l {
  border-radius: 0 6px 6px 0;
  border: 1px solid var(--40, rgba(118, 131, 113, 0.4));
  border-left: none;
  width: 100px;
  flex-grow: 2;
  margin-top: 20%;
}
@media screen and (max-width: 1024px) {
  .ly_about .bl_about_inner .topSwiper_l {
    display: none;
  }
}
.ly_about .bl_about_inner .topSwiper_r {
  border-radius: 6px 0px 0px 6px;
  border: 1px solid var(--40, rgba(118, 131, 113, 0.4));
  border-right: none;
  width: 100px;
  height: -moz-fit-content;
  height: fit-content;
  flex-grow: 7;
}
@media screen and (max-width: 1024px) {
  .ly_about .bl_about_inner .topSwiper_r {
    width: 80%;
    margin-right: unset;
  }
}
@media screen and (max-width: 767px) {
  .ly_about .bl_about_inner .topSwiper_r {
    width: 100%;
  }
}
.ly_about .bl_about_inner .swiper-slide {
  overflow: hidden;
}
.ly_about .bl_about_inner .bl_text_area {
  width: 46rem;
}
@media screen and (min-width: 1441px) {
  .ly_about .bl_about_inner .bl_text_area {
    width: 32%;
  }
}
@media screen and (max-width: 1024px) {
  .ly_about .bl_about_inner .bl_text_area {
    width: 100%;
    padding-right: 4rem;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 767px) {
  .ly_about .bl_about_inner .bl_text_area {
    padding-right: 2rem;
  }
}
.ly_about .bl_about_inner .bl_text_area .el_aboutTtl_jp {
  margin-top: 2rem;
  font-size: 3.8rem;
  line-height: 1.8;
  font-weight: 500;
  font-family: var(--font-jpTtl);
}
@media screen and (max-width: 767px) {
  .ly_about .bl_about_inner .bl_text_area .el_aboutTtl_jp {
    font-size: 2.8rem;
    margin-top: 0.8rem;
  }
}
@media screen and (max-width: 375px) {
  .ly_about .bl_about_inner .bl_text_area .el_aboutTtl_jp {
    font-size: 2.3rem;
  }
}
.ly_about .bl_about_inner .bl_text_area .el_aboutTtl_en {
  color: var(--color-main);
  font-size: 1.8rem;
  font-family: var(--font-enTtl);
}
.ly_about .bl_about_inner .bl_text_area .bl_text_wrap {
  margin-block: 6rem;
}
@media screen and (max-width: 767px) {
  .ly_about .bl_about_inner .bl_text_area .bl_text_wrap {
    margin-block: 4rem 6rem;
  }
}
@media screen and (max-width: 767px) {
  .ly_about .bl_about_inner .bl_text_area .bl_text_wrap {
    margin-block: 4rem 6rem;
  }
}
.ly_about .bl_about_inner .bl_text_area .bl_text_wrap .un-br {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .ly_about .bl_about_inner .bl_text_area .bl_text_wrap .un-br {
    display: inline;
  }
}

.bl_wave_scroll {
  position: absolute;
  bottom: -3rem;
  left: 0;
  width: 100%;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .bl_wave_scroll {
    bottom: 1rem;
  }
}
.bl_wave_scroll svg {
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .bl_wave_scroll svg {
    scale: 2;
  }
}
.bl_wave_scroll .svg-scrolling-text {
  fill: transparent;
  stroke: rgba(111, 124, 106, 0.2);
  stroke-width: 1px;
  font-family: var(--font-jpTtl);
  font-size: 6rem;
}
@media screen and (max-width: 1024px) {
  .bl_wave_scroll .svg-scrolling-text {
    font-size: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .bl_wave_scroll .svg-scrolling-text {
    font-size: 5rem;
  }
}
@media screen and (max-width: 600px) {
  .bl_wave_scroll .svg-scrolling-text {
    font-size: 6rem;
  }
}

.wave-svg {
  width: 100%;
  height: auto;
}

/* ===================================
MESSAGE
=================================== */
.ly_message {
  background: url(../img/top/message_bg.webp) no-repeat top center/cover;
  position: relative;
}
.ly_message::before {
  content: "";
  position: absolute;
  top: -1px;
  width: 100%;
  height: 14rem;
  background: linear-gradient(180deg, #F6F5F1 0%, rgba(246, 245, 241, 0) 100%);
}
.ly_message .un_inner {
  padding-block: 18rem 10rem;
  max-width: 112rem;
}
@media screen and (max-width: 767px) {
  .ly_message {
    background: #B5B5AD url(../img/top/message_bg_sp.webp) no-repeat bottom center/cover;
  }
  .ly_message::before {
    height: 11rem;
    background: linear-gradient(180deg, #F6F5F1 0%, rgba(246, 245, 241, 0) 100%);
  }
  .ly_message .un_inner {
    padding-block: 8rem 140vw;
  }
}
@media screen and (max-width: 374px) {
  .ly_message {
    background-size: contain;
  }
}
.ly_message .bl_message_inner {
  max-width: 56.5rem;
  width: 55%;
  font-feature-settings: "palt" on;
  letter-spacing: 0.04em;
}
.ly_message .bl_message_inner .el_messageTtl_en {
  font-size: 1.8rem;
  font-family: var(--font-enTtl);
}
.ly_message .bl_message_inner .bl_messageTtl_wrap {
  font-family: var(--font-jpTtl);
  border-bottom: 1px solid var(--40, rgba(118, 131, 113, 0.4));
  padding-bottom: 1.4rem;
  margin-block: 1rem 2rem;
}
.ly_message .bl_message_inner .bl_messageTtl_wrap .el_status {
  font-size: 1.4rem;
  font-weight: 600;
}
.ly_message .bl_message_inner .bl_messageTtl_wrap .el_name {
  font-size: 3rem;
  font-weight: 500;
}
.ly_message .bl_message_inner .bl_messageTtl_wrap .el_name_en {
  font-size: 1.6rem;
  font-family: var(--font-en);
  font-weight: 500;
  text-transform: uppercase;
  margin-left: 1em;
}
.ly_message .bl_message_inner .bl_text_wrap {
  margin-block: 3rem 6rem;
}
@media screen and (max-width: 767px) {
  .ly_message .bl_message_inner {
    max-width: unset;
    width: 100%;
  }
  .ly_message .bl_message_inner .bl_messageTtl_wrap .el_name {
    font-size: 2.6rem;
  }
}

/* ===================================
MENU
=================================== */
.ly_menu {
  background: var(--color-main) url(../img/common/menu_bg_line.webp) top center repeat;
}
.ly_menu .el_pageTtl_ja, .ly_menu .el_pageTtl_en {
  color: #fff;
  text-align: center;
}
.ly_menu .el_text_ready {
  color: var(--color-white);
}
.ly_menu .el_btnNormal {
  margin-top: 6rem;
  margin-inline: auto;
}

/* ===================================
PICK UP
=================================== */
.ly_pickup .ly_innerTop {
  padding-bottom: 0;
}
.ly_pickup .bl_rowPost .el_rowTtl_ja {
  margin-top: 0;
}
.ly_pickup .bl_rowPost .el_rowTtl_en {
  font-size: 1.8rem;
  font-family: var(--font-enTtl);
}

/* ===================================
CASE
=================================== */
.ly_case {
  overflow-x: hidden;
}
.ly_case .bl_topCase_slide {
  width: 100vw;
  padding-block: 15rem 3rem;
  margin-top: -7rem;
  margin-bottom: 3rem;
  margin-left: calc(50% - 50vw);
  overflow: auto;
}
.ly_case .bl_topCase_slide .bl_topCase_slide_inner {
  max-width: 116rem;
  display: flex;
  gap: min(3%, 5rem);
  transform: translateX(calc(50vw - 50%));
  padding-left: 4rem;
  box-sizing: content-box;
}
.ly_case .bl_topCase_slide .el_caseCard {
  width: calc((100% - 10rem) / 3);
  max-width: 34rem;
  min-width: 28rem;
  flex-shrink: 0;
}
.ly_case .bl_topCase_slide .el_caseCard .el_casePopup_btn {
  font-size: 1.4rem;
  padding: 1.4rem;
}
.ly_case .bl_topCase_slide .el_caseCard .el_caseList_popup {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .ly_case .bl_topCase_slide .bl_topCase_slide_inner {
    padding-left: 2rem;
    gap: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .ly_case .bl_topCase_slide .el_caseCard {
    min-width: unset;
    width: 80vw;
  }
}
@media screen and (max-width: 475px) {
  .ly_case .bl_topCase_slide .el_caseCard .bl_casePopup .el_caseList_popup {
    height: calc(100% - 10rem);
  }
}

/* ===================================
GUIDE
=================================== */
.ly_guide .bl_guide_inner {
  display: flex;
}
@media screen and (max-width: 767px) {
  .ly_guide .bl_guide_inner {
    flex-direction: column;
  }
}
.ly_guide .bl_guide_inner .bl_guide_inner_thmb {
  width: 40%;
  max-width: 75rem;
  flex-grow: 1;
  flex-shrink: 3;
  padding-bottom: 11rem;
}
.ly_guide .bl_guide_inner .bl_guide_inner_thmb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 20%;
     object-position: 20%;
}
@media screen and (max-width: 767px) {
  .ly_guide .bl_guide_inner .bl_guide_inner_thmb {
    max-width: unset;
    width: 100%;
    padding-bottom: 0;
  }
}
.ly_guide .bl_guide_inner .bl_guide_inner_wrap {
  background: var(--color-main) url(../img/common/menu_bg_line.webp) top center repeat;
  background-size: 160rem;
  padding: min(7rem, 10vw);
  width: 60%;
  flex-grow: 1;
  flex-shrink: 2;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  .ly_guide .bl_guide_inner .bl_guide_inner_wrap {
    width: 100%;
    padding-inline: 2rem;
  }
}
.ly_guide .bl_guide_inner .bl_guide_inner_wrap .el_pageTtl_ja, .ly_guide .bl_guide_inner .bl_guide_inner_wrap .el_pageTtl_en {
  color: var(--color-white);
}
.ly_guide .bl_guide_inner .bl_guide_inner_wrap .el_guideTtl {
  font-size: 3rem;
  font-family: var(--font-jpTtl);
  margin-bottom: 4rem;
}
@media screen and (min-width: 1101px) {
  .ly_guide .bl_guide_inner .bl_guide_inner_wrap .el_guideTtl .br_un {
    display: none;
  }
}
.ly_guide .bl_guide_inner .bl_guide_inner_wrap .el_btnNormal {
  margin-top: 6rem;
}

/* ===================================
COLUMN
=================================== */
.ly_column .ly_column_post {
  margin-block: 8rem;
}
.ly_column .el_columnList_top {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 5rem;
       column-gap: 5rem;
}
@media screen and (max-width: 1024px) {
  .ly_column .el_columnList_top {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .ly_column .el_columnList_top {
    grid-template-columns: 1fr;
    row-gap: 4rem;
  }
}

/* ===================================
NEWS
=================================== */
.ly_news .ly_innerTop {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .ly_news .el_newsList {
    margin-top: -2.8rem;
  }
}

:where(:has(.pg_about)) {
  /* 番号 */
  /* 本文エリア */
  /* 上側のborderを途中で切るための覆い（擬似要素を利用） */
}
:where(:has(.pg_about)) :where(body) {
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  background-image: url("../img/common/main_bg.webp");
  background-repeat: repeat;
  background-position: top center;
}
:where(:has(.pg_about)) :where(body) ::where(p) {
  line-height: 2.2;
}
:where(:has(.pg_about)) .br_pc_350 {
  display: block;
}
@media (max-width: 350px) {
  :where(:has(.pg_about)) .br_pc_350 {
    display: none;
  }
}
:where(:has(.pg_about)) .br_tb {
  display: none;
}
@media (max-width: 1024px) {
  :where(:has(.pg_about)) .br_tb {
    display: block;
  }
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .br_tb {
    display: none;
  }
}
:where(:has(.pg_about)) .br_pc {
  display: block;
}
@media (max-width: 1024px) {
  :where(:has(.pg_about)) .br_pc {
    display: none;
  }
}
@media (max-width: 350px) {
  :where(:has(.pg_about)) .br_350 {
    display: block;
  }
}
:where(:has(.pg_about)) .br_sp {
  display: none;
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .br_sp {
    display: block;
  }
}
:where(:has(.pg_about)) .br_1110 {
  display: block;
}
@media (max-width: 1110px) {
  :where(:has(.pg_about)) .br_1110 {
    display: none;
  }
}
:where(:has(.pg_about)) .el_Display {
  font-family: "Noto Serif Display", serif;
}
:where(:has(.pg_about)) .el_shippori {
  font-family: "Shippori Mincho", serif;
}
:where(:has(.pg_about)) .bl_inner {
  max-width: 1120px;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
}
:where(:has(.pg_about)) .swiper {
  width: 100vw;
  max-height: 820px;
  height: 57vw;
  position: relative;
}
@media (max-width: 1024px) {
  :where(:has(.pg_about)) .swiper {
    height: 68vw;
  }
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .swiper {
    height: 174vw;
    max-height: unset;
  }
}
@media (max-width: 360px) {
  :where(:has(.pg_about)) .swiper {
    height: 80vh;
    min-height: 800px;
  }
}
:where(:has(.pg_about)) .swiper img {
  animation: zoomIn 10s ease-in-out forwards;
  transform-origin: center;
}
@media (max-width: 1024px) {
  :where(:has(.pg_about)) .swiper img {
    max-width: unset;
    height: auto;
    width: 120%;
    margin: 0 auto;
    position: relative;
    left: 50%;
    transform: translate(-50%);
  }
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .swiper img {
    width: 100%;
  }
}
@media (max-width: 360px) {
  :where(:has(.pg_about)) .swiper img {
    width: 143%;
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
:where(:has(.pg_about)) .swiper .swiper-slide-active .swiper-img,
:where(:has(.pg_about)) .swiper .swiper-slide-duplicate-active .swiper-img,
:where(:has(.pg_about)) .swiper .swiper-slide-prev .swiper-img {
  animation: zoomUp 20s linear 0s normal both;
}
:where(:has(.pg_about)) .swiper-slide {
  background-position: center;
  background-size: cover;
}
:where(:has(.pg_about)) .swiper-slide::before {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 10rem;
  background: linear-gradient(0deg, #F6F5F1 0%, rgba(246, 245, 241, 0) 100%);
  z-index: 1;
}
:where(:has(.pg_about)) .ly_fv {
  position: relative;
}
:where(:has(.pg_about)) .ly_fv .clinicFv {
  position: absolute;
}
:where(:has(.pg_about)) .ly_fv .bl_fv_cnt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #fff;
  display: flex;
  width: 100%;
  padding: 0 40px;
}
@media (max-width: 1024px) {
  :where(:has(.pg_about)) .ly_fv .bl_fv_cnt {
    display: block;
    margin-top: 0;
    padding: 0 20px;
  }
}
:where(:has(.pg_about)) .ly_fv .bl_fv_cnt .bl_l {
  width: 56.25%;
}
@media (max-width: 1024px) {
  :where(:has(.pg_about)) .ly_fv .bl_fv_cnt .bl_l {
    width: 100%;
  }
}
:where(:has(.pg_about)) .ly_fv .bl_fv_cnt .bl_l .el_en {
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0rem;
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .ly_fv .bl_fv_cnt .bl_l .el_en {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
:where(:has(.pg_about)) .ly_fv .bl_fv_cnt .bl_l .el_jp {
  font-weight: 500;
  font-size: 34px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .ly_fv .bl_fv_cnt .bl_l .el_jp {
    font-size: 26px;
  }
}
:where(:has(.pg_about)) .ly_fv .bl_fv_cnt .bl_r {
  width: 43.75%;
}
@media (max-width: 1024px) {
  :where(:has(.pg_about)) .ly_fv .bl_fv_cnt .bl_r {
    width: 100%;
  }
}
:where(:has(.pg_about)) .ly_fv .bl_fv_cnt .bl_r p {
  font-weight: 400;
  font-size: 16px;
  line-height: 2.2;
  margin-top: 30px;
}
@media (max-width: 430px) {
  :where(:has(.pg_about)) .ly_fv .bl_fv_cnt .bl_r p {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  :where(:has(.pg_about)) .ly_point {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
  }
}
:where(:has(.pg_about)) .ly_point .bl_box {
  border-top: 1px solid var(--40, rgba(118, 131, 113, 0.4));
  border-bottom: 1px solid var(--40, rgba(118, 131, 113, 0.4));
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .ly_point .bl_box {
    margin-bottom: 12%;
  }
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .ly_point .bl_box:last-child {
    margin-bottom: 0;
  }
}
:where(:has(.pg_about)) .ly_point .bl_inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  width: 90%;
}
@media (max-width: 1024px) {
  :where(:has(.pg_about)) .ly_point .bl_inner {
    align-items: stretch;
  }
}
@media (min-width: 768px) {
  :where(:has(.pg_about)) .ly_point .bl_inner {
    height: 100%;
  }
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .ly_point .bl_inner {
    flex-direction: column-reverse;
    gap: 0;
    width: 100%;
  }
}
:where(:has(.pg_about)) .bl_2n1 {
  flex-direction: row-reverse;
}
:where(:has(.pg_about)) .bl_point_l {
  width: 46.8%;
}
@media (max-width: 1024px) {
  :where(:has(.pg_about)) .bl_point_l {
    width: 60%;
    overflow: hidden;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .bl_point_l {
    position: relative;
    width: 100%;
    border-bottom: 1px solid var(--40, rgba(118, 131, 113, 0.4));
  }
}
:where(:has(.pg_about)) .bl_point_l img {
  width: 100%;
  height: auto;
  display: block;
  border-left: 1px solid var(--40, rgba(118, 131, 113, 0.4));
  border-right: 1px solid var(--40, rgba(118, 131, 113, 0.4));
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  :where(:has(.pg_about)) .bl_point_l img {
    -o-object-fit: cover;
       object-fit: cover;
    overflow: hidden;
    height: 100%;
  }
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .bl_point_l img {
    width: 90%;
    margin: 0 auto;
    height: 100%;
    -o-object-position: top;
       object-position: top;
  }
}
:where(:has(.pg_about)) .bl_point_r {
  width: 53.2%;
  box-sizing: border-box;
  padding-right: 5%;
}
@media (max-width: 1024px) {
  :where(:has(.pg_about)) .bl_point_r {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 5% 0;
  }
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .bl_point_r {
    width: 100%;
    padding: 5rem 20px;
    margin: 0 auto;
  }
}
:where(:has(.pg_about)) .bl_2n1 .bl_point_r {
  padding-right: 0;
  padding-left: 5%;
}
@media (max-width: 1024px) {
  :where(:has(.pg_about)) .bl_2n1 .bl_point_r {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .bl_2n1 .bl_point_r {
    padding: 5rem 20px;
  }
}
:where(:has(.pg_about)) .el_en {
  font-size: 18px;
  letter-spacing: 0em;
  color: #768371;
  margin-bottom: 10px;
  line-height: 1;
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .el_en {
    margin-bottom: 14px;
  }
}
:where(:has(.pg_about)) .el_jp02 {
  font-size: 26px;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 40px;
  color: #444;
}
@media (max-width: 1024px) {
  :where(:has(.pg_about)) .el_jp02 {
    font-size: 24px;
  }
}
@media (max-width: 900px) {
  :where(:has(.pg_about)) .el_jp02 {
    font-size: 22px;
  }
}
:where(:has(.pg_about)) .el_txt {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  line-height: 2.2;
  font-weight: 400;
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .el_txt {
    font-size: 14px;
  }
}
:where(:has(.pg_about)) .el_worry_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  gap: 30px 3%;
  width: 90%;
  margin: auto;
}
@media (max-width: 1024px) {
  :where(:has(.pg_about)) .el_worry_box {
    flex-direction: unset;
    align-items: center;
    width: 100%;
  }
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .el_worry_box {
    flex-wrap: unset;
    flex-direction: column;
  }
}
:where(:has(.pg_about)) .card {
  position: relative;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 8px;
  padding: 40px 20px 30px;
  text-align: center;
  max-width: 350px;
  width: 31.25%;
  font-family: "Noto Serif JP", serif;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
}
@media (max-width: 1024px) {
  :where(:has(.pg_about)) .card {
    max-width: unset;
    width: 36%;
    padding: 40px 0 30px;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .card {
    width: 90%;
    height: 160px;
  }
}
@media (max-width: 450px) {
  :where(:has(.pg_about)) .card {
    height: 135px;
  }
}
@media (max-width: 1024px) {
  :where(:has(.pg_about)) .card:nth-child(1) {
    display: flex;
    width: 100%;
    margin-left: 32%;
    margin-right: 32%;
    box-sizing: border-box;
  }
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .card:nth-child(1) {
    width: 90%;
    margin: 0 auto;
  }
}
:where(:has(.pg_about)) .card:nth-child(3) {
  margin-right: 0;
}
:where(:has(.pg_about)) .card:nth-child(5) {
  margin-right: 0;
}
@media (max-width: 1024px) {
  :where(:has(.pg_about)) .card:nth-child(2n) {
    margin-right: 0;
  }
}
:where(:has(.pg_about)) .card-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  font-weight: bold;
  color: #768371;
  background: none;
  z-index: 2;
  padding: 0 10px;
  font-weight: 400;
}
:where(:has(.pg_about)) .card-body p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin: 0;
}
@media (max-width: 14440px) {
  :where(:has(.pg_about)) .card-body p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .card-body p {
    font-size: 16px;
  }
}
:where(:has(.pg_about)) .card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 3.2em; /* 02の文字幅と合わせて調整 */
  height: 2px;
  background: #fff;
  z-index: 1;
}
:where(:has(.pg_about)) .ly_worry {
  margin-top: 40px;
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .ly_worry {
    margin-top: 80px;
  }
}
:where(:has(.pg_about)) .ly_worry .el_worry_inner {
  max-width: 884px;
  width: 79%;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .ly_worry .el_worry_inner {
    width: 100%;
  }
}
:where(:has(.pg_about)) .ly_worry .el_worry_inner .el_worry_ttl {
  border-top: 1px solid var(--40, rgba(118, 131, 113, 0.4));
  border-bottom: 1px solid var(--40, rgba(118, 131, 113, 0.4));
  padding: 20px 0;
  color: #6F7C6A;
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.8;
}
@media (max-width: 1024px) {
  :where(:has(.pg_about)) .ly_worry .el_worry_inner .el_worry_ttl {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .ly_worry .el_worry_inner .el_worry_ttl {
    font-size: 23px;
  }
}
@media (max-width: 370px) {
  :where(:has(.pg_about)) .ly_worry .el_worry_inner .el_worry_ttl {
    font-size: 21px;
  }
}
:where(:has(.pg_about)) .ly_worry .el_worry_inner .el_worry_txt {
  margin-top: 60px;
  margin-bottom: 60px;
  line-height: 2.2;
  box-sizing: content-box;
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .ly_worry .el_worry_inner .el_worry_txt {
    margin-top: 12%;
    margin-bottom: 15%;
  }
}
:where(:has(.pg_about)) .ly_aboutpage {
  overflow: hidden;
}
:where(:has(.pg_about)) .ly_value {
  padding-top: 0;
  padding-bottom: 160px;
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .ly_value {
    padding-top: 8rem;
    padding-bottom: 130px;
  }
}
:where(:has(.pg_about)) .ly_value .el_secTtl {
  align-items: center;
  padding-block: 16rem 6rem;
  margin-top: 0;
  margin-bottom: 0;
  border-bottom: unset;
  color: #768371;
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .ly_value .el_secTtl {
    padding-top: 0rem;
  }
}
:where(:has(.pg_about)) .ly_value .el_secTtl .el_pageTtl_ja {
  font-size: 16px;
  text-align: center;
  color: #6F7C6A;
  letter-spacing: 0;
}
:where(:has(.pg_about)) .ly_value .el_secTtl .el_pageTtl_en {
  font-size: 38px;
  text-align: center;
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .ly_value .el_secTtl .el_pageTtl_en {
    font-size: 30px;
  }
}
:where(:has(.pg_about)) .bl_aboutClinic {
  padding-top: 0;
  padding-bottom: 200px;
  background: center;
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .bl_aboutClinic {
    padding-top: 8rem;
    padding-bottom: 160px;
  }
}
:where(:has(.pg_about)) .bl_aboutClinic .el_secTtl {
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  border-bottom: unset;
  color: #768371;
  padding-top: 14rem;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .bl_aboutClinic .el_secTtl {
    padding-top: 0rem;
    padding-bottom: 38px;
  }
}
:where(:has(.pg_about)) .bl_aboutClinic .el_secTtl .el_pageTtl_ja {
  font-size: 16px;
  text-align: center;
  color: #6F7C6A;
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .bl_aboutClinic .el_secTtl .el_pageTtl_ja {
    font-size: 14px;
  }
}
:where(:has(.pg_about)) .bl_aboutClinic .el_secTtl .el_pageTtl_en {
  font-size: 38px;
  text-align: center;
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .bl_aboutClinic .el_secTtl .el_pageTtl_en {
    font-size: 30px;
  }
}
:where(:has(.pg_about)) .ly_about_message {
  background-image: url("../img/about/about_message.webp");
  max-height: 619px;
  height: 44vw;
  color: #fff;
  background-size: cover;
  background-position: top center;
  background-repeat: repeat-x;
  position: relative;
}
@media (max-width: 1024px) {
  :where(:has(.pg_about)) .ly_about_message {
    max-height: 1000px;
    height: 65vw;
    background-size: cover;
  }
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .ly_about_message {
    background-image: url("../img/about/message_sp.webp");
    height: 176vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
:where(:has(.pg_about)) .ly_about_message .bl_message_box {
  max-width: 736px;
  width: 54vw;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-14%, -55%);
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .ly_about_message .bl_message_box {
    width: 90%;
    top: auto;
    left: auto;
    transform: unset;
    margin: 0 auto;
  }
}
:where(:has(.pg_about)) .ly_about_message .bl_message_box .el_message_ttl {
  font-weight: 400;
  font-size: 38px;
  margin-bottom: 20px;
}
:where(:has(.pg_about)) .ly_about_message .bl_message_box p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.6;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .ly_about_message .bl_message_box p {
    font-size: 14px;
  }
}
:where(:has(.pg_about)) .ly_about_message .bl_message_bigtxt {
  font-size: 143px;
  color: transparent;
  -webkit-text-stroke: 0.5px rgba(246, 245, 241, 0.3);
  text-align: center;
}
@media (max-width: 1440px) {
  :where(:has(.pg_about)) .ly_about_message .bl_message_bigtxt {
    font-size: 9.7vw;
  }
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .ly_about_message .bl_message_bigtxt {
    font-size: 12.8vw;
    text-align: left;
  }
}
:where(:has(.pg_about)) .ly_about_message .bl_message_bigtxt p {
  position: absolute;
  bottom: 0;
  line-height: 0.8;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
}
:where(:has(.pg_about)) .el_infoList {
  font-family: "Noto Sans JP", sans-serif;
  padding: 0 20px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  border-collapse: collapse;
  box-sizing: content-box;
  display: block;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .el_infoList {
    max-width: 500px;
  }
}
:where(:has(.pg_about)) .el_infoList > div {
  display: flex;
  border-bottom: 1px solid var(--40, rgba(118, 131, 113, 0.4));
  padding: 40px 0;
  align-items: start;
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .el_infoList > div {
    display: block;
    padding: 22px 0;
  }
}
:where(:has(.pg_about)) .el_infoList dt {
  width: 25%;
  font-weight: 500;
  color: #444;
  line-height: 1.5;
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .el_infoList dt {
    width: 100%;
    margin-right: 5%;
    margin-bottom: 14px;
    font-size: 14px;
  }
}
:where(:has(.pg_about)) .el_infoList dd {
  margin: 0;
  color: #444;
  line-height: 1.5;
}
@media (max-width: 767px) {
  :where(:has(.pg_about)) .el_infoList dd {
    width: 100%;
    font-size: 14px;
  }
}
:where(:has(.pg_about)) .el_infoList a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
:where(:has(.pg_about)) .el_infoList .el_link_blank span {
  color: #444;
  text-decoration: underline;
}
:where(:has(.pg_about)) .el_infoList .el_link_blank img {
  width: 15%;
}

:where(:has(.pg_access)) {
  /* ナビゲーション矢印 */
  /* レスポンシブ調整 */
  /* プログレスバーの高さ変更 */
  /* プログレスバーの背景色変更 */
  /* プログレスバーの色変更 */
}
:where(:has(.pg_access)) body {
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  background-image: url("../img/common/main_bg.webp");
  background-repeat: repeat;
  background-position: top center;
}
@media (max-width: 767px) {
  :where(:has(.pg_access)) body {
    font-size: 14px;
  }
}
:where(:has(.pg_access)) .el_Display {
  font-family: "Noto Serif Display", serif;
}
:where(:has(.pg_access)) .el_shippori {
  font-family: "Shippori Mincho", serif;
}
:where(:has(.pg_access)) .ly_access {
  overflow: hidden;
}
:where(:has(.pg_access)) .ly_access_top {
  margin-top: 0;
  max-width: 1120px;
  padding: 120px 20px;
  box-sizing: content-box;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
}
@media (max-width: 1024px) {
  :where(:has(.pg_access)) .ly_access_top {
    padding: 120px 40px;
  }
}
@media (max-width: 767px) {
  :where(:has(.pg_access)) .ly_access_top {
    flex-direction: column-reverse;
    padding-bottom: 80px;
    padding-top: 80px;
    padding: 80px 20px;
  }
}
:where(:has(.pg_access)) .ly_access_top .bl_access_text {
  max-width: 520px;
  width: 50%;
  padding: 20px 0 20px 80px;
  box-sizing: content-box;
}
@media (max-width: 1024px) {
  :where(:has(.pg_access)) .ly_access_top .bl_access_text {
    padding: 40px 0 40px 30px;
  }
}
@media (max-width: 767px) {
  :where(:has(.pg_access)) .ly_access_top .bl_access_text {
    width: 100%;
    max-width: unset;
    padding: 0;
    margin-top: 60px;
  }
}
:where(:has(.pg_access)) .ly_access_top .clinic-logo {
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  :where(:has(.pg_access)) .ly_access_top .clinic-logo {
    display: flex;
    justify-content: left;
    margin-bottom: 15px;
  }
}
:where(:has(.pg_access)) .ly_access_top .clinic-logo img {
  width: 40.386%;
}
@media (max-width: 767px) {
  :where(:has(.pg_access)) .ly_access_top .clinic-logo img {
    width: 60%;
  }
}
:where(:has(.pg_access)) .ly_access_top .clinic-block {
  display: flex;
  border-bottom: 1px solid #ccc;
  padding: 28px 0;
}
:where(:has(.pg_access)) .ly_access_top .clinic-block .el_note {
  font-size: 0.9em;
  color: rgba(118, 131, 113, 0.6);
}
@media (max-width: 767px) {
  :where(:has(.pg_access)) .ly_access_top .clinic-block {
    display: block;
  }
}
:where(:has(.pg_access)) .ly_access_top .clinic-label {
  width: 70px;
  font-weight: 400;
  font-size: 16px;
  color: #444;
  margin-right: 40px;
}
@media (max-width: 767px) {
  :where(:has(.pg_access)) .ly_access_top .clinic-label {
    margin-bottom: 12px;
    font-size: 14px;
  }
}
:where(:has(.pg_access)) .ly_access_top .clinic-content {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}
:where(:has(.pg_access)) .ly_access_top .clinic-content:has(> span) {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 0 1.2rem;
}
@media (max-width: 767px) {
  :where(:has(.pg_access)) .ly_access_top .clinic-content {
    font-size: 14px;
  }
}
:where(:has(.pg_access)) .ly_access_top .clinic-content a {
  transition: opacity 0.3s ease;
}
:where(:has(.pg_access)) .ly_access_top .clinic-content a .google-maps {
  border-bottom: #444 solid 1px;
}
:where(:has(.pg_access)) .ly_access_top .clinic-content a:hover {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
:where(:has(.pg_access)) .ly_access_top .clinic-map {
  display: inline-block;
  margin-top: 5px;
  text-decoration: none;
}
:where(:has(.pg_access)) .ly_access_top .clinic-map .arrow {
  font-size: 0.9em;
  margin-left: 5px;
}
:where(:has(.pg_access)) .ly_access_top .bl_access_map {
  max-width: 520px;
  border-radius: 6px;
  width: 50%;
  max-height: 520px;
  height: 48vw;
}
@media (max-width: 1024px) {
  :where(:has(.pg_access)) .ly_access_top .bl_access_map {
    width: 50%;
    height: 66vw;
  }
}
@media (max-width: 767px) {
  :where(:has(.pg_access)) .ly_access_top .bl_access_map {
    width: 100%;
    height: 87vw;
    max-height: unset;
    max-width: unset;
  }
}
:where(:has(.pg_access)) .ly_access_top .bl_access_map iframe {
  border: 0;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--40, rgba(118, 131, 113, 0.4)) !important;
}
:where(:has(.pg_access)) .clinic-content .el_link_blank {
  color: inherit;
  font-size: inherit;
}
:where(:has(.pg_access)) iframe {
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
:where(:has(.pg_access)) .ly_full {
  border-top: 1px solid var(--40, rgba(118, 131, 113, 0.4));
}
@media (max-width: 767px) {
  :where(:has(.pg_access)) .ly_full:last-child {
    margin-bottom: 160px;
  }
}
:where(:has(.pg_access)) .access-slider {
  padding: 60px 0px 100px 0px;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  overflow: visible;
  box-sizing: content-box;
}
@media (max-width: 600px) {
  :where(:has(.pg_access)) .access-slider {
    padding: 60px 0px 60px 0px;
  }
}
:where(:has(.pg_access)) .access-slider .el_slider_ttl {
  color: #6F7C6A;
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  :where(:has(.pg_access)) .access-slider .el_slider_ttl {
    font-size: 22px;
    margin-bottom: 14px;
  }
}
@media (max-width: 430px) {
  :where(:has(.pg_access)) .access-slider .el_slider_ttl {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
}
:where(:has(.pg_access)) .access-slider .el_slider_caution {
  font-weight: 500;
  color: #444;
  margin-bottom: 60px;
  line-height: 2;
  display: inline-flex;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  :where(:has(.pg_access)) .access-slider .el_slider_caution {
    margin-right: auto;
    margin-left: auto;
  }
}
:where(:has(.pg_access)) .access-slider .el_slider_caution span {
  border-bottom: 1px dashed #768371;
  text-align: left;
  font-size: clamp(10px, 3.5vw, 14px);
}
@media (max-width: 767px) {
  :where(:has(.pg_access)) .ly_full:last-child .access-slider {
    padding: 60px 0px 0px 0px;
  }
}
:where(:has(.pg_access)) .access-slider h2 {
  text-align: center;
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 400;
  color: #4e4e4e;
}
:where(:has(.pg_access)) .access-slider p {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #7a7a7a;
  margin-bottom: 30px;
}
:where(:has(.pg_access)) .swiper {
  overflow: visible;
  margin-right: 60px;
}
@media (max-width: 767px) {
  :where(:has(.pg_access)) .swiper {
    margin-right: 40px;
  }
}
:where(:has(.pg_access)) .swiper-wrapper {
  display: flex;
  margin-bottom: 60px;
  cursor: pointer;
  padding-left: 20px;
  box-sizing: content-box;
}
@media (max-width: 1024px) {
  :where(:has(.pg_access)) .swiper-wrapper {
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  :where(:has(.pg_access)) .swiper-wrapper {
    margin-bottom: 40px;
    padding-left: 20px;
  }
}
:where(:has(.pg_access)) .swiper-slider {
  border-radius: 4px;
  overflow: hidden;
  width: auto;
  max-width: 346px;
  padding: 10px;
  box-sizing: border-box;
  overflow-x: auto;
}
:where(:has(.pg_access)) .swiper-slide .step-image {
  border-radius: 6px;
  border: 1px solid var(--40, rgba(118, 131, 113, 0.4));
}
:where(:has(.pg_access)) .swiper-slide .step-image figure {
  border-radius: 6px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
:where(:has(.pg_access)) .swiper-slide .step-image img {
  border-radius: 6px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
:where(:has(.pg_access)) .step-number {
  margin: 14px 0 14px;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 5px;
  color: #768371;
}
:where(:has(.pg_access)) .step-description {
  font-size: 16px;
  color: #444;
  font-weight: 400;
  line-height: 1.8;
}
@media (max-width: 767px) {
  :where(:has(.pg_access)) .step-description {
    font-size: 14px;
  }
}
:where(:has(.pg_access)) .el_swiper_prev, :where(:has(.pg_access)) .el_swiper_next {
  background: #fff;
  display: inline-block;
  background-color: #fff;
  aspect-ratio: 1/1;
  position: relative;
  max-width: 60px;
  min-width: 40px;
  width: 10%;
  border-radius: 50%;
  border: 1.074px solid var(--40, rgba(118, 131, 113, 0.4));
  transition: opacity 0.3s ease;
  cursor: pointer;
}
:where(:has(.pg_access)) .el_swiper_prev img, :where(:has(.pg_access)) .el_swiper_next img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35%;
}
:where(:has(.pg_access)) .el_swiper_prev:hover, :where(:has(.pg_access)) .el_swiper_next:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
:where(:has(.pg_access)) .el_swiper_prev {
  margin-right: 10px;
}
:where(:has(.pg_access)) .el_swiper_prev img {
  transform: translate(-50%, -50%) rotate(180deg);
}
@media (max-width: 767px) {
  :where(:has(.pg_access)) .el_swiper_next {
    margin-right: 10px;
  }
}
:where(:has(.pg_access)) .swiper-slide img {
  height: auto;
  width: 100%;
}
:where(:has(.pg_access)) .swiper-slide img {
  height: auto;
  width: 100%;
}
:where(:has(.pg_access)) .swiper-horizontal > .swiper-pagination-progressbar,
:where(:has(.pg_access)) .swiper-pagination-progressbar.swiper-pagination-horizontal {
  height: 4px;
  box-sizing: border-box;
  border-radius: 100px;
}
@media (max-width: 767px) {
  :where(:has(.pg_access)) .swiper-horizontal > .swiper-pagination-progressbar,
  :where(:has(.pg_access)) .swiper-pagination-progressbar.swiper-pagination-horizontal {
    margin-left: 0;
  }
}
:where(:has(.pg_access)) .swiper-pagination-progressbar {
  background-color: #fff;
}
:where(:has(.pg_access)) .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: #768371;
}
:where(:has(.pg_access)) .bl_inner_arrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0px 30px;
  box-sizing: content-box;
  margin: 0 auto;
  align-items: center;
  margin-left: 0;
}
@media (max-width: 767px) {
  :where(:has(.pg_access)) .bl_inner_arrow {
    width: 100%;
    padding: 0px 20px;
  }
}
:where(:has(.pg_access)) .kadomaru {
  width: 100%;
  height: 100%;
  margin-left: 40px;
  border-radius: 50px;
  overflow: hidden;
}
@media (max-width: 767px) {
  :where(:has(.pg_access)) .kadomaru {
    margin-left: 2%;
  }
}
:where(:has(.pg_access)) .swiper-button-disabled {
  opacity: 0.5;
  cursor: default;
}

.un_price {
  margin-inline: auto;
  max-width: 100rem;
}
@media screen and (max-width: 1024px) {
  .un_price {
    flex-direction: column-reverse;
  }
}

.el_pricePosts {
  width: 100%;
  max-width: 100rem;
}
@media screen and (max-width: 1024px) {
  .el_pricePosts {
    width: 100%;
    max-width: none;
  }
}
.el_pricePosts_sub {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 1.6rem;
}
.el_pricePosts_ttl {
  color: #FFF;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  padding: 12px 16px;
  font-family: "Shippori Mincho", serif;
  background: #768371;
  position: relative;
  margin-top: 6rem;
}
@media screen and (max-width: 600px) {
  .el_pricePosts_ttl {
    font-size: 22px;
  }
}
.el_pricePosts_ttl::after {
  position: absolute;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  content: "";
  top: 4px;
  bottom: 4px;
  left: 0px;
  right: 0px;
}
.el_pricePosts_wrap {
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .el_pricePosts_wrap {
    margin-top: 6rem;
  }
}
.el_pricePosts_wrap .el_priceCat_ttl {
  font-size: 32px;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  line-height: 1.5;
  color: #768371;
  margin-bottom: 4rem;
  margin-top: 8rem;
}
.el_pricePosts .js_tab_item ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0 3rem;
  margin: 60px 0;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .el_pricePosts .js_tab_item ul {
    justify-content: space-between;
    gap: 0 1rem;
  }
}
@media screen and (max-width: 600px) {
  .el_pricePosts .js_tab_item ul {
    display: block;
    margin: 40px 0;
  }
}
.el_pricePosts .js_tab_item ul li {
  border-bottom: 1px solid rgba(68, 68, 68, 0.3);
  width: calc(33.33% - 2rem);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .el_pricePosts .js_tab_item ul li {
    width: calc(50% - 1rem);
  }
}
@media screen and (max-width: 600px) {
  .el_pricePosts .js_tab_item ul li {
    width: 100%;
  }
}
.el_pricePosts .js_tab_item ul li a {
  width: 100%;
  display: inline-block;
  padding: 20px 0;
  line-height: 1.5;
  transition: 0.5s;
}
.el_pricePosts .js_tab_item ul li a:hover {
  opacity: 0.5;
  transition: 0.5s;
}
.el_pricePosts .js_tab_item ul li a::after {
  content: "";
  background-image: url("../img/ico/ico_Arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-right: 3%;
}
.el_pricePosts .js_tab_item ul li a p {
  width: 90%;
}

.el_priceTable {
  border-bottom: 1px solid #ccc;
}
.el_priceTable_ttl {
  position: relative;
  margin-top: 4rem;
  padding-left: 1.4rem;
  color: #768371;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  font-family: "Shippori Mincho", serif;
}
.el_priceTable_ttl:before {
  content: "";
  width: 4px;
  height: calc(100% - 4px);
  background: #768371;
  position: absolute;
  top: 2px;
  left: 0;
}
.el_priceTable > .el_priceTable_dd:first-of-type {
  border-top: none;
}
.el_priceTable > .el_priceTable_dd:first-of-type.un_empty {
  margin-top: 0;
}
.el_priceTable_dd {
  border-top: 1px solid #ccc;
  padding-block: 4rem 2rem;
  display: flex;
}
@media screen and (max-width: 767px) {
  .el_priceTable_dd {
    padding-block: 2rem;
    flex-wrap: wrap;
  }
}
.el_priceTable_dd dt {
  font-weight: 500;
  width: 60%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .el_priceTable_dd dt {
    width: 100%;
    margin-bottom: 10px;
    font-weight: 500;
  }
}
.el_priceTable_dd dd {
  width: 10%;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .el_priceTable_dd dd {
    width: 25%;
  }
}
.el_priceTable_dd dd:nth-of-type(1) {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .el_priceTable_dd dd:nth-of-type(1) {
    width: 40%;
  }
}
.el_priceTable_dd dd:nth-of-type(2) {
  width: 15%;
}
@media screen and (max-width: 767px) {
  .el_priceTable_dd dd:nth-of-type(2) {
    width: 35%;
  }
}
.el_priceTable_dd dd.un_price {
  color: var(--color-sub);
  font-weight: 600;
}
.el_priceTable_dd.un_empty {
  border-top: none;
  margin-top: -6rem;
}
@media screen and (max-width: 767px) {
  .el_priceTable_dd.un_empty {
    margin-top: -4rem;
  }
}
.el_priceTable_dd.un_empty dt {
  margin: 0;
}
.el_priceTable_dd.un_empty + .el_priceTable_dd:not(.un_empty) {
  border-top: 1px solid #ccc;
}
.el_priceTable_info {
  color: rgba(68, 68, 68, 0.6);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-top: 2.6rem;
}

.el_tabBtn_item {
  color: rgba(68, 68, 68, 0.4) !important;
  font-family: "Shippori Mincho", serif;
  transition: 0.5s;
}
.el_tabBtn_item:hover {
  color: #768371 !important;
  transition: 0.5s;
}

.el_tabBtn_item.is_active {
  color: #768371 !important;
}

.el_tabBtn_item.is_active:before {
  background: #768371 !important;
}

.el_priceSide {
  width: 24rem;
}
@media screen and (max-width: 1024px) {
  .el_priceSide {
    width: 100%;
    max-width: 24rem;
    margin: 0 auto 60px;
  }
}
.el_priceSide_ttl {
  margin-bottom: 1.4rem;
  color: #6e6e6e;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
.el_sideSelect + .el_priceSide_ttl {
  margin-top: 3.2rem;
}

.pg_menu .el_priceTable_ttl {
  font-size: 1.8rem;
  background: var(--color-white);
  padding: 0.6rem 1rem;
}
.pg_menu .el_priceTable_ttl::before {
  content: none;
}

.bl_faq {
  max-width: 70rem;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .bl_faq {
    max-width: unset;
  }
}

.ly_secFaq:not(:first-child) {
  margin-top: 8rem;
}
.ly_secFaq .el_faqTtl {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 2rem;
  font-family: var(--font-jpTtl);
  color: var(--color-main);
}
@media screen and (max-width: 767px) {
  .ly_secFaq .el_faqTtl {
    font-size: 2.2rem;
  }
}

.el_faqList_wrap {
  border-bottom: 1px solid rgba(118, 131, 113, 0.4);
}
.el_faqList_wrap .js_acc_ttl {
  padding-block: 3rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 0.8rem;
  cursor: pointer;
}
.el_faqList_wrap .el_faqList_en {
  margin-top: 0.2em !important;
  font-size: 2rem;
  line-height: 1;
  font-family: var(--font-enTtl);
}
@media screen and (max-width: 767px) {
  .el_faqList_wrap .js_acc_ttl {
    padding-block: 2.4rem;
  }
  .el_faqList_wrap .el_faqList_en {
    margin-top: 0.1em !important;
  }
}
.el_faqList_wrap .js_acc_cont {
  display: none;
  padding-bottom: 3rem;
}
.el_faqList_wrap .js_acc_cont:not(:last-child) {
  margin-bottom: 3rem;
}
.el_faqList_wrap .js_acc_cont .el_faqList_inner {
  display: flex;
  align-items: start;
  gap: 0.8rem;
}
@media screen and (min-width: 426px) {
  .el_faqList_wrap .js_acc_cont .un_br {
    display: none;
  }
}

.js_acc_ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  cursor: pointer;
}
.js_acc_ttl .el_faqList_ico {
  flex-shrink: 0;
  width: 3rem;
  aspect-ratio: 1/1;
  background: var(--color-main);
  border-radius: 50%;
  position: relative;
}
.js_acc_ttl .el_faqList_ico span {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 0.6rem);
}
.js_acc_ttl .el_faqList_ico span::before, .js_acc_ttl .el_faqList_ico span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.2rem;
  height: 1px;
  background: var(--color-white);
  transition: 0.3s;
}
.js_acc_ttl .el_faqList_ico span::after {
  rotate: -90deg;
}
@media screen and (max-width: 767px) {
  .js_acc_ttl .el_faqList_ico {
    width: 2.6rem;
  }
}
.js_acc_ttl.is_active .el_faqList_ico span::after {
  rotate: 0deg;
}

.el_tabCont {
  margin-top: 4rem;
}

.el_menuList {
  align-items: flex-start;
  gap: 3.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
}
.el_menuList .el_menuList_item {
  width: auto;
}
.el_menuList .el_menuList_item::after {
  content: none;
}
@media (hover: hover) {
  .el_menuList .el_menuList_item {
    transition: 0.5s;
    cursor: pointer;
  }
}
@media (hover: hover) and (hover: hover) and (pointer: fine) {
  .el_menuList .el_menuList_item:hover {
    opacity: 0.5;
  }
}
.el_menuList .el_menuList_item a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.4rem;
  line-height: 1.5;
}
.el_menuList .el_menuList_item a::after {
  position: unset;
  transform: unset;
  padding-right: unset;
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  -webkit-mask: url(../img/ico/ico_Arrow_right.svg) no-repeat center center/contain;
          mask: url(../img/ico/ico_Arrow_right.svg) no-repeat center center/contain;
  background: currentColor;
}
@media screen and (max-width: 767px) {
  .el_menuList {
    gap: 2rem;
  }
}

.un_no_parent .el_menuList_item {
  border-radius: 6px;
  border: 1px solid rgba(68, 68, 68, 0.3);
  background: #FFF;
}
.un_no_parent .el_menuList_item a {
  width: 100%;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.4rem;
}
.un_no_parent .el_menuList_item a::after {
  position: unset;
  transform: unset;
  padding-right: unset;
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  -webkit-mask: url(../img/ico/ico_Arrow_right.svg) no-repeat center center/contain;
          mask: url(../img/ico/ico_Arrow_right.svg) no-repeat center center/contain;
  background: currentColor;
}

.un_parent masonry-layout {
  display: grid;
  gap: 15px 20px;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 900px) {
  .un_parent masonry-layout {
    --_column-min-size: 400px;
    contain: content;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--_column-min-size), 100%), 1fr));
  }
  .un_parent masonry-layout:defined { /* JS がロードされ ShadowDOM が ready になると true */
    grid-auto-rows: 0; /* 行の高さを 0 に → JS で行spanを計算 */
  }
  .un_parent masonry-layout > * { /* wrapper div (JSで付与) */
    grid-row-end: var(--_row-end); /* 動的に span 付与 */
  }
}
.un_parent .el_menuList_catWrap {
  border-radius: 6px;
  border: 1px solid rgba(68, 68, 68, 0.3);
  background: #FFF;
}
.un_parent .el_menuList_catWrap .el_menuList_cat_ttl {
  font-size: 3.1rem;
  font-weight: 600;
  font-family: var(--font-jpTtl);
  color: var(--color-main);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0 2rem;
}
.un_parent .el_menuList_catWrap .el_menuList_cat_ttl .el_menuList_cat_ttl_en {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: var(--font-enTtl);
  text-transform: uppercase;
}
@media screen and (max-width: 899px) {
  .un_parent .el_menuList_catWrap .el_menuList_cat_ttl {
    font-size: 2.6rem;
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .un_parent .el_menuList_catWrap .el_menuList_cat_ttl {
    font-size: 2.2rem;
  }
}
.un_parent .el_menuList_catWrap .el_menuList {
  align-items: end;
  padding: 0 4rem 4rem;
  grid-template-columns: repeat(auto-fill, minmax(min(215px, 100%), 1fr));
  margin-top: -1.6rem;
  gap: 2rem 3rem;
}
.un_parent .el_menuList_catWrap .el_menuList a {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(68, 68, 68, 0.3);
}
@media screen and (min-width: 900px) {
  .un_parent .el_menuList_catWrap .el_menuList {
    display: grid !important;
  }
}
@media screen and (max-width: 899px) {
  .un_parent .el_menuList_catWrap .el_menuList {
    padding: 0 2.4rem 2.4rem;
    margin-top: -2rem;
    display: none;
  }
  .un_parent .el_menuList_catWrap .el_menuList a {
    padding-block: 2rem 1.2rem;
  }
}
.un_parent .el_menuList_catWrap .js_acc_ttl {
  padding: 4rem;
  pointer-events: none;
}
.un_parent .el_menuList_catWrap .js_acc_ttl .el_faqList_ico {
  display: none;
}
@media screen and (max-width: 899px) {
  .un_parent .el_menuList_catWrap .js_acc_ttl {
    pointer-events: auto;
    padding: 2.4rem;
  }
  .un_parent .el_menuList_catWrap .js_acc_ttl .el_faqList_ico {
    display: block;
  }
}

.ly_menu .el_tabBtn {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.ly_menu .el_tabBtn_item {
  color: rgba(255, 255, 255, 0.6) !important;
  font-family: var(--font-jpTtl);
}
@media (hover: hover) {
  .ly_menu .el_tabBtn_item:hover {
    color: #fff !important;
  }
}
.ly_menu .el_tabBtn_item.is_active {
  color: #fff !important;
}
.ly_menu .el_tabBtn_item.is_active::before {
  background: #fff !important;
}

.el_menuTop {
  max-width: unset;
  margin-block: 6rem;
}

.pg_menu .el_pageTtlPost_top {
  padding-top: 20rem;
  height: unset;
  display: block;
  padding-block: 20rem 8rem;
  border-bottom: 1px solid rgba(118, 131, 113, 0.4);
  align-items: flex-end;
}
.pg_menu .el_pageTtlPost_top .el_pageTtlPost_inner {
  height: unset;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 6rem 4rem;
}
.pg_menu .el_pageTtlPost_top .el_pageTtlPost_ttl .el_pageTtlPost_ja {
  font-size: 4.4rem;
}
.pg_menu .el_pageTtlPost_top .el_menuFv_left {
  width: 50%;
  max-width: 440px;
  flex-grow: 1;
}
.pg_menu .el_pageTtlPost_top .el_menuFv_left .el_menuFv_price {
  margin-top: 5rem;
  background: #FFF;
  padding: 2rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(118, 131, 113, 0.4);
}
.pg_menu .el_pageTtlPost_top .el_menuFv_left .el_menuFv_price dl {
  font-family: var(--font-jpTtl);
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 1.6rem;
  line-height: 1;
}
.pg_menu .el_pageTtlPost_top .el_menuFv_left .el_menuFv_price dl dt {
  font-weight: 600;
  text-align: center;
  padding: 0.6rem 1rem 0.7rem;
  border-radius: 0.6rem;
  margin-top: 0.4rem;
}
.pg_menu .el_pageTtlPost_top .el_menuFv_left .el_menuFv_price dl dd {
  font-size: 2.8rem;
}
@media screen and (max-width: 600px) {
  .pg_menu .el_pageTtlPost_top .el_menuFv_left .el_menuFv_price dl {
    grid-template-columns: auto 1fr;
  }
  .pg_menu .el_pageTtlPost_top .el_menuFv_left .el_menuFv_price dl dt {
    font-size: 1.4rem;
  }
  .pg_menu .el_pageTtlPost_top .el_menuFv_left .el_menuFv_price dl dd {
    font-size: 2.4rem;
  }
}
.pg_menu .el_pageTtlPost_top .el_menuFv_left .el_menuFv_price .un_label_normal {
  border: 1px solid var(--color-main);
  color: var(--color-main);
  background: var(--color-white);
}
.pg_menu .el_pageTtlPost_top .el_menuFv_left .el_menuFv_price .un_label_monitor {
  color: var(--color-white);
  background: var(--color-main);
}
.pg_menu .el_pageTtlPost_top .el_menuFv_left .el_menuFv_price .un_label_first {
  color: var(--color-white);
  background: var(--color-sub);
}
.pg_menu .el_pageTtlPost_top .el_menuFv_img {
  max-width: 58rem;
}
@media screen and (max-width: 767px) {
  .pg_menu .el_pageTtlPost_top .el_menuFv_img {
    max-width: unset;
  }
}
.pg_menu .el_pageTtlPost_top .el_menuFv_img .el_menuFv_img_figure {
  border: 1px solid rgba(118, 131, 113, 0.4);
  border-radius: 0.6rem;
  overflow: hidden;
  aspect-ratio: 57.711/42.289;
}
.pg_menu .el_pageTtlPost_top .el_menuFv_img .el_menuFv_img_figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .pg_menu .el_pageTtlPost_top .el_pageTtlPost_inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .pg_menu .el_pageTtlPost_top .el_pageTtlPost_ttl .el_pageTtlPost_ja {
    font-size: 3rem;
  }
  .pg_menu .el_pageTtlPost_top .el_menuFv_left {
    width: 100%;
    max-width: unset;
  }
  .pg_menu .el_pageTtlPost_top .el_menuFv_left .el_menuFv_price {
    margin-top: 3rem;
  }
  .pg_menu .el_pageTtlPost_top .el_menuFv_img {
    max-width: 100%;
  }
}
.pg_menu .bl_flowList {
  margin-top: 2.4rem;
}
.pg_menu .el_flowCard {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
}
.pg_menu .el_flowCard:not(:first-child) {
  margin-top: 2.4rem;
}
.pg_menu .el_flowCard .el_flowCard_num {
  aspect-ratio: 1/1;
  width: 4rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-main);
  color: var(--color-white);
  font-family: var(--font-enTtl);
  font-size: 1.8rem;
  line-height: 1;
}
.pg_menu .el_flowCard .el_flowCard_ttl {
  font-size: 2rem;
  font-weight: 500;
  font-family: var(--font-jpTtl);
}
.pg_menu .el_flowCard .el_flowCard_info {
  margin-top: 1.2rem;
}

.el_pickupList li:first-of-type .el_pickupList_item {
  padding-top: 0;
}
.el_pickupList .el_pickupList_item {
  display: grid;
  grid-template-columns: clamp(0px, 30%, 19rem) 1fr;
  gap: min(6%, 4rem);
  padding-block: 4rem;
  border-bottom: 1px solid rgba(118, 131, 113, 0.4);
}
.el_pickupList .el_pickupList_item .el_pickupList_thmb {
  aspect-ratio: 4/5;
  width: 100%;
  border: 1px solid rgba(118, 131, 113, 0.4);
  border-radius: 0.6rem;
  overflow: hidden;
}
.el_pickupList .el_pickupList_item .el_pickupList_thmb img {
  transition: 0.3s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.el_pickupList .el_pickupList_item .el_pickupList_textWrap {
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.el_pickupList .el_pickupList_item .el_pickupList_ttl {
  font-size: 2rem;
  font-family: var(--font-jpTtl);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 4rem;
}
@media (hover: hover) and (pointer: fine) {
  .el_pickupList .el_pickupList_item:hover .el_pickupList_thmb img {
    scale: 1.05;
  }
}
@media screen and (max-width: 767px) {
  .el_pickupList .el_pickupList_item .el_pickupList_ttl {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }
}

.pg_pickup .el_pickup_thmb {
  max-width: 50rem;
  aspect-ratio: 4/5;
  width: max(70%, 30rem);
  margin-inline: auto;
  overflow: hidden;
  border-radius: 0.6rem;
  border: 1px solid rgba(118, 131, 113, 0.4);
}
.pg_pickup .el_pickup_thmb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pg_pickup .el_pickup_thmb + * {
  margin-top: 6rem;
}
.pg_pickup .bl_reserve {
  margin-top: 6rem;
  max-width: 60rem;
  margin-inline: auto;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  border: 1px solid rgba(118, 131, 113, 0.4);
  border-radius: 0.6rem;
}
.pg_pickup .bl_reserve .el_reserve_ttl {
  text-align: center;
  font-size: 1.6rem;
  font-family: var(--font-jpTtl);
  line-height: 1.5;
  padding-bottom: 0.6rem;
  border-bottom: 1px dashed var(--color-main);
}
@media screen and (max-width: 767px) {
  .pg_pickup .bl_reserve {
    padding: 3rem;
  }
}
@media screen and (max-width: 374px) {
  .pg_pickup .el_pickup_thmb {
    width: min(100%, 30rem);
  }
}

.un_scroll::-webkit-scrollbar {
  display: none;
}

.el_caseCard {
  border: 1px solid rgba(118, 131, 113, 0.4);
  background: var(--color-white);
  border-radius: 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.el_caseCard article {
  display: contents;
}
.el_caseCard a {
  padding: 3rem;
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .el_caseCard a:hover .el_caseCard_thmb img {
    scale: 1.05;
  }
}
.el_caseCard .el_caseCard_thmb_wrap {
  position: relative;
}
.el_caseCard .el_caseCard_thmb_wrap::after {
  content: "";
  position: absolute;
  bottom: -0.1rem;
  right: -0.1rem;
  width: min(6rem, 24%);
  aspect-ratio: 1/1;
  background: url(../img/common/case_thumb.webp) no-repeat center center/contain;
  z-index: 1;
}
.el_caseCard .el_caseCard_thmb {
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 0.6rem;
  overflow: hidden;
  position: relative;
}
.el_caseCard .el_caseCard_thmb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.el_caseCard .el_caseCard_ttl {
  font-size: 2rem;
  margin-top: 2rem;
  font-weight: 600;
  font-family: var(--font-jpTtl);
  line-height: 1.5;
}
.el_caseCard .el_text_key {
  margin-top: 0.6rem;
}
.el_caseCard .bl_casePopup {
  padding: 3rem;
  padding-top: 0 !important;
  position: relative;
}
.el_caseCard .bl_casePopup .el_casePopup_btn {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
  color: var(--color-main);
  background: transparent;
  font-weight: 600;
  font-family: var(--font-jpTtl);
  font-size: 1.2rem;
  border: none;
  border-top: 1px solid rgba(118, 131, 113, 0.4);
  border-bottom: 1px solid rgba(118, 131, 113, 0.4);
  text-align: start;
  transition: 0.3s;
}
.el_caseCard .bl_casePopup .el_casePopup_btn .el_casePopup_btn_text {
  display: block;
}
.el_caseCard .bl_casePopup .el_casePopup_btn .el_icon {
  width: 2rem;
  display: block;
}
.el_caseCard .bl_casePopup .el_casePopup_btn.is_active {
  background: var(--color-main);
  color: var(--color-white);
}
@media (hover: hover) and (pointer: fine) {
  .el_caseCard .bl_casePopup .el_casePopup_btn:hover {
    background: var(--color-main);
    color: var(--color-white);
  }
}
.el_caseCard .bl_casePopup .el_caseList_popup {
  position: absolute;
  z-index: 10;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  width: 120%;
  max-width: 52rem;
  max-height: min(500px, 75vh);
  padding: 1.6rem;
  font-size: 1.4rem;
  overflow-y: scroll;
  visibility: hidden;
  transition: 0.3s;
  border-radius: 0.6rem;
  border: 1px solid rgba(118, 131, 113, 0.4);
  background: var(--color-white);
}
.el_caseCard .bl_casePopup .el_caseList_popup.is_active {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .el_caseCard .bl_casePopup .el_caseList_popup {
    width: 110%;
    max-width: 95vw;
  }
}
.el_caseCard .bl_casePopup .el_caseList_popup .el_caseList_popup_list dt span, .el_caseCard .bl_casePopup .el_caseList_popup .el_caseList_popup_list dd span {
  font-size: 1.2rem;
  line-height: 1.5;
  color: rgba(68, 68, 68, 0.6);
  margin-top: 0.8rem;
  display: block;
}
.el_caseCard .bl_casePopup .el_caseList_popup .el_caseList_popup_list dt {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-main);
  border-top: 1px solid rgba(118, 131, 113, 0.4);
  padding-top: 1rem;
}
.el_caseCard .bl_casePopup .el_caseList_popup .el_caseList_popup_list dt:first-child {
  padding-top: 0;
  border-top: none;
}
.el_caseCard .bl_casePopup .el_caseList_popup .el_caseList_popup_list dd {
  padding-block: 0.4rem 1rem;
}
@media screen and (max-width: 475px) {
  .el_caseCard {
    position: relative;
  }
  .el_caseCard .bl_casePopup {
    position: unset;
  }
  .el_caseCard .bl_casePopup .el_caseList_popup {
    bottom: unset;
    top: 0;
    height: calc(100% - 8rem);
    width: 100%;
    max-width: 100%;
    border: none;
  }
}

.pg_menu .bl_caseSlide_wrap {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .pg_menu .bl_caseSlide_wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}
.pg_menu .bl_caseSlide {
  display: grid;
  gap: 3%;
  grid-template-columns: repeat(3, 1fr);
}
.pg_menu .el_caseCard a {
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .pg_menu .bl_caseSlide {
    padding-top: 15rem;
    margin-top: -15rem;
    gap: 2rem;
    overflow: auto;
  }
  .pg_menu .el_caseCard {
    min-width: min(28rem, 80vw);
  }
  .pg_menu .el_caseCard:first-child {
    margin-left: 2rem;
  }
  .pg_menu .el_caseCard:last-child {
    margin-right: 2rem;
  }
  .pg_menu .el_caseCard a {
    padding: 2rem;
  }
}
.pg_menu .bl_casePopup {
  padding: 2rem;
}
.pg_menu .el_caseCard_ttl {
  font-size: 1.4rem;
}

.pg_case .bl_fv_caseSlide {
  overflow: auto;
  display: flex;
  justify-content: center;
  gap: max(4.5%, 2rem);
}
.pg_case .bl_fv_caseSlide .bl_fv_caseSlide_item {
  width: calc((100% - max(4.5%, 2rem)) / 3);
}
.pg_case .bl_fv_caseSlide .bl_fv_caseSlide_item .bl_fv_caseSlide_thmb {
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 0.6rem;
  overflow: hidden;
}
.pg_case .bl_fv_caseSlide .bl_fv_caseSlide_item .bl_fv_caseSlide_thmb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .pg_case .bl_fv_caseSlide {
    justify-content: flex-start;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
  .pg_case .bl_fv_caseSlide .bl_fv_caseSlide_item {
    min-width: min(34rem, 80vw);
  }
  .pg_case .bl_fv_caseSlide .bl_fv_caseSlide_item:first-child {
    margin-left: 2rem;
  }
  .pg_case .bl_fv_caseSlide .bl_fv_caseSlide_item:last-child {
    margin-right: 2rem;
  }
}
.pg_case .bl_caseInfo {
  margin-top: 8rem;
  max-width: 80rem;
  margin-inline: auto;
}
.pg_case .bl_caseInfo .bl_caseInfo_list {
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: space-between;
  -moz-column-gap: 8rem;
       column-gap: 8rem;
}
.pg_case .bl_caseInfo .bl_caseInfo_list .bl_caseInfo_item {
  padding-block: 3rem;
  border-bottom: 1px solid rgba(118, 131, 113, 0.4);
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
}
.pg_case .bl_caseInfo .bl_caseInfo_list .bl_caseInfo_item dt {
  font-weight: 500;
  color: var(--color-main);
}
.pg_case .bl_caseInfo .bl_caseInfo_list .bl_caseInfo_item dd span {
  display: block;
  font-size: 1.4rem;
  color: rgba(68, 68, 68, 0.6);
  margin-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .pg_case .bl_caseInfo .bl_caseInfo_list .bl_caseInfo_item {
    padding-block: 2rem;
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 0.4rem;
  }
  .pg_case .bl_caseInfo .bl_caseInfo_list .bl_caseInfo_item dd span {
    font-size: 1.2rem;
  }
}
.pg_case .bl_caseInfo .bl_caseInfo_link {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .pg_case .bl_caseInfo {
    margin-top: 2rem;
  }
}
.pg_case .bl_case_related {
  border-top: 1px solid rgba(118, 131, 113, 0.4);
  padding-top: 8rem;
  margin-top: 10rem;
}
.pg_case .bl_case_related .el_reserve_ttl {
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 4rem;
  font-family: var(--font-jpTtl);
  border-bottom: 1px dashed rgba(118, 131, 113, 0.4);
  padding-bottom: 0.6rem;
}
.pg_case .bl_case_related .bl_caseList {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .pg_case .bl_case_related .bl_caseList {
    grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  }
}
@media screen and (max-width: 374px) {
  .pg_case .bl_case_related .el_reserve_ttl {
    font-size: 2rem;
  }
}
.pg_case .ly_sec_back {
  border-top: 1px solid rgba(118, 131, 113, 0.4);
  padding-top: 6rem;
  margin-top: 8rem;
}
.pg_case .ly_sec_back a {
  margin-inline: auto;
}

.pg_case .el_search_wrap {
  margin-bottom: 6rem;
  padding: 4rem;
  border: 1px solid rgba(118, 131, 113, 0.4);
  border-radius: 0.6rem;
  font-family: var(--font-jpTtl);
  border-top: none;
  position: relative;
}
.pg_case .el_search_wrap .el_search_ttl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  font-weight: 500;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}
.pg_case .el_search_wrap .el_search_ttl::before, .pg_case .el_search_wrap .el_search_ttl::after {
  content: "";
  display: block;
  height: 0.5lh;
  border-top: 1px solid rgba(118, 131, 113, 0.4);
}
.pg_case .el_search_wrap .el_search_ttl::before {
  width: 3rem;
  border-radius: 0.6rem 0;
}
.pg_case .el_search_wrap .el_search_ttl::after {
  width: 1px;
  flex-grow: 1;
  border-radius: 0 0.6rem;
}
@media screen and (max-width: 767px) {
  .pg_case .el_search_wrap .el_search_ttl::before, .pg_case .el_search_wrap .el_search_ttl::after {
    width: 1px;
    flex-grow: 1;
  }
}
.pg_case .el_search_wrap .el_search {
  display: grid;
  align-items: end;
  gap: 2rem 2.6rem;
  grid-template-columns: repeat(3, minmax(0, 240px)) auto;
}
.pg_case .el_search_wrap .el_search .el_select_box {
  position: relative;
}
.pg_case .el_search_wrap .el_search .el_select_box .el_select_ttl {
  font-family: var(--font-jpTtl);
  margin-bottom: 0.8rem;
}
.pg_case .el_search_wrap .el_search .el_select_box .el_select_ttl select {
  font-family: var(--font-jp);
}
.pg_case .el_search_wrap .el_search .el_select_box::before {
  content: "";
  position: absolute;
  bottom: 1.7rem;
  right: 1.4rem;
  aspect-ratio: 1/1;
  width: 1.2rem;
  background: url(../img/ico/ico_chevron.svg) no-repeat center center/contain;
}
.pg_case .el_search_wrap .el_search select {
  width: 100%;
  cursor: pointer;
  padding: 1.4rem;
  padding-right: 2.6rem;
  border: 1px solid rgba(118, 131, 113, 0.4);
  border-radius: 0.6rem;
  font-size: 1.4rem;
  background: var(--color-white);
  color: rgba(68, 68, 68, 0.6);
}
.pg_case .el_search_wrap .el_search .el_search_btn {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .pg_case .el_search_wrap {
    padding: 3rem;
  }
  .pg_case .el_search_wrap .el_search {
    grid-template-columns: 1fr;
  }
  .pg_case .el_search_wrap .el_search .el_search_btn {
    margin-inline: auto;
    margin-top: 4rem;
  }
}
.pg_case .el_caseCard_ttl {
  margin-top: 1.6rem;
}

.bl_caseList {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(210px, 100%), 1fr));
  gap: 4.8rem 3.2rem;
}
.bl_caseList .el_caseCard a,
.bl_caseList .el_caseCard .bl_casePopup {
  padding: 2.4rem;
}
@media screen and (max-width: 1024px) {
  .bl_caseList {
    gap: 4.6vw 3.1vw;
  }
  .bl_caseList .el_caseCard a,
  .bl_caseList .el_caseCard .bl_casePopup {
    padding: min(2.4rem, 10%);
  }
}
.el_columnList_item {
  display: contents;
}
.el_columnList_item article {
  display: contents;
}
@media (hover: hover) and (pointer: fine) {
  .el_columnList_item a:hover .el_columnList_thmb img {
    scale: 1.05;
  }
}
.el_columnList_item .el_columnList_thmb {
  aspect-ratio: 6/4;
  width: 100%;
  border: 1px solid rgba(118, 131, 113, 0.4);
  border-radius: 0.6rem;
  overflow: hidden;
  margin-bottom: 3rem;
}
.el_columnList_item .el_columnList_thmb img {
  transition: 0.3s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .el_columnList_item .el_columnList_thmb {
    margin-bottom: 2rem;
  }
}
.el_columnList_item .el_text_key {
  margin-bottom: 0.5rem;
}
.el_columnList_item .el_columnList_ttl {
  font-size: 2rem;
  font-family: var(--font-jpTtl);
  font-weight: 600;
  line-height: 1.5;
  transition: 0.3s;
}
.el_columnList_item .el_columnList_ttl time {
  font-weight: 400;
  display: block;
  font-size: 1.4rem;
  font-family: var(--font-en);
  line-height: 1;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .el_columnList_item .el_columnList_ttl {
    font-size: 1.6rem;
  }
}

.bl_column {
  max-width: 74rem;
  width: 100%;
}
.bl_column .el_columnList {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
}
@media screen and (max-width: 1024px) {
  .bl_column {
    max-width: unset;
  }
  .bl_column .el_columnList {
    gap: 8vw 5%;
  }
}

.pg_column .bl_column_related {
  margin-top: 6rem;
}
@media screen and (max-width: 1024px) {
  .pg_column .ly_2col, .pg_column .ly_all2col {
    display: flex;
  }
  .pg_column .ly_2col .bl_side, .pg_column .ly_all2col .bl_side {
    display: contents;
  }
  .pg_column .ly_2col .bl_side .el_toc, .pg_column .ly_all2col .bl_side .el_toc {
    width: 100%;
  }
  .pg_column .ly_2col .bl_side .el_toc:has(ul.un_key), .pg_column .ly_all2col .bl_side .el_toc:has(ul.un_key) {
    order: 3;
  }
}

.bl_column_related .el_columnList_single {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: min(40%, 13rem) 1fr;
}
.bl_column_related .el_columnList_single .el_columnList_item {
  display: contents;
}
.bl_column_related .el_columnList_single .el_columnList_item a {
  display: grid;
  gap: 2rem;
  grid-template-columns: subgrid;
  grid-column: span 2;
  border-bottom: 1px solid rgba(118, 131, 113, 0.4);
  padding-block: 1.6rem;
  align-items: center;
}
.bl_column_related .el_columnList_single .el_columnList_item a .el_columnList_thmb {
  margin-bottom: 0;
}
.bl_column_related .el_columnList_single .el_columnList_item a .el_columnList_ttl {
  font-size: 1.4rem;
  font-family: var(--font-jpTtl);
  font-weight: 600;
  line-height: 1.5;
}
@media (hover: hover) and (pointer: fine) {
  .bl_column_related .el_columnList_single .el_columnList_item a:hover .el_columnList_thmb img {
    scale: 1.05;
  }
}

.el_newsList a {
  border-bottom: 1px solid rgba(118, 131, 113, 0.4);
  display: block;
  padding-block: 2.4rem;
  transition: 0.5s;
  cursor: pointer;
}
.el_newsList a .el_newsList_date {
  margin-top: 0.8rem;
  font-size: 1.8rem;
  font-family: var(--font-en);
}
@media (hover: hover) and (pointer: fine) {
  .el_newsList a:hover {
    opacity: 0.5;
  }
}
@media screen and (min-width: 769px) {
  .el_newsList {
    display: grid;
    grid-template-columns: auto 1fr;
  }
  .el_newsList .el_newsList_item {
    display: contents;
  }
  .el_newsList a {
    display: grid;
    gap: 4rem;
    padding-block: 2.8rem;
    grid-template-columns: subgrid;
    grid-column: span 2;
  }
  .el_newsList a .el_newsList_date {
    margin-top: 0;
  }
}

.el_news_posts {
  padding-block: 12rem 20rem;
}

/* ===================================
404
=================================== */
.pg_404 .el_innerContent {
  text-align: center;
}
.pg_404 .el_innerContent .el_404_ttl {
  color: var(--color-main);
  font-family: var(--font-jpTtl);
  margin-bottom: 5rem;
  font-weight: 500;
  font-size: 3.2rem;
}
@media screen and (max-width: 600px) {
  .pg_404 .el_innerContent .el_404_ttl {
    font-size: 2.4rem;
  }
  .pg_404 .el_innerContent .el_404_txt {
    text-align: left;
  }
}

@media screen and (min-width: 767.98px) {
  .ly_all2col {
    flex-direction: row;
  }
}

.el_download_btn::after,
.el_gohome_btn::after,
.el_entry_btn::after {
  content: none;
}

.bl_gohome_btn {
  margin: 6rem auto 0;
  width: 28rem;
}

.el_gohome_btn {
  display: flex;
  width: 100%;
  padding: 20px 32px;
  text-align: center;
}

.ly_recruitpage {
  margin-block: 8rem 16rem;
}
.ly_recruitpage .bl_inner {
  max-width: 112rem;
  margin-inline: auto;
  padding-inline: 2rem;
}
.ly_recruitpage .bl_intro {
  padding: 0;
  box-sizing: content-box;
}
.ly_recruitpage .bl_intro .el_secTtl {
  margin-bottom: 5rem;
  padding-bottom: 0;
}
.ly_recruitpage .bl_intro .el_secTtl_ja {
  color: var(--color-main);
  font-family: var(--font-jpTtl);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  letter-spacing: -0.192rem;
}
.ly_recruitpage .bl_intro .el_secTtl_en {
  font-family: var(--font-enTtl);
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: center;
  margin-top: 1.4rem;
}
.ly_recruitpage .bl_intro .bl_intro_img {
  height: 54rem;
  width: 100%;
  max-width: 144rem;
  margin-inline: auto;
}
.ly_recruitpage .bl_intro .el_intro_img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ly_recruitpage .el_txt {
  color: var(--color-black);
  font-family: var(--font-jp);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  line-height: 2.2;
  letter-spacing: -0.064rem;
  text-align: center;
  margin-bottom: 8rem;
}
.ly_recruitpage .bl_ideal,
.ly_recruitpage .bl_requirements {
  margin-top: 8rem;
}
.ly_recruitpage .ly_2col, .ly_recruitpage .ly_all2col {
  flex-direction: column;
  gap: 0;
}
.ly_recruitpage .ly_2col .bl_title_l, .ly_recruitpage .ly_all2col .bl_title_l {
  flex: 1;
  width: 100%;
  margin-bottom: 6rem;
  text-align: center;
}
.ly_recruitpage .ly_2col .bl_contents_r, .ly_recruitpage .ly_all2col .bl_contents_r {
  flex: 1;
  text-align: left;
  width: 100%;
}
.ly_recruitpage .ly_2col .el_list, .ly_recruitpage .ly_all2col .el_list {
  border-radius: 0.6rem;
  border: 1px solid rgba(118, 131, 113, 0.4);
  padding: 3rem;
  background: #fff;
}
.ly_recruitpage .ly_2col .el_list li, .ly_recruitpage .ly_all2col .el_list li {
  font-family: var(--font-jpTtl);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: -0.012rem;
  border-bottom: 1px dashed var(--color-main);
  padding-block: 10px;
  color: var(--color-black);
  display: flex;
  align-items: center;
}
.ly_recruitpage .ly_2col .el_list li:first-child, .ly_recruitpage .ly_all2col .el_list li:first-child {
  padding-top: 0;
}
.ly_recruitpage .ly_2col .el_list li:before, .ly_recruitpage .ly_all2col .el_list li:before {
  display: block;
  content: url("../img/recruit/icon_checked.svg");
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.ly_recruitpage .el_secTtl {
  margin: 0 auto;
  padding: 0;
}
.ly_recruitpage .el_secTtl_en {
  font-family: var(--font-enTtl);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
.ly_recruitpage .el_secTtl_jp {
  font-family: var(--font-jpTtl);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: -0.0128rem;
  margin-top: 1.4rem;
}
.ly_recruitpage .accordion_item {
  padding: 0;
  border-top: 1px solid rgba(118, 131, 113, 0.4);
}
.ly_recruitpage .accordion_item:last-child {
  border-bottom: 1px solid rgba(118, 131, 113, 0.4);
}
.ly_recruitpage .bl_acc_title {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 1.4rem;
       column-gap: 1.4rem;
  cursor: pointer;
}
.ly_recruitpage .el_job_title {
  color: var(--color-main);
  font-family: var(--font-jpTtl);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.016rem;
  padding: 2.4rem 0;
}
.ly_recruitpage .el_accordion_ico {
  width: 3rem;
  height: 3rem;
  aspect-ratio: 1/1;
  background: var(--color-main);
  border-radius: 50%;
  position: relative;
  display: block;
}
.ly_recruitpage .el_accordion_ico span {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.ly_recruitpage .el_accordion_ico span::before, .ly_recruitpage .el_accordion_ico span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.2rem;
  height: 1px;
  background: var(--color-white);
  transition: 0.3s;
  transform: translate(-50%, -50%);
}
.ly_recruitpage .el_accordion_ico:not(.open) span::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.ly_recruitpage .accordion_content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}
.ly_recruitpage .accordion_content.open {
  margin-bottom: 2.4rem;
  max-height: 3000px;
}
.ly_recruitpage .bl_job_detail_item {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  margin-bottom: 2.4rem;
}
.ly_recruitpage .el_job_detail_item_tarm {
  color: var(--color-black);
  font-family: var(--font-jp);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -0.064rem;
}
.ly_recruitpage .el_job_detail_item_desc {
  color: var(--color-black);
  font-family: var(--font-jp);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.056rem;
}
.ly_recruitpage .el_job_detail_item_desc li {
  padding-left: 1em;
}
.ly_recruitpage .el_job_detail_item_desc li::before {
  content: "・";
  display: inline-block;
  text-indent: -1em;
}
.ly_recruitpage .el_job_detail_item_desc ul + p {
  padding-top: 1.4rem;
  line-height: 1.8;
}
.ly_recruitpage .el_job_detail_item_desc em {
  color: rgba(68, 68, 68, 0.6);
}
.ly_recruitpage .note {
  color: rgba(68, 68, 68, 0.6);
}
.ly_recruitpage .el_entry_btn {
  transition: 0.5s;
  cursor: pointer;
  width: 100%;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.04rem;
  margin-top: 6rem;
}
@media (hover: hover) and (pointer: fine) {
  .ly_recruitpage .el_entry_btn:hover {
    opacity: 0.5;
  }
}
@media screen and (min-width: 767.98px) {
  .ly_recruitpage {
    margin-block: 12rem 20rem;
  }
  .ly_recruitpage .bl_inner {
    padding-inline: 4rem;
  }
  .ly_recruitpage .bl_intro .el_secTtl_ja {
    font-size: 2.6rem;
    letter-spacing: -0.208rem;
  }
  .ly_recruitpage .bl_intro .bl_intro_img {
    height: 46rem;
  }
  .ly_recruitpage .el_txt {
    font-size: 1.6rem;
  }
  .ly_recruitpage .bl_ideal,
  .ly_recruitpage .bl_requirements {
    margin-top: 16rem;
  }
  .ly_recruitpage .ly_2col, .ly_recruitpage .ly_all2col {
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
  }
  .ly_recruitpage .ly_2col .bl_title_l, .ly_recruitpage .ly_all2col .bl_title_l {
    flex: 1 1 40rem;
    text-align: left;
  }
  .ly_recruitpage .ly_2col .bl_contents_r, .ly_recruitpage .ly_all2col .bl_contents_r {
    flex: 1 1 60rem;
  }
  .ly_recruitpage .ly_2col .el_list li, .ly_recruitpage .ly_all2col .el_list li {
    font-size: 1.6rem;
  }
  .ly_recruitpage .ly_2col .el_list li:before, .ly_recruitpage .ly_all2col .el_list li:before {
    vertical-align: -0.5rem;
  }
  .ly_recruitpage .el_secTtl_en {
    font-size: 3.4rem;
    text-align: left;
  }
  .ly_recruitpage .el_secTtl_jp {
    margin-top: 2rem;
    text-align: left;
  }
  .ly_recruitpage .el_job_title {
    font-size: 2.4rem;
    padding: 3rem 0;
  }
  .ly_recruitpage .note {
    padding-top: 1.6rem;
  }
  .ly_recruitpage .accordion_content.open {
    padding-top: 2rem;
  }
  .ly_recruitpage .bl_job_detail_item {
    flex-direction: row;
    margin-bottom: 3rem;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
  .ly_recruitpage .el_job_detail_item_tarm {
    width: 13rem;
    flex: 0 0 13rem;
  }
  .ly_recruitpage .el_job_detail_item_desc {
    font-size: 1.6rem;
    letter-spacing: -0.056rem;
    flex: 1;
  }
  .ly_recruitpage .el_job_detail_item_desc em {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1025px) {
  .ly_recruitpage .el_secTtl_en {
    font-size: 3.8rem;
  }
  .ly_recruitpage .el_no_recruit {
    margin-top: 10rem;
  }
}

.ly_entrypage {
  margin-block: 8rem 16rem;
}
.ly_entrypage .bl_inner {
  width: 100%;
  padding-inline: 4rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .ly_entrypage .bl_inner {
    padding-inline: 2rem;
  }
}
.ly_entrypage .form-row {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3rem;
}
.ly_entrypage .form-row.policy-check {
  margin-block: 5.6rem;
}
.ly_entrypage .form-row.submit-wrap {
  display: block;
  margin-bottom: 0;
  width: 100%;
}
@media screen and (min-width: 767.98px) {
  .ly_entrypage .form-row > p > label {
    margin-top: 1.2rem;
  }
}
.ly_entrypage label {
  display: block;
}
.ly_entrypage label > span {
  display: inline-block;
  color: var(--color-black);
  font-family: var(--font-jp);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  font-weight: 500;
  line-height: 1;
}
.ly_entrypage label .required,
.ly_entrypage label .optional {
  padding-top: -1.2rem;
  display: inline-block;
  margin-left: 1.2rem;
  color: #fff;
  font-family: var(--font-jp);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.096px;
  padding-inline: 0.8rem;
  border-radius: 0.2rem;
  background: var(--color-sub);
}
.ly_entrypage label .optional {
  color: var(--color-sub);
  background: #fff;
  border-radius: 2px;
  border: 1px solid var(--color-sub);
}
.ly_entrypage span.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.ly_entrypage input[placeholder] {
  color: rgba(68, 68, 68, 0.6);
  font-family: var(--font-jp);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.064rem;
}
.ly_entrypage input[type=text],
.ly_entrypage input[type=number],
.ly_entrypage input[type=tel],
.ly_entrypage input[type=email],
.ly_entrypage select,
.ly_entrypage textarea {
  width: 100%;
  color: var(--color-black);
  font-family: var(--font-jp);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  line-height: 1.5;
  letter-spacing: -0.064rem;
  padding: 1.2rem;
  border-radius: 6px;
  border: 1px solid rgba(118, 131, 113, 0.4);
  background: #fff;
}
.ly_entrypage input[type=number] {
  width: 4em;
}
.ly_entrypage select {
  width: 100%;
  background-image: url("../img/ico/ico_form_select_arrow.svg");
  background-repeat: no-repeat;
  background-position: right 0.75em center;
  background-size: 0.75em auto;
}
.ly_entrypage textarea {
  min-height: 20rem;
  resize: vertical;
}
@media screen and (min-width: 767.98px) {
  .ly_entrypage .group-gender {
    margin-top: 1.2rem;
  }
}
.ly_entrypage .group-gender > p {
  display: contents;
}
.ly_entrypage .group-gender .gender .wpcf7-list-item {
  display: block;
  width: 100%;
  margin: 0;
  padding-top: 0.8rem;
}
.ly_entrypage .group-gender .gender .wpcf7-list-item:first-child {
  padding-top: 0;
}
.ly_entrypage .group-gender .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
  font-family: var(--font-jp);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black);
}
.ly_entrypage .group-gender .wpcf7-list-item .wpcf7-list-item-label {
  letter-spacing: 0;
}
.ly_entrypage .group-gender .wpcf7-list-item label {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem;
}
.ly_entrypage .group-gender .wpcf7-list-item input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: content-box;
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid var(--color-black);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  margin: 0;
  padding: 0;
}
.ly_entrypage .group-gender .wpcf7-list-item input[type=radio]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.8rem;
  height: 0.8rem;
  background-color: var(--color-main);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease;
}
.ly_entrypage .group-gender .wpcf7-list-item input[type=radio]:checked::before {
  transform: translate(-50%, -50%) scale(1);
}
.ly_entrypage .group-file {
  font-size: 1.6rem;
}
.ly_entrypage .group-file input[type=file]::file-selector-button {
  cursor: pointer;
  font-size: 1x;
}
.ly_entrypage .group-age > p {
  display: inline-flex;
  align-items: center;
  font-size: 1.6rem;
}
.ly_entrypage .group-age .age {
  position: relative;
  margin-right: 0.8rem;
}
.ly_entrypage .group-age .age::after {
  position: absolute;
  right: -1rem;
  top: 1rem;
  content: "歳";
  display: inline-block;
  padding-block: 1.2rem;
  border: 1px solid #000;
}
.ly_entrypage .kome {
  color: rgba(68, 68, 68, 0.6);
  font-family: var(--font-jp);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.056rem;
  margin-top: 0.6rem;
  display: block;
}
.ly_entrypage .policy-check {
  display: block;
  text-align: center;
  margin-block: 5.6rem;
}
.ly_entrypage .policy-title a {
  transition: 0.5s;
  cursor: pointer;
  color: var(--color-black);
  font-family: var(--font-jp);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.064rem;
  text-align: center;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  color: var(--color-main);
}
@media (hover: hover) and (pointer: fine) {
  .ly_entrypage .policy-title a:hover {
    opacity: 0.5;
  }
}
.ly_entrypage .policy-text {
  margin-block: 1.6rem;
  color: var(--color-black);
  font-family: var(--font-jp);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.064rem;
  text-align: left;
}
.ly_entrypage .custom_checkbox {
  cursor: pointer;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.ly_entrypage .custom_checkbox > span {
  display: block;
  width: 100%;
  text-align: center;
}
.ly_entrypage .custom_checkbox .wpcf7-list-item {
  margin: 0;
  display: flex;
  width: auto;
  text-align: left;
  justify-content: center;
}
.ly_entrypage .custom_checkbox .wpcf7-list-item-label {
  display: inline-block;
  width: auto;
}
.ly_entrypage .custom_checkbox input[type=checkbox] {
  border: 1px solid rgba(118, 131, 113, 0.4);
  border-radius: 0.6rem;
  width: 2.2rem;
  height: 2.2rem;
  position: relative;
  cursor: pointer;
  background: #fff;
}
.ly_entrypage .custom_checkbox .checkmark {
  height: 2.4rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  pointer-events: none;
}
.ly_entrypage .custom_checkbox .checkmark input[type=checkbox]:checked {
  background-image: url("../img/entry/form_icon_check.svg");
  width: 2.2rem;
  height: 2.2rem;
  background-position: -0.2rem -0.2rem;
  border-radius: 0.5rem;
}
.ly_entrypage .custom_checkbox .agree-text {
  color: var(--color-main);
  font-family: var(--font-jp);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.064rem;
}
.ly_entrypage .el_submit_btn {
  transition: 0.5s;
  cursor: pointer;
  margin-inline: auto;
  width: 28rem;
  border: none;
  font-weight: 600;
  letter-spacing: -0.128rem;
  border-radius: 3.2rem;
}
@media (hover: hover) and (pointer: fine) {
  .ly_entrypage .el_submit_btn:hover {
    opacity: 0.5;
  }
}
.ly_entrypage .el_submit_btn::after {
  content: none;
}
.ly_entrypage .el_submit_btn.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}
.ly_entrypage .pc-tb-br {
  display: none;
}
.ly_entrypage .form-row > p:not(.policy-title):not(.policy-text) {
  display: contents;
}
.ly_entrypage .form-row.policy-check .policy-text + p {
  display: block;
}
.ly_entrypage .form-row > p br {
  display: none;
}
.ly_entrypage form.sent .wpcf7-response-output {
  color: #080;
}
.ly_entrypage form.invalid .wpcf7-response-output {
  color: #f00;
}
@media screen and (min-width: 767.98px) {
  .ly_entrypage {
    margin-block: 12rem 20rem;
  }
  .ly_entrypage .bl_inner {
    max-width: 90rem;
  }
  .ly_entrypage .form-row {
    flex-direction: row;
    gap: 8rem;
    margin-bottom: 3.2rem;
  }
  .ly_entrypage label {
    display: flex;
    justify-content: space-between;
    flex: 0 0 23rem;
    align-items: start;
  }
  .ly_entrypage .policy-text {
    text-align: center;
  }
  .ly_entrypage .pc-tb-br {
    display: inline;
  }
}

.pg_entry .el_pageTtlPost .el_pageTtl_ja {
  color: var(--color-main);
  font-family: var(--font-jpTtl);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.208rem;
}
@media screen and (min-width: 767.98px) {
  .pg_entry .el_pageTtlPost .el_pageTtl_ja {
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: -0.156em;
  }
}

.pg_thanks .el_pageTtl {
  border: none;
}

.ly_thankspage {
  padding-block: 23rem 16rem;
}
.ly_thankspage .bl_inner {
  max-width: 112rem;
  margin-inline: auto;
}
.ly_thankspage .el_secTtl {
  margin-bottom: 5rem;
  padding: 0 2rem;
}
.ly_thankspage .el_secTtl_ja {
  color: var(--color-main);
  font-family: var(--font-jpTtl);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.192rem;
}
.ly_thankspage .bl_thanks_content {
  color: var(--color-black);
  font-family: var(--font-jp);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.056rem;
  padding: 0 2rem;
}
@media screen and (min-width: 767.98px) {
  .ly_thankspage {
    padding-block: 23rem 20rem;
  }
  .ly_thankspage .el_secTtl {
    padding: 0;
  }
  .ly_thankspage .el_secTtl_ja {
    font-size: 3.2rem;
    letter-spacing: -0.256rem;
  }
  .ly_thankspage .bl_thanks_content {
    font-size: 1.6rem;
    letter-spacing: -0.064rem;
    text-align: center;
    padding: 0;
  }
}

.ly_privacypage {
  margin-block: 8rem 16rem;
}
.ly_privacypage .bl_inner {
  max-width: 112rem;
  margin-inline: auto;
}
.ly_privacypage .el_secTtl {
  padding: 0 2rem;
  max-width: 94rem;
  margin-inline: auto;
}
@media screen and (min-width: 767.98px) {
  .ly_privacypage {
    margin-block: 12rem 20rem;
  }
}

.policy_article {
  margin: 5rem auto 0;
  padding-inline: 4rem;
  max-width: 94rem;
}
@media screen and (max-width: 767px) {
  .policy_article {
    padding-inline: 2rem;
  }
}
.policy_article h2 {
  color: var(--color-main);
  font-family: var(--font-jpTtl);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.176rem;
  margin-bottom: 1.4rem;
}
.policy_article li {
  text-align: left;
  color: var(--color-black);
  font-family: var(--font-jp);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.056rem;
}
.policy_article ol {
  list-style: decimal;
  padding-left: 1em;
}
.policy_article ol > li > ol {
  list-style: lower-alpha;
}
.policy_article ol > li > ol > li > ol {
  list-style: upper-roman;
}
@media screen and (min-width: 767.98px) {
  .policy_article li {
    font-size: 1.6rem;
    letter-spacing: -0.064rem;
  }
}

.bl_privacy .el_txt,
.policy_kakomi .kakomi_item {
  text-align: left;
  color: var(--color-black);
  font-family: var(--font-jp);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.056rem;
}
@media screen and (min-width: 767.98px) {
  .bl_privacy .el_txt,
  .policy_kakomi .kakomi_item {
    font-size: 1.6rem;
    letter-spacing: -0.064rem;
  }
}

.ly_privacypage .policy_kakomi {
  margin-top: 1.4rem;
  padding: 3rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(118, 131, 113, 0.4);
  max-width: 66rem;
  width: 100%;
}

.ly_404page .bl_404 {
  margin-top: 8rem;
}
.ly_404page .bl_inner {
  max-width: 112rem;
  margin-inline: auto;
}
.ly_404page .el_secTtl {
  margin-bottom: 5rem;
  padding: 0 2rem;
}
.ly_404page .el_secTtl_ja {
  color: var(--color-main);
  font-family: var(--font-jpTtl);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  letter-spacing: -0.192rem;
}
.ly_404page .bl_404_content {
  padding: 0 2rem;
}
.ly_404page .el_txt {
  color: var(--color-black);
  font-family: var(--font-jp);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.056rem;
  text-align: left;
}
@media screen and (min-width: 767.98px) {
  .ly_404page .bl_inner {
    max-width: 112rem;
    margin-inline: auto;
  }
  .ly_404page .el_secTtl {
    padding: 0;
  }
  .ly_404page .el_secTtl_ja {
    font-size: 3.2rem;
    letter-spacing: -0.256rem;
  }
  .ly_404page .bl_404_content {
    padding: 0;
  }
  .ly_404page .el_txt {
    text-align: center;
    font-size: 1.6rem;
    letter-spacing: -0.064rem;
  }
}

.ly_guidepage {
  margin-block: 8rem 16rem;
}
.ly_guidepage .bl_inner {
  max-width: 112rem;
  margin-inline: auto;
  padding-inline: 2rem;
}
.ly_guidepage .bl_guide {
  margin-bottom: 8rem;
}
.ly_guidepage .ly_2col, .ly_guidepage .ly_all2col {
  flex-direction: column;
  gap: 0;
}
.ly_guidepage .ly_2col .bl_title_l, .ly_guidepage .ly_all2col .bl_title_l {
  flex: 1;
  width: 100%;
  text-align: center;
}
.ly_guidepage .ly_2col .bl_contents_r, .ly_guidepage .ly_all2col .bl_contents_r {
  flex: 1;
  text-align: left;
  width: 100%;
}
.ly_guidepage .ly_2col.un_minor_pay, .ly_guidepage .un_minor_pay.ly_all2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 6rem;
}
.ly_guidepage .ly_2col.un_minor_pay .bl_content_card, .ly_guidepage .un_minor_pay.ly_all2col .bl_content_card {
  max-width: 53rem;
}
@media screen and (max-width: 1024px) {
  .ly_guidepage .ly_2col.un_minor_pay, .ly_guidepage .un_minor_pay.ly_all2col {
    gap: 4rem;
    grid-template-columns: 1fr;
  }
  .ly_guidepage .ly_2col.un_minor_pay .bl_content_card, .ly_guidepage .un_minor_pay.ly_all2col .bl_content_card {
    max-width: 100%;
    flex: 1 1;
  }
}
.ly_guidepage .el_secTtl {
  margin: 0 auto 6rem;
  padding: 0;
}
.ly_guidepage .el_secTtl_en {
  font-family: var(--font-enTtl);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}
.ly_guidepage .el_secTtl_jp {
  font-family: var(--font-jpTtl);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.0128rem;
  margin-top: 1.4rem;
  text-align: center;
}
.ly_guidepage .bl_steps {
  counter-reset: step;
}
.ly_guidepage .bl_step_item:last-child .bl_timeline {
  border: none;
  padding-bottom: 0;
}
.ly_guidepage .bl_timeline {
  margin-left: 2rem;
  padding-left: 3.8rem;
  border-left: 1px solid var(--color-main);
  position: relative;
  padding-bottom: 4rem;
}
.ly_guidepage .bl_timeline::before {
  display: block;
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: -2rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--color-main);
  line-height: 4rem;
  text-align: center;
  color: #fff;
  font-family: var(--font-enTtl);
  font-size: 2rem;
  padding: 0;
  z-index: 10;
}
.ly_guidepage .el_step_title {
  color: var(--color-black);
  font-family: var(--font-jpTtl);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.16rem;
  margin-bottom: 1.7rem;
}
.ly_guidepage .el_txt {
  color: var(--color-black);
  font-family: var(--font-jp);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.056rem;
}
.ly_guidepage .bl_reserve_buttons {
  margin-top: 3rem;
}
.ly_guidepage .reserve_button {
  transition: 0.5s;
  cursor: pointer;
  width: 100%;
  height: 5.2rem;
  font-size: 1.6rem;
}
@media (hover: hover) and (pointer: fine) {
  .ly_guidepage .reserve_button:hover {
    opacity: 0.5;
  }
}
.ly_guidepage .bl_webreserve_btn {
  margin-bottom: 1.2rem;
}
.ly_guidepage .bl_content_card {
  padding: 4rem 2rem;
  margin-inline: auto;
  border-radius: 0.6rem;
  border: 1px solid rgba(118, 131, 113, 0.4);
}
.ly_guidepage .bl_content_card .el_secTtl {
  margin-bottom: 4rem;
}
.ly_guidepage .bl_content_card .el_txt {
  color: var(--color-black);
  font-family: var(--font-jp);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.064rem;
}
.ly_guidepage .bl_payment ul {
  list-style: disc;
  padding-left: 1em;
  margin-top: 2rem;
}
.ly_guidepage .bl_payment ul li::marker {
  color: var(--color-main);
}
.ly_guidepage .bl_payment li {
  margin-bottom: 0.6rem;
}
.ly_guidepage .bl_download_btn {
  margin-top: 4rem;
}
.ly_guidepage .el_download_btn {
  transition: 0.5s;
  cursor: pointer;
  max-width: 35rem;
  margin-inline: auto;
  color: #fff;
  font-family: var(--font-jpTtl);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2rem;
  padding-block: 1.5rem;
  letter-spacing: -0.128rem;
  text-align: left;
  justify-content: center;
  gap: 1.2rem;
}
@media (hover: hover) and (pointer: fine) {
  .ly_guidepage .el_download_btn:hover {
    opacity: 0.5;
  }
}
.ly_guidepage .el_download_btn img {
  display: inline-block;
  padding-top: 0.3rem;
  box-sizing: content-box;
}
@media screen and (min-width: 767.98px) {
  .ly_guidepage {
    margin-block: 12rem 20rem;
  }
  .ly_guidepage .bl_inner {
    padding-inline: 4rem;
  }
  .ly_guidepage .bl_guide {
    margin-block: 12rem 16rem;
  }
  .ly_guidepage .ly_2col, .ly_guidepage .ly_all2col {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .ly_guidepage .ly_2col .bl_title_l, .ly_guidepage .ly_all2col .bl_title_l {
    flex: 0 1 12rem;
  }
  .ly_guidepage .ly_2col .bl_contents_r, .ly_guidepage .ly_all2col .bl_contents_r {
    flex: 0 1 65rem;
    max-width: 65rem;
  }
  .ly_guidepage .un_guide {
    gap: 4rem;
  }
  .ly_guidepage .el_secTtl_en {
    font-size: 3.8rem;
    text-align: left;
  }
  .ly_guidepage .el_secTtl_jp {
    margin-top: 2rem;
    text-align: left;
  }
  .ly_guidepage .bl_timeline {
    padding-left: 4.4rem;
    padding-bottom: 6rem;
  }
  .ly_guidepage .el_step_title {
    font-size: 2.4rem;
    letter-spacing: -0.192rem;
  }
  .ly_guidepage .el_txt {
    font-size: 1.6rem;
    letter-spacing: -0.064rem;
  }
  .ly_guidepage .reserve_button {
    max-width: 27.2rem;
  }
  .ly_guidepage .bl_content_card {
    padding: 6rem 4rem;
  }
  .ly_guidepage .bl_content_card .el_secTtl {
    margin-bottom: 6rem;
  }
  .ly_guidepage .bl_content_card .el_secTtl_en, .ly_guidepage .bl_content_card .el_secTtl_jp {
    text-align: center;
  }
  .ly_guidepage .bl_content_card .el_txt {
    font-size: 1.6rem;
    letter-spacing: 0.064rem;
  }
}

.ly_staffpage {
  margin-block: 8rem 16rem;
}
.ly_staffpage .bl_inner {
  max-width: 112rem;
  box-sizing: content-box;
  margin-inline: auto;
  padding-inline: 2rem;
}
.ly_staffpage .ly_staff {
  padding-block: 8rem;
  border-bottom: 1px solid rgba(118, 131, 113, 0.4);
}
.ly_staffpage .ly_staff:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.ly_staffpage .ly_staff:first-child {
  padding-top: 0;
}
.ly_staffpage .ly_staff_typeA .sec_group1-2 {
  gap: 5rem;
}
.ly_staffpage .ly_staff_typeA .sec_group34-5 {
  gap: 12rem;
  padding-top: 12rem;
}
@media screen and (max-width: 1024px) {
  .ly_staffpage .ly_staff_typeA .sec_group34-5 {
    gap: 7rem;
    padding-top: 6rem;
  }
}
.ly_staffpage .ly_staff_typeA:has(.bl_sec5) .sec_group3-4 {
  flex-direction: column;
}
.ly_staffpage .ly_staff_typeA .sec_group3-4 {
  display: flex;
  gap: 4rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .ly_staffpage .ly_staff_typeA .sec_group3-4 {
    flex-direction: column;
  }
}
.ly_staffpage .ly_staff_typeA .bl_sns {
  max-width: 32.8rem;
}
@media screen and (max-width: 767px) {
  .ly_staffpage .ly_staff_typeA .bl_sns {
    max-width: unset;
  }
}
.ly_staffpage .ly_staff_typeB .sec_group1 {
  width: 100%;
}
.ly_staffpage .ly_staff_typeB .sec_group1-234 {
  gap: 5rem;
}
.ly_staffpage .ly_staff_typeB .sec_group3-4 {
  display: flex;
  gap: 4rem;
  margin-top: 4rem;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .ly_staffpage .ly_staff_typeB .sec_group3-4 {
    flex-direction: column !important;
  }
}
.ly_staffpage .sec_group,
.ly_staffpage .bl_sec1,
.ly_staffpage .bl_sec2,
.ly_staffpage .bl_sec3,
.ly_staffpage .bl_sec4,
.ly_staffpage .bl_sec5 {
  flex: 1;
}
.ly_staffpage .bl_sec_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid rgba(118, 131, 113, 0.4);
  border-radius: 0.6rem;
}
.ly_staffpage .bl_sec_img.no-img {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(118, 131, 113, 0.4);
  border-radius: 0.6rem;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background: #fff;
}
.ly_staffpage .bl_sec_img.no-img img {
  width: 11.21rem;
  height: auto;
  aspect-ratio: 1/1;
  border: none;
  border-radius: 0;
  -o-object-fit: initial;
     object-fit: initial;
}
.ly_staffpage .el_position {
  color: var(--color-black);
  font-family: var(--font-jpTtl);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  font-weight: 600;
  letter-spacing: -0.056rem;
}
.ly_staffpage .el_name_jp {
  color: var(--color-black);
  font-family: var(--font-jpTtl);
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.104rem;
  margin-right: 1.6rem;
}
.ly_staffpage .el_name_en {
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: -0.064rem;
  text-transform: uppercase;
}
.ly_staffpage .bl_sns {
  margin-block: 1.4rem 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 1rem 0.8rem;
}
.ly_staffpage .bl_sns a {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  cursor: pointer;
  width: 100%;
  min-width: 16rem;
  gap: 1rem;
  font-family: var(--font-en), var(--font-jpTtl);
  font-size: 2rem;
  line-height: 1;
  background: #fff;
  color: #000;
  padding: 0.5em 1em;
  border-radius: 1em;
  text-align: center;
  height: 4rem;
}
@media (hover: hover) and (pointer: fine) {
  .ly_staffpage .bl_sns a:hover {
    opacity: 0.5;
  }
}
.ly_staffpage .bl_sns a .sns_icon {
  flex: 0 0 auto;
}
.ly_staffpage .bl_sns a .sns_icon img {
  width: 1.6rem;
  height: 1.6rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.ly_staffpage .bl_sns a .sns_title {
  font-family: var(--font-en);
  flex: 0 1 auto;
  text-align: left;
}
.ly_staffpage .bl_sns a .sns_title_jp {
  font-family: var(--font-jpTtl);
  font-size: 1.6rem;
  letter-spacing: -0.08em;
  padding-bottom: 0.3rem;
}
.ly_staffpage .bl_message {
  color: var(--color-black);
  font-family: var(--font-jp);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  line-height: 2;
  letter-spacing: 0;
}
.ly_staffpage .el_sec_title {
  color: var(--color-black);
  font-family: var(--font-jpTtl);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  font-weight: 600;
  letter-spacing: -0.064rem;
  border-bottom: 1px solid rgba(118, 131, 113, 0.4);
  padding-bottom: 0.6rem;
  margin-bottom: 2rem;
}
.ly_staffpage .dl-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: start;
  align-items: start;
  gap: 2rem;
  padding-top: 0.4rem;
}
.ly_staffpage .dl-row:first-child {
  padding-top: 0;
}
.ly_staffpage .bl_sec_dl dt {
  color: var(--color-black);
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 400;
  padding-top: 0.42rem;
  line-height: 1;
  flex: 0 0 4rem;
  vertical-align: -1px;
}
.ly_staffpage .bl_sec_dl dd {
  color: var(--color-black);
  font-family: var(--font-jp);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  flex: 1;
}
.ly_staffpage .bl_sec_ul {
  list-style: disc;
  padding-left: 1em;
}
.ly_staffpage .bl_sec_ul li {
  color: var(--color-black);
  font-family: var(--font-jp);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  padding-top: 0.6rem;
}
.ly_staffpage .bl_sec_ul li::marker {
  color: var(--color-main);
}
.ly_staffpage .bl_sec_ul li:first-child {
  padding-top: 0;
}
@media screen and (max-width: 374px) {
  .ly_staffpage .bl_sns a {
    min-width: 13rem;
    font-size: 1.6rem;
    height: 3rem;
  }
}
@media screen and (min-width: 1025px) {
  .ly_staffpage .ly_staff_typeA .sec_group1-2 {
    gap: 9rem;
  }
  .ly_staffpage .ly_staff_typeB .sec_group1-234 {
    gap: 8rem;
  }
}
@media screen and (min-width: 767.98px) {
  .ly_staffpage {
    margin-block: 12rem 20rem;
  }
  .ly_staffpage .bl_inner {
    padding-inline: 4rem;
  }
  .ly_staffpage .ly_staff {
    padding-block: 12rem;
  }
  .ly_staffpage .ly_staff_typeA .sec_group3-4 {
    gap: 6rem;
  }
  .ly_staffpage .ly_staff .flex-row {
    flex-direction: row;
  }
  .ly_staffpage .ly_staff_typeB .sec_group1 {
    flex: 0 0 33rem;
  }
  .ly_staffpage .ly_staff_typeB .sec_group3-4 {
    flex-direction: row;
  }
  .ly_staffpage .ly_staff_typeB .sec_group3-4 > div {
    flex: 1;
  }
  .ly_staffpage .el_position {
    font-size: 1.4rem;
    letter-spacing: -0.112rem;
  }
  .ly_staffpage .el_name_jp {
    font-size: 3rem;
    letter-spacing: 0.24rem;
  }
  .ly_staffpage .bl_message {
    font-size: 1.6rem;
    letter-spacing: 0;
  }
  .ly_staffpage .el_sec_title {
    font-size: 1.8rem;
    letter-spacing: -0.072rem;
  }
  .ly_staffpage .bl_sec_dl dt {
    font-size: 2rem;
    padding-top: 0.48rem;
  }
  .ly_staffpage .bl_sec_dl dd {
    font-size: 1.6rem;
    letter-spacing: 0;
  }
  .ly_staffpage .bl_sec_ul li {
    font-size: 1.6rem;
    letter-spacing: 0;
  }
}

#autozip {
  display: none !important;
}/*# sourceMappingURL=main.css.map */