@charset "UTF-8";
body {
  margin: 0;
  color: #000;
  font-family: var(--font-main-medium);
  font-weight: 500;
  height: 100%;
}

.fontplus-trial-banner {
  width: inherit;
}

#main {
  display: block;
  height: 100%;
  overflow-y: scroll;
}

img {
  width: 100%;
}

.animation-fadeup {
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(50px);
  opacity: 0;
}

.animation-fadeup.is-active {
  transform: translateY(0);
  opacity: 1;
}

#modal {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: #f3f0e6;
  z-index: 1000;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#modal .modal-inner {
  width: 336px;
  text-align: center;
}
#modal .modal-logo {
  width: 105px;
  margin: 0 0 152px;
}
#modal .pass_input {
  outline: none;
  border-bottom: 1px solid #b1b1b1;
  width: 100%;
  font-size: 17px;
  padding: 12px 0;
  margin: 0 0 61px;
}
#modal .submit_button {
  border: 1px solid #676158;
  width: 100%;
  height: 70px;
  font-family: var(--font-sub);
  font-weight: 600;
  pointer-events: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#modal .submit_button.is-active {
  pointer-events: all;
  background-color: #676158;
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  #modal .submit_button.is-active:hover {
    background-color: transparent;
    color: #676158;
  }
}
#modal .modal-button {
  position: relative;
}
#modal .modal-button .error {
  position: absolute;
  font-family: var(--font-main-medium);
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: #ff8383;
  top: -34px;
  left: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  opacity: 0;
  width: 100%;
}
#modal .modal-button .error.is-error {
  opacity: 1;
}

#modal.is-hide {
  pointer-events: none;
  opacity: 0;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}
#modal.is-hide .submit_button {
  pointer-events: none;
}

