* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --base-multiple: 10px;
}

html {
  font-size: var(--base-multiple);
}

body {
  font-family: sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

ul {
  margin-left: 1.3em;
  list-style-position: outside;
}
ul ul {
  margin-left: 0.5em;
}
ul li {
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}

a {
  color: inherit;
}

/* Disable format width SVG with link */
.elementor-widget-image a img[src$=".svg"] {
  width: inherit !important;
}

.gform_required_legend{
	display:none;
}

.pannel-glassmophism::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(
    from 135deg,
    rgba(255, 255, 255, 0.0),   /* bottom-left: invisible */
    rgba(255, 255, 255, 0.25) 80deg,  /* top: bright */
    rgba(255, 255, 255, 0.0) 170deg,  /* top-right: fades out */
    rgba(255, 255, 255, 0.0) 270deg,  /* left side: invisible */
    rgba(255, 255, 255, 0.15) 330deg, /* bottom-right: secondary light */
    rgba(255, 255, 255, 0.0) 360deg   /* back to bottom-left: invisible */
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  z-index: -1;
}

/* WPML SWITCHER */

.niseko-lang-switcher {
    position: relative;
    display: inline-block;
    font-family: 'Antartika', sans-serif;
    font-size: 20px;
}

.niseko-lang-switcher__toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    font-family: inherit;
    font-size: inherit;
    color: #ffffff;
    border-radius: 4px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.niseko-lang-switcher.is-open .niseko-lang-switcher__toggle {
    background-color: #ffffff;
    color: #200808;
}

.niseko-lang-switcher__arrow {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.niseko-lang-switcher.is-open .niseko-lang-switcher__arrow {
    transform: rotate(-135deg);
}

.niseko-lang-switcher__list {
    position: absolute;
    top: 100%;
    left: 0;
    margin: 8px 0 0;
    padding: 4px 0;
    list-style: none;
    background: transparent;
    display: none;
    min-width: 100%;
    z-index: 100;
}

.niseko-lang-switcher.is-open .niseko-lang-switcher__list {
    display: block;
}

.niseko-lang-switcher__list li a {
    display: block;
    padding: 6px 10px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Antartika', sans-serif;
    font-size: 20px;
    border-radius: 4px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.niseko-lang-switcher__list li a:hover,
.niseko-lang-switcher__list li a:focus {
    background-color: #ffffff;
    color: #200808;
}