@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
figure,
figcaption,
blockquote,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  width: 100%;
  display: block;
  border: 0;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

* {
  margin: 0;
  padding: 0;
}

/* ------------------------------------------------
共通
------------------------------------------------ */
html {
  font-size: 62.5%;
}

body {
  color: #333333;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, "MS PGothic", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  background: #ffffff;
  overflow-x: hidden;
  min-height: 100%;
}
body.no-scroll {
  overflow: hidden;
}

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

@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

.inline-block {
  display: inline-block;
}

a {
  color: #333333;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover {
  opacity: 0.85;
}
a:focus {
  opacity: 0.85;
}
a:active {
  opacity: 0.85;
}

/* ------------------------------------------------
メインイメージ
------------------------------------------------ */
.keyvisual {
  width: 100%;
  margin: 0 auto 16px;
}
@media screen and (min-width: 992px) {
  .keyvisual {
    margin: 0 auto 37px;
  }
}
.keyvisual__item {
  width: 100%;
  height: 0;
  padding-top: 100%;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 992px) {
  .keyvisual__item {
    padding-top: 50%;
  }
}
.keyvisual__img img {
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

/* ------------------------------------------------
トップページ
------------------------------------------------ */
.top-content {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .top-content {
    max-width: 1130px;
    margin-right: auto;
    margin-left: auto;
  }
}
.top-content__title {
  color: #000000;
  font-size: 2.5rem;
  font-family: "Impact", "Arial", sans-serif;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .top-content__title {
    font-size: 3rem;
  }
}
.top-content__title-ja {
  display: inline-block;
  color: #a5a5a5;
  font-size: 1.1rem;
  margin-left: 3.5px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .top-content__title-ja {
    font-size: 1.2rem;
    margin-left: 16px;
  }
}
.top-content__text {
  font-size: 1.3rem;
  line-height: 1.3461538462;
  margin-bottom: 13px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .top-content__text {
    font-size: 2rem;
    line-height: 1.35;
  }
}
.top-content__text-detail {
  font-size: 1.2rem;
  line-height: 1.6666666667;
  margin-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .top-content__text-detail {
    font-size: 1.6rem;
    line-height: 2.125;
    margin-bottom: 26px;
  }
}

.top-content-title02 {
  text-align: center;
  margin-bottom: 17.5px;
}
.top-content-title02__ja {
  display: block;
  margin-left: 0;
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .top-content-title02__ja {
    margin-top: 5px;
  }
}

.top-content-head {
  margin-bottom: 17px;
}
@media screen and (min-width: 768px) {
  .top-content-head {
    margin-bottom: 42px;
  }
}
@media screen and (min-width: 768px) {
  .top-content-head__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.top-news {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .top-news {
    width: 63.6363636364%;
    margin-right: 3.6036036036%;
  }
}
.top-news__title {
  width: 100%;
  padding: 5px;
  font-size: 2.5rem;
  text-align: center;
  font-family: "Impact", "Arial", sans-serif;
  background: #333333;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .top-news__title {
    padding: 11px 11px 13px;
    font-size: 3rem;
  }
}
.top-news__list {
  width: 100%;
}
.top-news__term {
  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;
  width: 100%;
  border-bottom: 1px solid #B0B0B0;
  cursor: pointer;
  padding: 10.5px 10px 11.7px 6.5px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-news__term {
    padding: 25px 43px 25px 32px;
  }
}
.top-news__term.active::after {
  content: "－";
}
.top-news__term:hover, .top-news__term:focus, .top-news__term:active {
  opacity: 0.85;
}
.top-news__term::after {
  content: "＋";
  -webkit-transition: 0.25s;
  transition: 0.25s;
  position: absolute;
  font-size: 1rem;
  top: 50%;
  right: 10px;
  width: 15px;
  height: 15px;
  color: #ffffff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  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;
  border-radius: 2em;
  background: #A9A9A9;
}
@media screen and (min-width: 768px) {
  .top-news__term::after {
    font-size: 2rem;
    right: 43px;
    width: 30px;
    height: 30px;
  }
}
.top-news__date {
  -ms-flex-preferred-size: 52px;
      flex-basis: 52px;
  margin-right: 22.5px;
  font-size: 1.1rem;
  line-height: 1.3636363636;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .top-news__date {
    -ms-flex-preferred-size: 57px;
        flex-basis: 57px;
    font-size: 1.2rem;
    line-height: 1.3333333333;
  }
}
.top-news__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  font-size: 1.2rem;
  line-height: 1.3333333333;
  padding: 0 10px 0 14px;
  position: relative;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .top-news__text {
    font-size: 1.5rem;
    line-height: 1.3333333333;
    padding: 0 73px 0 19px;
  }
}
.top-news__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 2.5px solid transparent;
  border-bottom: 2.5px solid transparent;
  border-left: 5px solid #707070;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .top-news__text::after {
    border-top: 3.5px solid transparent;
    border-bottom: 3.5px solid transparent;
    border-left: 7.6px solid #707070;
  }
}
.top-news__description {
  width: 100%;
  font-size: 1.2rem;
  line-height: 1.3333333333;
  padding: 10.5px 10px 11.7px 6.5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px solid #B0B0B0;
}
@media screen and (min-width: 768px) {
  .top-news__description {
    font-size: 1.5rem;
    line-height: 1.3333333333;
    padding: 25px 43px 25px 32px;
  }
}

