@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans+TC:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import 'https://cdn.jsdelivr.net/npm/flatpickr/dist/flatpickr.min.css';
@import '../css/jquery.timepicker.min.css';
@import '../css/yearpicker.css';
@import '../css/select2.min.css';
@import '../slick/slick.css';
@import '../slick/slick-theme.css';
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, blockquote, th, td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6, th {
  font-weight: 700;
}

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

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

sup {
  vertical-align: baseline;
}

sub {
  vertical-align: baseline;
}

legend {
  color: #000;
}

input, button, textarea, select, optgroup, option {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50px, 0, 0);
            transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50px, 0, 0);
            transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}

:root {
  --color-orange: #ff5500;
  --color-blue: #00afff;
  --color-green: #96d200;
  --color-yellow: #ffc800;
  --color-red: #e60012;
  --color-grey: #c9caca;
  --color-dark: #898a8a;
  --bg-color: #f1efe9;
}

/* width */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  border-radius: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  background: none;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(201, 202, 202, 0.5333333333);
  border-radius: 3px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #c9caca;
}

html {
  background: var(--bg-color);
  scroll-behavior: smooth;
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: "Montserrat", "Noto Sans TC", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: black;
  background: var(--bg-color);
  word-wrap: keep-all;
}

body.jp {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: black;
  border-bottom: 1px solid currentColor;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  color: var(--color-orange);
}

input {
  outline: none;
  border: 0;
  background: transparent;
}

button {
  outline: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sort-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 1em;
  height: 1em;
  position: relative;
}
.sort-arrows:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid var(--color-grey);
  margin: auto;
}
.sort-arrows:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--color-grey);
  margin: auto;
}

.up .sort-arrows:before {
  border-bottom-color: var(--color-orange);
}

.down .sort-arrows:after {
  border-top-color: var(--color-orange);
}

.word-orange {
  color: var(--color-orange);
}

.container {
  max-width: 1280px;
  margin: auto;
  padding: 0 1em;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 1em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 0;
  color: white;
  font-weight: 600;
  border-radius: 0.25em;
  background: var(--color-orange);
  padding: 0.5em 1.25em;
}
.button span {
  display: block;
}
.button img {
  width: 1em;
}
.button:hover {
  color: white;
}

.button-liner {
  color: var(--color-orange);
  background: none;
  border: 1px solid var(--color-orange);
}
.button-liner:hover {
  color: var(--color-orange);
}

.button-grey {
  background: var(--color-grey);
}

.status {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #898a8a;
}
.status img {
  height: 1em;
}

.style-input {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
.style-input a {
  position: relative;
  z-index: 2;
}
.style-input input[type=checkbox],
.style-input input[type=radio] {
  position: absolute;
  left: 0;
  opacity: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.style-input .radiomark {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--color-grey);
  background: white;
  position: relative;
}
.style-input input[type=radio]:checked ~ .radiomark {
  border-color: var(--color-orange);
}
.style-input input[type=radio]:checked ~ .radiomark:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: var(--color-orange);
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
}
.style-input .checkmark {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 1px solid var(--color-grey);
  background: white;
  position: relative;
}
.style-input input[type=checkbox]:checked ~ .checkmark {
  border-color: var(--color-orange);
  background: var(--color-orange);
}
.style-input input[type=checkbox]:checked ~ .checkmark:after {
  content: "";
  display: block;
  width: 9px;
  height: 5px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  border-radius: 1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 3px;
  left: 2px;
}

.tooltips {
  position: relative;
  display: inline;
  margin: 0 3px;
}
.tooltips i.icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 16px;
  height: 16px;
  line-height: 16px;
  color: var(--color-orange);
  border: 1px solid var(--color-orange);
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  cursor: default;
}
.tooltips .tooltips-word {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 2em;
  left: -0.5em;
  background: white;
  font-size: 12px;
  padding: 0.5em;
  border-radius: 6px;
  width: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  word-break: keep-all;
}
.tooltips .tooltips-word:after {
  content: "";
  display: block;
  position: absolute;
  left: 0.75em;
  bottom: -5px;
  width: 0;
  height: 0;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 5px solid white;
}

.tooltips:hover .tooltips-word {
  visibility: visible;
  opacity: 1;
}

