@charset "UTF-8";
@import url("assets/scss/reset.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap");
@import url("https://use.typekit.net/ern2bwa.css");
/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

@media screen and (max-width: 959px) {
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  .pc_only {
    display: block;
  }
  .sp_only {
    display: none !important;
  }
}
body {
  color: #111111 !important;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.2;
  font-size: 14px;
}
@media (max-width: 959px) {
  body {
    font-size: 3.733vw;
  }
}
body input,
body button {
  font-family: inherit;
}
body a {
  color: inherit;
}
body p {
  line-height: 1.8;
}
body strong {
  font-weight: bold;
}
body .underline {
  text-decoration: underline;
}
body img {
  max-width: 100%;
  height: auto;
}
body iframe {
  max-width: 100%;
}
@media screen and (min-width: 960px) {
  body a {
    transition: 0.3s;
  }
  body a:hover {
    opacity: 0.6;
  }
}
body.is-active {
  position: relative;
  z-index: 0;
}
body.is-active:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 12;
  pointer-events: auto;
}
body.is-active main {
  pointer-events: none;
}

.container {
  width: 1216px;
  max-width: 100%;
  margin: auto;
  box-sizing: border-box;
  padding: 0 8px;
}
@media screen and (max-width: 959px) {
  .container {
    padding: 0 6vw;
  }
}

ul.normal-list li {
  line-height: 1.8;
  padding-left: 1.4em;
  position: relative;
}
ul.normal-list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0.5em;
}

ol.normal-list {
  list-style: decimal;
  padding-left: 2em;
}
ol.normal-list li {
  line-height: 1.8;
}

.ta-center {
  text-align: center;
}

.white {
  color: #fff;
}

.bg-main-color {
  background-color: #445162;
}

.bg-light-gray {
  background-color: rgba(68, 81, 98, 0.01);
}

.mt-30 {
  margin-top: 30px;
}
@media screen and (max-width: 959px) {
  .mt-30 {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}

.mt-50 {
  margin-top: 50px;
}
@media screen and (max-width: 959px) {
  .mt-50 {
    margin-top: calc(50 * 2 / 10 * 1vw);
  }
}

.mt-80 {
  margin-top: 80px;
}
@media screen and (max-width: 959px) {
  .mt-80 {
    margin-top: calc(80 * 2 / 10 * 1vw);
  }
}

.col-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4em 2em;
}
@media screen and (max-width: 959px) {
  .col-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 959px) and (max-width: 959px) {
  .col-4 {
    gap: 3em 1em;
  }
}

.col-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4em 2em;
}
@media screen and (max-width: 959px) {
  .col-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 959px) and (max-width: 959px) {
  .col-2 {
    gap: 3em 1em;
  }
}

.logo-text {
  font-size: 36px;
}
.logo-text.white {
  color: #fff;
}
@media screen and (max-width: 959px) {
  .logo-text {
    font-size: 24px;
  }
}