@media only screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
  .animation-fadeup-pc {
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(50px);
    opacity: 0;
  }
  .animation-fadeup-pc.is-active {
    transform: translateY(0);
    opacity: 1;
  }
  .mv {
    width: 100%;
    height: calc(var(--window-height) + 100vh + 520px);
    position: relative;
    top: 0;
    left: 0;
    z-index: 0;
    min-height: 1300px;
  }
  .mv .mv-bg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    pointer-events: none;
  }
  .mv .mv-bg img {
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .mv .mv-heading {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    z-index: 100;
    opacity: 0;
  }
  .mv .mv-heading img {
    width: 120px;
  }
  .mv .mv-heading img,
  .mv .mv-heading a {
    transition: all 0.3s ease;
  }
  .mv .mv-heading-btn {
    opacity: 0;
    transition: 1.5s ease 2.5s;
  }
  .mv .mv-heading.is_hide img,
  .mv .mv-heading.is_hide a {
    opacity: 0;
  }
  .mv .mv-cloud-top {
    position: fixed;
    display: flex;
    justify-content: center;
    pointer-events: none;
    width: 110%;
    transform: translate(-9%, 0);
    top: -39px;
    opacity: 0;
  }
  .mv .mv-cloud-bottom {
    width: 110%;
    transform: translate(0, 0);
    position: fixed;
    bottom: -50px;
    display: flex;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
  }
  .mv .mv-image {
    /*width: 64.14%;*/
    width: 821px;
    position: absolute;
    margin: 0 auto 0;
    left: 0;
    right: 0;
    bottom: 131px;
    opacity: 0;
  }
  .mv .mv-bird {
    width: 222px;
    position: fixed;
    top: 10.4%;
    left: 10.8%;
    z-index: 50;
    opacity: 0;
  }
  .mv .mv-scroll {
    position: fixed;
    bottom: 0;
    z-index: 100;
    height: 73px;
    margin: 0 auto;
    left: 0;
    right: 0;
    opacity: 0;
  }
  .mv .mv-scroll .mv-scroll-text {
    font-family: var(--font-sub);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    line-height: 36px;
    text-align: center;
    color: #492c1c;
  }
  .mv .mv-scroll .mv-scroll-line {
    display: inline-block;
    height: 40px;
    background: rgba(73, 44, 28, 0.5);
    overflow: hidden;
    width: 1px;
    position: absolute;
    text-align: center;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .mv .mv-scroll .mv-scroll-line:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 45px;
    background: #492c1c;
  }
  @keyframes scrollDown {
    0% {
      transform: translateY(-100%);
    }
    100% {
      transform: translateY(100%);
    }
  }
  body.is-visible .mv .mv-heading {
    opacity: 1;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1) 1.6s;
  }
  body.is-visible .mv .mv-heading-btn {
    opacity: 1;
    transition: 1.5s ease 2.5s;
  }
  body.is-visible .mv .mv-image {
    opacity: 1;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1) 1.2s;
  }
  body.is-visible .mv .mv-bird {
    opacity: 1;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1) 1.2s;
  }
  body.is-visible .mv .mv-scroll {
    opacity: 1;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1) 1.9s;
  }
  body.is-visible .mv .mv-scroll .mv-scroll-line:after {
    animation: scrollDown 1.8s cubic-bezier(0.46, 0.03, 0.52, 0.96) infinite 1.9s;
  }
  body.is-visible .mv .mv-cloud-top {
    opacity: 1;
    transform: translate(-5%, 0);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  }
  body.is-visible .mv .mv-cloud-bottom {
    opacity: 1;
    transform: translate(-5%, 0);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  }
  .introduction {
    z-index: 1;
    position: relative;
    background-color: #f2f0e6;
    padding: 168px 0 0;
  }
  .introduction .introduction-top {
    width: 59.69%;
    margin: 0 auto 244px;
  }
  .introduction .introduction-top .introduction-top-maintitle {
    font-family: var(--font-sub);
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.04em;
    line-height: 36px;
    text-align: left;
  }
  .introduction .introduction-top .introduction-top-subtitle {
    font-size: 20px;
    line-height: 35px;
    text-align: left;
    margin: 57px 0 68px;
    font-family: var(--font-main-bold);
    font-weight: var(--weight-bold);
  }
  .introduction .introduction-top p {
    font-size: 18px;
    line-height: 36px;
    text-align: left;
  }
  .introduction .introduction-top p + p {
    margin: 30px 0 0;
  }
  .introduction .introduction-top p:last-child {
    margin: 64px 0 0;
  }
  .introduction .introduction-bottom {
    width: 59.69%;
    margin: 0 auto;
  }
  .introduction .introduction-bottom .introduction-bottom-list li {
    display: flex;
    justify-content: space-between;
  }
  .introduction .introduction-bottom .introduction-bottom-list li .introduction-bottom-right {
    width: 78.53%;
  }
  .introduction .introduction-bottom .introduction-bottom-list li:nth-child(2) {
    flex-direction: row-reverse;
  }
  .introduction .introduction-bottom .introduction-bottom-list li:last-child .introduction-bottom-left::after {
    content: none;
  }
  .introduction .introduction-bottom .introduction-bottom-list li:last-child .introduction-bottom-right {
    margin: 0 0 173px;
  }
  .introduction .introduction-bottom .introduction-bottom-left {
    padding: 15px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .introduction .introduction-bottom .introduction-bottom-left::after {
    content: "";
    width: 1px;
    height: calc(100% - 162px);
    display: block;
    background-color: #b1b1b1;
    margin: 41px 0 0;
  }
  .introduction .introduction-bottom .introduction-bottom-left .introduction-bottom-title .jp {
    font-family: "FOT-筑紫Aオールド明朝 Pr6N L", serif;
    font-weight: normal;
    font-size: 50px;
    letter-spacing: 0.04em;
    line-height: 36px;
    text-align: center;
    display: block;
  }
  .introduction .introduction-bottom .introduction-bottom-left .introduction-bottom-title .en {
    font-family: var(--font-sub);
    font-weight: 600;
    font-style: normal;
    font-size: 13px;
    letter-spacing: 0.04em;
    line-height: 36px;
    text-align: center;
    display: block;
    margin: 12px 0 0;
  }
  .introduction .introduction-bottom .introduction-bottom-right {
    width: 78.53%;
    margin: 0 0 143px;
  }
  .introduction .introduction-bottom .introduction-bottom-right p {
    font-size: 18px;
    line-height: 36px;
    text-align: left;
  }
  .cast {
    background-color: #e7e5dc;
    padding: 168px 0 175px;
  }
  .cast .cast-wrap {
    width: 59.69%;
    margin: 0 auto;
  }
  .cast .cast-maintitle {
    font-family: var(--font-sub);
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.04em;
    line-height: 36px;
    text-align: left;
    margin: 0 0 110px;
  }
  .cast .cast-list li {
    display: flex;
    justify-content: space-between;
  }
  .cast .cast-list li + li {
    border-top: 1px solid #d5d5d5;
    padding: 98px 0 0;
    margin: 97px 0 0;
  }
  .cast .cast-list li + li:last-child {
    padding: 98px 0 0;
    margin: 97px 0 0;
  }
  .cast .cast-list .cast-list-left {
    width: 42.15%;
  }
  .cast .cast-list .cast-list-left .cast-list-left-top {
    display: flex;
    justify-content: space-between;
  }
  .cast .cast-list .cast-list-left .cast-list-left-top .cast-list-left-top-title {
    width: 40.37%;
  }
  .cast .cast-list .cast-list-left .cast-list-left-top .cast-list-left-top-title h3 {
    width: 111px;
  }
  .cast .cast-list .cast-list-left .cast-list-left-top .cast-list-left-top-image {
    width: 40.37%;
  }
  .cast .cast-list .cast-list-left .cast-list-left-bottom {
    margin: 64px 0 0;
  }
  .cast .cast-list .cast-list-left .cast-list-left-bottom .cast-list-left-bottom-title {
    font-size: 18px;
    line-height: 35px;
    font-family: var(--font-main-bold);
    font-weight: var(--weight-bold);
    margin: 0 0 32px;
  }
  .cast .cast-list .cast-list-left .cast-list-left-bottom .cast-list-left-bottom-text {
    font-weight: normal;
    font-size: 18px;
    line-height: 35px;
  }
  .cast .cast-list .cast-list-right {
    width: 42.15%;
  }
  .cast .cast-list .cast-list-right p {
    font-family: var(--font-sub);
    font-weight: 400;
    font-style: normal;
    font-size: 11px;
    line-height: 16px;
    text-align: right;
    color: #a5a5a5;
    margin: 8px 0 0;
  }
  .cast .cast-list .cast-list-right .cast-list-right-wrap + .cast-list-right-wrap {
    margin: 46px 0 0;
  }
  .map {
    background-color: #969089;
  }
  .map .map-wrap {
    width: 74.38%;
    margin: 0 0 0 20.16%;
  }
  .map .map-wrap .map-maintitle {
    font-family: var(--font-sub);
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.04em;
    line-height: 36px;
    text-align: left;
    color: #fff;
    margin: -141px 0 91px;
  }
  .map .map-wrap .map-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .map .map-wrap .map-inner .map-left {
    width: 33.82%;
  }
  .map .map-wrap .map-inner .map-right {
    width: 53.57%;
  }
  .rule {
    background-color: #676158;
    padding: 200px 0 70px;
  }
  .rule .rule-inner {
    width: 59.69%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .rule .rule-maintitle {
    font-family: var(--font-sub);
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.04em;
    line-height: 20px;
    text-align: left;
    color: #fff;
    width: 100%;
    margin-top: 145px;
  }
  .rule .rule-left {
    width: 42.15%;
  }
  .rule .rule-left-title {
    font-size: 20px;
    line-height: 35px;
    color: #fff;
    margin: 61px 0 0;
    font-family: var(--font-main-bold);
    font-weight: var(--weight-bold);
  }
  .rule .title-main {
    font-family: var(--font-main-bold);
    font-weight: var(--weight-bold);
  }
  .rule .rule-left-text {
    font-size: 18px;
    line-height: 33px;
    /*letter-spacing: -0.03em;*/
    color: #fff;
    margin: 49px 0 0;
    font-family: var(--font-main-medium);
    font-weight: 500;
  }
  .rule .rule-left-text-min {
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    margin: 52px 0 0;
  }
  .rule .rule-left-text-min span {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .rule .rule-left-text-min span::before {
    content: "※";
  }
  .rule .rule-left-text-min span + span {
    margin-top: 16px;
  }
  .rule .rule-left-link {
    font-size: 18px;
    line-height: 30px;
    color: #fff;
    margin: 68px 0 0;
  }
  .rule .rule-left-link a {
    position: relative;
    padding: 0 0 7px;
  }
  .rule .rule-left-link a::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .rule .rule-left-link a::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .rule .rule-left-link a:hover::after {
    opacity: 0;
  }
  .rule .rule-left-link a:hover::before {
    width: 100%;
  }
  .rule .rule-right {
    width: 42.15%;
    margin: -2px 0 0;
    display: flex;
    flex-direction: column;
  }
  .rule .rule-table {
    font-size: 18px;
    line-height: 30px;
    text-align: left;
    color: #fff;
    margin: 44px 0 0;
  }
  .rule .rule-table-cell {
    border-bottom: 1px solid #b1b1b1;
    padding: 0 0 11px;
  }
  .rule .rule-table-cell-wrap {
    display: flex;
    justify-content: space-between;
  }
  .rule .rule-table-cell-wrap--small .cell-left {
    font-size: 14px;
    line-height: 30px;
  }
  .rule .rule-table-cell-wrap + * {
    margin-top: 10px;
  }
  .rule .rule-table-cell span {
    font-size: 16px;
    margin: 0 0 0 13px;
  }
  .rule .rule-table-cell + .rule-table-cell {
    margin-top: 15px;
  }
  .rule.house-rule,
  .rule.privacy-policy,
  .rule.terms-of-use,
  .rule.trade-law {
    background-color: #f2f0e6;
    padding: 60px 0 58px;
  }
  .rule.house-rule .rule-inner,
  .rule.privacy-policy .rule-inner,
  .rule.terms-of-use .rule-inner,
  .rule.trade-law .rule-inner {
    width: 59.69%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .rule.house-rule .rule-inner h1.mv-heading,
  .rule.privacy-policy .rule-inner h1.mv-heading,
  .rule.terms-of-use .rule-inner h1.mv-heading,
  .rule.trade-law .rule-inner h1.mv-heading {
    width: 170px;
    margin: 0 auto;
  }
  .rule.house-rule .rule-inner .membership-table,
  .rule.privacy-policy .rule-inner .membership-table,
  .rule.terms-of-use .rule-inner .membership-table,
  .rule.trade-law .rule-inner .membership-table {
    color: #000;
    margin-top: 19px;
    font-size: 16px;
    line-height: 26px;
  }
  .rule.house-rule .rule-inner .membership-table.membership-table-mt,
  .rule.privacy-policy .rule-inner .membership-table.membership-table-mt,
  .rule.terms-of-use .rule-inner .membership-table.membership-table-mt,
  .rule.trade-law .rule-inner .membership-table.membership-table-mt {
    margin-top: 5px;
  }
  .rule.house-rule .rule-inner .membership-table.membership-table-mb,
  .rule.privacy-policy .rule-inner .membership-table.membership-table-mb,
  .rule.terms-of-use .rule-inner .membership-table.membership-table-mb,
  .rule.trade-law .rule-inner .membership-table.membership-table-mb {
    margin-bottom: 10px;
  }
  .rule.house-rule .rule-inner .membership-table tr,
  .rule.privacy-policy .rule-inner .membership-table tr,
  .rule.terms-of-use .rule-inner .membership-table tr,
  .rule.trade-law .rule-inner .membership-table tr {
    display: block;
    padding-top: 2px;
  }
  .rule.house-rule .rule-inner .membership-table tr:last-child,
  .rule.privacy-policy .rule-inner .membership-table tr:last-child,
  .rule.terms-of-use .rule-inner .membership-table tr:last-child,
  .rule.trade-law .rule-inner .membership-table tr:last-child {
    padding-top: 10px;
  }
  .rule.house-rule .rule-inner .membership-table tr.pt,
  .rule.privacy-policy .rule-inner .membership-table tr.pt,
  .rule.terms-of-use .rule-inner .membership-table tr.pt,
  .rule.trade-law .rule-inner .membership-table tr.pt {
    padding-top: 12px;
  }
  .rule.house-rule .rule-inner .membership-table td:first-child,
  .rule.privacy-policy .rule-inner .membership-table td:first-child,
  .rule.terms-of-use .rule-inner .membership-table td:first-child,
  .rule.trade-law .rule-inner .membership-table td:first-child {
    width: 107px;
  }
  .rule.house-rule .rule-inner .membership-table td:nth-child(3),
  .rule.privacy-policy .rule-inner .membership-table td:nth-child(3),
  .rule.terms-of-use .rule-inner .membership-table td:nth-child(3),
  .rule.trade-law .rule-inner .membership-table td:nth-child(3) {
    text-align: left;
  }
  .rule.house-rule .rule-inner .membership-table.price-table tr:last-child,
  .rule.privacy-policy .rule-inner .membership-table.price-table tr:last-child,
  .rule.terms-of-use .rule-inner .membership-table.price-table tr:last-child,
  .rule.trade-law .rule-inner .membership-table.price-table tr:last-child {
    padding-top: 0px;
  }
  .rule.house-rule .rule-maintitle,
  .rule.privacy-policy .rule-maintitle,
  .rule.terms-of-use .rule-maintitle,
  .rule.trade-law .rule-maintitle {
    font-family: var(--font-sub);
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.04em;
    line-height: 36px;
    text-align: left;
    color: #000;
    width: 100%;
  }
  .rule.house-rule .rule-left,
  .rule.privacy-policy .rule-left,
  .rule.terms-of-use .rule-left,
  .rule.trade-law .rule-left {
    width: 42.15%;
  }
  .rule.house-rule .rule-left-title,
  .rule.privacy-policy .rule-left-title,
  .rule.terms-of-use .rule-left-title,
  .rule.trade-law .rule-left-title {
    font-size: 15px;
    letter-spacing: 0.04em;
    line-height: 36px;
    color: #000;
    margin: 139px 0 0;
    font-family: var(--font-main-bold);
    font-weight: var(--weight-bold);
  }
  .rule.house-rule .title-main,
  .rule.privacy-policy .title-main,
  .rule.terms-of-use .title-main,
  .rule.trade-law .title-main {
    font-family: var(--font-main-bold);
    font-weight: var(--weight-bold);
  }
  .rule.house-rule .rule-left-text,
  .rule.privacy-policy .rule-left-text,
  .rule.terms-of-use .rule-left-text,
  .rule.trade-law .rule-left-text {
    font-size: 18px;
    line-height: 36px;
    letter-spacing: 0.03em;
    color: #000;
    margin: 13px 0 0;
    font-family: var(--font-main-medium);
    font-weight: 500;
  }
  .rule.house-rule .rule-left-text.title-sub,
  .rule.privacy-policy .rule-left-text.title-sub,
  .rule.terms-of-use .rule-left-text.title-sub,
  .rule.trade-law .rule-left-text.title-sub {
    margin-top: 62px;
  }
  .rule.house-rule .rule-left-text.child-case,
  .rule.privacy-policy .rule-left-text.child-case,
  .rule.terms-of-use .rule-left-text.child-case,
  .rule.trade-law .rule-left-text.child-case {
    margin-top: 0;
  }
  .rule.house-rule .rule-left-text.rule-left-text-mt,
  .rule.privacy-policy .rule-left-text.rule-left-text-mt,
  .rule.terms-of-use .rule-left-text.rule-left-text-mt,
  .rule.trade-law .rule-left-text.rule-left-text-mt {
    margin-top: 27px;
  }
  .rule.house-rule .rule-left-text .rule-left-text-bold,
  .rule.privacy-policy .rule-left-text .rule-left-text-bold,
  .rule.terms-of-use .rule-left-text .rule-left-text-bold,
  .rule.trade-law .rule-left-text .rule-left-text-bold {
    margin-top: 54px;
    display: block;
    line-height: 33px;
    font-family: var(--font-main-bold);
    font-weight: var(--weight-bold);
  }
  .rule.house-rule .rule-left-text .rule-left-text-bold.rule-left-text-top,
  .rule.privacy-policy .rule-left-text .rule-left-text-bold.rule-left-text-top,
  .rule.terms-of-use .rule-left-text .rule-left-text-bold.rule-left-text-top,
  .rule.trade-law .rule-left-text .rule-left-text-bold.rule-left-text-top {
    margin-top: 73px;
  }
  .rule.house-rule .rule-left-text a,
  .rule.privacy-policy .rule-left-text a,
  .rule.terms-of-use .rule-left-text a,
  .rule.trade-law .rule-left-text a {
    border-bottom: 1px solid #000;
  }
  .rule.house-rule .rule-left-text.rule-left-date,
  .rule.privacy-policy .rule-left-text.rule-left-date,
  .rule.terms-of-use .rule-left-text.rule-left-date,
  .rule.trade-law .rule-left-text.rule-left-date {
    margin-top: 86px;
  }
  .rule.house-rule .rule-left-text-min,
  .rule.privacy-policy .rule-left-text-min,
  .rule.terms-of-use .rule-left-text-min,
  .rule.trade-law .rule-left-text-min {
    font-size: 14px;
    line-height: 20px;
    color: #000;
    margin: 37px 0 0;
  }
  .rule.house-rule .rule-left-link,
  .rule.privacy-policy .rule-left-link,
  .rule.terms-of-use .rule-left-link,
  .rule.trade-law .rule-left-link {
    font-size: 18px;
    line-height: 36px;
    color: #000;
    margin: 44px 0 0;
  }
  .rule.house-rule .rule-left-link a,
  .rule.privacy-policy .rule-left-link a,
  .rule.terms-of-use .rule-left-link a,
  .rule.trade-law .rule-left-link a {
    position: relative;
    padding: 0 0 7px;
  }
  .rule.house-rule .rule-left-link a::after,
  .rule.privacy-policy .rule-left-link a::after,
  .rule.terms-of-use .rule-left-link a::after,
  .rule.trade-law .rule-left-link a::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #000;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .rule.house-rule .rule-left-link a::before,
  .rule.privacy-policy .rule-left-link a::before,
  .rule.terms-of-use .rule-left-link a::before,
  .rule.trade-law .rule-left-link a::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 1px;
    background-color: #000;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .rule.house-rule .rule-left-link a:hover::after,
  .rule.privacy-policy .rule-left-link a:hover::after,
  .rule.terms-of-use .rule-left-link a:hover::after,
  .rule.trade-law .rule-left-link a:hover::after {
    opacity: 0;
  }
  .rule.house-rule .rule-left-link a:hover::before,
  .rule.privacy-policy .rule-left-link a:hover::before,
  .rule.terms-of-use .rule-left-link a:hover::before,
  .rule.trade-law .rule-left-link a:hover::before {
    width: 100%;
  }
  .rule.house-rule .rule-right,
  .rule.privacy-policy .rule-right,
  .rule.terms-of-use .rule-right,
  .rule.trade-law .rule-right {
    width: 42.15%;
    margin: -2px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .rule.house-rule .rule-table,
  .rule.privacy-policy .rule-table,
  .rule.terms-of-use .rule-table,
  .rule.trade-law .rule-table {
    font-size: 18px;
    line-height: 36px;
    text-align: left;
    color: #000;
    margin: 44px 0 0;
  }
  .rule.house-rule .rule-table-cell,
  .rule.privacy-policy .rule-table-cell,
  .rule.terms-of-use .rule-table-cell,
  .rule.trade-law .rule-table-cell {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #b1b1b1;
    padding: 0 0 9px;
    margin: 0 0 24px;
  }
  .rule.house-rule .rule-table-cell span,
  .rule.privacy-policy .rule-table-cell span,
  .rule.terms-of-use .rule-table-cell span,
  .rule.trade-law .rule-table-cell span {
    font-size: 18px;
    margin: 0 0 0 13px;
  }
}
@media only screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .animation-fadeup-sp {
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(50px);
    opacity: 0;
  }
  .animation-fadeup-sp.is-active {
    transform: translateY(0);
    opacity: 1;
  }
  .mv {
    width: 100%;
    height: calc(var(--window-height) + 100vh + 257px);
    position: relative;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
  }
  .mv .mv-bg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    pointer-events: none;
  }
  .mv .mv-bg img {
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .mv .mv-heading {
    position: fixed;
    transform: translate(-50%, -50%);
    width: -moz-fit-content;
    width: fit-content;
    top: 50%;
    left: 50%;
    height: -moz-fit-content;
    height: fit-content;
    z-index: 100;
    opacity: 0;
  }
  .mv .mv-heading img {
    width: 24.61vw;
  }
  .mv .mv-heading img,
  .mv .mv-heading a {
    transition: opacity 0.3s ease;
  }
  .mv .mv-heading-btn {
    opacity: 0;
    transition: 1.5s ease 2.5s;
  }
  .mv .mv-heading.is_hide img,
  .mv .mv-heading.is_hide a {
    opacity: 0;
  }
  .mv .mv-cloud-top {
    position: fixed;
    display: flex;
    justify-content: center;
    pointer-events: none;
    transform: translate(-19%, 0);
    width: 238%;
    top: -3px;
    opacity: 0;
  }
  .mv .mv-cloud-bottom {
    position: fixed;
    display: flex;
    justify-content: center;
    pointer-events: none;
    transform: translate(-47.5%, 0);
    width: 241%;
    bottom: 0;
    opacity: 0;
  }
  .mv .mv-image {
    width: 430px;
    position: absolute;
    margin: 0 auto 0;
    left: 15px;
    right: 0;
    bottom: 82px;
    opacity: 0;
  }
  .mv .mv-bird {
    width: 179px;
    position: fixed;
    top: 112px;
    left: 34px;
    pointer-events: none;
    opacity: 0;
  }
  .mv .mv-scroll {
    position: fixed;
    bottom: 0;
    z-index: 100;
    height: 73px;
    margin: 0 auto;
    left: 0;
    right: 0;
    opacity: 0;
  }
  .mv .mv-scroll .mv-scroll-text {
    font-family: var(--font-sub);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.04em;
    line-height: 36px;
    text-align: center;
    color: #ffffff;
  }
  .mv .mv-scroll .mv-scroll-line {
    display: inline-block;
    height: 40px;
    background: #b1b1b1;
    overflow: hidden;
    width: 1px;
    position: absolute;
    text-align: center;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .mv .mv-scroll .mv-scroll-line:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 45px;
    background: #fff;
  }
  @keyframes scrollDown {
    0% {
      transform: translateY(-100%);
    }
    100% {
      transform: translateY(100%);
    }
  }
  body.is-visible .mv .mv-heading {
    opacity: 1;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1) 1.6s;
  }
  body.is-visible .mv .mv-heading-btn {
    opacity: 1;
    transition: 1.5s ease 2.5s;
  }
  body.is-visible .mv .mv-image {
    opacity: 1;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1) 1.2s;
  }
  body.is-visible .mv .mv-bird {
    opacity: 1;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1) 1.2s;
  }
  body.is-visible .mv .mv-scroll {
    opacity: 1;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1) 1.9s;
  }
  body.is-visible .mv .mv-scroll .mv-scroll-line:after {
    animation: scrollDown 1.8s cubic-bezier(0.46, 0.03, 0.52, 0.96) infinite 1.9s;
  }
  body.is-visible .mv .mv-cloud-top {
    opacity: 1;
    transform: translate(-29%, 0);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  }
  body.is-visible .mv .mv-cloud-bottom {
    opacity: 1;
    transform: translate(-37.5%, 0);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  }
  .introduction {
    z-index: 1;
    position: relative;
    background-color: #f2f0e6;
    padding: 198px 0 60px;
  }
  .introduction .introduction-top {
    width: 86.15%;
    margin: 0 auto 185px;
  }
  .introduction .introduction-top .introduction-top-maintitle {
    font-family: var(--font-sub);
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.04em;
    line-height: 36px;
    text-align: left;
  }
  .introduction .introduction-top .introduction-top-subtitle {
    font-size: 20px;
    line-height: 35px;
    text-align: left;
    margin: 60px 0 66px;
    font-family: var(--font-main-bold);
    font-weight: var(--weight-bold);
  }
  .introduction .introduction-top p {
    font-size: 18px;
    line-height: 36px;
    text-align: left;
    width: 101%;
  }
  .introduction .introduction-top p + p {
    margin: 30px 0 0;
  }
  .introduction .introduction-top p:last-child {
    margin: 63px 0 0;
  }
  .introduction .introduction-bottom {
    width: 88.15%;
    margin: 0 auto;
  }
  .introduction .introduction-bottom .introduction-bottom-list li {
    display: flex;
    justify-content: space-between;
  }
  .introduction .introduction-bottom .introduction-bottom-list li .introduction-bottom-right {
    width: 76.15%;
    margin: 4px 0 111px;
  }
  .introduction .introduction-bottom .introduction-bottom-list li:nth-child(2) {
    flex-direction: row-reverse;
    position: relative;
    left: 4px;
  }
  .introduction .introduction-bottom .introduction-bottom-list li:nth-child(2) .introduction-bottom-left {
    position: relative;
    top: -3px;
    left: -7px;
  }
  .introduction .introduction-bottom .introduction-bottom-list li:last-child .introduction-bottom-left::after {
    content: none;
  }
  .introduction .introduction-bottom .introduction-bottom-left {
    padding: 15px 0 11px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .introduction .introduction-bottom .introduction-bottom-left::after {
    content: "";
    width: 1px;
    height: calc(100% - 162px);
    display: block;
    background-color: #b1b1b1;
    margin: 41px 0 0;
  }
  .introduction .introduction-bottom .introduction-bottom-left .introduction-bottom-title .jp {
    font-family: "FOT-筑紫Aオールド明朝 Pr6N L", serif;
    font-weight: normal;
    font-size: 50px;
    letter-spacing: 0.04em;
    line-height: 36px;
    text-align: center;
    display: block;
  }
  .introduction .introduction-bottom .introduction-bottom-left .introduction-bottom-title .en {
    font-family: var(--font-sub);
    font-weight: 600;
    font-style: normal;
    font-size: 13px;
    letter-spacing: 0.04em;
    line-height: 36px;
    text-align: center;
    display: block;
    margin: 10px 0 0;
  }
  .introduction .introduction-bottom .introduction-bottom-right {
    width: 78.53%;
    margin: 0 0 143px;
  }
  .introduction .introduction-bottom .introduction-bottom-right p {
    font-size: 18px;
    line-height: 36px;
    text-align: left;
  }
  .cast {
    background-color: #e7e5dc;
    padding: 130px 0 180px;
  }
  .cast .cast-wrap {
    width: 86.15%;
    margin: 0 auto;
  }
  .cast .cast-maintitle {
    font-family: var(--font-sub);
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.04em;
    line-height: 36px;
    text-align: left;
    margin: 0 0 50px;
  }
  .cast .cast-list li {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .cast .cast-list li + li {
    border-top: 1px solid #d5d5d5;
    padding: 99px 0 0;
    margin: 96px 0 0;
  }
  .cast .cast-list .cast-list-left {
    width: 100%;
  }
  .cast .cast-list .cast-list-left .cast-list-left-top {
    display: flex;
    justify-content: space-between;
  }
  .cast .cast-list .cast-list-left .cast-list-left-top .cast-list-left-top-title {
    width: 40.37%;
  }
  .cast .cast-list .cast-list-left .cast-list-left-top .cast-list-left-top-title h3 {
    width: 111px;
  }
  .cast .cast-list .cast-list-left .cast-list-left-top .cast-list-left-top-image {
    width: 38.37%;
  }
  .cast .cast-list .cast-list-left .cast-list-left-bottom {
    margin: 65px 0 0;
  }
  .cast .cast-list .cast-list-left .cast-list-left-bottom .cast-list-left-bottom-title {
    font-family: var(--font-main-bold);
    font-weight: var(--weight-bold);
    font-size: 18px;
    line-height: 35px;
    margin: 0 0 26px;
  }
  .cast .cast-list .cast-list-left .cast-list-left-bottom .cast-list-left-bottom-text {
    font-size: 18px;
    line-height: 35px;
  }
  .cast .cast-list .cast-list-right {
    width: 100%;
    margin: 40px 0 0;
  }
  .cast .cast-list .cast-list-right p {
    font-family: var(--font-sub);
    font-weight: 400;
    font-style: normal;
    font-size: 11px;
    line-height: 16px;
    text-align: right;
    color: #a5a5a5;
    margin: 10px 0 0;
  }
  .cast .cast-list .cast-list-right .cast-list-right-wrap + .cast-list-right-wrap {
    margin: 33px 0 0;
  }
  .map {
    background-color: #969089;
  }
  .map .map-wrap {
    width: 100%;
    margin: 0 auto 0;
    padding: 129px 0 0;
  }
  .map .map-wrap .map-maintitle {
    font-family: var(--font-sub);
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.04em;
    line-height: 36px;
    text-align: left;
    color: #fff;
    margin: 0 0 70px;
  }
  .map .map-wrap .map-inner .map-left {
    width: 86.15%;
    margin: 0 auto 80px;
  }
  .rule {
    background-color: #676158;
    padding: 140px 0 100px;
  }
  .rule .rule-inner {
    width: 86.15%;
    margin: 0 auto;
  }
  .rule .rule-maintitle {
    font-family: var(--font-sub);
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.04em;
    line-height: 20px;
    text-align: left;
    color: #fff;
    width: 100%;
    margin-top: 106px;
  }
  .rule .rule-left-title {
    font-size: 20px;
    line-height: 35px;
    color: #fff;
    margin: 63px 0 0;
    font-family: var(--font-main-bold);
    font-weight: var(--weight-bold);
  }
  .rule .title-main {
    font-family: var(--font-main-bold);
    font-weight: var(--weight-bold);
  }
  .rule .rule-left-text {
    font-size: 18px;
    line-height: 33px;
    color: #fff;
    margin: 44px 0 37px;
  }
  .rule .rule-left-text-min {
    font-size: 14px;
    line-height: 22px;
    text-align: left;
    color: #fff;
  }
  .rule .rule-left-text-min span {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .rule .rule-left-text-min span::before {
    content: "※";
  }
  .rule .rule-left-text-min span + span {
    margin-top: 16px;
  }
  .rule .rule-left-link {
    font-size: 18px;
    line-height: 36px;
    color: #fff;
    margin: 66px 0 0;
    text-align: center;
  }
  .rule .rule-left-link a {
    position: relative;
    padding: 0 0 7px;
  }
  .rule .rule-left-link a::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .rule .rule-table {
    font-size: 18px;
    line-height: 33px;
    text-align: left;
    color: #fff;
    margin: 105px 0 0;
  }
  .rule .rule-table-cell {
    border-bottom: 1px solid #b1b1b1;
    padding: 0 0 9px;
    margin: 0 0 24px;
  }
  .rule .rule-table-cell-wrap {
    display: flex;
    justify-content: space-between;
  }
  .rule .rule-table-cell-wrap--small .cell-left {
    font-size: 14px;
    line-height: 30px;
  }
  .rule .rule-table-cell-wrap + * {
    margin-top: 10px;
  }
  .rule .rule-table-cell span {
    font-size: 18px;
    margin: 0 0 0 15px;
  }
  .rule.house-rule,
  .rule.privacy-policy,
  .rule.terms-of-use,
  .rule.trade-law {
    background-color: #f2f0e6;
    padding: 44px 0 91px;
  }
  .rule.house-rule .rule-inner,
  .rule.privacy-policy .rule-inner,
  .rule.terms-of-use .rule-inner,
  .rule.trade-law .rule-inner {
    width: 86.15%;
    margin: 0 auto;
  }
  .rule.house-rule .rule-inner h1.mv-heading,
  .rule.privacy-policy .rule-inner h1.mv-heading,
  .rule.terms-of-use .rule-inner h1.mv-heading,
  .rule.trade-law .rule-inner h1.mv-heading {
    margin: 0 auto;
    width: 50%;
  }
  .rule.house-rule .rule-inner .membership-table,
  .rule.privacy-policy .rule-inner .membership-table,
  .rule.terms-of-use .rule-inner .membership-table,
  .rule.trade-law .rule-inner .membership-table {
    color: #000;
    margin-top: 18px;
    font-size: 16px;
    line-height: 24px;
  }
  .rule.house-rule .rule-inner .membership-table.membership-table-mt,
  .rule.privacy-policy .rule-inner .membership-table.membership-table-mt,
  .rule.terms-of-use .rule-inner .membership-table.membership-table-mt,
  .rule.trade-law .rule-inner .membership-table.membership-table-mt {
    margin-top: 10px;
  }
  .rule.house-rule .rule-inner .membership-table.text-members,
  .rule.privacy-policy .rule-inner .membership-table.text-members,
  .rule.terms-of-use .rule-inner .membership-table.text-members,
  .rule.trade-law .rule-inner .membership-table.text-members {
    margin-top: 10px;
  }
  .rule.house-rule .rule-inner .membership-table.text-members tr,
  .rule.privacy-policy .rule-inner .membership-table.text-members tr,
  .rule.terms-of-use .rule-inner .membership-table.text-members tr,
  .rule.trade-law .rule-inner .membership-table.text-members tr {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
  }
  .rule.house-rule .rule-inner .membership-table.text-members td.text-members-mt,
  .rule.privacy-policy .rule-inner .membership-table.text-members td.text-members-mt,
  .rule.terms-of-use .rule-inner .membership-table.text-members td.text-members-mt,
  .rule.trade-law .rule-inner .membership-table.text-members td.text-members-mt {
    margin-top: 20px;
  }
  .rule.house-rule .rule-inner .membership-table tr,
  .rule.privacy-policy .rule-inner .membership-table tr,
  .rule.terms-of-use .rule-inner .membership-table tr,
  .rule.trade-law .rule-inner .membership-table tr {
    margin-top: 2px;
  }
  .rule.house-rule .rule-inner .membership-table td:first-child,
  .rule.privacy-policy .rule-inner .membership-table td:first-child,
  .rule.terms-of-use .rule-inner .membership-table td:first-child,
  .rule.trade-law .rule-inner .membership-table td:first-child {
    width: 97px;
  }
  .rule.house-rule .rule-inner .membership-table td:nth-child(3),
  .rule.privacy-policy .rule-inner .membership-table td:nth-child(3),
  .rule.terms-of-use .rule-inner .membership-table td:nth-child(3),
  .rule.trade-law .rule-inner .membership-table td:nth-child(3) {
    text-align: left;
  }
  .rule.house-rule .rule-inner .membership-table td.mt,
  .rule.privacy-policy .rule-inner .membership-table td.mt,
  .rule.terms-of-use .rule-inner .membership-table td.mt,
  .rule.trade-law .rule-inner .membership-table td.mt {
    padding-top: 12px;
  }
  .rule.house-rule .rule-maintitle,
  .rule.privacy-policy .rule-maintitle,
  .rule.terms-of-use .rule-maintitle,
  .rule.trade-law .rule-maintitle {
    font-family: var(--font-sub);
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 30px;
    text-align: left;
    color: #000;
    width: 100%;
  }
  .rule.house-rule .rule-left-title,
  .rule.privacy-policy .rule-left-title,
  .rule.terms-of-use .rule-left-title,
  .rule.trade-law .rule-left-title {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.04em;
    color: #000;
    margin: 117px 0 0;
    font-family: var(--font-main-bold);
    font-weight: var(--weight-bold);
  }
  .rule.house-rule .title-main,
  .rule.privacy-policy .title-main,
  .rule.terms-of-use .title-main,
  .rule.trade-law .title-main {
    font-family: var(--font-main-bold);
    font-weight: var(--weight-bold);
  }
  .rule.house-rule .rule-left-text,
  .rule.privacy-policy .rule-left-text,
  .rule.terms-of-use .rule-left-text,
  .rule.trade-law .rule-left-text {
    font-size: 18px;
    line-height: 30px;
    color: #000;
    margin: 21px 0 0;
  }
  .rule.house-rule .rule-left-text.rule-left-text-mt,
  .rule.privacy-policy .rule-left-text.rule-left-text-mt,
  .rule.terms-of-use .rule-left-text.rule-left-text-mt,
  .rule.trade-law .rule-left-text.rule-left-text-mt {
    margin-top: 27px;
  }
  .rule.house-rule .rule-left-text a,
  .rule.privacy-policy .rule-left-text a,
  .rule.terms-of-use .rule-left-text a,
  .rule.trade-law .rule-left-text a {
    border-bottom: 1px solid #000;
  }
  .rule.house-rule .rule-left-text.rule-left-date,
  .rule.privacy-policy .rule-left-text.rule-left-date,
  .rule.terms-of-use .rule-left-text.rule-left-date,
  .rule.trade-law .rule-left-text.rule-left-date {
    margin-top: 88px;
  }
  .rule.house-rule .rule-left-text.child-case,
  .rule.privacy-policy .rule-left-text.child-case,
  .rule.terms-of-use .rule-left-text.child-case,
  .rule.trade-law .rule-left-text.child-case {
    margin-top: 5px;
  }
  .rule.house-rule .title-sub,
  .rule.privacy-policy .title-sub,
  .rule.terms-of-use .title-sub,
  .rule.trade-law .title-sub {
    margin-top: 66px;
    padding-bottom: 2px;
    display: block;
  }
  .rule.house-rule .rule-left-text-bold,
  .rule.privacy-policy .rule-left-text-bold,
  .rule.terms-of-use .rule-left-text-bold,
  .rule.trade-law .rule-left-text-bold {
    font-family: var(--font-main-bold);
    font-weight: var(--weight-bold);
    margin-top: 64px;
    display: block;
  }
  .rule.house-rule .rule-left-text-min,
  .rule.privacy-policy .rule-left-text-min,
  .rule.terms-of-use .rule-left-text-min,
  .rule.trade-law .rule-left-text-min {
    font-size: 14px;
    line-height: 25px;
    text-align: left;
    color: #000;
  }
  .rule.house-rule .rule-left-link,
  .rule.privacy-policy .rule-left-link,
  .rule.terms-of-use .rule-left-link,
  .rule.trade-law .rule-left-link {
    font-size: 18px;
    line-height: 33px;
    color: #000;
    margin: 43px 0 0;
    text-align: center;
  }
  .rule.house-rule .rule-left-link a,
  .rule.privacy-policy .rule-left-link a,
  .rule.terms-of-use .rule-left-link a,
  .rule.trade-law .rule-left-link a {
    position: relative;
    padding: 0 0 7px;
  }
  .rule.house-rule .rule-left-link a::after,
  .rule.privacy-policy .rule-left-link a::after,
  .rule.terms-of-use .rule-left-link a::after,
  .rule.trade-law .rule-left-link a::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #000;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .rule.house-rule .rule-table,
  .rule.privacy-policy .rule-table,
  .rule.terms-of-use .rule-table,
  .rule.trade-law .rule-table {
    font-size: 18px;
    line-height: 33px;
    text-align: left;
    color: #000;
    margin: 105px 0 0;
  }
  .rule.house-rule .rule-table-cell,
  .rule.privacy-policy .rule-table-cell,
  .rule.terms-of-use .rule-table-cell,
  .rule.trade-law .rule-table-cell {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #b1b1b1;
    padding: 0 0 9px;
    margin: 0 0 24px;
  }
  .rule.house-rule .rule-table-cell span,
  .rule.privacy-policy .rule-table-cell span,
  .rule.terms-of-use .rule-table-cell span,
  .rule.trade-law .rule-table-cell span {
    font-size: 18px;
    margin: 0 0 0 15px;
  }
}
.num-list {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 13px;
}
.num-list.num-list-bt-none {
  margin-bottom: 0;
}
.num-list.child {
  padding-left: 1em;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 24px;
}
.num-list.child:last-child {
  margin-bottom: 0;
}

.rule-button-box {
  margin-top: 75px;
}
.rule-button-box .check-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.rule-button-box .check-box .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: var(--font-main-medium);
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-align: left;
  color: #fff;
}
.rule-button-box .check-box .item + .item {
  margin-top: 14px;
}
.rule-button-box .check-box .item a {
  font-size: 16px;
  line-height: 19px;
  display: inline-block;
  position: relative;
}
.rule-button-box .check-box .item a::before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 0.5s ease;
}
.rule-button-box .check-box .item a::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: background-color 0s ease;
}
@media screen and (min-width: 768px) {
  .rule-button-box .check-box .item a:hover::before {
    width: 100%;
  }
  .rule-button-box .check-box .item a:hover::after {
    background-color: rgba(255, 255, 255, 0);
  }
}
.rule-button-box .check-box .check-label {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid #ffffff;
  background-color: #969089;
  cursor: pointer;
  margin-right: 14px;
}
.rule-button-box .check-box .check-label input {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.rule-button-box .check-box .check-label input:checked + .check-box-visual {
  opacity: 1;
}
.rule-button-box .check-box .check-label .check-box-visual {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/index/ico_check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.rule-button-box .button-wrap {
  position: relative;
  margin-top: 60px;
}
.rule-button-box .button-wrap .error {
  position: absolute;
  font-family: var(--font-main-medium);
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  text-align: left;
  color: #ff8383;
  top: -34px;
  left: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  opacity: 0;
}
.rule-button-box .button-wrap .error.is-error {
  opacity: 1;
}
.rule-button-box .button-wrap .rule-button {
  pointer-events: none;
  background-color: #e7e5dc;
  border: 1px solid #e7e5dc;
  transition: all 0.3s ease;
  position: relative;
  padding-top: 28px;
  padding-bottom: 28px;
  text-align: center;
  display: block;
  color: #5b5951;
}
.rule-button-box .button-wrap .rule-button .jp {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-main-bold);
  font-weight: var(--weight-bold);
}
.rule-button-box .button-wrap .rule-button.is-active {
  pointer-events: all;
  background-color: #fff;
  border: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .rule-button-box .button-wrap .rule-button.is-active:hover {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
  }
}
.rule-button-box .button-wrap .button-check .button-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.rule-button-box .button-wrap .button-check .button-overlay.is-active {
  pointer-events: none;
}

#main {
  position: relative;
}