header {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  background: var(--bg-color);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 99;
}
header a {
  border-bottom: 0;
  font-weight: 600;
}
header .container {
  max-width: 100%;
  padding: 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: auto;
}
header .logo img {
  display: block;
  height: 50px;
}
header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5em;
}
header .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5em;
  text-transform: uppercase;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .menu-btn {
  border: 1px solid black;
  padding: 0.25em 0.75em;
  border-radius: 0.25em;
}
header .menu-btn:hover {
  border-color: var(--color-orange);
}
header .lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  font-size: 14px;
  border-bottom: 1px solid var(--color-grey);
  padding-bottom: 0.5em;
  position: relative;
}
header .lang a {
  color: #898a8a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
header .lang img {
  width: 1em;
}
header .lang .arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--color-orange);
}
header .lang-menu {
  width: auto;
  min-width: 8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
  position: absolute;
  right: 0;
  top: -2000%;
  background: var(--bg-color);
  padding: 1em;
  border-radius: 0.25em;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  opacity: 0;
}
header .lang-menu a {
  font-weight: 400;
}
header .lang-menu a:hover {
  color: var(--color-orange);
}
header .lang.active .lang-menu {
  top: calc(100% + 10px);
  opacity: 1;
}
header .menu-open {
  display: none;
}
header .signin {
  font-size: 14px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  color: #898a8a;
}
header .signin a {
  color: #898a8a;
}
header .signin .signin-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .signin .signin-link span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 8em;
}
header .signin .signin-link img {
  width: 1em;
}
header .signin-menu {
  width: auto;
  min-width: 8em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
  position: absolute;
  right: 0;
  top: -2000%;
  background: var(--bg-color);
  padding: 1em;
  border-radius: 0.25em;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  opacity: 0;
}
header .signin-menu a {
  font-weight: 400;
}
header .signin-menu a:hover {
  color: var(--color-orange);
}
header .signin.active .signin-menu {
  top: calc(100% + 10px);
  opacity: 1;
}

.index-banner {
  position: relative;
  z-index: 0;
}
.index-banner:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}
.index-banner .index-banner-video {
  width: 100%;
  display: block;
}
.index-banner .index-banner-video video {
  display: block;
}
.index-banner .index-banner-img {
  display: block;
  width: 100%;
  height: calc(100vh - 80px);
  -o-object-fit: cover;
     object-fit: cover;
}
.index-banner .index-banner-text {
  z-index: 1;
  position: absolute;
  width: 75%;
  height: calc(100% - 120px);
  bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  padding: 0 60px;
  color: white;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}
.index-banner .index-banner-text h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.index-banner .index-banner-text h1 img {
  height: 101px;
  display: block;
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.index-banner .index-banner-text h1 img:nth-of-type(2) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.index-banner .index-banner-text h1 img:nth-of-type(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.index-banner .index-banner-text h2 {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

#index-service {
  padding-top: 80px;
}

.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
  margin: 2em 0;
}
.title .title-icon {
  height: 3.2em;
}
.title h1 {
  font-size: 2.5em;
}
.title h1 small {
  display: inline-block;
  font-size: 0.66em;
  color: var(--color-grey);
  font-weight: 300;
}

.title-second {
  padding: 0 1em;
  margin: 2em 0;
}
.title-second h2 {
  text-transform: uppercase;
  font-size: 2em;
  color: var(--color-orange);
}
.title-second h2:after {
  content: "";
  display: block;
  height: 2px;
  width: 2em;
  background: var(--color-orange);
  margin-top: 12px;
}

.title-bar {
  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;
}

.center {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.description {
  padding: 1em;
  font-size: 1.25em;
  font-weight: 700;
}

.picture-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px;
  margin: 180px auto;
}
.picture-grid .pg-img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.picture-grid .pg-img:after {
  content: "";
  display: block;
  width: 50%;
  aspect-ratio: 1/1;
  border-radius: 0.5em;
  position: absolute;
  bottom: -40px;
  left: -40px;
  background: var(--color-orange);
}
.picture-grid .pg-img img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5em;
}
.picture-grid .pg-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 60px 0 0;
  position: relative;
}
.picture-grid .pg-text:before {
  content: "";
  display: block;
  width: 45%;
  aspect-ratio: 1/1;
  background: url(../images/bg_pg-orange.svg) no-repeat center;
  background-size: auto;
  position: absolute;
  right: 0;
  top: -30%;
}
.picture-grid .pg-text .pg-text-main {
  position: relative;
  z-index: 1;
  width: 100%;
}
.picture-grid .pg-text .pg-text-main h2 {
  text-transform: uppercase;
  font-size: 2.5em;
  width: 60%;
  color: var(--color-orange);
}
.picture-grid .pg-text .pg-text-main h2:after {
  content: "";
  display: block;
  height: 3px;
  width: 2.5em;
  background: var(--color-orange);
  margin-top: 16px;
}
.picture-grid .pg-text .pg-text-main p {
  font-weight: 300;
  font-size: 1.375em;
  font-weight: 600;
}
.picture-grid .pg-text .button {
  -ms-flex-item-align: end;
      align-self: flex-end;
  padding: 0.75em 1.25em;
  gap: 2em;
}