@media screen and (min-width: 768px) {
  .top-reserve {
    width: 32.7272727273%;
  }
}
.top-reserve__inner {
  background: #B9B9B9;
}
.top-reserve__title {
  width: 100%;
  padding: 5px;
  font-size: 2.5rem;
  text-align: center;
  font-family: "Impact", "Arial", sans-serif;
  background: #333333;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .top-reserve__title {
    padding: 11px 11px 13px;
    font-size: 3rem;
  }
}
.top-reserve__form {
  padding: 11px 15px 19px;
}
@media screen and (min-width: 768px) {
  .top-reserve__form {
    padding: 23px 22px 27px;
  }
}
.top-reserve__table {
  width: 100%;
}
.top-reserve-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 13px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-reserve-row {
    margin-bottom: 23px;
  }
}
.top-reserve-row:last-child {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .top-reserve-row:last-child {
    margin-bottom: 23px;
  }
}
.top-reserve-head {
  width: 100%;
  text-align: left;
  padding: 0;
  margin-bottom: 5px;
  font-size: 1.3rem;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .top-reserve-head {
    margin-bottom: 6px;
    font-size: 1.5rem;
  }
}
.top-reserve-data {
  width: 100%;
  padding: 0;
  position: relative;
}
.top-reserve-data input::-webkit-input-placeholder {
  color: #7e7e7e;
}
.top-reserve-data input::-moz-placeholder {
  color: #7e7e7e;
}
.top-reserve-data input:-ms-input-placeholder {
  color: #7e7e7e;
}
.top-reserve-data input::-ms-input-placeholder {
  color: #7e7e7e;
}
.top-reserve-data input::placeholder {
  color: #7e7e7e;
}
.top-reserve input[type=text] {
  width: 100%;
  padding: 11.6px 11.6px 11px;
  height: 40px;
  border: none;
  border-radius: 0;
  font-size: 1.3rem;
  line-height: 1.3461538462;
  outline: none;
  cursor: pointer;
  color: #7e7e7e;
}
@media screen and (min-width: 768px) {
  .top-reserve input[type=text] {
    padding: 13px 20px 12px;
    height: 45px;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    border-radius: 0;
  }
}
.top-reserve__submit {
  text-align: center;
}
.top-reserve__submit input[type=submit] {
  background: #333333;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid transparent;
  border-radius: 2px;
  color: #ffffff;
  font-size: 1.3rem;
  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;
  width: 100%;
  height: 43.5px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  outline: none;
  cursor: pointer;
  font-weight: 600;
}
.top-reserve__submit input[type=submit]:hover, .top-reserve__submit input[type=submit]:focus, .top-reserve__submit input[type=submit]:active {
  background: #ffffff;
  color: #333333;
  border: 1px solid #333333;
}
@media screen and (min-width: 768px) {
  .top-reserve__submit input[type=submit] {
    font-size: 1.6rem;
    height: 54px;
    border-radius: 4px;
  }
}

.top-reserve-data__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.top-reserve-data__inner::after {
  content: "～";
  font-size: 1.5rem;
  width: 15px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.top-reserve-data__select-wrapper {
  width: 44.2307692308%;
  height: 40px;
  position: relative;
}
.top-reserve-data__select-wrapper::after {
  border-top: 10px solid #333333;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
}
.top-reserve-data__select {
  width: 100%;
  padding: 11.6px 11.6px 11px;
  height: 100%;
  border: none;
  border-radius: 0;
  font-size: 1.3rem;
  line-height: 1.3461538462;
  outline: none;
  background: #ffffff;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #7e7e7e;
}
@media screen and (min-width: 768px) {
  .top-reserve-data__select {
    font-size: 1.5rem;
  }
}
.top-reserve-data__option {
  border: none;
  border-radius: 0;
  font-size: 1.3rem;
  line-height: 1.3461538462;
  outline: none;
  cursor: pointer;
}
.top-reserve-data__option::-webkit-input-placeholder {
  color: #7e7e7e;
}
.top-reserve-data__option::-moz-placeholder {
  color: #7e7e7e;
}
.top-reserve-data__option:-ms-input-placeholder {
  color: #7e7e7e;
}
.top-reserve-data__option::-ms-input-placeholder {
  color: #7e7e7e;
}
.top-reserve-data__option::placeholder {
  color: #7e7e7e;
}
@media screen and (min-width: 768px) {
  .top-reserve-data__option {
    font-size: 1.5rem;
  }
}

.ui-datepicker-trigger {
  width: 21px;
  height: auto;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 12px;
  outline: none;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .ui-datepicker-trigger {
    width: 22px;
    height: 25px;
    right: 10px;
  }
}

.top-equipment {
  background: #ebebeb;
}
@media screen and (min-width: 768px) {
  .top-equipment {
    max-width: none;
  }
}
.top-equipment__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  padding: 28px 0;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .top-equipment__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    max-width: 1100px;
    padding: 42px 0;
    margin: 0 auto 54px;
  }
}
@media screen and (min-width: 768px) {
  .top-equipment__content {
    -ms-flex-preferred-size: 460px;
        flex-basis: 460px;
    margin-left: 4.0540540541%;
  }
}
.top-equipment__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
  margin-bottom: 26px;
}
@media screen and (min-width: 768px) {
  .top-equipment__list {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    gap: 15px;
    width: auto;
    margin-bottom: 0;
  }
}

.button-type01 {
  text-align: center;
}
.button-type01 a {
  display: inline-block;
  width: 250px;
  max-width: 100%;
  background: #333333;
  border: 1px solid #333333;
  border-radius: 1.5px;
  font-size: 1.3rem;
  padding: 11.5px 11px;
  color: #ffffff;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .button-type01 a {
    font-size: 2rem;
    width: 400px;
    border-radius: 3px;
    padding: 15px 15px 18px;
  }
}
.button-type01 a:hover, .button-type01 a:focus, .button-type01 a:active {
  opacity: 1;
  border: 1px solid #333333;
  background: #ffffff;
  color: #333333;
}

.top-system {
  padding: 0px;
  margin-bottom: 21px;
}
@media screen and (min-width: 768px) {
  .top-system {
    max-width: none;
    margin-bottom: 41px;
  }
}
.top-system__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.top-system__content {
  width: 100%;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .top-system__content {
    text-align: center;
  }
}
.top-system .top-system__list {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .top-system .top-system__list {
    margin-bottom: 30px;
  }
}
.top-system__item {
  padding-right: 7.5px;
  padding-left: 7.5px;
}
@media screen and (min-width: 768px) {
  .top-system__item {
    padding-right: 23.5px;
    padding-left: 23.5px;
  }
}
.top-system__item img {
  height: 40.15625vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .top-system__item img {
    height: 33.515625vw;
  }
}

