@charset "UTF-8";
* {
  box-sizing: border-box;
  word-break: break-word;
}

img {
  max-width: 100%;
}

a.link-tel {
  text-decoration: underline;
}
@media (min-width: 769px) {
  a.link-tel {
    text-decoration: none;
    pointer-events: none;
  }
}

a.disable {
  pointer-events: none;
}

.txt-underline {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .pc-visible {
    display: none;
  }
}

@media (min-width: 769px) {
  .sp-visible {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none; /* リンクを無効化 */
    cursor: default; /* カーソルを通常に */
  }
}
.font-en {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

@-webkit-keyframes arrowSlider {
  100% {
    transform: translateX(150%);
  }
}
@-moz-keyframes arrowSlider {
  100% {
    transform: translateX(150%);
  }
}
@keyframes arrowSlider {
  100% {
    transform: translateX(150%);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@-webkit-keyframes slideUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-moz-keyframes slideUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes bgSliderL {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  40% {
    opacity: 0;
  }
  51% {
    opacity: 0.3;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@-moz-keyframes bgSliderL {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  40% {
    opacity: 0;
  }
  51% {
    opacity: 0.3;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes bgSliderL {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  40% {
    opacity: 0;
  }
  51% {
    opacity: 0.3;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@-webkit-keyframes bgMenuSliderL {
  0% {
    opacity: 1;
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@-moz-keyframes bgMenuSliderL {
  0% {
    opacity: 1;
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes bgMenuSliderL {
  0% {
    opacity: 1;
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@-webkit-keyframes bgSliderR {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
@-moz-keyframes bgSliderR {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
@keyframes bgSliderR {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
/* ボタン用のゆらぎアニメーション */
@keyframes css-wobble {
  0% {
    transform: scale(1) rotate(-5deg);
  }
  100% {
    transform: scale(1.05) rotate(5deg);
  }
}
/* メインビジュアル用の大きなゆらぎアニメーション */
@keyframes css-wobble-large {
  0% {
    transform: scale(1) rotate(-3deg);
  }
  100% {
    transform: scale(1.05) rotate(3deg);
  }
}
@keyframes scrollDonwIcon {
  0% {
    transform: translate3d(0, -3.125rem, 0) scale(0.5);
    opacity: 0;
  }
  40% {
    transform: translate3d(0, 0.1875rem, 0) scale(1);
    opacity: 1;
  }
  to {
    transform: translate3d(0, 0.1875rem, 0) scale(0.5);
    opacity: 0;
  }
}
@keyframes scrollDonwIconSP {
  0% {
    transform: translate3d(0, -1.5625rem, 0) scale(0.5);
    opacity: 0;
  }
  40% {
    transform: translate3d(0, 0.09375rem, 0) scale(1);
    opacity: 1;
  }
  to {
    transform: translate3d(0, 0.09375rem, 0) scale(0.5);
    opacity: 0;
  }
}
@keyframes scrollDonwLine {
  0% {
    transform: translate3d(0, -100%, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    transform: translate3d(0, 150%, 0);
    opacity: 0;
  }
}
@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
@keyframes slidein {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}
/* 横スクロール（無限ループ）（PC用） */
@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
/* 横スクロール （無限ループ）（SP用） */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes telop-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.terms-content {
  position: relative;
}
.terms-content .terms-content__inner {
  padding: 60px 0 60px 0;
  position: relative;
  margin: 0 auto;
  width: calc(100% - 120px);
}
.terms-content .terms-content__inner .terms-row .terms-row__item {
  margin-top: 40px;
  color: #fff;
}
.terms-content .terms-content__inner .terms-row .terms-row__item:first-child {
  margin-top: 0;
}
.terms-content .terms-content__inner .terms-row .terms-row__item .ttl {
  font-weight: 600;
  font-size: 26px;
  line-height: 44px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(222, 181, 35, 0.3);
}
.terms-content .terms-content__inner .terms-row .terms-row__item .terms-row__item__content {
  margin-top: 30px;
}
.terms-content .terms-content__inner .terms-row .terms-row__item .terms-row__item__content .article-number {
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
}
.terms-content .terms-content__inner .terms-row .terms-row__item .terms-row__item__content .terms-row__item__content__txt {
  margin-top: 10px;
  font-size: 16px;
  line-height: 30px;
}
.terms-content .terms-content__inner .terms-row .terms-row__item .terms-row__item__content .terms-row__item__content__txt a {
  text-decoration: underline;
}
.terms-content .terms-content__inner .terms-row .terms-row__item .terms-row__item__content .terms-row__item__content__txt-indent {
  padding-left: 15px;
}
@media (max-width: 768px) {
  .terms-content .terms-content__inner {
    padding: 30px 0 0 0;
    width: calc(100% - 46px);
    display: block;
  }
  .terms-content .terms-content__inner .terms-row .terms-row__item {
    margin-top: 30px;
  }
  .terms-content .terms-content__inner .terms-row .terms-row__item .ttl {
    font-size: 18px;
    line-height: 32px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(222, 181, 35, 0.3);
  }
  .terms-content .terms-content__inner .terms-row .terms-row__item .terms-row__item__content {
    margin-top: 20px;
  }
  .terms-content .terms-content__inner .terms-row .terms-row__item .terms-row__item__content .article-number {
    font-size: 16px;
    line-height: 24px;
  }
  .terms-content .terms-content__inner .terms-row .terms-row__item .terms-row__item__content .terms-row__item__content__txt {
    margin-top: 10px;
    font-size: 14px;
    line-height: 24px;
  }
}
/*# sourceMappingURL=map/terms.css.map */