.picture-grid:nth-of-type(even) .pg-img:after {
  left: auto;
  right: -40px;
}
.picture-grid:nth-of-type(even) .pg-text {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.picture-grid.blue .pg-img:after {
  background: var(--color-blue);
}
.picture-grid.blue .pg-text:before {
  background-image: url(../images/bg_pg-blue.svg);
}
.picture-grid.blue .pg-text .pg-text-main h2 {
  color: var(--color-blue);
}
.picture-grid.blue .pg-text .pg-text-main h2:after {
  background: var(--color-blue);
}
.picture-grid.blue .pg-text .button {
  background: var(--color-blue);
}

.picture-grid.green .pg-img:after {
  background: var(--color-green);
}
.picture-grid.green .pg-text:before {
  background-image: url(../images/bg_pg-green.svg);
}
.picture-grid.green .pg-text .pg-text-main h2 {
  color: var(--color-green);
}
.picture-grid.green .pg-text .pg-text-main h2:after {
  background: var(--color-green);
}
.picture-grid.green .pg-text .button {
  background: var(--color-green);
}

.picture-grid.yellow .pg-img:after {
  background: var(--color-yellow);
}
.picture-grid.yellow .pg-text:before {
  background-image: url(../images/bg_pg-yellow.svg);
}
.picture-grid.yellow .pg-text .pg-text-main h2 {
  color: var(--color-yellow);
}
.picture-grid.yellow .pg-text .pg-text-main h2:after {
  background: var(--color-yellow);
}
.picture-grid.yellow .pg-text .button {
  background: var(--color-yellow);
}

.subscription {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}
.subscription .subscription-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-bottom: 1px solid var(--color-grey);
  padding-bottom: 0.5em;
}
.subscription .subscription-input input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.subscription .subscription-input button img {
  width: 2em;
}

::-webkit-input-placeholder {
  color: var(--color-grey);
}

::-moz-placeholder {
  color: var(--color-grey);
}

:-ms-input-placeholder {
  color: var(--color-grey);
}

::-ms-input-placeholder {
  color: var(--color-grey);
}

::placeholder {
  color: var(--color-grey);
}

.wrap {
  overflow: hidden;
}

.social-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.8em;
  gap: 0.5em;
}

.social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
.social-icons .social-contact {
  margin-left: 3em;
}
.social-icons a {
  border-bottom: 0;
  display: inline-block;
  width: 32px;
  height: 32px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.social-icons a.social-fb {
  background-image: url(../images/icon_fb.svg);
}
.social-icons a.social-fb:hover {
  background-image: url(../images/icon_fb-sm.svg);
}
.social-icons a.social-ig {
  background-image: url(../images/icon_ig.svg);
}
.social-icons a.social-ig:hover {
  background-image: url(../images/icon_ig-sm.svg);
}
.social-icons a.social-yt {
  background-image: url(../images/icon_yt.svg);
}
.social-icons a.social-yt:hover {
  background-image: url(../images/icon_yt-sm.svg);
}
.social-icons a.social-x {
  background-image: url(../images/icon_x.svg);
}
.social-icons a.social-x:hover {
  background-image: url(../images/icon_x-sm.svg);
}
.social-icons a.social-linkedin {
  background-image: url(../images/icon_linkedin.svg);
}
.social-icons a.social-linkedin:hover {
  background-image: url(../images/icon_linkedin-sm.svg);
}
.social-icons a.social-spotify {
  background-image: url(../images/icon_spotify.svg);
}
.social-icons a.social-spotify:hover {
  background-image: url(../images/icon_spotify-sm.svg);
}
.social-icons a.social-mail {
  background-image: url(../images/icon_mail.svg);
}
.social-icons a.social-mail:hover {
  background-image: url(../images/icon_mail-sm.svg);
}

footer {
  padding: 30px 60px;
  margin-top: 120px;
  position: relative;
}
footer .gotop {
  position: absolute;
  right: 60px;
  top: -90px;
  width: 60px;
  text-align: center;
  border-bottom: 0;
  color: black;
}
footer .gotop img {
  display: block;
  margin-bottom: 5px;
}
footer .gotop span {
  font-weight: 700;
  font-size: 0.9em;
}
footer .container {
  max-width: 100%;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1em;
}
footer .logo-slogan img {
  height: 45px;
}
footer nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
  margin-bottom: 2em;
}
footer nav .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
footer nav .menu h4 {
  margin-bottom: 0.5em;
}
footer nav .menu a {
  border-bottom: 0;
  font-weight: 300;
}
footer .footer-left {
  max-width: 50%;
}
footer .social-icons {
  margin-bottom: 2em;
}
footer .copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  font-weight: 300;
  font-size: 0.9em;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
