@charset "UTF-8";
/*!
 * Grits-Themes v2.1.0
 * @Author: phamcuong96
 */
/*==========================================================================*/
/* START VARIABLE                                                           */
/*==========================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Shippori+Mincho:wght@400;500;600;700&display=swap");
: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-boxshadow-1: 0px 0px clamp(1.25rem, 1.07143rem + 0.89286vw, 1.875rem) 0px rgba(147, 165, 203, 0.15);
  --gl-boxshadow-2: 0px clamp(1.66667rem, 1.42857rem + 1.19048vw, 2.5rem) clamp(1.25rem, 1.07143rem + 0.89286vw, 1.875rem) 0px rgba(147, 165, 203, 0.15);
  --gl-font-cinz: "Cinzel", serif;
  --gl-header-height: clamp(6.875rem, 3.8661rem + 8.89878vw, 11.875rem);
  --gl-themes-main-color: #63636d;
  --gl-themes-main-color-rgb: 99, 99, 109;
  --gl-themes-main-color-2: #93a5cb;
  --gl-themes-main-color-2-rgb: 147, 165, 203;
  --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: 93.3vh;
  --gl-default-text-color: var(--gl-themes-main-color);
  --gl-default-paragraph-line-height: 2.25;
  --gl-default-title-line-height: 1.5;
  --gl-default-font: "Shippori Mincho", serif;
  --gl-default-background-rgb: 255, 255, 255;
  --gl-sec-heading-2-color: var(--gl-default-text-color);
  --gl-sec-heading-2-align: center;
  --gl-sec-heading-2-font-size: clamp(1.625rem, 1.44643rem + 0.89286vw, 2.25rem);
  --gl-sec-heading-3-font-size: clamp(1.375rem, 1.23214rem + 0.71429vw, 1.875rem);
  --gl-sec-heading-4-font-size: clamp(1.125rem, 1.01786rem + 0.53571vw, 1.5rem);
  --gl-sec-heading-5-font-size: clamp(1.0625rem, 1.00893rem + 0.26786vw, 1.25rem);
  --gl-sec-heading-6-font-size: clamp(0.9375rem, 0.88393rem + 0.26786vw, 1.125rem);
  --gl-sec-heading-weight: 500;
  --gl-sec-heading-font: var(--gl-default-font);
}

@media only screen and (max-width: 900px) {
  :root {
    --gl-main-visual-height: calc(100vh - 20px);
  }
}

@-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 {
  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 only screen and (max-width: 900px) {
  th, td {
    padding: 0.5em;
  }
}

/*==========================================================================*/
/* END RESET TAG HTML                                                       */
/*==========================================================================*/
/*==========================================================================*/
/* START SET'UP FONTS                                                       */
/*==========================================================================*/
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.75893rem + 0.26786vw, 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: .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 only screen and (max-width: 900px) {
  .pc-only {
    display: none !important;
    visibility: hidden !important;
  }
}

@media only screen and (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.11111vw, 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.4);
  backdrop-filter: blur(8px);
  -webkit-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;
}

.title-gradient-color {
  background: url(../images/title-paragrap-bg.webp) center/cover no-repeat;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.split-1, .split-2 {
  will-change: transform;
}

.splitted-word {
  will-change: transform;
}

/*==========================================================================*/
/* END UTILITIES                                                            */
/*==========================================================================*/
/*==========================================================================*/
/* START HEADER                                                             */
/*==========================================================================*/
.header {
  --header-background: transparent;
  --header-background-dynamic: linear-gradient(to bottom, #fff 20%, transparent 100%);
  --header-boxshadow: none;
  --header-boxshadow-dynamic: none;
  --header-logo-maxwidth: 370;
  --header-logo-maxwidth-dynamic: 301;
  --header-logo-content: none;
  --header-logo-content-dynamic: url(../images/header-dyn-logo.webp);
  --header-menu-item-font: var(--gl-default-font);
  --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.83952rem + 3.71058vw, 2.5rem);
  --header-main-menu-item-color: #fff;
  --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-hamburger-mr: clamp(1.25rem, -5.01855rem + 11.13173vw, 5rem);
  --header-hamburger-btn-trany: clamp(0rem, -1.56714rem + 2.78293vw, 0.9375rem);
  --header-hamburger-text-trany-bonus: clamp(0rem, -1.46266rem + 2.5974vw, 0.875rem);
  --header-toggle-background: RGBA(255,255,255, 0.95);
}

.header.scroll-active, .header.hamburger-active {
  --gl-header-height: clamp(6.875rem, 6.198rem + 2.00222vw, 8rem);
  --header-hamburger-mr: clamp(1.25rem, -0.83952rem + 3.71058vw, 2.5rem);
  --header-hamburger-btn-trany: 0px;
  --header-hamburger-text-trany-bonus: 0px;
  --header-logo-maxwidth: var(--header-logo-maxwidth-dynamic);
  --header-logo-content: var(--header-logo-content-dynamic);
  --header-background: var(--header-background-dynamic);
  --header-background-opa: 1;
  --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__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: 40px;
  width: 100%;
  height: var(--gl-header-height);
  position: fixed;
  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);
}

.header__inner::after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

.header__inner::after {
  top: 0;
  left: 0;
  background: var(--header-background-dynamic);
  z-index: -999;
  opacity: var(--header-background-opa, 0);
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
}

.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, -1.88428rem + 5.56586vw, 3.125rem);
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
}

@media only screen and (max-width: 900px) {
  .header__logo {
    max-width: calc((var(--header-logo-maxwidth) * 1px) * 2 / 3);
    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: 0 4%;
  max-width: calc(var(--gl-bp-desktops) * 1px);
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -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.10355rem + 0.37106vw, 0.4375rem);
  aspect-ratio: 1/cos(30deg);
  -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 only screen and (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.59821rem + 0.44643vw, 1rem);
  font-weight: 500;
  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.48214rem + 0.71429vw, 1.125rem);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  color: var(--header-menu-item-title-color);
  font-family: var(--header-menu-item-title-font);
  font-weight: var(--header-menu-item-title-weight);
}

.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.55357rem + 0.35714vw, 0.875rem);
  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 {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

.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(10rem, 8.57143rem + 7.14286vw, 15rem);
  --header-dropdown-lv1-column: 1;
}

.header__dropdown.-md {
  --header-dropdown-width: clamp(20.83333rem, 17.85714rem + 14.88095vw, 31.25rem);
  --header-dropdown-lv1-column: 2;
}

.header__dropdown.-lg {
  --header-dropdown-width: clamp(20rem, 12.32143rem + 38.39286vw, 46.875rem);
  --header-dropdown-lv1-column: 3;
}

.header__dropdown.-xl {
  --header-dropdown-width: clamp(20rem, 0.71429rem + 96.42857vw, 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: 10px;
  --hamburger-lines-height: 1px;
  --hamburger-lines-gap: 9px;
  --hamburger-text-tranx-bonus: clamp(0.625rem, -0.21081rem + 1.48423vw, 1.125rem);
  background: var(--header-hamburger-background);
  margin-right: var(--header-hamburger-mr);
  position: relative;
  z-index: 1;
  height: 100%;
  width: clamp(2.5rem, 0.41048rem + 3.71058vw, 3.75rem);
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
}

@media only screen and (max-width: 900px) {
  .header__hamburger {
    --hamburger-active-trans-value: 7px;
    --hamburger-lines-gap: 6px;
  }
}

.header__hamburger .hamburger-btn-text {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(calc(-100% - var(--hamburger-text-tranx-bonus)), calc(-50% - var(--header-hamburger-text-trany-bonus)));
          transform: translate(calc(-100% - var(--hamburger-text-tranx-bonus)), calc(-50% - var(--header-hamburger-text-trany-bonus)));
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
}

.header__hamburger .hamburger-btn-text p {
  font-size: clamp(0.75rem, 0.71429rem + 0.17857vw, 0.875rem);
  font-family: var(--gl-font-cinz);
  line-height: 1;
  color: var(--header-hamburger-color);
  text-align: center;
  text-transform: uppercase;
}

.header__hamburger .hamburger-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, calc(-50% - var(--header-hamburger-btn-trany)));
          transform: translate(-50%, calc(-50% - var(--header-hamburger-btn-trany)));
  width: 100%;
  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);
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
}

.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 .3s;
  transition: all .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__hamburger.-for-fabs {
  --header-hamburger-color: var(--gl-themes-main-color);
  --header-hamburger-color-dynamic: var(--gl-themes-main-color);
  --hamburger-active-trans-value: 6px;
  --hamburger-lines-gap: 5px;
  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: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: clamp(0.4375rem, 0.12407rem + 0.55659vw, 0.625rem);
  width: clamp(2.1875rem, -0.4244rem + 4.63822vw, 3.75rem);
}

.header__hamburger.-for-fabs .hamburger-btn-text {
  position: static;
}

.header__hamburger.-for-fabs .hamburger-btn-text p {
  font-size: clamp(0.625rem, 0.55357rem + 0.35714vw, 0.875rem);
}

.header__hamburger.-for-fabs .hamburger-btn {
  position: static;
}

.header__hamburger.-for-fabs .hamburger-btn.active {
  margin-top: clamp(0.41667rem, 0.35714rem + 0.29762vw, 0.625rem);
  padding-bottom: clamp(0.25rem, 0.21429rem + 0.17857vw, 0.375rem);
}

.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);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  -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: 3rem;
  --cusme-sub-gap: 1rem;
  --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 only screen and (max-width: 1024px) {
  .customize-menu {
    --cusme-main-gap: 2rem;
    --cusme-sub-gap: 0.6rem;
  }
}

@media only screen and (max-width: 900px) {
  .customize-menu {
    --cusme-radius: 0.3rem;
    --cusme-total-columns: 2;
    --cusme-main-menu-item-column: 2;
  }
}

@media only screen and (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 only screen and (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.07143rem + 0.89286vw, 1.875rem);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--gl-themes-main-color-2);
}

.customize-menu .main-menu-link[href="#"], .customize-menu .main-menu-link[href=""] {
  cursor: text;
}

.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;
  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);
  -webkit-backdrop-filter: blur(5px);
}

