@charset "UTF-8";
/*!
 * Grits-Themes v2.1.0
 * @Author: phamcuong96
 */
/*==========================================================================*/
/* START SET'UP FONTS                                                       */
/*==========================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;1,300&family=Marcellus&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@500&display=swap");
/*==========================================================================*/
/* START VARIABLE                                                           */
/*==========================================================================*/
:root {
  --gl-bp-bigscreen: 1920;
  --gl-bp-desktops: 1440;
  --gl-bp-laptops: 1280;
  --gl-bp-small-laptops: 1024;
  --gl-bp-tablets: 900;
  --gl-bp-phones: 540;
  --gl-bp-small-phones: 320;
  --gl-trans-5e: 500ms ease;
  --gl-trans-4e: 400ms ease;
  --gl-trans-3e: 300ms ease;
  --gl-trans-2e: 200ms ease;
  --gl-trans-1e: 100ms ease;
  --gl-trans-all-1: all .3s ease-in-out;
  --gl-trans-cube-1: all 0.3s cubic-bezier(1, 0.49, 0.16, 0.96);
  --gl-trans-cube-2: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  --gl-font-marc: "Marcellus", serif;
  --gl-font-coga: "Cormorant Garamond", serif;
  --gl-font-nose: "Noto Serif JP", serif;
  --gl-boxshadow-1: 0px 20px 54px 6px rgba(145, 81, 105, 0.06);
  --gl-header-height: clamp(3.4375rem, 1.7449944383rem + 5.0055617353vw, 6.25rem);
  --gl-themes-main-color: #915169;
  --gl-themes-main-color-rgb: 145, 81, 105;
  --gl-themes-main-color-2: #c0a27a;
  --gl-themes-main-color-2-rgb: 192, 162, 122;
  --wy-base-color-1: var(--gl-themes-main-color);
  --zindex-promax: 9999;
  --zindex-pro: 999;
  --zindex-plus: 99;
  --zindex-fixed: 9;
  --gl-main-visual-height: 100vh;
  --gl-default-text-color: var(--gl-themes-main-color);
  --gl-default-paragraph-line-height: 2;
  --gl-default-title-line-height: 1.5;
  --gl-default-font: 'Noto Sans JP', sans-serif;
  --gl-default-background-rgb: 248, 245, 241;
  --gl-sec-heading-2-color: var(-gl-default-text-color);
  --gl-sec-heading-2-align: center;
  --gl-sec-heading-2-font-size: clamp(1.5rem, 1.3571428571rem + 0.7142857143vw, 2rem);
  --gl-sec-heading-3-font-size: clamp(1.375rem, 1.2321428571rem + 0.7142857143vw, 1.875rem);
  --gl-sec-heading-4-font-size: clamp(1.125rem, 1.0178571429rem + 0.5357142857vw, 1.5rem);
  --gl-sec-heading-5-font-size: clamp(1.0625rem, 1.0089285714rem + 0.2678571429vw, 1.25rem);
  --gl-sec-heading-6-font-size: clamp(0.9375rem, 0.8839285714rem + 0.2678571429vw, 1.125rem);
  --gl-sec-heading-weight: 500;
  --gl-sec-heading-font: var(--gl-font-nose);
}
@media (max-width: 900px) {
  :root {
    --gl-main-visual-height: 90vh;
  }
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes fade-out {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
@-webkit-keyframes fade-in-up {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
            transform: translate3d(0, 10%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
@keyframes fade-in-up {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
            transform: translate3d(0, 10%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
@-webkit-keyframes fade-in-left {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
            transform: translate3d(-10%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
@keyframes fade-in-left {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
            transform: translate3d(-10%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
@-webkit-keyframes fade-in-right {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
            transform: translate3d(10%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
@keyframes fade-in-right {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
            transform: translate3d(10%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
@-webkit-keyframes fade-out-down {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}
@keyframes fade-out-down {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
}
@-webkit-keyframes slide-down-2 {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes slide-down-2 {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes slide-up-2 {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
    visibility: hidden;
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes slide-up-2 {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
    visibility: hidden;
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes text-spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes text-spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes slide-down {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
    visibility: hidden;
  }
}
@keyframes slide-down {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
    visibility: hidden;
  }
}
@-webkit-keyframes slide-up {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
    visibility: hidden;
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes slide-up {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
    visibility: hidden;
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
/*==========================================================================*/
/* END VARIABLE                                                             */
/*==========================================================================*/
/*==========================================================================*/
/* START RESET TAG HTML                                                     */
/*==========================================================================*/
body {
  background: rgba(var(--gl-default-background-rgb), 1);
  min-width: 320px;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, table, tr, th, td, figure {
  margin: 0;
  padding: 0;
}

object {
  width: 100% !important;
  height: 100% !important;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  border: none;
  width: 100%;
}

address, caption, cite, code, dfn, em, strong, th, var, optgroup {
  font-style: normal;
  font-weight: inherit;
}

del, ins {
  text-decoration: none;
}

a {
  text-decoration: none;
  color: unset;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

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

abbr, acronym {
  border: 0;
  font-variant: inherit;
}

abbr {
  cursor: help;
}

label {
  cursor: pointer;
}

img {
  vertical-align: top;
}

ol, ul {
  list-style: none;
}

table, input, textarea, select, option {
  line-height: 1.5;
}

strong, th {
  font-weight: bold;
}

em {
  font-style: italic;
}

th, td {
  border: 1px solid;
  padding: 1em;
}

*, ::after, ::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 900px) {
  th, td {
    padding: 0.5em;
  }
}
/*==========================================================================*/
/* END RESET TAG HTML                                                       */
/*==========================================================================*/
html {
  font-size: 16px;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
}

body {
  font-size: clamp(0.8125rem, 0.7589285714rem + 0.2678571429vw, 1rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: var(--gl-default-text-color);
  font-family: var(--gl-default-font);
}
body p {
  letter-spacing: 0.1em;
  line-height: var(--gl-default-paragraph-line-height);
}

select, input, button, textarea {
  font-family: inherit;
  color: inherit;
}

div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, select, p, blockquote, table, tr, th, td {
  font-size: 100%;
  font-weight: inherit;
}

/*==========================================================================*/
/* END SET'UP FONTS                                                         */
/*==========================================================================*/
/*==========================================================================*/
/* START UTILITIES                                                          */
/*==========================================================================*/
@media (max-width: 900px) {
  .pc-only {
    display: none !important;
    visibility: hidden !important;
  }
}
@media (min-width: 901px) {
  .sp-only {
    display: none !important;
    visibility: hidden !important;
  }
}
.clearfix {
  zoom: 1;
}
.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

.invisible {
  visibility: hidden;
}

.ovh,
.ovl {
  overflow: hidden;
}

.fullwidthbreak {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.imgset img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.no-animate {
  -webkit-animation: unset !important;
          animation: unset !important;
  visibility: visible !important;
}

.no-animate-child * {
  -webkit-animation: unset !important;
          animation: unset !important;
  visibility: visible !important;
}

.el-hidden {
  display: none !important;
  visibility: hidden !important;
}

.el-pt-0 {
  padding-top: 0 !important;
}

.el-pb-0 {
  padding-bottom: 0 !important;
}

.el-pl-0 {
  padding-left: 0 !important;
}

.el-pr-0 {
  padding-right: 0 !important;
}

.el-mt-0 {
  margin-top: 0 !important;
}

.el-mb-0 {
  margin-bottom: 0 !important;
}

.el-ml-0 {
  margin-left: 0 !important;
}

.el-mr-0 {
  margin-right: 0 !important;
}

.el-mw-unset {
  max-width: unset !important;
}

.fade-in {
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
}

.fade-in-up {
  -webkit-animation-name: fade-in-up;
          animation-name: fade-in-up;
}

.fade-in-left {
  -webkit-animation-name: fade-in-left;
          animation-name: fade-in-left;
}

.fade-in-right {
  -webkit-animation-name: fade-in-right;
          animation-name: fade-in-right;
}

.animate-prepared {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}

.container {
  overflow: hidden;
}

.container-lg,
.container-md,
.container-sm,
.container-ssm {
  max-width: calc(var(--container-width) * 1px);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-left: auto !important;
  margin-right: auto !important;
}
.container-lg:not(.container-lg),
.container-md:not(.container-lg),
.container-sm:not(.container-lg),
.container-ssm:not(.container-lg) {
  padding: 0 clamp(1.25rem, 0.875rem + 1.1111111111vw, 1.875rem);
}

.container-lg {
  --container-width: var(--gl-bp-desktops);
}

.container-md {
  --container-width: var(--gl-bp-laptops);
}

.container-sm {
  --container-width: var(--gl-bp-small-laptops);
}

.container-ssm {
  --container-width: var(--gl-bp-tablets);
}

.card-link-setup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--zindex-fixed);
}
.card-link-setup a {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  z-index: var(--zindex-plus);
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  visibility: hidden;
}
.overlay.active {
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
}
.overlay.no-active {
  -webkit-animation-name: fade-out;
          animation-name: fade-out;
}

.preloader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  gap: 60px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
  background: white;
}
.preloader__logo {
  max-width: clamp(11.0089616811rem, 9.06509359rem + 9.7193404556vw, 17.8125rem);
  -webkit-animation: ease preloader 2s both;
          animation: ease preloader 2s both;
  opacity: 0;
}
.preloader__loader {
  font-size: clamp(1.25rem, 1.1428571429rem + 0.5357142857vw, 1.625rem);
  font-family: var(--gl-font-marc);
  line-height: 1;
  letter-spacing: 0.1em;
}
.preloader__loader::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.preloader__loader {
  text-transform: uppercase;
  position: relative;
  text-align: center;
  -webkit-animation: ease fade-in 0.3s both;
          animation: ease fade-in 0.3s both;
  opacity: 0;
  -webkit-animation-delay: 2.7s;
          animation-delay: 2.7s;
  position: absolute;
  color: var(--gl-themes-main-color);
}
.preloader__loader::before {
  --c: no-repeat linear-gradient(#fff 0 0);
  height: 2px;
  background: var(--c), var(--c), var(--gl-themes-main-color);
  background-size: 40% 100%;
  -webkit-animation: l16 3s infinite;
          animation: l16 3s infinite;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(calc(100% + 15px));
          transform: translateY(calc(100% + 15px));
}
@-webkit-keyframes l16 {
  0% {
    background-position: -100% 0, -100% 0;
  }
  66% {
    background-position: 166.67% 0, -100% 0;
  }
  100% {
    background-position: 166.67% 0, 166.67% 0;
  }
}
@keyframes l16 {
  0% {
    background-position: -100% 0, -100% 0;
  }
  66% {
    background-position: 166.67% 0, -100% 0;
  }
  100% {
    background-position: 166.67% 0, 166.67% 0;
  }
}
@-webkit-keyframes preloader {
  0% {
    opacity: 0;
    -webkit-filter: blur(20px);
            filter: blur(20px);
  }
  50% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes preloader {
  0% {
    opacity: 0;
    -webkit-filter: blur(20px);
            filter: blur(20px);
  }
  50% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*==========================================================================*/
/* END UTILITIES                                                            */
/*==========================================================================*/
/*==========================================================================*/
/* START HEADER                                                             */
/*==========================================================================*/
.header {
  --header-background: transparent;
  --header-background-dynamic: #fff;
  --header-boxshadow: none;
  --header-boxshadow-dynamic: none;
  --header-logo-maxwidth: 203;
  --header-logo-maxwidth-dynamic: 203;
  --header-logo-content: none;
  --header-logo-content-dynamic: none;
  --header-menu-item-font: var(--gg-font-nose);
  --header-menu-item-hover-color: var(--gl-themes-main-color);
  --header-menu-item-title-font: var(--gl-default-font);
  --header-menu-item-title-color: var(--gl-themes-main-color);
  --header-menu-item-title-weight: 600;
  --header-main-menu-gap: clamp(1.25rem, -0.8395176252rem + 3.7105751391vw, 2.5rem);
  --header-main-menu-item-color: var(--gl-default-text-color);
  --header-main-menu-item-color-dynamic: var(--gl-themes-main-color);
  --header-dropdown-background: #fff;
  --header-dropdown-boxshadow: var(--header-boxshadow-dynamic);
  --header-dropdown-padding: 1rem;
  --header-dropdown-radius: 0.5rem;
  --header-dropdown-top-offset: -0.5rem;
  --header-dropdown-show: hidden;
  --header-dropdown-opa: 0;
  --header-dropdown-tranx: unset;
  --header-dropdown-trans-delay: 0s;
  --header-dropdown-posi-left: unset;
  --header-dropdown-posi-right: unset;
  --header-dropdown-item-background: rgba(var(--gl-themes-main-color-rgb), 0.1);
  --header-dropdown-item-radius: var(--header-dropdown-radius);
  --header-dropdown-item-opacity: 1;
  --header-dropdown-item-color: var(--gl-themes-main-color);
  --header-dropdown-item-padd-tb: 0.4rem;
  --header-dropdown-item-padd-lr: 1rem;
  --header-dropdown-item-af-show: "";
  --header-dropdown-item-af-opa: 0;
  --header-dropdown-item-width: 100%;
  --header-dropdown-sub-menu-radius: var(--header-dropdown-radius);
  --header-dropdown-sub-menu-padd-tb: 0rem;
  --header-dropdown-sub-menu-padd-lr: 0rem;
  --header-dropdown-lv1-column: 1;
  --header-dropdown-lv1-gap: 0.6rem;
  --header-dropdown-lv1-background: transparent;
  --header-dropdown-lv1-boxshadow: none;
  --header-dropdown-lv2-column: 1;
  --header-dropdown-lv2-gap: 0.6rem;
  --header-dropdown-lv2-background: rgba(var(--gl-themes-main-color-rgb), 0.1);
  --header-dropdown-lv2-boxshadow: none;
  --header-hamburger-color: var(--gl-themes-main-color);
  --header-hamburger-color-dynamic: var(--gl-themes-main-color);
  --header-hamburger-background: transparent;
  --header-hamburger-background-dynamic: transparent;
  --header-toggle-background: #fff;
}
.header.scroll-active, .header.hamburger-active {
  --header-logo-maxwidth: var(--header-logo-maxwidth-dynamic);
  --header-logo-content: var(--header-logo-content-dynamic);
  --header-background: var(--header-background-dynamic);
  --header-boxshadow: var(--header-boxshadow-dynamic);
  --header-main-menu-item-color: var(--header-main-menu-item-color-dynamic);
  --header-hamburger-color: var(--header-hamburger-color-dynamic);
  --header-hamburger-background: var(--header-hamburger-background-dynamic);
  --header-logo-trany: 0;
}
.header.scroll-active {
  --header-inner-ani: slide-down-2;
  --header-inner-posi: fixed;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: clamp(0.3862793572rem, 0.3180734593rem + 0.3410294897vw, 0.625rem);
  width: 100%;
  height: var(--gl-header-height);
  background: var(--header-background);
  position: var(--header-inner-posi, absolute);
  z-index: var(--zindex-pro);
  top: 0;
  left: 0;
  -webkit-box-shadow: var(--header-boxshadow);
          box-shadow: var(--header-boxshadow);
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-animation-name: var(--header-inner-ani, unset);
          animation-name: var(--header-inner-ani, unset);
}
.header__logo {
  max-width: calc(var(--header-logo-maxwidth) * 1px);
  width: calc(var(--header-logo-maxwidth) * 100% / var(--gl-bp-desktops));
  margin-left: clamp(1.25rem, -2.9290352505rem + 7.4211502783vw, 3.75rem);
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
  -webkit-transform: translateY(var(--header-logo-trany, 40%));
          transform: translateY(var(--header-logo-trany, 40%));
}
@media (max-width: 900px) {
  .header__logo {
    max-width: calc(var(--header-logo-maxwidth) * 1px / 1.618);
    width: auto;
  }
}
.header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo img {
  content: var(--header-logo-content);
}
.header__nav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: clamp(1.9313967862rem, 1.5903672965rem + 1.7051474483vw, 3.125rem);
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: var(--header-main-menu-gap);
}
.header__menu a {
  display: block;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-family: var(--header-menu-item-font);
}
.header__menu .menu-item-has-children {
  position: relative;
}
.header__menu > .menu-item-has-children:has(.-xl) {
  position: static;
}
.header__menu > .menu-item-has-children .main-menu-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.header__menu > .menu-item-has-children .main-menu-link::after {
  display: block;
  content: "";
  width: clamp(0.3125rem, 0.1035482375rem + 0.3710575139vw, 0.4375rem);
  aspect-ratio: 1/0.8660254038;
  -webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
          clip-path: polygon(50% 100%, 100% 0, 0 0);
  background: currentColor;
  margin-top: 4px;
}
@media (max-width: 1280px) {
  .header__menu > .menu-item-has-children .main-menu-link::after {
    position: absolute;
    margin-top: 3em;
  }
}
.header__menu .main-menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__menu .main-menu-item:first-child {
  --header-dropdown-posi-left: 0;
  --header-dropdown-tranx: -10%;
}
.header__menu .main-menu-item:last-child {
  --header-dropdown-posi-right: 0;
  --header-dropdown-tranx: 10%;
}
.header__menu .main-menu-item:nth-last-child(2):not(:first-child) {
  --header-dropdown-posi-right: 0;
  --header-dropdown-tranx: 20%;
}
.header__menu .main-menu-item:nth-child(2):nth-last-child(2) {
  --header-dropdown-posi-left: 50%;
  --header-dropdown-tranx: -50%;
}
.header__menu .main-menu-item:not(:first-child):not(:last-child):not(:nth-last-child(2)) {
  --header-dropdown-posi-left: 50%;
  --header-dropdown-tranx: -50%;
}
.header__menu .main-menu-item:hover > .header__dropdown {
  --header-dropdown-top-offset: 0.5rem;
  --header-dropdown-show: visible;
  --header-dropdown-opa: 1;
  --header-dropdown-trans-delay: 0.15s;
}
.header__menu .main-menu-link {
  font-size: clamp(0.6875rem, 0.5982142857rem + 0.4464285714vw, 1rem);
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: var(--header-main-menu-item-color);
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
  height: var(--gl-header-height);
}
.header__dropdown {
  width: var(--header-dropdown-width);
  background: var(--header-dropdown-background);
  position: absolute;
  z-index: var(--zindex-fixed);
  top: calc(100% - var(--header-dropdown-top-offset));
  left: var(--header-dropdown-posi-left);
  right: var(--header-dropdown-posi-right);
  padding: var(--header-dropdown-padding);
  -webkit-box-shadow: var(--header-dropdown-boxshadow);
          box-shadow: var(--header-dropdown-boxshadow);
  border-radius: 10px;
  visibility: var(--header-dropdown-show);
  opacity: var(--header-dropdown-opa);
  -webkit-transform: translateX(var(--header-dropdown-tranx));
          transform: translateX(var(--header-dropdown-tranx));
  -webkit-transition: var(--gl-trans-3e);
  transition: var(--gl-trans-3e);
  -webkit-transition-delay: var(--header-dropdown-trans-delay);
          transition-delay: var(--header-dropdown-trans-delay);
}
.header__dropdown .sub-menu {
  padding: var(--header-dropdown-sub-menu-padd-tb) var(--header-dropdown-sub-menu-padd-lr);
  border-radius: var(--header-dropdown-sub-menu-radius);
}
.header__dropdown .sub-menu.-lv1 {
  --header-dropdown-item-width: calc((100% - (var(--header-dropdown-sub-menu-padd-lr) * 2) - (var(--header-dropdown-lv1-gap) * (var(--header-dropdown-lv1-column) - 1))) / var(--header-dropdown-lv1-column));
  background: var(--header-dropdown-lv1-background);
  -webkit-box-shadow: var(--header-dropdown-lv1-boxshadow);
          box-shadow: var(--header-dropdown-lv1-boxshadow);
}
.header__dropdown .sub-menu.-lv2 {
  --header-dropdown-item-background: #fff;
  --header-dropdown-item-opacity: 0.7;
  --header-dropdown-item-width: 100%;
  --header-dropdown-sub-menu-padd-tb: 0.5rem 0.6rem;
  --header-dropdown-sub-menu-padd-lr: 1rem 0.6rem ;
  display: grid;
  grid-template-columns: repeat(var(--header-dropdown-lv2-column), 1fr);
  gap: var(--header-dropdown-lv2-gap);
  background: var(--header-dropdown-lv2-background);
  -webkit-box-shadow: var(--header-dropdown-lv2-boxshadow);
          box-shadow: var(--header-dropdown-lv2-boxshadow);
}
.header__dropdown .menu-item-gap {
  width: var(--header-dropdown-lv1-gap);
}
.header__dropdown .sub-menu-item {
  width: var(--header-dropdown-item-width);
}
.header__dropdown .sub-menu-item.menu-item-has-children {
  --header-dropdown-item-af-show: none;
}
.header__dropdown .sub-menu-item.menu-item-has-children > .sub-menu-link {
  font-size: clamp(0.625rem, 0.4821428571rem + 0.7142857143vw, 1.125rem);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  color: var(--gl-themes-main-color-2);
  font-family: var(--gl-font-marc);
}
.header__dropdown .sub-menu-item.menu-item-has-children > .sub-menu {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.header__dropdown .sub-menu-item.col-d {
  --header-dropdown-item-width: calc((100% - (var(--header-dropdown-sub-menu-padd-lr) * 2) - (var(--header-dropdown-lv1-gap) * ((var(--header-dropdown-lv1-column) / 2) - 1))) / (var(--header-dropdown-lv1-column) / 2));
  --header-dropdown-lv2-column: 2;
}
.header__dropdown .sub-menu-item.col-t {
  --header-dropdown-item-width: calc((100% - (var(--header-dropdown-sub-menu-padd-lr) * 2) - (var(--header-dropdown-lv1-gap) * ((var(--header-dropdown-lv1-column) - 3) / 2))) * ((var(--header-dropdown-lv1-column) - 1) / var(--header-dropdown-lv1-column)));
  --header-dropdown-lv2-column: 3;
}
.header__dropdown .sub-menu-item.col-f {
  --header-dropdown-item-width: calc(100% - (var(--header-dropdown-sub-menu-padd-lr) * 2));
  --header-dropdown-lv2-column: var(--header-dropdown-lv1-column);
}
.header__dropdown .sub-menu-link {
  font-size: clamp(0.625rem, 0.5535714286rem + 0.3571428571vw, 0.875rem);
}
.header__dropdown .sub-menu-link::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.header__dropdown .sub-menu-link {
  padding: var(--header-dropdown-item-padd-tb) var(--header-dropdown-item-padd-lr);
  color: var(--header-dropdown-item-color);
  border-radius: var(--header-dropdown-item-radius);
  background: var(--header-dropdown-item-background);
  opacity: var(--header-dropdown-item-opacity);
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.header__dropdown .sub-menu-link::after {
  content: var(--header-dropdown-item-af-show);
  top: 0;
  left: 0;
  background: var(--header-menu-item-hover-color);
  opacity: var(--header-dropdown-item-af-opa);
  z-index: -9;
  -webkit-transition: inherit;
  transition: inherit;
}
.header__dropdown .sub-menu-link[href="#"], .header__dropdown .sub-menu-link[href=""] {
  cursor: text;
}
.header__dropdown .sub-menu-link[href]:not([href="#"]):not([href=""]):hover {
  --header-dropdown-item-opacity: 1;
  --header-dropdown-item-af-opa: 0.25;
}
.header__dropdown.-sm {
  --header-dropdown-width: clamp(9.2707045735rem, 7.6337630231rem + 8.1847077521vw, 15rem);
  --header-dropdown-lv1-column: 1;
}
.header__dropdown.-md {
  --header-dropdown-width: clamp(19.3139678616rem, 15.9036729649rem + 17.0514744835vw, 31.25rem);
  --header-dropdown-lv1-column: 2;
}
.header__dropdown.-lg {
  --header-dropdown-width: clamp(20rem, 12.3214285714rem + 38.3928571429vw, 46.875rem);
  --header-dropdown-lv1-column: 3;
}
.header__dropdown.-xl {
  --header-dropdown-width: clamp(20rem, 0.7142857143rem + 96.4285714286vw, 87.5rem);
  --header-dropdown-lv1-column: 4;
  --header-dropdown-posi-left: 50%;
  --header-dropdown-tranx: -50%;
  overflow-y: auto;
  max-height: calc(100vh - var(--gl-header-height) - var(--header-dropdown-top-offset));
}
.header__hamburger {
  --hamburger-active-trans-value: 8px;
  --hamburger-lines-height: 1px;
  --hamburger-lines-gap: 7px;
  background: var(--header-hamburger-background);
  margin-right: clamp(0.625rem, 0.1736651835rem + 1.3348164627vw, 1.375rem);
  position: relative;
  z-index: 1;
  height: 100%;
  width: clamp(2.5rem, 1.7477753059rem + 2.2246941046vw, 3.75rem);
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
}
@media (max-width: 900px) {
  .header__hamburger {
    --hamburger-active-trans-value: 7px;
    --hamburger-lines-gap: 6px;
  }
}
.header__hamburger .hamburger-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 22px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--hamburger-lines-gap);
}
.header__hamburger .hamburger-btn span {
  display: block;
  width: 100%;
  height: var(--hamburger-lines-height);
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3);
  border-radius: 200px;
  background: var(--header-hamburger-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.header__hamburger .hamburger-btn.active span:nth-child(1) {
  -webkit-animation-name: active-lines-1;
          animation-name: active-lines-1;
}
.header__hamburger .hamburger-btn.active span:nth-child(2) {
  -webkit-animation-name: active-lines-2;
          animation-name: active-lines-2;
}
.header__hamburger .hamburger-btn.active span:nth-child(3) {
  -webkit-animation-name: active-lines-3;
          animation-name: active-lines-3;
}
.header__hamburger .hamburger-btn.no-active span:nth-child(1) {
  -webkit-animation-name: no-active-lines-1;
          animation-name: no-active-lines-1;
}
.header__hamburger .hamburger-btn.no-active span:nth-child(2) {
  -webkit-animation-name: no-active-lines-2;
          animation-name: no-active-lines-2;
}
.header__hamburger .hamburger-btn.no-active span:nth-child(3) {
  -webkit-animation-name: no-active-lines-3;
          animation-name: no-active-lines-3;
}
@-webkit-keyframes active-lines-1 {
  0% {
    top: 0;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    top: var(--hamburger-active-trans-value);
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    top: var(--hamburger-active-trans-value);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
@keyframes active-lines-1 {
  0% {
    top: 0;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    top: var(--hamburger-active-trans-value);
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    top: var(--hamburger-active-trans-value);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
@-webkit-keyframes no-active-lines-1 {
  0% {
    top: var(--hamburger-active-trans-value);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  50% {
    top: var(--hamburger-active-trans-value);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    top: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes no-active-lines-1 {
  0% {
    top: var(--hamburger-active-trans-value);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  50% {
    top: var(--hamburger-active-trans-value);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    top: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@-webkit-keyframes active-lines-2 {
  50% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@keyframes active-lines-2 {
  50% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
@-webkit-keyframes no-active-lines-2 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes no-active-lines-2 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes active-lines-3 {
  0% {
    bottom: 0;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    bottom: var(--hamburger-active-trans-value);
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    bottom: var(--hamburger-active-trans-value);
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}
@keyframes active-lines-3 {
  0% {
    bottom: 0;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    bottom: var(--hamburger-active-trans-value);
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    bottom: var(--hamburger-active-trans-value);
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}
@-webkit-keyframes no-active-lines-3 {
  0% {
    bottom: var(--hamburger-active-trans-value);
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  50% {
    bottom: var(--hamburger-active-trans-value);
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    bottom: 0;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes no-active-lines-3 {
  0% {
    bottom: var(--hamburger-active-trans-value);
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  50% {
    bottom: var(--hamburger-active-trans-value);
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    bottom: 0;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
.header__toggle {
  position: fixed;
  z-index: var(--zindex-plus);
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  top: 0;
  left: 0;
  background: var(--header-toggle-background);
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  visibility: hidden;
  padding: 0 20px;
}
.header__toggle.active {
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
}
.header__toggle.no-active {
  -webkit-animation-name: fade-out;
          animation-name: fade-out;
}

.customize-menu {
  --cusme-radius: 0.5rem;
  --cusme-main-gap: clamp(3.125rem, -3.0390769944rem + 10.9461966605vw, 6.8125rem);
  --cusme-sub-gap: clamp(0.5407911001rem, 0.445302843rem + 0.4774412855vw, 0.875rem);
  --cusme-total-columns: 4;
  --cusme-main-menu-item-column: 1;
  --cusme-sub-menu-item-lv2-column: 2;
  --cusme-sub-menu-item-background: none;
  --cusme-sub-menu-item-color: currentColor;
  --cusme-sub-menu-item-opa: 1;
  --cusme-sub-menu-item-padding: 0rem;
  --cusme-sub-menu-item-lv1-padding: 0.6rem 0.6rem 1rem;
  --cusme-sub-menu-item-lv1-background: rgba(var(--gl-themes-main-color-rgb), 0.1);
  max-width: calc(var(--gl-bp-laptops) * 1px);
}
@media (max-width: 1024px) {
  .customize-menu {
    --cusme-main-gap: 2rem;
    --cusme-sub-gap: 0.6rem;
  }
}
@media (max-width: 900px) {
  .customize-menu {
    --cusme-radius: 0.3rem;
    --cusme-total-columns: 2;
    --cusme-main-menu-item-column: 2;
  }
}
@media (max-width: 360px) {
  .customize-menu {
    --cusme-total-columns: 1;
    --cusme-main-menu-item-column: 1;
    --cusme-sub-menu-item-lv2-column: 1;
  }
}
.customize-menu .main-menu-item-gap {
  width: var(--cusme-main-gap);
}
.customize-menu .sub-menu-item-gap {
  width: var(--cusme-sub-gap);
}
.customize-menu .main-menu-item {
  width: calc(100% * var(--cusme-main-menu-item-column) / var(--cusme-total-columns) - var(--cusme-main-gap) * (var(--cusme-total-columns) - var(--cusme-main-menu-item-column)) / var(--cusme-total-columns));
}
@media (min-width: 901px) {
  .customize-menu .main-menu-item.col-d {
    --cusme-main-menu-item-column: 2;
    --cusme-sub-menu-item-lv2-column: 1 !important;
  }
  .customize-menu .main-menu-item.col-t {
    --cusme-main-menu-item-column: 3;
  }
  .customize-menu .main-menu-item.col-f {
    --cusme-main-menu-item-column: 4;
  }
}
.customize-menu .main-menu-item.menu-item-has-children:not(.col-d):not(.col-t):not(.col-f) .sub-menu-item.menu-item-has-children {
  --cusme-main-menu-item-column: 1;
  --cusme-sub-menu-item-lv2-column: 1;
}
.customize-menu .main-menu-link {
  font-size: clamp(1.25rem, 1.1785714286rem + 0.3571428571vw, 1.5rem);
  font-family: var(--gl-font-marc);
  text-transform: uppercase;
  color: var(--gl-themes-main-color-2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0.5794190358rem, 0.4771101889rem + 0.5115442345vw, 0.9375rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.customize-menu .main-menu-link[href="#"], .customize-menu .main-menu-link[href=""] {
  cursor: text;
}
.customize-menu .main-menu-link::after {
  display: block;
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background: var(--gl-themes-main-color-2);
}
.customize-menu .sub-menu-item {
  width: calc((100% - var(--cusme-sub-gap) * (var(--cusme-main-menu-item-column) - 1)) / (var(--cusme-main-menu-item-column)));
}
.customize-menu .sub-menu-item.menu-item-has-children {
  --cusme-main-menu-item-column: 2;
}
@media (max-width: 900px) {
  .customize-menu .sub-menu-item.menu-item-has-children {
    --cusme-main-menu-item-column: 1;
  }
}
.customize-menu .sub-menu-item.menu-item-has-children {
  padding: var(--cusme-sub-menu-item-lv1-padding);
  border-radius: var(--cusme-radius);
  background: var(--cusme-sub-menu-item-lv1-background);
  backdrop-filter: blur(5px);
}
.customize-menu .sub-menu-item.menu-item-has-children > .sub-menu-link {
  font-size: clamp(1rem, 0.9285714286rem + 0.3571428571vw, 1.25rem);
  font-family: var(--gl-font-marc);
  color: var(--gl-themes-main-color-2);
}
.customize-menu .sub-menu-item:not(.menu-item-has-children) .sub-menu-link {
  font-size: clamp(0.75rem, 0.7142857143rem + 0.1785714286vw, 0.875rem);
  padding: var(--cusme-sub-menu-item-padding);
  background: var(--cusme-sub-menu-item-background);
  color: var(--cusme-sub-menu-item-color);
  opacity: var(--cusme-sub-menu-item-opa);
}
.customize-menu .sub-menu-link {
  display: inline-block;
  position: relative;
  z-index: 1;
  -webkit-transition: var(--gl-trans-3e);
  transition: var(--gl-trans-3e);
}
.customize-menu .sub-menu-link[href="#"], .customize-menu .sub-menu-link[href=""] {
  cursor: text;
}
.customize-menu .sub-menu-link[href]:not([href="#"]):not([href=""]):hover {
  --cusme-sub-menu-item-opa: 1;
}
.customize-menu .sub-menu {
  margin-top: clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem);
}
.customize-menu .sub-menu.-lv2 {
  --cusme-sub-menu-item-opa: 0.7;
  --cusme-sub-menu-item-color: var(--gl-themes-main-color);
  display: grid;
  grid-template-columns: repeat(var(--cusme-sub-menu-item-lv2-column), 1fr);
  gap: var(--cusme-sub-gap);
}
.customize-menu .sub-menu.-lv2 .sub-menu-item {
  width: 100%;
}
.customize-menu.-list-style-dotted {
  --dot-size: 0.3rem;
  --dot-color: var(--gl-themes-main-color);
  --cusme-sub-menu-item-padding: 0rem 0.8rem;
}
@media (max-width: 900px) {
  .customize-menu.-list-style-dotted {
    --dot-size: 0.25rem;
  }
}
.customize-menu.-list-style-dotted .sub-menu-item:not(.menu-item-has-children) .sub-menu-link::after {
  display: block;
  content: "";
  position: absolute;
  width: var(--dot-size);
  height: var(--dot-size);
}
.customize-menu.-list-style-dotted .sub-menu-item:not(.menu-item-has-children) .sub-menu-link::after {
  z-index: -1;
  top: 0.58rem;
  left: 0;
  background: var(--dot-color);
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .customize-menu.-list-style-dotted .sub-menu-item:not(.menu-item-has-children) .sub-menu-link::after {
    top: 0.45rem;
  }
}
.customize-menu.-list-style-dotted .sub-menu-item:not(.menu-item-has-children) .sub-menu-link:hover {
  color: var(--gl-themes-main-color);
}
.customize-menu.-list-style-card {
  --cusme-sub-menu-item-padding: 0.5rem 0.8rem;
  --cusme-sub-menu-item-background: rgba(var(--gl-themes-main-color-rgb), 0.1);
  --cusme-sub-menu-item-color: var(--gl-themes-main-color);
  --af-opa: 0;
  --ad-show: none;
}
@media (max-width: 1024px) {
  .customize-menu.-list-style-card {
    --cusme-sub-menu-item-padding: 0.4rem 0.6rem;
  }
}
.customize-menu.-list-style-card .sub-menu.-lv1 {
  --ad-show: '';
}
.customize-menu.-list-style-card .sub-menu.-lv2 {
  --ad-show: none;
}
.customize-menu.-list-style-card .sub-menu-link::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.customize-menu.-list-style-card .sub-menu-link::after {
  content: var(--ad-show);
  top: 0;
  left: 0;
  background: var(--gl-themes-main-color);
  z-index: -1;
  border-radius: inherit;
  opacity: var(--af-opa);
  -webkit-transition: var(--gl-trans-3e);
  transition: var(--gl-trans-3e);
}
.customize-menu.-list-style-card .sub-menu-link[href="#"], .customize-menu.-list-style-card .sub-menu-link[href=""] {
  --ad-show: none;
}
.customize-menu.-list-style-card .sub-menu-link[href]:not([href="#"]):not([href=""]):hover {
  --af-opa: 0.25;
}
.customize-menu.-list-style-card .sub-menu-item:not(.menu-item-has-children) .sub-menu-link {
  display: block;
  border-radius: var(--cusme-radius);
}
.customize-menu.-list-style-card .sub-menu-item.menu-item-has-children {
  --cusme-sub-menu-item-background: #fff;
}
.customize-menu.-hamburger {
  margin: calc(var(--gl-header-height) * 2) auto var(--gl-header-height);
}
.customize-menu.-footer.-sm {
  --cusme-total-columns: 2;
  --cusme-main-menu-item-column: 2;
}
@media (min-width: 901px) {
  .customize-menu.-footer.-sm .main-menu-item {
    --cusme-main-menu-item-column: 2;
    --cusme-sub-menu-item-lv2-column: 1 !important;
  }
}
.customize-menu.-nosubmenu:not(.-footer) {
  --cusme-total-columns: 1;
  --cusme-main-menu-item-column: 1;
}
.customize-menu.-nosubmenu:not(.-footer) .main-menu-item {
  text-align: center;
}

.menu-item-is-banner img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--cusme-radius);
}
.menu-item-is-banner > a {
  padding: 0 !important;
}

.menu-item-is-custom-html > a {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 !important;
  margin: 0 !important;
  z-index: var(--zindex-fixed) !important;
  background: unset !important;
}
.menu-item-is-custom-html > a::before, .menu-item-is-custom-html > a::after {
  content: none !important;
}

.menu-item-social.-tel {
  margin-left: auto;
}
.menu-item-social .gg-io {
  width: clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem);
}

/*==========================================================================*/
/* END HEADER                                                               */
/*==========================================================================*/
/*!
 * Grits-Themes v2.1.0
 * @Author: phamcuong96
 */
/*==========================================================================*/
/* START MAIN VISUAL                                                        */
/*==========================================================================*/
.main-visual {
  --main-visual-mask-color: rgba(0,0,0,0.4);
  --main-visual-background-color: #0000;
  --main-visual-title-margin-lr: clamp(3.0902348578rem, 2.5445876744rem + 2.7282359174vw, 5rem);
  --main-visual-title-margin: calc(var(--gl-header-height) * 1.5) var(--main-visual-title-margin-lr);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: var(--gl-main-visual-height);
}
@media (max-width: 900px) {
  .main-visual {
    --main-visual-title-margin-lr: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.main-visual__catch {
  --catch-margin-lr: clamp(2.5rem, -2.0133481646rem + 13.3481646274vw, 10rem);
  margin: calc(var(--gl-header-height) * 1.5) var(--catch-margin-lr);
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (min-width: 901px) {
  .main-visual__catch {
    -webkit-transform: translateY(clamp(-3.75rem, -1.9084407558rem + -2.046176938vw, -2.3176761434rem));
            transform: translateY(clamp(-3.75rem, -1.9084407558rem + -2.046176938vw, -2.3176761434rem));
  }
}
@media (max-width: 900px) {
  .main-visual__catch {
    -webkit-transform: translateY(clamp(2.3176761434rem, 1.9084407558rem + 2.046176938vw, 3.75rem));
            transform: translateY(clamp(2.3176761434rem, 1.9084407558rem + 2.046176938vw, 3.75rem));
  }
}
@media (max-width: 360px) {
  .main-visual__catch {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.main-visual__catch .__catch {
  font-size: clamp(1.3125rem, 1.0446428571rem + 1.3392857143vw, 2.25rem);
  font-family: var(--gl-font-nose);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.16em;
}
@media (max-width: 360px) {
  .main-visual__catch .__catch {
    letter-spacing: 0em;
  }
}
.main-visual__catch .__sub {
  font-size: clamp(0.8125rem, 0.7589285714rem + 0.2678571429vw, 1rem);
  line-height: 2.2;
  margin-top: clamp(0.8498145859rem, 0.6997616105rem + 0.7502648773vw, 1.375rem);
}
.main-visual__title {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: var(--main-visual-title-margin);
  max-width: calc(var(--gl-bp-laptops) * 1px);
}
.main-visual .carousel::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.main-visual .carousel {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -999;
  bottom: 0;
  right: 0;
}
.main-visual .carousel .carousel-cell {
  margin: 0 auto;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
  width: 100%;
  height: 100%;
}
.main-visual .carousel .carousel-cell img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-visual .carousel.-custom {
  --carousel-width: 763;
}
@media (min-width: 901px) {
  .main-visual .carousel.-custom {
    width: calc(var(--carousel-width) * 100% / 1440);
    height: calc(100% - var(--gl-header-height));
    -webkit-transform: translateX(clamp(-5rem, -2.5445876744rem + -2.7282359174vw, -3.0902348578rem));
            transform: translateX(clamp(-5rem, -2.5445876744rem + -2.7282359174vw, -3.0902348578rem));
  }
}
@media (max-width: 900px) {
  .main-visual .carousel.-custom {
    padding: 0 clamp(1.25rem, 0.3081476323rem + 2.7855153203vw, 1.875rem);
  }
}
.main-visual .carousel.-custom .carousel-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 900px) {
  .main-visual .carousel.-custom .carousel-cell {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.main-visual .carousel.-custom .carousel-cell img {
  height: auto;
}
.main-visual .carousel.-custom .__images.-main {
  width: calc(62600% / var(--carousel-width));
}
@media (max-width: 900px) {
  .main-visual .carousel.-custom .__images.-main {
    -webkit-transform: translateY(clamp(-4.0625rem, -2.0674774854rem + -2.2166916829vw, -2.510815822rem));
            transform: translateY(clamp(-4.0625rem, -2.0674774854rem + -2.2166916829vw, -2.510815822rem));
    width: 69.5652173913%;
  }
}
.main-visual .carousel.-custom .__images.-sub {
  width: calc(32700% / var(--carousel-width));
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  -webkit-box-shadow: var(--gl-boxshadow-1);
          box-shadow: var(--gl-boxshadow-1);
}
@media (min-width: 901px) {
  .main-visual .carousel.-custom .__images.-sub {
    -webkit-transform: translateY(clamp(-3.625rem, -1.8448260639rem + -1.9779710401vw, -2.2404202719rem));
            transform: translateY(clamp(-3.625rem, -1.8448260639rem + -1.9779710401vw, -2.2404202719rem));
  }
}
@media (max-width: 900px) {
  .main-visual .carousel.-custom .__images.-sub {
    width: 44.6376811594%;
  }
}
@media (min-width: 901px) {
  .main-visual .carousel.-custom .__images.-main img {
    min-height: clamp(28.125rem, 25.8035714286rem + 11.6071428571vw, 36.25rem);
  }
  .main-visual .carousel.-custom .__images.-sub img {
    min-height: clamp(17.5rem, 16.6964285714rem + 4.0178571429vw, 20.3125rem);
  }
}
.main-visual .background-videos {
  position: absolute;
  z-index: -999;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.main-visual .background-videos video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@-webkit-keyframes mv-zoom-out {
  0% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  71% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes mv-zoom-out {
  0% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  71% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes mv-blur {
  0% {
    backdrop-filter: blur(32px);
  }
  13% {
    backdrop-filter: blur(0);
  }
}
@keyframes mv-blur {
  0% {
    backdrop-filter: blur(32px);
  }
  13% {
    backdrop-filter: blur(0);
  }
}
.main-visual.-mask::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.main-visual.-mask::after {
  top: 0;
  left: 0;
  background: var(--main-visual-mask-color);
  z-index: 0;
}
.main-visual.-color {
  background-color: var(--main-visual-background-color);
}
.main-visual.-image {
  background-image: url(../images/under-mainvisual-pic-1920.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 clamp(1.25rem, -5.0185528757rem + 11.1317254174vw, 5rem);
}
.main-visual.-custom-height {
  --gl-main-visual-height: 420px;
  --main-visual-title-margin:
  calc(var(--gl-header-height) * 2)
  var(--main-visual-title-margin-lr)
  calc(var(--gl-header-height) * 1.5);
  min-height: var(--gl-main-visual-height);
  height: auto;
}
@media (max-width: 900px) {
  .main-visual.-custom-height {
    min-height: calc(var(--gl-main-visual-height) * 2 / 3);
  }
}
.main-visual .kazari.-k1 {
  width: clamp(1.0043263288rem, 0.8269909942rem + 0.8866766731vw, 1.625rem);
  bottom: 19%;
  right: 21%;
}
@media (max-width: 900px) {
  .main-visual .kazari.-k1 {
    bottom: 5%;
  }
}
.main-visual .kazari.-k2 {
  width: clamp(2.1631644005rem, 1.7812113721rem + 1.9097651422vw, 3.5rem);
  bottom: 12%;
  right: 16%;
}
@media (max-width: 900px) {
  .main-visual .kazari.-k2 {
    bottom: -2%;
  }
}
.main-visual .kazari.-k3 {
  width: clamp(1.5451174289rem, 1.2722938372rem + 1.3641179587vw, 2.5rem);
  bottom: 8.5%;
  right: 20.8%;
}
@media (max-width: 900px) {
  .main-visual .kazari.-k3 {
    bottom: -7%;
  }
}

/*==========================================================================*/
/* END MAIN VISUAL                                                          */
/*==========================================================================*/
/*==========================================================================*/
/* START FOOTER                                                             */
/*==========================================================================*/
.footer-slider .infinite-slider {
  background: none;
}

.footer-contact {
  padding: 80px 0;
  position: relative;
}
@media (max-width: 900px) {
  .footer-contact {
    padding: 40px 0;
  }
}
.footer-contact::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 200px);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, #ebdfd9), to(transparent));
  background: -webkit-linear-gradient(bottom, #ebdfd9 30%, transparent 100%);
  background: linear-gradient(to top, #ebdfd9 30%, transparent 100%);
  z-index: -999;
}
.footer-contact .list-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem) clamp(0.2317676143rem, 0.1908440756rem + 0.2046176938vw, 0.375rem);
  max-width: 1118px;
  margin: 0 auto;
}
@media (max-width: 540px) {
  .footer-contact .list-banner {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer-contact .list-banner .banner {
  width: 100%;
  position: relative;
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
  max-width: clamp(17.5rem, 15.8928571429rem + 8.0357142857vw, 23.125rem);
  justify-self: center;
}
.footer-contact .list-banner .banner:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.footer-contents {
  padding: 110px 0 115px;
  position: relative;
}
@media (max-width: 900px) {
  .footer-contents {
    padding: 60px 0;
  }
}
.footer-contents .container-md {
  max-width: 1118px;
}
.footer-contents__info {
  margin-top: clamp(2.3176761434rem, 1.9084407558rem + 2.046176938vw, 3.75rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: clamp(2.3176761434rem, 1.9084407558rem + 2.046176938vw, 3.75rem);
}
@media (max-width: 900px) {
  .footer-contents__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
  }
}
.footer-contents__access {
  width: 100%;
}
@media (min-width: 901px) {
  .footer-contents__access {
    width: 49%;
  }
}
@media (max-width: 900px) {
  .footer-contents__logo {
    text-align: center;
  }
}
.footer-contents__logo a {
  display: inline-block;
}
.footer-contents__logo span {
  display: block;
  letter-spacing: 0.1em;
}
@media (max-width: 900px) {
  .footer-contents__logo span {
    text-align: center;
  }
}
.footer-contents__logo .__jp {
  font-size: clamp(1.125rem, 0.9821428571rem + 0.7142857143vw, 1.625rem);
  font-family: var(--gl-font-nose);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.footer-contents__logo .__en {
  font-size: clamp(0.625rem, 0.5892857143rem + 0.1785714286vw, 0.75rem);
  font-family: var(--gl-font-marc);
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--gl-themes-main-color-2);
  margin-top: clamp(0.2703955501rem, 0.2226514215rem + 0.2387206428vw, 0.4375rem);
}
.footer-contents__addr {
  margin-top: clamp(0.9656983931rem, 0.7951836482rem + 0.8525737242vw, 1.5625rem);
}
.footer-contents__addr P {
  line-height: 1.8;
}
@media (max-width: 900px) {
  .footer-contents__addr P {
    text-align: center;
  }
}
.footer-contents__banner {
  max-width: clamp(16.8417799753rem, 13.8680028254rem + 14.8688857496vw, 27.25rem);
  margin-top: clamp(1.8541409147rem, 1.5267526046rem + 1.6369415504vw, 3rem);
}
@media (max-width: 900px) {
  .footer-contents__banner {
    margin-left: auto;
    margin-right: auto;
  }
}
.footer-contents__wktime {
  width: 100%;
  margin-top: clamp(0rem, -0.8358070501rem + 1.4842300557vw, 0.5rem);
}
@media (min-width: 901px) {
  .footer-contents__wktime {
    width: 51%;
  }
}

.footer-copyright {
  padding: 20px 0;
  background: #c0a27a;
}
@media (max-width: 900px) {
  .footer-copyright {
    padding: 15px 0 80px;
  }
}
.footer-copyright .container-md {
  max-width: 1118px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.0043263288rem, 0.8269909942rem + 0.8866766731vw, 1.625rem);
}
@media (min-width: 1441px) {
  .footer-copyright .container-md {
    max-width: unset;
  }
}
.footer-copyright img {
  width: clamp(4.5967243511rem, 3.7850741656rem + 4.0582509271vw, 7.4375rem);
}
.footer-copyright p {
  font-size: clamp(0.5625rem, 0.5267857143rem + 0.1785714286vw, 0.6875rem);
  line-height: 1.5;
  color: #fff;
  border-left: 1px solid currentColor;
  padding-left: clamp(0.8498145859rem, 0.6997616105rem + 0.7502648773vw, 1.375rem);
}

/*==========================================================================*/
/* END FOOTER                                                               */
/*==========================================================================*/
/*==========================================================================*/
/* START FLICKITY DEFAULT                                                   */
/*==========================================================================*/
.flickity-enabled {
  position: relative;
}
.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.flickity-enabled.is-draggable {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.flickity-enabled.is-draggable .flickity-viewport {
  cursor: -webkit-grab;
  cursor: grab;
}
.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.flickity-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  color: #333;
}
.flickity-button:hover {
  background: white;
  cursor: pointer;
}
.flickity-button:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 5px #19F;
          box-shadow: 0 0 0 5px #19F;
}
.flickity-button:active {
  opacity: 0.6;
}
.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.flickity-prev-next-button.previous {
  left: 10px;
}
.flickity-prev-next-button.next {
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}
.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

.flickity-enabled.is-fade .flickity-slider > * {
  pointer-events: none;
  z-index: 0;
}
.flickity-enabled.is-fade .flickity-slider > .is-selected {
  pointer-events: auto;
  z-index: 1;
}

/*==========================================================================*/
/* END FLICKITY DEFAULT                                                     */
/*==========================================================================*/
/*==========================================================================*/
/* START ICONS                                                              */
/*==========================================================================*/
.gg-io {
  display: inline-block;
  width: clamp(0.9656983931rem, 0.7951836482rem + 0.8525737242vw, 1.5625rem);
  aspect-ratio: 25/var(--h, 25);
  background: var(--url) center/contain no-repeat;
}

.gg-tel {
  --url: url(../images/gg-item-tel.webp);
}

.gg-insta {
  --url: url(../images/gg-insta.webp);
}

.gg-insta-brown {
  background: #c0a27a;
  -webkit-mask: url(../images/gg-insta.webp) center/contain no-repeat;
          mask: url(../images/gg-insta.webp) center/contain no-repeat;
}

.gg-scroll-down {
  --url: url(../images/home-mainvisual-scroll-arrow.webp);
  aspect-ratio: 11/36;
}

.gg-arrow-right {
  --url: url(../images/gg-arrow-right.webp);
  aspect-ratio: 12/9;
}

/*==========================================================================*/
/* END ICONS                                                                */
/*==========================================================================*/
/*==========================================================================*/
/* FLOATING ACTION BUTTONS (FABS)                                           */
/*==========================================================================*/
:root {
  --fabs-btn-height: clamp(2.3176761434rem, 1.9084407558rem + 2.046176938vw, 3.75rem);
}
@media (max-width: 900px) {
  :root {
    --fabs-btn-height: 65px;
  }
}

.fabs-sidebar {
  --fabs-radius: 2000px;
  --fabs-icon-width: clamp(0.9656983931rem, 0.7951836482rem + 0.8525737242vw, 1.5625rem);
  --fabs-btn-width: clamp(2.3176761434rem, 1.9084407558rem + 2.046176938vw, 3.75rem);
  --fabs-btn-io-width: clamp(2.3176761434rem, 1.9084407558rem + 2.046176938vw, 3.75rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  z-index: var(--zindex-fixed);
}
@media (min-width: 901px) {
  .fabs-sidebar {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    bottom: 6.2%;
    right: clamp(0.3862793572rem, 0.3180734593rem + 0.3410294897vw, 0.625rem);
    gap: clamp(0.3476514215rem, 0.2862661134rem + 0.3069265407vw, 0.5625rem);
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    width: var(--fabs-btn-height);
  }
}
@media (max-width: 900px) {
  .fabs-sidebar {
    --fabs-radius: 0px;
    width: 100%;
    bottom: 0;
    left: 0;
    -webkit-box-shadow: var(--gl-boxshadow-1);
            box-shadow: var(--gl-boxshadow-1);
    visibility: hidden;
  }
}
.fabs-sidebar .fabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: var(--fabs-btn-height);
  border-radius: var(--fabs-radius);
  -webkit-transition: 500ms ease-in-out;
  transition: 500ms ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 901px) {
  .fabs-sidebar .fabs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: var(--fabs-btn-width);
    border: 1px solid #ebdfd9;
  }
  .fabs-sidebar .fabs:hover {
    --fabs-btn-text-delay: 0.3s;
    --fabs-btn-text-opa: 1;
    --fabs-btn-width: clamp(7.7255871446rem, 6.3614691859rem + 6.8205897934vw, 12.5rem);
  }
}
@media (max-width: 900px) {
  .fabs-sidebar .fabs::after {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .fabs-sidebar .fabs {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: clamp(0.375rem, 0.3405172414rem + 0.1724137931vw, 0.4375rem);
  }
  .fabs-sidebar .fabs::after {
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: clamp(0.0772558714rem, 0.0636146919rem + 0.0682058979vw, 0.125rem);
    background: #ebdfd9;
    height: 70%;
  }
  .fabs-sidebar .fabs:first-child::after {
    content: none;
  }
}
.fabs-sidebar .fabs__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 901px) {
  .fabs-sidebar .fabs__icon {
    position: relative;
    z-index: 1;
    min-width: var(--fabs-btn-io-width);
    height: var(--fabs-btn-height);
  }
}
.fabs-sidebar .fabs__icon img {
  width: var(--fabs-icon-width);
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 901px) {
  .fabs-sidebar .fabs__title {
    padding: 0 clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem) 0 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.fabs-sidebar .fabs__title p {
  font-size: clamp(0.6875rem, 0.6160714286rem + 0.3571428571vw, 0.9375rem);
  font-family: var(--gl-font-nose);
  line-height: 1;
  text-align: center;
  -webkit-transition: var(--gl-trans-cube-1);
  transition: var(--gl-trans-cube-1);
}
@media (min-width: 901px) {
  .fabs-sidebar .fabs__title p {
    -webkit-transition-delay: var(--fabs-btn-text-delay, 0);
            transition-delay: var(--fabs-btn-text-delay, 0);
    opacity: var(--fabs-btn-text-opa, 0);
    white-space: nowrap;
  }
}
@media (max-width: 540px) {
  .fabs-sidebar .fabs__title p {
    letter-spacing: 0.05em;
  }
}
.fabs-sidebar .fabs__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.fabs-sidebar .fabs__link a {
  display: block;
  width: 100%;
  height: 100%;
}
.fabs-sidebar .fabs.-aichat {
  cursor: pointer;
}
.fabs-sidebar .fabs.-tel {
  background-color: #fff;
}
.fabs-sidebar .fabs.-tel .fabs__icon img {
  width: clamp(1.125rem, 1.0892857143rem + 0.1785714286vw, 1.25rem);
}
.fabs-sidebar .fabs.-insta {
  background-color: #fff;
}
.fabs-sidebar .fabs.-insta .fabs__icon img {
  width: clamp(1.1875rem, 1.1339285714rem + 0.2678571429vw, 1.375rem);
}
.fabs-sidebar .fabs.-reserve {
  background-color: #fff;
}
.fabs-sidebar .fabs.-reserve .fabs__icon img {
  width: clamp(1.1875rem, 1.1696428571rem + 0.0892857143vw, 1.25rem);
}
.fabs-sidebar .fabs.-line {
  background-color: #fff;
}
.fabs-sidebar .fabs.-line .fabs__icon img {
  width: clamp(1.25rem, 1.2142857143rem + 0.1785714286vw, 1.375rem);
}
.fabs-sidebar .fabs.-payment {
  background-color: #fff;
}
.fabs-sidebar .fabs.-payment .fabs__icon img {
  width: clamp(1rem, 0.9642857143rem + 0.1785714286vw, 1.125rem);
}
.fabs-sidebar.scroll-active {
  -webkit-animation: slide-up 0.3s ease both;
          animation: slide-up 0.3s ease both;
}
.fabs-sidebar.scroll-no-active {
  -webkit-animation: slide-down 0.3s ease both;
          animation: slide-down 0.3s ease both;
}

/*==========================================================================*/
/* END FLOATING ACTION BUTTONS (FABS)                                       */
/*==========================================================================*/
/*==========================================================================*/
/* START INFINITE SLIDER                                                    */
/*==========================================================================*/
.infinite-slider {
  --slider-direction: column;
  --slider-radius: clamp(0rem, 0rem + 0vw, 0rem);
  --slider-gap: clamp(0.695302843rem, 0.2042203779rem + 1.023088469vw, 1.125rem);
  --slider-animation-name: scroll-x;
  --slider-animation-direction: normal;
  --slider-animation-duration: 80s;
  --slider-animation-duration-offset: 0s;
  --slider-scroll-start: 0;
  --slider-scroll-end: calc(-100% - var(--slider-gap));
  --slider-mask-color: rgba(0, 0, 0, 0.2);
  --slider-background-rgb: var(--gl-default-background-rgb);
  --slider-line-height: auto;
  --slider-line-width: auto;
  --slider-line-direction: row;
  --slider-slides-direction: row;
  --slider-slide-width: 415;
  --slider-slide-height: clamp(13.9060568603rem, 11.4506445347rem + 12.2770616281vw, 22.5rem);
  --slider-slide-ratio: 16 / 9;
  --slider-slide-width-resp: calc(var(--slider-slide-width) * 100vw / var(--gl-bp-desktops));
  --slider-smooth-width-resp: clamp(2.5rem, -0.5rem + 8.8888888889vw, 7.5rem);
  --slider-smooth-width: var(--slider-smooth-width-resp);
  --slider-smooth-height: 100%;
  --slider-smooth-direction-af: to left;
  --slider-smooth-direction-be: to right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: var(--slider-direction);
          flex-direction: var(--slider-direction);
  gap: var(--slider-gap);
  position: relative;
  z-index: 1;
  background: rgba(var(--slider-background-rgb), 1);
}
@media (max-width: 1024px) {
  .infinite-slider {
    --slider-slide-width-resp: calc((var(--slider-slide-width) * 2 / 3) * 1px);
  }
}
@-webkit-keyframes scroll-x {
  from {
    -webkit-transform: translate3d(var(--slider-scroll-start), 0, 0);
            transform: translate3d(var(--slider-scroll-start), 0, 0);
  }
  to {
    -webkit-transform: translate3d(var(--slider-scroll-end), 0, 0);
            transform: translate3d(var(--slider-scroll-end), 0, 0);
  }
}
@keyframes scroll-x {
  from {
    -webkit-transform: translate3d(var(--slider-scroll-start), 0, 0);
            transform: translate3d(var(--slider-scroll-start), 0, 0);
  }
  to {
    -webkit-transform: translate3d(var(--slider-scroll-end), 0, 0);
            transform: translate3d(var(--slider-scroll-end), 0, 0);
  }
}
@-webkit-keyframes scroll-y {
  from {
    -webkit-transform: translate3d(0, var(--slider-scroll-start), 0);
            transform: translate3d(0, var(--slider-scroll-start), 0);
  }
  to {
    -webkit-transform: translate3d(0, var(--slider-scroll-end), 0);
            transform: translate3d(0, var(--slider-scroll-end), 0);
  }
}
@keyframes scroll-y {
  from {
    -webkit-transform: translate3d(0, var(--slider-scroll-start), 0);
            transform: translate3d(0, var(--slider-scroll-start), 0);
  }
  to {
    -webkit-transform: translate3d(0, var(--slider-scroll-end), 0);
            transform: translate3d(0, var(--slider-scroll-end), 0);
  }
}
.infinite-slider .slider-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: var(--slider-line-direction);
          flex-direction: var(--slider-line-direction);
  gap: var(--slider-gap);
  overflow: hidden;
  height: var(--slider-line-height);
  width: var(--slider-line-width);
}
.infinite-slider .slider-line.-reverse {
  --slider-animation-direction: reverse;
}
.infinite-slider .slider-line:nth-child(2) {
  --slider-animation-delay: -1.2s;
  --slider-animation-duration-offset: 4s;
}
.infinite-slider .slider-line:nth-child(3) {
  --slider-animation-delay: 2.6s;
  --slider-animation-duration-offset: -5s;
}
.infinite-slider .slider-line:nth-child(4) {
  --slider-animation-delay: 3.4s;
  --slider-animation-duration-offset: 2.5s;
}
.infinite-slider .slides {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: var(--slider-slides-direction);
          flex-direction: var(--slider-slides-direction);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: var(--slider-gap);
  min-width: 100%;
  -webkit-animation-name: var(--slider-animation-name);
          animation-name: var(--slider-animation-name);
  -webkit-animation-duration: calc(var(--slider-animation-duration) + var(--slider-animation-duration-offset));
          animation-duration: calc(var(--slider-animation-duration) + var(--slider-animation-duration-offset));
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: var(--slider-animation-direction);
          animation-direction: var(--slider-animation-direction);
  -webkit-animation-delay: var(--slider-animation-delay);
          animation-delay: var(--slider-animation-delay);
}
.infinite-slider .__slide {
  font-size: clamp(1.25rem, 0.7142857143rem + 2.6785714286vw, 3.125rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: var(--slider-slide-width-resp);
  height: var(--slider-slide-height);
  border-radius: var(--slider-radius);
  aspect-ratio: var(--slider-slide-ratio);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.infinite-slider .__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.infinite-slider .slider-contents {
  position: absolute;
  z-index: var(--zindex-fixed);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - clamp(2.5rem, 1.75rem + 2.2222222222vw, 3.75rem));
  height: auto;
  max-width: 1024px;
}
.infinite-slider .slider-contents.-wrapbox {
  padding: clamp(2.5rem, 1.75rem + 2.2222222222vw, 3.75rem) clamp(1.25rem, -0.25rem + 4.4444444444vw, 3.75rem);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: clamp(17.5rem, 4.2142857143rem + 66.4285714286vw, 64rem);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--slider-radius);
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
          box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}
.infinite-slider.-vertical {
  --slider-animation-name: scroll-y;
  --slider-direction: row;
  --slider-line-height: 100vh;
  --slider-line-width: var(--slider-slide-width-resp);
  --slider-line-direction: column;
  --slider-slides-direction: column;
  --slider-slide-ratio: 0.5;
  --slider-smooth-width-resp: clamp(4.375rem, 1.75rem + 7.7777777778vw, 8.75rem);
  --slider-smooth-direction-af: to top;
  --slider-smooth-direction-be: to bottom;
  --slider-smooth-height: var(--slider-smooth-width-resp);
  --slider-smooth-width: 100%;
}
.infinite-slider.-vertical .__slide {
  width: 100%;
}
.infinite-slider.-mask .__slide::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.infinite-slider.-mask .__slide:after {
  background: var(--slider-mask-color);
  top: 0;
  left: 0;
  z-index: 2;
}
.infinite-slider.-smooth .slider-line::after, .infinite-slider.-smooth .slider-line::before {
  display: block;
  content: "";
  position: absolute;
  width: var(--slider-smooth-width);
  height: var(--slider-smooth-height);
}
.infinite-slider.-smooth .slider-line {
  position: relative;
  z-index: 1;
}
.infinite-slider.-smooth .slider-line::after, .infinite-slider.-smooth .slider-line::before {
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--slider-smooth-direction)), color-stop(40%, transparent), color-stop(rgba(var(--slider-background-rgb), 0.3)), color-stop(rgba(var(--slider-background-rgb), 0.6)), to(rgba(var(--slider-background-rgb), 1)));
  background: -webkit-linear-gradient(var(--slider-smooth-direction), transparent 40%, rgba(var(--slider-background-rgb), 0.3), rgba(var(--slider-background-rgb), 0.6), rgba(var(--slider-background-rgb), 1));
  background: linear-gradient(var(--slider-smooth-direction), transparent 40%, rgba(var(--slider-background-rgb), 0.3), rgba(var(--slider-background-rgb), 0.6), rgba(var(--slider-background-rgb), 1));
}
.infinite-slider.-smooth .slider-line::after {
  --slider-smooth-direction: var(--slider-smooth-direction-af);
  left: 0;
  top: 0;
}
.infinite-slider.-smooth .slider-line::before {
  --slider-smooth-direction: var(--slider-smooth-direction-be);
  right: 0;
  bottom: 0;
}

/*==========================================================================*/
/* END INFINITE SLIDER                                                      */
/*==========================================================================*/
/*!
 * Grits-Themes v2.1.0
 * @Author: phamcuong96
 */
/*==========================================================================*/
/* ACF LAYOUT TEMPLATES                                                     */
/*==========================================================================*/
.acf-space .acf-space {
  margin: 1.5em 0 1em;
}
.acf-space .acf-space:first-of-type {
  padding-top: 0 !important;
  margin-top: 0;
}
.acf-space .acf-space:last-of-type {
  margin-bottom: 0;
}

.acf-sech3.acf-space {
  padding-top: clamp(3.75rem, 2.6785714286rem + 5.3571428571vw, 7.5rem);
}

.acf-sech4.acf-space:not(:first-child) {
  padding-top: clamp(1.875rem, 1.3392857143rem + 2.6785714286vw, 3.75rem);
}

.acf-ht {
  --headding-title-color: var(--gl-themes-main-color);
  --headding-border-color: var(--gl-themes-main-color-2);
  font-family: var(--gl-sec-heading-font);
  font-weight: var(--gl-sec-heading-weight);
  color: var(--headding-title-color);
  line-height: 1.5;
  position: relative;
}
.acf-ht.-h2 {
  font-size: var(--gl-sec-heading-2-font-size);
  color: var(--gl-sec-heading-2-color);
  text-align: var(--gl-sec-heading-2-align);
  text-transform: uppercase;
}
.acf-ht.-h3::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.acf-ht.-h3 {
  font-size: var(--gl-sec-heading-3-font-size);
  text-align: center;
  padding-bottom: clamp(1.125rem, 0.9464285714rem + 0.8928571429vw, 1.75rem);
  margin-bottom: clamp(1.875rem, 1.3392857143rem + 2.6785714286vw, 3.75rem);
}
.acf-ht.-h3::after {
  width: clamp(3.125rem, 2.9464285714rem + 0.8928571429vw, 3.75rem);
  height: 2px;
  background: var(--headding-border-color);
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 100vw;
}
.acf-ht.-h4 {
  font-size: var(--gl-sec-heading-4-font-size);
  border-bottom: 2px solid var(--headding-border-color);
  padding-bottom: clamp(0.875rem, 0.7678571429rem + 0.5357142857vw, 1.25rem);
  margin-bottom: clamp(0.875rem, 0.7678571429rem + 0.5357142857vw, 1.25rem);
}
.acf-ht.-h5::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.acf-ht.-h5 {
  font-size: var(--gl-sec-heading-5-font-size);
  padding-left: clamp(0.9375rem, 0.7589285714rem + 0.8928571429vw, 1.5625rem);
  margin-bottom: clamp(0.875rem, 0.7678571429rem + 0.5357142857vw, 1.25rem);
}
.acf-ht.-h5::after {
  width: clamp(0.125rem, 0.1071428571rem + 0.0892857143vw, 0.1875rem);
  height: 100%;
  background: var(--headding-border-color);
  top: 0;
  left: 0;
  border-radius: 100vw;
}
.acf-ht.-h5:not(:first-child) {
  margin-top: clamp(2.5rem, 2.1428571429rem + 1.7857142857vw, 3.75rem);
}
.acf-ht.-h6 {
  --h6-af-size: clamp(0.5625rem, 0.5089285714rem + 0.2678571429vw, 0.75rem);
}
.acf-ht.-h6::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.acf-ht.-h6 {
  font-size: var(--gl-sec-heading-6-font-size);
  padding-left: clamp(0.9375rem, 0.7589285714rem + 0.8928571429vw, 1.5625rem);
  margin-bottom: clamp(0.875rem, 0.7678571429rem + 0.5357142857vw, 1.25rem);
}
.acf-ht.-h6::after {
  width: var(--h6-af-size);
  height: var(--h6-af-size);
  background: var(--headding-border-color);
  top: 0.55rem;
  left: 0;
  border-radius: 100%;
}
.acf-ht.-h6:not(:first-child) {
  margin-top: clamp(2.5rem, 2.1428571429rem + 1.7857142857vw, 3.75rem);
}

.archive-blog {
  --archive-theme-color: var(--gl-themes-main-color-rgb);
  --archive-theme-color-2: var(--gl-themes-main-color-2-rgb);
  --archive-head-background: RGBA(var(--archive-theme-color), 1);
  --archive-head-padding: clamp(3.125rem, 2.5892857143rem + 2.6785714286vw, 5rem);
  --archive-cat-item-gap: 10px;
  --archive-cat-item-color: RGBA(var(--archive-theme-color), 1);
  --archive-cat-item-children-top-offset: 0.5rem;
  --archive-cat-item-children-opa: 0;
  --archive-cat-item-children-show: hidden;
  --archive-cat-item-children-trans-delay: 0s;
  --archive-search-radius: 100vw;
  --archive-search-border-color: RGBA(var(--archive-theme-color), 0.3);
  --archive-hamburger-btn-af-size: 40px;
  --archive-hamburger-btn-height: 16px;
  --archive-post-width: 100%;
  --archive-post-gap: 30px;
  --archive-post-fd: row;
  --archive-post-thumbnail-width: 250px;
  --archive-post-title-fz: clamp(0.875rem, 0.8214285714rem + 0.2678571429vw, 1.0625rem);
  --archive-post-af-show: '';
  --archive-pagination-number-width: 30px;
}
@media (max-width: 540px) {
  .archive-blog {
    --archive-post-fd: column;
    --archive-post-thumbnail-width: 100%;
  }
}
.archive-blog .archive-name {
  --gl-sec-heading-2-align: left !important;
  background: var(--archive-head-background);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: calc(var(--archive-head-padding) * 1.5) clamp(1.25rem, -3.0476900149rem + 8.9418777943vw, 5rem);
  margin-top: calc(var(--gl-header-height) + clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem));
}
.archive-blog .archive-list-taxonomy {
  background: RGBA(var(--archive-theme-color), 0.1);
  padding: 0.4rem 0;
}
.archive-blog .archive-list-taxonomy .container-sm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.25rem, 0.8928571429rem + 1.7857142857vw, 2.5rem);
}
.archive-blog .archive-hamburger-btn::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.archive-blog .archive-hamburger-btn {
  width: 26px;
  height: var(--archive-hamburger-btn-height);
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.archive-blog .archive-hamburger-btn::after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: RGBA(var(--archive-theme-color), 0.2);
  z-index: -1;
  border-radius: 50%;
  width: var(--archive-hamburger-btn-af-size);
  height: var(--archive-hamburger-btn-af-size);
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 4px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 4px;
  opacity: 0;
  -webkit-transition: var(--gl-trans-3e);
  transition: var(--gl-trans-3e);
}
.archive-blog .archive-hamburger-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: RGBA(var(--archive-theme-color), 1);
  -webkit-transition: var(--gl-trans-3e);
  transition: var(--gl-trans-3e);
}
.archive-blog .archive-hamburger-btn span:nth-child(1) {
  top: 0;
}
.archive-blog .archive-hamburger-btn span:nth-child(2) {
  top: 7px;
}
.archive-blog .archive-hamburger-btn span:nth-child(3) {
  top: 15px;
}
.archive-blog .archive-hamburger-btn.is-open {
  position: fixed;
  z-index: var(--zindex-promax);
  top: calc((var(--gl-header-height) * 1.2 - var(--archive-hamburger-btn-height)) / 2);
  left: 1.5rem;
}
.archive-blog .archive-hamburger-btn.is-open::after {
  opacity: 1;
}
.archive-blog .archive-hamburger-btn.is-open span:nth-child(1) {
  top: 11px;
  width: 0;
  left: 50%;
}
.archive-blog .archive-hamburger-btn.is-open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.archive-blog .archive-hamburger-btn.is-open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 7px;
}
.archive-blog .list-custom-taxonomy-widget {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 900px) {
  .archive-blog .list-custom-taxonomy-widget::after, .archive-blog .list-custom-taxonomy-widget::before {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .archive-blog .list-custom-taxonomy-widget {
    background: RGBA(255, 255, 255, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: var(--zindex-pro);
    backdrop-filter: blur(10px);
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    visibility: hidden;
  }
  .archive-blog .list-custom-taxonomy-widget::after, .archive-blog .list-custom-taxonomy-widget::before {
    background: -webkit-gradient(linear, , from(RGBA(255, 255, 255, 0)), color-stop(50%, RGBA(255, 255, 255, 0.5)), to(RGBA(255, 255, 255, 1)));
    background: -webkit-linear-gradient(var(--ab-deg), RGBA(255, 255, 255, 0) 0%, RGBA(255, 255, 255, 0.5) 50%, RGBA(255, 255, 255, 1) 100%);
    background: linear-gradient(to var(--ab-deg), RGBA(255, 255, 255, 0) 0%, RGBA(255, 255, 255, 0.5) 50%, RGBA(255, 255, 255, 1) 100%);
    height: calc(var(--gl-header-height) * 1.2);
    left: 0;
    z-index: 1;
  }
  .archive-blog .list-custom-taxonomy-widget::after {
    --ab-deg: top;
    top: 0;
    backdrop-filter: blur(5px);
  }
  .archive-blog .list-custom-taxonomy-widget::before {
    --ab-deg: bottom;
    bottom: 0;
  }
  .archive-blog .list-custom-taxonomy-widget.is-open {
    -webkit-animation-name: fadeIn;
            animation-name: fadeIn;
  }
  .archive-blog .list-custom-taxonomy-widget.is-close {
    -webkit-animation-name: fadeOut;
            animation-name: fadeOut;
  }
}
.archive-blog .list-custom-taxonomy-widget ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: var(--archive-cat-item-gap);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 900px) {
  .archive-blog .list-custom-taxonomy-widget ul {
    padding: calc(var(--gl-header-height) * 1.8) 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-y: auto;
    height: 100%;
  }
}
.archive-blog .list-custom-taxonomy-widget ul.children::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.archive-blog .list-custom-taxonomy-widget ul.children {
  background: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--archive-cat-item-gap);
  position: absolute;
  z-index: 1;
  top: calc(100% + var(--archive-cat-item-children-top-offset));
  left: 0;
  padding: 10px;
  width: 200px;
  opacity: var(--archive-cat-item-children-opa);
  visibility: var(--archive-cat-item-children-show);
  -webkit-transition: var(--gl-trans-3e);
  transition: var(--gl-trans-3e);
  -webkit-transition-delay: var(--archive-cat-item-children-trans-delay);
          transition-delay: var(--archive-cat-item-children-trans-delay);
  border-radius: clamp(0.125rem, 0.0892857143rem + 0.1785714286vw, 0.25rem);
  overflow: hidden;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 4px;
          box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 4px;
}
@media (max-width: 900px) {
  .archive-blog .list-custom-taxonomy-widget ul.children {
    position: unset;
    opacity: 1;
    visibility: unset;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    border-radius: 0;
    width: auto;
    background: none;
  }
}
.archive-blog .list-custom-taxonomy-widget ul.children::after {
  background: RGBA(var(--archive-theme-color), 0.2);
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 900px) {
  .archive-blog .list-custom-taxonomy-widget ul.children::after {
    content: none;
  }
}
.archive-blog .list-custom-taxonomy-widget .cat-item {
  position: relative;
}
.archive-blog .list-custom-taxonomy-widget .cat-item a {
  font-size: clamp(0.75rem, 0.6785714286rem + 0.3571428571vw, 1rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.1em;
  font-size: clamp(0.625rem, 0.4101154993rem + 0.4470938897vw, 0.8125rem);
  display: block;
  text-transform: capitalize;
  padding: 0.5rem 0.5rem;
  color: var(--archive-cat-item-color);
  -webkit-transition: var(--gl-trans-3e);
  transition: var(--gl-trans-3e);
}
@media (max-width: 900px) {
  .archive-blog .list-custom-taxonomy-widget .cat-item a {
    font-size: clamp(0.875rem, 0.8392857143rem + 0.1785714286vw, 1rem);
    padding: 0.5rem 0;
  }
}
.archive-blog .list-custom-taxonomy-widget .cat-item .cat-item a {
  font-size: clamp(0.5625rem, 0.5089285714rem + 0.2678571429vw, 0.75rem);
  font-weight: 400;
}
.archive-blog .list-custom-taxonomy-widget .cat-item .cat-item a::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.archive-blog .list-custom-taxonomy-widget .cat-item .cat-item a {
  position: relative;
  padding: 0;
  padding-left: 10px;
}
@media (max-width: 900px) {
  .archive-blog .list-custom-taxonomy-widget .cat-item .cat-item a {
    font-size: clamp(0.75rem, 0.7142857143rem + 0.1785714286vw, 0.875rem);
  }
}
.archive-blog .list-custom-taxonomy-widget .cat-item .cat-item a::after {
  width: 2px;
  border-radius: 10px;
  height: 1em;
  left: 0;
  top: 0.125rem;
  background: currentColor;
}
.archive-blog .list-custom-taxonomy-widget .cat-item.current-cat > a {
  --archive-cat-item-color: RGBA(var(--archive-theme-color-2), 1);
}
.archive-blog .list-custom-taxonomy-widget .cat-item.current-cat-parent > a {
  --archive-cat-item-color: RGBA(var(--archive-theme-color-2), 1);
}
.archive-blog .list-custom-taxonomy-widget .cat-item.has-children > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.archive-blog .list-custom-taxonomy-widget .cat-item.has-children > a::after {
  display: block;
  content: "";
  height: 6px;
  aspect-ratio: 1/0.8660254038;
  -webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
          clip-path: polygon(50% 100%, 100% 0, 0 0);
  background: currentColor;
  margin-top: 0.25rem;
}
.archive-blog .list-custom-taxonomy-widget .cat-item.has-children:hover {
  --archive-cat-item-children-top-offset: 0rem;
  --archive-cat-item-children-opa: 1;
  --archive-cat-item-children-show: visible;
  --archive-cat-item-children-trans-delay: 0.15s;
}
.archive-blog .list-custom-taxonomy-widget .cat-item:not(.current-cat):not(.current-cat-parent):hover > a {
  opacity: 0.6;
}
.archive-blog .search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: var(--archive-search-radius);
  overflow: hidden;
  border: 1px solid var(--archive-search-border-color);
  padding-left: 0.6rem;
  margin-left: auto;
}
.archive-blog .search-form .search-io {
  --ggs: 0.8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: block;
  -webkit-transform: translateY(10%) scale(var(--ggs, 1));
          transform: translateY(10%) scale(var(--ggs, 1));
  width: 16px;
  height: 16px;
  border: 2px solid;
  border-radius: 100%;
  margin-left: -4px;
  margin-top: -4px;
  margin-right: 0.5rem;
  color: RGBA(var(--archive-theme-color), 1);
}
.archive-blog .search-form .search-io::after {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  border-radius: 3px;
  width: 2px;
  height: 8px;
  background: currentColor;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 10px;
  left: 12px;
}
.archive-blog .search-form .search-field,
.archive-blog .search-form .search-submit {
  font-size: clamp(0.5625rem, 0.5089285714rem + 0.2678571429vw, 0.75rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  border-radius: 0 !important;
  min-height: 25px;
  border: 0;
  outline: 0;
}
.archive-blog .search-form .search-field {
  padding: 0rem 0.5rem;
  width: 160px;
  border-width: 0 1px 0 1px;
  border-style: solid;
  border-color: var(--archive-search-border-color);
  color: RGBA(var(--archive-theme-color), 1);
  background: transparent;
}
.archive-blog .search-form .search-field::-webkit-input-placeholder {
  color: RGBA(var(--archive-theme-color), 0.7);
}
.archive-blog .search-form .search-field::-moz-placeholder {
  color: RGBA(var(--archive-theme-color), 0.7);
}
.archive-blog .search-form .search-field:-ms-input-placeholder {
  color: RGBA(var(--archive-theme-color), 0.7);
}
.archive-blog .search-form .search-field::-ms-input-placeholder {
  color: RGBA(var(--archive-theme-color), 0.7);
}
.archive-blog .search-form .search-field::placeholder {
  color: RGBA(var(--archive-theme-color), 0.7);
}
.archive-blog .search-form .search-submit {
  letter-spacing: 0em;
  padding: 0 0.5rem;
  cursor: pointer;
  background: RGBA(var(--archive-theme-color), 0.1);
  color: RGBA(var(--archive-theme-color), 1);
  -webkit-transition: var(--gl-trans-3e);
  transition: var(--gl-trans-3e);
}
.archive-blog .search-form .search-submit:hover {
  background: RGBA(var(--archive-theme-color), 0.2);
}
.archive-blog__posts {
  margin-top: clamp(1.875rem, 1.6964285714rem + 0.8928571429vw, 2.5rem);
}
.archive-blog .archive-post-gap {
  width: var(--archive-post-gap);
}
.archive-blog .archive-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}
.archive-blog .archive-post::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.archive-blog .archive-post {
  gap: calc(var(--archive-post-gap) / 2);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: var(--archive-post-fd);
          flex-direction: var(--archive-post-fd);
  width: var(--archive-post-width);
}
.archive-blog .archive-post::after {
  content: var(--archive-post-af-show);
  top: calc(var(--archive-post-gap) / -2);
  left: 0;
  height: 1px;
  background: RGBA(var(--archive-theme-color), 0.3);
}
.archive-blog .archive-post__thumbnail {
  max-width: var(--archive-post-thumbnail-width);
}
.archive-blog .archive-post__thumbnail img {
  aspect-ratio: 16/9;
}
.archive-blog .archive-post__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.archive-blog .archive-post__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  gap: calc(var(--archive-post-gap) / 2);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.archive-blog .archive-post__info .__date,
.archive-blog .archive-post__info a {
  font-size: clamp(0.625rem, 0.5892857143rem + 0.1785714286vw, 0.75rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: RGBA(var(--archive-theme-color), 1);
  text-transform: capitalize;
  opacity: 0.7;
}
.archive-blog .archive-post__info .__date {
  font-weight: 500;
  opacity: 0.85;
}
.archive-blog .archive-post__info a {
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
}
.archive-blog .archive-post__info a::before {
  display: inline-block;
  content: "#";
}
.archive-blog .archive-post__info a:hover {
  opacity: 1;
}
.archive-blog .archive-post__title {
  margin-top: calc(var(--archive-post-gap) / 2);
}
.archive-blog .archive-post__title a {
  display: block;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-weight: 500;
  font-family: var(--gl-sec-heading-font);
  text-transform: capitalize;
  font-size: var(--archive-post-title-fz);
}
.archive-blog .archive-post__description {
  margin-top: 0.5rem;
}
.archive-blog .archive-post__description p {
  font-size: clamp(0.6875rem, 0.6517857143rem + 0.1785714286vw, 0.8125rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.archive-blog .archive-post.-post-1 {
  --archive-post-af-show: none;
}
@media (min-width: 901px) {
  .archive-blog .archive-post.-post-1, .archive-blog .archive-post.-post-3 {
    --archive-post-width: calc((100% - var(--archive-post-gap)) * 2 / 3);
  }
  .archive-blog .archive-post.-post-2, .archive-blog .archive-post.-post-4 {
    --archive-post-width: calc((100% - var(--archive-post-gap)) * 1 / 3);
  }
  .archive-blog .archive-post.-post-1 {
    --archive-post-title-fz: clamp(1rem, 0.9285714286rem + 0.3571428571vw, 1.25rem);
    --archive-post-fd: column;
    --archive-post-thumbnail-width: 100%;
  }
  .archive-blog .archive-post.-post-2 {
    --archive-post-fd: column;
    --archive-post-thumbnail-width: 100%;
    --archive-post-af-show: none;
  }
  .archive-blog .archive-post.-post-3 {
    --archive-post-fd: row;
  }
  .archive-blog .archive-post.-post-4 {
    --archive-post-fd: column;
    --archive-post-thumbnail-width: 100%;
  }
}
.archive-blog .archive-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 40px;
}
.archive-blog .archive-pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(0.625rem, 0.5535714286rem + 0.3571428571vw, 0.875rem);
  line-height: 1;
  letter-spacing: 0.1em;
  color: RGBA(var(--archive-theme-color), 1);
  width: var(--archive-pagination-number-width);
  height: var(--archive-pagination-number-width);
  border: 1px solid RGBA(var(--archive-theme-color), 0.3);
}
.archive-blog .archive-pagination .page-numbers:not(:last-child) {
  border-right: 0;
}
.archive-blog .archive-pagination .page-numbers.prev::after, .archive-blog .archive-pagination .page-numbers.next::after {
  --s: 2px;
  display: block;
  content: "";
  height: 10px;
  aspect-ratio: 3/5;
  -webkit-clip-path: polygon(0 0, var(--s) 0, 100% 50%, var(--s) 100%, 0 100%, calc(100% - var(--s)) 50%);
          clip-path: polygon(0 0, var(--s) 0, 100% 50%, var(--s) 100%, 0 100%, calc(100% - var(--s)) 50%);
  background: RGBA(var(--archive-theme-color), 0.7);
}
.archive-blog .archive-pagination .page-numbers.prev::after {
  -webkit-transform: scale(-1);
          transform: scale(-1);
}
.archive-blog .archive-pagination .page-numbers.current {
  background: RGBA(var(--archive-theme-color), 0.2);
}
.archive-blog .archive-pagination a.page-numbers {
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
}
.archive-blog .archive-pagination a.page-numbers:hover {
  background: RGBA(var(--archive-theme-color), 0.1);
}
.archive-blog.-head-image {
  --archive-head-background: url(../images/under-mainvisual-pic-1920.webp);
}
.archive-blog.-head-image .archive-name::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.archive-blog.-head-image .archive-name {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.archive-blog.-head-image .archive-name::after {
  top: 0;
  left: 0;
  background: RGBA(0, 0, 0, 0.05);
  z-index: -9;
  backdrop-filter: blur(8px);
}
.archive-blog.-search-page .archive-name {
  --gl-sec-heading-2-font-size: clamp(1.25rem, 1.0357142857rem + 1.0714285714vw, 2rem) !important;
}
.archive-blog.-search-page .archive-post:nth-child(2) {
  --archive-post-af-show: none;
}

.blog-content {
  padding-top: clamp(3.75rem, 2.6785714286rem + 5.3571428571vw, 7.5rem);
}
.blog-content > .acf-ht.-h3 {
  margin-bottom: clamp(0.9375rem, 0.7589285714rem + 0.8928571429vw, 1.5625rem);
}
.blog-content .acf-sech3.acf-space:nth-child(3) {
  padding-top: 0;
}
.blog-content__date {
  font-size: clamp(0.875rem, 0.8035714286rem + 0.3571428571vw, 1.125rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: clamp(2.5rem, 2.1428571429rem + 1.7857142857vw, 3.75rem);
  font-family: var(--gl-sec-heading-font);
  color: RGBA(var(--gl-themes-main-color-rgb), 0.7);
}
.blog-content__navbar {
  --blog-navbar-theme-color: var(--gl-themes-main-color-rgb);
  --blog-navbar-btn-af-scale: 1;
  --blog-navbar-btn-af-r: unset;
  --blog-navbar-btn-af-l: unset;
  --blog-navbar-btn-af-value: clamp(0.5rem, 0.4642857143rem + 0.1785714286vw, 0.625rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: clamp(3.75rem, 3.0357142857rem + 3.5714285714vw, 6.25rem) auto 0;
  max-width: 640px;
}
.blog-content__navbar .btn::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.blog-content__navbar .btn {
  border: 1px solid RGBA(var(--blog-navbar-theme-color), 0.4);
  overflow: hidden;
  background: RGBA(var(--blog-navbar-theme-color), 0.05);
  -webkit-transition: var(--gl-trans-3e);
  transition: var(--gl-trans-3e);
  width: 33.3333333333%;
  position: relative;
}
.blog-content__navbar .btn::after {
  --s: 2px;
  width: unset;
  height: 10px;
  aspect-ratio: 3/5;
  -webkit-clip-path: polygon(0 0, var(--s) 0, 100% 50%, var(--s) 100%, 0 100%, calc(100% - var(--s)) 50%);
          clip-path: polygon(0 0, var(--s) 0, 100% 50%, var(--s) 100%, 0 100%, calc(100% - var(--s)) 50%);
  background: RGBA(var(--blog-navbar-theme-color), 0.7);
  right: var(--blog-navbar-btn-af-r);
  left: var(--blog-navbar-btn-af-l);
  top: 50%;
  -webkit-transform: translateY(-50%) scale(var(--blog-navbar-btn-af-scale));
          transform: translateY(-50%) scale(var(--blog-navbar-btn-af-scale));
}
.blog-content__navbar .btn.-prev {
  --blog-navbar-btn-af-scale: -1;
  --blog-navbar-btn-af-l: var(--blog-navbar-btn-af-value);
  border-top-left-radius: 100vw;
  border-bottom-left-radius: 100vw;
}
.blog-content__navbar .btn.-cat {
  border-left: 0;
  border-right: 0;
}
.blog-content__navbar .btn.-cat::after {
  content: none;
}
.blog-content__navbar .btn.-next {
  --blog-navbar-btn-af-r: var(--blog-navbar-btn-af-value);
  border-top-right-radius: 100vw;
  border-bottom-right-radius: 100vw;
}
.blog-content__navbar .btn:hover {
  background: RGBA(var(--blog-navbar-theme-color), 0.15);
}
.blog-content__navbar a {
  font-size: clamp(0.5625rem, 0.5089285714rem + 0.2678571429vw, 0.75rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: block;
  color: RGBA(var(--blog-navbar-theme-color), 1);
  text-align: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: clamp(0.5rem, 0.4642857143rem + 0.1785714286vw, 0.625rem) clamp(1.125rem, 1.0178571429rem + 0.5357142857vw, 1.5rem);
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
}

.acf-gmap {
  --gmap-height: clamp(13.1334981459rem, 10.8144976161rem + 11.5950026488vw, 21.25rem);
  margin: 0.7em 0 0.5em;
}
.acf-gmap:last-child {
  margin-bottom: 0;
}
.acf-gmap iframe {
  width: 100% !important;
  height: var(--gmap-height) !important;
}
.acf-gmap.-filter-grayscale iframe {
  -webkit-filter: grayscale(100%) !important;
          filter: grayscale(100%) !important;
}

.acf-sechindex {
  --text-color: var(--gl-themes-main-color);
  --text-fonts: var(--gl-sec-heading-font);
  --border-color: var(--gl-themes-main-color-2);
  position: relative;
  margin-top: 40px;
}
.acf-sechindex::before {
  font-size: clamp(0.75rem, 0.6964285714rem + 0.2678571429vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.2;
  content: "目次";
  position: absolute;
  z-index: 1;
  background: var(--border-color);
  color: #fff;
  top: 0;
  left: clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: clamp(0.2317676143rem, 0.1908440756rem + 0.2046176938vw, 0.375rem) clamp(0.5794190358rem, 0.4771101889rem + 0.5115442345vw, 0.9375rem);
  font-family: var(--text-fonts);
}
.acf-sechindex ul {
  counter-reset: sechindex;
  list-style-type: none;
}
.acf-sechindex .__sechindex {
  border: 1px solid var(--border-color);
  padding: clamp(0.9656983931rem, 0.7951836482rem + 0.8525737242vw, 1.5625rem) clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem);
}
.acf-sechindex .__secheading {
  counter-increment: sechindex;
}
.acf-sechindex .__sech3 {
  font-size: clamp(0.875rem, 0.8035714286rem + 0.3571428571vw, 1.125rem);
  font-weight: 500;
}
.acf-sechindex .__sech3:not(:first-child) {
  margin-top: clamp(0.5794190358rem, 0.4771101889rem + 0.5115442345vw, 0.9375rem);
}
.acf-sechindex .__sech4 {
  font-size: clamp(0.75rem, 0.6964285714rem + 0.2678571429vw, 0.9375rem);
  font-weight: 400;
  line-height: 1.5;
}
.acf-sechindex .__sech4:not(:first-child) {
  margin-top: clamp(0.3862793572rem, 0.3180734593rem + 0.3410294897vw, 0.625rem);
}
.acf-sechindex .__sech4 .__indexlink {
  opacity: 0.8;
}
.acf-sechindex .__sech4 .__indexlink::before {
  border-left: clamp(0.1158838072rem, 0.0954220378rem + 0.1023088469vw, 0.1875rem) solid var(--border-color);
  padding-left: 0.5rem;
  line-height: 1;
  margin-top: 0.2rem;
}
.acf-sechindex .__haschildren ul {
  padding: clamp(0.5794190358rem, 0.4771101889rem + 0.5115442345vw, 0.9375rem);
  padding-bottom: 0;
}
.acf-sechindex .__indexlink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(0.2317676143rem, 0.1908440756rem + 0.2046176938vw, 0.375rem);
  vertical-align: top;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--text-color);
  font-family: var(--text-fonts);
  -webkit-transition: var(--gl-trans-3e);
  transition: var(--gl-trans-3e);
}
.acf-sechindex .__indexlink:hover {
  color: var(--border-color);
}
.acf-sechindex .__indexlink::before {
  content: counters(sechindex, ".", decimal) " ";
  display: inline-block;
}

.acf-list {
  --list-theme-color: var(--gl-themes-main-color-rgb);
  --list-theme-direction: row;
  --list-item-color: var(--gl-default-text-color);
  --list-item-font: var(--gl-default-font);
  --list-item-radius: clamp(0.1931396786rem, 0.1590367296rem + 0.1705147448vw, 0.3125rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(0.3090234858rem, 0.2544587674rem + 0.2728235917vw, 0.5rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: var(--list-theme-direction);
          flex-direction: var(--list-theme-direction);
  margin: 0.7em 0 0.5em;
}
.acf-list:last-child {
  margin-bottom: 0;
}
.acf-list .litem {
  font-size: clamp(0.75rem, 0.7142857143rem + 0.1785714286vw, 0.875rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: clamp(0.2317676143rem, 0.1908440756rem + 0.2046176938vw, 0.375rem) clamp(0.3862793572rem, 0.3180734593rem + 0.3410294897vw, 0.625rem);
  position: relative;
  font-family: var(--list-item-font);
  border-radius: var(--list-item-radius);
  color: var(--list-item-color);
}
.acf-list.-default, .acf-list.-number {
  --list-theme-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.acf-list.-default .litem, .acf-list.-number .litem {
  background: RGBA(var(--list-theme-color), 0.15);
}
.acf-list.-default .litem {
  --be-size: clamp(0.3090234858rem, 0.2544587674rem + 0.2728235917vw, 0.5rem);
  padding-left: clamp(1.5625rem, 1.4732142857rem + 0.4464285714vw, 1.875rem);
}
.acf-list.-default .litem::before {
  display: block;
  content: "";
  position: absolute;
  top: 0.95em;
  left: 0.85em;
  z-index: 1;
  width: var(--be-size);
  height: var(--be-size);
  border-radius: 50%;
  background: RGBA(var(--list-theme-color), 1);
  opacity: 0.8;
}
.acf-list.-number {
  counter-reset: litem-count;
}
.acf-list.-number .litem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(0.1875rem, 0.1517857143rem + 0.1785714286vw, 0.3125rem);
}
.acf-list.-number .litem::before {
  font-size: clamp(0.875rem, 0.8392857143rem + 0.1785714286vw, 1rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  counter-increment: litem-count;
  content: counter(litem-count) ".";
  display: block;
  color: RGBA(var(--list-theme-color), 1);
  -webkit-transform: translateY(0.1em);
          transform: translateY(0.1em);
}
.acf-list.-step {
  --list-theme-direction: column;
  --step-theme-color: RGBA(var(--list-theme-color), 0.2);
  --step-af-size: clamp(1.25rem, 1.1785714286rem + 0.3571428571vw, 1.5rem);
  --step-padding-left: clamp(1.6875rem, 1.5982142857rem + 0.4464285714vw, 2rem);
  padding-left: var(--step-padding-left) !important;
  gap: 0;
  counter-reset: litem-count;
  position: relative;
}
.acf-list.-step::after {
  display: block;
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: RGBA(var(--list-theme-color), 1);
  -webkit-transform: translateX(calc((var(--step-af-size) - 1px) / 2));
          transform: translateX(calc((var(--step-af-size) - 1px) / 2));
}
.acf-list.-step::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(0.6875rem, 0.6339285714rem + 0.2678571429vw, 0.875rem);
  font-weight: 300;
  line-height: 1;
  content: "#";
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  border: 1px solid currentColor;
  color: RGBA(var(--list-theme-color), 1);
  width: var(--step-af-size);
  height: var(--step-af-size);
  border-radius: 50%;
  padding-bottom: 0.05em;
}
.acf-list.-step .litem {
  counter-increment: litem-count;
  border-radius: 0;
  padding: 1.2em 1em;
  background: var(--step-theme-color);
}
.acf-list.-step .litem::before {
  font-size: clamp(0.75rem, 0.6964285714rem + 0.2678571429vw, 0.9375rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  display: inline-block;
  content: "step " counter(litem-count) ":";
  margin-right: clamp(0.3125rem, 0.2589285714rem + 0.2678571429vw, 0.5rem);
  text-transform: uppercase;
}
.acf-list.-step .litem::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(0.6875rem, 0.6339285714rem + 0.2678571429vw, 0.875rem);
  font-weight: 300;
  line-height: 1;
  content: counter(litem-count);
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  border: 1px solid currentColor;
  color: RGBA(var(--list-theme-color), 1);
  width: var(--step-af-size);
  height: var(--step-af-size);
  border-radius: 50%;
  -webkit-transform: translate(calc(-100% - (var(--step-padding-left) - var(--step-af-size))), 0);
          transform: translate(calc(-100% - (var(--step-padding-left) - var(--step-af-size))), 0);
  padding-bottom: 0.05em;
}
.acf-list.-step .litem:nth-child(even) {
  --step-theme-color: RGBA(var(--list-theme-color), 0.1);
}
.acf-list.-step .litem:first-child {
  border-top-left-radius: var(--list-item-radius);
  border-top-right-radius: var(--list-item-radius);
}
.acf-list.-step .litem:last-child {
  border-bottom-left-radius: var(--list-item-radius);
  border-bottom-right-radius: var(--list-item-radius);
}
.acf-list.-step.has-controller .litem:nth-child(2) {
  border-top-left-radius: var(--list-item-radius);
  border-top-right-radius: var(--list-item-radius);
}
.acf-list.-paper {
  --paper-dot-size: clamp(0.625rem, 0.5714285714rem + 0.2678571429vw, 0.8125rem);
  border-radius: var(--list-item-radius);
  position: relative;
  z-index: 1;
  overflow: hidden;
  gap: 0;
  background: RGBA(var(--list-theme-color), 0.1);
  padding: 0.5em 0;
}
.acf-list.-paper .litem {
  padding: clamp(0.4375rem, 0.3839285714rem + 0.2678571429vw, 0.625rem) clamp(1.75rem, 1.625rem + 0.625vw, 2.1875rem);
  background: none;
  border-radius: 0;
  position: relative;
  font-size: 0.9em;
  letter-spacing: 0.05em;
  width: 50%;
  border-bottom: 1px solid RGBA(var(--list-theme-color), 0.4);
}
@media (min-width: 541px) {
  .acf-list.-paper .litem:nth-child(odd):last-child, .acf-list.-paper .litem:nth-child(even):last-child, .acf-list.-paper .litem:nth-child(odd):nth-last-child(2) {
    border-width: 0;
  }
}
@media (max-width: 540px) {
  .acf-list.-paper .litem {
    width: 100%;
  }
  .acf-list.-paper .litem:last-child {
    border-width: 0;
  }
}
.acf-list.-paper .litem::after, .acf-list.-paper .litem::before {
  display: block;
  content: "";
  position: absolute;
  top: 1em;
  left: 0.85em;
  border-radius: 50%;
  width: var(--paper-dot-size);
  height: var(--paper-dot-size);
}
.acf-list.-paper .litem::after {
  border: 1px solid RGBA(var(--list-theme-color), 1);
}
.acf-list.-paper .litem::before {
  -webkit-transform: scale(0.4);
          transform: scale(0.4);
  background: RGBA(var(--list-theme-color), 1);
}
@media (min-width: 541px) {
  .acf-list.-paper.has-controller .litem:nth-child(odd):last-child, .acf-list.-paper.has-controller .litem:nth-child(even):last-child, .acf-list.-paper.has-controller .litem:nth-child(even):nth-last-child(2) {
    border-width: 0;
  }
  .acf-list.-paper.has-controller .litem:nth-child(odd):nth-last-child(2) {
    border-width: 1px;
  }
}

.acf-link {
  --link-padding-right: 0;
  --link-padding-left: 0;
  --link-padding-value: clamp(1.625rem, 1.5178571429rem + 0.5357142857vw, 2rem);
  --link-posi-left: unset;
  --link-posi-right: unset;
  --link-posi-value: clamp(0.0625rem, 0.0446428571rem + 0.0892857143vw, 0.125rem);
  --link-io-af-opa: 0.1;
  color: RGBA(var(--gl-themes-main-color-2-rgb), 1);
  font-weight: 500;
  -webkit-transition: var(--gl-trans-3e);
  transition: var(--gl-trans-3e);
  letter-spacing: 0.05em;
  position: relative;
  padding: 0 var(--link-padding-right) 0 var(--link-padding-left) !important;
  display: inline-block;
}
@media (min-width: 901px) {
  .acf-link:hover {
    --link-io-af-opa: 0.3;
  }
}
.acf-link .acf-link-io::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.acf-link .acf-link-io {
  width: clamp(1.5rem, 1.4464285714rem + 0.2678571429vw, 1.6875rem);
  height: clamp(1.125rem, 1.0892857143rem + 0.1785714286vw, 1.25rem);
  display: inline-block;
  position: absolute;
  border-radius: 100vw;
  left: var(--link-posi-left);
  right: var(--link-posi-right);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.acf-link .acf-link-io::after {
  background: currentColor;
  opacity: var(--link-io-af-opa);
  top: 0;
  left: 0;
  border-radius: inherit;
  z-index: -1;
  -webkit-transition: var(--gl-trans-3e);
  transition: var(--gl-trans-3e);
}
.acf-link .acf-link-io i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  -webkit-transform: translate(-50%, -50%) scale(var(--ggs, 1));
          transform: translate(-50%, -50%) scale(var(--ggs, 1));
}
.acf-link.-default {
  --ggs: 0.68;
  --link-padding-right: var(--link-padding-value);
  --link-posi-right: var(--link-posi-value);
}
.acf-link.-default i {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg) scale(var(--ggs, 1));
          transform: translate(-50%, -50%) rotate(-45deg) scale(var(--ggs, 1));
  width: 8px;
  height: 2px;
  background: currentColor;
  border-radius: 4px;
}
.acf-link.-default i::after, .acf-link.-default i::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  border-radius: 3px;
  width: 8px;
  height: 10px;
  border: 2px solid;
  top: -4px;
}
.acf-link.-default i::before {
  border-right: 0;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  left: -6px;
}
.acf-link.-default i::after {
  border-left: 0;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  right: -6px;
}
.acf-link.-tel {
  --ggs: 0.67;
  --link-padding-left: var(--link-padding-value);
  --link-posi-left: 0;
}
@media (max-width: 900px) {
  .acf-link.-tel {
    --ggs: 0.6;
  }
}
.acf-link.-tel i {
  width: 22px;
  height: 22px;
}
.acf-link.-tel i::after, .acf-link.-tel i::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
}
.acf-link.-tel i::after {
  width: 16px;
  height: 16px;
  border-top-left-radius: 1px;
  border-bottom-right-radius: 1px;
  border-bottom-left-radius: 12px;
  border-left: 4px solid;
  border-bottom: 4px solid;
  left: 2px;
  bottom: 2px;
  background: -webkit-linear-gradient(right, currentColor 10px, transparent 0) no-repeat right 11px/6px 4px, -webkit-linear-gradient(right, currentColor 10px, transparent 0) no-repeat -1px 0/4px 6px;
  background: linear-gradient(to left, currentColor 10px, transparent 0) no-repeat right 11px/6px 4px, linear-gradient(to left, currentColor 10px, transparent 0) no-repeat -1px 0/4px 6px;
}
.acf-link.-tel i::before {
  width: 20px;
  height: 20px;
  border: 6px double;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 2px;
  left: 2px;
}
.acf-link.-email {
  --ggs: 0.75;
  --link-padding-left: var(--link-padding-value);
  --link-posi-left: 0;
}
@media (max-width: 900px) {
  .acf-link.-email {
    --ggs: 0.7;
  }
}
.acf-link.-email i {
  overflow: hidden;
  width: 18px;
  border-radius: 2px;
}
.acf-link.-email i::after {
  content: "";
  position: absolute;
  border-radius: 3px;
  width: 14px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 3px;
  left: 0;
}
.acf-link.-email i,
.acf-link.-email i::after {
  height: 14px;
  border: 2px solid;
}
.acf-link.-aichat {
  --ggs: 0.6;
  --link-padding-right: var(--link-padding-value);
  --link-posi-right: var(--link-posi-value);
}
@media (max-width: 900px) {
  .acf-link.-aichat {
    --ggs: 0.52;
  }
}
.acf-link.-aichat i {
  margin-top: -0.05em;
  width: 20px;
  height: 16px;
  border: 2px solid;
  border-bottom: 0;
  -webkit-box-shadow: -6px 8px 0 -6px, 6px 8px 0 -6px;
          box-shadow: -6px 8px 0 -6px, 6px 8px 0 -6px;
}
.acf-link.-aichat i::after, .acf-link.-aichat i::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  width: 8px;
}
.acf-link.-aichat i::before {
  border: 2px solid;
  border-top-color: transparent;
  border-bottom-left-radius: 20px;
  right: 4px;
  bottom: -6px;
  height: 6px;
}
.acf-link.-aichat i::after {
  height: 2px;
  background: currentColor;
  -webkit-box-shadow: 0 4px 0 0;
          box-shadow: 0 4px 0 0;
  left: 4px;
  top: 4px;
}

table:not(.default-table):not(.table-style-1):not(.mce-item-table) {
  --table-color: RGBA(var(--gl-themes-main-color-rgb), 0.4);
  --table-radius: clamp(0.1931396786rem, 0.1590367296rem + 0.1705147448vw, 0.3125rem);
  --table-th-bg: RGBA(var(--gl-themes-main-color-rgb), 0.1);
  border-radius: var(--table-radius);
  -webkit-box-shadow: 0 0 0 1px var(--table-color);
          box-shadow: 0 0 0 1px var(--table-color);
  border-style: hidden;
  margin: 0.7em 0 0.5em;
}
table:not(.default-table):not(.table-style-1):not(.mce-item-table):last-child {
  margin-bottom: 0;
}
table:not(.default-table):not(.table-style-1):not(.mce-item-table) tr th,
table:not(.default-table):not(.table-style-1):not(.mce-item-table) tr td {
  font-size: clamp(0.6875rem, 0.6339285714rem + 0.2678571429vw, 0.875rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
  border: 1px solid var(--table-color);
  padding: clamp(0.3125rem, 0.2232142857rem + 0.4464285714vw, 0.625rem) clamp(0.5rem, 0.375rem + 0.625vw, 0.9375rem);
}
table:not(.default-table):not(.table-style-1):not(.mce-item-table) tr th {
  background: var(--table-th-bg);
  font-weight: 500;
}
table:not(.default-table):not(.table-style-1):not(.mce-item-table) tr:first-child th:first-child {
  border-top-left-radius: var(--table-radius);
}
table:not(.default-table):not(.table-style-1):not(.mce-item-table) tr:first-child th:last-child {
  border-top-right-radius: var(--table-radius);
}
table:not(.default-table):not(.table-style-1):not(.mce-item-table) tr:last-child th:first-child {
  border-bottom-left-radius: var(--table-radius);
}
table:not(.default-table):not(.table-style-1):not(.mce-item-table) tr:last-child th:last-child {
  border-bottom-right-radius: var(--table-radius);
}
table.table-style-1 {
  table-layout: fixed;
}
table.table-style-1 caption {
  font-size: clamp(0.75rem, 0.7142857143rem + 0.1785714286vw, 0.875rem);
  line-height: 2;
  letter-spacing: 0.1em;
  margin-top: clamp(0.5794190358rem, 0.4771101889rem + 0.5115442345vw, 0.9375rem);
  caption-side: bottom;
  text-align: right;
}
@media (max-width: 900px) {
  table.table-style-1 caption {
    text-align: left;
  }
}
table.table-style-1 tr th,
table.table-style-1 tr td {
  font-size: clamp(0.75rem, 0.6964285714rem + 0.2678571429vw, 0.9375rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--table-color);
}
table.table-style-1 tr th:first-child,
table.table-style-1 tr td:first-child {
  width: clamp(5.4851668727rem, 4.516643122rem + 4.8426187533vw, 8.875rem);
  border-left: 0;
}
table.table-style-1 tr th:last-child,
table.table-style-1 tr td:last-child {
  border-right: 0;
}
table.table-style-1 tr th {
  padding: clamp(0.7339307787rem, 0.6043395727rem + 0.6479560304vw, 1.1875rem) 0;
}
table.table-style-1 tr td {
  padding: clamp(0.695302843rem, 0.5725322267rem + 0.6138530814vw, 1.125rem) 0;
}
table.table-style-1.-white {
  --table-color: #fff;
}
table.table-style-1.-white caption {
  text-align: left;
  color: #fff;
}

.re-btn {
  --rebtn-width: clamp(8.4208899876rem, 6.9340014127rem + 7.4344428748vw, 13.625rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  gap: clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem) clamp(1.5451174289rem, 1.2722938372rem + 1.3641179587vw, 2.5rem);
  margin: 0.7em 0 0.5em;
}
.re-btn:last-child {
  margin-bottom: 0;
}
.re-btn .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem);
  min-width: var(--rebtn-width);
  max-width: 408px;
  padding: clamp(0.6566749073rem, 0.5407248808rem + 0.5797501324vw, 1.0625rem) 0;
  height: 100%;
  width: 100%;
  -webkit-transition: var(--gl-trans-3e);
  transition: var(--gl-trans-3e);
  position: relative;
  color: var(--rebtn-color);
}
.re-btn .btn a::before, .re-btn .btn a::after {
  display: block;
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  bottom: 0;
  left: 0;
  background: currentColor;
  -webkit-transition: 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform-origin: var(--rebtn-ab-trans-ori);
          transform-origin: var(--rebtn-ab-trans-ori);
  -webkit-transition-delay: var(--rebtn-ab-trans-delay);
          transition-delay: var(--rebtn-ab-trans-delay);
  -webkit-transform: scaleX(var(--rebtn-ab-scalex));
          transform: scaleX(var(--rebtn-ab-scalex));
}
.re-btn .btn a::before {
  --rebtn-ab-scalex: 0;
  --rebtn-ab-trans-ori: left;
}
.re-btn .btn a::after {
  --rebtn-ab-trans-delay: 0.25s;
  --rebtn-ab-trans-ori: right;
}
.re-btn .btn a:hover::before {
  --rebtn-ab-scalex: 1;
  --rebtn-ab-trans-delay: 0.25s;
}
.re-btn .btn a:hover::after {
  --rebtn-ab-scalex: 0;
  --rebtn-ab-trans-delay: 0s;
}
.re-btn .btn span {
  font-size: clamp(0.75rem, 0.6785714286rem + 0.3571428571vw, 1rem);
  font-family: var(--gl-font-nose);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.re-btn .btn .btn-icon {
  display: inline-block;
  width: clamp(0.4635352287rem, 0.3816881512rem + 0.4092353876vw, 0.75rem);
  aspect-ratio: 12/9;
  background: url(../images/gg-arrow-right.webp) center/contain no-repeat;
}
.re-btn.-white {
  --rebtn-color: #fff;
}
.re-btn.-white .btn-icon {
  background: #fff;
  -webkit-mask: url(../images/gg-arrow-right.webp) center/contain no-repeat;
          mask: url(../images/gg-arrow-right.webp) center/contain no-repeat;
}
.re-btn.-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.re-btn.-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.contact-form {
  --ct-theme-color: var(--gl-themes-main-color-rgb);
  --ct-field-gap: clamp(0.625rem, 0.5357142857rem + 0.4464285714vw, 0.9375rem);
  --ct-field-width: 25%;
  --ct-warning-color: 244, 80, 80;
  --ct-required-width: clamp(0.8125rem, 0.7767857143rem + 0.1785714286vw, 0.9375rem);
  background: RGBA(var(--ct-theme-color), 0.1);
  padding: 40px clamp(1.25rem, 0.8928571429rem + 1.7857142857vw, 2.5rem);
  margin: 0.7em 0 0.5em;
}
.contact-form:last-child {
  margin-bottom: 0;
}
.contact-form .screen-reader-response,
.contact-form .wpcf7-response-output,
.contact-form .wpcf7-spinner {
  display: none;
}
.contact-form .contact-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(0.9375rem, 0.7589285714rem + 0.8928571429vw, 1.5625rem) var(--ct-field-gap);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contact-form .contact-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: calc(var(--ct-field-gap) * 2);
  margin-top: 1rem;
}
@media (max-width: 540px) {
  .contact-form .contact-panel {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.contact-form .ct-submit-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
.contact-form .ct-submit-btn input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(0.8125rem, 0.7767857143rem + 0.1785714286vw, 0.9375rem);
  letter-spacing: 0.14em;
  background: RGBA(var(--ct-theme-color), 1);
  color: #fff;
  border: 0;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 100vw;
  min-width: 120px;
  min-height: 45px;
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
}
.contact-form .ct-submit-btn input[value=送信内容を確認する] {
  margin-left: auto;
}
.contact-form .ct-submit-btn input:hover {
  background: RGBA(var(--ct-theme-color), 0.8);
}
.contact-form .ct-required {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: RGBA(var(--ct-warning-color), 1);
  color: #fff;
  border-radius: 100vw;
  position: relative;
  width: calc(var(--ct-required-width) + 5px);
  height: var(--ct-required-width);
  -webkit-transform: translateY(0.05rem);
          transform: translateY(0.05rem);
}
.contact-form .ct-required::after {
  content: "*";
  display: block;
  position: absolute;
  line-height: 1;
  margin-top: 0.28rem;
  margin-left: 0.12em;
}
.contact-form .wpcf7-not-valid-tip {
  font-size: clamp(0.5625rem, 0.5267857143rem + 0.1785714286vw, 0.6875rem);
  line-height: 1;
  letter-spacing: 0.14em;
  color: RGBA(var(--ct-warning-color), 1);
  margin-top: 0.4rem;
}
.contact-form .ct-field {
  width: calc(var(--ct-field-width) - var(--ct-field-gap));
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
.contact-form .ct-field dt {
  font-size: clamp(0.8125rem, 0.7767857143rem + 0.1785714286vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.14em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.375rem, 0.3035714286rem + 0.3571428571vw, 0.625rem);
  padding-bottom: clamp(0.375rem, 0.3392857143rem + 0.1785714286vw, 0.5rem);
  color: RGBA(var(--ct-theme-color), 1);
}
.contact-form .ct-field dd {
  color: RGBA(var(--ct-theme-color), 1);
}
.contact-form .ct-field dd span {
  width: 100%;
}
.contact-form .ct-field input,
.contact-form .ct-field textarea,
.contact-form .ct-field select {
  font-size: clamp(0.75rem, 0.7142857143rem + 0.1785714286vw, 0.875rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  width: 100%;
  padding: 0.3rem 0.6rem;
  border: 0;
  outline: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background: #fff;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: RGBA(var(--ct-theme-color), 0.85);
  display: block;
}
.contact-form .ct-field input::-webkit-input-placeholder, .contact-form .ct-field textarea::-webkit-input-placeholder, .contact-form .ct-field select::-webkit-input-placeholder {
  font-size: 85%;
  letter-spacing: 0.2em;
  color: RGBA(var(--ct-theme-color), 0.5);
}
.contact-form .ct-field input::-moz-placeholder, .contact-form .ct-field textarea::-moz-placeholder, .contact-form .ct-field select::-moz-placeholder {
  font-size: 85%;
  letter-spacing: 0.2em;
  color: RGBA(var(--ct-theme-color), 0.5);
}
.contact-form .ct-field input:-ms-input-placeholder, .contact-form .ct-field textarea:-ms-input-placeholder, .contact-form .ct-field select:-ms-input-placeholder {
  font-size: 85%;
  letter-spacing: 0.2em;
  color: RGBA(var(--ct-theme-color), 0.5);
}
.contact-form .ct-field input::-ms-input-placeholder, .contact-form .ct-field textarea::-ms-input-placeholder, .contact-form .ct-field select::-ms-input-placeholder {
  font-size: 85%;
  letter-spacing: 0.2em;
  color: RGBA(var(--ct-theme-color), 0.5);
}
.contact-form .ct-field input::placeholder,
.contact-form .ct-field textarea::placeholder,
.contact-form .ct-field select::placeholder {
  font-size: 85%;
  letter-spacing: 0.2em;
  color: RGBA(var(--ct-theme-color), 0.5);
}
.contact-form .ct-field.-name, .contact-form .ct-field.-furigana, .contact-form .ct-field.-tel {
  --ct-field-width: calc(100% / 3);
  min-width: 150px;
}
.contact-form .ct-field.-email, .contact-form .ct-field.-confirm-email {
  --ct-field-width: calc(100% / 2);
}
.contact-form .ct-field.-postalcode {
  --ct-field-width: 25%;
  min-width: 150px;
}
.contact-form .ct-field.-postalcode dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(var(--ct-field-gap) / 2);
}
.contact-form .ct-field.-zip {
  --ct-field-width: 20%;
  min-width: 150px;
}
.contact-form .ct-field.-zip dd {
  position: relative;
}
.contact-form .ct-field.-zip dd::after, .contact-form .ct-field.-zip dd::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.contact-form .ct-field.-zip dd select {
  cursor: pointer;
}
.contact-form .ct-field.-zip dd::after, .contact-form .ct-field.-zip dd::before {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.contact-form .ct-field.-zip dd::after {
  width: 1px;
  height: 45%;
  right: 28px;
  background: currentColor;
  opacity: 0.4;
}
.contact-form .ct-field.-zip dd::before {
  width: 8px;
  height: auto;
  aspect-ratio: 1/0.8660254038;
  -webkit-clip-path: polygon(50% 100%, 100% 0, 0 0);
          clip-path: polygon(50% 100%, 100% 0, 0 0);
  background: currentColor;
  right: 10px;
}
.contact-form .ct-field.-addr {
  --ct-field-width: 55%;
}
.contact-form .ct-field.-mess {
  width: 100%;
}
.contact-form .ct-field.-mess textarea {
  height: 10em;
  resize: none;
}
.contact-form .ct-field.-mess .wpcf7-character-count {
  font-size: clamp(0.75rem, 0.7142857143rem + 0.1785714286vw, 0.875rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(var(--ct-field-gap) / 3);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: RGBA(var(--ct-warning-color), 0.8);
  margin-top: 0.4rem;
}
.contact-form .ct-field.-mess .wpcf7-character-count::before, .contact-form .ct-field.-mess .wpcf7-character-count::after {
  color: RGBA(var(--ct-theme-color), 1);
}
.contact-form .ct-field.-mess .wpcf7-character-count::before {
  content: "残り:";
  display: inline-block;
}
.contact-form .ct-field.-mess .wpcf7-character-count::after {
  content: "文字";
  display: inline-block;
}
.contact-form .ct-field.-note dt {
  font-size: clamp(0.6875rem, 0.6517857143rem + 0.1785714286vw, 0.8125rem);
}
.list-posts .post-item {
  padding: clamp(0.8884425216rem, 0.7315689564rem + 0.7843678262vw, 1.4375rem) 0;
  border-bottom: 1px solid #ebdfd9;
}
.list-posts a {
  font-size: clamp(0.75rem, 0.6785714286rem + 0.3571428571vw, 1rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: RGBA(var(--posts-theme-color), 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0.5794190358rem, 0.4771101889rem + 0.5115442345vw, 0.9375rem);
}
@media (max-width: 540px) {
  .list-posts a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.list-posts a:hover .__title {
  opacity: 0.65;
}
.list-posts span {
  display: block;
}
.list-posts .__date {
  font-weight: 500;
}
.list-posts .__title {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: clamp(1.5451174289rem, 1.2722938372rem + 1.3641179587vw, 2.5rem);
  padding-left: clamp(0.8884425216rem, 0.7315689564rem + 0.7843678262vw, 1.4375rem);
  border-left: 1px solid currentColor;
  position: relative;
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
}
.list-posts .__title::after {
  --s: clamp(0.0772558714rem, 0.0636146919rem + 0.0682058979vw, 0.125rem);
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  height: clamp(0.5rem, 0.4642857143rem + 0.1785714286vw, 0.625rem);
  aspect-ratio: 3/5;
  -webkit-clip-path: polygon(0 0, var(--s) 0, 100% 50%, var(--s) 100%, 0 100%, calc(100% - var(--s)) 50%);
          clip-path: polygon(0 0, var(--s) 0, 100% 50%, var(--s) 100%, 0 100%, calc(100% - var(--s)) 50%);
  background: var(--gl-themes-main-color-2);
}
.list-posts .__desc {
  display: none !important;
  visibility: hidden !important;
}

.protected-posts {
  --protected-theme-color: var(--gl-themes-main-color-rgb);
}
.protected-posts form {
  background: RGBA(var(--protected-theme-color), 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 10px;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  padding: 20px clamp(1.25rem, 0.8928571429rem + 1.7857142857vw, 2.5rem) 35px;
}
.protected-posts p,
.protected-posts input {
  color: RGBA(var(--protected-theme-color), 1);
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.1em;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  border: 0;
  outline: unset;
}
.protected-posts input {
  font-size: clamp(0.75rem, 0.7321428571rem + 0.0892857143vw, 0.8125rem);
  line-height: 1;
  padding: 0.1rem 0.5rem;
  height: 25px;
  background: #fff;
}
.protected-posts .__title {
  font-size: clamp(1.5rem, 1.3928571429rem + 0.5357142857vw, 1.875rem);
  width: 100%;
}
.protected-posts .__desc {
  font-size: clamp(0.75rem, 0.7142857143rem + 0.1785714286vw, 0.875rem);
  width: 100%;
}
.protected-posts .__pass {
  width: 100%;
  max-width: clamp(9.375rem, 8.4821428571rem + 4.4642857143vw, 12.5rem);
}
.protected-posts .__submit {
  margin-left: auto;
  cursor: pointer;
  width: 70px;
  border-radius: 100vw;
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
}
.protected-posts .__submit:hover {
  background: RGBA(var(--protected-theme-color), 0.3);
}

.breadcrumbs {
  --bread-theme-color: var(--gl-themes-main-color-rgb);
  padding: clamp(0.5rem, 0.3928571429rem + 0.5357142857vw, 0.875rem) 0;
}
.breadcrumbs .aioseo-breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.breadcrumbs .aioseo-breadcrumb,
.breadcrumbs .aioseo-breadcrumb-separator {
  font-size: clamp(0.625rem, 0.5892857143rem + 0.1785714286vw, 0.75rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.breadcrumbs .aioseo-breadcrumb a,
.breadcrumbs .aioseo-breadcrumb-separator a {
  color: RGBA(var(--bread-theme-color), 1);
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
}

.aichat {
  --ai-posi-r: unset;
  --ai-posi-l: unset;
  --ai-close-btn-r: unset;
  --ai-close-btn-l: unset;
  --ai-posi-lr-value: clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem);
  --ai-posi-b-value: clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem);
  --ai-im-width: clamp(9.6569839308rem, 7.9518364824rem + 8.5257372417vw, 15.625rem);
  position: fixed;
  max-width: var(--ai-im-width);
  width: 100%;
  bottom: 0;
  right: var(--ai-posi-r);
  left: var(--ai-posi-l);
  bottom: var(--ai-posi-b-value);
  z-index: calc(var(--zindex-fixed) + 1);
  cursor: pointer;
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
}
@media (max-width: 900px) {
  .aichat {
    bottom: calc(var(--ai-posi-b-value) + var(--fabs-btn-height));
  }
}
.aichat.-right {
  --ai-posi-r: var(--ai-posi-lr-value);
  --ai-close-btn-r: 0;
}
.aichat.-left {
  --ai-posi-l: var(--ai-posi-lr-value);
  --ai-close-btn-l: 0;
}
.aichat .aichat-close-btn {
  color: var(--gl-themes-main-color);
  background: #fff;
  position: absolute;
  top: -5px;
  right: var(--ai-close-btn-r);
  left: var(--ai-close-btn-l);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  -webkit-transform: scale(var(--ggs, 1)) translateY(-100%);
          transform: scale(var(--ggs, 1)) translateY(-100%);
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 40px;
  cursor: pointer;
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
}
.aichat .aichat-close-btn::after, .aichat .aichat-close-btn::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  width: 12px;
  height: 1px;
  background: currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 5px;
  top: 0.6rem;
  left: 0.25rem;
}
.aichat .aichat-close-btn::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.aichat .aichat-close-btn:hover {
  opacity: 0.7;
}

.scroll {
  --scr-size: clamp(3.125rem, 2.9464285714rem + 0.8928571429vw, 3.75rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: var(--scr-size);
  height: var(--scr-size);
  border-radius: 50%;
  position: absolute;
  z-index: calc(var(--zindex-fixed) - 1);
  cursor: pointer;
  -webkit-transition: var(--gl-trans-3e);
  transition: var(--gl-trans-3e);
}
.scroll i {
  color: #fff;
  -webkit-transform: rotate(var(--scr-arrow-rotate));
          transform: rotate(var(--scr-arrow-rotate));
}
.scroll a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.scroll.-down {
  --scr-size: clamp(5.0602595797rem, 4.1667623168rem + 4.4674863147vw, 8.1875rem);
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(174%);
          transform: translateY(174%);
}
.scroll.-down::after {
  display: block;
  content: "";
  position: absolute;
  background: url(../images/home-mainvisual-scroll-kazari.webp) center/cover no-repeat;
  z-index: -1;
  inset: 0;
  -webkit-animation: text-spin 50s linear infinite;
          animation: text-spin 50s linear infinite;
}
.scroll.-down .gg-io {
  width: clamp(0.424907293rem, 0.3498808052rem + 0.3751324386vw, 0.6875rem);
}
.scroll.-up {
  --scr-arrow-rotate: -90deg;
  background: #fff;
}
.scroll.-up .gg-io {
  width: clamp(0.6875rem, 0.6517857143rem + 0.1785714286vw, 0.8125rem);
}
.scroll.-totop {
  position: fixed;
}
.scroll.-st1 {
  opacity: 0;
  visibility: hidden;
  bottom: clamp(1.6223733004rem, 1.335908529rem + 1.4323238566vw, 2.625rem);
  right: clamp(0.625rem, 0.625rem + 0vw, 0.625rem);
  border: 1px solid #ebdfd9;
}
@media (max-width: 900px) {
  .scroll.-st1 {
    bottom: 75px;
  }
}
.scroll.-st2 {
  -webkit-transition: unset;
  transition: unset;
  opacity: 0;
  bottom: 0;
  right: clamp(0.625rem, 0.4464285714rem + 0.8928571429vw, 1.25rem);
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .scroll.-st2.-is-active {
    margin-bottom: 80px;
  }
}
.scroll.-is-active {
  -webkit-animation: fade-in-up 0.5s forwards;
          animation: fade-in-up 0.5s forwards;
  visibility: visible;
}
.scroll.-is-no-active {
  -webkit-animation: fade-out-down 0.5s forwards;
          animation: fade-out-down 0.5s forwards;
}
.scroll.-is-bottom {
  position: absolute;
  bottom: calc(100% - 55px);
  opacity: 1;
}
@media (max-width: 900px) {
  .scroll.-is-bottom {
    bottom: calc(100% - 108px);
  }
}

.inte-contents .acf-ht.-h3 {
  padding-top: clamp(3.75rem, 1.1172135706rem + 7.786429366vw, 8.125rem);
}

.inte-doctor {
  padding: 196px 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 900px) {
  .inte-doctor {
    padding: 180px 0 60px;
  }
}
.inte-doctor::after, .inte-doctor::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  z-index: -999;
}
.inte-doctor::after {
  background: -webkit-gradient(linear, left bottom, left top, from(#ebdfd9), color-stop(70%, transparent));
  background: -webkit-linear-gradient(bottom, #ebdfd9, transparent 70%);
  background: linear-gradient(to top, #ebdfd9, transparent 70%);
}
.inte-doctor::before {
  background: url(../images/inte-doctor-bg.webp) top center/cover no-repeat;
  z-index: -99;
  opacity: 0.2;
  mix-blend-mode: multiply;
}
.inte-doctor .container-md {
  position: relative;
  z-index: 1;
}
.inte-doctor__textarea {
  width: 100%;
  max-width: clamp(16.9962917182rem, 13.9952322091rem + 15.0052975455vw, 27.5rem);
  margin-left: clamp(0rem, -13.3729128015rem + 23.7476808905vw, 8rem);
}
.inte-doctor__textarea .tit-sec .__bg {
  margin-bottom: clamp(-3.4375rem, -1.7494040261rem + -1.8756621932vw, -2.1245364648rem);
  -webkit-transform: translateX(clamp(-8rem, 10.0333951763rem + -20.0371057514vw, -1.25rem));
          transform: translateX(clamp(-8rem, 10.0333951763rem + -20.0371057514vw, -1.25rem));
}
.inte-doctor__textarea .tit-sec .__jp {
  text-indent: -0.2em;
}
.inte-doctor__tagname {
  margin-top: clamp(1.25rem, 0.1785714286rem + 5.3571428571vw, 5rem);
}
.inte-doctor__tagname .__posi {
  font-size: clamp(0.75rem, 0.6785714286rem + 0.3571428571vw, 1rem);
  font-family: var(--gl-font-nose);
  font-weight: 600;
  line-height: 1.5;
  border-bottom: 1px solid #c0a27a;
  padding-bottom: clamp(0.5407911001rem, 0.445302843rem + 0.4774412855vw, 0.875rem);
}
.inte-doctor__tagname .__name {
  font-size: clamp(1.125rem, 0.9821428571rem + 0.7142857143vw, 1.625rem);
  font-family: var(--gl-font-nose);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem);
  margin-top: clamp(0.3862793572rem, 0.3180734593rem + 0.3410294897vw, 0.625rem);
}
.inte-doctor__tagname .__name span {
  font-size: 76.9230769231%;
}
.inte-doctor__image {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: clamp(17.1121755253rem, 14.0906542469rem + 15.1076063924vw, 27.6875rem);
  z-index: -1;
  -webkit-transform: translate(clamp(-7.75rem, 9.6154916512rem + -19.2949907236vw, -1.25rem), 260px);
          transform: translate(clamp(-7.75rem, 9.6154916512rem + -19.2949907236vw, -1.25rem), 260px);
}
@media (max-width: 900px) {
  .inte-doctor__image {
    -webkit-transform: translate(clamp(-1.25rem, 9.7179665738rem + -19.4986072423vw, 3.125rem), 30%);
            transform: translate(clamp(-1.25rem, 9.7179665738rem + -19.4986072423vw, 3.125rem), 30%);
  }
}

.inte-faq:not(:first-child) {
  margin-top: clamp(3.4765142151rem, 2.8626611337rem + 3.069265407vw, 5.625rem);
}
.inte-faq__title p {
  font-size: clamp(1.125rem, 1.0178571429rem + 0.5357142857vw, 1.5rem);
  font-family: var(--gl-font-nose);
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: clamp(0.3862793572rem, 0.3180734593rem + 0.3410294897vw, 0.625rem);
  border-bottom: 1px solid var(--gl-themes-main-color-2);
}
.inte-faq__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: var(--faq-fd, row);
          flex-direction: var(--faq-fd, row);
  gap: clamp(1.875rem, 0.8971078977rem + 2.8921023359vw, 3.5rem);
  margin-top: clamp(1.0815822002rem, 0.890605686rem + 0.9548825711vw, 1.75rem);
}
@media (max-width: 900px) {
  .inte-faq__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.inte-faq__image {
  width: 100%;
  max-width: clamp(16.9962917182rem, 13.9952322091rem + 15.0052975455vw, 27.5rem);
  margin-top: clamp(0.5021631644rem, 0.4134954971rem + 0.4433383366vw, 0.8125rem);
}
@media (max-width: 900px) {
  .inte-faq__image {
    margin: 0 auto;
    max-width: unset;
  }
}
.inte-faq__para {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.inte-faq__para p {
  line-height: 2.5;
}
.inte-faq.-imright {
  --faq-fd: row-reverse;
}

/*==========================================================================*/
/* End ACF LAYOUT TEMPLATES                                                 */
/*==========================================================================*/
/*==========================================================================*/
/* CUSTOMIZE BY PAGES                                                       */
/*==========================================================================*/
.under #main-contents {
  padding-bottom: 200px;
}
@media (max-width: 900px) {
  .under #main-contents {
    padding-bottom: 100px;
  }
}
.under #preloader {
  display: none !important;
  visibility: hidden !important;
}
.under .main-visual {
  --main-visual-title-margin: var(--gl-header-height) var(--main-visual-title-margin-lr);
  margin-top: calc(var(--gl-header-height) + clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem));
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home .acf-sech3, .home .acf-sechindex {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 0.5337183308rem + 1.4903129657vw, 1.875rem);
  padding-right: clamp(1.25rem, 0.5337183308rem + 1.4903129657vw, 1.875rem);
}

.home .acf-ht, footer .acf-ht {
  display: none !important;
  visibility: hidden !important;
}

/*==========================================================================*/
/* END CUSTOMIZE BY PAGES                                                   */
/*==========================================================================*/
.wysrccode .card-link-setup {
  height: auto;
}
.wysrccode .card-link-setup a {
  height: auto;
  width: auto;
  left: 50% !important;
  -webkit-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
  top: 0.5rem !important;
}
.wysrccode .card-link-setup a::before {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  content: "Empty href";
  color: white;
  background: #F45050;
  padding: 0.2rem 0.5rem;
  border: 1px solid #fff;
  font-size: clamp(0.625rem, 0.5892857143rem + 0.1785714286vw, 0.75rem);
  line-height: 1.5;
  letter-spacing: 0em;
}
.wysrccode .card-link-setup a[href]::before {
  content: "Change link...";
  background: #1F4172;
}
.wysrccode .card-link-setup a[href="#"]::before, .wysrccode .card-link-setup a[href=""]::before {
  content: "+ Add link";
  background: #3CCF4E;
}
.wysrccode .list-card-wpsetup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wysrccode .list-card-wpsetup > div {
  float: unset;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
.wysrccode .home-popular .popular-carousel.list-card-wpsetup {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.wysrccode .home-popular .popular-carousel.list-card-wpsetup > div {
  position: relative;
  opacity: 1;
  margin: 0;
}

/*==========================================================================*/
/* START INDEX                                                              */
/*==========================================================================*/
.tit-sec p {
  line-height: 1.5;
  text-align: center;
}
.tit-sec .__jp {
  font-size: clamp(1.3125rem, 1.0446428571rem + 1.3392857143vw, 2.25rem);
  font-family: var(--gl-font-nose);
  font-weight: 500;
}
.tit-sec .__jp.-sm {
  font-size: clamp(1.3125rem, 1.1160714286rem + 0.9821428571vw, 2rem);
}
.tit-sec .__en {
  font-size: clamp(0.75rem, 0.7142857143rem + 0.1785714286vw, 0.875rem);
  font-family: var(--gl-font-marc);
  color: var(--gl-themes-main-color-2);
  text-transform: uppercase;
  margin-top: clamp(0.3862793572rem, 0.3180734593rem + 0.3410294897vw, 0.625rem);
}
.tit-sec .__bg {
  font-size: clamp(3.4375rem, 2.2767857143rem + 5.8035714286vw, 7.5rem);
  font-family: var(--gl-font-coga);
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: clamp(-4.75rem, -1.4553571429rem + -3.6607142857vw, -2.1875rem);
  color: #e7d7b9;
}
@media (max-width: 540px) {
  .tit-sec .__bg {
    letter-spacing: 0em;
  }
}
.tit-sec .__bg.-white {
  color: #fff;
}
.tit-sec .__num {
  font-size: clamp(1.625rem, 1.2857142857rem + 1.6964285714vw, 2.8125rem);
  font-family: var(--gl-font-marc);
}
.tit-sec.-left p {
  text-align: left;
}
.tit-sec.-white p {
  color: #fff;
}
.tit-sec:has(.__bg) .__jp {
  position: relative;
  z-index: 1;
}

.kazari {
  position: absolute;
  z-index: -1;
}
.kazari.-balloon {
  width: clamp(2.3949320148rem, 1.9720554476rem + 2.114382836vw, 3.875rem);
  aspect-ratio: 100/93;
  background: url(../images/kazari-1.webp) center/cover no-repeat;
  opacity: 0.4;
}

.home-instagram {
  padding: 63px 0 120px;
  position: relative;
}
@media (max-width: 900px) {
  .home-instagram {
    padding: 40px 0 60px;
  }
}
.home-instagram::before, .home-instagram::after {
  --ab-height-bonus: clamp(17.3825710754rem, 14.3133056684rem + 15.3463270351vw, 28.125rem);
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% + var(--gl-main-visual-height) + var(--ab-height-bonus));
  z-index: -9999;
  -webkit-transform: translateY(var(--ab-height-bonus));
          transform: translateY(var(--ab-height-bonus));
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(70%, #000), to(transparent));
  -webkit-mask: -webkit-linear-gradient(top, #000 70%, transparent 100%);
          mask: -webkit-gradient(linear, left top, left bottom, color-stop(70%, #000), to(transparent));
          mask: linear-gradient(to bottom, #000 70%, transparent 100%);
}
.home-instagram::after {
  background: url(../images/home-mainvisual-bg.webp) center/cover no-repeat;
  opacity: 0.5;
}
.home-instagram::before {
  background: #f2eae6;
  z-index: -99999;
}
.home-instagram .container-md {
  max-width: 1118px;
}
.home-instagram .re-btn {
  width: auto;
}
.home-instagram .gg-io {
  width: clamp(1.1974660074rem, 0.9860277238rem + 1.057191418vw, 1.9375rem);
}
.home-instagram .__en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(1.375rem, 1.0178571429rem + 1.7857142857vw, 2.625rem);
  font-family: var(--gl-font-marc);
  line-height: 1.4;
  gap: clamp(0.6566749073rem, 0.5407248808rem + 0.5797501324vw, 1.0625rem);
  text-transform: uppercase;
}
@media (max-width: 540px) {
  .home-instagram .__en {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.home-instagram .__jp {
  font-size: clamp(0.875rem, 0.8035714286rem + 0.3571428571vw, 1.125rem);
  font-family: var(--gl-font-nose);
  line-height: 1.6;
}
@media (max-width: 540px) {
  .home-instagram .__jp {
    text-align: center;
  }
}
.home-instagram__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(1.5451174289rem, 1.2722938372rem + 1.3641179587vw, 2.5rem);
}
@media (max-width: 540px) {
  .home-instagram__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.home-instagram__litem {
  --carousel-cell-width: clamp(10.5067985167rem, 8.6515980929rem + 9.276002119vw, 17rem);
  --carousel-cell-gap: clamp(0.3476514215rem, 0.2862661134rem + 0.3069265407vw, 0.5625rem);
  --carousel-cell-view-item: 6;
  --carousel-btn: clamp(2.3176761434rem, 1.9084407558rem + 2.046176938vw, 3.75rem);
  --carousel-btn-posi: calc( (var(--carousel-cell-width) + (var(--carousel-cell-gap) / 2)) - (var(--carousel-btn) / 2) );
  --carousel-width: calc( (var(--carousel-cell-width) * var(--carousel-cell-view-item)) + (var(--carousel-cell-gap) * (var(--carousel-cell-view-item) - 1)) );
  margin-top: clamp(1.25rem, 0.5357142857rem + 3.5714285714vw, 3.75rem);
  display: block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1024px) {
  .home-instagram__litem {
    --carousel-btn-posi: -15px;
  }
}
.home-instagram #sb_instagram {
  padding-bottom: 0 !important;
  width: 100% !important;
}
@media (min-width: 1025px) {
  .home-instagram #sb_instagram {
    width: var(--carousel-width) !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: calc(var(--carousel-width) / -2) !important;
    margin-right: calc(var(--carousel-width) / -2) !important;
    -webkit-mask: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#000), color-stop(#000), to(transparent));
    -webkit-mask: -webkit-linear-gradient(left, transparent 0%, #000 var(--carousel-cell-width), #000 calc(100% - var(--carousel-cell-width)), transparent 100%);
            mask: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#000), color-stop(#000), to(transparent));
            mask: linear-gradient(to right, transparent 0%, #000 var(--carousel-cell-width), #000 calc(100% - var(--carousel-cell-width)), transparent 100%);
  }
}
.home-instagram #sb_instagram #sbi_images {
  display: block !important;
  padding: 0 !important;
}
@media (min-width: 1025px) {
  .home-instagram #sb_instagram #sbi_images::after, .home-instagram #sb_instagram #sbi_images::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: var(--carousel-cell-width);
    background: -webkit-gradient(linear, , color-stop(50%, RGBA(255, 255, 255, 0.7)), to(transparent));
    background: -webkit-linear-gradient(var(--carousel-af-lr, left), RGBA(255, 255, 255, 0.7) 50%, transparent 100%);
    background: linear-gradient(to var(--carousel-af-lr, left), RGBA(255, 255, 255, 0.7) 50%, transparent 100%);
    z-index: 1;
  }
  .home-instagram #sb_instagram #sbi_images::after {
    --carousel-af-lr: right;
    left: 0;
  }
  .home-instagram #sb_instagram #sbi_images::before {
    right: 0;
  }
}
.home-instagram #sb_instagram #sbi_images .sbi_item {
  width: var(--carousel-cell-width) !important;
  -webkit-transition: unset !important;
  transition: unset !important;
  margin-right: var(--carousel-cell-gap) !important;
  border: 1px solid #ebdfd9;
}
.home-instagram #sb_instagram #sbi_images .sbi_item img {
  aspect-ratio: 1/1 !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-instagram #sb_instagram #sbi_images .flickity-prev-next-button {
  width: var(--carousel-btn);
  height: var(--carousel-btn);
  border: 1px solid #fff;
  background: RGBA(255, 255, 255, 0.6);
  backdrop-filter: blur(3px);
  overflow: hidden;
  z-index: 3;
}
.home-instagram #sb_instagram #sbi_images .flickity-prev-next-button::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/gg-arrow-right.webp) center/clamp(0.6180469716rem, 0.5089175349rem + 0.5456471835vw, 1rem) clamp(0.5021631644rem, 0.4134954971rem + 0.4433383366vw, 0.8125rem) no-repeat;
  -webkit-transform: scale(var(--carousel-btn-af-scale, 1));
          transform: scale(var(--carousel-btn-af-scale, 1));
}
.home-instagram #sb_instagram #sbi_images .flickity-prev-next-button.previous {
  --carousel-btn-af-scale: -1;
  left: var(--carousel-btn-posi);
}
.home-instagram #sb_instagram #sbi_images .flickity-prev-next-button.next {
  right: var(--carousel-btn-posi);
}
.home-instagram #sb_instagram #sbi_images .flickity-prev-next-button svg {
  display: none !important;
  visibility: hidden !important;
}

.home-popular {
  padding: 102px 0 118px;
  position: relative;
}
@media (max-width: 900px) {
  .home-popular {
    padding: 60px 0;
  }
}
.home-popular::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  z-index: -999;
  background: RGBA(192, 162, 122, 0.2);
}
.home-popular__slides {
  margin: clamp(1.9313967862rem, 1.5903672965rem + 1.7051474483vw, 3.125rem) auto 0;
  padding-bottom: clamp(1.5451174289rem, 1.2722938372rem + 1.3641179587vw, 2.5rem);
  position: relative;
}
.home-popular .popular-carousel {
  --carousel-cell-mr: clamp(0.9375rem, -8.8832328386rem + 17.439703154vw, 6.8125rem);
  --carousel-cell-width: clamp(32.6019777503rem, 26.8453999647rem + 28.7828889281vw, 52.75rem);
  --carousel-cell-view-item: 3;
  --carousel-width: calc( (var(--carousel-cell-width) * var(--carousel-cell-view-item)) + (var(--carousel-cell-mr) * (var(--carousel-cell-view-item) - 1)) );
  --carousel-page-dot-width: clamp(1.5451174289rem, 1.2722938372rem + 1.3641179587vw, 2.5rem);
  --carousel-button-size: clamp(2.7039555006rem, 2.2265142151rem + 2.3872064277vw, 4.375rem);
  --carousel-button-posi: calc(var(--carousel-cell-width) + var(--carousel-cell-mr) - (var(--carousel-button-size) / 2));
}
@media (min-width: 1921px) {
  .home-popular .popular-carousel {
    -webkit-mask: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(#000), color-stop(#000), to(transparent));
    -webkit-mask: -webkit-linear-gradient(left, transparent 0, #000 clamp(13.5197775031rem, 11.1325710754rem + 11.9360321384vw, 21.875rem), #000 calc(100% - clamp(13.5197775031rem, 11.1325710754rem + 11.9360321384vw, 21.875rem)), transparent 100%);
            mask: -webkit-gradient(linear, left top, right top, color-stop(0, transparent), color-stop(#000), color-stop(#000), to(transparent));
            mask: linear-gradient(to right, transparent 0, #000 clamp(13.5197775031rem, 11.1325710754rem + 11.9360321384vw, 21.875rem), #000 calc(100% - clamp(13.5197775031rem, 11.1325710754rem + 11.9360321384vw, 21.875rem)), transparent 100%);
  }
}
@media (min-width: 901px) {
  .home-popular .popular-carousel {
    width: var(--carousel-width);
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: calc(var(--carousel-width) / -2);
    margin-right: calc(var(--carousel-width) / -2);
  }
}
@media (max-width: 900px) {
  .home-popular .popular-carousel {
    --carousel-button-posi: -10px;
    width: calc(100% - 30px);
    margin: 0 auto;
  }
}
.home-popular .popular-carousel .carousel-cell {
  width: var(--carousel-cell-width);
  margin-right: var(--carousel-cell-mr);
  opacity: 0.3;
  -webkit-transition: opacity 500ms;
  transition: opacity 500ms;
}
@media (max-width: 900px) {
  .home-popular .popular-carousel .carousel-cell {
    width: 80%;
  }
}
.home-popular .popular-carousel .carousel-cell img {
  width: 100%;
  height: auto;
  aspect-ratio: 100/51;
}
.home-popular .popular-carousel .carousel-cell.is-selected {
  opacity: 1;
}
.home-popular .popular-carousel .carousel-cell .__title {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.home-popular .popular-carousel .carousel-cell .__title p {
  font-size: clamp(1.375rem, 1.0178571429rem + 1.7857142857vw, 2.625rem);
  font-family: var(--gl-font-marc);
  line-height: 1.5;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
.home-popular .popular-carousel .flickity-page-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem);
  height: auto;
  bottom: 0;
  -webkit-transform: translateY(calc(100% + clamp(1.0815822002rem, 0.890605686rem + 0.9548825711vw, 1.75rem)));
          transform: translateY(calc(100% + clamp(1.0815822002rem, 0.890605686rem + 0.9548825711vw, 1.75rem)));
  gap: clamp(0.1931396786rem, 0.1590367296rem + 0.1705147448vw, 0.3125rem);
}
.home-popular .popular-carousel .flickity-page-dots .dot {
  width: var(--carousel-page-dot-width);
  height: 2px;
  background: #d2d2d2;
  border-radius: 0;
  opacity: 1;
  margin: 0;
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
  display: block;
}
.home-popular .popular-carousel .flickity-page-dots .dot.is-selected {
  background: var(--gl-themes-main-color);
}
.home-popular .popular-carousel .flickity-prev-next-button::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.home-popular .popular-carousel .flickity-prev-next-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: var(--carousel-button-size);
  height: var(--carousel-button-size);
  background: RGBA(255, 255, 255, 0.6);
  border: 1px solid #fff;
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
  -webkit-box-shadow: var(--gl-boxshadow-1);
          box-shadow: var(--gl-boxshadow-1);
  backdrop-filter: blur(6px);
}
.home-popular .popular-carousel .flickity-prev-next-button::after {
  display: inline-block;
  width: clamp(0.6180469716rem, 0.5089175349rem + 0.5456471835vw, 1rem);
  aspect-ratio: 16/13;
  background: url(../images/gg-arrow-right.webp) center/contain no-repeat;
  -webkit-transform: scale(var(--button-arrow-scale, 1));
          transform: scale(var(--button-arrow-scale, 1));
}
.home-popular .popular-carousel .flickity-prev-next-button svg {
  display: none !important;
  visibility: hidden !important;
}
.home-popular .popular-carousel .flickity-prev-next-button.previous {
  --button-arrow-scale: -1;
  left: var(--carousel-button-posi);
}
.home-popular .popular-carousel .flickity-prev-next-button.next {
  right: var(--carousel-button-posi);
}

.home-trouble {
  padding: 98px 0 146px;
  position: relative;
}
@media (max-width: 900px) {
  .home-trouble {
    padding: 60px 0;
  }
}
.home-trouble::after, .home-trouble::before {
  position: absolute;
  display: block;
  content: "";
  inset: 0;
  z-index: -999;
}
.home-trouble::after {
  background: -webkit-gradient(linear, left bottom, left top, from(#bea88b), to(transparent));
  background: -webkit-linear-gradient(bottom, #bea88b 0%, transparent 100%);
  background: linear-gradient(to top, #bea88b 0%, transparent 100%);
}
.home-trouble::before {
  background: url(../images/home-trouble-bg.webp) bottom center/1920px auto no-repeat;
  z-index: -99;
  mix-blend-mode: multiply;
  opacity: 0.3;
}
@media (min-width: 1920px) {
  .home-trouble::before {
    background-size: 100% auto;
  }
}
.home-trouble .trouble-panel {
  max-width: 1118px;
  margin: clamp(2.2017923362rem, 1.813018718rem + 1.9438680911vw, 3.5625rem) auto 0;
}
.home-trouble__laser {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: clamp(3.125rem, 0.4169911012rem + 8.0088987764vw, 7.625rem);
}
.home-trouble__textarea {
  width: 100%;
  position: relative;
}
@media (min-width: 901px) {
  .home-trouble__textarea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: clamp(17.9233621755rem, 14.7586085114rem + 15.8237683207vw, 29rem);
    min-height: clamp(18.9276885043rem, 15.5855995056rem + 16.7104449938vw, 30.625rem);
    margin-right: clamp(0rem, -8.3580705009rem + 14.8423005566vw, 5rem);
  }
}
.home-trouble__textarea .tit-sec .__en {
  color: #f7f0e4;
}
@media (max-width: 900px) {
  .home-trouble__textarea .tit-sec p {
    text-align: center;
  }
}
.home-trouble__image {
  width: 100%;
}
@media (min-width: 901px) {
  .home-trouble__image {
    width: clamp(24.1810877627rem, 19.911398552rem + 21.3484460533vw, 39.125rem);
    position: absolute;
    left: clamp(-6.8125rem, 6.3785946197rem + -14.6567717996vw, -1.875rem);
    top: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@media (max-width: 900px) {
  .home-trouble__image {
    margin-top: clamp(2.5rem, 1.5581476323rem + 2.7855153203vw, 3.125rem);
  }
}
.home-trouble__image img {
  -webkit-box-shadow: var(--gl-boxshadow-1);
          box-shadow: var(--gl-boxshadow-1);
}
.home-trouble__para {
  margin-top: clamp(1.1588380717rem, 0.9542203779rem + 1.023088469vw, 1.875rem);
}
.home-trouble__para p {
  color: #fff;
}
.home-trouble .list-card-2 {
  margin-top: clamp(3.0902348578rem, 2.5445876744rem + 2.7282359174vw, 5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.5451174289rem, 1.2722938372rem + 1.3641179587vw, 2.5rem) clamp(1.0815822002rem, 0.890605686rem + 0.9548825711vw, 1.75rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.home-trouble .list-card-2 .card {
  width: clamp(9.0625rem, 7.0089285714rem + 10.2678571429vw, 16.25rem);
  position: relative;
}
.home-trouble .list-card-2 .card__io img {
  border-radius: 50%;
}
.home-trouble .list-card-2 .card__title {
  margin-top: clamp(0.8498145859rem, 0.6997616105rem + 0.7502648773vw, 1.375rem);
}
.home-trouble .list-card-2 .card__title p {
  text-align: center;
  color: #fff;
}
.home-trouble .list-card-2 .card__title p span {
  font-size: 80%;
}
.home-trouble .list-card-2 .card__title .__jp {
  font-size: clamp(0.875rem, 0.7678571429rem + 0.5357142857vw, 1.25rem);
  font-family: var(--gl-font-nose);
  font-weight: 500;
  line-height: 1.5;
}
.home-trouble .list-card-2 .card__title .__en {
  font-size: clamp(0.5625rem, 0.5446428571rem + 0.0892857143vw, 0.625rem);
  font-family: var(--gl-font-marc);
  line-height: 1.5;
  text-transform: uppercase;
  margin-top: clamp(0.2317676143rem, 0.1908440756rem + 0.2046176938vw, 0.375rem);
  color: #f7f0e4;
}
.home-trouble .kazari.-k1 {
  width: clamp(1.2747218789rem, 1.0496424157rem + 1.1253973159vw, 2.0625rem);
  top: 0;
  right: 0;
  -webkit-transform: translate(clamp(-2.5rem, -1.2722938372rem + -1.3641179587vw, -1.5451174289rem), clamp(-10.3125rem, -1.0714285714rem + -10.2678571429vw, -3.125rem));
          transform: translate(clamp(-2.5rem, -1.2722938372rem + -1.3641179587vw, -1.5451174289rem), clamp(-10.3125rem, -1.0714285714rem + -10.2678571429vw, -3.125rem));
}
.home-trouble .kazari.-k2 {
  width: clamp(2.3949320148rem, 1.9720554476rem + 2.114382836vw, 3.875rem);
  top: 0;
  right: 0;
  -webkit-transform: translate(clamp(-4.25rem, -2.1628995232rem + -2.3190005298vw, -2.6266996292rem), clamp(-8.125rem, 0.7142857143rem + -9.8214285714vw, -1.25rem));
          transform: translate(clamp(-4.25rem, -2.1628995232rem + -2.3190005298vw, -2.6266996292rem), clamp(-8.125rem, 0.7142857143rem + -9.8214285714vw, -1.25rem));
}

.trouble-panel input[type=radio] {
  display: none !important;
  visibility: hidden !important;
}
.trouble-panel .trouble-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.trouble-panel .trouble-buttons label {
  font-size: clamp(0.875rem, 0.6964285714rem + 0.8928571429vw, 1.5rem);
  font-family: var(--gl-font-nose);
  font-weight: 500;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--trouble-btn-bg, #ebdfd9);
  min-height: clamp(3.4765142151rem, 2.8626611337rem + 3.069265407vw, 5.625rem);
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  cursor: pointer;
  padding: clamp(0.3862793572rem, 0.3180734593rem + 0.3410294897vw, 0.625rem) clamp(0.625rem, 0.4464285714rem + 0.8928571429vw, 1.25rem);
  position: relative;
  color: var(--trouble-btn-text-color, #c4879e);
  text-align: center;
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
}
.trouble-panel .trouble-buttons label::after {
  display: block;
  content: "";
  position: absolute;
  width: 1px;
  height: var(--trouble-btn-af-height, 0);
  left: 50%;
  bottom: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  z-index: 1;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #915169), color-stop(50%, #fff));
  background: -webkit-linear-gradient(bottom, #915169 50%, #fff 50%);
  background: linear-gradient(to top, #915169 50%, #fff 50%);
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
}
.trouble-panel .trouble-contents {
  position: relative;
  z-index: 1;
  padding: clamp(1.5451174289rem, 1.2722938372rem + 1.3641179587vw, 2.5rem) 0;
}
@media (min-width: 541px) {
  .trouble-panel .trouble-contents {
    min-height: clamp(28.75rem, 21.603865406rem + 21.1345939933vw, 40.625rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.trouble-panel .ct-facial,
.trouble-panel .ct-concerns {
  display: none;
  width: 100%;
}
.trouble-panel .ct-facial {
  --trouble-modal-width: clamp(14.5627317676rem, 11.9913694155rem + 12.8568117606vw, 23.5625rem);
}
.trouble-panel .ct-concerns {
  --trouble-modal-width: clamp(7.6483312732rem, 6.2978544941rem + 6.7523838955vw, 12.375rem);
}
.trouble-panel #facial-btn:checked ~ .trouble-contents #ct-facial,
.trouble-panel #concerns-btn:checked ~ .trouble-contents #ct-concerns {
  display: block;
}
.trouble-panel #facial-btn:checked ~ .trouble-buttons label[for=facial-btn],
.trouble-panel #concerns-btn:checked ~ .trouble-buttons label[for=concerns-btn] {
  --trouble-btn-bg: #915169;
  --trouble-btn-text-color: #fff;
  --trouble-btn-af-height: clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem);
}
.trouble-panel .modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: var(--trouble-modal-width);
  position: relative;
  z-index: 1;
}
.trouble-panel .modal::after {
  display: block;
  content: "";
  position: absolute;
  z-index: -1;
  width: clamp(12.9017305315rem, 10.6236535405rem + 11.390384955vw, 20.875rem);
  aspect-ratio: 1/1;
  background: url(../images/home-trouble-panel-kazari.webp) center/cover no-repeat;
  -webkit-animation: text-spin 50s linear infinite;
          animation: text-spin 50s linear infinite;
}
@media (min-width: 541px) {
  .trouble-panel .modal {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: -9;
  }
}
@media (max-width: 540px) {
  .trouble-panel .modal {
    margin: 0 auto;
  }
}
.trouble-panel .list-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem) clamp(10rem, 0.6724137931rem + 27.5862068966vw, 25.5rem);
  padding: 0 clamp(0rem, -2.9253246753rem + 5.1948051948vw, 1.75rem);
}
@media (max-width: 540px) {
  .trouble-panel .list-card {
    margin-top: clamp(1.5451174289rem, 1.2722938372rem + 1.3641179587vw, 2.5rem);
    -webkit-column-gap: clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem);
       -moz-column-gap: clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem);
            column-gap: clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem);
  }
}
.trouble-panel .list-card .card {
  width: 100%;
}
.trouble-panel .list-card .card a {
  font-size: clamp(0.75rem, 0.6428571429rem + 0.5357142857vw, 1.125rem);
  font-family: var(--gl-font-nose);
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: clamp(2.3176761434rem, 1.9084407558rem + 2.046176938vw, 3.75rem);
  position: relative;
  background: #fff;
  border: 1px solid #ebdfd9;
  text-align: center;
  padding: clamp(0.1931396786rem, 0.1590367296rem + 0.1705147448vw, 0.3125rem) clamp(1.5451174289rem, 1.2722938372rem + 1.3641179587vw, 2.5rem);
}
@media (max-width: 540px) {
  .trouble-panel .list-card .card a {
    letter-spacing: 0em;
  }
}
.trouble-panel .list-card .card .gg-io {
  position: absolute;
  z-index: 1;
  right: clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem);
  width: clamp(0.4635352287rem, 0.3816881512rem + 0.4092353876vw, 0.75rem);
}

.home-treatment {
  padding: 100px 0 140px;
  position: relative;
}
@media (max-width: 900px) {
  .home-treatment {
    padding: 60px 0;
  }
}
.home-treatment .tit-sec .__bg {
  opacity: 0.5;
}
.home-treatment::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 72%;
  background: url(../images/home-treatment-bg.webp) center/cover no-repeat;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(70%, #000), to(transparent));
  -webkit-mask: -webkit-linear-gradient(top, #000 70%, transparent 100%);
          mask: -webkit-gradient(linear, left top, left bottom, color-stop(70%, #000), to(transparent));
          mask: linear-gradient(to bottom, #000 70%, transparent 100%);
  z-index: -99999;
  opacity: 0.5;
}
.home-treatment .treatment-panel {
  --panel-listcard-pad-offset: clamp(1.25rem, -5.0185528757rem + 11.1317254174vw, 5rem);
  --panel-listcard-gutter: clamp(0.695302843rem, 0.5725322267rem + 0.6138530814vw, 1.125rem);
  --panel-listcard-num: 4;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
  background: #fff;
  margin-top: clamp(2.1631644005rem, 1.7812113721rem + 1.9097651422vw, 3.5rem);
  -webkit-box-shadow: var(--gl-boxshadow-1);
          box-shadow: var(--gl-boxshadow-1);
}
@media (max-width: 900px) {
  .home-treatment .treatment-panel {
    --panel-listcard-num: 3;
  }
}
@media (max-width: 540px) {
  .home-treatment .treatment-panel {
    --panel-listcard-num: 2;
  }
}
.home-treatment .treatment-panel .controll-panel .list-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.home-treatment .treatment-panel .controll-panel .list-button .__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(0.875rem, 0.7321428571rem + 0.7142857143vw, 1.375rem);
  font-family: var(--gl-font-nose);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25%;
          flex: 1 1 25%;
  background: var(--btn-bg, RGBA(166, 128, 77, 0.4));
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
  padding: clamp(0.1931396786rem, 0.1590367296rem + 0.1705147448vw, 0.3125rem) clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem);
  min-height: clamp(3.0902348578rem, 2.5445876744rem + 2.7282359174vw, 5rem);
  color: var(--btn-color, #fff);
  cursor: pointer;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .home-treatment .treatment-panel .controll-panel .list-button .__button {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
  }
  .home-treatment .treatment-panel .controll-panel .list-button .__button:nth-child(odd) {
    --btn-be: none;
  }
}
.home-treatment .treatment-panel .controll-panel .list-button .__button::before {
  display: block;
  content: var(--btn-be, "");
  position: absolute;
  width: 1px;
  height: clamp(1.5451174289rem, 1.2722938372rem + 1.3641179587vw, 2.5rem);
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  opacity: 0.5;
  z-index: -9;
}
.home-treatment .treatment-panel .controll-panel .list-button .__button.is-checked {
  --btn-bg: #fff;
  --btn-color: var(--gl-themes-main-color-2);
  --btn-be: none;
}
.home-treatment .treatment-panel .controll-panel .list-button .__button.is-checked + .__button {
  --btn-be: none;
}
.home-treatment .treatment-panel .controll-panel .list-button .__button:first-child {
  --btn-be: none;
}
.home-treatment .treatment-panel .list-card {
  padding: clamp(2.5rem, 0.9955506118rem + 4.4493882091vw, 5rem) var(--panel-listcard-pad-offset);
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
}
.home-treatment .treatment-panel .list-card .gutter-sizer {
  width: var(--panel-listcard-gutter);
}
.home-treatment .treatment-panel .list-card .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: calc((100% - var(--panel-listcard-gutter) * (var(--panel-listcard-num) - 1) - var(--panel-listcard-pad-offset) * 2) / var(--panel-listcard-num));
  min-height: clamp(11.2021013597rem, 9.2241303196rem + 9.8898552004vw, 18.125rem);
  padding: clamp(1.0815822002rem, 0.890605686rem + 0.9548825711vw, 1.75rem) clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.home-treatment .treatment-panel .list-card .card__image {
  position: absolute;
  inset: 0;
  z-index: -9;
}
.home-treatment .treatment-panel .list-card .card__image img {
  height: 100%;
}
.home-treatment .treatment-panel .list-card .card__title p {
  font-size: clamp(0.875rem, 0.8035714286rem + 0.3571428571vw, 1.125rem);
  font-family: var(--gl-font-nose);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
}
.home-treatment .treatment-panel .list-card .card__arrow {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.6180469716rem, 0.5089175349rem + 0.5456471835vw, 1rem);
  background: RGBA(145, 81, 105, 0.9);
  backdrop-filter: blur(3px);
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
  opacity: var(--card-opa, 0);
}
.home-treatment .treatment-panel .list-card .card__arrow::before {
  font-size: clamp(0.875rem, 0.7321428571rem + 0.7142857143vw, 1.375rem);
  font-family: var(--gl-font-marc);
  line-height: 1;
  display: block;
  content: "more";
  text-transform: uppercase;
  color: #fff;
}
.home-treatment .treatment-panel .list-card .card__arrow i {
  display: block;
  width: clamp(2.7039555006rem, 2.2265142151rem + 2.3872064277vw, 4.375rem);
  aspect-ratio: 1/1;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
}
.home-treatment .treatment-panel .list-card .card__arrow i::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  -webkit-mask: url(../images/gg-arrow-right.webp) center/clamp(0.6180469716rem, 0.5089175349rem + 0.5456471835vw, 1rem) clamp(0.5021631644rem, 0.4134954971rem + 0.4433383366vw, 0.8125rem) no-repeat;
          mask: url(../images/gg-arrow-right.webp) center/clamp(0.6180469716rem, 0.5089175349rem + 0.5456471835vw, 1rem) clamp(0.5021631644rem, 0.4134954971rem + 0.4433383366vw, 0.8125rem) no-repeat;
}
.home-treatment .treatment-panel .list-card .card:hover {
  --card-opa: 1;
}
.home-treatment .treatment-panel .list-card .card.-full {
  --panel-listcard-num: 1;
}
.home-treatment .treatment-panel .list-card .card.-width2 {
  --panel-listcard-num: 2;
}
.home-treatment .treatment-panel .list-card .card.-media {
  min-height: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}
@media (max-width: 900px) {
  .home-treatment .treatment-panel .list-card .card.-media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: clamp(1.5451174289rem, 1.2722938372rem + 1.3641179587vw, 2.5rem);
  }
}
.home-treatment .treatment-panel .list-card .card.-media .card__body {
  width: 100%;
}
@media (min-width: 901px) {
  .home-treatment .treatment-panel .list-card .card.-media .card__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: clamp(22.1338071693rem, 18.2256092177rem + 19.5409897581vw, 35.8125rem);
    position: relative;
    min-height: clamp(12.3609394314rem, 10.1783506975rem + 10.9129436694vw, 20rem);
  }
}
.home-treatment .treatment-panel .list-card .card.-media .card__title p {
  color: var(--gl-themes-main-color-1);
  font-size: clamp(0.9375rem, 0.7767857143rem + 0.8035714286vw, 1.5rem);
}
.home-treatment .treatment-panel .list-card .card.-media .card__image {
  width: 100%;
  position: static;
}
@media (min-width: 901px) {
  .home-treatment .treatment-panel .list-card .card.-media .card__image {
    position: absolute;
    width: clamp(17.9233621755rem, 14.7586085114rem + 15.8237683207vw, 29rem);
    left: clamp(-5rem, 3.3487940631rem + -9.2764378479vw, -1.875rem);
    top: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@media (max-width: 900px) {
  .home-treatment .treatment-panel .list-card .card.-media .card__image {
    margin-top: clamp(1.875rem, 0.9331476323rem + 2.7855153203vw, 2.5rem);
  }
}
.home-treatment .treatment-panel .list-card .card.-media .card__para {
  margin-top: clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem);
}
.home-treatment .rebeau {
  margin-top: clamp(7.4165636588rem, 6.1070104185rem + 6.5477662017vw, 12rem);
}
@media (max-width: 900px) {
  .home-treatment .rebeau {
    margin-top: clamp(3.75rem, 1.8662952646rem + 5.5710306407vw, 5rem);
  }
}
.home-treatment .rebeau__textarea {
  width: 100%;
}
@media (min-width: 901px) {
  .home-treatment .rebeau__textarea {
    max-width: clamp(17.9233621755rem, 14.7586085114rem + 15.8237683207vw, 29rem);
    margin-left: clamp(0rem, -8.3580705009rem + 14.8423005566vw, 5rem);
    position: relative;
    min-height: clamp(22.3655747837rem, 18.4164532933rem + 19.7456074519vw, 36.1875rem);
  }
}
.home-treatment .rebeau__title {
  position: relative;
  padding-bottom: clamp(1.4678615575rem, 1.2086791453rem + 1.2959120607vw, 2.375rem);
}
.home-treatment .rebeau__title::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: clamp(2.7039555006rem, 2.2265142151rem + 2.3872064277vw, 4.375rem);
  height: 1px;
  background: #c0a27a;
}
@media (max-width: 900px) {
  .home-treatment .rebeau__title::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (max-width: 900px) {
  .home-treatment .rebeau__title p {
    text-align: center;
  }
}
.home-treatment .rebeau__title .__en {
  font-size: clamp(2.5rem, 1.6071428571rem + 4.4642857143vw, 5.625rem);
  font-family: var(--gl-font-marc);
  line-height: 1;
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, #915169), color-stop(60%, #edcda2));
  background: -webkit-linear-gradient(left, #915169 10%, #edcda2 60%);
  background: linear-gradient(to right, #915169 10%, #edcda2 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-treatment .rebeau__title .__jp {
  font-size: clamp(0.9375rem, 0.8482142857rem + 0.4464285714vw, 1.25rem);
  font-family: var(--gl-font-nose);
  font-weight: 500;
  line-height: 1.5;
  margin-top: clamp(0.3862793572rem, 0.3180734593rem + 0.3410294897vw, 0.625rem);
}
.home-treatment .rebeau__para {
  margin-top: clamp(1.5451174289rem, 1.2722938372rem + 1.3641179587vw, 2.5rem);
}
.home-treatment .rebeau__image {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: clamp(1.5451174289rem, 1.2722938372rem + 1.3641179587vw, 2.5rem);
}
@media (min-width: 901px) {
  .home-treatment .rebeau__image {
    width: clamp(25.2626699629rem, 20.802004238rem + 22.3033286244vw, 40.875rem);
    position: absolute;
    top: 0;
    right: clamp(-5rem, 3.3487940631rem + -9.2764378479vw, -1.875rem);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@media (max-width: 900px) and (min-width: 541px) {
  .home-treatment .rebeau__image {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 900px) {
  .home-treatment .rebeau__image {
    margin-top: clamp(6.1804697157rem, 5.0891753488rem + 5.4564718347vw, 10rem);
  }
}
.home-treatment .rebeau__image .__im1 {
  max-width: clamp(12.6313349815rem, 10.401002119rem + 11.1516643122vw, 20.4375rem);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(clamp(-6.875rem, -3.4988080523rem + -3.7513243864vw, -4.2490729295rem));
          transform: translateY(clamp(-6.875rem, -3.4988080523rem + -3.7513243864vw, -4.2490729295rem));
  -webkit-box-shadow: var(--gl-boxshadow-1);
          box-shadow: var(--gl-boxshadow-1);
}
@media (max-width: 900px) {
  .home-treatment .rebeau__image .__im1 {
    left: 30%;
    -webkit-transform: translate(-50%, clamp(-6.875rem, -3.4988080523rem + -3.7513243864vw, -4.2490729295rem));
            transform: translate(-50%, clamp(-6.875rem, -3.4988080523rem + -3.7513243864vw, -4.2490729295rem));
  }
}
.home-treatment .rebeau__image .__im2 {
  max-width: clamp(15.760197775rem, 12.9773971393rem + 13.9140031785vw, 25.5rem);
}
.home-treatment .doctors-cosme::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.home-treatment .doctors-cosme {
  margin-top: clamp(3.0902348578rem, 2.5445876744rem + 2.7282359174vw, 5rem);
  position: relative;
  padding: clamp(2.5rem, 0.9203281424rem + 4.6718576196vw, 5.125rem) clamp(1.25rem, -5.0185528757rem + 11.1317254174vw, 5rem) clamp(2.5rem, 0.6194382647rem + 5.5617352614vw, 5.625rem);
}
@media (min-width: 901px) {
  .home-treatment .doctors-cosme {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: clamp(0.5407911001rem, 0.445302843rem + 0.4774412855vw, 0.875rem);
  }
}
.home-treatment .doctors-cosme::after {
  z-index: -999;
  background: #fff;
  top: 0;
  right: 0;
}
@media (min-width: 901px) {
  .home-treatment .doctors-cosme::after {
    width: 83%;
  }
}
.home-treatment .doctors-cosme .imposter {
  width: 100%;
}
@media (min-width: 901px) {
  .home-treatment .doctors-cosme .imposter {
    max-width: clamp(23.75rem, 3.5861549165rem + 35.8070500928vw, 35.8125rem);
  }
}
@media (min-width: 901px) {
  .home-treatment .doctors-cosme__image {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    max-width: clamp(19.9706427689rem, 16.4443978457rem + 17.6312246159vw, 32.3125rem);
    -webkit-transform: translate(0, 15%);
            transform: translate(0, 15%);
  }
}
@media (max-width: 900px) {
  .home-treatment .doctors-cosme__image {
    margin-top: clamp(1.9313967862rem, 1.5903672965rem + 1.7051474483vw, 3.125rem);
  }
}
.home-treatment .doctors-cosme__image img {
  -webkit-box-shadow: var(--gl-boxshadow-1);
          box-shadow: var(--gl-boxshadow-1);
}
.home-treatment .doctors-cosme__title {
  margin-top: clamp(1.3519777503rem, 1.1132571075rem + 1.1936032138vw, 2.1875rem);
}
.home-treatment .doctors-cosme__title p {
  font-size: clamp(0.875rem, 0.7678571429rem + 0.5357142857vw, 1.25rem);
  font-family: var(--gl-font-nose);
  font-weight: 500;
  line-height: 1.8;
}
.home-treatment .doctors-cosme__para {
  margin-top: clamp(0.3090234858rem, 0.2544587674rem + 0.2728235917vw, 0.5rem);
}
@media (max-width: 900px) {
  .home-treatment .doctors-cosme .tit-sec p {
    text-align: center;
  }
}
.home-treatment .doctors-cosme .re-btn {
  margin-top: clamp(0.8884425216rem, 0.7315689564rem + 0.7843678262vw, 1.4375rem);
}
.home-treatment .kazari.-k1 {
  width: clamp(1.2747218789rem, 1.0496424157rem + 1.1253973159vw, 2.0625rem);
  top: 0;
  left: 39%;
  -webkit-transform: translateY(-180%);
          transform: translateY(-180%);
}
.home-treatment .kazari.-k2 {
  top: 0;
  left: 43%;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
}
.home-treatment .kazari.-k3 {
  width: clamp(18.5414091471rem, 15.2675260463rem + 16.3694155041vw, 30rem);
  height: clamp(17.7688504326rem, 14.6313791277rem + 15.6873565248vw, 28.75rem);
  background: #c0a27a;
  top: 0;
  left: 0;
  z-index: -9999;
  -webkit-transform: translate(-15%, -13.5%);
          transform: translate(-15%, -13.5%);
  opacity: 0.2;
}

.home-feature {
  padding: 100px 0 80px;
  position: relative;
}
@media (max-width: 900px) {
  .home-feature {
    padding: 60px 0;
  }
}
.home-feature::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/home-feature-bg-2.webp) bottom center/1920px auto no-repeat;
  z-index: -9999;
  opacity: 0.6;
}
.home-feature .container-md {
  position: relative;
}
.home-feature .tit-sec .__bg {
  color: RGBA(231, 215, 185, 0.2);
}
.home-feature .list-card {
  margin: clamp(2.1631644005rem, 1.7812113721rem + 1.9097651422vw, 3.5rem) auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1118px;
  gap: clamp(3.125rem, 1.470105673rem + 4.89432703vw, 5.875rem) clamp(0.625rem, -2.0077864294rem + 7.786429366vw, 5rem);
  counter-reset: card-count;
}
@media (max-width: 540px) {
  .home-feature .list-card {
    grid-template-columns: repeat(1, 1fr);
  }
}
.home-feature .list-card .card {
  width: 100%;
  position: relative;
  counter-increment: card-count;
}
.home-feature .list-card .card__image {
  position: relative;
}
.home-feature .list-card .card__image::after {
  font-size: clamp(3.75rem, 2.6785714286rem + 5.3571428571vw, 7.5rem);
  font-family: var(--gl-font-nose);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  display: block;
  content: "0" counter(card-count);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  -webkit-transform: translate(-16%, 30%);
          transform: translate(-16%, 30%);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(25%, #edcda2), color-stop(90%, white));
  background: -webkit-linear-gradient(bottom, #edcda2 25%, white 90%);
  background: linear-gradient(to top, #edcda2 25%, white 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-feature .list-card .card__title {
  margin-top: clamp(1.6223733004rem, 1.335908529rem + 1.4323238566vw, 2.625rem);
  padding-bottom: clamp(0.5794190358rem, 0.4771101889rem + 0.5115442345vw, 0.9375rem);
  position: relative;
}
.home-feature .list-card .card__title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: clamp(2.7039555006rem, 2.2265142151rem + 2.3872064277vw, 4.375rem);
  height: 1px;
  background: #c0a27a;
}
.home-feature .list-card .card__title p {
  font-size: clamp(1rem, 0.8571428571rem + 0.7142857143vw, 1.5rem);
  font-family: var(--gl-font-nose);
  font-weight: 500;
  line-height: 1.5;
}
.home-feature .list-card .card__para {
  margin-top: clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem);
  padding-right: clamp(0rem, -8.3580705009rem + 14.8423005566vw, 5rem);
}
@media (min-width: 541px) {
  .home-feature .list-card .card:nth-child(odd) {
    top: clamp(2.3176761434rem, 1.9084407558rem + 2.046176938vw, 3.75rem);
  }
}
.home-feature .re-btn {
  margin: clamp(2.4721878863rem, 2.0356701395rem + 2.1825887339vw, 4rem) auto 0;
  max-width: 1118px;
}
.home-feature .kazari.-k1 {
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(20.2796662546rem, 16.6988566131rem + 17.9040482077vw, 32.8125rem);
  background: url(../images/home-feature-bg-1.webp) center/cover no-repeat;
  z-index: -999;
  -webkit-clip-path: ellipse(120% 100% at 50% 0%);
          clip-path: ellipse(120% 100% at 50% 0%);
  aspect-ratio: 3/2;
}
.home-feature .kazari.-k1::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background: RGBA(100, 78, 50, 0.7);
  backdrop-filter: blur(3px);
}
.home-feature .kazari.-k3 {
  width: clamp(1.2747218789rem, 1.0496424157rem + 1.1253973159vw, 2.0625rem);
  z-index: 1;
  top: 27.9%;
  left: 6.8%;
}
.home-feature .kazari.-k4 {
  width: clamp(2.3949320148rem, 1.9720554476rem + 2.114382836vw, 3.875rem);
  z-index: 1;
  top: 30%;
  left: 2.5%;
}

.home-greeting {
  padding: 40px 0 155px;
  position: relative;
}
@media (max-width: 900px) {
  .home-greeting {
    padding: 0 0 60px;
  }
}
.home-greeting::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: -999;
  background: url(../images/home-greeting-bg.webp) top center/cover no-repeat;
  opacity: 0.2;
  mix-blend-mode: multiply;
}
.home-greeting .container-md {
  position: relative;
}
.home-greeting .tit-sec {
  padding-left: clamp(0rem, -8.3580705009rem + 14.8423005566vw, 5rem);
}
.home-greeting .tit-sec .__bg {
  margin-bottom: clamp(-3.4375rem, -1.7494040261rem + -1.8756621932vw, -2.1245364648rem);
  -webkit-transform: translateX(clamp(-5rem, 8.3580705009rem + -14.8423005566vw, 0rem));
          transform: translateX(clamp(-5rem, 8.3580705009rem + -14.8423005566vw, 0rem));
  color: #fff;
}
@media (max-width: 900px) {
  .home-greeting .tit-sec p {
    text-align: center;
  }
}
.home-greeting .imposter {
  padding-left: clamp(0rem, -8.3580705009rem + 14.8423005566vw, 5rem);
  gap: clamp(2.3176761434rem, 1.9084407558rem + 2.046176938vw, 3.75rem) clamp(1.0815822002rem, 0.890605686rem + 0.9548825711vw, 1.75rem);
  margin-top: clamp(1.6223733004rem, 1.335908529rem + 1.4323238566vw, 2.625rem);
}
@media (max-width: 900px) {
  .home-greeting .imposter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.home-greeting .__tagnane {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: clamp(0.3862793572rem, 0.3180734593rem + 0.3410294897vw, 0.625rem);
  max-height: clamp(13.1334981459rem, 10.8144976161rem + 11.5950026488vw, 21.25rem);
  height: 100%;
  -webkit-transform: translate(-11%, 12.5%);
          transform: translate(-11%, 12.5%);
}
.home-greeting .__tagnane p {
  font-family: var(--gl-font-nose);
  line-height: 1.4;
  font-weight: 500;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.home-greeting .__posi {
  font-size: clamp(0.75rem, 0.6785714286rem + 0.3571428571vw, 1rem);
  padding-left: clamp(0.3862793572rem, 0.3180734593rem + 0.3410294897vw, 0.625rem);
  border-left: 1px solid #c0a27a;
}
.home-greeting .__name {
  font-size: clamp(1.125rem, 0.9821428571rem + 0.7142857143vw, 1.625rem);
  letter-spacing: 0.2em;
  -webkit-transform: translateY(clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem));
          transform: translateY(clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem));
}
.home-greeting .__name span {
  font-size: 76.9230769231%;
  padding-bottom: clamp(0.7725587145rem, 0.6361469186rem + 0.6820589793vw, 1.25rem);
  letter-spacing: 0.1em;
}
.home-greeting__image {
  width: 100%;
  position: relative;
  max-width: clamp(19.8933868974rem, 16.3807831538rem + 17.563018718vw, 32.1875rem);
}
@media (min-width: 901px) {
  .home-greeting__image {
    position: absolute;
    right: 0;
    bottom: 0;
    -webkit-transform: translate(clamp(-2rem, 3.3432282004rem + -5.9369202226vw, 0rem), 155px);
            transform: translate(clamp(-2rem, 3.3432282004rem + -5.9369202226vw, 0rem), 155px);
    z-index: -1;
  }
}
@media (max-width: 900px) {
  .home-greeting__image {
    margin: 0 auto;
  }
}
.home-greeting__body {
  width: 100%;
}
@media (min-width: 901px) {
  .home-greeting__body {
    max-width: clamp(25.3012978986rem, 20.833811584rem + 22.3374315734vw, 40.9375rem);
  }
}
@media (max-width: 900px) {
  .home-greeting__body {
    margin-top: clamp(2.3176761434rem, 1.9084407558rem + 2.046176938vw, 3.75rem);
  }
}
.home-greeting .re-btn {
  margin-top: clamp(2.4721878863rem, 2.0356701395rem + 2.1825887339vw, 4rem);
}
.home-greeting .kazari.-k1 {
  width: clamp(1.0043263288rem, 0.8269909942rem + 0.8866766731vw, 1.625rem);
  top: -15%;
  left: 48.2%;
}
.home-greeting .kazari.-k2 {
  width: clamp(2.4335599506rem, 2.0038627936rem + 2.1484857849vw, 3.9375rem);
  top: -9.6%;
  left: 54.8%;
}
.home-greeting .kazari.-k3 {
  width: clamp(1.5451174289rem, 1.2722938372rem + 1.3641179587vw, 2.5rem);
  top: -1.5%;
  left: 59%;
}

.home-information {
  padding: 125px 0 96px;
  position: relative;
}
@media (max-width: 900px) {
  .home-information {
    padding: 60px 0;
  }
}
.home-information::after, .home-information::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  z-index: -999;
}
.home-information::after {
  background: url(../images/home-Information-bg-2.webp) center/cover no-repeat;
}
.home-information::before {
  background: url(../images/home-Information-bg.webp) top center/cover no-repeat;
  z-index: -99;
  opacity: 0.2;
  mix-blend-mode: multiply;
}
.home-information .imposter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: clamp(2.3176761434rem, 1.9084407558rem + 2.046176938vw, 3.75rem);
}
@media (max-width: 900px) {
  .home-information .imposter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 900px) {
  .home-information .tit-sec p {
    text-align: center;
  }
}
.home-information__access {
  width: 100%;
  padding-left: clamp(0rem, -8.3580705009rem + 14.8423005566vw, 5rem);
}
@media (min-width: 901px) {
  .home-information__access {
    width: 51%;
  }
}
.home-information__wktime {
  margin-top: clamp(3.125rem, 3.0892857143rem + 0.1785714286vw, 3.25rem);
}
.home-information__tab {
  width: 100%;
}
@media (min-width: 901px) {
  .home-information__tab {
    width: 49%;
    padding: 0 clamp(0rem, -8.3580705009rem + 14.8423005566vw, 5rem) 0 clamp(3.125rem, -0.0092764378rem + 5.5658627087vw, 5rem);
  }
}
.home-information__tab table {
  margin-top: clamp(1.1588380717rem, 0.9542203779rem + 1.023088469vw, 1.875rem);
}
.home-information__tab table tr td {
  color: #fff;
  vertical-align: top;
  padding: 0;
  border: 0;
  line-height: 1.7;
}
.home-information__tab table tr td:first-child {
  width: clamp(4.2490729295rem, 3.4988080523rem + 3.7513243864vw, 6.875rem);
}
.home-information__tab table tr:not(:last-child) td {
  padding-bottom: clamp(1.1588380717rem, 0.9542203779rem + 1.023088469vw, 1.875rem);
}
.home-information__tab .re-btn {
  margin-top: clamp(2.085908529rem, 1.7175966802rem + 1.8415592442vw, 3.375rem);
}
.home-information__gmap {
  margin-top: clamp(3.125rem, 3.0357142857rem + 0.4464285714vw, 3.4375rem);
}
.home-information__gmap iframe {
  height: clamp(14.2923362176rem, 11.768717994rem + 12.6180911178vw, 23.125rem);
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.home-news {
  --card-gap: clamp(3.206118665rem, 2.6400097122rem + 2.8305447643vw, 5.1875rem);
  padding: 126px 0 136px;
  position: relative;
}
@media (max-width: 900px) {
  .home-news {
    padding: 60px 0;
  }
}
.home-news::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  z-index: -999;
  background: url(../images/home-news-bg.webp) top left/1602px auto no-repeat;
  opacity: 0.6;
}
.home-news .container-md {
  position: relative;
}
.home-news .tit-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.4635352287rem, 0.3816881512rem + 0.4092353876vw, 0.75rem);
}
.home-news .tit-sec .__jp {
  font-size: clamp(1.125rem, 0.9107142857rem + 1.0714285714vw, 1.875rem);
}
.home-news .tit-sec .__en {
  font-size: clamp(0.875rem, 0.8392857143rem + 0.1785714286vw, 1rem);
  margin-top: 0;
}
.home-news .re-btn {
  --rebtn-width: clamp(6.2577255871rem, 5.1527900406rem + 5.5246777327vw, 10.125rem);
  width: auto;
  margin: 0;
  -webkit-transform: translateY(clamp(-0.3125rem, -0.1590367296rem + -0.1705147448vw, -0.1931396786rem));
          transform: translateY(clamp(-0.3125rem, -0.1590367296rem + -0.1705147448vw, -0.1931396786rem));
}
.home-news .container-md {
  max-width: 1118px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: clamp(3.75rem, 1.6604823748rem + 3.7105751391vw, 5rem);
}
@media (max-width: 900px) {
  .home-news .container-md {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.home-news .card {
  width: 100%;
}
@media (min-width: 901px) {
  .home-news .card {
    max-width: clamp(19.9706427689rem, 16.4443978457rem + 17.6312246159vw, 32.3125rem);
  }
}
.home-news .card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.5451174289rem, 1.2722938372rem + 1.3641179587vw, 2.5rem);
}
.home-news .card__litem {
  margin-top: clamp(0.9656983931rem, 0.7951836482rem + 0.8525737242vw, 1.5625rem);
}
.home-news .kazari.-k1 {
  width: clamp(0.9270704574rem, 0.7633763023rem + 0.8184707752vw, 1.5rem);
  top: clamp(-5.625rem, -0.8035714286rem + -5.3571428571vw, -1.875rem);
  left: clamp(-3.4375rem, 3.3928571429rem + -7.5892857143vw, 1.875rem);
}
.home-news .kazari.-k2 {
  width: clamp(1.7768850433rem, 1.4631379128rem + 1.5687356525vw, 2.875rem);
  top: clamp(-4.6875rem, 0.5357142857rem + -5.8035714286vw, -0.625rem);
  left: clamp(-1.25rem, 4.375rem + -6.25vw, 3.125rem);
}

/*==========================================================================*/
/* END INDEX                                                                */
/*==========================================================================*/