footer .copyright a {
  border-bottom: 0;
}
footer .footer-right:has(.copyright) {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
footer .footer-right:has(.copyright) .social-icons {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.contact-team {
  position: relative;
  padding: 80px 0;
}
.contact-team:before {
  content: "";
  display: block;
  width: 30%;
  aspect-ratio: 1/1;
  background: url(../images/bg_pg-yellow.svg) no-repeat center;
  background-size: auto 100%;
  position: absolute;
  top: -100px;
  right: 0;
}

.team .team-img {
  position: relative;
  margin-bottom: 3em;
  padding: 0 15px;
}
.team .team-img:after {
  content: "";
  display: block;
  width: 80%;
  aspect-ratio: 1/1;
  border-radius: 0.5em;
  position: absolute;
  bottom: -24px;
  left: -12px;
  background: var(--color-orange);
}
.team .team-img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
  border-radius: 0.5em;
  position: relative;
  z-index: 1;
}
.team .team-title {
  color: var(--color-orange);
}
.team .team-links {
  margin-top: 1em;
}
.team .team-links a {
  border-bottom: 0;
}
.team .team-links img {
  width: 48px;
}

.teams-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2em 1fr 2em 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  padding: 0 10%;
  margin: 4em auto;
}
.teams-list .team:nth-of-type(2n) {
  margin-top: 4em;
}
.teams-list .team:nth-of-type(2n) .team-img:after {
  background: var(--color-blue);
}
.teams-list .team:nth-of-type(2n) .team-title {
  color: var(--color-blue);
}
.teams-list .team:nth-of-type(3n) .team-img:after {
  background: var(--color-green);
}
.teams-list .team:nth-of-type(3n) .team-title {
  color: var(--color-green);
}

.contact-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin: 80px auto;
}
.contact-map .cm-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  gap: 30px;
}
.contact-map .cm-info .cm-info-logo img {
  width: 70%;
}
.contact-map .cm-info .cm-info-main {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contact-map .cm-info .cm-info-main dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contact-map .cm-info .cm-info-main dl dt {
  width: 20%;
  font-weight: 600;
  padding-right: 0.5em;
}
.contact-map .cm-info .cm-info-main dl dd {
  width: 80%;
  font-weight: 300;
}
.contact-map .cm-map {
  width: calc(50% - 15px);
  position: relative;
  overflow: hidden;
}
.contact-map .cm-map iframe {
  border-radius: 0.5em;
  position: relative;
  z-index: 1;
}
.contact-map .cm-map:after {
  content: "";
  display: block;
  width: 50%;
  aspect-ratio: 1/1;
  border-radius: 0.5em;
  position: absolute;
  bottom: -40px;
  right: -40px;
  background: var(--color-yellow);
  pointer-events: none;
}

.slick-dots {
  bottom: 2vw;
}

.slick-dots li {
  width: auto;
  height: auto;
}

.slick-dots li button {
  width: 8px;
  height: 8px;
  background: white;
  padding: 0;
  border-radius: 50%;
}

.slick-dots li.slick-active button {
  background: var(--color-orange);
}

.slick-dots li button:before {
  display: none;
}

.banner-slider img {
  display: block;
  width: 100%;
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-content {
  padding: 80px 0;
}

.style-ul,
.rg-content ul {
  margin: 1em 0 2em;
  font-size: 1.125em;
}
.style-ul li,
.rg-content ul li {
  list-style: none;
  position: relative;
  padding-left: 1.5em;
}
.style-ul li:before,
.rg-content ul li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border: 2px solid var(--color-orange);
  border-radius: 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  left: 0;
  top: 0.375em;
}

.rule-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3fr;
  grid-template-columns: 1fr 3fr;
  margin: 2em auto;
}

.rule-grid.blue .title-second h2 {
  color: var(--color-blue);
}
.rule-grid.blue .title-second h2:after {
  background: var(--color-blue);
}
.rule-grid.blue .rg-content ul li:before {
  border-color: var(--color-blue);
}