@media only screen and (min-width: 768px) {
  .lang__link {
    position: absolute;
    left: 30px;
    top: 30px;
    opacity: 0;
    font-family: var(--font-sub);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 36px;
    text-align: left;
    color: #492c1c;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
  }
  .lang__link a {
    display: block;
    transition: opacity 0.8s ease;
  }
  .lang__link a:hover {
    opacity: 0.5;
  }
  .lang__link span {
    opacity: 0.3;
  }
  body.is-visible .lang__link {
    opacity: 1;
    transition: opacity 0.8s ease 2.4s;
  }
  .gallery {
    background: #676158;
    position: relative;
  }
  .gallery__inner {
    display: block;
  }
  .gallery__images {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .gallery__image {
    width: 33.3333333333%;
    aspect-ratio: 426/284;
  }
  .gallery__image--large {
    width: 100%;
    aspect-ratio: 1280/662;
  }
  .gallery__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .gallery__credit {
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    text-align: right;
    color: #a5a5a5;
    padding-left: 70px;
    padding-right: 70px;
    margin-top: 13px;
  }
  .gallery__credit .italic {
    font-style: italic;
  }
  .access {
    background: #676158;
    padding-top: 70px;
    padding-bottom: 44px;
  }
  .access .access__inner {
    width: 59.69%;
    max-width: 800px;
    margin-inline: auto;
  }
  .access .access__map {
    width: 100%;
  }
  .access .access__map img {
    width: 100%;
  }
  .access .access__texts {
    margin-top: 40px;
    color: #fff;
  }
  .access .access__text {
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    text-align: left;
  }
  .access .access__link {
    margin-top: 24px;
  }
  .access .access__link a {
    position: relative;
    padding: 0 0 7px;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    text-align: left;
  }
  .access .access__link a::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .access .access__link a::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .access .access__link a:hover::after {
    opacity: 0;
  }
  .access .access__link a:hover::before {
    width: 100%;
  }
  .payment {
    margin-top: 5px;
    width: 100%;
  }
  .payment__box {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .payment__box p {
    font-family: var(--font-main-medium);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    color: #000;
  }
  .payment__box p:first-of-type {
    width: 158px;
  }
  .payment__box p:last-of-type {
    width: calc(100% - 135px - 30px);
  }
  .payment__box + * {
    margin-top: 20px;
  }
  .rule .rule-table-cell .cell-left span {
    margin-left: 0;
    display: block;
  }
  .rule .rule-table-cell .cell-left span + span {
    margin-top: 15px;
  }
  html[lang=en] .rule-button-box .button-wrap {
    margin-top: 90px;
  }
  html[lang=en] .rule-button-box .button-wrap .error {
    top: -70px;
  }
  html[lang=en] .rule .rule-left-text-min span::before {
    content: "-";
    margin-right: 4px;
  }
  html[lang=en] .introduction .introduction-bottom .introduction-bottom-left .introduction-bottom-title .jp {
    writing-mode: vertical-rl;
    line-height: 50px;
  }
  html[lang=en] .introduction .introduction-bottom .introduction-bottom-left .introduction-bottom-title .en {
    writing-mode: vertical-rl;
  }
  html[lang=en] .introduction .introduction-bottom .introduction-bottom-left::after {
    margin-top: 50px;
    height: calc(100% - 330px);
  }
  html[lang=en] .rule-button-box .button-wrap .rule-button span {
    font-family: var(--font-sub);
  }
  html[lang=en] .mv-heading .btn {
    font-family: var(--font-sub);
    padding-top: 19px;
    padding-bottom: 15px;
  }
  html[lang=en] .rule .rule-left-link {
    font-size: 15px;
    line-height: 22px;
    text-align: left;
    color: #fff;
  }
  html[lang=en] .rule .rule-left-link a {
    background-image: linear-gradient(to right, #fff, #fff); /* 線の色 */
    background-size: 100% 1px; /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
    background-position: bottom; /* 下に配置 */
    background-repeat: no-repeat; /* 背景を繰り返さない */
    padding-bottom: 2px;
  }
  html[lang=en] .rule .rule-left-link a::before {
    content: none;
  }
  html[lang=en] .rule .rule-left-link a::after {
    content: none;
  }
  .mv-heading {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .mv-heading img {
    width: 120px;
  }
  .mv-heading .btn {
    padding-top: 17px;
    padding-bottom: 17px;
    padding-left: 45px;
    padding-right: 45px;
    background-color: #fff;
    font-family: var(--font-main-bold);
    font-weight: var(--weight-bold);
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    color: #ab8959;
    display: block;
    margin-top: 43px;
    border: 1px solid #fff;
    transition: all 0.3s ease;
  }
  .mv-heading .btn:hover {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
  }
  section {
    position: relative;
  }
}
@media only screen and (max-width: 768px) {
  .lang__link {
    position: absolute;
    font-family: var(--font-sub);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 36px;
    text-align: left;
    color: #492c1c;
    left: 25px;
    top: 25px;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
  }
  .lang__link span {
    opacity: 0.3;
  }
  body.is-visible .lang__link {
    opacity: 1;
    transition: opacity 0.8s ease 2.4s;
  }
  .gallery {
    background: #676158;
  }
  .gallery__inner {
    display: block;
  }
  .gallery__images {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .gallery__image {
    width: 100%;
    aspect-ratio: 426/284;
  }
  .gallery__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .gallery__credit {
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    text-align: right;
    color: #a5a5a5;
    width: 86.15%;
    margin: 0 auto;
    margin-top: 13px;
  }
  .gallery__credit .italic {
    font-style: italic;
  }
  .access {
    background: #676158;
    padding-bottom: 65px;
  }
  .access .access__inner {
    width: 86.15%;
    margin-inline: auto;
  }
  .access .access__map {
    width: 100%;
  }
  .access .access__map img {
    width: 100%;
  }
  .access .access__texts {
    margin-top: 38px;
    color: #fff;
  }
  .access .access__text {
    font-weight: 500;
    font-size: 15px;
    line-height: 28px;
    text-align: left;
  }
  .access .access__link {
    margin-top: 26px;
  }
  .access .access__link a {
    position: relative;
    padding: 0 0 7px;
    font-weight: 500;
    font-size: 15px;
    line-height: 30px;
    text-align: left;
  }
  .access .access__link a::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .access .access__link a::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .payment {
    margin-top: 5px;
    width: 100%;
  }
  .payment__box p {
    font-family: var(--font-main-medium);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    color: #000;
    width: 100%;
  }
  .payment__box p:first-of-type {
    width: 158px;
  }
  .payment__box p:nth-of-type(2) {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    padding-left: 14px;
    width: 100%;
  }
  .payment__box p:nth-of-type(2) span {
    display: block;
  }
  .payment__box p:nth-of-type(2) span:first-child {
    width: 106px;
  }
  .payment__box p:nth-of-type(2) span:last-child {
    width: calc(100% - 106px - 14px);
  }
  .payment__box p:nth-of-type(3) {
    display: flex;
    gap: 12px;
    padding-left: 14px;
    width: 100%;
  }
  .payment__box p:nth-of-type(3) span {
    display: block;
  }
  .payment__box p:nth-of-type(3) span:first-child {
    width: 106px;
  }
  .payment__box p:nth-of-type(3) span:last-child {
    width: calc(100% - 106px - 14px);
  }
  .payment__box + * {
    margin-top: 30px;
  }
  .rule .rule-table-cell .cell-left span {
    margin-left: 0;
    display: block;
  }
  .rule .rule-table-cell .cell-left span + span {
    margin-top: 15px;
  }
  html[lang=en] .rule-button-box .button-wrap {
    margin-top: 90px;
  }
  html[lang=en] .rule-button-box .button-wrap .error {
    top: -70px;
  }
  html[lang=en] .rule .rule-left-text-min span::before {
    content: "-";
    margin-right: 4px;
  }
  html[lang=en] .introduction .introduction-bottom .introduction-bottom-left .introduction-bottom-title .jp {
    writing-mode: vertical-rl;
    line-height: 50px;
  }
  html[lang=en] .introduction .introduction-bottom .introduction-bottom-left .introduction-bottom-title .en {
    writing-mode: vertical-rl;
  }
  html[lang=en] .introduction .introduction-bottom .introduction-bottom-left::after {
    margin-top: 50px;
    height: calc(100% - 250px);
  }
  html[lang=en] .introduction .introduction-bottom .introduction-bottom-list li .introduction-bottom-right {
    margin-bottom: 160px;
  }
  html[lang=en] .rule-button-box .button-wrap .rule-button span {
    font-family: var(--font-sub);
  }
  html[lang=en] .mv-heading .btn {
    padding-top: 19px;
    padding-bottom: 15px;
    font-family: var(--font-sub);
  }
  html[lang=en] .rule .rule-left-link {
    font-size: 15px;
    line-height: 22px;
    text-align: left;
    color: #fff;
  }
  html[lang=en] .rule .rule-left-link a {
    background-image: linear-gradient(to right, #fff, #fff); /* 線の色 */
    background-size: 100% 1px; /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
    background-position: bottom; /* 下に配置 */
    background-repeat: no-repeat; /* 背景を繰り返さない */
    padding-bottom: 2px;
  }
  html[lang=en] .rule .rule-left-link a::before {
    content: none;
  }
  html[lang=en] .rule .rule-left-link a::after {
    content: none;
  }
  .mv-heading {
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .mv-heading .btn {
    padding-top: 17px;
    padding-bottom: 17px;
    padding-left: 45px;
    padding-right: 45px;
    background-color: #fff;
    font-family: var(--font-main-bold);
    font-weight: var(--weight-bold);
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    color: #ab8959;
    display: block;
    margin-top: 27px;
    border: 1px solid #fff;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  section {
    position: relative;
  }
}
.rule .mv-heading img {
  width: 76px;
}

footer {
  position: relative;
}

.lang {
  z-index: 1;
  position: fixed;
  left: 0;
  top: 0;
}/*# sourceMappingURL=index.css.map */