/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

body {
  color: #1a1a1a;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}

p,
a,
dt,
dd,
li,
th,
td {
  line-height: 2;
}

a {
  color: #1a1a1a;
}
a:hover {
  color: #1a1a1a;
}

body {
  overflow-x: hidden;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.logo {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 99999;
}

@keyframes fadeSlider1 {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeSlider2 {
  0% {
    opacity: 0;
  }
  45% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fv {
  height: 832px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .fv {
    height: auto;
  }
}
.fv .fv-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.fv .fv-slider .fv-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.fv .fv-slider .fv-slide.slide-1 {
  background-image: url(../../../images/bg01.webp);
  animation: fadeSlider1 8s infinite;
}
.fv .fv-slider .fv-slide.slide-2 {
  background-image: url(../../../images/bg02.webp);
  animation: fadeSlider2 8s infinite;
}
.fv > img {
  position: relative;
  z-index: 1;
  width: 703px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .fv > img {
    width: 100%;
    height: auto;
    margin-top: -90px;
  }
}
.fv .sp-bg {
  position: relative;
  width: 100%;
  height: 300px;
  display: none;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .fv .sp-bg {
    display: block;
  }
}
.fv .sp-bg .sp-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fv .sp-bg .sp-slider .sp-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.fv .sp-bg .sp-slider .sp-slide.slide-1 {
  background-image: url(../../../images/bg01.webp);
  animation: fadeSlider1 8s infinite;
}
.fv .sp-bg .sp-slider .sp-slide.slide-2 {
  background-image: url(../../../images/bg02.webp);
  animation: fadeSlider2 8s infinite;
}
.fv .list {
  position: relative;
  z-index: 2;
  display: flex;
  transform: translateY(-180px) translateX(140px);
  width: 800px;
}
@media screen and (max-width: 768px) {
  .fv .list {
    display: none;
  }
}
.fv .list li {
  width: 124px;
  height: 124px;
  margin-right: 10px;
}
.fv .list li img {
  width: 100%;
  height: 100%;
}

.cta {
  background: url(../../../images/cta_bg.webp) no-repeat center center/cover;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.cta .cta_text {
  width: 466.5px;
}
@media screen and (max-width: 768px) {
  .cta .cta_text {
    width: 335px;
  }
}
.cta .text {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.cta .cta_text_data {
  background: #fff;
  padding: 4px 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  border-radius: 4px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .cta .cta_text_data {
    font-size: 16px;
  }
}
.cta .cta_text_data span {
  color: #ff0000;
}
.cta .cta-limited {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 30px;
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
  padding: 0 40px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cta .cta-limited {
    font-size: 18px;
    margin: 0 0 30px 0;
    padding: 0 30px;
  }
}
.cta .cta-limited::before {
  content: "\\";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .cta .cta-limited::before {
    font-size: 22px;
  }
}
.cta .cta-limited::after {
  content: "/";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .cta .cta-limited::after {
    font-size: 22px;
  }
}
.cta .cta-list {
  display: flex;
  margin-top: 40px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .cta .cta-list {
    padding: 0 20px;
    flex-wrap: wrap;
  }
}
.cta .cta-list li {
  padding: 10px;
  background: #fff;
  margin-right: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.05em;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .cta .cta-list li {
    margin-bottom: 10px;
  }
}
.cta .cta-btn {
  background: linear-gradient(135deg, #99CC33, #33CC8A);
  font-size: 25px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  width: 372px;
  position: relative;
  line-height: 63px;
  padding-top: 15px;
  border-radius: 1000px;
  overflow: visible;
  animation: bounce 2s infinite;
}
@media screen and (max-width: 768px) {
  .cta .cta-btn {
    width: 335px;
  }
}
.cta .cta-btn::before {
  content: "";
  width: 11px;
  height: 21px;
  background: url(../../../images/icon.webp) no-repeat center/cover;
  display: block;
  position: absolute;
  right: 30px;
  top: calc(50% - 4px);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .cta .cta-btn::before {
    right: 20px;
  }
}
.cta .cta-btn span {
  display: inline-block;
  position: absolute;
  font-size: 15px;
  background: #fff;
  padding: 2px 14px;
  border-radius: 1000px;
  border: 1px solid #36CB86;
  color: #333333;
  line-height: 30px;
  top: -15px;
  left: calc(50% - 126px);
  z-index: 3;
}

.opening-campaign-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .opening-campaign-banner {
    bottom: 15px;
    right: 15px;
  }
}
.opening-campaign-banner .opening-campaign-content {
  display: block;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  padding: 20px;
  width: 320px;
  aspect-ratio: 16/9;
  overflow-y: auto;
  position: relative;
  z-index: 10001;
  animation: slideUp 0.3s ease-out;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .opening-campaign-banner .opening-campaign-content {
    width: 280px;
    padding: 15px;
  }
}
.opening-campaign-banner .opening-campaign-header {
  text-align: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f0f0f0;
}
.opening-campaign-banner .opening-campaign-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ff6b6b;
  margin-bottom: 6px;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .opening-campaign-banner .opening-campaign-header h3 {
    font-size: 16px;
  }
}
.opening-campaign-banner .opening-campaign-header .campaign-date {
  font-size: 11px;
  color: #ff8e53;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 142, 83, 0.1));
  padding: 4px 8px;
  border-radius: 20px;
  display: inline-block;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .opening-campaign-banner .opening-campaign-header .campaign-date {
    font-size: 10px;
    padding: 3px 6px;
  }
}
.opening-campaign-banner .opening-campaign-body .campaign-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .opening-campaign-banner .opening-campaign-body .campaign-subtitle {
    font-size: 13px;
    margin-bottom: 8px;
  }
}
.opening-campaign-banner .opening-campaign-body .campaign-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}
.opening-campaign-banner .opening-campaign-body .campaign-benefits li {
  font-size: 12px;
  color: #333;
  padding: 7px 10px;
  margin-bottom: 5px;
  background: linear-gradient(135deg, rgba(153, 204, 51, 0.1), rgba(51, 204, 138, 0.1));
  border-left: 3px solid #99CC33;
  border-radius: 5px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .opening-campaign-banner .opening-campaign-body .campaign-benefits li {
    font-size: 11px;
    padding: 6px 8px;
    margin-bottom: 4px;
  }
}
.opening-campaign-banner .opening-campaign-body .campaign-cta-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #99CC33, #33CC8A);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 8px 12px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(153, 204, 51, 0.3);
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .opening-campaign-banner .opening-campaign-body .campaign-cta-btn {
    font-size: 11px;
    padding: 7px 10px;
  }
}
.opening-campaign-banner .opening-campaign-body .campaign-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(153, 204, 51, 0.4);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.6);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.open-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9998;
  width: 490px;
}
@media screen and (max-width: 768px) {
  .open-banner {
    display: none;
  }
}
.open-banner .open-banner-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  background: #ff0000;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}
.open-banner .open-banner-close:hover {
  background: #cc0000;
  transform: scale(1.1);
}
.open-banner img {
  display: block;
  width: 100%;
  height: auto;
}
.open-banner .openbanner {
  background: url(../../../images/bg_banner.png) no-repeat center/cover;
  border-radius: 10px;
  padding-top: 17px;
  padding-bottom: 17px;
}
.open-banner .openbanner .flag {
  width: 100px;
  height: 75px;
  object-fit: cover;
  position: absolute;
  top: 0;
}
.open-banner .openbanner .flag.left {
  left: 0;
}
.open-banner .openbanner .flag.right {
  right: 0;
}
.open-banner .openbanner .wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.open-banner .openbanner .wrap .ttl {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  margin-top: 10px;
}
.open-banner .openbanner .data {
  background: #1f9d97;
  display: inline-block;
  padding: 5px 10px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  border-radius: 4px;
}
.open-banner .openbanner .list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 415px;
  margin: 0 auto;
}
.open-banner .openbanner .list .tag {
  font-size: 14px;
  font-weight: 700;
  padding: 5px 10px;
  background: #D06060;
  color: #fff;
  border-radius: 4px;
  margin-right: 10px;
}
.open-banner .openbanner .list li {
  font-size: 24px;
  margin: 5px 0;
  color: #fff;
  font-weight: 700;
}
.open-banner .openbanner .yellow {
  color: #F5D724;
}
.open-banner .openbanner .hightlight {
  background: linear-gradient(180deg, transparent 55%, rgba(26, 158, 123, 0.45) 55%);
  padding: 0 2px;
}
.open-banner .openbanner .big {
  font-size: 46px;
  line-height: 1;
}

