@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
html {
  scrollbar-width: none;
}
html::-webkit-scrollbar {
  display: none;
}

.df-center, #main .kv--icon, .header {
  display: flex;
  justify-content: center;
  align-items: center;
}

textarea.form-control {
  max-height: 50vh;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  transition: opacity 0.6s ease;
  overflow: hidden;
}
#loader.is-loaded {
  opacity: 0;
  pointer-events: none;
}
#loader img {
  width: 80px !important;
  height: 80px !important;
  max-width: none;
  animation: loader-spin 3s linear infinite;
}

@keyframes loader-spin {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
html,
body,
#wrapper {
  overflow-x: hidden;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

img {
  width: 100%;
}

.df-center, #main .kv--icon, .header {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mont, #main .kv--text h1 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

p {
  line-height: 1.4rem;
}

[data-anim] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

[data-anim=left] {
  transform: translate3d(-44px, 0, 0);
}

[data-anim=right] {
  transform: translate3d(44px, 0, 0);
}

[data-anim=up] {
  transform: translate3d(0, 28px, 0);
}

[data-anim].is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-anim=coin] {
  opacity: 0;
  transform: translate3d(0, 12px, 0) scale(0.6);
  perspective: 800px;
}

[data-anim=coin] img {
  display: block;
  transform-origin: center center;
  transform-box: fill-box;
  will-change: transform;
}

[data-anim=coin].is-inview {
  opacity: 1;
  transition: none;
  animation: coin-pop 0.95s cubic-bezier(0.2, 0.75, 0.3, 1.2) forwards;
}
[data-anim=coin].is-inview img {
  animation: coin-spin-z 0.95s cubic-bezier(0.2, 0.75, 0.3, 1.2) forwards;
}

@keyframes coin-pop {
  0% {
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(0.45);
  }
  70% {
    opacity: 1;
    transform: translate3d(0, -4px, 0) scale(1.06);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes coin-spin-z {
  0% {
    transform: rotateY(0deg);
  }
  70% {
    transform: rotateY(720deg);
  }
  100% {
    transform: rotateY(720deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  [data-anim],
  [data-anim=coin] {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
  [data-anim=coin] img {
    transform: none;
    animation: none;
  }
}
.header {
  height: 64px;
  width: 100%;
  background-color: white;
  position: fixed;
  top: 0;
  z-index: 999;
  padding: 0 16px;
}
.header .site-title {
  margin: 0;
}
.header .logo {
  max-height: 40px;
}
.header .icons {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.header .icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  font-size: 1.5rem;
  line-height: 1;
}

#main .kv {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
#main .kv .kv-slider {
  position: relative;
}
#main .kv .kv-slider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 2;
}
#main .kv--wrap {
  width: 100%;
  height: 100vh;
}
#main .kv--text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 3rem;
  max-width: 100%;
  box-sizing: border-box;
  color: white;
}
@media (max-width: 767.98px) {
  #main .kv--text {
    background: linear-gradient(to top, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  }
}
#main .kv--text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
#main .kv--icon {
  position: absolute;
  inset: 0;
}
#main .kv--icon img {
  max-width: 96px;
}
#main .kv--slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
#main h2 {
  font-size: 1.5rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  #main h2 {
    margin-top: 2rem;
  }
}
#main section.container {
  overflow: hidden;
}
#main section {
  margin-bottom: 5rem;
}
#main section:last-of-type {
  margin-bottom: 0;
}
#main .sub-title {
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6rem;
}
@media (max-width: 767.98px) {
  #main .sub-title {
    text-align: left;
  }
}
#main #cta-kaitori .kaitori-box {
  max-width: 600px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 16px;
  padding: 40px 24px;
}
#main #cta-kaitori .kaitori-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
#main #cta-kaitori .kaitori-lead {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}
#main #cta-kaitori .kaitori-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  background: #c0392b;
  padding: 14px 36px;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 0.2s;
}
#main #cta-kaitori .kaitori-tel:hover {
  opacity: 0.85;
  color: #fff;
}
#main #cta-kaitori .kaitori-tel i {
  font-size: 1.6rem;
}
@media (max-width: 767.98px) {
  #main #cta-kaitori .kaitori-tel {
    font-size: 1.4rem;
    padding: 12px 28px;
  }
}
#main #cta-kaitori .kaitori-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}
#main #banner {
  flex-wrap: wrap;
}
#main #banner a {
  flex-shrink: 0;
}
#main #banner a img {
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
}
#main #workshop .workshop-accordion {
  max-width: 520px;
  margin: 0 auto;
}
#main #workshop .workshop-accordion .accordion-toggle {
  display: block;
  width: 100%;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: bold;
  background: #f5f5f0;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
}
#main #workshop .workshop-accordion .accordion-toggle.is-open {
  border-radius: 6px 6px 0 0;
}
#main #workshop .workshop-accordion .accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
}
#main #workshop .workshop-accordion .price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
}
#main #workshop .workshop-accordion .price-list li:last-child {
  border-bottom: none;
}
#main #workshop .workshop-accordion .price-list li .item-name {
  font-size: 0.9rem;
}
#main #workshop .workshop-accordion .price-list li .item-price {
  font-weight: bold;
  white-space: nowrap;
  margin-left: 16px;
}
#main #calendar .calendar-card {
  max-width: 360px;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
}
#main #calendar .calendar-nav {
  text-align: center;
  margin-bottom: 20px;
}
#main #calendar .calendar-nav .calendar-month {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #333;
}
#main #calendar .calendar-grid {
  width: 100%;
  border-collapse: collapse;
}
#main #calendar .calendar-grid th, #main #calendar .calendar-grid td {
  text-align: center;
  width: 14.2857142857%;
  font-size: 0.82rem;
  color: #555;
}
#main #calendar .calendar-grid th {
  padding-bottom: 12px;
  font-weight: 500;
  font-size: 0.7rem;
  color: #aaa;
  letter-spacing: 0.05em;
}
#main #calendar .calendar-grid td {
  padding: 6px 0;
}
#main #calendar .calendar-grid td.today span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #333;
  color: #fff;
  border-radius: 50%;
  font-weight: 600;
}
#main #calendar .calendar-grid td.closed {
  background: rgba(244, 143, 131, 0.3);
  color: #c0392b;
}
#main #calendar .calendar-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #eee;
  text-align: center;
}
#main #calendar .calendar-footer p {
  margin: 0;
  font-size: 0.8rem;
  color: #555;
  line-height: 1.6;
}
#main #calendar .calendar-footer .calendar-note {
  color: #aaa;
  font-size: 0.75rem;
}
#main #shop .shop-info {
  max-width: 820px;
}
#main #shop .shop-info-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
#main #shop .shop-info-item:last-child {
  border-bottom: none;
}
#main #shop .shop-info-label {
  font-weight: 700;
}
#main .contact-form {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
}
#main .contact-form .required {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: #dc3545;
  border-radius: 999px;
  padding: 2px 8px;
  vertical-align: middle;
}
#main .contact-form .form-label {
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}
#main .contact-form .form-check {
  display: flex;
  align-items: center;
  gap: 8px;
}
#main .contact-form .form-control,
#main .contact-form .form-select {
  padding: 0.7rem 0.85rem;
  border-color: rgba(0, 0, 0, 0.2);
}
@media (max-width: 767.98px) {
  #main .contact-form .wpcf7-textarea {
    max-height: 300px;
  }
  #main .contact-form .wpcf7-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}