.community-content {
  padding: 80px 0;
  position: relative;
}
.community-content:before {
  content: "";
  display: block;
  width: 25%;
  aspect-ratio: 1/1;
  background: url(../images/bg_pg-orange.svg) no-repeat center;
  background-size: 100% auto;
  position: absolute;
  top: -100px;
  right: 0;
}
.community-content .newest {
  margin-bottom: 80px;
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.card .card-img {
  margin-bottom: 1em;
}
.card .card-img img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.card .card-title {
  color: var(--color-orange);
  margin-bottom: 1em;
}
.card .card-title h4 {
  font-size: 1.125em;
}
.card .card-title:after {
  content: "";
  display: block;
  width: 2em;
  height: 2px;
  background: var(--color-orange);
  margin-top: 12px;
}
.card .card-date time {
  margin: 0 0.5em;
}
.card .card-date time:first-child {
  margin-left: 0;
}
.card .card-date b {
  margin: 0 0.5em;
}
.card .card-date b:first-child {
  margin-left: 0;
}
.card .card-place {
  font-size: 0.9em;
}
.card .card-place img {
  height: 1em;
  display: inline-block;
}
.card .card-host {
  color: #999;
  font-size: 0.9em;
}
.card .card-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: 0;
}
.card .card-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
  margin-top: 1em;
}
.card .card-desc {
  font-weight: 600;
}

.cards-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2em 1fr 2em 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}

.cards-bigs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2em 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
}
.cards-bigs .card .card-title h4 {
  font-size: 1.5em;
}

.past .title-second h2 {
  color: var(--color-blue);
}
.past .title-second h2:after {
  background: var(--color-blue);
}
.past .card .card-title {
  color: var(--color-blue);
}
.past .card .card-title:after {
  background: var(--color-blue);
}

.pages {
  margin: 2em 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;
}
.pages a {
  border-bottom: 0;
  text-align: center;
  padding: 0.25em 0;
  min-width: 2em;
}
.pages a.page-current {
  font-weight: 600;
  color: var(--color-orange);
  background: white;
  border-radius: 2px;
}
.pages .page-prev span {
  margin: auto;
  display: block;
  width: 8px;
  height: 8px;
  border-left: 2px solid #999;
  border-top: 2px solid #999;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-radius: 2px;
}
.pages .page-next span {
  margin: auto;
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #999;
  border-top: 2px solid #999;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 2px;
}
.pages a.disable span {
  border-color: var(--color-grey);
}

textarea {
  resize: none;
  width: 100%;
  display: block;
  outline: 0;
  border: 1px solid var(--color-grey);
  background: rgba(255, 255, 255, 0.5);
  min-height: 7em;
  padding: 0.5em;
  border-radius: 0.25em;
}

.buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  margin: 2em auto;
}
.buttons .button {
  min-width: 10em;
  max-width: 100%;
  padding: 0.75em 1.25em;
}

.label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 1em auto;
}
.label .label-title {
  font-weight: 700;
  padding: 0.5em 1em 0.5em 0;
  border-bottom: 1px solid var(--color-grey);
}
.label .label-title small {
  color: var(--color-dark);
}
.label .label-content {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.label .label-content input {
  max-width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.5em 0;
  border-bottom: 1px solid var(--color-grey);
  border-radius: 0;
}
.label .label-content input.input-small {
  width: 8em;
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
}
.label .label-content .verify-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  font-size: 0.95em;
}
.label .label-content .button {
  font-size: 0.95em;
  padding: 0.5em 1.25em;
}
.label .label-content .select2 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.label .label-content:has(input) .select2 {
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
}
.label .label-numbers {
  position: relative;
  border-bottom: 0;
}
.label .label-numbers input {
  border-bottom: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
  width: 10em;
  overflow: hidden;
  font-size: 2em;
  font-weight: 700;
  padding: 0.5em 0;
  text-align: left;
  letter-spacing: 1em;
  position: relative;
  left: 15%;
}
.label .label-numbers .label-numbers-lines {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  position: absolute;
  bottom: 0;
  left: calc(15% - 0.4em);
  font-size: 2em;
}
.label .label-numbers .label-numbers-lines span {
  width: 1.125em;
  height: 1px;
  background: var(--color-grey);
}
.label .label-notice {
  width: 100%;
  font-weight: 500;
  font-size: 0.9em;
  margin-top: 0.75em;
}
.label .label-warning {
  width: 100%;
  font-weight: 600;
  font-size: 0.9em;
  color: var(--color-red);
  margin-top: 0.75em;
}
.label .label-numbers ~ .label-warning {
  text-align: center;
}
.label .label-remind {
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  padding: 1.5em;
  margin: 1em 0;
}
.label .label-remind h4 {
  font-size: 1em;
  color: var(--color-red);
  margin-bottom: 0.5em;
}
.label .label-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.label .label-box input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  max-width: 100%;
}
.label .label-box h5 {
  color: var(--color-dark);
}

.label:has(.label-warning) .label-title {
  border-color: var(--color-red);
}
.label:has(.label-warning) .label-content input {
  border-color: var(--color-red);
}
.label:has(.label-warning) .label-numbers .label-numbers-lines span {
  background: var(--color-red);
}

.select2-container .select2-selection--single {
  height: 40px;
  border-color: var(--color-grey);
  background-color: rgba(255, 255, 255, 0.5);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
  padding-left: 1em;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 38px;
}