@media only screen and (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 > .sub-menu-link {
  font-size: clamp(1rem, 0.85714rem + 0.71429vw, 1.5rem);
  font-weight: 500;
  color: var(--gl-themes-main-color);
}

.customize-menu .sub-menu-item:not(.menu-item-has-children) .sub-menu-link {
  font-size: clamp(0.6875rem, 0.63393rem + 0.26786vw, 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: 1rem;
}

.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 only screen and (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 only screen and (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 only screen and (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) * 1.7) auto var(--gl-header-height);
}

@media only screen and (max-width: 900px) {
  .customize-menu.-hamburger {
    margin: calc(var(--gl-header-height) * 1.2) auto var(--gl-header-height);
  }
}

.customize-menu.-footer .main-menu-link, .customize-menu.-footer .sub-menu-link {
  color: #fff !important;
}

.customize-menu.-footer .menu-item-clinic .sub-menu.-lv1::after, .customize-menu.-footer .menu-item-menu .sub-menu.-lv1::after {
  background: #fff;
}

.customize-menu.-footer.-sm {
  --cusme-total-columns: 2;
  --cusme-main-menu-item-column: 2;
}

@media only screen and (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;
}

.customize-menu .menu-item-clinic .sub-menu.-lv1, .customize-menu .menu-item-menu .sub-menu.-lv1 {
  margin-left: clamp(0.83333rem, 0.71429rem + 0.59524vw, 1.25rem);
}

.customize-menu .menu-item-clinic .sub-menu.-lv1::after, .customize-menu .menu-item-menu .sub-menu.-lv1::after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

.customize-menu .menu-item-clinic .sub-menu.-lv1::after, .customize-menu .menu-item-menu .sub-menu.-lv1::after {
  left: clamp(-1.25rem, -0.71429rem + -0.59524vw, -0.83333rem);
  bottom: 0;
  width: 1px;
  background: var(--gl-themes-main-color-2);
}

@media only screen and (min-width: 901px) {
  .customize-menu .menu-item-clinic {
    --cusme-total-columns: 5.33;
    --cusme-main-menu-item-column: 2;
  }
}

@media only screen and (min-width: 901px) {
  .customize-menu .menu-item-menu {
    --cusme-total-columns: 4.8;
  }
}

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

/*==========================================================================*/
/* END HEADER                                                               */
/*==========================================================================*/
/*==========================================================================*/
/* START MAIN VISUAL                                                        */
/*==========================================================================*/
.main-visual {
  --main-visual-mask-color: rgba(255,255,255,0.7);
  --main-visual-background-color: #000;
  --main-visual-title-margin-lr: 80px;
  --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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  height: var(--gl-main-visual-height);
}

.main-visual::before {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 900px) {
  .main-visual {
    --main-visual-title-margin-lr: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.main-visual::before {
  top: 0;
  left: 0;
  background: url(../images/home-mainvisual-bg.webp) center/cover no-repeat;
  z-index: -99999;
  height: calc(100% + clamp(16.66667rem, 14.28571rem + 11.90476vw, 25rem));
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(60%, black), to(rgba(0, 0, 0, 0)));
  -webkit-mask-image: -webkit-linear-gradient(top, black 60%, rgba(0, 0, 0, 0) 100%);
          mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(60%, black), to(rgba(0, 0, 0, 0)));
          mask-image: linear-gradient(to bottom, black 60%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  opacity: 0.15;
}

.main-visual__catch {
  --catch-margin-lr: clamp(1.25rem, -4.95585rem + 18.35373vw, 11.5625rem);
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: var(--gl-header-height) var(--catch-margin-lr) clamp(3.66667rem, 3.14286rem + 2.61905vw, 5.5rem);
  position: relative;
  z-index: 1;
  width: 100%;
}

.main-visual__catch .__catch, .main-visual__catch .__sub {
  text-align: left;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.5;
}

.main-visual__catch .__catch {
  font-size: clamp(1.25rem, 0.80357rem + 2.23214vw, 2.8125rem);
  line-height: 1.75;
  letter-spacing: 0.08em;
}

.main-visual__catch .__sub {
  font-size: clamp(1rem, 0.96429rem + 0.17857vw, 1.125rem);
  margin-top: clamp(1.25rem, 1.07143rem + 0.89286vw, 1.875rem);
}

.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 {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -999;
  top: 0;
  left: 0;
  background: #fff;
}

.main-visual .carousel::after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

.main-visual .carousel::after {
  top: 0;
  left: 0;
}

.main-visual .carousel .carousel-cell {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.main-visual .carousel .carousel-cell img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-visual .custom-homepage-mainvisual {
  --carousel-mar-value: clamp(0rem, -8.35807rem + 14.8423vw, 5rem);
  width: 100%;
  position: absolute;
  overflow: hidden;
  z-index: -999;
  -webkit-box-shadow: var(--gl-boxshadow-1);
          box-shadow: var(--gl-boxshadow-1);
}

.main-visual .custom-homepage-mainvisual::after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

.main-visual .custom-homepage-mainvisual::after {
  top: 0;
  left: 0;
  z-index: 1;
}

.main-visual .custom-homepage-mainvisual .carousel-cell {
  width: 100%;
  margin: 0 auto;
}

.main-visual .custom-homepage-mainvisual .carousel-cell img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-visual .custom-homepage-mainvisual.-main {
  width: clamp(36.33333rem, 31.14286rem + 25.95238vw, 54.5rem);
  border-bottom-left-radius: 2000px;
  border-bottom-right-radius: 2000px;
  top: 0;
  left: var(--carousel-mar-value);
}

@media only screen and (min-width: 1441px) {
  .main-visual .custom-homepage-mainvisual.-main {
    width: calc(872 * 100vw / 1440);
  }
}

@media only screen and (max-width: 900px) {
  .main-visual .custom-homepage-mainvisual.-main {
    width: calc(100% - clamp(2.5rem, -7.27892rem + 28.92102vw, 18.75rem));
  }
}

@media only screen and (max-width: 540px) {
  .main-visual .custom-homepage-mainvisual.-main {
    width: 100%;
  }
}

.main-visual .custom-homepage-mainvisual.-main .__filtered {
  position: absolute;
  z-index: 1;
  inset: 0;
  will-change: transition;
  -webkit-mask-image: -webkit-radial-gradient(100% 0%, circle farthest-corner, #000 60%, transparent 90%);
          mask-image: radial-gradient(circle farthest-corner at 100% 0%, #000 60%, transparent 90%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 200% 100%;
          mask-size: 200% 100%;
  -webkit-mask-position: 50% 0;
          mask-position: 50% 0;
  -webkit-transition-property: -webkit-mask-position;
  transition-property: -webkit-mask-position;
  transition-property: mask-position;
  transition-property: mask-position, -webkit-mask-position;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transition-timing-function: cubic-bezier(0.3, 0.1, 0.1, 1);
          transition-timing-function: cubic-bezier(0.3, 0.1, 0.1, 1);
}

.main-visual .custom-homepage-mainvisual.-main .__filtered img {
  -webkit-filter: grayscale(0) brightness(1.2);
          filter: grayscale(0) brightness(1.2);
  -webkit-transition-property: -webkit-filter;
  transition-property: -webkit-filter;
  transition-property: filter;
  transition-property: filter, -webkit-filter;
  -webkit-transition-duration: 1.4s;
          transition-duration: 1.4s;
  -webkit-transition-timing-function: cubic-bezier(0.3, 0.1, 0.1, 1);
          transition-timing-function: cubic-bezier(0.3, 0.1, 0.1, 1);
}

.main-visual .custom-homepage-mainvisual.-main .__origin {
  will-change: transition;
  -webkit-mask-image: -webkit-radial-gradient(0% 100%, circle farthest-corner, #000 60%, transparent 90%);
          mask-image: radial-gradient(circle farthest-corner at 0% 100%, #000 60%, transparent 90%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 200% 100%;
          mask-size: 200% 100%;
  -webkit-mask-position: 250% 0;
          mask-position: 250% 0;
  -webkit-transition-property: -webkit-mask-position;
  transition-property: -webkit-mask-position;
  transition-property: mask-position;
  transition-property: mask-position, -webkit-mask-position;
  -webkit-transition-duration: 1.6s;
          transition-duration: 1.6s;
  -webkit-transition-timing-function: cubic-bezier(0.3, 0.1, 0.1, 1);
          transition-timing-function: cubic-bezier(0.3, 0.1, 0.1, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.main-visual .custom-homepage-mainvisual.-main .carousel-cell {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.3, 0.1, 0.1, 1);
          transition-timing-function: cubic-bezier(0.3, 0.1, 0.1, 1);
}

.main-visual .custom-homepage-mainvisual.-main .carousel-cell img {
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 6s;
          transition-duration: 6s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.main-visual .custom-homepage-mainvisual.-main .carousel-cell.is-selected img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

.main-visual .custom-homepage-mainvisual.-main .carousel-cell.is-selected .__filtered {
  -webkit-mask-position: -50% 0;
          mask-position: -50% 0;
}

.main-visual .custom-homepage-mainvisual.-main .carousel-cell.is-selected .__filtered img {
  -webkit-filter: grayscale(1) brightness(1);
          filter: grayscale(1) brightness(1);
}

.main-visual .custom-homepage-mainvisual.-main .carousel-cell.is-selected .__origin {
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
}

.main-visual .custom-homepage-mainvisual.-sub {
  width: clamp(13.75rem, 9.89286rem + 19.28571vw, 27.25rem);
  border-top-left-radius: 2000px;
  border-top-right-radius: 2000px;
  bottom: 0;
  right: var(--carousel-mar-value);
  z-index: -9999;
}

@media only screen and (min-width: 1441px) {
  .main-visual .custom-homepage-mainvisual.-sub {
    width: calc(436 * 100vw / 1440);
  }
}

.main-visual .custom-homepage-mainvisual.-sub .carousel-cell {
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transition-timing-function: cubic-bezier(0.3, 0.1, 0.1, 1);
          transition-timing-function: cubic-bezier(0.3, 0.1, 0.1, 1);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.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/inte-mainvisual-pic-1920.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main-visual.-custom-height {
  --gl-main-visual-height: 370px;
  --main-visual-title-margin: 
            calc(var(--gl-header-height) * 0.5) 
            var(--main-visual-title-margin-lr) 
            calc(var(--gl-header-height) * 0.5);
  min-height: var(--gl-main-visual-height);
  height: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 900px) {
  .main-visual.-custom-height {
    min-height: calc(var(--gl-main-visual-height) * 2 / 3);
  }
}

.main-visual.-custom-height::before {
  content: none;
}

/*==========================================================================*/
/* END MAIN VISUAL                                                          */
/*==========================================================================*/
/*==========================================================================*/
/* START FOOTER                                                             */
/*==========================================================================*/
.footer-infinite-slider {
  padding-top: clamp(3.75rem, -0.42904rem + 7.42115vw, 6.25rem);
}

.footer-infinite-slider .infinite-slider .slider-line {
  padding-bottom: var(--slider-gap);
}

.footer-infinite-slider .infinite-slider .__slide:nth-child(odd) {
  border-top-left-radius: 2000px !important;
  border-top-right-radius: 2000px !important;
}

.footer-infinite-slider .infinite-slider .__slide:nth-child(even) {
  top: var(--slider-gap);
}

.footer-infinite-slider .infinite-slider .__slide:nth-child(8n + 2) {
  border-bottom-left-radius: clamp(8.45833rem, 7.25rem + 6.04167vw, 12.6875rem);
}

.footer-infinite-slider .infinite-slider .__slide:nth-child(8n + 4) {
  border-top-right-radius: clamp(8.45833rem, 7.25rem + 6.04167vw, 12.6875rem);
}

.footer-infinite-slider .infinite-slider .__slide:nth-child(8n + 6) {
  border-top-left-radius: clamp(8.45833rem, 7.25rem + 6.04167vw, 12.6875rem);
}

.footer-infinite-slider .infinite-slider .__slide:nth-child(8n) {
  border-bottom-right-radius: clamp(8.45833rem, 7.25rem + 6.04167vw, 12.6875rem);
}

.footer-banner {
  padding: 80px 0 120px;
}

@media only screen and (max-width: 900px) {
  .footer-banner {
    padding: 60px 0;
  }
}

.footer-banner .list-banner {
  max-width: 1118px;
  margin: 0 auto;
}

.footer-banner .list-banner__title {
  padding: clamp(0.75rem, 0.64286rem + 0.53571vw, 1.125rem) clamp(1.16667rem, 1rem + 0.83333vw, 1.75rem) clamp(0.41667rem, 0.35714rem + 0.29762vw, 0.625rem);
  cursor: pointer;
}

.footer-banner .list-banner__title p {
  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.83333rem, 0.71429rem + 0.59524vw, 1.25rem);
  line-height: 1.5;
}

.footer-banner .list-banner__title .__en {
  font-size: clamp(1.375rem, 1.05357rem + 1.60714vw, 2.5rem);
  font-family: var(--gl-font-cinz);
  color: var(--gl-themes-main-color-2);
  text-transform: uppercase;
}

.footer-banner .list-banner__title .__jp {
  font-size: clamp(0.875rem, 0.76786rem + 0.53571vw, 1.25rem);
}

.footer-banner .list-banner__title .gg-plus {
  width: clamp(1.08333rem, 0.92857rem + 0.77381vw, 1.625rem);
  margin-left: auto;
  -webkit-transform: rotate(var(--btn-io-rotate, 0deg));
          transform: rotate(var(--btn-io-rotate, 0deg));
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
}

.footer-banner .list-banner__title.-is-checked {
  --btn-io-rotate: 45deg;
}

.footer-banner .list-banner .banner {
  position: relative;
  width: var(--bnr-width);
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
}

.footer-banner .list-banner .banner:hover {
  -webkit-transform: translateY(clamp(-0.1875rem, -0.10714rem + -0.08929vw, -0.125rem));
          transform: translateY(clamp(-0.1875rem, -0.10714rem + -0.08929vw, -0.125rem));
}

.footer-banner .list-banner.-l1 {
  --bnr-width: clamp(9.375rem, 7.44643rem + 9.64286vw, 16.125rem);
}

@media only screen and (max-width: 360px) {
  .footer-banner .list-banner.-l1 {
    --bnr-width: 100%;
  }
}

.footer-banner .list-banner.-l1 .imposter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(0.41667rem, 0.35714rem + 0.29762vw, 0.625rem);
}

@media only screen and (max-width: 360px) {
  .footer-banner .list-banner.-l1 .imposter {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-banner .list-banner.-l1 .imposter:not(:first-child) {
  margin-top: clamp(0.41667rem, 0.35714rem + 0.29762vw, 0.625rem);
}

.footer-banner .list-banner.-l1 .imposter.-i1 {
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}

@media only screen and (max-width: 540px) {
  .footer-banner .list-banner.-l1 .imposter.-i1 .banner:nth-child(1) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

@media only screen and (max-width: 360px) {
  .footer-banner .list-banner.-l1 .banner {
    grid-column: span 2;
  }
  .footer-banner .list-banner.-l1 .banner:last-child:nth-child(odd) {
    grid-column-end: 4;
  }
}

.footer-banner .list-banner.-l2 {
  margin-top: clamp(2.08333rem, 1.78571rem + 1.4881vw, 3.125rem);
  position: relative;
  z-index: 2;
  border-width: 1px 0;
  border-color: RGBA(var(--gl-themes-main-color-2-rgb), 0.5);
  border-style: solid;
}

.footer-banner .list-banner.-l2 #footer-banner-panel-active {
  display: none;
}

.footer-banner .list-banner.-l2 .imposter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(0.41667rem, 0.35714rem + 0.29762vw, 0.625rem);
  padding: clamp(1.25rem, 1.07143rem + 0.89286vw, 1.875rem) clamp(0.41667rem, 0.35714rem + 0.29762vw, 0.625rem);
  z-index: 1;
  width: 100%;
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
}

@media only screen and (max-width: 540px) {
  .footer-banner .list-banner.-l2 .imposter {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-banner .list-banner.-l2 .banner {
  width: auto;
}

.footer-banner .list-banner.-l2 .banner__image img {
  height: clamp(3.375rem, 2.89286rem + 2.41071vw, 5.0625rem);
  width: auto;
}

@media only screen and (max-width: 540px) {
  .footer-banner .list-banner.-l2 .banner__image img {
    width: 100%;
  }
}

.footer-contents {
  padding: 80px 0 44px;
  position: relative;
}

.footer-contents::after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 900px) {
  .footer-contents {
    padding: 60px 0 100px;
  }
}

.footer-contents::after {
  bottom: 0;
  left: 0;
  background: #93a5cb;
  z-index: -999;
  border-radius: clamp(6.25rem, 0.89286rem + 26.78571vw, 25rem) clamp(6.25rem, 0.89286rem + 26.78571vw, 25rem) 0 0;
}

.footer-contents__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: clamp(2.5rem, 2.14286rem + 1.78571vw, 3.75rem);
  margin-top: clamp(3.41667rem, 2.92857rem + 2.44048vw, 5.125rem);
}

@media only screen and (max-width: 900px) {
  .footer-contents__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media only screen and (min-width: 901px) {
  .footer-contents__access {
    width: 49%;
    padding: 0 clamp(1.875rem, -3.34879rem + 9.27644vw, 5rem) 0 clamp(0rem, -8.35807rem + 14.8423vw, 5rem);
  }
}

.footer-contents__logo {
  max-width: clamp(10.41667rem, 8.92857rem + 7.44048vw, 15.625rem);
  margin: 0 auto;
}

.footer-contents__tel {
  margin-top: clamp(2rem, 1.71429rem + 1.42857vw, 3rem);
  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;
}

.footer-contents__tel a {
  font-size: clamp(1.125rem, 0.91071rem + 1.07143vw, 1.875rem);
  font-family: var(--gl-font-cinz);
  line-height: 1;
  letter-spacing: 0.05em;
  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: clamp(0.83333rem, 0.71429rem + 0.59524vw, 1.25rem);
  color: #fff;
}

.footer-contents__tel .gg-tel {
  width: clamp(0.83333rem, 0.71429rem + 0.59524vw, 1.25rem);
  -webkit-transform: translateY(clamp(-0.125rem, -0.07143rem + -0.05952vw, -0.08333rem));
          transform: translateY(clamp(-0.125rem, -0.07143rem + -0.05952vw, -0.08333rem));
}

.footer-contents__addr {
  margin-top: clamp(0.66667rem, 0.57143rem + 0.47619vw, 1rem);
}

.footer-contents__addr p {
  text-align: center;
  color: #fff;
  line-height: 1.85;
}

@media only screen and (min-width: 901px) {
  .footer-contents__wktime {
    width: 51%;
    padding-right: clamp(0rem, -11.38787rem + 20.22263vw, 6.8125rem);
  }
}

.footer-contents__menu {
  max-width: 1118px;
  margin: clamp(2.625rem, 2.25rem + 1.875vw, 3.9375rem) auto 0;
}

.footer-contents__copyright {
  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;
  margin-top: clamp(3.75rem, 2.67857rem + 5.35714vw, 7.5rem);
  gap: clamp(0.83333rem, 0.71429rem + 0.59524vw, 1.25rem);
}

.footer-contents__copyright .__picture {
  max-width: clamp(5.625rem, 5.53571rem + 0.44643vw, 5.9375rem);
}

.footer-contents__copyright .__text {
  padding-left: clamp(0.83333rem, 0.71429rem + 0.59524vw, 1.25rem);
  border-left: 1px solid #fff;
}

.footer-contents__copyright .__text p {
  font-size: clamp(0.5625rem, 0.52679rem + 0.17857vw, 0.6875rem);
  line-height: 1.5;
  color: #fff;
}

.footer-contents .kazari {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 100vw;
  z-index: 1;
  position: relative;
}

.footer-contents .kazari p {
  font-size: clamp(3.75rem, 2.78571rem + 4.82143vw, 7.125rem);
  font-family: var(--gl-font-cinz);
  line-height: 1;
  color: #eef4f8;
  white-space: nowrap;
  text-transform: uppercase;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.5em 0 0;
}

.footer-contents .kazari p.__txt1 {
  -webkit-animation: loops 80s -40s linear infinite;
          animation: loops 80s -40s linear infinite;
}

.footer-contents .kazari p.__txt2 {
  -webkit-animation: loops2 80s linear infinite;
          animation: loops2 80s linear infinite;
}

@-webkit-keyframes loops {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes loops {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@-webkit-keyframes loops2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}

@keyframes loops2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}

/*==========================================================================*/
/* 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-arrow-right {
  --t: 1px;
  --h: clamp(0.20833rem, 0.17857rem + 0.14881vw, 0.3125rem);
  aspect-ratio: 2;
  width: clamp(0.70833rem, 0.60714rem + 0.50595vw, 1.0625rem);
  background: currentColor;
  -webkit-clip-path: polygon(0 calc(50% - var(--t)/2), calc(100% - var(--h)) calc(50% - var(--t)/2), calc(100% - var(--h)) 0, 100% 50%, calc(100% - var(--h)) 100%, calc(100% - var(--h)) calc(50% + var(--t)/2), 0 calc(50% + var(--t)/2));
          clip-path: polygon(0 calc(50% - var(--t)/2), calc(100% - var(--h)) calc(50% - var(--t)/2), calc(100% - var(--h)) 0, 100% 50%, calc(100% - var(--h)) 100%, calc(100% - var(--h)) calc(50% + var(--t)/2), 0 calc(50% + var(--t)/2));
}

.gg-io {
  display: inline-block;
  width: clamp(1.04167rem, 0.89286rem + 0.74405vw, 1.5625rem);
  aspect-ratio: 25/var(--h, 25);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: var(--url);
}

.gg-arrow-half {
  --h: 275;
  --url: url(../images/gg-arrow-half.webp);
}

.gg-arrow-half-sm {
  --h: 204;
  --url: url(../images/gg-arrow-half-sm.webp);
}

.gg-triangle,
.btn-icon {
  display: block;
  width: clamp(0.41667rem, 0.35714rem + 0.29762vw, 0.625rem);
  aspect-ratio: cos(30deg);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: currentColor;
}

.gg-starburst {
  width: clamp(1.75rem, 1.5rem + 1.25vw, 2.625rem);
}

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

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

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

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

.gg-tel.-white {
  --url: url(../images/gg-io-tel-w.webp);
}

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

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

/*==========================================================================*/
/* END ICONS                                                                */
/*==========================================================================*/
/*==========================================================================*/
/* FLOATING ACTION BUTTONS (FABS)                                           */
/*==========================================================================*/
:root {
  --fabs-btn-height: clamp(2.5rem, 2.14286rem + 1.78571vw, 3.75rem);
}

@media only screen and (max-width: 900px) {
  :root {
    --fabs-btn-height: 60px;
  }
}

.fabs-sidebar {
  --fabs-radius: 2000px;
  --fabs-icon-width: clamp(1.04167rem, 0.89286rem + 0.74405vw, 1.5625rem);
  --fabs-btn-width: clamp(2.5rem, 2.14286rem + 1.78571vw, 3.75rem);
  --fabs-btn-io-width: clamp(2.5rem, 2.14286rem + 1.78571vw, 3.75rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  z-index: var(--zindex-fixed);
}

@media only screen and (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;
    top: 52.5%;
    right: clamp(0.41667rem, 0.35714rem + 0.29762vw, 0.625rem);
    gap: 10px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    width: var(--fabs-btn-height);
  }
}

@media only screen and (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);
    z-index: calc(var(--zindex-plus) + 9);
    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 only screen and (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);
    -webkit-box-shadow: var(--gl-boxshadow-1);
            box-shadow: var(--gl-boxshadow-1);
  }
  .fabs-sidebar .fabs:hover {
    --fabs-btn-text-delay: 0.3s;
    --fabs-btn-text-opa: 1;
    --fabs-btn-width: clamp(8.33333rem, 7.14286rem + 5.95238vw, 12.5rem);
  }
}

@media only screen and (max-width: 900px) {
  .fabs-sidebar .fabs {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 5px;
  }
  .fabs-sidebar .fabs::after {
    display: block;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .fabs-sidebar .fabs::after {
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: clamp(0.08333rem, 0.07143rem + 0.05952vw, 0.125rem);
    background: #d4dbea;
    height: 70%;
  }
  .fabs-sidebar .fabs:first-child::after {
    content: none;
  }
}

@media only screen and (max-width: 360px) {
  .fabs-sidebar .fabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.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 only screen and (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 only screen and (min-width: 901px) {
  .fabs-sidebar .fabs__title {
    padding: 0 clamp(0.83333rem, 0.71429rem + 0.59524vw, 1.25rem) 0 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.fabs-sidebar .fabs__title p {
  font-size: clamp(0.75rem, 0.69643rem + 0.26786vw, 0.9375rem);
  line-height: 1;
  color: var(--gl-themes-main-color-2);
  text-align: center;
  white-space: nowrap;
  -webkit-transition: var(--gl-trans-cube-1);
  transition: var(--gl-trans-cube-1);
}

@media only screen and (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);
  }
}

.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(1rem, 0.98214rem + 0.08929vw, 1.0625rem);
}

.fabs-sidebar .fabs.-web {
  background-color: #fff;
}

.fabs-sidebar .fabs.-web .fabs__icon img {
  width: clamp(1rem, 0.96429rem + 0.17857vw, 1.125rem);
}

.fabs-sidebar .fabs.-line {
  background-color: #fff;
}

.fabs-sidebar .fabs.-line .fabs__icon img {
  width: clamp(1.1875rem, 1.13393rem + 0.26786vw, 1.375rem);
}

.fabs-sidebar .fabs.-hamburger-btn {
  background-color: #fff;
  width: 15%;
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
  min-width: 60px;
}

.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(1.66667rem, 0.71429rem + 1.98413vw, 2.5rem);
  --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: 360;
  --slider-slide-height: clamp(19.16667rem, 16.42857rem + 13.69048vw, 28.75rem);
  --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.88889vw, 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 only screen and (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.71429rem + 2.67857vw, 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.22222vw, 3.75rem));
  height: auto;
  max-width: 1024px;
}

.infinite-slider .slider-contents.-wrapbox {
  padding: clamp(2.5rem, 1.75rem + 2.22222vw, 3.75rem) clamp(1.25rem, -0.25rem + 4.44444vw, 3.75rem);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: clamp(17.5rem, 4.21429rem + 66.42857vw, 64rem);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-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.77778vw, 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 {
  position: relative;
  z-index: 1;
}

.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::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                                                      */
/*==========================================================================*/
/*==========================================================================*/
/* 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.67857rem + 5.35714vw, 7.5rem);
}

.acf-sech4.acf-space:not(:first-child) {
  padding-top: clamp(1.875rem, 1.33929rem + 2.67857vw, 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 {
  font-size: var(--gl-sec-heading-3-font-size);
  text-align: center;
  padding-bottom: clamp(1.125rem, 0.94643rem + 0.89286vw, 1.75rem);
  margin-bottom: clamp(1.875rem, 1.33929rem + 2.67857vw, 3.75rem);
}

.acf-ht.-h3::after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

.acf-ht.-h3::after {
  width: clamp(3.125rem, 2.94643rem + 0.89286vw, 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.76786rem + 0.53571vw, 1.25rem);
  margin-bottom: clamp(0.875rem, 0.76786rem + 0.53571vw, 1.25rem);
}

.acf-ht.-h5 {
  font-size: var(--gl-sec-heading-5-font-size);
  padding-left: clamp(0.9375rem, 0.75893rem + 0.89286vw, 1.5625rem);
  margin-bottom: clamp(0.875rem, 0.76786rem + 0.53571vw, 1.25rem);
}

.acf-ht.-h5::after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

.acf-ht.-h5::after {
  width: clamp(0.125rem, 0.10714rem + 0.08929vw, 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.14286rem + 1.78571vw, 3.75rem);
}

.acf-ht.-h6 {
  --h6-af-size: clamp(0.5625rem, 0.50893rem + 0.26786vw, 0.75rem);
  font-size: var(--gl-sec-heading-6-font-size);
  padding-left: clamp(0.9375rem, 0.75893rem + 0.89286vw, 1.5625rem);
  margin-bottom: clamp(0.875rem, 0.76786rem + 0.53571vw, 1.25rem);
}

.acf-ht.-h6::after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

.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.14286rem + 1.78571vw, 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(--gl-themes-main-color-2-rgb), 1);
  --archive-head-padding: clamp(3.75rem, 3.03571rem + 3.57143vw, 6.25rem);
  --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.82143rem + 0.26786vw, 1.0625rem);
  --archive-post-af-show: '';
  --archive-pagination-number-width: 30px;
}

@media only screen and (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(--gl-header-height) / 2) + var(--archive-head-padding)) clamp(1.25rem, -3.04769rem + 8.94188vw, 5rem) calc(var(--gl-header-height) / 2);
}

.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.89286rem + 1.78571vw, 2.5rem);
}

.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 {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

.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 only screen and (max-width: 900px) {
  .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-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 {
    display: block;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .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);
    -webkit-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: fade-in;
            animation-name: fade-in;
  }
  .archive-blog .list-custom-taxonomy-widget.is-close {
    -webkit-animation-name: fade-out;
            animation-name: fade-out;
  }
}

.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 only screen and (max-width: 900px) {
  .archive-blog .list-custom-taxonomy-widget ul {
    padding: calc(var(--gl-header-height) * 1.1) 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 {
  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.08929rem + 0.17857vw, 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;
}

.archive-blog .list-custom-taxonomy-widget ul.children::after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

@media only screen and (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 only screen and (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.67857rem + 0.35714vw, 1rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.1em;
  font-size: clamp(0.625rem, 0.41012rem + 0.44709vw, 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 only screen and (max-width: 900px) {
  .archive-blog .list-custom-taxonomy-widget .cat-item a {
    font-size: clamp(0.875rem, 0.83929rem + 0.17857vw, 1rem);
    padding: 0.5rem 0;
  }
}

.archive-blog .list-custom-taxonomy-widget .cat-item .cat-item a {
  font-size: clamp(0.5625rem, 0.50893rem + 0.26786vw, 0.75rem);
  font-weight: 400;
  position: relative;
  padding: 0;
  padding-left: 10px;
}

.archive-blog .list-custom-taxonomy-widget .cat-item .cat-item a::after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 900px) {
  .archive-blog .list-custom-taxonomy-widget .cat-item .cat-item a {
    font-size: clamp(0.75rem, 0.71429rem + 0.17857vw, 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/cos(30deg);
  -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.50893rem + 0.26786vw, 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.69643rem + 0.89286vw, 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;
  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 {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

.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.58929rem + 0.17857vw, 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.65179rem + 0.17857vw, 0.8125rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.archive-blog .archive-post.-post-1 {
  --archive-post-af-show: none;
}

@media only screen and (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.92857rem + 0.35714vw, 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.55357rem + 0.35714vw, 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(../acf-images/dummy-pic-7.webp);
}

.archive-blog.-head-image .archive-name {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.archive-blog.-head-image .archive-name::after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

.archive-blog.-head-image .archive-name::after {
  top: 0;
  left: 0;
  background: RGBA(255, 255, 255, 0.7);
  z-index: -9;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.archive-blog.-search-page .archive-name {
  --gl-sec-heading-2-font-size: clamp(1.25rem, 1.03571rem + 1.07143vw, 2rem) !important;
}

.archive-blog.-search-page .archive-post:nth-child(2) {
  --archive-post-af-show: none;
}

.blog-content {
  padding-top: clamp(3.75rem, 2.67857rem + 5.35714vw, 7.5rem);
}

.blog-content > .acf-ht.-h3 {
  margin-bottom: clamp(0.9375rem, 0.75893rem + 0.89286vw, 1.5625rem);
}

.blog-content .acf-sech3.acf-space:nth-child(3) {
  padding-top: 0;
}

.blog-content__date {
  font-size: clamp(0.875rem, 0.80357rem + 0.35714vw, 1.125rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: clamp(2.5rem, 2.14286rem + 1.78571vw, 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.46429rem + 0.17857vw, 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.03571rem + 3.57143vw, 6.25rem) auto 0;
  max-width: 640px;
}

.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: calc(100% / 3);
  position: relative;
}

.blog-content__navbar .btn::after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

.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.50893rem + 0.26786vw, 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.46429rem + 0.17857vw, 0.625rem) clamp(1.125rem, 1.01786rem + 0.53571vw, 1.5rem);
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
}

.acf-gmap {
  --gmap-height: clamp(14.16667rem, 12.14286rem + 10.11905vw, 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.69643rem + 0.26786vw, 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.83333rem, 0.71429rem + 0.59524vw, 1.25rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: clamp(0.25rem, 0.21429rem + 0.17857vw, 0.375rem) clamp(0.625rem, 0.53571rem + 0.44643vw, 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(1.04167rem, 0.89286rem + 0.74405vw, 1.5625rem) clamp(0.83333rem, 0.71429rem + 0.59524vw, 1.25rem);
}

.acf-sechindex .__secheading {
  counter-increment: sechindex;
}

.acf-sechindex .__sech3 {
  font-size: clamp(0.875rem, 0.80357rem + 0.35714vw, 1.125rem);
  font-weight: 500;
}

.acf-sechindex .__sech3:not(:first-child) {
  margin-top: clamp(0.625rem, 0.53571rem + 0.44643vw, 0.9375rem);
}

.acf-sechindex .__sech4 {
  font-size: clamp(0.75rem, 0.69643rem + 0.26786vw, 0.9375rem);
  font-weight: 400;
  line-height: 1.5;
}

.acf-sechindex .__sech4:not(:first-child) {
  margin-top: clamp(0.41667rem, 0.35714rem + 0.29762vw, 0.625rem);
}

.acf-sechindex .__sech4 .__indexlink {
  opacity: 0.8;
}

.acf-sechindex .__sech4 .__indexlink::before {
  border-left: clamp(0.125rem, 0.10714rem + 0.08929vw, 0.1875rem) solid var(--border-color);
  padding-left: 0.5rem;
  line-height: 1;
  margin-top: 0.2rem;
}

.acf-sechindex .__haschildren ul {
  padding: clamp(0.625rem, 0.53571rem + 0.44643vw, 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.25rem, 0.21429rem + 0.17857vw, 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.20833rem, 0.17857rem + 0.14881vw, 0.3125rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(0.33333rem, 0.28571rem + 0.2381vw, 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.71429rem + 0.17857vw, 0.875rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: clamp(0.25rem, 0.21429rem + 0.17857vw, 0.375rem) clamp(0.41667rem, 0.35714rem + 0.29762vw, 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.33333rem, 0.28571rem + 0.2381vw, 0.5rem);
  padding-left: clamp(1.5625rem, 1.47321rem + 0.44643vw, 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.15179rem + 0.17857vw, 0.3125rem);
}

.acf-list.-number .litem::before {
  font-size: clamp(0.875rem, 0.83929rem + 0.17857vw, 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.17857rem + 0.35714vw, 1.5rem);
  --step-padding-left: clamp(1.6875rem, 1.59821rem + 0.44643vw, 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.63393rem + 0.26786vw, 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.69643rem + 0.26786vw, 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.25893rem + 0.26786vw, 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.63393rem + 0.26786vw, 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.57143rem + 0.26786vw, 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.38393rem + 0.26786vw, 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 only screen and (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 only screen and (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 only screen and (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.51786rem + 0.53571vw, 2rem);
  --link-posi-left: unset;
  --link-posi-right: unset;
  --link-posi-value: clamp(0.0625rem, 0.04464rem + 0.08929vw, 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 only screen and (min-width: 901px) {
  .acf-link:hover {
    --link-io-af-opa: 0.3;
  }
}

.acf-link .acf-link-io {
  width: clamp(1.5rem, 1.44643rem + 0.26786vw, 1.6875rem);
  height: clamp(1.125rem, 1.08929rem + 0.17857vw, 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 {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

.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 only screen and (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 only screen and (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 only screen and (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.20833rem, 0.17857rem + 0.14881vw, 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.63393rem + 0.26786vw, 0.875rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
  border: 1px solid var(--table-color);
  padding: clamp(0.3125rem, 0.22321rem + 0.44643vw, 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 caption {
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
  line-height: 1.85;
  letter-spacing: 0.1em;
  margin-top: clamp(0.66667rem, 0.57143rem + 0.47619vw, 1rem);
  text-align: right;
  caption-side: bottom;
  color: var(--table-theme-color, currentColor);
}

@media only screen and (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.69643rem + 0.26786vw, 0.9375rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  border-color: var(--table-theme-color, currentColor);
  color: var(--table-theme-color, currentColor);
}

table.table-style-1 tr th:first-child, table.table-style-1 tr td:first-child {
  width: clamp(5.83333rem, 5rem + 4.16667vw, 8.75rem);
  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.75rem, 0.64286rem + 0.53571vw, 1.125rem) 0;
}

table.table-style-1 tr td {
  padding: clamp(0.6875rem, 0.58929rem + 0.49107vw, 1.03125rem) 0;
  letter-spacing: 0.05em;
}

table.table-style-1 tr:nth-child(2) td {
  padding: clamp(1.375rem, 1.17857rem + 0.98214vw, 2.0625rem) 0 clamp(0.08333rem, 0.07143rem + 0.05952vw, 0.125rem);
}

table.table-style-1 tr:last-child td {
  padding: clamp(0.08333rem, 0.07143rem + 0.05952vw, 0.125rem) 0 clamp(1.29167rem, 1.10714rem + 0.92262vw, 1.9375rem);
  border-top: 0;
}

table.table-style-1 tr:not(:first-child):not(:last-child) td {
  border-bottom: 0;
  border-top: 0;
}

table.table-style-1.-white {
  --table-theme-color: #fff;
}

.re-btn {
  --rebtn-width: clamp(11.58333rem, 9.92857rem + 8.27381vw, 17.375rem);
  --rebtn-height: clamp(2.5rem, 2.14286rem + 1.78571vw, 3.75rem);
  --rebtn-radius: 2000px;
  --rebtn-bg: #fff;
  --rebtn-theme-color: var(--gl-themes-main-color-2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: clamp(0.66667rem, 0.57143rem + 0.47619vw, 1rem);
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: var(--rebtn-width);
  max-width: 408px;
  min-height: var(--rebtn-height);
  color: var(--rebtn-theme-color);
  padding: clamp(0.625rem, 0.53571rem + 0.44643vw, 0.9375rem) clamp(1.5625rem, 1.29464rem + 1.33929vw, 2.5rem);
  height: 100%;
  width: 100%;
  border-radius: var(--rebtn-radius);
  background: var(--rebtn-bg);
  -webkit-transition: var(--gl-trans-3e);
  transition: var(--gl-trans-3e);
  border: 1px solid var(--rebtn-theme-color);
  position: relative;
  z-index: 1;
}

.re-btn .btn a::after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

.re-btn .btn a::after {
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../images/title-paragrap-bg.webp) center/cover no-repeat;
  opacity: var(--rebtn-af-opa, 0);
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
  border-radius: var(--rebtn-radius);
}

.re-btn .btn a:hover {
  --rebtn-af-opa: 0.1;
}

.re-btn .btn span {
  font-size: clamp(0.75rem, 0.67857rem + 0.35714vw, 1rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
}

.re-btn .btn .btn-icon {
  position: absolute;
  right: clamp(0.83333rem, 0.71429rem + 0.59524vw, 1.25rem);
  width: clamp(0.28125rem, 0.25446rem + 0.13393vw, 0.375rem);
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
}

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

.re-btn.-style-2 .btn a:hover span {
  -webkit-transform: translateX(clamp(-0.375rem, -0.21429rem + -0.17857vw, -0.25rem));
          transform: translateX(clamp(-0.375rem, -0.21429rem + -0.17857vw, -0.25rem));
}

.re-btn.-style-2 .btn a:hover .btn-icon {
  -webkit-transform: translateX(clamp(-0.1875rem, -0.10714rem + -0.08929vw, -0.125rem));
          transform: translateX(clamp(-0.1875rem, -0.10714rem + -0.08929vw, -0.125rem));
}

.contact-form {
  --ct-theme-color: var(--gl-themes-main-color-rgb);
  --ct-field-gap: clamp(0.625rem, 0.53571rem + 0.44643vw, 0.9375rem);
  --ct-field-width: 25%;
  --ct-warning-color: 244, 80, 80;
  --ct-required-width: clamp(0.8125rem, 0.77679rem + 0.17857vw, 0.9375rem);
  background: RGBA(var(--ct-theme-color), 0.1);
  padding: 40px clamp(1.25rem, 0.89286rem + 1.78571vw, 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.75893rem + 0.89286vw, 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 only screen and (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.77679rem + 0.17857vw, 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.52679rem + 0.17857vw, 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.77679rem + 0.17857vw, 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.30357rem + 0.35714vw, 0.625rem);
  padding-bottom: clamp(0.375rem, 0.33929rem + 0.17857vw, 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.71429rem + 0.17857vw, 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/cos(30deg);
  -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.71429rem + 0.17857vw, 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.65179rem + 0.17857vw, 0.8125rem);
}

.list-posts {
  --posts-theme-color: var(--gl-themes-main-color-rgb);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.83333rem, 0.71429rem + 0.59524vw, 1.25rem);
}

.list-posts a {
  font-size: clamp(0.75rem, 0.67857rem + 0.35714vw, 1rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: RGBA(var(--posts-theme-color), 1);
  position: relative;
  display: grid;
  grid-template: "a b" "a c" 1fr/var(--posts-thumb-width, clamp(5.70833rem, 4.89286rem + 4.07738vw, 8.5625rem)) 1fr;
  gap: clamp(0.08333rem, 0.07143rem + 0.05952vw, 0.125rem) clamp(0.75rem, 0.64286rem + 0.53571vw, 1.125rem);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.list-posts a::after {
  --t: 1px;
  --h: clamp(0.20833rem, 0.17857rem + 0.14881vw, 0.3125rem);
  display: block;
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  aspect-ratio: 2;
  width: clamp(0.70833rem, 0.60714rem + 0.50595vw, 1.0625rem);
  background: var(--gl-themes-main-color-2);
  -webkit-clip-path: polygon(0 calc(50% - var(--t)/2), calc(100% - var(--h)) calc(50% - var(--t)/2), calc(100% - var(--h)) 0, 100% 50%, calc(100% - var(--h)) 100%, calc(100% - var(--h)) calc(50% + var(--t)/2), 0 calc(50% + var(--t)/2));
          clip-path: polygon(0 calc(50% - var(--t)/2), calc(100% - var(--h)) calc(50% - var(--t)/2), calc(100% - var(--h)) 0, 100% 50%, calc(100% - var(--h)) 100%, calc(100% - var(--h)) calc(50% + var(--t)/2), 0 calc(50% + var(--t)/2));
}

.list-posts span {
  display: block;
}

.list-posts .__thumb {
  grid-area: a;
  height: 100%;
  position: relative;
  z-index: 2;
}

.list-posts .__thumb img {
  height: 100%;
}

.list-posts .__date {
  grid-area: b;
  margin-top: clamp(0.25rem, 0.14552rem + 0.18553vw, 0.3125rem);
}

.list-posts .__date b {
  display: inline-block;
  font-weight: 400;
  font-size: calc(12 * 100% / 24);
  text-transform: uppercase;
  margin-left: clamp(0.25rem, 0.21429rem + 0.17857vw, 0.375rem);
  -webkit-transform: translateY(clamp(-0.125rem, -0.07143rem + -0.05952vw, -0.08333rem));
          transform: translateY(clamp(-0.125rem, -0.07143rem + -0.05952vw, -0.08333rem));
}

.list-posts .__title {
  font-size: clamp(0.6875rem, 0.61607rem + 0.35714vw, 0.9375rem);
  grid-area: c;
  margin-bottom: clamp(1.25rem, 1.07143rem + 0.89286vw, 1.875rem);
}

.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.89286rem + 1.78571vw, 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.73214rem + 0.08929vw, 0.8125rem);
  line-height: 1;
  padding: 0.1rem 0.5rem;
  height: 25px;
  background: #fff;
}

.protected-posts .__title {
  font-size: clamp(1.5rem, 1.39286rem + 0.53571vw, 1.875rem);
  width: 100%;
}

.protected-posts .__desc {
  font-size: clamp(0.75rem, 0.71429rem + 0.17857vw, 0.875rem);
  width: 100%;
}

.protected-posts .__pass {
  width: 100%;
  max-width: clamp(9.375rem, 8.48214rem + 4.46429vw, 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-2-rgb);
  padding: clamp(0.5rem, 0.39286rem + 0.53571vw, 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.75rem, 0.75rem + 0vw, 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.83333rem, 0.71429rem + 0.59524vw, 1.25rem);
  --ai-posi-b-value: clamp(0.83333rem, 0.71429rem + 0.59524vw, 1.25rem);
  --ai-im-width: clamp(10.41667rem, 8.92857rem + 7.44048vw, 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 only screen and (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: auto;
  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);
  position: absolute;
  z-index: calc(var(--zindex-fixed) - 1);
  cursor: pointer;
  -webkit-transition: var(--gl-trans-3e);
  transition: var(--gl-trans-3e);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.5rem, 0.42857rem + 0.35714vw, 0.75rem);
}

.scroll i {
  color: #fff;
  -webkit-transform: rotate(var(--scr-arrow-rotate, 0));
          transform: rotate(var(--scr-arrow-rotate, 0));
  width: clamp(0.29167rem, 0.25rem + 0.20833vw, 0.4375rem);
}

.scroll span {
  font-size: clamp(0.5rem, 0.46429rem + 0.17857vw, 0.625rem);
  font-family: var(--gl-font-cinz);
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  -webkit-transform: translateX(var(--scr-text-tranx, 0));
          transform: translateX(var(--scr-text-tranx, 0));
  color: var(--gl-themes-main-color-2);
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
}

.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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  gap: clamp(0.5rem, 0.42857rem + 0.35714vw, 0.75rem);
}

.scroll.-down {
  --scr-text-tranx: clamp(0.08333rem, 0.07143rem + 0.05952vw, 0.125rem);
  bottom: clamp(0rem, -9.29835rem + 16.51206vw, 5.5625rem);
  left: clamp(1.25rem, -4.18275rem + 9.6475vw, 4.5rem);
}

.scroll.-down:hover {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

.scroll.-up {
  --scr-text-tranx: clamp(-0.125rem, -0.07143rem + -0.05952vw, -0.08333rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.scroll.-totop {
  position: fixed;
}

.scroll.-st1 {
  opacity: 0;
  visibility: hidden;
  bottom: 20px;
  right: clamp(0.625rem, 0.44643rem + 0.89286vw, 1.25rem);
}

@media only screen and (max-width: 900px) {
  .scroll.-st1 {
    bottom: 80px;
  }
}

.scroll.-st2 {
  -webkit-transition: unset;
  transition: unset;
  opacity: 0;
  bottom: clamp(2rem, 1.71429rem + 1.42857vw, 3rem);
  right: clamp(0.3125rem, -0.74061rem + 3.11457vw, 2.0625rem);
}

@media only screen and (max-width: 900px) {
  .scroll.-st2 {
    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 .gg-arrow-half-sm {
  --url: url(../images/gg-arrow-half-sm-w.webp);
}

.scroll.-is-bottom span {
  color: #fff;
}

.inte-catch {
  position: absolute;
  z-index: 3;
  inset: 0;
}

.inte-catch::after {
  display: block;
  content: '';
  inset: clamp(0.41667rem, 0.35714rem + 0.29762vw, 0.625rem);
  position: absolute;
  z-index: -999;
  border: 1px solid var(--gl-themes-main-color-2);
}

.inte-catch .container-ssm {
  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;
  height: 100%;
  position: relative;
  z-index: 1;
  max-width: 910px;
}

.inte-catch__tagname {
  display: inline-block;
}

@media only screen and (min-width: 901px) {
  .inte-catch__tagname {
    width: 100%;
    max-width: clamp(23.875rem, 20.46429rem + 17.05357vw, 35.8125rem);
  }
}

.inte-catch__tagname p {
  line-height: 1.5;
}

.inte-catch__tagname .__title {
  font-size: clamp(1.125rem, 0.80357rem + 1.60714vw, 2.25rem);
  padding-bottom: clamp(1.04167rem, 0.89286rem + 0.74405vw, 1.5625rem);
  border-bottom: 1px solid var(--gl-themes-main-color-2);
  text-indent: -0.3em;
}

.inte-catch__tagname .__posi {
  margin-top: clamp(1.04167rem, 0.89286rem + 0.74405vw, 1.5625rem);
  font-size: clamp(0.6875rem, 0.61607rem + 0.35714vw, 0.9375rem);
}

.inte-catch__tagname .__name {
  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.33333rem, 0.28571rem + 0.2381vw, 0.5rem);
}

.inte-catch__tagname .__jp {
  font-size: clamp(1rem, 0.85714rem + 0.71429vw, 1.5rem);
  letter-spacing: 0.2em;
}

.inte-catch__tagname .__en {
  font-size: clamp(0.625rem, 0.55357rem + 0.35714vw, 0.875rem);
  font-family: var(--gl-font-cinz);
  color: var(--gl-themes-main-color-2);
  margin-top: clamp(0.20833rem, 0.17857rem + 0.14881vw, 0.3125rem);
}

.inte-catch__image {
  position: absolute;
  max-width: clamp(14.08333rem, 12.07143rem + 10.05952vw, 21.125rem);
  right: 0;
  bottom: 0;
  z-index: -1;
  -webkit-transform: translateX(-1.5%);
          transform: translateX(-1.5%);
}

@media only screen and (max-width: 540px) {
  .inte-catch__image {
    -webkit-transform: translateX(clamp(0rem, 4.82143rem + -5.35714vw, 3.75rem));
            transform: translateX(clamp(0rem, 4.82143rem + -5.35714vw, 3.75rem));
  }
}

.inte-catch__image .__im2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: clamp(3.16667rem, 2.71429rem + 2.2619vw, 4.75rem);
  -webkit-transform: translate(70%, 22%);
          transform: translate(70%, 22%);
  opacity: 0.4;
}

@media only screen and (max-width: 540px) {
  .inte-catch__image .__im2 {
    right: unset;
    left: 0;
    -webkit-transform: translate(-70%, 22%);
            transform: translate(-70%, 22%);
  }
}

.inte-contents {
  padding: 60px 0;
}

.inte-tit-sec p {
  font-size: clamp(1.25rem, 1.07143rem + 0.89286vw, 1.875rem);
  line-height: 1.7;
  padding-bottom: clamp(0.91667rem, 0.78571rem + 0.65476vw, 1.375rem);
  position: relative;
  text-align: center;
}

.inte-tit-sec p::after {
  position: absolute;
  bottom: 0;
  display: block;
  content: '';
  width: clamp(2.5rem, 2.14286rem + 1.78571vw, 3.75rem);
  height: clamp(0.08333rem, 0.07143rem + 0.05952vw, 0.125rem);
  background: var(--gl-themes-main-color-2);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.inte-tit-sec:not(.-t1) {
  margin-top: clamp(3.75rem, 2.62166rem + 3.33704vw, 5.625rem);
}

.inte-point:after {
  display: block;
  clear: both;
  content: "";
}

@media only screen and (min-width: 1025px) {
  .inte-point {
    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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: var(--point-fd, row);
            flex-direction: var(--point-fd, row);
  }
}

.inte-point__image {
  max-width: clamp(15.625rem, 8.62931rem + 20.68966vw, 27.25rem);
  margin: 0 auto;
  position: relative;
}

@media only screen and (min-width: 541px) {
  .inte-point__image {
    float: var(--point-fl, left);
    margin-left: var(--point-im-ml, 0);
    margin-right: var(--point-im-mr, 0);
    margin-bottom: clamp(0.83333rem, 0.71429rem + 0.59524vw, 1.25rem);
  }
}

.inte-point__image .__picture {
  border-top-left-radius: 2000px;
  border-top-right-radius: 2000px;
  overflow: hidden;
  -webkit-box-shadow: 0px clamp(1.66667rem, 1.42857rem + 1.19048vw, 2.5rem) clamp(1.25rem, 1.07143rem + 0.89286vw, 1.875rem) 0px rgba(80, 80, 143, 0.15);
          box-shadow: 0px clamp(1.66667rem, 1.42857rem + 1.19048vw, 2.5rem) clamp(1.25rem, 1.07143rem + 0.89286vw, 1.875rem) 0px rgba(80, 80, 143, 0.15);
}

.inte-point__image .__num {
  position: absolute;
  bottom: 0;
  left: var(--point-num-l, unset);
  right: var(--point-num-r, unset);
  -webkit-transform: translateY(42%);
          transform: translateY(42%);
}

.inte-point__image .__num p {
  font-size: clamp(2.5rem, 1.78571rem + 3.57143vw, 5rem);
  font-family: var(--gl-font-cinz);
  line-height: 1;
  letter-spacing: 0em;
  color: #fff;
}

@media only screen and (min-width: 1025px) {
  .inte-point__textarea {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

@media only screen and (min-width: 901px) {
  .inte-point__textarea {
    padding-left: var(--point-text-pl, 0);
    padding-right: var(--point-text-pr, 0);
  }
}

@media only screen and (max-width: 540px) {
  .inte-point__textarea {
    margin-top: clamp(2.08333rem, 1.78571rem + 1.4881vw, 3.125rem);
  }
}

.inte-point__title .__jp {
  font-size: clamp(1rem, 0.85714rem + 0.71429vw, 1.5rem);
  line-height: 1.5;
  color: var(--gl-themes-main-color-2);
}

.inte-point__title .__en {
  font-size: clamp(0.6875rem, 0.63393rem + 0.26786vw, 0.875rem);
  font-family: var(--gl-font-cinz);
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--gl-themes-main-color-2);
  margin-top: clamp(0.25rem, 0.21429rem + 0.17857vw, 0.375rem);
}

.inte-point__para {
  margin-top: clamp(0.95833rem, 0.82143rem + 0.68452vw, 1.4375rem);
}

.inte-point.-imleft {
  --point-im-mr: clamp(1.25rem, -1.00667rem + 6.67408vw, 5rem);
  --point-text-pr: clamp(0rem, -8.35807rem + 14.8423vw, 5rem);
  --point-num-l: clamp(1.04167rem, 0.89286rem + 0.74405vw, 1.5625rem);
}

.inte-point.-imright {
  --point-fl: right;
  --point-fd: row-reverse;
  --point-im-ml: clamp(1.25rem, -1.00667rem + 6.67408vw, 5rem);
  --point-text-pl: clamp(0rem, -8.35807rem + 14.8423vw, 5rem);
  --point-num-r: clamp(1.04167rem, 0.89286rem + 0.74405vw, 1.5625rem);
}

.inte-point:not(.-i1) {
  margin-top: clamp(3.75rem, 3.37389rem + 1.11235vw, 4.375rem);
}

.inte-point.-i1 {
  margin-top: clamp(3.75rem, 2.99778rem + 2.22469vw, 5rem);
}

/*==========================================================================*/
/* End ACF LAYOUT TEMPLATES                                                 */
/*==========================================================================*/
/*==========================================================================*/
/* CUSTOMIZE BY PAGES                                                       */
/*==========================================================================*/
.under #main-contents {
  padding-bottom: 200px;
}

@media only screen and (max-width: 900px) {
  .under #main-contents {
    padding-bottom: 100px;
  }
}

.under #preloader {
  display: none !important;
  visibility: hidden !important;
}

.under .main-visual {
  margin-top: calc(var(--gl-header-height) - clamp(0.75rem, 0.073rem + 2.00222vw, 1.875rem));
  margin-left: clamp(1.25rem, -5.01855rem + 11.13173vw, 5rem);
  margin-right: clamp(1.25rem, -5.01855rem + 11.13173vw, 5rem);
}

.under .footer-infinite-slider {
  padding-top: 0;
}

.home .acf-sech3, .home .acf-sechindex {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 0.53372rem + 1.49031vw, 1.875rem);
  padding-right: clamp(1.25rem, 0.53372rem + 1.49031vw, 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.58929rem + 0.17857vw, 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-feature {
  height: unset;
}

.wysrccode .home-feature .container-md {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.wysrccode .home-feature .feature-image {
  height: auto;
}

.wysrccode .home-feature .feature-image .__image {
  position: relative;
}

.wysrccode .home-feature .feature-textarea {
  height: auto;
}

.wysrccode .home-feature .feature-textarea .__textarea {
  opacity: 1;
  position: relative;
}

.wysrccode .footer-banner .list-banner.-l2 #footer-banner-panel-active {
  display: block;
}

/*==========================================================================*/
/* START INDEX                                                              */
/*==========================================================================*/
.tit-sec p {
  line-height: 1.5;
  text-align: center;
}

.tit-sec .__en {
  font-size: clamp(2.1875rem, 1.5625rem + 3.125vw, 4.375rem);
  font-family: var(--gl-font-cinz);
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--gl-themes-main-color-2);
}

.tit-sec .__jp {
  font-size: clamp(1.25rem, 0.96429rem + 1.42857vw, 2.25rem);
}

.tit-sec.-left p {
  text-align: left;
}

.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: #fff;
}

.preloader::after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

.preloader::after {
  top: 0;
  left: 0;
  z-index: -999;
}

.preloader::after {
  background: url(../images/preloader-bg.webp) center/cover no-repeat;
  opacity: 0.15;
}

.preloader__logo {
  max-width: clamp(8.66667rem, 7.42857rem + 6.19048vw, 13rem);
  -webkit-animation: ease preloader 2s both;
          animation: ease preloader 2s both;
  opacity: 0;
}

.preloader__loader {
  font-size: clamp(1.25rem, 1.14286rem + 0.53571vw, 1.625rem);
  font-family: var(--gl-font-cinz);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.1em;
  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;
}

.preloader__loader::before {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

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

.kazari {
  position: absolute;
  z-index: -1;
}

.kazari.-blur img {
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.home-pickup {
  padding: 66px 0 195px;
  overflow: hidden;
}

@media only screen and (max-width: 900px) {
  .home-pickup {
    padding: 60px 0;
  }
}

.home-pickup .container-md {
  position: relative;
}

.home-pickup .tit-sec {
  position: relative;
  z-index: 2;
}

.home-pickup .tit-sec .__en {
  font-size: clamp(3.75rem, 2.32143rem + 7.14286vw, 8.75rem);
  color: #fff;
}

.home-pickup .tit-sec .__jp {
  position: absolute;
  width: 100%;
  top: 43%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: var(--gl-themes-main-color-2);
}

.home-pickup .card {
  --card-padd-value: clamp(0rem, -11.38787rem + 20.22263vw, 6.8125rem);
  --card-btn-size: clamp(6.25rem, 5.53571rem + 3.57143vw, 8.75rem);
  --card-af-width-offset: clamp(-9.375rem, -47.71765rem + 68.08905vw, 13.5625rem);
  --card-af-radius: 2000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: clamp(2.5rem, 2.14286rem + 1.78571vw, 3.75rem) 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(2.5rem, 2.14286rem + 1.78571vw, 3.75rem) clamp(1.25rem, -2.0974rem + 9.89989vw, 6.8125rem);
  margin-top: clamp(1.875rem, 1.33929rem + 2.67857vw, 3.75rem);
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.home-pickup .card::after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

.home-pickup .card::after {
  width: 100vw;
  top: 50%;
  left: 50%;
  background: var(--card-bg-color);
  z-index: -9;
  -webkit-box-shadow: var(--gl-boxshadow-2);
          box-shadow: var(--gl-boxshadow-2);
}

@media only screen and (min-width: 541px) {
  .home-pickup .card::after {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: var(--card-af-l, unset);
    right: var(--card-af-r, unset);
    width: 150vw;
    border-radius: var(--card-af-btlr, 0) var(--card-af-btrr, 0) var(--card-af-bbrr, 0) var(--card-af-bblr, 0);
    min-height: clamp(27.5rem, 23.57143rem + 19.64286vw, 41.25rem);
    height: calc(100% + clamp(5.41667rem, 4.64286rem + 3.86905vw, 8.125rem));
  }
}

@media only screen and (max-width: 540px) {
  .home-pickup .card::after {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@media only screen and (min-width: 541px) {
  .home-pickup .card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: var(--card-fd, row);
            flex-direction: var(--card-fd, row);
  }
}

.home-pickup .card__image {
  --triangle-posi-value: clamp(-1.25rem, -0.44643rem + -0.89286vw, -0.625rem);
  --triangle-size: clamp(3.75rem, 3.21429rem + 2.67857vw, 5.625rem);
  max-width: clamp(12.45833rem, 10.67857rem + 8.89881vw, 18.6875rem);
  position: relative;
}

.home-pickup .card__image::after, .home-pickup .card__image::before {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

.home-pickup .card__image img {
  -webkit-box-shadow: var(--gl-boxshadow-1);
          box-shadow: var(--gl-boxshadow-1);
}

.home-pickup .card__image::after, .home-pickup .card__image::before {
  width: clamp(4.125rem, 3.53571rem + 2.94643vw, 6.1875rem);
  height: 1px;
  z-index: 2;
  background: var(--gl-themes-main-color-2);
  opacity: 0.5;
  -webkit-transform: rotate(-45deg) translate(0, var(--triangle-stick-trany, -100%));
          transform: rotate(-45deg) translate(0, var(--triangle-stick-trany, -100%));
}

.home-pickup .card__image::after {
  top: calc(var(--triangle-size) - (var(--triangle-posi-value) * -2));
  left: 0;
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.home-pickup .card__image::before {
  --triangle-stick-trany: 100%;
  bottom: calc(var(--triangle-size) - (var(--triangle-posi-value) * -2));
  right: 0;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}

@media only screen and (max-width: 540px) {
  .home-pickup .card__image {
    margin: 0 auto;
  }
}

.home-pickup .card__image .__triangle {
  position: absolute;
  z-index: 1;
  width: var(--triangle-size);
  aspect-ratio: 1;
  background: var(--card-bg-color);
}

.home-pickup .card__image .__triangle.-top {
  top: var(--triangle-posi-value);
  left: var(--triangle-posi-value);
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
}

.home-pickup .card__image .__triangle.-bottom {
  bottom: var(--triangle-posi-value);
  right: var(--triangle-posi-value);
  -webkit-clip-path: polygon(0 100%, 100% 0, 100% 100%);
          clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.home-pickup .card__body {
  width: 100%;
}

@media only screen and (min-width: 541px) {
  .home-pickup .card__body {
    max-width: clamp(22.70833rem, 19.46429rem + 16.22024vw, 34.0625rem);
    padding-left: var(--card-body-pl, 0);
    padding-right: var(--card-body-pr, 0);
  }
}

.home-pickup .card__title p {
  font-size: clamp(1.25rem, 1.07143rem + 0.89286vw, 1.875rem);
  line-height: 1.5;
}

@media only screen and (max-width: 540px) {
  .home-pickup .card__title p {
    text-align: center;
  }
}

.home-pickup .card__title i {
  margin-right: clamp(0.625rem, 0.48214rem + 0.71429vw, 1.125rem);
  -webkit-transform: translateY(clamp(0.41667rem, 0.35714rem + 0.29762vw, 0.625rem));
          transform: translateY(clamp(0.41667rem, 0.35714rem + 0.29762vw, 0.625rem));
}

.home-pickup .card__para {
  margin-top: clamp(0.83333rem, 0.71429rem + 0.59524vw, 1.25rem);
}

@media only screen and (max-width: 540px) {
  .home-pickup .card__para p {
    text-align: center;
  }
}

.home-pickup .card__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(0.33333rem, 0.28571rem + 0.2381vw, 0.5rem);
  margin-top: clamp(1.25rem, 1.07143rem + 0.89286vw, 1.875rem);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 540px) {
  .home-pickup .card__buttons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.home-pickup .card__buttons .__btn {
  position: relative;
  width: var(--card-btn-size);
  height: var(--card-btn-size);
  border-radius: 50%;
  overflow: hidden;
  background: var(--card-btn-bg-color, #fff);
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
}

.home-pickup .card__buttons .__btn:hover {
  background: #fff;
}

.home-pickup .card__buttons 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;
  font-size: clamp(0.625rem, 0.51786rem + 0.53571vw, 1rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.375rem, 0.17857rem + 0.98214vw, 1.0625rem);
  width: 100%;
  height: 100%;
  letter-spacing: 0em;
  line-height: 1.6;
  color: RGBA(var(--card-theme-color), 1);
  text-align: center;
  padding: clamp(0.41667rem, 0.35714rem + 0.29762vw, 0.625rem);
  -webkit-transform: translateY(clamp(0rem, -0.73133rem + 1.2987vw, 0.4375rem));
          transform: translateY(clamp(0rem, -0.73133rem + 1.2987vw, 0.4375rem));
}

.home-pickup .card.-imleft {
  --card-body-pr: var(--card-padd-value);
  --card-af-r: var(--card-af-width-offset);
  --card-af-btrr: var(--card-af-radius);
  --card-af-bbrr: var(--card-af-radius);
  --card-kazari-r: 0;
}

@media only screen and (max-width: 1280px) {
  .home-pickup .card.-imleft {
    --card-kazari-tranx: 0;
  }
}

.home-pickup .card.-imright {
  --card-fd: row-reverse;
  --card-body-pl: var(--card-padd-value);
  --card-af-l: var(--card-af-width-offset);
  --card-af-btlr: var(--card-af-radius);
  --card-af-bblr: var(--card-af-radius);
  --card-kazari-l: 0;
  --card-kazari-tranx: 33%;
}

@media only screen and (max-width: 1280px) {
  .home-pickup .card.-imright {
    --card-kazari-tranx: 0;
  }
}

.home-pickup .card.-c1 {
  --card-theme-color: 119, 174, 210;
  --card-bg-color: #eaf4fa;
  --card-btn-bg-color: #f7fafc;
  margin-top: 0;
}

.home-pickup .card.-c2 {
  --card-theme-color: 134, 145, 208;
  --card-bg-color: #eff1fb;
  --card-btn-bg-color: #f9fafd;
}

.home-pickup .card.-c3 {
  --card-theme-color: 166, 133, 197;
  --card-bg-color: #f7f0fc;
  --card-btn-bg-color: #fcf9fe;
}

.home-pickup .kazari.-k1 {
  top: 50%;
  left: var(--card-kazari-l, unset);
  right: var(--card-kazari-r, unset);
  -webkit-transform: translate(var(--card-kazari-tranx, -33%), var(--card-kazari-trany, -50%));
          transform: translate(var(--card-kazari-tranx, -33%), var(--card-kazari-trany, -50%));
  width: clamp(10.25rem, 8.78571rem + 7.32143vw, 15.375rem);
}

@media only screen and (max-width: 900px) {
  .home-pickup .kazari.-k1 {
    top: 0;
  }
}

@media only screen and (max-width: 540px) {
  .home-pickup .kazari.-k1 {
    --card-kazari-trany: 50%;
    z-index: 1;
    right: 0;
    left: unset;
  }
}

.home-pickup .kazari.-k2, .home-pickup .kazari.-k3 {
  width: clamp(25.16667rem, 21.57143rem + 17.97619vw, 37.75rem);
}

.home-pickup .kazari.-k2, .home-pickup .kazari.-k3, .home-pickup .kazari.-k4, .home-pickup .kazari.-k5 {
  z-index: -99;
  opacity: 0.2;
}

.home-pickup .kazari.-k2 {
  top: 38%;
  left: 0;
  -webkit-transform: translateX(-60%);
          transform: translateX(-60%);
}

.home-pickup .kazari.-k3 {
  bottom: 0;
  right: 0;
  -webkit-transform: translateX(30%);
          transform: translateX(30%);
}

.home-pickup .kazari.-k4 {
  top: 28%;
  left: 0;
  width: clamp(38.66667rem, 33.14286rem + 27.61905vw, 58rem);
  -webkit-transform: translateX(-40%);
          transform: translateX(-40%);
}

.home-pickup .kazari.-k5 {
  bottom: -20%;
  right: 0;
  width: clamp(33.16667rem, 28.42857rem + 23.69048vw, 49.75rem);
  -webkit-transform: translateX(40%);
          transform: translateX(40%);
}

.home-search {
  padding: 120px 0 114px;
  position: relative;
  overflow: hidden;
}

.home-search::after, .home-search::before {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 900px) {
  .home-search {
    padding: 60px 0;
  }
}

.home-search::after, .home-search::before {
  top: 0;
  left: 0;
  z-index: -999;
}

.home-search::after {
  background: url(../images/home-search-bg.webp) center/cover no-repeat;
  opacity: 0.1;
}

.home-search::before {
  z-index: -99;
  background: RGBA(0, 0, 0, 0);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.home-search .search-panel {
  --panel-listcard-pad-offset: clamp(1.25rem, -5.01855rem + 11.13173vw, 5rem);
  --panel-listcard-gutter: clamp(0.54167rem, 0.46429rem + 0.3869vw, 0.8125rem);
  --panel-listcard-num: 3;
  --panel-listcard-card-width: calc((100% - (var(--panel-listcard-gutter) * (var(--panel-listcard-num) - 1)) - (var(--panel-listcard-pad-offset) * 2)) / var(--panel-listcard-num));
  position: relative;
  z-index: 1;
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
}

@media only screen and (max-width: 900px) {
  .home-search .search-panel {
    --panel-listcard-num: 2;
  }
}

@media only screen and (max-width: 540px) {
  .home-search .search-panel {
    --panel-listcard-num: 1;
  }
}

.home-search .search-panel .list-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 900px) {
  .home-search .search-panel .list-button {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.home-search .search-panel .list-button .__title, .home-search .search-panel .list-button .__button {
  min-height: clamp(7.5rem, 6.42857rem + 5.35714vw, 11.25rem);
}

.home-search .search-panel .list-button .__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: clamp(0.33333rem, 0.28571rem + 0.2381vw, 0.5rem) clamp(0.625rem, -0.625rem + 6.25vw, 5rem);
}

@media only screen and (max-width: 900px) {
  .home-search .search-panel .list-button .__title {
    width: 100%;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
  .home-search .search-panel .list-button .__title p {
    text-align: center;
  }
}

.home-search .search-panel .list-button .__en {
  font-size: clamp(2.1875rem, 1.5625rem + 3.125vw, 4.375rem);
  font-family: var(--gl-font-cinz);
  line-height: 1;
  color: var(--gl-themes-main-color-2);
  text-transform: uppercase;
}

.home-search .search-panel .list-button .__jp {
  font-size: clamp(1.375rem, 1.23214rem + 0.71429vw, 1.875rem);
  line-height: 1.8;
}

.home-search .search-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;
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
  padding: clamp(0.33333rem, 0.28571rem + 0.2381vw, 0.5rem) clamp(0.625rem, 0.44643rem + 0.89286vw, 1.25rem);
  cursor: pointer;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: var(--gl-boxshadow-2);
          box-shadow: var(--gl-boxshadow-2);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.home-search .search-panel .list-button .__button::after, .home-search .search-panel .list-button .__button::before {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 901px) {
  .home-search .search-panel .list-button .__button {
    max-width: clamp(15.91667rem, 13.64286rem + 11.36905vw, 23.875rem);
    width: 100%;
  }
}

.home-search .search-panel .list-button .__button::after, .home-search .search-panel .list-button .__button::before {
  top: 0;
  left: 0;
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
  z-index: -9;
}

.home-search .search-panel .list-button .__button::after {
  background: -webkit-gradient(linear, left top, right top, from(var(--c1, #dddddd)), to(var(--c2, #dddddd)));
  background: -webkit-linear-gradient(left, var(--c1, #dddddd) 0%, var(--c2, #dddddd) 100%);
  background: linear-gradient(to right, var(--c1, #dddddd) 0%, var(--c2, #dddddd) 100%);
  opacity: var(--btn-af-active, 1);
}

.home-search .search-panel .list-button .__button::before {
  background: #fff;
  opacity: var(--btn-be-active, 0);
}

.home-search .search-panel .list-button .__button p {
  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.69643rem + 0.89286vw, 1.5rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
  gap: clamp(0.66667rem, 0.57143rem + 0.47619vw, 1rem);
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
  background: var(--btn-text-color, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-search .search-panel .list-button .__button p::after, .home-search .search-panel .list-button .__button p::before {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 541px) {
  .home-search .search-panel .list-button .__button p {
    letter-spacing: 0em;
  }
}

.home-search .search-panel .list-button .__button .__io {
  display: block;
  width: var(--io-width, clamp(2.08333rem, 1.78571rem + 1.4881vw, 3.125rem));
  aspect-ratio: var(--io-ratio, 1);
  position: relative;
  -webkit-transform: translateY(clamp(0.41667rem, 0.35714rem + 0.29762vw, 0.625rem));
          transform: translateY(clamp(0.41667rem, 0.35714rem + 0.29762vw, 0.625rem));
}

.home-search .search-panel .list-button .__button .__io::after, .home-search .search-panel .list-button .__button .__io::before {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

.home-search .search-panel .list-button .__button .__io::after, .home-search .search-panel .list-button .__button .__io::before {
  top: 0;
  left: 0;
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.home-search .search-panel .list-button .__button .__io::after {
  background-image: var(--io-url);
  opacity: var(--io-af-active, 1);
}

.home-search .search-panel .list-button .__button .__io::before {
  background-image: var(--io-ov-url);
  opacity: var(--io-be-active, 0);
}

.home-search .search-panel .list-button .__button.-co {
  --c1: rgb(239, 204, 217);
  --c2: rgb(233, 184, 221);
  --io-width: clamp(2.625rem, 2.25rem + 1.875vw, 3.9375rem);
  --io-ratio: 9 / 10;
  --io-url: url(../images/home-search-io-1.webp);
  --io-ov-url: url(../images/home-search-io-1-ov.webp);
}

.home-search .search-panel .list-button .__button.-di {
  --c1: rgb(181, 220, 243);
  --c2: rgb(153, 188, 245);
  --io-width: clamp(3.33333rem, 2.85714rem + 2.38095vw, 5rem);
  --io-ratio: 8 / 7;
  --io-url: url(../images/home-search-io-2.webp);
  --io-ov-url: url(../images/home-search-io-2-ov.webp);
}

.home-search .search-panel .list-button .__button.is-checked {
  --btn-af-active: 0;
  --io-af-active: 0;
  --btn-be-active: 1;
  --io-be-active: 1;
  --btn-text-color: linear-gradient(to right, var(--c1, #dddddd) 0%, var(--c2, #dddddd) 100%);
}

.home-search .search-panel .list-card {
  padding: clamp(2.5rem, 2.14286rem + 1.78571vw, 3.75rem) var(--panel-listcard-pad-offset);
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
  background: #fff;
  -webkit-box-shadow: var(--gl-boxshadow-2);
          box-shadow: var(--gl-boxshadow-2);
  position: relative;
  z-index: 1;
}

.home-search .search-panel .list-card .gutter-sizer {
  width: var(--panel-listcard-gutter);
}

.home-search .search-panel .list-card .card {
  width: var(--panel-listcard-card-width);
}

.home-search .search-panel .list-card .card a {
  font-size: clamp(0.8125rem, 0.75893rem + 0.26786vw, 1rem);
  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%;
  min-height: clamp(3.75rem, 3.03571rem + 3.57143vw, 6.25rem);
  border-radius: 2000px;
  overflow: hidden;
  padding: clamp(0.66667rem, 0.57143rem + 0.47619vw, 1rem) clamp(1.5625rem, 1.47321rem + 0.44643vw, 1.875rem);
  text-align: center;
  background: var(--card-bg, #dddddd);
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
  color: var(--card-text-color, #63636d);
}

@media only screen and (max-width: 1280px) {
  .home-search .search-panel .list-card .card a br {
    display: none;
  }
}

.home-search .search-panel .list-card .card a:hover {
  color: #fff;
  background: var(--card-bg-hover, #808080);
}

.home-search .search-panel .list-card .card i {
  position: absolute;
  right: clamp(0.83333rem, 0.71429rem + 0.59524vw, 1.25rem);
  width: clamp(0.25rem, 0.21429rem + 0.17857vw, 0.375rem);
}

.home-search .search-panel .list-card .card.-co {
  --card-bg: #fcf1f5;
  --card-bg-hover: #eabacd;
  --card-text-color: #d97ea1;
}

.home-search .search-panel .list-card .card.-di {
  --card-bg: #eef4f8;
  --card-bg-hover: #b1cfe9;
  --card-text-color: #93a5cb;
}

.home-feature {
  --feat-btn-link-size: clamp(2.5rem, 2.14286rem + 1.78571vw, 3.75rem);
  --feat-progress-bar-width: 1px;
  --feat-padding: clamp(5.9375rem, 5.3125rem + 3.125vw, 8.125rem);
  --feat-gap: clamp(1.25rem, -1.88428rem + 5.56586vw, 3.125rem);
  --feat-pannel-height: calc(100vh - (var(--feat-padding) * 2) - var(--feat-gap));
  --feat-pannel-width: clamp(18.16667rem, 15.57143rem + 12.97619vw, 27.25rem);
  --feat-img-mxwidth: clamp(13.75rem, 9.89286rem + 19.28571vw, 27.25rem);
  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;
  height: 100vh;
  background: -webkit-linear-gradient(315deg, #90a5d6 0%, #b1cbe9 50%, #90a5d6 100%);
  background: linear-gradient(135deg, #90a5d6 0%, #b1cbe9 50%, #90a5d6 100%);
}

@media only screen and (max-width: 900px) {
  .home-feature {
    --feat-padding: 40px;
    --feat-pannel-width: calc(100% - var(--feat-btn-link-size) - clamp(0.625rem, -1.25556rem + 5.56174vw, 3.75rem));
    --feat-tit-mt-bonus: 20px;
  }
}

@media only screen and (max-width: 375px) {
  .home-feature {
    --feat-tit-mt-bonus: 0px;
  }
}

.home-feature .container-md {
  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%;
  position: relative;
  gap: var(--feat-gap) clamp(1.25rem, 1.07143rem + 0.89286vw, 1.875rem);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 900px) {
  .home-feature .container-md {
    height: calc(100% - 120px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.home-feature .tit-sec {
  width: 100%;
}

@media only screen and (max-width: 900px) and (min-width: 376px) {
  .home-feature .tit-sec {
    padding-top: 20px;
  }
}

.home-feature .tit-sec p {
  color: #fff;
}

.home-feature .feature-image {
  position: relative;
  width: 100%;
  max-width: var(--feat-pannel-width);
  height: var(--feat-pannel-height);
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.home-feature .feature-image::after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 901px) {
  .home-feature .feature-image {
    margin-right: clamp(0rem, -5.22379rem + 9.27644vw, 3.125rem);
  }
}

@media only screen and (max-width: 900px) {
  .home-feature .feature-image {
    height: calc(var(--feat-pannel-height-sp-base, 50%) - var(--feat-tit-mt-bonus) - (var(--feat-gap) * 1) - (clamp(2.8125rem, 2.11607rem + 3.48214vw, 5.25rem) / 2));
  }
}

@media only screen and (max-width: 540px) {
  .home-feature .feature-image {
    --feat-pannel-height-sp-base: 45%;
  }
}

@media only screen and (max-width: 360px) {
  .home-feature .feature-image {
    --feat-pannel-height-sp-base: 40%;
  }
}

.home-feature .feature-image::after {
  width: var(--feat-img-mxwidth);
  aspect-ratio: 436 / 420;
  background: rgba(255, 166, 0, 0.421);
  z-index: -99;
  height: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-top-left-radius: 2000px;
  border-top-right-radius: 2000px;
  -webkit-box-shadow: 0px clamp(1.66667rem, 1.42857rem + 1.19048vw, 2.5rem) clamp(1.25rem, 1.07143rem + 0.89286vw, 1.875rem) 0px rgba(80, 80, 143, 0.15);
          box-shadow: 0px clamp(1.66667rem, 1.42857rem + 1.19048vw, 2.5rem) clamp(1.25rem, 1.07143rem + 0.89286vw, 1.875rem) 0px rgba(80, 80, 143, 0.15);
}

@media only screen and (max-width: 900px) {
  .home-feature .feature-image::after {
    height: 100%;
  }
}

.home-feature .feature-image .__image {
  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: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.home-feature .feature-image .__image img {
  max-width: var(--feat-img-mxwidth);
  aspect-ratio: 436 / 420;
  border-top-left-radius: 2000px;
  border-top-right-radius: 2000px;
  border: 1px solid #eef4f8;
}

@media only screen and (max-width: 900px) {
  .home-feature .feature-image .__image img {
    height: 100%;
  }
}

.home-feature .feature-textarea {
  position: relative;
  width: 100%;
  max-width: var(--feat-pannel-width);
  height: var(--feat-pannel-height);
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

@media only screen and (min-width: 901px) {
  .home-feature .feature-textarea {
    margin-right: clamp(0rem, -11.38787rem + 20.22263vw, 6.8125rem);
  }
}

@media only screen and (max-width: 900px) {
  .home-feature .feature-textarea {
    height: calc(var(--feat-pannel-height-sp-base, 50%) - var(--feat-tit-mt-bonus) - (var(--feat-gap) * 1) - (clamp(2.8125rem, 2.11607rem + 3.48214vw, 5.25rem) / 2));
  }
}

@media only screen and (max-width: 540px) {
  .home-feature .feature-textarea {
    --feat-pannel-height-sp-base: 55%;
  }
}

@media only screen and (max-width: 360px) {
  .home-feature .feature-textarea {
    --feat-pannel-height-sp-base: 60%;
  }
}

.home-feature .feature-textarea .__textarea {
  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: absolute;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0.83333rem, 0.71429rem + 0.59524vw, 1.25rem);
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
}

@media only screen and (max-width: 900px) {
  .home-feature .feature-textarea .__textarea {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.home-feature .feature-textarea .__textarea p {
  color: #fff;
}

.home-feature .feature-textarea .__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(0.625rem, 0.44643rem + 0.89286vw, 1.25rem);
  width: 100%;
}

.home-feature .feature-textarea .__num {
  font-size: clamp(2.625rem, 1.94643rem + 3.39286vw, 5rem);
  font-family: var(--gl-font-cinz);
  line-height: 1;
  letter-spacing: 0em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(0.20833rem, 0.17857rem + 0.14881vw, 0.3125rem);
}

.home-feature .feature-textarea .__num::before {
  font-size: clamp(0.5rem, 0.39286rem + 0.53571vw, 0.875rem);
  letter-spacing: 0.1em;
  content: 'point';
  display: inline-block;
  text-transform: uppercase;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: currentColor;
  margin-top: clamp(0.25rem, -0.48133rem + 1.2987vw, 0.6875rem);
}

.home-feature .feature-textarea .__text {
  font-size: clamp(0.9375rem, 0.77679rem + 0.80357vw, 1.5rem);
  line-height: 1.5;
  padding-left: clamp(0.625rem, 0.44643rem + 0.89286vw, 1.25rem);
  border-left: 1px solid currentColor;
}

@media only screen and (max-width: 375px) {
  .home-feature .feature-textarea .__text {
    letter-spacing: 0em;
  }
}

.home-feature .feature-textarea .__para p {
  font-size: clamp(0.6875rem, 0.59821rem + 0.44643vw, 1rem);
}

@media only screen and (max-width: 375px) {
  .home-feature .feature-textarea .__para p {
    line-height: 1.7;
    letter-spacing: 0em;
  }
}

.home-feature .feature-textarea .re-btn {
  --rebtn-radius: 0px;
  --rebtn-width: clamp(7.91667rem, 6.78571rem + 5.65476vw, 11.875rem);
  --rebtn-bg: none;
  --rebtn-theme-color: #fff;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: clamp(0.625rem, 0.44643rem + 0.89286vw, 1.25rem);
}

.home-feature .feature-textarea .re-btn .btn a {
  padding-left: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-width: 0 0 1px 0;
}

.home-feature .feature-textarea .re-btn .btn a::after {
  content: none;
}

.home-feature .feature-textarea .re-btn .btn .btn-icon {
  right: 0;
}

.home-feature .feature-navi-links {
  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;
  gap: clamp(1rem, 0.85714rem + 0.71429vw, 1.5rem);
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  position: relative;
  z-index: 1;
  margin-right: auto;
}

@media only screen and (max-width: 900px) {
  .home-feature .feature-navi-links {
    position: absolute;
    left: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.home-feature .feature-navi-links .__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;
  font-size: clamp(1rem, 0.92857rem + 0.35714vw, 1.25rem);
  font-family: var(--gl-font-cinz);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  width: var(--feat-btn-link-size);
  height: var(--feat-btn-link-size);
  border-radius: 50%;
  color: var(--feat-btn-link-text-color, #fff);
  border: 1px solid #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: var(--gl-trans-cube-1);
  transition: var(--gl-trans-cube-1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  cursor: pointer;
}

.home-feature .feature-navi-links .__link::after, .home-feature .feature-navi-links .__link::before {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

.home-feature .feature-navi-links .__link::after {
  top: 0;
  left: 0;
  height: var(--feat-btn-link-af-height, 0);
  background: #fff;
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
  z-index: -9;
}

.home-feature .feature-navi-links .__link::before {
  top: 0;
  left: 0;
  background: RGBA(255, 255, 255, 0);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  z-index: -99;
}

.home-feature .feature-navi-links .__link.-is-active {
  --feat-btn-link-text-color: var(--gl-themes-main-color-2);
  --feat-btn-link-af-height: 100%;
}

.home-feature .feature-navi-links .progress-bar {
  position: absolute;
  left: calc((var(--feat-btn-link-size) - var(--feat-progress-bar-width)) / 2);
  top: 0;
  width: var(--feat-progress-bar-width);
  height: 0%;
  background-color: #fff;
  z-index: -9;
}

.home-greeting {
  padding: 127px 0 120px;
}

@media only screen and (max-width: 900px) {
  .home-greeting {
    padding: 60px 0;
  }
}

.home-greeting .container-md {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse wrap;
          flex-flow: row-reverse wrap;
  row-gap: clamp(2.5rem, 2.14286rem + 1.78571vw, 3.75rem);
}

@media only screen and (min-width: 901px) {
  .home-greeting .tit-sec {
    position: absolute;
    z-index: 3;
    right: 0;
    top: 50%;
    -webkit-transform: translate(53%, -50%);
            transform: translate(53%, -50%);
  }
  .home-greeting .tit-sec p {
    font-size: clamp(2.1875rem, 0.77679rem + 7.05357vw, 7.125rem);
    color: #fff;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}

@media only screen and (max-width: 900px) {
  .home-greeting .tit-sec {
    width: 100%;
  }
}

.home-greeting__image {
  width: 100%;
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 901px) {
  .home-greeting__image {
    width: 49%;
    padding-left: clamp(1.875rem, -6.37859rem + 14.65677vw, 6.8125rem);
    padding-top: clamp(0rem, -0.94028rem + 1.66976vw, 0.5625rem);
  }
}

.home-greeting__image .__doctor {
  position: relative;
  max-width: clamp(21.54167rem, 18.46429rem + 15.3869vw, 32.3125rem);
  margin: 0 auto;
}

.home-greeting__image .__doctor::after, .home-greeting__image .__doctor::before {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

.home-greeting__image .__doctor::after {
  display: block;
  content: '';
  aspect-ratio: 112 / 117;
  width: clamp(4.66667rem, 4rem + 3.33333vw, 7rem);
  height: auto;
  background: url(../images/home-greeting-io.webp) center/contain no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  -webkit-transform: translate(-48%, -32%);
          transform: translate(-48%, -32%);
}

.home-greeting__image .__doctor::before {
  background: transparent;
  z-index: 1;
  inset: 10px;
  width: unset;
  height: unset;
  border: 1px solid var(--gl-themes-main-color-2);
  border-top-left-radius: 2000px;
  border-top-right-radius: 2000px;
}

.home-greeting__image .__doctor img {
  border-top-left-radius: 2000px;
  border-top-right-radius: 2000px;
}

.home-greeting__textarea {
  width: 100%;
  position: relative;
  z-index: 2;
}

@media only screen and (min-width: 901px) {
  .home-greeting__textarea {
    width: 51%;
    padding-left: clamp(0rem, -8.35807rem + 14.8423vw, 5rem);
  }
}

.home-greeting__title {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gl-themes-main-color-2);
}

.home-greeting__title p {
  font-size: clamp(1.125rem, 0.91071rem + 1.07143vw, 1.875rem);
  line-height: 1.7;
}

@media only screen and (max-width: 1280px) {
  .home-greeting__title p br {
    display: none;
  }
}

.home-greeting__tagname {
  margin-top: clamp(1.08333rem, 0.92857rem + 0.77381vw, 1.625rem);
}

.home-greeting__tagname p {
  line-height: 1.5;
}

.home-greeting__tagname .__posi {
  font-size: clamp(0.6875rem, 0.61607rem + 0.35714vw, 0.9375rem);
}

.home-greeting__tagname .__name {
  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.41667rem, 0.35714rem + 0.29762vw, 0.625rem);
}

.home-greeting__tagname .__jp {
  font-size: clamp(0.875rem, 0.69643rem + 0.89286vw, 1.5rem);
  letter-spacing: 0.2em;
}

.home-greeting__tagname .__en {
  font-size: clamp(0.6875rem, 0.63393rem + 0.26786vw, 0.875rem);
  font-family: var(--gl-font-cinz);
  text-transform: uppercase;
  color: var(--gl-themes-main-color-2);
}

.home-greeting__para {
  margin-top: clamp(1.41667rem, 1.21429rem + 1.0119vw, 2.125rem);
}

.home-greeting .re-btn {
  margin-top: clamp(2.16667rem, 1.85714rem + 1.54762vw, 3.25rem);
}

@media only screen and (max-width: 1280px) {
  .home-greeting .re-btn {
    --rebtn-width: clamp(8.33333rem, 7.14286rem + 5.95238vw, 12.5rem);
  }
}

@media only screen and (max-width: 900px) {
  .home-greeting .re-btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.home-greeting .kazari.-k1 {
  width: clamp(15.70833rem, 13.46429rem + 11.22024vw, 23.5625rem);
  bottom: 0;
  left: 0;
  z-index: 2;
  -webkit-transform: translate(-14%, 65%);
          transform: translate(-14%, 65%);
}

@media only screen and (max-width: 900px) {
  .home-greeting .kazari.-k1 {
    -webkit-transform: translate(-20px, 20px);
            transform: translate(-20px, 20px);
  }
}

.home-greeting .kazari.-k2 {
  background: #f4feff;
  width: clamp(22.41667rem, 19.21429rem + 16.0119vw, 33.625rem);
  height: clamp(26.66667rem, 22.85714rem + 19.04762vw, 40rem);
  bottom: 0;
  right: 0;
  -webkit-transform: translate(54%, 16%);
          transform: translate(54%, 16%);
}

.home-greeting .kazari.-k2::after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 900px) {
  .home-greeting .kazari.-k2 {
    bottom: unset;
    top: 0;
    -webkit-transform: translate(54%, -60px);
            transform: translate(54%, -60px);
  }
}

.home-greeting .kazari.-k2::after {
  top: 0;
  left: 0;
  z-index: 1;
  background: url(../images/home-mainvisual-bg.webp) center/cover no-repeat;
  opacity: 0.3;
}

.home-greeting .kazari.-k3 {
  top: 0;
  right: 0;
  width: clamp(28.5rem, 24.42857rem + 20.35714vw, 42.75rem);
  -webkit-transform: translate(50%, -60%);
          transform: translate(50%, -60%);
  opacity: 0.2;
}

@media only screen and (max-width: 900px) {
  .home-greeting .kazari.-k3 {
    right: unset;
    left: 0;
    -webkit-transform: translate(0%, -60%);
            transform: translate(0%, -60%);
  }
}

.home-greeting .kazari.-k4 {
  bottom: 0;
  right: 0;
  width: clamp(28.5rem, 24.42857rem + 20.35714vw, 42.75rem);
  -webkit-transform: translate(-20%, 60%);
          transform: translate(-20%, 60%);
  opacity: 0.2;
}

.home-greeting .kazari.-k5 {
  bottom: 0;
  left: 0;
  width: clamp(26.45833rem, 22.67857rem + 18.89881vw, 39.6875rem);
  -webkit-transform: translate(20%, 40%);
          transform: translate(20%, 40%);
  opacity: 0.2;
}

.home-clinic {
  padding: 85px 0 120px;
  position: relative;
}

.home-clinic::after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 900px) {
  .home-clinic {
    padding: 40px 0 60px;
  }
}

.home-clinic::after {
  bottom: 0;
  left: 0;
  height: clamp(38.33333rem, 32.85714rem + 27.38095vw, 57.5rem);
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#eef4f8));
  background: -webkit-linear-gradient(top, transparent 0%, #eef4f8 100%);
  background: linear-gradient(to bottom, transparent 0%, #eef4f8 100%);
  z-index: -999;
}

@media only screen and (max-width: 900px) {
  .home-clinic::after {
    height: 50%;
  }
}

.home-clinic .container-lg {
  position: relative;
}

@media only screen and (max-width: 1280px) {
  .home-clinic .container-lg {
    padding: 0 clamp(1.25rem, 0.875rem + 1.11111vw, 1.875rem);
  }
}

.home-clinic__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: clamp(2.5rem, 2.14286rem + 1.78571vw, 3.75rem);
}

.home-clinic__gmap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  gap: clamp(0.66667rem, 0.57143rem + 0.47619vw, 1rem);
}

@media only screen and (min-width: 901px) {
  .home-clinic__gmap {
    width: 49%;
  }
}

.home-clinic__gmap .__picture, .home-clinic__gmap .__gmap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-shadow: var(--gl-boxshadow-2);
          box-shadow: var(--gl-boxshadow-2);
}

.home-clinic__gmap .__picture {
  -webkit-transform: translateY(clamp(-5rem, 1.67904rem + -7.42115vw, -2.5rem));
          transform: translateY(clamp(-5rem, 1.67904rem + -7.42115vw, -2.5rem));
  border-radius: 2000px 2000px 0 0;
  overflow: hidden;
}

.home-clinic__gmap iframe {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.home-clinic__access {
  width: 100%;
}

@media only screen and (min-width: 901px) {
  .home-clinic__access {
    width: 49%;
    padding: 0 clamp(0rem, -8.35807rem + 14.8423vw, 5rem);
  }
}

.home-clinic__logo {
  max-width: clamp(15.83333rem, 13.57143rem + 11.30952vw, 23.75rem);
  margin: clamp(0rem, -3.34323rem + 5.93692vw, 2rem) auto 0;
}

.home-clinic__addr {
  margin-top: clamp(0.75rem, 0.64286rem + 0.53571vw, 1.125rem);
}

.home-clinic__addr p {
  text-align: center;
}

.home-clinic__tel {
  margin-top: clamp(0.79167rem, 0.67857rem + 0.56548vw, 1.1875rem);
  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;
}

.home-clinic__tel a {
  font-size: clamp(1.125rem, 0.91071rem + 1.07143vw, 1.875rem);
  font-family: var(--gl-font-cinz);
  line-height: 1;
  letter-spacing: 0.05em;
  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: clamp(0.83333rem, 0.71429rem + 0.59524vw, 1.25rem);
  color: var(--gl-themes-main-color-2);
}

.home-clinic__tel .gg-tel {
  width: clamp(0.83333rem, 0.71429rem + 0.59524vw, 1.25rem);
  -webkit-transform: translateY(clamp(-0.125rem, -0.07143rem + -0.05952vw, -0.08333rem));
          transform: translateY(clamp(-0.125rem, -0.07143rem + -0.05952vw, -0.08333rem));
}

.home-clinic__wktime {
  margin-top: clamp(1.83333rem, 1.57143rem + 1.30952vw, 2.75rem);
}

.home-clinic__banners {
  margin: clamp(3.75rem, 3.03571rem + 3.57143vw, 6.25rem) auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.16667rem, 1rem + 0.83333vw, 1.75rem);
  max-width: 1118px;
}

@media only screen and (max-width: 430px) {
  .home-clinic__banners {
    grid-template-columns: repeat(1, 1fr);
  }
}

.home-clinic__banners .banner {
  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%;
  min-height: clamp(6.25rem, 5.35714rem + 4.46429vw, 9.375rem);
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: #de97b2;
  border-top-left-radius: clamp(3.125rem, 2.67857rem + 2.23214vw, 4.6875rem);
}

.home-clinic__banners .banner__image {
  position: absolute;
  inset: 0;
  z-index: -9;
  opacity: var(--bnr-im-opa, 0.1);
  -webkit-transition: var(--gl-trans-5e);
  transition: var(--gl-trans-5e);
}

.home-clinic__banners .banner__image img {
  height: 100%;
}

.home-clinic__banners .banner__title p {
  text-align: center;
  color: #fff;
}

.home-clinic__banners .banner__title .__jp {
  font-size: clamp(1.125rem, 1.01786rem + 0.53571vw, 1.5rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.home-clinic__banners .banner__title .__en {
  font-size: clamp(0.6875rem, 0.63393rem + 0.26786vw, 0.875rem);
  font-family: var(--gl-font-cinz);
  text-transform: uppercase;
}

.home-clinic__banners .banner__arrow {
  position: absolute;
  z-index: 1;
  right: clamp(0.9375rem, 0.66964rem + 1.33929vw, 1.875rem);
  bottom: clamp(0.9375rem, 0.66964rem + 1.33929vw, 1.875rem);
}

.home-clinic__banners .banner__arrow i {
  color: #fff;
  display: block;
}

.home-clinic__banners .banner:hover {
  --bnr-im-opa: 0.4;
}

.home-clinic__news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(2.5rem, 2.14286rem + 1.78571vw, 3.75rem) clamp(1.25rem, -1.00667rem + 6.67408vw, 5rem);
  margin: clamp(2.375rem, 2.03571rem + 1.69643vw, 3.5625rem) auto 0;
  max-width: 1118px;
}

@media only screen and (max-width: 540px) {
  .home-clinic__news {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.home-clinic__news .__title {
  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.41667rem, 0.35714rem + 0.29762vw, 0.625rem);
}

.home-clinic__news .__en {
  font-size: clamp(1.375rem, 1.05357rem + 1.60714vw, 2.5rem);
  font-family: var(--gl-font-cinz);
  line-height: 1.5;
  color: var(--gl-themes-main-color-2);
  text-transform: uppercase;
}

.home-clinic__news .__jp {
  font-size: clamp(1rem, 0.92857rem + 0.35714vw, 1.25rem);
  -webkit-transform: translateY(clamp(-0.25rem, 0.4179rem + -0.74212vw, 0rem));
          transform: translateY(clamp(-0.25rem, 0.4179rem + -0.74212vw, 0rem));
}

.home-clinic__news .list-posts {
  margin-top: clamp(0.91667rem, 0.78571rem + 0.65476vw, 1.375rem);
}

.home-clinic__litem {
  width: 100%;
}

.home-clinic__litem.-news {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.home-clinic__litem.-news .list-posts {
  --posts-thumb-width: clamp(5.625rem, 3.33929rem + 11.42857vw, 13.625rem);
  --posts-bottom-padd-offset: clamp(1.25rem, 0.49778rem + 2.22469vw, 2.5rem);
}

.home-clinic__litem.-news .list-posts a {
  gap: clamp(0.20833rem, 0.17857rem + 0.14881vw, 0.3125rem) clamp(1.25rem, -1.88428rem + 5.56586vw, 3.125rem);
  background: #fff;
}

.home-clinic__litem.-news .list-posts a::before {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}

.home-clinic__litem.-news .list-posts a::before {
  left: 0;
  bottom: var(--posts-bottom-padd-offset);
  background: var(--gl-themes-main-color-2);
  height: 1px;
  z-index: 1;
  opacity: 0.4;
}

.home-clinic__litem.-news .list-posts a::after {
  right: clamp(0.625rem, 0.41071rem + 1.07143vw, 1.375rem);
  bottom: calc( (var(--posts-bottom-padd-offset) - (var(--h)) * 2) / 2);
}

.home-clinic__litem.-news .list-posts .__date {
  font-size: clamp(0.9375rem, 0.77679rem + 0.80357vw, 1.5rem);
  font-family: var(--gl-font-cinz);
  letter-spacing: 0.05em;
  margin-top: clamp(0.5rem, -2.00742rem + 4.45269vw, 2rem);
}

.home-clinic__litem.-news .list-posts .__title {
  font-size: clamp(0.75rem, 0.67857rem + 0.35714vw, 1rem);
  height: calc(100% - var(--posts-bottom-padd-offset));
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: clamp(0.83333rem, 0.71429rem + 0.59524vw, 1.25rem);
}

@media only screen and (min-width: 541px) {
  .home-clinic__litem.-column {
    width: clamp(13.125rem, 7.67137rem + 16.12903vw, 22.1875rem);
  }
}

.home-clinic__litem.-column .list-posts .post-item a .__date b {
  display: none;
  visibility: hidden;
}

.home-clinic .re-btn.-r1 {
  margin-top: clamp(2.29167rem, 1.96429rem + 1.6369vw, 3.4375rem);
  gap: clamp(1.16667rem, 1rem + 0.83333vw, 1.75rem);
}

.home-clinic .re-btn.-r1 .btn a {
  gap: clamp(0.83333rem, 0.71429rem + 0.59524vw, 1.25rem);
}

.home-clinic .re-btn.-r1 .gg-instagram {
  width: clamp(0.83333rem, 0.71429rem + 0.59524vw, 1.25rem);
}

.home-clinic .re-btn.-r2 {
  --rebtn-radius: 0px;
  --rebtn-width: clamp(7.91667rem, 6.78571rem + 5.65476vw, 11.875rem);
  --rebtn-bg: none;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: clamp(1.08333rem, 0.92857rem + 0.77381vw, 1.625rem);
}

.home-clinic .re-btn.-r2 .btn a {
  padding-left: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-width: 0 0 1px 0;
}

.home-clinic .re-btn.-r2 .btn a::after {
  content: none;
}

.home-clinic .re-btn.-r2 .btn .btn-icon {
  right: 0;
}

.home-clinic .kazari.-k1 {
  top: 26%;
  left: 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: clamp(28.5rem, 24.42857rem + 20.35714vw, 42.75rem);
  opacity: 0.2;
}

.home-clinic .kazari.-k2 {
  top: 28%;
  left: 0;
  -webkit-transform: translate(60%, 0);
          transform: translate(60%, 0);
  width: clamp(18.125rem, 15.53571rem + 12.94643vw, 27.1875rem);
  opacity: 0.2;
}

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