.open-banner-sp {
  display: none;
  width: 100%;
  margin-bottom: 0;
  padding: 15px;
  background: #EEF2E7;
}
@media screen and (max-width: 768px) {
  .open-banner-sp {
    display: block;
  }
}
.open-banner-sp .openbanner {
  position: relative;
  background: url(../../../images/bg_banner.png) no-repeat center/cover;
  border-radius: 10px;
  padding: 12px 10px 12px 10px;
  min-height: 120px;
}
.open-banner-sp .openbanner .wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.open-banner-sp .openbanner .wrap .data {
  background: #1f9d97;
  display: inline-block;
  padding: 3px 8px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  border-radius: 4px;
}
.open-banner-sp .openbanner .wrap .ttl {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  margin-top: 6px;
}
.open-banner-sp .openbanner .list {
  list-style: none;
  margin: 8px auto 0;
  padding: 0;
  width: 100%;
  max-width: 280px;
}
.open-banner-sp .openbanner .list .tag {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  background: #D06060;
  color: #fff;
  border-radius: 4px;
  margin-right: 6px;
}
.open-banner-sp .openbanner .list li {
  font-size: 14px;
  margin: 4px 0;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
}
.open-banner-sp .openbanner .list .yellow {
  color: #F5D724;
}
.open-banner-sp .openbanner .list .hightlight {
  background: linear-gradient(180deg, transparent 55%, rgba(26, 158, 123, 0.45) 55%);
  padding: 0 1px;
}
.open-banner-sp .openbanner .list .big {
  font-size: 22px;
  line-height: 1;
}
.open-banner-sp .openbanner .flag {
  width: 50px;
  height: 38px;
  object-fit: cover;
  position: absolute;
  top: 0;
}
.open-banner-sp .openbanner .flag.left {
  left: 0;
}
.open-banner-sp .openbanner .flag.right {
  right: 0;
}