.select2 {
  font-weight: 700;
  width: auto;
  max-width: 100%;
  min-width: 160px;
}

.signin-form {
  margin: 120px auto;
  max-width: 480px;
}
.signin-form .signin-form-top {
  text-align: center;
  padding: 0 1em;
}
.signin-form .signin-form-top .logo {
  width: 66.66%;
  display: block;
  margin: auto;
}
.signin-form .signin-form-top .title-second {
  display: inline-block;
}
.signin-form .signin-form-top p {
  font-weight: 700;
  margin-top: 0;
}
.signin-form .signin-form-main {
  padding: 0 10%;
  margin: 2em auto 1em;
}
.signin-form .signin-form-bottom {
  padding: 0 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.9em;
  font-weight: 600;
  color: #898a8a;
}
.signin-form .signin-form-bottom a.signup-link {
  color: var(--color-orange);
}
.signin-form .signin-form-bottom .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.signin-form .signin-form-notice {
  font-size: 0.9em;
  font-weight: 600;
  margin: 1em auto;
  width: 80%;
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 0.5em;
}
.signin-form .signin-form-notice a {
  color: var(--color-orange);
}
.signin-form .signin-form-remind {
  font-size: 0.9em;
  font-weight: 600;
  margin: 1em auto;
  width: 80%;
}
.signin-form .signin-form-remind ol, .signin-form .signin-form-remind ul {
  -webkit-padding-start: 1.5em;
          padding-inline-start: 1.5em;
}
.signin-form .label-content {
  border-bottom: 1px solid var(--color-grey);
}
.signin-form .label-content input {
  border-bottom: 0;
}
.signin-form .label-content:has(.button) {
  border-bottom: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.signin-form .label-content:has(.button) .button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.signin-form .label-numbers {
  position: relative;
  border-bottom: 0;
}
.signin-form .label:has(.label-warning) .label-content {
  border-color: var(--color-red);
}

.member {
  margin: 120px auto;
}
.member .member-top {
  text-align: center;
}
.member .member-top .logo {
  width: 66.66%;
  max-width: 298px;
  display: block;
  margin: auto;
}
.member .member-top .title-second {
  display: inline-block;
}
.member .member-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 2px solid var(--color-yellow);
}
.member .member-tab a {
  padding: 0.75em 1.5em;
  border-radius: 0.5em 0.5em 0 0;
  border-bottom: 0;
  color: black;
  font-weight: 600;
}
.member .member-tab a.active {
  background: var(--color-yellow);
}
.member .member-form {
  margin: 2em auto;
  max-width: 66%;
}
.member .label-title {
  border-bottom: 0;
  width: 40%;
  text-align: right;
}
.member .label-warning {
  text-align: right;
}

.form-notice {
  margin: 0 0 1em;
}

.must-mark {
  color: var(--color-red);
  display: inline-block;
  vertical-align: top;
  margin-left: 2px;
  margin-right: 2px;
  font-weight: 400;
  font-size: 1.17rem;
}

.reserve-notice {
  font-size: 0.9em;
  font-weight: 600;
  color: var(--color-red);
  margin: 2em auto;
  text-align: center;
}

table {
  width: 100%;
  font-size: 0.9em;
}
table th {
  padding: 1.25em 0.75em;
  background: white;
}
table td {
  padding: 1.25em 0.75em;
  border-bottom: 1px solid var(--color-grey);
  font-weight: 500;
}
table td:has(.button) {
  padding: 0 0.75em;
}
table .sticky-col {
  position: sticky;
  left: 0;
  z-index: 1;
}
table td.sticky-col {
  background: var(--bg-color);
  width: 15em;
}

.reserve-table {
  margin: 2em auto;
  padding-bottom: 1em;
}

.reserve-content {
  padding: 90px 0;
}

a.map-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  color: var(--color-blue);
  border-bottom: 0;
}
a.map-link img {
  height: 1em;
}

hr {
  border: 0;
  border-top: 1px solid var(--color-grey);
  margin: 3em auto;
}