.guide {
  background: #ebebeb;
  padding: 18.5px 15px 25px;
}
@media screen and (min-width: 768px) {
  .guide {
    max-width: none;
    padding: 42px 15px 47px;
  }
}
.guide__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  padding: 17px 25px 15px;
  background: #ffffff;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .guide__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    max-width: 880px;
    margin: 0 auto 38px;
    padding: 29px 58px 29px 29px;
  }
}
.guide__content {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .guide__content {
    width: auto;
    -ms-flex-preferred-size: 355px;
        flex-basis: 355px;
    margin-left: 4.0540540541%;
  }
}
.guide__title {
  font-size: 1.5rem;
  font-family: "Impact", "Arial", sans-serif;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .guide__title {
    font-size: 2.4rem;
    margin-bottom: 13px;
  }
}
.guide__sub-title {
  display: inline-block;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, "MS PGothic", sans-serif;
  margin-left: 7.5px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .guide__sub-title {
    margin-left: 13px;
  }
}
.guide__nav-link {
  text-align: right;
}
.guide__nav-link a {
  display: inline-block;
  font-size: 1.3rem;
  font-family: "Impact", "Arial", sans-serif;
  color: #b4b4b4;
}
@media screen and (min-width: 768px) {
  .guide__nav-link a {
    font-size: 1.8rem;
  }
}
.guide__img {
  width: 100%;
  margin-bottom: 13.5px;
}
@media screen and (min-width: 768px) {
  .guide__img {
    margin-bottom: 0px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
}
.guide__text {
  font-size: 1.5rem;
  line-height: 1.8666666667;
  font-weight: 300;
  margin-bottom: 16px;
}

.link-underline {
  text-decoration: underline;
}
.link-underline:hover, .link-underline:focus, .link-underline:active {
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .pc-text-center {
    text-align: center;
  }
}

.faq {
  background: #333333;
  padding: 17.5px 18.5px;
}
@media screen and (min-width: 768px) {
  .faq {
    max-width: none;
    padding: 50px 15px 55px;
  }
}
@media screen and (min-width: 768px) {
  .faq__inner {
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
  }
}
.faq__list {
  width: 100%;
  margin-bottom: 3px;
}
@media screen and (min-width: 768px) {
  .faq__list {
    margin-bottom: 4px;
  }
}
.faq__list:last-of-type {
  margin-bottom: 12.5px;
}
@media screen and (min-width: 768px) {
  .faq__list:last-of-type {
    margin-bottom: 42px;
  }
}
.faq__term {
  font-size: 1.1rem;
  line-height: 1.5454545455;
  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;
  width: 100%;
  cursor: pointer;
  position: relative;
  background: #707070;
  margin-bottom: 1px;
}
@media screen and (min-width: 768px) {
  .faq__term {
    font-size: 1.6rem;
    line-height: 2.125;
  }
}
.faq__term.active::after {
  content: "－";
}
.faq__term:hover, .faq__term:focus, .faq__term:active {
  opacity: 0.85;
}
.faq__term::after {
  content: "＋";
  -webkit-transition: 0.25s;
  transition: 0.25s;
  position: absolute;
  font-size: 2rem;
  top: 50%;
  right: 10px;
  width: 10.5px;
  height: 24px;
  color: #707070;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  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;
}
@media screen and (min-width: 768px) {
  .faq__term::after {
    font-size: 2.4rem;
    right: 17px;
    width: 13px;
    height: 29px;
  }
}
.faq__text {
  padding: 11.5px 21px 11px 9px;
  background: #ebebeb;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .faq__text {
    padding: 12px 30px 8px 22px;
  }
}
.faq__text--description {
  padding: 12px 21px 10px 1em;
  text-indent: -1em;
  background: transparent;
}
@media screen and (min-width: 768px) {
  .faq__text--description {
    padding: 12px 0 10px 1em;
  }
}
.faq__icon-q {
  -ms-flex-preferred-size: 25px;
      flex-basis: 25px;
  height: 100%;
  color: #ffffff;
  font-size: 1.5rem;
  font-family: "Impact", "Arial", sans-serif;
  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;
}
@media screen and (min-width: 768px) {
  .faq__icon-q {
    -ms-flex-preferred-size: 45px;
        flex-basis: 45px;
    font-size: 2.5rem;
  }
}
.faq__description {
  font-size: 1.1rem;
  line-height: 1.5454545455;
  display: block;
  width: 100%;
  cursor: pointer;
  position: relative;
  color: #ffffff;
  background: transparent;
  padding-left: 25px;
}
@media screen and (min-width: 768px) {
  .faq__description {
    max-width: 610px;
    margin: 0 auto;
    padding: 0;
    font-size: 1.5rem;
    line-height: 1.4666666667;
    font-weight: 300;
  }
}
.faq__icon-a {
  -ms-flex-preferred-size: 25px;
      flex-basis: 25px;
  height: 100%;
  color: #ffffff;
  font-size: 1.5rem;
  font-family: "Impact", "Arial", sans-serif;
  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;
}
@media screen and (min-width: 768px) {
  .faq__icon-a {
    -ms-flex-preferred-size: 45px;
        flex-basis: 45px;
    font-size: 2.5rem;
  }
}

.color-white {
  color: #ffffff;
}

.button-type01--caution a {
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 1.5px;
  font-size: 1.3rem;
  padding: 11.5px 11px;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .button-type01--caution a {
    font-size: 2rem;
    width: 400px;
    border-radius: 3px;
    padding: 15px 15px 18px;
  }
}
.button-type01--caution a:hover, .button-type01--caution a:focus, .button-type01--caution a:active {
  opacity: 1;
  border: 1px solid #ffffff;
  background: #333333;
  color: #ffffff;
}

@media screen and (min-width: 768px) {
  .top-access {
    max-width: 894px;
    margin: 40px auto 37px;
  }
}
.top-access__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  padding: 18px 0;
}
@media screen and (min-width: 768px) {
  .top-access__inner {
    padding: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.top-access__content {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-access__content {
    width: auto;
    -ms-flex-preferred-size: 255px;
        flex-basis: 255px;
    margin-left: 5.3153153153%;
  }
}
.top-access__text {
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .top-access__text {
    font-size: 1.4rem;
    line-height: 1.6428571429;
    margin-bottom: 17px;
  }
}
.top-access__sub-title {
  font-weight: 600;
}
.top-access__img {
  width: 100%;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .top-access__img {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    margin-bottom: 0;
  }
}

.map {
  width: 100%;
  height: 0;
  padding-top: 88.59375%;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .map {
    padding-top: 54.6875%;
  }
}
.map iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/* ------------------------------------------------
StudioSPについて
------------------------------------------------ */
.page-keyvisual {
  width: 100%;
  height: 320px;
  background: url(../images/about/bg_title.jpg) center center/cover no-repeat;
}
.page-keyvisual__inner {
  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-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #ffffff;
}
.page-keyvisual__title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: normal;
  font-family: "Impact", "Arial", sans-serif;
  margin-top: 158px;
}
.page-keyvisual__title-ja {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6666666667;
}

.button-type02 {
  text-align: center;
}
.button-type02 a {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background: #707070;
  border: 1px solid #707070;
  font-size: 1.4rem;
  padding: 12px 17px 15px;
  color: #ffffff;
  font-weight: 600;
}
.button-type02 a:hover, .button-type02 a:focus, .button-type02 a:active {
  opacity: 1;
  border: 1px solid #707070;
  background: #ffffff;
  color: #707070;
}
.button-type02 a:hover::before, .button-type02 a:focus::before, .button-type02 a:active::before {
  background: url(../images/common/icon_pdf-gray.svg) center center/contain no-repeat;
}
.button-type02 a::before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 26px;
  background: url(../images/common/icon_pdf.svg) center center/contain no-repeat;
  margin: 0 8px -6px 0;
}
.button-type02--icon-none a {
  font-size: 1.5rem;
  line-height: 1.7333333333;
  width: 420px;
  background: #4b4b4b;
  border: 1px solid #707070;
  padding: 12px 17px 10px;
}
.button-type02--icon-none a:hover, .button-type02--icon-none a:focus, .button-type02--icon-none a:active {
  color: #4b4b4b;
}
.button-type02--icon-none a::before {
  content: none;
}
.button-type02--size-none a {
  width: 100%;
}
.button-type02--size-m a {
  width: 360px;
  padding: 17px 15px 15px;
}