.cta-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  animation: bounce 2s infinite;
  transition: bottom 0.3s ease;
  display: none;
}
@media screen and (max-width: 768px) {
  .cta-floating {
    bottom: 15px;
    right: 15px;
    display: block;
  }
}
.cta-floating .cta-floating-btn {
  background: linear-gradient(135deg, #99CC33, #33CC8A);
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  width: 280px;
  position: relative;
  line-height: 50px;
  padding: 10px 20px;
  border-radius: 1000px;
  display: block;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .cta-floating .cta-floating-btn {
    width: 260px;
    font-size: 18px;
    line-height: 45px;
    padding: 8px 15px;
  }
}
.cta-floating .cta-floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.cta-floating .cta-floating-btn::before {
  content: "";
  width: 9px;
  height: 17px;
  background: url(../../../images/icon.webp) no-repeat center/cover;
  display: block;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .cta-floating .cta-floating-btn::before {
    width: 8px;
    height: 15px;
    right: 20px;
  }
}
.cta-floating .cta-floating-btn span {
  display: inline-block;
  position: absolute;
  font-size: 12px;
  background: #fff;
  padding: 2px 10px;
  border-radius: 1000px;
  border: 1px solid #36CB86;
  color: #333333;
  line-height: 22px;
  top: -12px;
  left: calc(50% - 100px);
  z-index: 3;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .cta-floating .cta-floating-btn span {
    font-size: 10px;
    padding: 1px 8px;
    line-height: 18px;
    top: -10px;
    left: calc(50% - 80px);
  }
}

.cta-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.cta-popup.active {
  display: flex;
}
.cta-popup .cta-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.cta-popup .cta-popup-content {
  position: relative;
  background: #fff;
  border-radius: 10px;
  width: 90%;
  max-width: 800px;
  padding: 40px;
  z-index: 10001;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .cta-popup .cta-popup-content {
    width: 95%;
    padding: 30px 20px;
  }
}
.cta-popup .cta-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  border: none;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .cta-popup .cta-popup-close {
    width: 35px;
    height: 35px;
    font-size: 24px;
    top: 10px;
    right: 10px;
  }
}
.cta-popup .cta-popup-close:hover {
  background: #e0e0e0;
}
.cta-popup .cta-popup-body {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .cta-popup .cta-popup-body {
    flex-direction: column;
    gap: 30px;
  }
}
.cta-popup .cta-popup-left {
  flex: 1;
}
.cta-popup .cta-popup-left .cta-popup-shop {
  font-size: 24px;
  font-weight: 700;
  color: #3B6C68;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .cta-popup .cta-popup-left .cta-popup-shop {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.cta-popup .cta-popup-left .cta-popup-address .address {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .cta-popup .cta-popup-left .cta-popup-address .address {
    font-size: 14px;
  }
}
.cta-popup .cta-popup-left .cta-popup-address .access {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .cta-popup .cta-popup-left .cta-popup-address .access {
    font-size: 14px;
  }
}
.cta-popup .cta-popup-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .cta-popup .cta-popup-right {
    width: 100%;
  }
}
.cta-popup .cta-popup-right .cta-popup-btn {
  background: linear-gradient(135deg, #99CC33, #33CC8A);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 15px 40px;
  border-radius: 1000px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .cta-popup .cta-popup-right .cta-popup-btn {
    font-size: 16px;
    padding: 12px 30px;
    width: 100%;
    text-align: center;
  }
}
.cta-popup .cta-popup-right .cta-popup-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(153, 204, 51, 0.3);
}