.reserve-form h3 {
  color: var(--color-orange);
}
.reserve-form .label {
  padding-left: 5%;
}
.reserve-form .label .style-input {
  font-size: 0.9em;
}
.reserve-form .label ~ h3 {
  margin-top: 2em;
}
.reserve-form .label-title {
  border-bottom: 0;
  padding-right: 2em;
  min-width: 6em;
}
.reserve-form .label-content {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  min-width: 50%;
}
.reserve-form .label-content:has(.style-ul) {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
.reserve-form .label-title ~ .label-content {
  min-width: calc(50% - 6em);
}
.reserve-form .label-content:has(input[type=time]) {
  min-width: 75%;
}
.reserve-form .style-ul {
  font-size: 1em;
}
.reserve-form .label-notice {
  color: var(--color-dark);
}

.reserve-form-end {
  font-weight: 600;
  padding: 2em;
  background: rgba(255, 255, 255, 0.5);
}

.yearpicker-container {
  border-radius: 0.5em;
  top: 100%;
  -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
          box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
  border: 0;
  background: white;
  font-size: 0.9em;
  width: 240px;
}

.yearpicker-header {
  border-bottom-color: var(--color-grey);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.yearpicker-items {
  padding: 0.75em 0.5em;
}

.yearpicker-items:hover {
  background: white;
  color: var(--color-orange);
  font-weight: 600;
}

.yearpicker-items.selected {
  color: var(--color-orange);
  font-weight: 600;
}

.yearpicker-prev, .yearpicker-next {
  width: 2em;
  text-align: center;
}

.yearpicker-prev:hover, .yearpicker-next:hover {
  color: var(--color-orange);
}

.ui-widget {
  font-family: "Montserrat", "Noto Sans TC", "Noto Sans JP", sans-serif;
  font-size: 0.9em;
}

.ui-widget.ui-widget-content {
  border: 0;
  border-radius: 0.5em;
  background: white;
  padding: 5px;
  -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
          box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}

.ui-timepicker-standard {
  margin-top: 2px;
  border-radius: 0.5em;
  border: 0;
  background: white;
  -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
          box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}
.ui-timepicker-standard .ui-widget.ui-widget-content {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.ui-widget-header {
  background: none;
  border: 0;
}
.ui-widget-header a {
  border-bottom: 0;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  border: 0;
  background: none;
  text-align: center;
  border-radius: 0.25em;
}

.ui-widget-header .ui-icon {
  background-image: url(../images/ui-icons.png);
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
  background: var(--color-orange);
  font-weight: 600;
}

.ui-datepicker th {
  background: none;
}

.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus {
  border: 0;
  background: #eee;
  color: black;
}

.ui-datepicker .ui-datepicker-prev {
  left: 3px;
  top: 0;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
  right: 3px;
  top: 0;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-prev span {
  background: none;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 6px solid var(--color-grey);
  margin-top: -4px;
  margin-left: -3px;
}

.ui-datepicker .ui-datepicker-next span {
  background: none;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid var(--color-grey);
  margin-top: -4px;
  margin-left: -3px;
}

.ui-timepicker-standard a {
  border: 0;
}

.flatpickr-months {
  font-size: 1em;
}

.flatpickr-innerContainer {
  font-size: 0.9em;
}

.flatpickr-day.today {
  border-color: var(--color-orange);
}

.flatpickr-day.today:hover, .flatpickr-day.today:focus {
  background-color: var(--color-orange);
  border-color: var(--color-orange);
}

.dialog {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  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;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
}

.dialog-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: white;
  border-radius: 0.5em;
  position: relative;
  padding: 0 1.5em 1.5em;
  min-width: 320px;
  max-width: 90%;
}
.dialog-box .dialog-box-top {
  height: 3.5em;
  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;
  color: var(--color-orange);
}
.dialog-box .dialog-box-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.dialog-box .buttons {
  margin-bottom: 0;
}
.dialog-box .button {
  min-width: 6em;
}
.dialog-box .close {
  position: absolute;
  right: 1.5em;
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 0;
}
.dialog-box .close:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-orange);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  left: 0;
  top: 50%;
}
.dialog-box .close:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-orange);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  position: absolute;
  left: 0;
  top: 50%;
}