.header {
  padding: 20px 0;
  width: 100%;
  top: 0;
  left: 0;
  transition: 0.2s;
  position: fixed;
  z-index: 20;
}
@media screen and (max-width: 959px) {
  .header {
    padding: 3vw 0;
  }
}
.header.has-color {
  background-color: #fff;
}
.header.is-active {
  background-color: transparent !important;
}
.header__wrap {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 21;
}
@media screen and (max-width: 959px) {
  .header__wrap {
    padding-left: calc(20 * 2 / 10 * 1vw);
    padding-right: calc(20 * 2 / 10 * 1vw);
  }
}
.header__navi {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__sp-menu {
  margin-left: 20px;
}
@media screen and (max-width: 959px) {
  .header__sp-menu {
    margin-left: calc(20 * 2 / 10 * 1vw);
  }
}
.header__sp-menu .sp-menu__sns-block {
  display: none;
}
@media screen and (max-width: 959px) {
  .header__sp-menu {
    margin-left: 0px;
    position: relative;
    z-index: 0;
  }
}
@media screen and (max-width: 959px) and (max-width: 959px) {
  .header__sp-menu {
    margin-left: calc(0 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .header__sp-menu .sp-menu__sns-block {
    display: block;
    position: absolute;
    top: 250%;
    left: 0;
    width: 100%;
  }
  .header__sp-menu .sp-menu__sns-block .sns-block__wrap {
    flex-direction: column;
    gap: 1.4vw;
  }
  .header__sp-menu .sp-menu__sns-block .sns-block__wrap a {
    width: 6vw;
  }
  /* insels-salon詳細ページでモバイル表示時にSNSアイコンを非表示 */
  body.page-insels-salon-detail-mobile .header__sp-menu .sp-menu__sns-block {
    display: none !important;
  }
  body.page-insels-salon-detail-mobile .footer__sns-block {
    display: none !important;
  }
  body.page-insels-salon-detail-mobile .page-insels-salon-detail {
    margin-top: 30px !important;
  }
  /* horse-list詳細ページでモバイル表示時にSNSアイコンを非表示 */
  body.page-horse-list-detail-mobile .header__sp-menu .sp-menu__sns-block {
    display: none !important;
  }
  body.page-horse-list-detail-mobile .footer__sns-block {
    display: none !important;
  }
  body.page-horse-list-detail-mobile .page-horse-list-detail {
    margin-top: 64px !important;
  }
  /* offer-horse-list詳細ページでモバイル表示時にSNSアイコンを非表示 */
  body.page-offer-horse-detail-mobile .header__sp-menu .sp-menu__sns-block {
    display: none !important;
  }
  body.page-offer-horse-detail-mobile .footer__sns-block {
    display: none !important;
  }
  body.page-offer-horse-detail-mobile .page-offer-horse-detail {
    margin-top: 120px !important;
  }
}
.header__logo {
  max-width: 230px;
  width: 100%;
}
@media screen and (max-width: 959px) {
  .header__logo {
    max-width: 35vw;
  }
  .header__logo img {
    width: 100%;
  }
}
@media screen and (max-width: 959px) {
  .header__sns-block {
    display: none;
  }
}

.header-navi {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-navi__item {
  text-transform: uppercase;
  font-size: 16px;
}
@media screen and (max-width: 959px) {
  .header-navi__item {
    display: none;
  }
}

.menu-trigger {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  padding: 0 !important;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  width: 40px;
  height: 30px;
}
@media screen and (max-width: 959px) {
  .menu-trigger {
    width: 8vw;
    height: 5vw;
  }
}
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 50%;
  transform: translate(0, -50%);
}
.menu-trigger span:nth-of-type(3) {
  left: inherit;
  bottom: 0;
}
.menu-trigger.has-color span {
  background-color: #111111;
}
.menu-trigger.is-active span {
  background-color: #fff !important;
}
.menu-trigger.is-active span:nth-of-type(1) {
  transform: translate(0, -50%) rotate(-45deg);
  top: 50%;
}
.menu-trigger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.is-active span:nth-of-type(3) {
  transform: translate(0, -50%) rotate(45deg);
  top: 50%;
}

.sp-navi {
  width: 560px;
  height: 100%;
  overflow-y: scroll;
  position: fixed;
  padding-top: 0;
  top: 0;
  right: 0;
  z-index: 20;
  background-color: #445162;
  transition: all 0.3s cubic-bezier(0.5, 0, 0, 1);
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
}
@media screen and (max-width: 959px) {
  .sp-navi {
    width: 100%;
  }
}
.sp-navi.is-active {
  transform: translateY(0%);
  transition: all 0.3s cubic-bezier(0.5, 0, 0, 1);
  opacity: 1;
  pointer-events: auto;
}
.sp-navi__link {
  margin-top: 100px;
}
@media screen and (max-width: 959px) {
  .sp-navi__link {
    margin-top: calc(100 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .sp-navi__link {
    margin-top: 120px;
  }
}
@media screen and (max-width: 959px) and (max-width: 959px) {
  .sp-navi__link {
    margin-top: calc(120 * 2 / 10 * 1vw);
  }
}

.sp-navi-link {
  padding-left: 2.5em;
  padding-bottom: 4em;
  box-sizing: border-box;
}
@media screen and (max-width: 959px) {
  .sp-navi-link {
    padding-left: 4vw;
    padding-right: 4vw;
    padding-bottom: 4vw;
  }
}
.sp-navi-link__block:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 959px) {
  .sp-navi-link__block:not(:first-child) {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.sp-navi-link__block a {
  display: inline-block;
}
.sp-navi-link__block > li {
  color: #fff;
}
.sp-navi-link__block > li:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 959px) {
  .sp-navi-link__block > li:not(:first-child) {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.sp-navi-link__block > li > ul {
  color: #acacac;
}
.sp-navi-link__block > li > ul > li {
  margin-top: 20px;
  font-size: 14px;
  padding-left: 1.2em;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 959px) {
  .sp-navi-link__block > li > ul > li {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media (max-width: 959px) {
  .sp-navi-link__block > li > ul > li {
    font-size: 3.2vw;
  }
}
.sp-navi-link__block > li > ul > li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.8em;
  height: 1px;
  background-color: #acacac;
}
.sp-navi-link__sp-only {
  display: none;
}
@media screen and (max-width: 959px) {
  .sp-navi-link__sp-only {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .sp-navi-link__sp-only li {
    margin: 0 !important;
    width: 50%;
  }
  .sp-navi-link__sp-only li a {
    width: 100%;
  }
}

.form-table {
  font-size: 15px;
}
.form-table__wrap {
  position: relative;
}
.form-table__wrap::after {
  content: "";
  display: block;
  width: 300px;
  height: 100%;
  background-color: #f4f4f4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.form-table div[data-formrun-show-if-error] {
  margin-top: 8px;
  color: red;
}
@media screen and (max-width: 959px) {
  .form-table div[data-formrun-show-if-error] {
    font-size: 12px;
  }
}
.form-table__row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #bcbcbc;
  position: relative;
  z-index: 3;
}
.form-table__row:first-child {
  border-top: 1px solid #bcbcbc;
}
.form-table__row.block {
  display: block;
  text-align: center;
  margin-top: 60px;
  border-bottom: 0;
  border-top: 0;
}
.form-table__head {
  width: 300px;
  padding: 0 24px;
  line-height: 1.4;
  box-sizing: border-box;
}
.form-table__head span {
  font-size: 10px;
  display: inline-block;
  border: 1px solid #87b4d0;
  padding: 2px 10px;
  border-radius: 100px;
  vertical-align: middle;
  margin-left: 12px;
  background-color: #87b4d0;
  color: #fff;
}
.form-table__body {
  flex: 1;
  padding: 24px;
  box-sizing: border-box;
}
.form-table__body.flex {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 959px) {
  .form-table {
    font-size: 14px;
  }
  .form-table__wrap::after {
    display: none;
  }
  .form-table__row {
    flex-direction: column;
    padding: 20px 0;
  }
  .form-table__row.block {
    margin-top: 30px;
  }
  .form-table__head {
    width: 100%;
    font-size: 14px;
    padding: 0;
    margin-bottom: 12px;
  }
  .form-table__head span {
    font-size: 12px;
  }
  .form-table__body {
    width: 100%;
    padding: 0;
  }
}
.form-table label {
  display: block;
  margin-bottom: 12px;
}
.form-table label input[type=checkbox] {
  display: none;
}
.form-table label input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.form-table label input[type=checkbox] + span {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
}
.form-table label input[type=checkbox] + span::before {
  background: #fff;
  border: 1px solid #111111;
  border-radius: 3px;
  content: "";
  display: block;
  height: 16px;
  left: 0;
  margin-top: -10px;
  position: absolute;
  top: 50%;
  width: 16px;
}
.form-table label input[type=checkbox] + span::after {
  border-right: 3px solid #111111;
  border-bottom: 3px solid #111111;
  content: "";
  display: block;
  height: 9px;
  left: 6px;
  margin-top: -8px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
}
.form-table label input[type=radio] {
  display: none;
}
.form-table label input[type=radio]:checked + span::after {
  opacity: 1;
}
.form-table label input[type=radio] + span {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
}
.form-table label input[type=radio] + span::before {
  background: #fff;
  border: 1px solid #111111;
  border-radius: 100%;
  content: "";
  display: block;
  height: 18px;
  left: 0;
  margin-top: -10px;
  position: absolute;
  top: 50%;
  width: 18px;
}
.form-table label input[type=radio] + span::after {
  content: "";
  display: block;
  left: 5px;
  margin-top: -5px;
  opacity: 0;
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #111111;
}
.form-table input[type=text],
.form-table input[type=tel],
.form-table input[type=email],
.form-table textarea {
  font-size: 15px;
  padding: 15px 24px;
  border: 0;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
  font-weight: bold;
  background-color: #f4f4f4;
}
.form-table input[type=text]::-moz-placeholder, .form-table input[type=tel]::-moz-placeholder, .form-table input[type=email]::-moz-placeholder, .form-table textarea::-moz-placeholder {
  font-size: 15px;
  font-weight: bold;
  color: #ddd;
}
.form-table input[type=text]::placeholder,
.form-table input[type=tel]::placeholder,
.form-table input[type=email]::placeholder,
.form-table textarea::placeholder {
  font-size: 15px;
  font-weight: bold;
  color: #ddd;
}
@media screen and (max-width: 959px) {
  .form-table input[type=text],
  .form-table input[type=tel],
  .form-table input[type=email],
  .form-table textarea {
    font-size: 14px;
    padding: 18px 22px;
  }
  .form-table input[type=text]::-moz-placeholder, .form-table input[type=tel]::-moz-placeholder, .form-table input[type=email]::-moz-placeholder, .form-table textarea::-moz-placeholder {
    font-size: 16px;
  }
  .form-table input[type=text]::placeholder,
  .form-table input[type=tel]::placeholder,
  .form-table input[type=email]::placeholder,
  .form-table textarea::placeholder {
    font-size: 14px;
  }
}

.wpcf7 form .wpcf7-response-output {
  border: 0 !important;
  padding: 20px !important;
  background-color: rgba(255, 0, 0, 0.3) !important;
  margin: 2em 0 0 0 !important;
  color: red !important;
}
.wpcf7 form.sent .wpcf7-response-output {
  color: #46b450 !important;
  background-color: rgba(70, 180, 80, 0.3) !important;
}

.button-normal {
  display: block;
  background-color: #111111;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 14px;
  padding: 16px 30px 16px 30px;
  font-family: "sweet-sans-pro", sans-serif;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid #111111;
  transition: 0.2s;
  cursor: pointer;
}
@media (max-width: 959px) {
  .button-normal {
    font-size: 4.267vw;
  }
}
.button-normal:hover {
  background-color: #fff;
  color: #111111;
  opacity: 1;
}
@media screen and (max-width: 959px) {
  .button-normal {
    padding: 2.8vw 4.8vw 2.8vw 4.8vw;
  }
}
.button-normal--flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 959px) {
  .button-normal--flex {
    gap: 6vw;
  }
}
.button-normal__icon {
  width: 30px;
}
.button-normal__icon img {
  width: 100%;
}
@media screen and (max-width: 959px) {
  .button-normal__icon {
    width: 8vw;
  }
}
.button-normal.--white {
  background-color: #fff;
  color: #9fa0a0;
  border: unset;
}
.button-normal.--white:hover {
  background-color: #9fa0a0;
  color: #fff;
  opacity: 1;
}
.button-normal.--darkblue {
  background-color: #445162;
}

.cvp-btn {
  display: block;
  color: #fff;
  font-size: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 959px) {
  .cvp-btn {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 959px) {
  .cvp-btn {
    padding-top: calc(10 * 2 / 10 * 1vw);
    padding-bottom: calc(10 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .cvp-btn {
    padding-left: calc(20 * 2 / 10 * 1vw);
    padding-right: calc(20 * 2 / 10 * 1vw);
  }
}
.cvp-btn.entry {
  background-color: #a9b7ca;
  border: 1px solid #a9b7ca;
}
.cvp-btn.login {
  background-color: #3d5372;
  border: 1px solid #3d5372;
  font-family: "sweet-sans-pro", sans-serif;
}
.cvp-btn.white {
  background-color: #fff;
  color: #9fa0a0;
}
@media screen and (max-width: 959px) {
  .cvp-btn {
    padding: 2vw 0;
    display: inline-block;
  }
}
.cvp-btn--flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 959px) {
  .cvp-btn--flex {
    gap: 4vw;
    justify-content: center;
  }
}
.cvp-btn__icon {
  width: 12px;
}
.cvp-btn__icon img {
  width: 100%;
}
@media screen and (max-width: 959px) {
  .cvp-btn__icon {
    width: 3vw;
  }
}

.button-double-arrow {
  display: block;
  color: #fff;
  font-size: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  transition: 0.2s;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 959px) {
  .button-double-arrow {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 959px) {
  .button-double-arrow {
    padding-top: calc(20 * 2 / 10 * 1vw);
    padding-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .button-double-arrow {
    padding-left: calc(24 * 2 / 10 * 1vw);
    padding-right: calc(24 * 2 / 10 * 1vw);
  }
}
.button-double-arrow.white {
  background-color: #fff;
  color: #9fa0a0;
}
.button-double-arrow.gray {
  background-color: #9fa0a0;
  color: #fff;
}
.button-double-arrow.white-border {
  border: 1px solid #fff;
  background-color: unset;
  color: #fff;
}
.button-double-arrow--flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 959px) {
  .button-double-arrow--flex {
    gap: 6vw;
    justify-content: center;
  }
}
.button-double-arrow__icon {
  width: 12px;
}
.button-double-arrow__icon img {
  width: 100%;
}
@media screen and (max-width: 959px) {
  .button-double-arrow__icon {
    width: 4vw;
  }
}

.footer {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #111111;
  color: #fff;
}
@media screen and (max-width: 959px) {
  .footer {
    padding-top: calc(40 * 2 / 10 * 1vw);
    padding-bottom: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .footer {
    padding: 60px 0 30px 0;
    margin-bottom: 40px;
  }
}
.footer__wrap {
  display: flex;
}
@media screen and (max-width: 959px) {
  .footer__wrap {
    flex-direction: column;
  }
}
.footer__bottom-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
}
@media screen and (max-width: 959px) {
  .footer__bottom-block {
    margin-top: calc(60 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .footer__bottom-block {
    flex-direction: column;
    gap: 10vw;
    align-items: flex-start;
  }
}
.footer__bottom-link {
  display: flex;
}
.footer__menu-block {
  flex: 1;
  padding-left: 60px;
  margin-left: 60px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 959px) {
  .footer__menu-block {
    padding-left: calc(60 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .footer__menu-block {
    margin-left: calc(60 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .footer__menu-block {
    flex-direction: column;
    padding-left: 20px;
    margin-left: 0px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 959px) and (max-width: 959px) {
  .footer__menu-block {
    padding-left: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) and (max-width: 959px) {
  .footer__menu-block {
    margin-left: calc(0 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) and (max-width: 959px) {
  .footer__menu-block {
    margin-top: calc(40 * 2 / 10 * 1vw);
  }
}
.footer__menu-block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
}
@media screen and (max-width: 959px) {
  .footer__logo {
    width: 50vw;
  }
  .footer__logo img {
    width: 100%;
  }
}
.footer__navi-block {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 959px) {
  .footer__navi-block {
    flex-direction: column;
    gap: 10vw;
  }
}
.footer__banner {
  max-width: 230px;
}
@media screen and (max-width: 959px) {
  .footer__banner {
    max-width: 60vw;
  }
  .footer__banner img {
    width: 100%;
  }
}
.footer__sns-block {
  margin-top: 30px;
}
@media screen and (max-width: 959px) {
  .footer__sns-block {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .footer__sns-block img {
    width: 10vw;
  }
}

.footer-navi {
  display: flex;
  gap: 40px;
}
.footer-navi__item {
  font-size: 14px;
  box-sizing: border-box;
  text-transform: uppercase;
}
@media (max-width: 959px) {
  .footer-navi__item {
    font-size: 3.733vw;
  }
}
@media screen and (max-width: 959px) {
  .footer-navi {
    gap: 6vw;
    flex-direction: column;
  }
}
.footer-navi__block > li:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 959px) {
  .footer-navi__block > li:not(:first-child) {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.footer-navi__block > li > ul {
  color: #acacac;
}
.footer-navi__block > li > ul > li {
  margin-top: 14px;
  font-size: 14px;
  padding-left: 1.2em;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 959px) {
  .footer-navi__block > li > ul > li {
    margin-top: calc(14 * 2 / 10 * 1vw);
  }
}
@media (max-width: 959px) {
  .footer-navi__block > li > ul > li {
    font-size: 3.2vw;
  }
}
.footer-navi__block > li > ul > li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.8em;
  height: 1px;
  background-color: #acacac;
}

.footer-bottom-link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}
@media (max-width: 959px) {
  .footer-bottom-link {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 959px) {
  .footer-bottom-link {
    flex-wrap: wrap;
    gap: 6vw 0;
  }
  .footer-bottom-link > li {
    width: 50%;
  }
}
.footer-bottom-link a {
  color: #fefefe;
}

.footer-legal {
  font-size: 14px;
  color: #fefefe;
}
@media (max-width: 959px) {
  .footer-legal {
    font-size: 3.2vw;
  }
}

.sns-block__wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 959px) {
  .sns-block__wrap {
    gap: 4vw;
  }
}
@media screen and (max-width: 959px) {
  .sns-block {
    gap: 4vw;
    justify-content: flex-start;
  }
}

.page {
  padding: 80px 12px 80px;
}
@media screen and (max-width: 959px) {
  .page {
    padding: 48px 0px 64px;
  }
}
.page__flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 959px) {
  .page__flex {
    flex-direction: column;
    gap: 1em;
  }
}
.page__flex .flex-1 {
  flex: 1;
}
.page__body {
  margin-top: 40px;
}
@media screen and (max-width: 959px) {
  .page__body {
    margin-top: calc(40 * 2 / 10 * 1vw);
  }
}

.breadcrumb {
  padding-top: 16px;
  padding-bottom: 16px;
  /* padding-left: 40px; */
}
@media screen and (max-width: 959px) {
  .breadcrumb {
    padding-top: calc(16 * 2 / 10 * 1vw);
    padding-bottom: calc(16 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .breadcrumb {
    padding: 14px 0;
  }
}
.breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 0.8em;
  flex-wrap: wrap;
}
@media screen and (max-width: 959px) {
  .breadcrumb ul {
    justify-content: flex-end;
    align-content: flex-end;
  }
}
.breadcrumb li {
  white-space: nowrap;
  font-size: 12px;
}

.breadcrumb li:last-child {
  display: inline-block; 
  white-space: normal;
  word-break: break-word;
  text-align: right;
}

@media (max-width: 959px) {
  .breadcrumb li {
    font-size: 2.933vw;
  }
}
.breadcrumb li a {
  display: flex;
  gap: 0.8em;
  align-items: center;
}
.breadcrumb li a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 9px;
  background-image: url("./assets/images/icon/arrow-right--gray.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 959px) {
  .breadcrumb {
    overflow-x: visible;
  }
}

.main-visual__wrap {
  z-index: 1;
  box-sizing: border-box;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.main-visual__slider {
  height: 100%;
  position: relative;
}
.main-visual__slider:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: rgba(17, 17, 17, 0.4);
}
.main-visual .slider,
.main-visual .slick-list,
.main-visual .slick-track,
.main-visual .slider-item {
  height: 100%;
}
.main-visual .slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media screen and (max-width: 959px) {
  .main-visual .slider-item img {
    width: 100%;
  }
}
.main-visual__title-block {
  position: absolute;
  bottom: 80px;
  left: 110px;
  color: #fff;
}
@media screen and (max-width: 959px) {
  .main-visual__title-block {
    bottom: 10vw;
    left: 4vw;
  }
}
.main-visual__title {
  font-size: 72px;
  line-height: 1;
  font-family: "sweet-sans-pro", sans-serif;
  font-weight: 700;
}
@media (max-width: 959px) {
  .main-visual__title {
    font-size: 8.533vw;
  }
}
.main-visual__text {
  margin-top: 16px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 959px) {
  .main-visual__text {
    margin-top: calc(16 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .main-visual__wrap {
    height: 130vw;
  }
}

.top-news .page__body {
  width: 80%;
  margin-top: 0;
}
@media screen and (max-width: 959px) {
  .top-news .page__body {
    width: 100%;
  }
}
.top-news .heading__button {
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 959px) {
  .top-news .heading__button {
    margin: 30px auto 0 auto;
  }
}
.top-news .news-list {
  border-bottom: 1px solid rgba(20, 20, 20, 0.2);
}
.top-news .news-list__inner {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
  display: block;
}
@media screen and (max-width: 959px) {
  .top-news .news-list__inner {
    padding-top: calc(20 * 2 / 10 * 1vw);
    padding-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .top-news .news-list__inner {
    padding-left: calc(24 * 2 / 10 * 1vw);
    padding-right: calc(24 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .top-news .news-list__inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.top-news .news-list__container {
  display: flex;
  gap: 3em;
  align-items: center;
}
@media screen and (max-width: 959px) {
  .top-news .news-list__container {
    flex-wrap: wrap;
    gap: 1em 1em;
  }
}
.top-news .news-list__date {
  font-family: "sweet-sans-pro", sans-serif;
  font-size: 14px;
  font-weight: 700;
  min-width: 84px;
}
@media (max-width: 959px) {
  .top-news .news-list__date {
    font-size: 3.2vw;
  }
}
.top-news .news-list__category {
  font-size: 14px;
  border: 1px solid #111111;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  white-space: nowrap;
  min-width: 100px;
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 959px) {
  .top-news .news-list__category {
    font-size: 3.2vw;
    min-width: calc(100 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .top-news .news-list__category {
    padding-left: calc(8 * 2 / 10 * 1vw);
    padding-right: calc(8 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .top-news .news-list__category {
    padding-top: calc(4 * 2 / 10 * 1vw);
    padding-bottom: calc(4 * 2 / 10 * 1vw);
  }
}
.top-news .news-list__title {
  display: flex;
  align-items: center;
  gap: 2em;
}
@media screen and (max-width: 959px) {
  .top-news .news-list__title {
    width: 100%;
    gap: 1em;
  }
}
.top-news .news-list__title::after {
  content: "";
  background-image: url(./assets/images/icon/arrow-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: auto;
  aspect-ratio: 16/23;
  min-width: 16px;
}

.how-to-enjoy {
  background-image: url(./assets/images/top/bg-how-to-enjoy.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.how-to-enjoy:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(35, 48, 65, 0.8);
  z-index: 0;
}
.how-to-enjoy .page__heading {
  z-index: 1;
  position: relative;
}
.how-to-enjoy .heading__button {
  display: flex;
  justify-content: center;
  gap: 2em;
}
@media screen and (max-width: 959px) {
  .how-to-enjoy .heading__button {
    flex-direction: column;
    gap: 1em;
    align-items: center;
  }
}
.how-to-enjoy__step-lists {
  display: flex;
  margin-top: 60px;
}
@media screen and (max-width: 959px) {
  .how-to-enjoy__step-lists {
    margin-top: calc(60 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .how-to-enjoy__step-lists {
    flex-direction: column;
  }
}
.how-to-enjoy .step-list {
  width: 33.3333333333%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 240px;
  position: relative;
}
@media screen and (max-width: 959px) {
  .how-to-enjoy .step-list {
    width: 100%;
  }
}
.how-to-enjoy .step-list:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.5);
  z-index: 0;
}
.how-to-enjoy .step-list:not(:last-child):after {
  position: absolute;
  content: "";
  background-image: url(./assets/images/icon/double-arrow-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 50px;
  height: auto;
  aspect-ratio: 25/22;
  align-self: anchor-center;
  right: -25px;
  z-index: 1;
}
@media screen and (max-width: 959px) {
  .how-to-enjoy .step-list:not(:last-child):after {
    transform: rotate(90deg);
    right: 0;
    left: 0;
    margin: auto;
    bottom: -10px;
    width: 20px;
    align-self: self-end;
  }
}
@media screen and (max-width: 959px) {
  .how-to-enjoy .step-list {
    min-height: 200px;
    height: auto;
  }
}
.how-to-enjoy .step-list.--01 {
  background-image: url(./assets/images/top/bg-step-01.png);
}
.how-to-enjoy .step-list.--02 {
  background-image: url(./assets/images/top/bg-step-02.png);
}
.how-to-enjoy .step-list.--03 {
  background-image: url(./assets/images/top/bg-step-03.png);
}
.how-to-enjoy .step-list__container {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  box-sizing: border-box;
  z-index: 1;
}
@media screen and (max-width: 959px) {
  .how-to-enjoy .step-list__container {
    padding-left: calc(20 * 2 / 10 * 1vw);
    padding-right: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .how-to-enjoy .step-list__container {
    padding-top: calc(20 * 2 / 10 * 1vw);
    padding-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
.how-to-enjoy .step-list__heading {
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 959px) {
  .how-to-enjoy .step-list__heading {
    font-size: 5.333vw;
  }
}
.how-to-enjoy .step-list__line {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
@media screen and (max-width: 959px) {
  .how-to-enjoy .step-list__line {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}
.how-to-enjoy .step-list__line:after {
  content: "";
  width: 32px;
  height: 1px;
  background: #fff;
}
.how-to-enjoy .step-list__text {
  margin-top: 12px;
}
@media screen and (max-width: 959px) {
  .how-to-enjoy .step-list__text {
    margin-top: calc(12 * 2 / 10 * 1vw);
  }
}
.how-to-enjoy__button {
  margin: auto;
  margin-top: 60px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 959px) {
  .how-to-enjoy__button {
    margin-top: calc(60 * 2 / 10 * 1vw);
  }
}

.horse-lists__bg {
  background-image: url(./assets/images/top/bg-horse-list.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  position: relative;
}
.horse-lists__bg:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.7);
}
.horse-lists__inner {
  background-color: rgba(255, 255, 255, 0.8);
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 60px;
  z-index: 1;
  position: relative;
  overflow: hidden;
  margin-left: 60px;
}
.horse-lists__inner .container{
  margin-left: 20px;
}
@media screen and (max-width: 959px) {
  .horse-lists__inner {
    padding-top: calc(60 * 2 / 10 * 1vw);
    padding-bottom: calc(60 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .horse-lists__inner {
    padding-left: calc(60 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .horse-lists__inner {
    margin-left: calc(60 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .horse-lists__inner {
    margin-left: 0;
    padding-left: 0;
  }
}
@media screen and (min-width: 1800px) {
  .horse-lists__inner {
    margin-left: 15vw;
  }
}
.horse-lists__text {
  margin-top: 30px;
  margin-bottom: 16px;
}
@media screen and (max-width: 959px) {
  .horse-lists__text {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.horse-lists__buttons {
  display: flex;
  gap: 1em;
  align-items: center;
}
#current-horse-section .horse-lists__buttons {
  margin-right: 40px;
}
.horse-lists__arrow {
  display: flex;
  gap: 1em;
}
.horse-lists__arrow .slider-prev,
.horse-lists__arrow .slider-next {
  width: 40px;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 959px) {
  .horse-lists__arrow .slider-prev,
  .horse-lists__arrow .slider-next {
    width: 30px;
  }
}
.horse-lists__slider {
  overflow: hidden;
  margin-right: calc(50% - 50vw);
  margin-top: 30px;
}
@media screen and (max-width: 959px) {
  .horse-lists__slider {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.horse-lists__slider .horse-lists .slick-slide {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
@media screen and (max-width: 959px) {
  .horse-lists__slider .horse-lists .slick-slide {
    margin: 0 0 0 0 !important;
  }
}
.horse-lists .offer-horse-lists {
  max-width: 1400px;
  max-height: 660px;
}

.horse-lists .offer-horse-lists .slick-slide > div {
  margin-bottom: 40px;
}
@media screen and (max-width: 959px) {
  .horse-lists .offer-horse-lists .slick-slide > div {
    margin-bottom: calc(40 * 2 / 10 * 1vw);
  }
}
.horse-lists .offer-horse-list .image img {
  aspect-ratio: 255/168;
  width: 100%;
  height: 100%;
  min-width: 200px;
  max-width: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.horse-lists .offer-horse-list__text-block {
  margin-top: 8px;
  padding-left: 8px;
  /* padding-right: 8px; */
  box-sizing: border-box;
}
@media screen and (max-width: 959px) {
  .horse-lists .offer-horse-list__text-block {
    margin-top: calc(16 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .horse-lists .offer-horse-list__text-block {
    padding-left: calc(16 * 2 / 10 * 1vw);
    /* padding-right: calc(16 * 2 / 10 * 1vw); */
  }
}
.horse-lists .offer-horse-list__kind {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
.horse-lists .offer-horse-list__kind .requirement {
  border: 1px solid #111111;
  padding-left: 8px;
  padding-right: 8px;
  font-size: 12px;
}
@media screen and (max-width: 959px) {
  .horse-lists .offer-horse-list__kind .requirement {
    padding-left: calc(8 * 2 / 10 * 1vw);
    padding-right: calc(8 * 2 / 10 * 1vw);
  }
}
@media (max-width: 959px) {
  .horse-lists .offer-horse-list__kind .requirement {
    font-size: 3.2vw;
  }
}
.horse-lists .offer-horse-list__kind .kind {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  font-size: 14px;
}
@media (max-width: 959px) {
  .horse-lists .offer-horse-list__kind .kind {
    font-size: 3.733vw;
  }
}
.horse-lists .offer-horse-list .name {
  font-weight: bold;
  padding-bottom: 4px;
  border-bottom: 1px solid #d8d8d8;
  /* max-width: 260px; */
  font-size: 14px;
  margin-top: 10px;
}
@media screen and (max-width: 959px) {
  .horse-lists .offer-horse-list .name {
    padding-bottom: calc(4 * 2 / 10 * 1vw);
  }
}
@media (max-width: 959px) {
  .horse-lists .offer-horse-list .name {
    font-size: 3.733vw;
  }
}
@media screen and (max-width: 959px) {
  .horse-lists .offer-horse-list .name {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}
.horse-lists .offer-horse-list__amount {
  font-size: 14px;
  display: flex;
  gap: 1em;
  margin-top: 10px;
  flex-wrap: wrap;
}
@media (max-width: 959px) {
  .horse-lists .offer-horse-list__amount {
    font-size: 3.733vw;
  }
}
@media screen and (max-width: 959px) {
  .horse-lists .offer-horse-list__amount {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}
.horse-lists .offer-horse-list__amount .amount {
  display: flex;
}
.horse-lists .slick-slide {
  margin-left: 20px;
  margin-right: 20px;
}
.horse-lists .slick-slide .offer-horse-list {
  min-height: 280px;
}
@media screen and (max-width: 959px) {
  .horse-lists .slick-slide {
    margin-left: calc(20 * 2 / 10 * 1vw);
    margin-right: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .horse-lists .slick-slide {
    margin: 0 20px 0 0;
  }
}
.horse-lists .slick-list {
  margin-left: -20px;
  margin-right: -20px;
  padding: 0 12% 0 0 !important;
}
@media screen and (max-width: 959px) {
  .horse-lists .slick-list {
    margin-left: calc(-20 * 2 / 10 * 1vw);
    margin-right: calc(-20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .horse-lists .slick-list {
    margin: 0;
  }
}
/* .horse-lists .horse-lists-slider .slick-list{
  padding: 0 0 0 0 !important;
} */
.horse-lists .horse-list__image {
  overflow: hidden;
}
.horse-lists .horse-list__image img {
  aspect-ratio: 480/304;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  max-width: 300px;
}
.horse-lists .horse-list__text-block {
  background-color: #fff;
  padding-left: 14px;
  padding-right: 14px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 14px;
  max-width: 268px;
}
@media screen and (max-width: 959px) {
  .horse-lists .horse-list__text-block {
    padding-left: calc(16 * 2 / 10 * 1vw);
    padding-right: calc(16 * 2 / 10 * 1vw);
    max-width: 300px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 959px) {
  .horse-lists .horse-list__text-block {
    padding-top: calc(16 * 2 / 10 * 1vw);
    padding-bottom: calc(16 * 2 / 10 * 1vw);
  }
}
@media (max-width: 959px) {
  .horse-lists .horse-list__text-block {
    font-size: 3.467vw;
  }
}
.horse-lists .horse-list__name {
  font-weight: 600;
}
.horse-lists .horse-list__detail {
  display: flex;
  gap: 1em;
  margin-top: 6px;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 959px) {
  .horse-lists .horse-list__detail {
    margin-top: calc(6 * 2 / 10 * 1vw);
  }
}
.horse-lists .horse-list__detail .kind {
  display: flex;
  gap: 1em;
}
.horse-lists .horse-list__detail .line {
  position: relative;
  width: 1px;
  height: 14px;
}
.horse-lists .horse-list__detail .line:before {
  position: absolute;
  right: 0;
  align-self: anchor-center;
  content: "";
  width: 100%;
  height: 100%;
  background: #111111;
}

.information .page__body {
  margin-top: 40px;
}
@media screen and (max-width: 959px) {
  .information .page__body {
    margin-top: calc(40 * 2 / 10 * 1vw);
  }
}
.information__custom-scrollbar {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 6px;
  background: #d8d8d8;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1.5px #445162;
  margin-top: 10px;
  cursor: pointer;
}
@media screen and (max-width: 959px) {
  .information__custom-scrollbar {
    max-width: 94vw;
  }
}
.information__custom-scrollbar-thumb {
  position: absolute;
  top: -50%;
  left: 0;
  height: 180%;
  background: #fff;
  border-radius: 20px;
  transition: opacity 0.3s;
  cursor: grab;
}
.information__custom-scrollbar-thumb:active {
  cursor: grabbing;
}
#offer-horse-section .information__custom-scrollbar,
#current-horse-section .information__custom-scrollbar {
  box-shadow: none;
  height: 4px;
  background: #bcbcbc;
}
#offer-horse-section .information__custom-scrollbar-thumb {
  background: #9fa0a0;
  height: 240%;
  top: -80%;
}
#current-horse-section .information__custom-scrollbar-thumb {
  background: #9fa0a0;
  height: 240%;
  top: -80%;
  /* top: -50%; */
}
.information__block:not(:first-child) {
  margin-top: 80px;
}
@media screen and (max-width: 959px) {
  .information__block:not(:first-child) {
    margin-top: calc(80 * 2 / 10 * 1vw);
  }
}
.information__slide {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 280px;
  gap: 2rem;
  margin-right: calc(50% - 50vw);
  padding-right: 3em;
  padding-bottom: 40px;
}
@media screen and (max-width: 959px) {
  .information__slide {
    padding-bottom: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (min-width: 1900px) {
  .information__slide {
    margin-right: calc(50% - 30vw);
  }
}
@media screen and (min-width: 1700px) {
  .information__slide {
    margin-right: calc(50% - 40vw);
  }
}
.information__slide.custom-scroll {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.information__slide.custom-scroll::-webkit-scrollbar {
  display: none;
}
.information__slide .offer-horse-list,
.information__slide .horse-list {
  width: 100%;
  min-width: 0;
}
.information__column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4em 2em;
}
@media screen and (max-width: 959px) {
  .information__column {
    grid-template-columns: repeat(2, 1fr);
    gap: 2em 1em;
  }
}
.information__page-nav {
  margin-top: 45px;
}
@media screen and (max-width: 959px) {
  .information__page-nav {
    margin-top: calc(45 * 2 / 10 * 1vw);
  }
}
.information__page-nav ul {
  display: flex;
  justify-content: center;
  gap: 0.4em;
}
.information__page-nav ul li {
  width: 40px;
  height: 40px;
  font-family: "sweet-sans-pro", sans-serif;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
@media (max-width: 959px) {
  .information__page-nav ul li {
    font-size: 4.8vw;
  }
}
.information__page-nav ul li.active {
  color: #fff;
  background-color: #111111;
}
.information__page-link {
  margin-top: 30px;
}
@media screen and (max-width: 959px) {
  .information__page-link {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.information__page-link ul {
  display: flex;
  justify-content: center;
  gap: 6em;
}
@media screen and (max-width: 959px) {
  .information__page-link ul {
    justify-content: space-between;
    gap: unset;
  }
}
.information__page-link ul li {
  font-family: "sweet-sans-pro", sans-serif;
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 959px) {
  .information__page-link ul li {
    font-size: 4.8vw;
  }
}
.information__page-link ul li a {
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.information__page-link ul .prev img,
.information__page-link ul .next img {
  width: 12px;
  height: auto;
  aspect-ratio: 3/4;
  margin-right: 4px;
  margin-left: 4px
}

/* PREV/NEXTの無効状態スタイル */
.information__page-link ul li span.disabled {
  display: flex;
  align-items: center;
  gap: 0.6em;
  color: #999999;
  cursor: default;
}

.information__page-link ul li span.disabled img {
  opacity: 0.2;
}
.information__categories ul li {
  color: #999999;
  font-size: 18px;
}
@media (max-width: 959px) {
  .information__categories ul li {
    font-size: 3.733vw;
  }
}
.information__categories ul li.active {
  color: #111111;
}
.information__categories ul li a {
  display: flex;
  gap: 0.6em;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 959px) {
  .information__categories ul li a {
    padding-top: calc(10 * 2 / 10 * 1vw);
    padding-bottom: calc(10 * 2 / 10 * 1vw);
  }
}
.information__categories ul li a:before {
  content: "";
  width: 32px;
  height: 1px;
  background: #999999; /* 非アクティブ時は文字と同じ色 */
}

.information__categories ul li.active a:before {
  background: #111111; /* アクティブ時は濃いグレー */
}
.information .information-column__thumbnail {
  aspect-ratio: 35/21;
  overflow: hidden;
  position: relative;
}
.information .information-column__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.information .information-column.new .information-column__thumbnail::before {
  width: 76px;
  height: 76px;
  content: '';
  background: url('./assets/images/icon-badge-new.svg') left top no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 959px) {
  .information .information-column.new .information-column__thumbnail::before {
    width: 38px;
    height: 38px;
  }
}
.information .information-column__date {
  margin-top: 24px;
  margin-bottom: 8px;
  font-family: "sweet-sans-pro", sans-serif;
}
@media screen and (max-width: 959px) {
  .information .information-column__date {
    margin-top: calc(24 * 2 / 10 * 1vw);
    margin-bottom: calc(8 * 2 / 10 * 1vw);
  }
}
.information .information-column__track-type {
  margin-bottom: 8px;
}
.information .information-column__track-type .information-column__order-text {
  margin-left: 0.5em;
}
@media screen and (max-width: 959px) {
  .information .information-column__track-type {
    margin-bottom: calc(8 * 2 / 10 * 1vw);
  }
}
.information .information-column__title {
  margin-top: 0;
}
.information .information-column__title + .information-column__title {
  margin-top: 8px;
}
@media screen and (max-width: 959px) {
  .information .information-column__title {
    margin-top: 0;
  }
  .information .information-column__title + .information-column__title {
    margin-top: calc(8 * 2 / 10 * 1vw);
  }
}
.information__button {
  margin-top: 40px;
}
@media screen and (max-width: 959px) {
  .information__button {
    margin-top: calc(40 * 2 / 10 * 1vw);
  }
}

.youtube-lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}
@media screen and (max-width: 959px) {
  .youtube-lists {
    grid-template-columns: repeat(1, 1fr);
  }
}
.youtube-lists .youtube-list {
  aspect-ratio: 18/11;
  overflow: hidden;
}
.youtube-lists .youtube-list iframe {
  width: 100%;
  height: 100%;
}

.instagram-lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
  padding-left: 32px;
  padding-right: 32px;
}
@media screen and (max-width: 959px) {
  .instagram-lists {
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
    padding-left: 0;
    padding-right: 0;
  }
}
.instagram-lists .instagram-list {
  width: 100%;
}
.instagram-lists .instagram-list .instagram-media {
  margin: 0 !important;
  max-width: 100% !important;
  min-width: auto !important;
}
.instagram-lists .instagram-list__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.instagram-lists .instagram-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-mv {
  height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-left: 110px;
  padding-right: 110px;
  box-sizing: border-box;
}
@media screen and (max-width: 959px) {
  .page-mv {
    padding-left: calc(110 * 2 / 10 * 1vw);
    padding-right: calc(110 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .page-mv {
    padding: 0 20px;
  }
}
.page-mv:before {
  position: absolute;
  content: "";
  background: rgba(17, 17, 17, 0.4);
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}
.page-mv__wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.page-mv__title-block {
  color: #fff;
  position: absolute;
  bottom: 60px;
  left: 0;
}
@media screen and (max-width: 959px) {
  .page-mv__title-block {
    bottom: 40px;
  }
}
.page-mv__title {
  font-family: "sweet-sans-pro", sans-serif;
  line-height: 1;
  font-size: 72px;
  font-weight: bold;
}
@media (max-width: 959px) {
  .page-mv__title {
    font-size: 10.667vw;
  }
}
.page-mv__text {
  margin-top: 16px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 959px) {
  .page-mv__text {
    margin-top: calc(16 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .page-mv {
    height: 300px;
  }
}

.common-btn__wrap {
  display: flex;
}
@media screen and (max-width: 959px) {
  .common-btn__wrap {
    flex-direction: column;
  }
}
.common-btn__link {
  flex: 1;
  display: block;
  color: #fff;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 959px) {
  .common-btn__link {
    padding-top: calc(120 * 2 / 10 * 1vw);
    padding-bottom: calc(120 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .common-btn__link {
    padding-left: calc(20 * 2 / 10 * 1vw);
    padding-right: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .common-btn__link {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 959px) and (max-width: 959px) {
  .common-btn__link {
    padding-top: calc(80 * 2 / 10 * 1vw);
    padding-bottom: calc(80 * 2 / 10 * 1vw);
  }
}
.common-btn__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.common-btn__main-text {
  font-size: 24px;
  margin-bottom: 10px;
  padding-bottom: 14px;
  position: relative;
}
@media (max-width: 959px) {
  .common-btn__main-text {
    font-size: 6.4vw;
  }
}
@media screen and (max-width: 959px) {
  .common-btn__main-text {
    margin-bottom: calc(10 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .common-btn__main-text {
    padding-bottom: calc(14 * 2 / 10 * 1vw);
  }
}
.common-btn__main-text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 40px;
  height: 1px;
  background-color: #fff;
}
.common-btn__sub-text {
  font-size: 14px;
  font-family: "sweet-sans-pro", sans-serif;
  font-weight: 700;
  margin-top: 16px;
}
@media (max-width: 959px) {
  .common-btn__sub-text {
    font-size: 4.267vw;
  }
}
@media screen and (max-width: 959px) {
  .common-btn__sub-text {
    margin-top: calc(16 * 2 / 10 * 1vw);
  }
}
.common-btn__button {
  margin: auto;
  margin-top: 30px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 959px) {
  .common-btn__button {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.common-btn .faq {
  background-image: url("./assets/images/common/faq.png");
}
@media screen and (max-width: 959px) {
  .common-btn .faq {
    background-image: url("./assets/images/common/faq--sp.png");
  }
}
.common-btn .schedule {
  background-image: url("./assets/images/common/schedule.png");
}
@media screen and (max-width: 959px) {
  .common-btn .schedule {
    background-image: url("./assets/images/common/schedule--sp.png");
  }
}
.common-btn .contact {
  background-image: url("./assets/images/common/contact.png");
}
@media screen and (max-width: 959px) {
  .common-btn .contact {
    background-image: url("./assets/images/common/contact--sp.png");
  }
}

.heading--flex {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
@media screen and (max-width: 959px) {
  .heading--flex {
    flex-direction: column;
    align-items: unset;
    gap: 0;
  }
}
.heading--flex-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.heading__jp {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media (max-width: 959px) {
  .heading__jp {
    font-size: 6.4vw;
  }
}
.heading__jp .small {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 959px) {
  .heading__jp .small {
    font-size: 3.733vw;
  }
}
.heading__en {
  font-family: "sweet-sans-pro", sans-serif;
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 959px) {
  .heading__en {
    font-size: 4.267vw;
  }
}
.heading__en span {
  font-size: 32px;
}
@media (max-width: 959px) {
  .heading__en span {
    font-size: 8vw;
  }
}
.heading__description {
  margin-top: 40px;
}
@media screen and (max-width: 959px) {
  .heading__description {
    margin-top: calc(40 * 2 / 10 * 1vw);
  }
}
.heading__button {
  margin-top: 30px;
}
@media screen and (max-width: 959px) {
  .heading__button {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}

.subheading {
  margin-bottom: 30px;
}
@media screen and (max-width: 959px) {
  .subheading {
    margin-bottom: calc(30 * 2 / 10 * 1vw);
  }
}
.subheading__bg {
  background-color: #111111;
  padding-top: 14px;
  padding-bottom: 14px;
  box-sizing: border-box;
}
@media screen and (max-width: 959px) {
  .subheading__bg {
    padding-top: calc(14 * 2 / 10 * 1vw);
    padding-bottom: calc(14 * 2 / 10 * 1vw);
  }
}
.subheading__jp {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 0.6em;
  line-height: 1.4;
}
@media (max-width: 959px) {
  .subheading__jp {
    font-size: 5.333vw;
  }
}
.subheading__jp::before {
  content: "";
  width: 32px;
  height: 1px;
  background: #445162;
}
.subheading__jp.white::before {
  background: #fff;
}
.debug-notice-wrapper {
  margin-bottom: 20px;
}
.debug-notice-wrapper .debug-notice {
  color: #ff0000;
  font-size: 1.2rem;
  padding: 10px 15px;
  border: 2px solid #ff0000;
  background-color: rgba(255, 0, 0, 0.1);
  border-radius: 4px;
  margin: 0;
}
@media screen and (max-width: 959px) {
  .debug-notice-wrapper {
    margin-bottom: calc(20 * 2 / 10 * 1vw);
  }
  .debug-notice-wrapper .debug-notice {
    font-size: 2.4vw;
    padding: calc(10 * 2 / 10 * 1vw) calc(15 * 2 / 10 * 1vw);
  }
}
.subheading__text {
  margin-top: 10px;
}
@media screen and (max-width: 959px) {
  .subheading__text {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}

.page-links__wrap {
  width: 80%;
  margin: auto;
}
.page-links__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4em;
}
@media screen and (max-width: 959px) {
  .page-links__container {
    grid-template-columns: repeat(1, 1fr);
    gap: 1em;
  }
}
.page-links .page-link a {
  color: #fff;
  background-color: #111111;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
  display: block;
  position: relative;
}
@media screen and (max-width: 959px) {
  .page-links .page-link a {
    padding-top: calc(16 * 2 / 10 * 1vw);
    padding-bottom: calc(16 * 2 / 10 * 1vw);
  }
}
.page-links .page-link a:after {
  position: absolute;
  content: "";
  background-image: url(./assets/images/icon/double-arrow-down--white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: auto;
  aspect-ratio: 4/5;
  align-self: anchor-center;
  right: 1em;
}

.guide__main {
  display: flex;
  gap: 2em;
}
@media screen and (max-width: 959px) {
  .guide__main {
    flex-direction: column;
  }
}
.guide__image {
  width: 65%;
}
@media screen and (max-width: 959px) {
  .guide__image {
    width: 100%;
  }
}
.guide__image-block {
  width: 65%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
}
@media screen and (max-width: 959px) {
  .guide__image-block {
    width: 100%;
  }
}
.guide__image-block .guide-image.--01 {
  width: 57%;
}
@media screen and (max-width: 959px) {
  .guide__image-block .guide-image.--01 {
    width: 100%;
  }
}
.guide__image-block .guide-image.--02 {
  flex: 1;
}
.guide__image-block .guide-image.--03 {
  width: 100%;
}
.guide__text-block {
  flex: 1;
}
.guide__text-block ul li {
  display: flex;
  line-height: 1.4;
  gap: 0.4em;
}
.guide__text-block ul li:not(:first-child) {
  margin-top: 10px;
}
@media screen and (max-width: 959px) {
  .guide__text-block ul li:not(:first-child) {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}
.guide__additional {
  margin-top: 14px;
  font-size: 14px;
}
@media screen and (max-width: 959px) {
  .guide__additional {
    margin-top: calc(14 * 2 / 10 * 1vw);
  }
}
@media (max-width: 959px) {
  .guide__additional {
    font-size: 3.2vw;
  }
}
.guide__additional a {
  border-bottom: 1px solid #111111;
}
.guide__note {
  margin-top: 34px;
  background-color: #f7f6f6;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media screen and (max-width: 959px) {
  .guide__note {
    margin-top: calc(34 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .guide__note {
    padding-left: calc(30 * 2 / 10 * 1vw);
    padding-right: calc(30 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .guide__note {
    padding-top: calc(24 * 2 / 10 * 1vw);
    padding-bottom: calc(24 * 2 / 10 * 1vw);
  }
}
.guide__note p {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 14px;
}
@media (max-width: 959px) {
  .guide__note p {
    font-size: 3.2vw;
  }
}
.guide__text a {
  border-bottom: 1px solid #111111;
}
.guide .accordion details:first-child summary {
  border-top: 1px solid #111111;
}
.guide .accordion summary {
  border-bottom: 1px solid #111111;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 959px) {
  .guide .accordion summary {
    padding-top: calc(20 * 2 / 10 * 1vw);
    padding-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
.guide .accordion summary::after {
  content: "＋";
  position: absolute;
  right: 0;
}
.guide .accordion details[open] summary::after {
  content: "ー";
}
.guide .accordion__content {
  margin-top: 20px;
  font-size: 12px;
  padding-bottom: 20px;
}
@media screen and (max-width: 959px) {
  .guide .accordion__content {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media (max-width: 959px) {
  .guide .accordion__content {
    font-size: 3.467vw;
  }
}
@media screen and (max-width: 959px) {
  .guide .accordion__content {
    padding-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
.guide .accordion table {
  width: 100%;
}
.guide .accordion table tr {
  width: 100%;
}
.guide .accordion table th,
.guide .accordion table td {
  padding-top: 4px;
  padding-bottom: 4px;
  line-height: 1.6;
}
@media screen and (max-width: 959px) {
  .guide .accordion table th,
  .guide .accordion table td {
    padding-top: calc(4 * 2 / 10 * 1vw);
    padding-bottom: calc(4 * 2 / 10 * 1vw);
  }
}
.guide .accordion table th {
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.guide .accordion table th:after {
  content: "：";
}
.guide .accordion table td {
  width: 70%;
}

.image-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
}
@media screen and (max-width: 959px) {
  .image-column {
    grid-template-columns: repeat(1, 1fr);
  }
}
.image-column .image-column-card__image {
  aspect-ratio: 58/35;
  overflow: hidden;
}
.image-column .image-column-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.image-column .image-column-card__text {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .image-column .image-column-card__text {
    margin-top: calc(14 * 2 / 10 * 1vw);
  }
}
@media (max-width: 959px) {
  .image-column .image-column-card__text {
    font-size: 4.267vw;
  }
}

.service-list__status {
  display: flex;
  gap: 0.4em 2em;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
}
@media (max-width: 959px) {
  .service-list__status {
    font-size: 3.733vw;
  }
}
.service-list__status .status {
  display: flex;
  gap: 0.4em;
}
.service-list__status .status:before {
  content: "";
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
  display: inline-block;
  line-height: 21px;
  border-radius: 50px;
  text-align: center;
  font-size: 10px;
  border: 1px solid #fff;
}
@media screen and (max-width: 959px) {
  .service-list__status .status:before {
    width: 12px;
    height: 12px;
  }
}
.service-list__status .status.--premium:before {
  background: #b89a1d;
}
.service-list__status .status.--silver:before {
  background: #898989;
}
.service-list__status .status.--white:before {
  background: #fff;
}
.service-list__status .status.--iff:before {
  background: #037ca0;
}
.service-list__service-cards {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3em;
}
@media screen and (max-width: 959px) {
  .service-list__service-cards {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .service-list__service-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 1em;
  }
}
.service-list .service-card {
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.05);
}
.service-list .service-card__inner {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 30px;
  padding-bottom: 60px;
  box-sizing: border-box;
}
@media screen and (max-width: 959px) {
  .service-list .service-card__inner {
    padding-left: calc(40 * 2 / 10 * 1vw);
    padding-right: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .service-list .service-card__inner {
    padding-top: calc(30 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .service-list .service-card__inner {
    padding-bottom: calc(60 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .service-list .service-card__inner {
    padding: 20px 20px;
  }
}
.service-list .service-card__status {
  text-align: right;
  letter-spacing: 0.6em;
}
.service-list .service-card__status .status {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
  display: inline-block;
  line-height: 21px;
  border-radius: 50px;
  text-align: center;
  font-size: 10px;
  border: 1px solid #fff;
}
@media screen and (max-width: 959px) {
  .service-list .service-card__status .status {
    width: 12px;
    height: 12px;
  }
}
.service-list .service-card__status .status.--premium {
  background: #b89a1d;
}
.service-list .service-card__status .status.--silver {
  background: #898989;
}
.service-list .service-card__status .status.--white {
  background: #fff;
}
.service-list .service-card__status .status.--iff {
  background: #037ca0;
}
.service-list .service-card__heading {
  margin-top: 10px;
}
@media screen and (max-width: 959px) {
  .service-list .service-card__heading {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}
.service-list .service-card__heading .heading-en {
  font-family: "sweet-sans-pro", sans-serif;
  font-weight: 700;
}
.service-list .service-card__heading .heading-ja {
  font-size: 24px;
  margin-top: 10px;
  line-height: 1.4;
}
@media (max-width: 959px) {
  .service-list .service-card__heading .heading-ja {
    font-size: 5.333vw;
  }
}
@media screen and (max-width: 959px) {
  .service-list .service-card__heading .heading-ja {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}
.service-list .service-card__text {
  margin-top: 20px;
}
@media screen and (max-width: 959px) {
  .service-list .service-card__text {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.service-list .service-card__text a {
  text-decoration: underline;
}
.service-list__note {
  margin-top: 10px;
  font-size: 14px;
  text-align: right;
}
@media screen and (max-width: 959px) {
  .service-list__note {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}
@media (max-width: 959px) {
  .service-list__note {
    font-size: 3.2vw;
  }
}

.page-club-life .table-basic {
  max-width: 900px;
  width: 100%;
  margin: auto;
}
.page-club-life .table-basic:not(:first-child) {
  margin-top: 50px;
}
@media screen and (max-width: 959px) {
  .page-club-life .table-basic:not(:first-child) {
    margin-top: calc(50 * 2 / 10 * 1vw);
  }
}

.page-club-membership .flow-list {
  max-width: 900px;
  width: 100%;
  margin: auto;
}
.page-club-membership .flow-list .flow-box {
  position: relative;
}
.page-club-membership .flow-list .flow-box:not(:last-child):after {
  content: "";
  position: absolute;
  background-image: url(./assets/images/icon/arrow-down.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 23px;
  height: auto;
  aspect-ratio: 23/16;
  right: 0;
  left: 0;
  margin: auto;
  bottom: -10px;
  z-index: 1;
}
.page-club-membership .flow-list .flow-box:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 959px) {
  .page-club-membership .flow-list .flow-box:not(:first-child) {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.page-club-membership .flow-list .flow-box__container {
  display: flex;
}
@media screen and (max-width: 959px) {
  .page-club-membership .flow-list .flow-box__container {
    flex-direction: column;
  }
}
.page-club-membership .flow-list .flow-box__number {
  width: 14%;
  font-weight: 500;
  background-color: #111111;
  color: #fff;
  font-family: "sweet-sans-pro", sans-serif;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 4px 4px 6px 4px;
  box-sizing: border-box;
  font-size: 14px;
}
@media (max-width: 959px) {
  .page-club-membership .flow-list .flow-box__number {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 959px) {
  .page-club-membership .flow-list .flow-box__number {
    width: 100%;
    flex-direction: unset;
    align-items: center;
    gap: 0.2em;
  }
}
.page-club-membership .flow-list .flow-box__number span {
  font-size: 32px;
}
@media (max-width: 959px) {
  .page-club-membership .flow-list .flow-box__number span {
    font-size: 5.867vw;
  }
}
.page-club-membership .flow-list .flow-box__title-block {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 1.6em;
  align-items: center;
  background-color: #f4f4f4;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 959px) {
  .page-club-membership .flow-list .flow-box__title-block {
    padding-top: calc(20 * 2 / 10 * 1vw);
    padding-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .page-club-membership .flow-list .flow-box__title-block {
    padding-left: calc(40 * 2 / 10 * 1vw);
    padding-right: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .page-club-membership .flow-list .flow-box__title-block {
    padding: 14px 14px 20px 14px;
  }
}
.page-club-membership .flow-list .flow-box__text-block {
  width: 90%;
}
.page-club-membership .flow-list .flow-box__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 959px) {
  .page-club-membership .flow-list .flow-box__title {
    font-size: 4.267vw;
  }
}
.page-club-membership .flow-list .flow-box__text {
  margin-top: 10px;
  font-size: 14px;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.4;
}
@media screen and (max-width: 959px) {
  .page-club-membership .flow-list .flow-box__text {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}
@media (max-width: 959px) {
  .page-club-membership .flow-list .flow-box__text {
    font-size: 3.2vw;
  }
}

.page-agreement .download-block:not(:first-child) {
  margin-top: 60px;
}
@media screen and (max-width: 959px) {
  .page-agreement .download-block:not(:first-child) {
    margin-top: calc(60 * 2 / 10 * 1vw);
  }
}
.page-agreement .download-block__buttons {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
}
@media screen and (max-width: 959px) {
  .page-agreement .download-block__buttons {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .page-agreement .download-block__buttons {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page-agreement .download-block__buttons .button {
  background-color: #f4f4f4;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 959px) {
  .page-agreement .download-block__buttons .button {
    font-size: 3.2vw;
  }
}
.page-agreement .download-block__buttons .button a {
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  display: block;
  position: relative;
}
@media screen and (max-width: 959px) {
  .page-agreement .download-block__buttons .button a {
    padding-top: calc(14 * 2 / 10 * 1vw);
    padding-bottom: calc(14 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .page-agreement .download-block__buttons .button a {
    padding-left: calc(10 * 2 / 10 * 1vw);
    padding-right: calc(10 * 2 / 10 * 1vw);
  }
}
.page-agreement .download-block__buttons .button a:after {
  position: absolute;
  right: 1em;
  align-self: anchor-center;
  content: "";
  background-image: url(./assets/images/icon/pdf.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: auto;
  aspect-ratio: 13/16;
}

.page-insels-salon-detail .article__detail {
  display: flex;
  align-items: center;
  gap: 1em;
}
.page-insels-salon-detail .article__date {
  font-family: "sweet-sans-pro", sans-serif;
}
.page-insels-salon-detail .article__category {
  border: 1px solid #111111;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 4px;
  padding-right: 4px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 959px) {
  .page-insels-salon-detail .article__category {
    padding-top: calc(2 * 2 / 10 * 1vw);
    padding-bottom: calc(2 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .page-insels-salon-detail .article__category {
    padding-left: calc(4 * 2 / 10 * 1vw);
    padding-right: calc(4 * 2 / 10 * 1vw);
  }
}
.page-insels-salon-detail .article__title {
  font-size: 32px;
  margin-top: 20px;
}
@media (max-width: 959px) {
  .page-insels-salon-detail .article__title {
    font-size: 6.933vw;
  }
}
@media screen and (max-width: 959px) {
  .page-insels-salon-detail .article__title {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.page-insels-salon-detail .article__text {
  margin-top: 30px;
}
@media screen and (max-width: 959px) {
  .page-insels-salon-detail .article__text {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.page-insels-salon-detail .article__image {
  margin-top: 30px;
  width: 100%;
}
@media screen and (max-width: 959px) {
  .page-insels-salon-detail .article__image {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.page-insels-salon-detail .article__image img {
  width: 100%;
  height: auto;
}

.table-basic__caption {
  margin-bottom: 20px;
  font-size: 20px;
}
@media screen and (max-width: 959px) {
  .table-basic__caption {
    margin-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
@media (max-width: 959px) {
  .table-basic__caption {
    font-size: 4.8vw;
  }
}
.table-basic table {
  border: 1px solid #111111;
  width: 100%;
}
.table-basic table tr:not(:last-child) th,
.table-basic table tr:not(:last-child) td {
  border-bottom: 1px solid rgba(153, 153, 153, 0.6);
}
.table-basic table th,
.table-basic table td {
  padding-top: 16px;
  padding-bottom: 16px;
  line-height: 1.4;
  vertical-align: middle;
  font-size: 14px;
  box-sizing: border-box;
}
@media screen and (max-width: 959px) {
  .table-basic table th,
  .table-basic table td {
    padding-top: calc(16 * 2 / 10 * 1vw);
    padding-bottom: calc(16 * 2 / 10 * 1vw);
  }
}
@media (max-width: 959px) {
  .table-basic table th,
  .table-basic table td {
    font-size: 3.2vw;
  }
}
.table-basic table th {
  padding-left: 6px;
  padding-right: 6px;
  text-align: center;
  color: #fff;
  background-color: #111111;
  width: 30% !important;
}
@media screen and (max-width: 959px) {
  .table-basic table th {
    padding-left: calc(6 * 2 / 10 * 1vw);
    padding-right: calc(6 * 2 / 10 * 1vw);
  }
}
.table-basic table td {
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 959px) {
  .table-basic table td {
    padding-left: calc(40 * 2 / 10 * 1vw);
    padding-right: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .table-basic table td {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.table-basic__note {
  font-size: 14px;
  margin-top: 20px;
}
@media (max-width: 959px) {
  .table-basic__note {
    font-size: 2.933vw;
  }
}
@media screen and (max-width: 959px) {
  .table-basic__note {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.table-basic__note ul li {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.6;
}

.scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
  cursor: grab;
}
.scroll-wrap.is-dragging {
  cursor: grabbing;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.scroll-wrap::-webkit-scrollbar {
  height: 6px;
  cursor: pointer;
}
.scroll-wrap::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 20px;
}
.scroll-wrap::-webkit-scrollbar-track {
  background: #d8d8d8;
  box-shadow: inset 0 0 0 1.5px #445162;
  border-radius: 10px;
}
.scroll-wrap img {
  -webkit-user-drag: none;
}

.table-vertical {
  min-width: 0;
}
.table-vertical__wrap {
  margin-top: 14px;
  overflow-x: auto;
  width: 100%;
  scrollbar-width: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  scrollbar-gutter: stable;
  cursor: grab;
}
.table-vertical__wrap table {
  touch-action: pan-x pan-y;
}
@media screen and (max-width: 959px) {
  .table-vertical__wrap {
    margin-top: calc(14 * 2 / 10 * 1vw);
  }
}
.table-vertical__wrap.is-dragging {
  cursor: grabbing;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.table-vertical__wrap::-webkit-scrollbar {
  height: 6px;
  cursor: pointer;
}
.table-vertical__wrap::-webkit-scrollbar-thumb {
  background: #111111;
  border-radius: 20px;
}
.table-vertical__wrap::-webkit-scrollbar-track {
  background: #d8d8d8;
  background: #d8d8d8;
  box-shadow: inset 0 0 0 1.5px #fff;
}
.table-vertical table {
  border-collapse: collapse;
  width: 100%;
  white-space: nowrap;
}
.table-vertical table tr:nth-child(even) td {
  background-color: #f5f5f5;
}
.table-vertical table th,
.table-vertical table td {
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  white-space: nowrap;
  vertical-align: middle;
}
@media screen and (max-width: 959px) {
  .table-vertical table th,
  .table-vertical table td {
    padding-left: calc(20 * 2 / 10 * 1vw);
    padding-right: calc(20 * 2 / 10 * 1vw);
  }
}
.table-vertical table th {
  padding-top: 16px;
  padding-bottom: 16px;
  background-color: #111111;
  color: #fff;
  border-right: 1px #fff solid;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 959px) {
  .table-vertical table th {
    padding-top: calc(16 * 2 / 10 * 1vw);
    padding-bottom: calc(16 * 2 / 10 * 1vw);
  }
}
.table-vertical table td {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 959px) {
  .table-vertical table td {
    padding-top: calc(20 * 2 / 10 * 1vw);
    padding-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
@media (max-width: 959px) {
  .table-vertical table td {
    font-size: 3.467vw;
  }
}
.table-vertical table td a {
  text-decoration: underline;
}

.contents-block:not(:first-child) {
  margin-top: 90px;
}
@media screen and (max-width: 959px) {
  .contents-block:not(:first-child) {
    margin-top: calc(90 * 2 / 10 * 1vw);
  }
}

.article-section {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 959px) {
  .article-section {
    flex-direction: column;
  }
}
.article-section__main {
  width: 70%;
}
@media screen and (max-width: 959px) {
  .article-section__main {
    width: 100%;
    margin-bottom: 40px;
  }
}
.article-section__sidebar {
  width: 23%;
}
@media screen and (max-width: 959px) {
  .article-section__sidebar {
    width: 100%;
    margin-bottom: 40px;
    order: -1;
  }
}
.filter .filter-block:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 959px) {
  .filter .filter-block:not(:first-child) {
    margin-top: calc(40 * 2 / 10 * 1vw);
  }
}
.filter .filter-block__heading {
  border-top: 1px solid #111111;
  border-bottom: 1px solid #111111;
  background-color: #f4f4f4;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}
@media screen and (max-width: 959px) {
  .filter .filter-block__heading {
    padding-top: calc(14 * 2 / 10 * 1vw);
    padding-bottom: calc(14 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .filter .filter-block__heading {
    padding-left: calc(16 * 2 / 10 * 1vw);
    padding-right: calc(16 * 2 / 10 * 1vw);
  }
}
.filter .filter-block__content {
  margin-top: 14px;
}
@media screen and (max-width: 959px) {
  .filter .filter-block__content {
    margin-top: calc(14 * 2 / 10 * 1vw);
  }
}
.filter .filter-block__flex {
  display: flex;
  gap: 0.6em;
  align-items: center;
  flex-wrap: wrap;
}
.filter .radio-group {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
.filter .radio-option {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}
.filter .select-group {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.filter .select-group.--w-100 {
  width: 100%;
}
.filter .select-box {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  cursor: pointer;
  font-size: 14px;
  width: 100%;
}
@media screen and (max-width: 959px) {
  .filter .select-box {
    padding-top: calc(10 * 2 / 10 * 1vw);
    padding-bottom: calc(10 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .filter .select-box {
    padding-left: calc(10 * 2 / 10 * 1vw);
    padding-right: calc(10 * 2 / 10 * 1vw);
  }
}
@media (max-width: 959px) {
  .filter .select-box {
    font-size: 3.2vw;
  }
}
.filter__button {
  margin-top: 40px;
}
@media screen and (max-width: 959px) {
  .filter__button {
    margin-top: calc(40 * 2 / 10 * 1vw);
  }
}
.page-offer-horse-detail .filter__button {
  margin-top: 0;
}
.page-offer-horse-detail .page.horse-lists {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
}
.page-offer-horse-list .page.horse-lists {
  padding-top: 0px !important
}
.page-horse-list .page.horse-lists {
  padding-top: 0px !important
}
.filter__button .button-normal {
  width: 100%;
}

.content-offer-horse-list .offer-horse-list:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 959px) {
  .content-offer-horse-list .offer-horse-list:not(:first-child) {
    margin-top: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .content-offer-horse-list .offer-horse-list:not(:first-child) {
    margin-top: 60px;
  }
}
.content-offer-horse-list .offer-horse-list__container {
  display: flex;
  gap: 2em;
  justify-content: space-between;
}
@media screen and (max-width: 959px) {
  .content-offer-horse-list .offer-horse-list__container {
    flex-direction: column;
    gap: 1em;
  }
}
.content-offer-horse-list .offer-horse-list .image {
  width: 45%;
}
.content-offer-horse-list .offer-horse-list .image img {
  max-width: none;
}
.content-offer-horse-list .offer-horse-list.full .image {
  position: relative;
}
.content-offer-horse-list .offer-horse-list.full .image:after {
  content: "";
  background-image: url(/assets/images/horse-list/full.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: -1em;
  top: -1em;
  width: 90px;
  height: auto;
  aspect-ratio: 1/1;
  z-index: 10;
  pointer-events: none;
}
@media screen and (max-width: 959px) {
  .content-offer-horse-list .offer-horse-list .image {
    width: 100%;
  }
}
.content-offer-horse-list .offer-horse-list__text-block {
  flex: 1;
  padding: 0;
}
@media screen and (max-width: 959px) {
  .content-offer-horse-list .offer-horse-list__text-block {
    padding: 0 16px;
    margin-top: 0;
  }
}
.content-offer-horse-list .offer-horse-list__kind .requirement,
.content-offer-horse-list .offer-horse-list__kind .kind {
  font-size: 14px;
}
.content-offer-horse-list .full .offer-horse-list__kind .requirement {
  color: #fff;
  background-color: #8a2023;
  border: 1px solid #fff;
}
@media (max-width: 959px) {
  .content-offer-horse-list .offer-horse-list__kind .requirement,
  .content-offer-horse-list .offer-horse-list__kind .kind {
    font-size: 3.733vw;
  }
}
.content-offer-horse-list .offer-horse-list .name {
  font-size: 24px;
  margin-top: 16px;
  font-weight: 500;
  border-bottom: unset;
  max-width: 100%;
}
@media (max-width: 959px) {
  .content-offer-horse-list .offer-horse-list .name {
    font-size: 4.8vw;
  }
}
@media screen and (max-width: 959px) {
  .content-offer-horse-list .offer-horse-list .name {
    margin-top: calc(16 * 2 / 10 * 1vw);
  }
}
.content-offer-horse-list .offer-horse-list__amount {
  padding-top: 14px;
  padding-bottom: 14px;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}
@media screen and (max-width: 959px) {
  .content-offer-horse-list .offer-horse-list__amount {
    padding-top: calc(14 * 2 / 10 * 1vw);
    padding-bottom: calc(14 * 2 / 10 * 1vw);
  }
}
.content-offer-horse-list .offer-horse-list__detail {
  display: flex;
  gap: 0.4em;
  margin-top: 14px;
}
@media screen and (max-width: 959px) {
  .content-offer-horse-list .offer-horse-list__detail {
    margin-top: calc(14 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .content-offer-horse-list .offer-horse-list__detail {
    display: block;
  }
}
.content-offer-horse-list .offer-horse-list__detail ul {
  flex: 1;
  font-size: 12px;
}
@media (max-width: 959px) {
  .content-offer-horse-list .offer-horse-list__detail ul {
    font-size: 3.2vw;
  }
}
.content-offer-horse-list .offer-horse-list__detail ul li:not(:first-child) {
  margin-top: 6px;
}
@media screen and (max-width: 959px) {
  .content-offer-horse-list .offer-horse-list__detail ul li:not(:first-child) {
    margin-top: calc(6 * 2 / 10 * 1vw);
  }
}

.content-horse-detail {
  border-top: 1px solid #111111;
}
.content-horse-detail .offer-horse-detail__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6em;
  margin-top: 24px;
}
@media screen and (max-width: 959px) {
  .content-horse-detail .offer-horse-detail__heading {
    margin-top: calc(24 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .content-horse-detail .offer-horse-detail__heading {
    flex-direction: column;
    align-items: inherit;
  }
}
.content-horse-detail .offer-horse-detail__name {
  font-size: 32px;
}
@media (max-width: 959px) {
  .content-horse-detail .offer-horse-detail__name {
    font-size: 5.867vw;
  }
}
.content-horse-detail .offer-horse-detail__requirement {
  border: 1px solid #111111;
  font-size: 20px;
  padding-left: 6px;
  padding-right: 6px;
  padding-top: 4px;
  padding-bottom: 4px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 959px) {
  .content-horse-detail .offer-horse-detail__requirement {
    font-size: 3.733vw;
  }
}
@media screen and (max-width: 959px) {
  .content-horse-detail .offer-horse-detail__requirement {
    padding-left: calc(6 * 2 / 10 * 1vw);
    padding-right: calc(6 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .content-horse-detail .offer-horse-detail__requirement {
    padding-top: calc(4 * 2 / 10 * 1vw);
    padding-bottom: calc(4 * 2 / 10 * 1vw);
  }
}
.content-horse-detail .offer-horse-detail__kind {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
  gap: 1em;
}
@media screen and (max-width: 959px) {
  .content-horse-detail .offer-horse-detail__kind {
    margin-top: calc(16 * 2 / 10 * 1vw);
  }
}
.content-horse-detail .offer-horse-detail__image {
  margin-top: 30px;
}
@media screen and (max-width: 959px) {
  .content-horse-detail .offer-horse-detail__image {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.content-horse-detail .offer-horse-detail__text-block {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 2em;
}
@media screen and (max-width: 959px) {
  .content-horse-detail .offer-horse-detail__text-block {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .content-horse-detail .offer-horse-detail__text-block {
    flex-direction: column;
  }
}
.content-horse-detail .offer-horse-detail__table-sub {
  flex: 1;
}
.content-horse-detail .offer-horse-detail__table-sub th {
  width: 40% !important;
}
.content-horse-detail .offer-horse-detail__table-sub td {
  padding-left: 14px;
  padding-right: 14px;
}
@media screen and (max-width: 959px) {
  .content-horse-detail .offer-horse-detail__table-sub td {
    padding-left: calc(14 * 2 / 10 * 1vw);
    padding-right: calc(14 * 2 / 10 * 1vw);
  }
}
.content-horse-detail .offer-horse-detail__text {
  font-size: 14px;
  text-align: justify;
  width: 62%;
}
@media (max-width: 959px) {
  .content-horse-detail .offer-horse-detail__text {
    font-size: 3.733vw;
  }
}
@media screen and (max-width: 959px) {
  .content-horse-detail .offer-horse-detail__text {
    width: 100%;
  }
}
.content-horse-detail .offer-horse-detail__button {
  margin-top: 40px;
}
@media screen and (max-width: 959px) {
  .content-horse-detail .offer-horse-detail__button {
    margin-top: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .content-horse-detail .offer-horse-detail__button {
    margin: 20px auto 0 auto;
  }
}
.content-horse-detail .offer-horse-detail__button .button-normal {
  width: 80%;
  max-width: 280px;
  margin: auto;
}
@media screen and (max-width: 959px) {
  .content-horse-detail .offer-horse-detail__button .button-normal {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.content-horse-detail .offer-horse-detail__info {
  margin-top: 60px;
}
@media screen and (max-width: 959px) {
  .content-horse-detail .offer-horse-detail__info {
    margin-top: calc(60 * 2 / 10 * 1vw);
  }
}
.content-horse-detail .offer-horse-detail__info .subheading {
  margin-bottom: 0;
}
.content-horse-detail .offer-horse-detail__info .info-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6em;
}
@media screen and (max-width: 959px) {
  .content-horse-detail .offer-horse-detail__info .info-heading {
    flex-direction: column;
    align-items: inherit;
  }
}
.content-horse-detail .offer-horse-detail__info .info-button {
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 959px) {
  .content-horse-detail .offer-horse-detail__info .info-button {
    margin: 0 0 0 auto;
  }
}
.content-horse-detail .offer-horse-detail__info .info-button a {
  display: flex;
  align-items: center;
  gap: 0.4em;
  background-color: #f4f4f4;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 14px;
}
@media screen and (max-width: 959px) {
  .content-horse-detail .offer-horse-detail__info .info-button a {
    padding-left: calc(16 * 2 / 10 * 1vw);
    padding-right: calc(16 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .content-horse-detail .offer-horse-detail__info .info-button a {
    padding-top: calc(8 * 2 / 10 * 1vw);
    padding-bottom: calc(8 * 2 / 10 * 1vw);
  }
}
@media (max-width: 959px) {
  .content-horse-detail .offer-horse-detail__info .info-button a {
    font-size: 3.2vw;
  }
}
.content-horse-detail .offer-horse-detail__table-main {
  margin-top: 20px;
}
@media screen and (max-width: 959px) {
  .content-horse-detail .offer-horse-detail__table-main {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.content-horse-detail .offer-horse-detail__table-main .date {
  margin-top: 10px;
  text-align: right;
  font-size: 14px;
}
@media screen and (max-width: 959px) {
  .content-horse-detail .offer-horse-detail__table-main .date {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}
@media (max-width: 959px) {
  .content-horse-detail .offer-horse-detail__table-main .date {
    font-size: 3.2vw;
  }
}

.page-horse-list .offer-horse-list .image img {
  width: 100%;
  height: auto;
  aspect-ratio: 255/168;
  max-width: 350px;
  object-fit: contain;
  display: block;
}
.page-horse-list .offer-horse-list .name {
  font-size: 18px;
  max-width: 340px;
}
@media (max-width: 959px) {
  .horse-lists {
    padding-bottom: 0px;
  }
}
@media (max-width: 959px) {
  .page-horse-list .offer-horse-list .name {
    font-size: 4.267vw;
  }
}

.page-financial .financial__title {
  text-align: center;
  font-size: 18px;
  line-height: 1.4;
}
@media (max-width: 959px) {
  .page-financial .financial__title {
    font-size: 3.733vw;
  }
}
.page-financial .financial__list {
  margin: auto;
  margin-top: 30px;
  max-width: 740px;
}
@media screen and (max-width: 959px) {
  .page-financial .financial__list {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.page-financial .financial__list ol li {
  line-height: 1.6;
  counter-increment: custom-counter;
  position: relative;
  padding-left: 2em;
}
.page-financial .financial__list ol li:before {
  content: counter(custom-counter);
  position: absolute;
  left: 0;
  font-family: "sweet-sans-pro", sans-serif;
  font-weight: 700;
  font-size: 24px;
  align-self: center;
}
@media (max-width: 959px) {
  .page-financial .financial__list ol li:before {
    font-size: 5.333vw;
  }
}
.page-financial .financial__list ol li:not(:first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 959px) {
  .page-financial .financial__list ol li:not(:first-child) {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}

.page-corporate .table-basic {
  max-width: 900px;
  margin: auto;
}

.page-faq #faq-01 .page,
.page-faq #faq-02 .page,
.page-faq #faq-03 .page,
.page-faq #faq-04 .page,
.page-faq #faq-05 .page,
.page-faq #faq-06 .page {
  padding: 80px 0 0 0;
}
@media screen and (max-width: 959px) {
  .page-faq #faq-01 .page,
  .page-faq #faq-02 .page,
  .page-faq #faq-03 .page,
  .page-faq #faq-04 .page,
  .page-faq #faq-05 .page,
  .page-faq #faq-06 .page {
    padding: 10vw 0 0 0;
  }
}
.page-faq #faq-06 .page {
  padding: 80px 0 80px 0;
}
@media screen and (max-width: 959px) {
  .page-faq #faq-06 .page {
    padding: 10vw 0 10vw 0;
  }
}
.page-faq .accordion {
  max-width: 900px;
  margin: auto;
}
.page-faq .accordion details:first-child summary {
  border-top: 1px solid #111111;
}
.page-faq .accordion summary {
  border-bottom: 1px solid #111111;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 1em;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 959px) {
  .page-faq .accordion summary {
    padding-top: calc(20 * 2 / 10 * 1vw);
    padding-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .page-faq .accordion summary {
    padding-left: calc(20 * 2 / 10 * 1vw);
    padding-right: calc(40 * 2 / 10 * 1vw);
  }
}
.page-faq .accordion summary span {
  font-family: "sweet-sans-pro", sans-serif;
  font-size: 24px;
  font-weight: 700;
}
.page-faq .accordion details[open] summary {
  color: #fff;
  background: #111111;
}
@media (max-width: 959px) {
  .page-faq .accordion summary span {
    font-size: 5.933vw;
  }
}
.page-faq .accordion summary::after {
  content: "＋";
  position: absolute;
  right: 16px;
}
.page-faq .accordion details[open] summary::after {
  content: "ー";
}
.page-faq .accordion__content {
  font-size: 12px;
  padding: 24px 16px;
  border-bottom: 1px solid #111;
  border-left: 1px solid #111;
  border-right: 1px solid #111;
}
@media screen and (max-width: 959px) {
  .page-faq .accordion__content {
    /* margin-top: calc(20 * 2 / 10 * 1vw); */
  }
}
@media (max-width: 959px) {
  .page-faq .accordion__content {
    font-size: 3.467vw;
  }
}
@media screen and (max-width: 959px) {
  .page-faq .accordion__content {
    padding-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
.page-faq .accordion__content .content-text {
  font-size: 14px;
}
@media (max-width: 959px) {
  .page-faq .accordion__content .content-text {
    font-size: 3.2vw;
  }
}
.page-faq .accordion__content a {
  text-decoration: underline;
  color: #445162;
}

.page-privacypolicy .privacypolicy__title {
  margin-bottom: 40px;
  line-height: 200%;
}

.page-privacypolicy .privacypolicy__text-box {
  line-height: 200%;
}

.page-privacypolicy .privacypolicy__text-box-body {
  margin-bottom: 40px;
}

.page-privacypolicy .privacypolicy__text-box-headline {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: bold;
}

.page-privacypolicy .privacypolicy__title-block {
  margin-bottom: 40px;
}

.page-privacypolicy .privacypolicy__title-title {
  margin-bottom: 5px;
  line-height: 110%;
  letter-spacing: 1px;
  font-size: 32px;
  font-family: Copperplate, Copperplate Gothic, fantasy;
  font-weight: 600;
  color: #a7a6ae;
  text-align: center;
}

.page-privacypolicy .privacypolicy__title-text {
  display: block;
  line-height: 1.6rem;
  letter-spacing: 0.08rem;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #9fa0a0;
}

.page-race .race-block:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 959px) {
  .page-race .race-block:not(:first-child) {
    margin-top: calc(40 * 2 / 10 * 1vw);
  }
}
.page-race .tab .tab-buttons {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  overflow-x: auto;
}
@media screen and (max-width: 959px) {
  .page-race .tab .tab-buttons {
    gap: 10px;
  }
}
.page-race .tab .tab-buttons button {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  cursor: pointer;
  width: 160px;
  font-size: 14px;
  transition: all 0.3s;
  color: #fff;
  background-color: #cccccc;
  font-family: "sweet-sans-pro", sans-serif;
  text-align: center;
  transition: 0.3s;
}
@media screen and (max-width: 959px) {
  .page-race .tab .tab-buttons button {
    padding-top: calc(16 * 2 / 10 * 1vw);
    padding-bottom: calc(16 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .page-race .tab .tab-buttons button {
    padding-left: calc(10 * 2 / 10 * 1vw);
    padding-right: calc(10 * 2 / 10 * 1vw);
  }
}
.page-race .tab .tab-buttons button:hover {
  background: #111111;
}
.page-race .tab .tab-buttons button.active {
  background-color: #111111;
}
.page-race .tab .tab-contents .content {
  display: none;
  padding-top: 30px;
  animation: fadeIn 0.3s ease-in-out;
}
@media screen and (max-width: 959px) {
  .page-race .tab .tab-contents .content {
    padding-top: calc(30 * 2 / 10 * 1vw);
  }
}
.page-race .tab .tab-contents .content.active {
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.page-contact .contact-form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 30px;
}
@media screen and (max-width: 959px) {
  .page-contact .contact-form {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.page-contact .contact-form .form-item {
  width: 100%;
  letter-spacing: 0.1em;
}
.page-contact .contact-form .form-item:not(:first-child) {
  margin-top: 30px;
}
.page-contact .contact-form .form-item__label {
  width: 100%;
  margin-bottom: 10px;
}
.page-contact .contact-form .form-item__label .isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
.page-contact .contact-form .form-item__label br {
  display: none;
}
.page-contact .contact-form .form-item__label-required {
  border-radius: 4px;
  padding: 1px 10px;
  display: inline-block;
  text-align: center;
  background: #d9534f;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 12px;
  margin-left: 10px;
}
@media (max-width: 959px) {
  .page-contact .contact-form .form-item__label-required {
    font-size: 3.2vw;
  }
}
.page-contact .contact-form .form-item__label-note {
  font-size: 12px;
  padding-left: 6px;
  letter-spacing: 0.06em;
}
@media (max-width: 959px) {
  .page-contact .contact-form .form-item__label-note {
    font-size: 3.2vw;
  }
}
.page-contact .contact-form .form-item__input {
  border: 1px solid #e8e8e8;
  background-color: #fafafa;
  padding: 0 1em;
  height: 40px;
  flex: 1;
  width: 100%;
  box-sizing: border-box;
}
.page-contact .contact-form .form-item__textarea {
  border: 1px solid #e8e8e8;
  background-color: #fafafa;
  padding: 1em;
  height: 200px;
  flex: 1;
  width: 100%;
  box-sizing: border-box;
}
.page-contact .contact-form .form-item__note {
  color: red;
  font-size: 14px;
  margin-bottom: 40px;
}
@media (max-width: 959px) {
  .page-contact .contact-form .form-item__note {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 959px) {
  .page-contact .contact-form .form-item__note {
    margin-bottom: 20px;
  }
}
.page-contact .contact-form .form-item__lead {
  padding: 10px 10px;
  box-sizing: border-box;
}
.page-contact .contact-form .form-item__lead p {
  color: #445162;
}
.page-contact .contact-form .form-item__lead a {
  font-weight: bold;
  border-bottom: 1px solid #445162;
}
.page-contact .contact-form .form-btn {
  margin: 30px auto 0 auto !important;
  padding: 20px 0 !important;
  width: 290px !important;
  display: block !important;
  background: #111111 !important;
  letter-spacing: 0.1em !important;
  color: #fff !important;
  cursor: pointer !important;
}
@media screen and (max-width: 959px) {
  .page-contact .contact-form .form-btn {
    width: 80% !important;
  }
}
.page-contact .contact-form .note {
  margin-top: 40px;
  font-size: 14px;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 959px) {
  .page-contact .contact-form .note {
    margin-top: calc(40 * 2 / 10 * 1vw);
  }
}
@media (max-width: 959px) {
  .page-contact .contact-form .note {
    font-size: 3.2vw;
  }
}

.full .requirement {
  color: #fff;
  background-color: #8a2023;
  border: 1px solid #fff;
}
.full .image:after {
  content: "";
  background-image: url(/assets/images/horse-list/full.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: -1em;
  top: -1em;
  width: 90px;
  height: auto;
  aspect-ratio: 1/1;
  z-index: 10;
  pointer-events: none;
}
.offer-horse-detail__image.full:after {
  content: "";
  background-image: url(/assets/images/horse-list/full.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: -1em;
  top: -1em;
  width: 180px;
  height: auto;
  aspect-ratio: 1/1;
  z-index: 10;
  pointer-events: none;
}
@media screen and (max-width: 959px) {
  .offer-horse-detail__image.full:after {
    width: 90px;
  }
}
.full .image,
.offer-horse-detail__image.full {
  position: relative;
}
.content-horse-detail .offer-horse-detail__requirement.full {
  color: #fff;
  background-color: #8a2023;
  border: 1px solid #fff;
}

.link-block {
  display: flex;
  margin-top: 20px;
  margin-bottom: 40px;
  gap: 2em;
}
@media screen and (max-width: 959px) {
  .link-block {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 959px) {
  .link-block {
    gap: 1em;
  }
}
.link-block .link {
  max-width: 260px;
  border-left: 1px solid #111111;
}
@media screen and (max-width: 959px) {
  .link-block .link {
    flex: 1;
    max-width: 50%;
  }
}
.link-block .link a {
  display: block;
  padding-left: 20px;
}
@media screen and (max-width: 959px) {
  .link-block .link a {
    padding-left: calc(20 * 2 / 10 * 1vw);
  }
}
.link-block .link p {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 0.4em;
  flex-wrap: wrap;
}
@media (max-width: 959px) {
  .link-block .link p {
    font-size: 2.933vw;
  }
}
.link-block .link__image {
  margin-top: 10px;
  width: 100%;
  max-width: 188px;
}
@media screen and (max-width: 959px) {
  .link-block .link__image {
    margin-top: calc(10 * 2 / 10 * 1vw);
    max-width: 100%;
  }
}
.link-block .link__image img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 959px) {
  .sns .heading__en {
    text-align: center;
  }
}
.sns .page__button {
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 959px) {
  .sns .page__button {
    margin: 30px auto 0 auto;
  }
}

.accent-title {
  position: relative;
}
.accent-title span {
  position: absolute;
  top: -0.3em;
  font-size: 96px;
  color: rgba(17, 17, 17, 0.05);
  font-family: "sweet-sans-pro", sans-serif;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 0;
}
@media (max-width: 959px) {
  .accent-title span {
    font-size: 10.667vw;
  }
}

.horse-lists {
  position: relative;
}

.horse-lists::after {
  display: none;
}

.horse-lists .page {
  position: relative;
  z-index: 2;
}

.accent-title.--right span {
  right: 0;
}
.accent-title.--center span {
  right: 0;
  left: 0;
  margin: auto;
}
.accent-title.--white span {
  color: rgba(255, 255, 255, 0.05);
}

.page-offer-horse-detail,
.page-horse-list-detail,
.page-insels-salon-detail {
  margin-top: 80px;
}
@media screen and (max-width: 959px) {
  .page-offer-horse-detail,
  .page-horse-list-detail,
  .page-insels-salon-detail {
    margin-top: 160px;
  }
}

.sp-fixed-menu {
  display: none;
}
@media screen and (max-width: 959px) {
  .sp-fixed-menu {
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9;
    height: 40px;
  }
  .sp-fixed-menu__wrap {
    height: 100%;
  }
  .sp-fixed-menu__container {
    display: flex;
    height: 100%;
  }
  .sp-fixed-menu__item {
    flex: 1;
  }
  .sp-fixed-menu a {
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
  }
}

.loader {
  position: fixed;
  inset: 0;
  background: #9fa0a0;
  display: none; /* ローディングを非表示 */
  place-items: center;
  z-index: 9999;
  transition: opacity 2s ease;
}
.loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.loader__logo {
  width: 40vw;
  max-width: 220px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader__logo img {
  width: 100%;
  opacity: 1;
}

.loader::before,
.loader::after {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  content: '';
  background: #9fa0a0;
  z-index: 10;
  transform: translate(0, 0);
  transition: transform 2200ms 0ms;
}

.loader.fade-first::before {
  transform: translate(100%, 0);
}

.loader::after {
  background: rgba(159, 160, 160, 0.5);
  transition: transform 2200ms 600ms;
}

.loader.fade-first::after {
  transform: translate(100%, 0);
}

.loader__logo::before {
  width: 100%;
  height: 100%;
  position: fixed;
  left: -100%;
  top: 0;
  content: '';
  background: #9fa0a0;
  z-index: 100;
  transform: translate(0, 0);
  transition: transform 2200ms 2400ms;
}

.loader.fade-first .loader__logo::before {
  transform: translate(100%, 0);
}

@keyframes movetoright {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}

@keyframes movetoright2 {
  0% {
    left: 0;
  }
  33% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}

@keyframes fadeout {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.v-loading {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.v-loading img {
  position: relative;
  display: block;
  opacity: 1;
  animation-duration: 3s;
  animation-name: fadeout;
  animation-iteration-count: infinite;
}

.v-loading::before,
.v-loading::after {
  width: 50%;
  height: 100%;
  position: absolute;
  left: -50%;
  top: 0;
  content: '';
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

.v-loading::before {
  z-index: 10;
  opacity: 1;
  animation-name: movetoright;
}

.v-loading::after {
  z-index: 11;
  opacity: 0.6;
  animation-name: movetoright2;
}

/* 画像サムネイル用ローディングスタイル */
.v-loading--thumbnail {
  text-align: center;
  padding: 60px;
  background-color: #f5f5f5;
}

.v-loading--thumbnail img {
  width: 180px;
}

.v-loading--centered {
  text-align: center;
  padding: 40px;
}
@media screen and (max-width: 959px) {
  .v-loading--centered {
    padding: calc(40 * 2 / 10 * 1vw);
  }
}

.v-loading--centered img {
  width: 180px;
}

.information .no-data {
  text-align: center;
  padding: 40px;
  font-size: 1.4rem;
  color: white;
}
@media screen and (max-width: 959px) {
  .information .no-data {
    padding: calc(40 * 2 / 10 * 1vw);
    font-size: 2.933vw;
  }
}

@media screen and (max-width: 959px) {
  .horse-lists__buttons.sp_only {
    margin-top: 30px;
  }
}/*# sourceMappingURL=style.css.map */