.about__title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: normal;
  text-align: center;
  margin-bottom: 20px;
  font-family: "Impact", "Arial", sans-serif;
}
.about__title--mb-sizel {
  margin-bottom: 30px;
}
.about__title-ja {
  display: block;
  font-size: 1.5rem;
  line-height: 2.2666666667;
  font-weight: 300;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, "MS PGothic", sans-serif;
}

.about-intro {
  padding: 35px 15px 29px;
}

.about-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.about-media--mb {
  margin-bottom: 46px;
}
.about-media__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}
.about-media__title {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 27px;
}
.about-media__text {
  font-size: 1.6rem;
  line-height: 1.875;
  font-weight: 300;
}
.about-media__text--mb {
  margin-bottom: 30px;
}
.about-media__img {
  -ms-flex-preferred-size: 51.0204081633%;
      flex-basis: 51.0204081633%;
  margin-left: 3.0612244898%;
}

.about-spec {
  padding: 53px 15px 66px;
  background: #F5F5F5;
}
.about-spec__inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-spec__list {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}
.about-spec__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid #2D2D2D;
}
.about-spec__item:first-child {
  padding: 8px 18px 14px;
}
.about-spec__term {
  font-size: 1.6rem;
  font-weight: 300;
  -ms-flex-preferred-size: 16.4502164502%;
      flex-basis: 16.4502164502%;
  margin-right: 5.1948051948%;
  min-width: 114px;
}
.about-spec__description {
  font-size: 1.5rem;
  line-height: 2.1333333333;
  font-weight: 300;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}
.about-spec__img-wrapper {
  -ms-flex-preferred-size: 27.2448979592%;
      flex-basis: 27.2448979592%;
  margin-left: 2.0408163265%;
  margin-bottom: 10px;
}
.about-spec__img {
  margin-bottom: 10px;
}
.about-spec__btn a::before {
  width: 20px;
  height: 25px;
}

.about-gallery {
  padding: 32px 15px 52px;
  background: #ebebeb;
}
.about-gallery__inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.about-gallery .gallery {
  margin: 0 0 18px;
}
.about-gallery .gallery__list {
  width: 100%;
  height: 0;
  padding-top: 66.7346938776%;
  overflow: hidden;
  position: relative;
}
.about-gallery .gallery__list img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.thumbnail .slick-list .slick-track {
  -webkit-transform: unset !important;
          transform: unset !important; /*画面幅サイズ変更に伴うサムネイル固定*/
  margin-right: -8.5px;
  margin-left: -8.5px;
}
.thumbnail .slick-list .slick-track .slick-slide {
  cursor: pointer;
  outline: none;
  background: #333;
  width: calc((100% - 119px) / 7) !important;
  margin: 0 8.5px 17px 8.5px;
}
.thumbnail .slick-list .slick-track .slick-slide img {
  opacity: 0.4; /*選択されていないものは透過40%*/
}
.thumbnail .slick-list .slick-track .slick-slide.slick-current img {
  opacity: 1; /*選択されているものは透過しない*/
}

.about-equipment {
  padding: 50px 15px;
}

.product {
  width: 100%;
  max-width: 980px;
  margin: 0 auto -55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.product__list {
  width: 23.4693877551%;
  margin: 0 2.0408163265% 55px 0;
}
.product__list:nth-child(4n) {
  margin-right: 0;
}
.product__img {
  border: 1px solid #dcdcdc;
  width: 100%;
  height: 0;
  padding-top: 78.2608695652%;
  overflow: hidden;
  position: relative;
  margin-bottom: 13px;
}
.product__img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.product__title {
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.4166666667;
  margin-bottom: 14px;
}
.product__text {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.7142857143;
  margin-bottom: 7px;
}
.product__price {
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.4166666667;
  text-align: right;
}

.about-furniture {
  padding: 61px 15px 53px;
  background: #efefef;
}
.about-furniture__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 45px 45px 40px;
  background: #ffffff;
}
.about-furniture__list-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-top: 30px;
  border-top: 2px solid #707070;
}
.about-furniture__list {
  width: calc((100% - 60px) / 3);
  margin-right: 3.5126234907%;
  margin-bottom: -14px;
}
.about-furniture__list:first-child {
  width: 30.4061470911%;
}
.about-furniture__list:nth-child(2) {
  width: 23.4906695939%;
}
.about-furniture__list:last-child {
  width: 39.0779363337%;
  margin-right: 0;
}
.about-furniture__item {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 14px;
  line-height: 1.5;
  text-indent: -1em;
  padding-left: 1em;
}

/* ------------------------------------------------
SYSTEMページ
------------------------------------------------ */
.page-keyvisual--system {
  background: url(../images/system/bg_title.jpg) center center/cover no-repeat;
}
.page-keyvisual__title--black {
  color: #000000;
}
.page-keyvisual__title-ja--gray {
  color: #666666;
}

.system__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.system__title {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 600;
  padding: 15px 13px 13px;
  background: #dbdbdb;
  width: 100%;
  height: auto;
  text-align: center;
}

.system-daytime {
  margin: 44px 15px 40px;
}
.system-daytime__title {
  margin-bottom: 40px;
}

.system-table01 {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: table;
  border-collapse: collapse;
}
.system-table01__row:first-child .system-table01__head {
  padding-top: 0;
}
.system-table01__head {
  font-size: 1.8rem;
  line-height: 1.7222222222;
  font-weight: 600;
  padding: 33px 20px 32px;
  border-bottom: 1px solid #707070;
}
@media screen and (min-width: 992px) {
  .system-table01__head {
    padding: 33px 25px 32px;
  }
}
.system-table01__head--sizes {
  font-size: 1.5rem;
  line-height: 1.7333333333;
  font-weight: 600;
}
.system-table01__description {
  font-size: 1.8rem;
  line-height: 1.7222222222;
  font-weight: 600;
  padding: 33px 20px 32px;
  border-bottom: 1px solid #707070;
}
@media screen and (min-width: 992px) {
  .system-table01__description {
    padding: 33px 25px 32px;
  }
}
.system-table01__description span {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 600;
}

.system-nighttime {
  margin: 0 15px 40px;
}
.system-nighttime__title {
  margin-bottom: 40px;
}