@media screen and (max-width: 1390px) {
  header .container {
    padding: 0 30px;
  }
  header .logo img {
    height: 45px;
  }
  header .menu {
    font-size: 14.5px;
  }
}
@media screen and (max-width: 1279px) {
  header .logo img {
    height: 40px;
  }
  header nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 30px;
    background: var(--bg-color);
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  header nav.active {
    height: calc(100vh - 70px);
    padding: 30px;
  }
  header .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  header .menu-open {
    display: block;
    width: 24px;
    height: 20px;
    position: relative;
  }
  header .menu-open span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-orange);
    position: absolute;
    top: calc(50% - 1px);
  }
  header .menu-open:before, header .menu-open:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    background: var(--color-orange);
  }
  header .menu-open:after {
    bottom: 0;
  }
  header .menu-open.active span {
    display: none;
  }
  header .menu-open.active:before {
    bottom: 50%;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header .menu-open.active:after {
    bottom: 50%;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  header .lang {
    border-bottom: 0;
  }
  header .lang a.lang-open {
    display: none;
  }
  header .lang-menu {
    position: static;
    opacity: 1;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1em;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
  }
  header .lang-menu a.current {
    color: var(--color-orange);
    font-weight: 600;
  }
  header .signin {
    border-bottom: 1px solid var(--color-grey);
    padding-bottom: 1em;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  header .signin .signin-link span {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: none;
    width: auto;
  }
  header .signin-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    position: static;
    opacity: 1;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 1em;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer {
    padding: 30px;
  }
  .scroll-x {
    overflow-x: auto;
  }
  .scroll-x table {
    min-width: 960px;
  }
}
@media screen and (max-width: 820px) {
  footer {
    padding: 30px;
  }
  footer .gotop {
    right: 30px;
  }
  footer .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2em;
  }
  footer .footer-left {
    max-width: 100%;
  }
  footer .container:has(.copyright) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  footer nav {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer nav .menu {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .index-banner .index-banner-text h1 img {
    height: 80px;
  }
  .index-banner .index-banner-text p {
    display: none;
  }
  .title {
    gap: 1.5em;
  }
  .title h1 {
    font-size: 2em;
  }
  .title-second h2 {
    font-size: 1.75em;
  }
  .picture-grid .pg-text .pg-text-main h2 {
    width: 100%;
  }
  .contact-map .cm-info .cm-info-main dl dt {
    width: 25%;
  }
  .contact-map .cm-info .cm-info-main dl dd {
    width: 75%;
  }
  .contact-team:before {
    width: 33.33%;
    top: -50px;
    right: -5%;
  }
  .teams-list {
    padding: 0 5%;
  }
  .community-content:before {
    width: 33.33%;
    top: -50px;
    right: -5%;
  }
  .cards-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    padding: 0 1em;
  }
}
@media screen and (max-width: 576px) {
  body {
    font-size: 14px;
  }
  .index-banner .index-banner-img {
    height: calc(100vh - 70px);
  }
  .index-banner .index-banner-text {
    width: 100%;
    height: calc(100% - 60px);
    bottom: 30px;
    padding: 0 30px;
  }
  .index-banner .index-banner-text h1 img {
    height: 44px;
  }
  .index-banner .index-banner-text h2 {
    font-size: 16px;
  }
  .index-banner .index-banner-text p {
    display: none;
  }
  .title-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1em;
  }
  .title-bar .buttons {
    text-align: right;
  }
  #index-service {
    padding-top: 70px;
  }
  .picture-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .picture-grid .pg-img {
    width: 100%;
    padding: 15px;
  }
  .picture-grid .pg-img:after {
    bottom: 0;
    left: 0;
  }
  .picture-grid .pg-text {
    padding: 0 15px;
  }
  .picture-grid .pg-text:before {
    top: auto;
    bottom: -30%;
  }
  .picture-grid:nth-of-type(even) .pg-img:after {
    right: 0;
  }
  .picture-grid:nth-of-type(even) .pg-text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .contact-map {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-map .cm-info {
    padding: 0 15px;
  }
  .contact-map .cm-map {
    width: 100%;
    height: 33vh;
    padding: 15px;
    overflow: hidden;
  }
  .contact-map .cm-map:after {
    right: 0;
    bottom: 0;
  }
  footer .gotop {
    top: -90px;
  }
  .rule-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 2em;
  }
  footer .container:has(.copyright) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer-right:has(.copyright) {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  footer nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .social-icons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .social-icons .social-contact {
    margin-left: 0;
    width: 100%;
  }
  footer .footer-right:has(.copyright) .social-icons {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .cards-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 0 1em;
  }
  .cards-bigs {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 0 1em;
  }
  .teams-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 0 10%;
  }
  .teams-list .team:nth-of-type(2n) {
    margin-top: 0;
  }
  .contact-team:before {
    width: 44%;
    top: -40px;
    right: 0;
  }
  .community-content:before {
    width: 44%;
    top: -40px;
    right: 0;
  }
  .label .label-numbers input {
    left: 12%;
  }
  .label .label-numbers .label-numbers-lines {
    left: calc(12% - 0.4em);
  }
  .label .label-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .label .label-content .button {
    width: 100%;
  }
  .label .label-box {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .signin-form {
    margin: 60px auto;
  }
  .member {
    margin: 60px auto;
  }
  .member .member-form {
    max-width: 90%;
  }
  .member .label-title {
    width: 100%;
    text-align: left;
  }
  .reserve-content {
    padding: 30px 0;
  }
  .reserve-form .label {
    gap: 0.5em;
  }
  .reserve-form .label-title {
    width: 100%;
  }
  .reserve-form .label-content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .reserve-form .label-content input,
  .reserve-form .label-content .select2 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .ui-widget {
    font-size: 1em;
  }
}