.gscollab-lp {
  padding: 80px 20px;
  background: #f8f8f8;
}
@media (max-width: 767.98px) {
  .gscollab-lp {
    padding: 56px 16px;
  }
}

.gscollab-inner {
  max-width: 960px;
  margin: 0 auto;
}

.gscollab-hero {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../image/seijo-kv-bg.webp") center/cover no-repeat;
  position: relative;
}
.gscollab-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.45);
}
.gscollab-hero > * {
  position: relative;
  z-index: 1;
}
.gscollab-hero__logos {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 767.98px) {
  .gscollab-hero__logos {
    gap: 16px;
  }
}
.gscollab-hero__icon {
  width: 96px;
  height: 96px;
}
@media (max-width: 767.98px) {
  .gscollab-hero__icon {
    width: 64px;
    height: 64px;
  }
}
.gscollab-hero__cross {
  font-size: 32px;
  font-weight: 700;
  color: #111;
}
@media (max-width: 767.98px) {
  .gscollab-hero__cross {
    font-size: 24px;
  }
}
.gscollab-hero__logo {
  height: 80px;
  width: auto;
}
@media (max-width: 767.98px) {
  .gscollab-hero__logo {
    height: 52px;
  }
}

.gscollab-catch {
  text-align: center;
  margin-bottom: 48px;
}
.gscollab-catch__title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
}
@media (max-width: 767.98px) {
  .gscollab-catch__title {
    font-size: 24px;
  }
}
.gscollab-catch__text {
  font-size: 16px;
  line-height: 2;
  color: #555;
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .gscollab-catch__text {
    font-size: 15px;
  }
}

.gscollab-heading {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .gscollab-heading {
    font-size: 22px;
  }
}

.gscollab-features {
  margin-bottom: 48px;
}
.gscollab-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 767.98px) {
  .gscollab-features__grid {
    grid-template-columns: 1fr;
  }
}
.gscollab-features__card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gscollab-features__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.gscollab-features__card i {
  font-size: 40px;
  color: #2d6a4f;
  margin-bottom: 16px;
  display: block;
}
.gscollab-features__card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}
.gscollab-features__card p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.gscollab-cta {
  text-align: center;
  background: linear-gradient(135deg, #2d6a4f, #40916c);
  border-radius: 20px;
  padding: 48px 32px;
}
@media (max-width: 767.98px) {
  .gscollab-cta {
    padding: 36px 20px;
    border-radius: 14px;
  }
}
.gscollab-cta__lead {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .gscollab-cta__lead {
    font-size: 18px;
  }
}

.gscollab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 999px;
  transition: 0.2s ease;
}
.gscollab-btn:hover {
  opacity: 0.85;
  color: #fff;
}
.gscollab-btn--lg {
  font-size: 18px;
  padding: 18px 40px;
  background: #fff;
  color: #2d6a4f;
}
.gscollab-btn--lg:hover {
  color: #2d6a4f;
  transform: scale(1.03);
}
@media (max-width: 767.98px) {
  .gscollab-btn {
    width: 100%;
    max-width: 320px;
    padding: 15px 24px;
    justify-content: center;
  }
}

.gscollab-note {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-top: 16px;
}

#shipping-service .table th {
  background: #f5f5f0;
  vertical-align: middle;
}
#shipping-service .table td {
  vertical-align: middle;
}
#shipping-service .table tbody tr:nth-child(odd) td {
  background: #fafaf7;
}
#shipping-service .table tbody tr:nth-child(even) td {
  background: #fff;
}
#shipping-service img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  #shipping-service img {
    max-height: 300px;
  }
}