.system-paid {
  margin: 0 15px 50px;
}
.system-paid__title {
  margin-bottom: 20px;
}
.system-paid__product-wrapper {
  margin-bottom: 70px;
}
.system-paid__product {
  max-width: none;
}
.system-paid__button a {
  width: 420px;
}

.system-consume {
  margin: 0 15px 40px;
}
.system-consume__inner {
  background: #F5F5F5;
}
.system-consume__list {
  width: 100%;
  max-width: 630px;
  padding: 34px 0 23px;
  margin: 0 auto;
}
.system-consume__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 24px;
}
.system-consume__term {
  -ms-flex-preferred-size: 290px;
      flex-basis: 290px;
  margin-right: 20.3442879499%;
  font-size: 1.8rem;
  font-weight: 600;
}
.system-consume__description {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  font-size: 1.8rem;
  font-weight: 300;
}

.system-cancel {
  margin: 0 15px 64px;
}
.system-cancel__title {
  margin-bottom: 40px;
}
.system-cancel__list {
  width: 100%;
  max-width: 926px;
  margin: 0 auto;
}
.system-cancel__item {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 300;
}

.system-table02 {
  width: 100%;
  max-width: 926px;
  margin: 0 auto 24px;
  display: table;
  border-collapse: collapse;
}
.system-table02__head {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 300;
  padding: 23px 13px 13px;
  border: 1px solid #707070;
  background: #ECEAEA;
  width: 0.5399568035%;
}
.system-table02__description {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 600;
  padding: 22px 17px 17px;
  border: 1px solid #707070;
  text-align: center;
  width: 0.5399568035%;
}

/* ------------------------------------------------
Q&Aページ
------------------------------------------------ */
.page-keyvisual--faq {
  background: url(../images/system/bg_title.jpg) center center/cover no-repeat;
}

.page-faq__inner {
  padding: 44px 15px 27px;
}

.faq-tab {
  width: 100%;
  max-width: 965px;
  margin: 0 auto 32px;
}
.faq-tab__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.faq-tab__item {
  margin-right: 1.3471502591%;
  width: 15.5440414508%;
}
.faq-tab__item:last-child {
  margin-right: 0;
}
.faq-tab__item a {
  display: block;
  width: 100%;
  height: 100%;
  background: #cfcfcf;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 600;
  padding: 23px 5px;
  text-align: center;
  border-radius: 3px;
  border: 1px solid #cfcfcf;
}
.faq-tab__item a.active {
  color: #cfcfcf;
  background: #333333;
}

.animate {
  opacity: 1;
  -webkit-animation: 0.6s fadeIn;
          animation: 0.6s fadeIn;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
/* ------------------------------------------------
GUIDEページ
------------------------------------------------ */
.page-keyvisual--howto {
  background: url(../images/system/bg_title.jpg) center center/cover no-repeat;
}

.howto {
  background: #ebebeb;
}
.howto__text01 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.7;
  padding: 52px 15px 30px;
  text-align: center;
}
.howto__text02 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.6818181818;
  max-width: 910px;
  margin: 0 auto;
  padding: 0 15px 62px;
}
.howto__item {
  position: relative;
}
.howto__item::after {
  content: "";
  position: absolute;
  bottom: -45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 31px;
  height: 27px;
  display: inline-block;
  background: url(../images/howto/icon_arrow-bottom.svg) center center/contain no-repeat;
}
.howto__item:last-child .howto__inner {
  margin: 0 auto 40px;
}
.howto__item:last-child::after {
  content: none;
}
.howto__section {
  padding: 0 15px;
}
.howto__inner {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 auto 60px;
}
.howto__inner--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.howto-section {
  width: 100%;
  max-width: 910px;
  margin: 0 auto 36px;
  padding: 0 15px;
}
.howto-section:first-of-type {
  margin: 50px auto 36px;
}
.howto-section__img {
  max-width: 427px;
  margin-bottom: 20px;
}
.howto-section__title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.howto-section__item {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 300;
  text-indent: -1em;
  padding-left: 1em;
}

/* ------------------------------------------------
Termsページ
------------------------------------------------ */
.page-keyvisual--terms {
  background: #AAAAAA;
}

.terms-intro {
  width: 100%;
  max-width: 950px;
  padding: 0 15px;
  margin: 26px auto 28px;
}
.terms-intro__text {
  font-size: 1.4rem;
  line-height: 1.8571428571;
  font-weight: 600;
  margin-bottom: 30px;
}
.terms-intro__date {
  font-size: 1.3rem;
  font-weight: 300;
  text-align: right;
}

.terms-section {
  width: 100%;
  max-width: 1010px;
  padding: 0 15px;
  margin: 0 auto 20px;
}
.terms-section__title {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 600;
  padding: 7px 48px 13px;
  margin-bottom: 20px;
  background: #dbdbdb;
}
.terms-section__inner {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 300;
  padding: 0 30px;
}
.terms-section__list--order {
  list-style-type: decimal;
  padding-left: 1em;
}
.terms-section__list--mb {
  margin-bottom: 18px;
}
.terms-section__item {
  padding-left: 1em;
  text-indent: -1em;
}
.terms-section__item--style-none {
  padding-left: 0;
  text-indent: 0;
}
.terms-section__text {
  margin-bottom: 18px;
}
.terms-section__button a {
  display: inline-block;
  width: 300px;
  max-width: 100%;
  background: #ffffff;
  border: 1px solid #707070;
  color: #707070;
  font-size: 1.6rem;
  padding: 11px 11px 9px;
  font-weight: 600;
  text-align: center;
}
.terms-section__button a:hover, .terms-section__button a:focus, .terms-section__button a:active {
  opacity: 1;
  background: #707070;
  color: #ffffff;
}
.terms-section__button a:hover::before, .terms-section__button a:focus::before, .terms-section__button a:active::before {
  background: url(../images/common/icon_pdf.svg) center center/contain no-repeat;
}
.terms-section__button a::before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 26px;
  background: url(../images/common/icon_pdf-gray.svg) center center/contain no-repeat;
  margin: 0 8px -6px 0;
}

/* ------------------------------------------------
COMPANYページ
------------------------------------------------ */
.page-keyvisual--company {
  background: #AAAAAA;
}

.company__title {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 46px;
}
.company__list {
  width: 100%;
  max-width: 830px;
  margin: 0 auto;
  padding: 0 15px;
}
.company__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 30px;
  border-bottom: 2px dotted #707070;
}
.company__item:first-child {
  padding: 0 30px 16px;
}
.company__item:last-child {
  padding: 16px 30px 0;
  border: none;
}
.company__term {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 600;
  -ms-flex-preferred-size: 21.2048192771%;
      flex-basis: 21.2048192771%;
  margin-right: 5.5421686747%;
  min-width: 176px;
}
.company__description {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 300;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}