.nayami {
  margin-bottom: 100px;
}
.nayami img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .nayami {
    margin-bottom: 50px;
  }
}

.point {
  width: 1000px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 768px) {
  .point {
    width: 100%;
    margin: 0 auto 50px;
  }
}
.point .txt_sp {
  padding: 0 20px;
}
.point img {
  width: 100%;
  margin-bottom: 40px;
}

.voice {
  background: url(../../../images/voice_bg.webp) no-repeat center center/cover;
  padding: 100px 0;
}
.voice .container {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .voice .container {
    width: 100%;
  }
}
.voice h2 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .voice h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
.voice h2 span {
  display: block;
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .voice h2 span {
    font-size: 14px;
  }
}
.voice .voice-swiper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 60px;
}
@media screen and (max-width: 768px) {
  .voice .voice-swiper {
    padding: 0 50px;
  }
}
.voice .voice-swiper-next,
.voice .voice-swiper-prev {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #99CC33;
  border-radius: 50%;
  color: #99CC33;
  transition: all 0.3s;
}
.voice .voice-swiper-next:hover,
.voice .voice-swiper-prev:hover {
  background: #99CC33;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .voice .voice-swiper-next,
  .voice .voice-swiper-prev {
    width: 40px;
    height: 40px;
  }
}
.voice .voice-swiper-next::after,
.voice .voice-swiper-prev::after {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .voice .voice-swiper-next::after,
  .voice .voice-swiper-prev::after {
    font-size: 16px;
  }
}
.voice .voice-swiper-prev {
  left: 0;
}
.voice .voice-swiper-next {
  right: 0;
}
.voice .swiper-slide .content {
  padding: 30px;
  background: #EEF2E7;
  border-radius: 10px;
  width: 100%;
  box-sizing: border-box;
}
.voice .swiper-slide .content .name {
  font-size: 31px;
  letter-spacing: 0.1em;
  color: #333;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .voice .swiper-slide .content .name {
    font-size: 24px;
  }
}
.voice .swiper-slide .content .name span {
  font-size: 14px;
  letter-spacing: 0;
}
.voice .swiper-slide .content .ttl {
  font-size: 22px;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #333;
}
@media screen and (max-width: 768px) {
  .voice .swiper-slide .content .ttl {
    font-size: 16px;
  }
}
.voice .swiper-slide .content .read {
  font-size: 14px;
  color: #333;
}
.voice .swiper-slide .content .read mark {
  background: linear-gradient(135deg, rgba(153, 204, 51, 0.3), rgba(51, 204, 138, 0.3));
  color: #333;
  padding: 2px 4px;
  border-radius: 3px;
  font-weight: 700;
}

