@charset "UTF-8";
/* 左から右に流れるアニメーション */
@-webkit-keyframes scrollLeft {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes scrollLeft {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
/*========== Colors ==========*/
:root {
  --color-blue: #0000ff;
  --color-blue-alpha: rgba(0, 0, 255, 0.8);
  --color-yellow: #ffff00;
  --color-white: #fff;
  --color-black: #000;
}

/*========== mixin ==========*/
:root {
  --min-width: 350;
  --max-width: 1000;
  --width-diff: calc(var(--max-width) - var(--min-width));
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  font-size: 1.4rem;
  line-height: 1.5;
}

@media screen and (min-width: 1000px) {
  .pp:hover {
    opacity: 0.8;
  }
}

.u-sp {
  display: none !important;
}
@media screen and (max-width: 999px) {
  .u-sp {
    display: block !important;
  }
}

@media screen and (max-width: 999px) {
  .u-pc {
    display: none !important;
  }
}

.u-over {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .u-over:hover {
    opacity: 0.7;
  }
}

.u-fade {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.u-fade.is-fade {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.u-fadeNext {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.u-fadeNext.is-fadeNext {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.u-imgCover {
  display: block;
  height: 0;
  padding-top: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          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 {
  -webkit-box-sizing: content-box;
          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: "Noto Sans", sans-serif, 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] {
  -webkit-text-decoration: underline dotted;
          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 */
  -moz-appearance: none;
       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 */
}

/**
 * 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;
}

/**
 * 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 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * 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;
}

.l-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 100vh;
  background-color: var(--color-blue);
  overflow: hidden;
  color: var(--color-white);
}

.l-header__inner {
  width: 100%;
  display: grid;
  grid-template-columns: 250px minmax(420px, 1200px) 390px;
  background-color: var(--color-blue);
  height: 100vh;
}

.l-header__left,
.l-header__right {
  height: 100vh;
  overflow-y: auto;
}

.l-header__center {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: 100vh;
  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;
}
.l-header__center section {
  padding: 60px 20px;
  width: 100%;
  max-width: 1000px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.main-col {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.main-kv__img img {
  width: 100%;
  height: calc(100vh - 40px);
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.9;
  display: block;
}

.scroll-banner {
  overflow: hidden;
  width: 100%;
  height: 40px;
  position: relative;
}

.scroll-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200%;
  -webkit-animation: scroll-left 8s linear infinite;
          animation: scroll-left 8s linear infinite;
}

.scroll-track img {
  height: 40px;
  width: min(99.18vw, 1305px);
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* シームレスループアニメーション */
@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.left-col {
  padding: 30px 0;
  text-align: center;
  color: #fff;
  margin-top: 200px;
}

.left-col a img {
  max-width: 140px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

/* ボタン */
.left-col .contact-info .btn {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--color-yellow);
  color: var(--color-blue);
  text-decoration: none;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

/* 電話番号 */
.left-col .contact-info .phone {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

/* 注意書き */
.left-col .contact-note {
  font-size: 9px;
  line-height: 1.6;
  text-align: left;
  margin: 0 20px 30px;
  margin-left: 40px;
}

/* SNSアイコン */
.left-col .home-bottom__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.left-col .home-bottom__sns li {
  width: 40px;
}

.left-col .home-bottom__sns li img {
  width: 100%;
  height: auto;
  display: block;
}

.main-col {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}
.main-col .main-visual {
  width: 100%;
  display: block;
}
.main-col section {
  padding: 60px 20px;
}

.right-col nav {
  padding: 0 3% 0 -20%;
}
.right-col nav ul {
  list-style: none;
}
.right-col nav ul li {
  margin-bottom: 10px;
  position: relative;
}
.right-col nav ul li::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
.right-col nav ul li a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-left: 40px;
}
.right-col nav ul li a:hover {
  text-decoration: underline;
}
.right-col .lineup {
  width: 155px;
  margin: 0 auto 20px;
}

.home-lnav__inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

@media screen and (max-width: 999px) {
  #footer {
    background-color: #fff;
    padding: 94px 0 150px;
    position: relative;
    z-index: 3;
  }
  .home {
    position: relative;
  }
  .main-col-sp {
    background-color: var(--color-blue);
    position: relative;
    padding: 0 0 20px;
  }
  .main-kv__img-sp img {
    margin-top: 10px;
    width: 100%;
    height: auto;
    display: block;
  }
  .scroll-banner {
    overflow: hidden;
    width: 100%;
    height: 40px;
    position: relative;
    background: var(--color-yellow);
    border: 2px solid var(--color-yellow);
  }
  .scroll-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 200%;
    -webkit-animation: scroll-left 8s linear infinite;
            animation: scroll-left 8s linear infinite;
  }
  .scroll-track img {
    margin-top: -0.5px;
    height: 40px;
    width: 50%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .home-bottom__cols {
    padding: 0 15px;
  }
  .home-lnav picture img {
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    margin-bottom: 30px;
  }
  .product-image_02 {
    position: absolute;
    display: block;
  }
  #event10 {
    margin-bottom: 30px;
  }
  .l-main .contact-info {
    text-align: center;
  }
  /* ボタン */
  .l-main .contact-info .btn {
    margin-top: 20px;
    display: inline-block;
    padding: 6px 40px;
    background-color: var(--color-yellow);
    color: var(--color-blue);
    text-decoration: none;
    border-radius: 50px;
    font-size: min(20vw, 20px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
  }
  /* 電話番号 */
  .l-main .contact-info .phone {
    font-size: min(20vw, 35px);
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--color-white);
  }
  /* 注意書き */
  .l-main .contact-note {
    display: block;
    padding: 0 10%;
    font-size: min(20vw, 13px);
    line-height: 1.6;
    margin: 0 auto;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
    max-width: 420px;
    color: var(--color-white);
    text-align: left;
  }
  .contact-note .indent {
    display: block;
    text-indent: -1em;
    padding-left: 1em;
  }
  .indent::before {
    content: "　"; /* 全角スペース1つ */
  }
  .main-col-sp {
    position: relative;
    background: var(--color-blue);
    padding: 0 0 100px 0;
    bottom: 0;
    z-index: -99;
  }
  .home-bottom {
    -webkit-transform: translateY(9%);
            transform: translateY(9%);
    margin-top: 100px;
    padding: 20px 0 80px 0;
    position: absolute;
    left: 0;
    width: 100%;
  }
  .home-bottom__cols {
    bottom: 0.5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 7%;
  }
  .home-bottom__cols li {
    text-indent: -1.5em;
    padding-left: 1.5em;
    font-size: 12px;
  }
  .home-bottom__cols li a {
    text-decoration: underline;
  }
  .home-bottom__logo {
    width: 11.375%;
  }
  .home-bottom__sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 48px;
    margin-top: 40px;
  }
  .home-bottom__sns li {
    width: 45px;
  }
  .pagetop {
    cursor: pointer;
    position: fixed;
    right: 15px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 100;
    opacity: 1;
  }
  .pagetop img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 50%;
  }
}
.indent {
  /* 通常は表示 */
  display: inline;
}

@media (min-width: 600px) {
  .indent {
    display: none; /* 600px以上で非表示 */
  }
}
.l-container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 999px) {
  .l-container {
    max-width: 520px;
  }
}

.right-col {
  padding: 46px 0 0;
}

.lineup {
  position: relative;
  left: 50px;
}

.right-col .lineup02 {
  display: inline-block;
  margin-top: 9px;
}

.right-col ul:nth-of-type(2) li:first-child {
  margin-top: 80px;
}

.right-col .start-btn {
  display: inline;
  position: relative;
}

.right-col ul.lineup01 {
  margin-top: 40px;
}

.right-col ul li {
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.right-col li::before {
  content: "";
  position: absolute;
  right: 40px;
  bottom: 0;
  margin: auto;
  top: auto;
  bottom: -7px;
  display: block;
  width: 80%;
  height: 2px;
  pointer-events: none;
  background-color: var(--color-yellow);
  z-index: 0;
}

.right-col ul li a {
  display: inline-block;
  padding-bottom: 2px;
  margin-bottom: 17px;
  overflow: visible;
}

.right-col ul li {
  position: relative;
}

.right-col li a {
  position: relative;
}

.right-col li a::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 10px;
  left: auto;
  right: 40px;
  display: block;
  width: 16px;
  height: 16px;
  background: url(../img/home/arrow_ll.svg) no-repeat center;
  background-size: contain;
  z-index: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.right-col ul li:nth-child(1) a::after {
  bottom: auto !important;
  top: 1px !important;
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
}

.right-col ul li:nth-last-child(2) a::after {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}

.right-col li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 55px;
  margin-bottom: 8px;
}

.right-col li a en {
  display: block;
  margin-right: 9px;
}

.right-col li a en {
  width: 41px;
}

.right-col ul li a .en {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1em;
}

.right-col ul li a {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.3em;
}

.lineup01.start-btn.btn {
  top: 50px;
  left: auto;
  right: 120px;
  display: inline-block;
  padding: 8px 15px;
  background-color: var(--color-yellow);
  color: var(--color-blue);
  text-decoration: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.lineup-group {
  position: relative;
  padding-top: 60px;
}
.lineup-group .lineup02.btn {
  position: absolute;
  top: 2px;
  right: 189px;
  padding: 8px 20px;
  background-color: var(--color-yellow);
  color: var(--color-blue);
  text-decoration: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0px;
}

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 40px 20px 0;
}

/* Default theme styles of the modal dialog */
.remodal {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 30px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  background: #fff;
  text-align: left;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  position: absolute;
  top: -35px;
  right: 0;
  display: block;
  overflow: visible;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before,
.remodal-close:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 1px;
  background-color: #fff;
}

.remodal-close:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.remodal-close:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/* Slider */
/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 1;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: #000;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: 25px;
}
.slick-prev:before {
  content: "＜";
}
[dir=rtl] .slick-prev:before {
  content: "＞";
}

.slick-next {
  right: 25px;
}
[dir=rtl] .slick-next {
  left: 25px;
  right: auto;
}
.slick-next:before {
  content: "＞";
}
[dir=rtl] .slick-next:before {
  content: "＜";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "●";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.home-inner {
  position: relative;
}
.home-toplogo {
  position: absolute;
  top: 0.7%;
  left: 46%;
  width: 8.3333%;
}
@media screen and (max-width: 999px) {
  .home-toplogo {
    width: 20%;
    left: 42%;
  }
}
.home-scroll {
  position: absolute;
  top: 8.8%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 10.1666%;
}
@media screen and (max-width: 999px) {
  .home-scroll {
    width: 24.4%;
  }
}
.home-scroll__inner {
  position: relative;
}
.home-scroll__inner img {
  -webkit-animation: scroll 1.5s infinite;
          animation: scroll 1.5s infinite;
}
.home-scroll__inner span {
  position: absolute;
  width: 16.39%;
  height: 58.92%;
  left: 41.8%;
  background-image: url(../img/home/scroll-arrow.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.home-scroll__inner span:first-of-type {
  bottom: -80%;
  -webkit-animation: scroll 1.5s 0.1s infinite;
          animation: scroll 1.5s 0.1s infinite;
}
.home-scroll__inner span:nth-of-type(2) {
  bottom: -150%;
  -webkit-animation: scroll 1.5s 0.2s infinite;
          animation: scroll 1.5s 0.2s infinite;
}
.home-scroll__inner span:nth-of-type(3) {
  bottom: -220%;
  -webkit-animation: scroll 1.5s 0.3s infinite;
          animation: scroll 1.5s 0.3s infinite;
}
.home-bottom {
  position: absolute;
  bottom: 0.5%;
  left: 0;
  width: 100%;
}
.home-bottom__cols {
  bottom: 0.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
}
.home-bottom__cols li {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.home-bottom__cols li a {
  text-decoration: underline;
}
.home-bottom__logo {
  width: 11.375%;
}
@media screen and (max-width: 999px) {
  .home-bottom__logo {
    width: 27.3%;
  }
}
.home-bottom__sns {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 48px;
  margin-top: 40px;
}
@media screen and (max-width: 999px) {
  .home-bottom__sns {
    margin-top: 20px;
  }
}
.home-bottom__sns li {
  width: 45px;
}
.home-end {
  position: absolute;
  width: 36.95%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 999px) {
  .home-end {
    width: 95%;
  }
}
.home-end.-n1 {
  top: 28%;
}
.home-end.-n2 {
  top: 40%;
}
.home-end.-n3 {
  top: 56%;
}
.home-end.-n4 {
  top: 73%;
}
.home-end.-n5 {
  top: 87%;
}

/* トップ固定バナー（SP用） */
.sp-banner {
  display: none;
}
@media screen and (max-width: 999px) {
  .sp-banner {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
  }
  .sp-banner img {
    width: 100%;
    display: block;
  }
}

.home-mainimg {
  display: block;
  width: 100%;
  margin-bottom: 75px;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}/*# sourceMappingURL=styles.css.map */