.company-section {
  margin: 37px auto 40px;
}

.law-section {
  padding: 60px 15px 56px;
  background: #F5F5F5;
}

/*===============================
 ヘッダー
 ===============================*/
.header {
  position: fixed;
  z-index: 99;
  top: 0;
  width: 100%;
  height: 35px;
}
@media screen and (min-width: 992px) {
  .header {
    height: 70px;
  }
}
.header__inner {
  width: 100%;
  padding: 0 0 0 11.5px;
  height: 100%;
  background: #2D2D2D;
  opacity: 0.77;
}
@media screen and (min-width: 992px) {
  .header__inner {
    padding: 0;
  }
}
.header__inner.active {
  opacity: 1;
  background: #363636;
}
.header__content {
  width: 100%;
  height: 35px;
  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;
}
@media screen and (min-width: 992px) {
  .header__content {
    height: 70px;
    padding: 0 15px;
    max-width: 1130px;
    margin-right: auto;
    margin-left: auto;
  }
}

.logo {
  width: 68px;
  height: auto;
}
@media screen and (min-width: 992px) {
  .logo {
    width: 136px;
  }
}

.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 992px) {
  .header-right {
    left: 50%;
    right: auto;
    margin-left: 21.09375%;
  }
}
@media screen and (min-width: 1200px) {
  .header-right {
    margin-left: 270px;
  }
}
.header-right__list {
  width: 70px;
}
@media screen and (min-width: 992px) {
  .header-right__list {
    width: 140px;
  }
}
.header-right__list a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 1rem;
  line-height: 1.2;
  padding: 7px 10px 8px;
  font-family: "Impact", "Arial", sans-serif;
  color: #1C1C1C;
  background: #D5D5D5;
}
@media screen and (min-width: 992px) {
  .header-right__list a {
    font-size: 2rem;
    padding: 14px 14px 16px;
  }
}
.header-right__list.color-caution a {
  color: #ffffff;
  background: #BE3636;
}
.header-right__list.login .header-right__title-ja {
  -webkit-transform-origin: left center;
          transform-origin: left center;
  white-space: nowrap;
}
@media screen and (min-width: 992px) {
  .header-right__list.login .header-right__title-ja {
    -webkit-transform: none;
            transform: none;
  }
}
.header-right__title-ja {
  display: block;
  font-size: 1rem;
  -webkit-transform: scale(0.55);
          transform: scale(0.55);
  line-height: 1.3636363636;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, "MS PGothic", sans-serif;
  margin-top: 1px;
}
@media screen and (min-width: 992px) {
  .header-right__title-ja {
    font-size: 1.1rem;
    -webkit-transform: none;
            transform: none;
  }
}

.nav {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  height: auto;
  position: fixed;
  z-index: 9;
  left: 0;
  top: 35px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  background: #2D2D2D;
}
@media screen and (min-width: 992px) {
  .nav {
    display: none;
  }
}
.nav.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.nav__item {
  border-top: 3px solid #575757;
}
.nav__item a {
  font-size: 1.5rem;
  display: block;
  width: 100%;
  padding: 10px 25.5px;
  color: #ffffff;
  background: #363636;
}
.nav__item a:hover, .nav__item a:focus, .nav__item a:active {
  opacity: 0.85;
}

.close-btn {
  width: 100%;
  border: 0;
  padding: 10px 10px 12.5px;
  cursor: pointer;
  outline: none;
  background: #575757;
}
.close-btn:hover, .close-btn:focus, .close-btn:active {
  opacity: 0.85;
}
.close-btn span {
  color: #ffffff;
  font-size: 1.5rem;
}

.pc-nav {
  display: none;
}
@media screen and (min-width: 992px) {
  .pc-nav {
    display: block;
  }
}
.pc-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 310px;
}
@media screen and (min-width: 1200px) {
  .pc-nav__list {
    margin-right: 320px;
  }
}
.pc-nav__item {
  margin-right: 15px;
  white-space: nowrap;
}
@media screen and (min-width: 1200px) {
  .pc-nav__item {
    margin-right: 30px;
  }
}
.pc-nav__item:last-child {
  margin-right: 0;
}
.pc-nav__item a {
  font-size: 1.3rem;
  color: #ffffff;
}

/*===============================
 フッター
 ===============================*/
.footer {
  width: 100%;
  padding: 33px 0 0;
}
@media screen and (min-width: 992px) {
  .footer {
    padding: 76px 0 0;
  }
}
@media screen and (min-width: 992px) {
  .footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    max-width: 942px;
    padding: 0 15px;
    margin: 0 auto 40px;
  }
}
.footer__logo {
  width: 118.5px;
  margin: 0 auto 13px;
}
@media screen and (min-width: 992px) {
  .footer__logo {
    width: auto;
    margin: 0 8.3333333333% 0 0;
  }
}
@media screen and (min-width: 992px) {
  .footer__logo a {
    display: block;
    width: 188px;
  }
}
.footer__nav {
  display: none;
}
@media screen and (min-width: 992px) {
  .footer__nav {
    display: block;
  }
}
.footer__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 25px 1fr 25px 1fr 25px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px 25px;
  width: 100%;
}
.footer__item a {
  font-size: 1.3rem;
  color: #616161;
}
.footer__bottom {
  background: #707070;
  padding: 8.5px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .footer__bottom {
    padding: 11px 13px;
  }
}