.readmore {
  width: 500px;
  margin: 0 auto;
  background: linear-gradient(135deg, #99CC33, #33CC8A);
  font-size: 22px;
  letter-spacing: 0.05em;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 30px 0;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s;
  border: 2px solid transparent;
}
@media screen and (max-width: 768px) {
  .readmore {
    width: 100%;
    font-size: 18px;
  }
}
.readmore span {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}
.readmore:hover {
  background: #fff;
  color: #99CC33;
  border: 2px solid #99CC33;
}

.price {
  padding: 60px 0;
  background: #EEF2E7;
}
.price .text {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.price .container {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .price .container {
    width: 100%;
    padding: 0 20px;
  }
}
.price h2 {
  font-size: 38px;
  font-weight: 700;
  color: #3B6C68;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .price h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
.price h2 span {
  display: block;
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .price h2 span {
    font-size: 14px;
  }
}
.price .price-tab {
  display: flex;
  align-items: flex-end;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .price .price-tab {
    margin-bottom: 20px;
  }
}
.price .price-tab li {
  width: 500px;
  text-align: center;
  font-size: 26px;
  background: #D9D9D9;
  padding: 10px 0;
  border-radius: 10px 10px 0 0;
  color: #828282;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .price .price-tab li {
    font-size: 16px;
  }
}
.price .price-tab li.active {
  padding: 25px 0;
  background: linear-gradient(135deg, #99CC33, #33CC8A);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .price .price-tab li.active {
    font-size: 18px;
    padding: 15px 0;
  }
}
.price .price-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.price .price-list:not(.active) {
  display: none;
}
.price .price-list li {
  width: 480px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .price .price-list li {
    width: 100%;
    margin-bottom: 10px;
  }
}
.price .price-list li img {
  width: 480px;
}
@media screen and (max-width: 768px) {
  .price .price-list li img {
    width: 100%;
  }
}
.price .price-notes {
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .price .price-notes {
    margin-top: 15px;
    margin-bottom: 8px;
  }
}
.price .price-notes:not(.active) {
  display: none;
}
.price .price-notes .note-item {
  display: inline-block;
  font-size: 12px;
  color: #666;
  margin: 0 10px 5px 0;
}
@media screen and (max-width: 768px) {
  .price .price-notes .note-item {
    font-size: 10px;
    margin: 0 5px 3px 0;
  }
}
.price .text {
  font-size: 16px;
  text-align: center;
}
.price .price-banner {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .price .price-banner {
    margin-top: 30px;
    padding: 0 20px;
  }
}
.price .price-banner .openbanner--price {
  position: relative;
  display: inline-block;
  background: url(../../../images/bg_banner.png) no-repeat center/cover;
  border-radius: 10px;
  padding: 17px 60px 17px 60px;
  min-height: 80px;
  box-sizing: border-box;
}
.price .price-banner .openbanner--price .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.price .price-banner .openbanner--price .data {
  background: #1f9d97;
  display: inline-block;
  padding: 5px 10px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  border-radius: 4px;
}
.price .price-banner .openbanner--price .campaign-txt {
  margin: 10px 0 0;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.5;
}
.price .price-banner .openbanner--price .campaign-txt .yellow {
  color: #F5D724;
}
.price .price-banner .openbanner--price .campaign-txt .hightlight {
  background: linear-gradient(180deg, transparent 55%, rgba(26, 158, 123, 0.45) 55%);
  padding: 0 2px;
}
.price .price-banner .openbanner--price .campaign-txt .big {
  font-size: 46px;
  line-height: 1;
}
.price .price-banner .openbanner--price .flag {
  width: 100px;
  height: 75px;
  object-fit: cover;
  position: absolute;
  top: 0;
}
.price .price-banner .openbanner--price .flag.left {
  left: 0;
}
.price .price-banner .openbanner--price .flag.right {
  right: 0;
}
@media screen and (max-width: 768px) {
  .price .price-banner .openbanner--price {
    padding: 12px 45px 12px 45px;
    min-height: 70px;
  }
  .price .price-banner .openbanner--price .data {
    font-size: 11px;
    padding: 3px 8px;
  }
  .price .price-banner .openbanner--price .campaign-txt {
    font-size: 16px;
    margin-top: 6px;
  }
  .price .price-banner .openbanner--price .campaign-txt .big {
    font-size: 28px;
  }
  .price .price-banner .openbanner--price .flag {
    width: 50px;
    height: 38px;
  }
}

.shop {
  padding: 60px 0;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .shop {
    padding: 60px 20px;
  }
}
.shop .group-ttl {
  font-size: 20px;
  color: #3B6C68;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .shop .group-ttl {
    font-size: 16px;
  }
}
.shop .container {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .shop .container {
    width: 100%;
  }
}
.shop h2 {
  font-size: 38px;
  font-weight: 700;
  color: #3B6C68;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .shop h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
.shop h2 span {
  display: block;
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .shop h2 span {
    font-size: 14px;
  }
}
.shop .shop-list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .shop .shop-list {
    flex-direction: column;
  }
}
.shop .shop-list li {
  width: 320px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .shop .shop-list li {
    width: 100%;
  }
}
.shop .shop-list li .ttl {
  font-size: 19px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #3B6C68;
  margin-bottom: 20px;
}
.shop .shop-list li .ttl img {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.shop .shop-list li .ttl span {
  font-size: 12px;
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  .shop .shop-list li .ttl span {
    font-size: 14px;
  }
}
.shop .shop-list li > img {
  width: 100%;
}
.shop .shop-list li iframe {
  margin-bottom: 20px;
  height: 240px;
  width: 100%;
}
.shop .shop-list li .read {
  line-height: 1.5;
}
.shop .shop-list li.shop-toggle-wrapper {
  display: none;
}
@media screen and (max-width: 768px) {
  .shop .shop-list li.shop-toggle-wrapper {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
}
.shop .shop-list li.shop-toggle-wrapper .shop-toggle {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 8px 0;
  background: linear-gradient(135deg, #99CC33, #33CC8A);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}
.shop .shop-list li.shop-toggle-wrapper .shop-toggle:hover {
  opacity: 0.9;
}
.shop .shop-list li.shop-accordion-item {
  display: block;
}
@media screen and (max-width: 768px) {
  .shop .shop-list li.shop-accordion-item {
    display: none;
  }
}
.shop .shop-list li.shop-accordion-item .comingsoon-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
}
@media screen and (max-width: 768px) {
  .shop.active .shop-list li.shop-accordion-item {
    display: block !important;
  }
}

footer {
  background: #333333;
  padding: 30px 0;
}
footer .container {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer .container {
    width: 100%;
    flex-direction: column;
  }
}
footer a {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  footer a {
    margin-top: 20px;
  }
}

/*# sourceMappingURL=index.css.map */
