@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Noto+Sans+JP:wght@300..900&family=Noto+Serif+JP:wght@300..600&display=swap");
:root {
  --font-primary: "Noto Sans JP", sans-serif;
  --font-secondary: "Noto Serif JP", serif;
  --font-accent: "Cormorant", sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 600;
  --primary-color: #524548;
  --pink: #f96691;
  --pink: #F07FA1;
  --purple: #796bc0;
  --dpurple: #604057;
  --shadow: 0 4px 8px rgba(0, 0, 0, 0.075);
  --color-bg: #faf1f1;
}
body {
  background-color: #fff; /*background-color: #fffbf8;*/
  font-family: var(--font-primary);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--primary-color);
  font-size: 0.9375rem;
}
p {
  margin-bottom: clamp(1.5rem, 1.85vw, 2rem);
  line-height: 2;
  text-rendering: optimizeLegibility;
  font-size: 0.875rem;
}
.section-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  margin-bottom: 2rem;
  line-height: 1.5;
  letter-spacing: clamp(1px, 0.2vw, 2px);
}
.section-heading::before {
  content: attr(data-text);
  display: block;
  font-size: 1.35rem;
  font-family: var(--font-accent);
  color: var(--pink);
  letter-spacing: 1px;
  font-weight: 300;
}
.section-lead {
  font-size: clamp(1rem, 4vw, 1.5rem);
  font-family: var(--font-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  color: inherit;
  letter-spacing: clamp(1px, 0.2vw, 2px);
  font-weight: 400;
}
.section-subheading {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-family: var(--font-secondary); /* h2と統一 */
  padding-bottom: 2.25rem;
  margin-bottom: 2.5rem;
  letter-spacing: clamp(0px, 0.2vw, 2px);
  text-align: left;
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 400;
  /*border-left: solid 2px #ec7c9b;
  padding: 0.35rem 1.25rem;*/
}
.section-subheading::after {
  content: '';
  width: 80px;
  height: 1.5px;
  background: var(--pink);
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media print, screen and (max-width: 431px) {
  .section-subheading::after {
    border-top: none;
    margin: 0;
  }
}
.section-caption {
  position: relative;
  font-weight: 500;
  font-family: var(--font-secondary);
  margin-bottom: 1.25rem;
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: 2px;
}
.section-caption--2 {
  background: #f5f5f5;
  padding: 1rem;
}
/*.section-caption--3::after {
  content: "";
  position: absolute;
  bottom: -2px; 
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--pink);
}*/
/*ly_header*/
.ly_header {
  width: 100%;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: transparent; /* デフォルトの背景色 */
  transition: background-color 0.3s ease-in-out; /* 背景色のアニメーション */ background-color: #fff;
}
.ly_header.scrolled {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease-in-out;
}
@media print, screen and (max-width: 1501px) {
  .ly_header {
    padding-right: 80px;
  }
}
@media print, screen and (max-width: 40.000em) {
  .ly_header {}
  .ly_header.scrolled {
    background-color: transparent;
    position: relative;
  }
}
.ly_header__logo {
  margin-right: auto;
}
@media screen and (max-width: 48em) {
  .ly_header__logo {
    margin-right: auto;
  }
}
.ly_header__logo h1 {
  line-height: 1;
  margin: 0 0 0 1.5rem;
}
@media print, screen and (max-width: 40.000em) {
  .ly_header__logo h1 {
    margin: 1rem;
  }
}
.ly_header__logo h1 img {
  width: clamp(260px, 20vw, 340px);
  display: block;
}
/*navigation*/
.ly_header__nav {
  display: flex;
  margin-left: auto;
}
.ly_header__nav .nav {
  margin: 0;
}
.ly_header__nav li a {
  display: block;
  position: relative;
  font-family: var(--font-secondary);
}
.ly_header__nav .menu-item-has-children > a:after, .ly_header__nav .menu-item-has-children > a:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 10px;
  height: 1px;
  background: var(--pink);
  transition: 0.2s;
}
@media screen and (max-width: 64em) {
  .ly_header__nav .menu-item-has-children > a:after, .ly_header__nav .menu-item-has-children > a:before {
    
    right: 1rem;
  }
}
.ly_header__nav .menu-item-has-children > a:after {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
.ly_header__nav .menu-item-has-children > a.open:before {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.ly_header__nav .menu-item-has-children > a.open:after {
  background: transparent;
}
.ly_header__nav .menu-item-has-children .sub-menu {
  display: none;
}
.ly_header__nav .menu-item-has-children .sub-menu li::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-color: #fff;
  transform: translateY(-50%) rotate(-45deg);
}
@media print, screen and (min-width: 1501px) {
  .ly_header__nav li a {
    padding: 30px 20px;
    font-size: 14px;
  }
}
@media print, screen and (min-width: 1501px) {
  #ly_header__navbtn, .overlay {
    display: none;
  }
  .ly_header__nav ul {
    display: flex;
  }
  .ly_header__nav li {
    position: relative;
    line-height: 1;
  }
  .ly_header__nav li a {
    padding: 20px 20px;
    font-size: 14px;
    font-weight: 500;
  }
  .ly_header__nav .menu-item-has-children > a {
    padding-right: 40px;
  }
  .ly_header__nav li ul.sub-menu {
    flex-direction: column;
    background: var(--color-bg);
    position: absolute;
    width: 240px;
    left: 50%;
    margin: 0;
    top: 66px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 10px 0;
    
  }
  .ly_header__nav li ul.sub-menu--2cols {
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.085);
    position: absolute;
    width: 800px;
    left: 50%;
    margin: 0;
    top: 64px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 10px 0;
   
  }
  .ly_header__nav li ul.sub-menu--2cols li {
    width: 50%;
    float: left;
  }
  .ly_header__nav li ul.sub-menu li a {
    line-height: 1.2em;
    font-size: 13px;
    padding: 12px 20px;
  }
}
@media only screen and (max-width: 1501px) {
  .overlay {
    width: 0;
    height: 0;
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s;
    background: rgba(255, 255, 255, 0.7);
  }
  .overlay.open {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  .ly_header__nav {
    display: block;
  }
  #ly_header__navbtn {
    top: 12px;
    right: 15px;
    transition: 0.3s;
    cursor: pointer;
    position: fixed;
    z-index: 9999;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #ly_header__navbtn .menu-trigger {
    width: 22px;
    height: 18px;
    position: relative;
  }
  #ly_header__navbtn .menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--pink);
    transition: all 0.5s;
  }
  #ly_header__navbtn .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  #ly_header__navbtn .menu-trigger span:nth-of-type(2) {
    width: 70%;
    top: 9px;
  }
  #ly_header__navbtn .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  #ly_header__navbtn.active .menu-trigger span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
   
  }
  #ly_header__navbtn.active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }
  #ly_header__navbtn.active .menu-trigger span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
    
  }
  .ly_header__nav {
    width: 320px;
    height: 100%;
    overflow: auto;
    padding: 60px 0;
    background:#f5f5f5;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 12;
    transform: translate(100%);
    transition: all 0.5s;
  }
  .ly_header__nav.open {
    transform: translateZ(0);
  }
  .ly_header__nav .nav {
    width: 100%;
  }
  .ly_header__nav .nav > li {
    padding: 0 0;
    margin: 0 1.5rem;
    border-bottom: solid 1px var(--pink);
	font-size:17px;
  }
  .ly_header__nav li a {
    position: relative;
    padding:24px 15px;
    color: var(--pink);font-weight: 600;
  }
  .ly_header__nav .menu-item-has-children .sub-menu {
    padding: 10px 15px;
    font-size: 15px;
    margin-bottom: 1.5rem;
  }
  .ly_header__nav .menu-item-has-children .sub-menu li {
    padding: 0;
    position: relative;
  }
  .ly_header__nav .menu-item-has-children .sub-menu li:last-child {
    margin-bottom: 0;
  }
  .ly_header__nav .menu-item-has-children .sub-menu li a {
    padding: 0.45rem 0;
  }
  .ly_header__nav .menu-item-has-children .sub-menu li::after {
    content: "";
    position: absolute;
    right: 0.5rem;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: translateY(-50%) rotate(-45deg);
  }
}
@media print, screen and (max-width: 431px) {
  .ly_header__nav {
    width: 100%;
  }
  #ly_header__navbtn {
    background: var(--pink);
  }
  #ly_header__navbtn .menu-trigger span {
    background-color: #fff;
  }
}
.ly_header__tel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 1rem;
  font-family: var(--font-secondary);
}
@media print, screen and (max-width: 40.000em) {
  .ly_header__tel {
    display: none;
  }
}
.header-tel__label {
  font-size: clamp(10px, 1.2vw, 12px);
}
.header-tel__link {
  font-size: clamp(18px, 2vw, 24px);
  font-family: var(--font-secondary);
  text-decoration: none;
  font-weight: 300;
  position: relative;
  padding-left: 2rem;
}
.header-tel__link::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("../img/common/icon-tel.webp");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 60%;
  left: 0;
  transform: translateY(-60%);
  filter: brightness(0) saturate(100%) invert(51%) sepia(88%) saturate(1326%) hue-rotate(307deg) brightness(103%) contrast(95%);
}
/*header_contact*/
.ly_header__contact {
  display: flex; /* 横並びに配置 */
  list-style: none; /* リストマーカーを削除 */
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 40em) {
  .ly_header__contact {
    display: none;
  }
}
.ly_header__contact li {
  width: 84px;
  height: 100%;
}
.ly_header__contact li a {
  flex: 1; /* 各項目を均等に配置 */
  text-align: center; /* テキストを中央揃え */
  padding: 1rem 0.5rem 0.65rem;
  position: relative; /* 疑似要素の位置基準 */
  color: #fff; /* テキストの色を白に設定 */
  font-size: 0.75rem;
  white-space: nowrap;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
}
@media screen and (max-width: 48em) {
  .ly_header__contact li a {
    padding: 1rem 0.15rem 0.65rem;
    width: 84px;
  }
}
/* 色設定 */
.ly_header__contact--reserve a {
  background-color: var(--pink);
}
.ly_header__contact--line a {
  background-color: #00b900; /* 緑色 (LINE矯正相談) */
}
.ly_header__contact--shop a {
  background-color: var(--purple);
}
/* 各項目に疑似要素でアイコンを追加 */
.ly_header__contact li a::before {
  content: ""; /* アイコンを追加するスペース */
  display: block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto 0.5rem; /* 中央揃えと上下のスペース */
}
.ly_header__contact--reserve a::before {
  background-image: url("../img/common/icon-calendar.webp"); /* アイコン画像 (WEB予約) */
}
.ly_header__contact--line a::before {
  background-image: url("../img/common/icon-line.webp"); /* アイコン画像 (LINE矯正相談) */
}
.ly_header__contact--shop a::before {
  background-image: url("../img/common/icon-shop.webp"); /* アイコン画像 (メール相談) */
}
/* リンクスタイルの調整 */
.ly_header__contact a {
  text-decoration: none;
  color: inherit;
}
/* footer
============================================================================================================ */
.ly_footer {
  padding: clamp(4rem, 8vw, 6rem) 0 0;
}
.ly_footer__header {
  display: flex; /* 横並びにする */
  align-items: center; /* 縦方向を中央揃え */
  gap: 2rem; /* ロゴとSNSアイコンの間隔 */
  margin-bottom: 2rem;
}
.ly_footer__logo {
  margin: 0; /* 不要な余白を削除 */
}
.ly_footer__sns {
  margin: 0; /* 不要な余白を削除 */
}
.ly_footer__sns .instagram-icon img {
  width: 44px; /* アイコンサイズを調整 */
  height: auto;
}
.ly_footer__tel {
  font-size: clamp(20px, 2vw, 24px);
  position: relative;
  display: flex;
  align-items: center;
}
.ly_footer__tel a {
  text-decoration: none;
  color: inherit;
  padding-left: 2rem;
  position: relative;
  line-height: 1;
  font-family: var(--font-secondary);
  font-size: 2rem;
  font-weight: 300;
}
.ly_footer__tel a::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  background-image: url("../img/common/icon-tel.webp");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 8px;
  filter: brightness(0) saturate(100%) invert(51%) sepia(88%) saturate(1326%) hue-rotate(307deg) brightness(103%) contrast(95%);
}
.ly_footer__tel--time {
  font-size: 12px;
}
.ly_footer__contact {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0 0 1.5rem;
  list-style: none;
}
@media print, screen and (max-width: 431px) {
  .ly_footer__contact {
    display: none;
  }
}
.ly_footer__contact li {
  flex: 1;
  text-align: center;
}
.ly_footer__contact li a {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  justify-content: center;
  padding: 1rem 10px;
  text-decoration: none;
  line-height: 1;
  width: 100%;
  color: #fff;
  border-radius: 4px;
}
.ly_footer__bnr {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1rem;
}
.ly_footer__bnr li {
  display: inline-block;
}
.ly_footer__bnr a img {
  max-width: 100%;
  height: auto;
  display: block;
}
.ly_footer__copyright {
  font-size: 0.75rem;
  padding: 0;
  text-align: center;
  color: #555;
  margin: clamp(2rem, 6vw, 5rem) 0 clamp(7rem, 4vw, 3rem);
}
.ly_footer__contact .ly_footer__contact--reserve a {
  background-color: var(--pink);
}
.ly_footer__contact .ly_footer__contact--line a {
  background-color: #00b900;
}
.ly_footer__contact .ly_footer__contact--shop a {
  background-color: var(--purple);
}
.ly_footer__contact li:first-child {
  margin-left: 0;
}
.ly_footer__contact li:last-child {
  margin-right: 0;
}
.ly_footer__contact a::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 20px;
  margin-right: 8px;
  background-size: contain;
  background-repeat: no-repeat;
}
.ly_footer__contact--reserve a::before {
  background-image: url("../img/common/icon-calendar.webp");
}
.ly_footer__contact--line a::before {
  background-image: url("../img/common/icon-line.webp");
}
.ly_footer__contact--shop a::before {
  background-image: url("../img/common/icon-shop.webp");
}
@media (max-width: 415px) {
  .ly_footer__contact li a {
    flex-direction: column;
    align-items: center;
  }
  .ly_footer__contact a::before {
    margin: 0 0 8px;
  }
  .ly_footer__contact li a {
    font-size: 0.7rem;
  }
}
.ly_footer__timetable {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
  font-size: clamp(0.75rem, 2.5vw, 1rem);
}
.ly_footer__timetable th {
  background-color: var(--purple2);
  padding: clamp(0.35rem, 2vw, 0.65rem);
  font-weight: 500;
}
.ly_footer__timetable td {
  padding: clamp(0.35rem, 2vw, 0.65rem);
  border-bottom: 1px solid #ccc;
}
.ly_footer__timetable .highlight, .ly_footer__timetable--exp .highlight {
  color: var(--pink);
  font-weight: bold;
}
.ly_footer__timetable td:first-child {
  padding-left: 1.5rem;
  text-align: left;
}
.ly_footer__map__notice {
  color: var(--pink);
  border: 2px solid #ccc;
  border-color: var(--pink);
  padding: 0.5rem;
  margin: 1rem 0 0;
  text-align: center;
}
.ly_footer__sitemap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
  margin: 4rem 0;
}
.ly_footer__sitemap__item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
}
.ly_footer__sitemap__item.two-columns-wrap {
  width: 55%;
}
@media screen and (max-width: 48em) {
  .ly_footer__sitemap__item {
    flex: 0 0 47%;
    margin-bottom: 3rem;
  }
  .ly_footer__sitemap__item.two-columns-wrap {
    flex: 0 0 100%;
    margin-bottom: 3rem;
  }
}
.ly_footer__sitemap__title {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-decoration: underline;
  font-family: var(--font-secondary);
}
.ly_footer__sitemap__content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.ly_footer__sitemap__content.two-columns ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.ly_footer__sitemap__content li {
  margin: 0 0 10px;
  font-size: 0.75rem;
  letter-spacing: 0;
}
.ly_footer__sitemap__content.two-columns li {
  margin: 0 0 0;
}
.ly_contact--sp {
  display: none;
}
@media print, screen and (max-width: 40em) {
  .ly_contact--sp {
    display: flex;
    justify-content: space-between;
    gap: 0;
    padding: 1rem 1.5rem;
  }
  .ly_contact--sp.ly_contact__footer {
    padding: 0;
  }
  .ly_contact__footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  }
  .ly_contact__item {
    flex: 1;
    text-align: center;
    position: relative;
    color: #fff;
  }
  .ly_contact__item::before {
    content: "";
    display: block;
    width: 22px;
    height: 22px;
    margin: 0 auto 5px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    top: 1rem;
  }
  /* 各アイコン */
  .ly_contact__tel::before {
    background-image: url('../img/common/icon-tel.webp');
    filter: brightness(0) saturate(100%) invert(100%) brightness(105%) contrast(105%);
  }
  .ly_contact__reserve::before {
    background-image: url('../img/common/icon-calendar.webp');
  }
  .ly_contact__line::before {
    background-image: url('../img/common/icon-line.webp');
  }
  .ly_contact__shop::before {
    background-image: url('../img/common/icon-shop.webp');
  }
  .ly_contact__footer .ly_contact__mail::before {
    filter: none;
  }
  /* 背景色 */
  .ly_contact__tel {
    background-color: #ab6eb6;
  }
  .ly_contact__reserve {
    background-color: var(--pink);
    background-color: #cda716;
  }
  .ly_contact__line {
    background-color: rgb(0, 185, 0);
  }
  .ly_contact__shop {
    background-color: var(--purple);
    background-color: var(--pink);
  }
  .ly_contact__link {
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0;
    padding: 3rem 0.25rem 0.75rem;
    display: block;
    width: 100%;
    height: 100%;
  }
  .ly_contact__mail .ly_contact__link {
    color: var(--pink);
  }
  .ly_contact__footer .ly_contact__mail {
    background-color: var(--pink);
  }
  .ly_contact__footer .ly_contact__mail .ly_contact__link {
    color: #fff;
  }
}
/*ly_contact*/
.ly_contact {
  background: var(--color-bg);
  background: var(--pink);
  background-image: url("../img/bg_contact.webp");
  background-size: cover;
  background-position: center center;
  padding: clamp(5rem, 6vw, 7rem) 0;
  text-align: center;
}
@media print, screen and (max-width: 431px) {
  .ly_contact {
    text-align: left;
  }
}
.ly_contact .ly_contact__inner {
  background: #fff;
  box-shadow: var(--shadow);
  padding: clamp(2.5rem, 5vw, 4rem);
}
.ly_contact .ly_contact__links {
  display: flex;
  gap: 2rem; /* 要素間の間隔 */
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: left;
  max-width: 800px;
}
@media print, screen and (max-width: 431px) {
  .ly_contact .ly_contact__links {
    display: block;
  }
}
.ly_contact .ly_contact__links .contact-item {
  flex-basis: 47%;
}
.ly_contact .contact-tel {
  text-decoration: none;
  color: inherit;
  padding-left: 2rem;
  position: relative;
  line-height: 1;
  font-family: var(--font-secondary);
  font-size: 2rem;
  font-weight: 300;
}
.ly_contact .contact-tel::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  background-image: url("../img/common/icon-tel.webp");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 60%;
  transform: translateY(-60%);
  filter: brightness(0) saturate(100%) invert(51%) sepia(88%) saturate(1326%) hue-rotate(307deg) brightness(103%) contrast(95%);
}
.ly_contact .contact-hours {
  font-size: 12px;
  display: block;
  margin-top: 0.5rem;
  letter-spacing: normal;
}
.ly_contact .contact-btn {
  position: relative;
  background-color: var(--pink);
  display: inline-flex;
  font-size: 0.875rem;
  justify-content: center;
  padding: 1.5rem;
  text-decoration: none;
  line-height: 1;
  width: 100%;
  border-radius: 4px;
  color: #fff;
  margin-top: clamp(1.5rem, 0vw, 0rem);
}
.ly_contact .contact-btn::after {
  content: none;
}
.ly_contact .contact-btn::before {
  background: url('../img/common/icon-calendar.webp') no-repeat center / contain;
  content: "";
  display: block;
  width: 25px;
  height: 20px;
  margin-right: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: none;
  position: absolute;
  left: 1rem;
}
.ly_pagetop {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: solid 1px #013285;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
@media print, screen and (max-width: 431px) {
  .ly_pagetop {
    bottom: 170px;
  }
}
.ly_pagetop::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-left: 1.5px solid #013285;
  border-top: 1.5px solid #013285;
  transform: rotate(45deg);
  margin-top: 5px;
}
.ly_pagetop.show {
  opacity: 1;
  visibility: visible;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  z-index: 9999;
}
#loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.spinner {
  margin: 0 auto 0;
  width: 70px;
  text-align: center;
}
.spinner > div {
  width: 14px;
  height: 14px;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0)
  }
  40% {
    -webkit-transform: scale(1.0)
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}