.address {
  font-size: 1.1rem;
  color: #ffffff;
}
.main-content {
    padding: 0% 0;
}
ul.formparts {
    font-size: 16px;
    padding: 0 5%;
}
.btn {
    text-align: center;
    margin: 3% auto 0;
    font-size: 16px;
    width: 300px;
}
.btn input.favorite.styled {
    width: 50%;
    padding: 7px 0;
}
ul.formparts {
    font-size: 16px;
    padding: 0 5%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
div#contact {
    text-align: center;
    padding: 10px 0;
    line-height: 1.7em;
    font-size: 16px;
}
p.no {
    text-align: center;
    margin: 0 auto 10px;
    font-size: 16px;
}
header.header {
position: relative;
    text-align: center;
    padding: 0;
    height: auto;
    margin: 0 auto 10%;
}
header.header h1 {
  padding: 0.4em 0.5em;/*文字の上下 左右の余白*/
  color: #494949;/*文字色*/
  background: #f4f4f4;/*背景色*/
  border-left: solid 5px #7db4e6;/*左線*/
  border-right: solid 5px #7db4e6;/*左線*/
  border-bottom: solid 3px #d7d7d7;/*下線*/
position: relative;
}
.footer__bottom {
    background: none;
    padding: 8.5px;
    text-align: center;
    border-bottom: 1px #707070 solid;
}
.download-btn {
    display: block;
    width: 80%;
    height: auto;
    padding: 20px 0;
    margin: 0px auto 30px;
    border: solid 2px #707070;
    border-radius: 50px;
    color: #606060;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 7px 16px -6px rgba(0, 0, 0, .3);
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    background: url(../img/ico_dl.png) no-repeat 80% center / 10%;
    font-size: 1.2em;
}
.download_btn:hover {
	opacity: .5;
}
header.header h1 span {
    text-align: right;
    font-size: 0.8em;
    position: absolute;
    right: 30px;
}
.toplink {
    text-align: center;
    margin: 30px auto 0;
    font-size: 16px;
    color: blue;
    text-decoration: underline;
}
.toplink p {
	margin:0 auto 35px;
}
p.bt {
    font-size: 1.1em;
}
p.bt span{
    font-size: 1.4em;
    font-weight: bold;
}
input[type=submit].submit_btn {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 80%;
	margin: auto;
	padding: 2rem 4rem;
	font-weight: bold;
	border: 2px solid #27acd9;
	background: #27acd9;
	color: #fff;
	border-radius: 100vh;
	transition: 0.5s;
	cursor: pointer;
	border-radius:50px;
}
p.err {
    color: #dd0000;
    text-align: center;
    margin: 0 auto 10px;
    font-size: 16px;
}
@media screen and (max-width: 768px) {
	.main-content {
	    padding: 5% 0;
	}
	ul.formparts {
	    font-size: 16px;
	    padding: 0 5%;
	}
	.btn {
	    text-align: center;
	    margin: 10% auto 0;
	    font-size: 16px;
	    width: 300px;
	}
	.btn input.favorite.styled {
	    width: 50%;
	    padding: 7px 0;
	}
	ul.formparts {
	    font-size: 16px;
	    padding: 0 5%;
	    margin: 0 auto 20px;
	    display: flex;
	    justify-content: center;
	    align-items: center;
	}
	div#contact {
	    text-align: center;
	    padding: 10px 0;
	    line-height: 1.7em;
	    font-size: 16px;
	}
	p.no {
	    text-align: center;
	    margin: 0 auto 10px;
	    font-size: 16px;
	}
	header.header {
	position: relative;
	    text-align: center;
	    padding: 0;
	    height: auto;
	    margin: 0 auto 10%;
	}
	header.header h1 {
	  padding: 0.4em 0.5em;/*文字の上下 左右の余白*/
	  color: #494949;/*文字色*/
	  background: #f4f4f4;/*背景色*/
	  border-left: solid 5px #7db4e6;/*左線*/
	  border-right: solid 5px #7db4e6;/*左線*/
	  border-bottom: solid 3px #d7d7d7;/*下線*/
	}
	.footer__bottom {
	    background: none;
	    padding: 8.5px;
	    text-align: center;
	    border-bottom: 1px #707070 solid;
	}
	.download-btn {
	    display: block;
	    width: 80%;
	    height: auto;
	    padding: 20px 0;
	    margin: 0px auto 30px;
	    border: solid 2px #707070;
	    border-radius: 50px;
	    color: #606060;
	    text-decoration: none;
	    text-align: center;
	    font-weight: bold;
	    box-shadow: 0 7px 16px -6px rgba(0, 0, 0, .3);
	    -webkit-transition: .2s ease-in-out;
	    transition: .2s ease-in-out;
	    background: url(../img/ico_dl.png) no-repeat 80% center / 10%;
	    font-size: 1.2em;
	}
	.download_btn:hover {
		opacity: .5;
	}
	header.header h1 span {
	    font-size:10px;
	    bottom:10px;
	}
	body.smt {
	    max-width: 768px;
	    width: 100%;
	    margin: 0 auto;
	}
	body.smt .main-content {
	    padding: 0% 0;
	}
}
.main-content.point {
    padding: 0;
}
ul.point_btn {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
ul.point_btn li {
    width: 45%;
    margin: 0 10px;
}
ul.point_btn li a {
    display: block;
    width: 100%;
    text-align: center;
    cursor: pointer;
    padding: 15% 0;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
}
ul.point_btn li.add a {
    background: #FDEEF5;
    border: solid 1px #EA4C8A;
}
ul.point_btn li.remove a {
    background: #E7F1F9;
    border: solid 1px #046AB1;
}
.pp_txt {
    width: 90%;
    margin: 0 auto;
    max-width: 500px;
    height: 200px;
    overflow-y: scroll;
    border: solid 1px #333333;
	padding: 1%;
	line-height:1.7em;
}
.pp_txt h4 {
    margin: 0 0 10px;
    font-size: 1.1em;
}
.pp_txt ul li:nth-child(2) {
    padding-left: 10px;
}
.pp_txt ul li:first-child {
    font-weight: bold;
}
.pp_txt ul li span.md {
    margin: 0 0 10px;
}
.pp_txt ul li span {
    display: block;
}
li.praivacy {
    text-align: center;
    margin: 20px 0 0;
}
.ul.point_btn li.remove.nodata a {
    background: #c9c7c7;
    border-color: #968a8a;
    color: #9d9696;
}
.staff_box input{
  display:none;  
}
.staff_box .block{
    width: 200px;
    position: relative;
    margin: 0 0 10%;
    display: flex;
    justify-content: flex-start;
        align-items: center;
}
.staff_box input.inp {
    display: block;
    width: 80%;
    margin: 0 auto;
    padding: 10px 0;
}
.staff_box span{
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 1.2em;
    width: 50%;
    margin: 0px 0 0;
}
.staff_box .wrap{
  width:200px;
  position: absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  padding:30px 30px 5px;
}
.staff_box label{
  width:50%;
  height:50px;
  box-sizing:border-box;
  border:3px solid;
  float:left;
  border-radius:100px;
  position:relative;
  cursor:pointer;
  transition:.3s ease;
}
.staff_box input[type=checkbox]:checked + label{
  background:#55b6e8;
}
.staff_box input[type=checkbox]:checked + label:before{
  left:50px;
}
.staff_box label:before{
  transition:.3s ease;
  content:'';
  width:40px;
  height:40px;
  position:absolute;
  background:white;
  left:2px;
  top:2px;
  box-sizing:border-box;
  border:3px solid;
  color:black;
  border-radius:100px;
}
.staff_box {
    width: 90%;
    margin: 0 auto;
}
.blocklist {
    width: 90%;
    margin: 0 auto;
}
.stf {
    font-size: 1.6em;
    margin: 0 0 20px;
}
.stf.shop {
    font-size: 1.4em;
    margin: 0 0 20px;
}
.psbox input {
    width: 100%;
    padding: 3% 1%;
}
.psbox {
    width: 90%;
    margin: 0 auto;
}
p.errmsg {
    color: #ff0000;
    margin: 0 0 2px;
    font-size: 1.2em;
}
.msgbox {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    line-height: 1.7em;
    font-size: 1.2em;
}
p.reload {
    text-decoration: underline;
    margin-top: 10px;
    color: blue;
}
p.no.birthday {
    color: #ff0000;
    font-weight: bold;
}
.main-content h4.shopnm {
    text-align: center;
    font-size: 1.2em;
    margin: 0 auto 15px;
}
ul.userkind li {
    margin: 0 auto 20px;
    font-size: 16px;
}
ul.userkind {
    width: 80%;
    margin: 0 auto;
}
ul.userkind li.ex {
    font-size: 14px;
    line-height: 1.7em;
}

p.scard {
    width: 90%;
    margin: 0 auto 10px;
}
ul.point_btn li span {
    font-size: 1.3em;
}
p.history {
    margin: 50px auto 20px;
    text-align: center;
    font-size: 16px;
    text-decoration: underline;
    color: #0093ff;
}
table.phistory {
    width: 90%;
    margin: 0 auto;
    border: solid 1px #8b8686;
    border-collapse: collapse;
}
table.phistory th, table.phistory td {
    border: solid 1px #8b8686;
    padding: 5px 2px;
}
table.phistory th, table.phistory td {
    border: solid 1px #8b8686;
    padding: 10px 5px;
}
p.scard.tb {
    width: 30%;
    margin: 30px auto 0;
}
.footer_icon {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #7db4e6;
}
.footer_icon ul.iconlist {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2% 5%;
}
.footer_icon ul.iconlist li {
    width: 20%;
    text-align: center;
}
.footer_icon ul.iconlist li figure {
    width: 40%;
    margin: 0 auto;
}
footer {
    padding: 0 0 15%;
}
.stamp {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    /* border: solid 1px #3aabd2; */
}
.stamp .stbox {
    width: 33%;
    border: solid 1px #3aabd2;
    padding: 2%;
}
.stamp .stbox span {
    text-align: center;
    width: 100%;
    display: block;
}
.stamp_box {
    background: url("../img/stamp/stamp_middle_bk.jpg");
}
header.header.stamp_h {
    margin: 0 auto;
}
.stamp_box ul {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
    margin:0 auto 3%;
}
.stamp_box ul li {
    width: 20%;
    border: solid 1px #333333;
    overflow: hidden;
    background: #ffffff;
}
.stamp_box ul li:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.stamp_box ul li:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.stamp_box .date {
    background: #ffffff;
    width: 90%;
    margin: 0 auto;
    padding: 2%;
    text-align: center;
    border-radius: 5px;
	font-weight: bold;
    font-size: 1.2em;
}
.scard.gold{
    width: 90%;
    margin: 0 auto 10px;
	position: relative;
}
.scard.gold span {
    position: absolute;
    display: block;
    bottom: 10px;
    color: #ffffff;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    text-align: center;
    font-size: 1.4em;
    font-weight: bold;
}
.before_txt {
    width: 90%;
    margin: 0 auto 3%;
    line-height: 1.5em;
}
.gold_ticket {
    width: 90%;
    margin: 5% auto;
    position: relative;
}
p.use_limit {
    position: absolute;
    bottom: 5%;
    width: 100%;
    text-align: center;
    color: #ffffff;
	font-size: 1.4em;
    font-weight: bold;
}
.btnarea {
    text-align: center;
}
.btnarea .submit {
    width: 80%;
    padding: 3% 0;
    font-size: 1.2em;
    border: none;
    background: #84b0c9;
    color: #ffffff;
}
table.pointhistory{
  border-collapse: collapse;
  border-spacing: 0;
	width: 94%;
	margin: 0 auto;
}

table.pointhistory tr{
  border-bottom: solid 1px #eee;
  cursor: pointer;
}
table.pointhistory th,table.pointhistory td{
  text-align: center;
  width: 25%;
  padding: 15px 0;
}
table.pointhistory tr {
	background-color: #e6f1f6;
}
table.pointhistory tr:nth-child(odd) {
	background-color: #fff;
}
table.pointhistory td span {
    display: block;
    margin: 5px 0 0;
}
.gold_area {
    width: 70%;
    display: flex;
    margin: 2% auto;
}
.gold_area .scard.gold, .gold_area .gold_ticket {
    width: 48%;
    margin: 0 auto;
}
p.ex {
    width: 84%;
    margin: 2% auto;
    text-align: left;
    line-height: 1.5em;
}
.logout a {
    padding: 3%;
    background: #7fb4e3;
    color: #ffffff;
}
.logout {
    text-align: right;
    margin: 5% 2% 0 0;
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
}
.btnarea.staff_btn {
    width: 60%;
    margin: 0 auto;
}
.gold_area .scard.tb {
    width: 47%;
    margin: 0 auto;
}
.comp_header {
    padding: 0;
    margin: 0;
    position: relative;
}
.stamp_box .complete_txt {
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
    color: #ffffff;
    letter-spacing: 0.2em;
}
.shopstamp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 2% 3%;
}
.shopstamp ul.stamp_shop {
    width: 42%;
    display: flex;
    margin: 0 auto;
}
.shopstamp ul.stamp_shop li {
    padding: 2%;
}
.shopstamp ul.stamp_shop li span {
    text-align: center;
    display: block;
    color: #ffffff;
}
.headbox {
    background: url("../img/stamp/stamp_footer_bk_h.png");
}
.footbox{
    background: url("../img/stamp/stamp_footer_bk_b.png");
}
main.c_chk {
    position: relative;
}
.coruse_chk {
    width: 70%;
    margin: 0 auto;
    background: #F4F6F9;
    font-size: 1.4em;
    font-weight: bold;
    padding: 10%;
    position: absolute;
    left: 0;
    right: 0;
    border-radius: 5px;
    display:none;
}
.coruse_chk.active {
    display:block;
}
.coruse_chk p.txt {
    text-align: center;
    font-size: 1.2em;
}
.coruse_chk .btn {
    display: flex;
    justify-content: center;
}
.coruse_chk .btn p {
    color: #0076FF;
    border: solid 2px #0076FF;
    margin: 0 2%;
    width: 50%;
    padding: 6% 0;
}
.coruse_chk .btn p.ybtn {
    background: #0076FF;
    color: #f4f6f9;
}
p.tecer {
    text-align: center;
    margin: 3% auto;
    font-size: 1.4em;
    font-weight: bold;
}