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

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

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

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

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

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

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

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

:root {
  --color_red: #ed1c24;
  --color_dark-gray: #181818;
  --color_black: #000;
  --color_white: #fff;
  --inner-padding_w: 30px;
  --fs_normal: 1.6rem;
  --kv-padding_w: 50px;
}

@font-face {
  font-family: Ferrari-Sans;
  src: url("../font/Ferrari-SansLight.otf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: Ferrari-Sans;
  src: url("../font/Ferrari-SansLightItalic.otf");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: Ferrari-Sans;
  src: url("../font/Ferrari-SansRegular.otf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Ferrari-Sans;
  src: url("../font/Ferrari-SansRegularItalic.otf");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: Ferrari-Sans;
  src: url("../font/Ferrari-SansBold.otf");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: Ferrari-Sans;
  src: url("../font/Ferrari-SansBoldItalic.otf");
  font-weight: 600;
  font-style: italic;
}
html {
  font-size: 62.5%;
}

body {
  font-family: Ferrari-Sans, "ヒラギノ角ゴ ProN", "游ゴシック", sans-serif;
  font-size: var(--fs_normal);
  font-weight: 300;
  background: var(--color_black);
  color: var(--color_white);
  line-height: 1.56;
  margin: 0;
  width: 100%;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

p {
  margin-top: 2em;
}
p:first-child {
  margin-top: 0;
}

a {
  --hover-color: var(--color_red);
  transition: color 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s;
}

.--pc {
  display: none;
}
.text--light {
  font-weight: 300;
}
.text--regular {
  font-weight: 400;
}
.text--bold {
  font-weight: 600;
}
.text--italic {
  font-style: italic;
}
.text--red {
  color: var(--color_red);
}
.text--block {
  display: block;
}
.text--ib {
  display: inline-block;
}

.button,
#sb_instagram #sbi_load .sbi_load_btn {
  --btn-color: var(--color_white);
  --btn-bg: transparent;
  --hover-color: var(--color_white);
  display: inline-flex;
  align-items: center;
  gap: 1em;
  text-decoration: none;
  color: var(--btn-color);
  border: 1px solid var(--btn-color);
  background-color: var(--btn-bg);
  border-radius: 3em;
  padding: 0.8em 2em;
  line-height: 1.5;
  transition: background-color 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s, color 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s, border-color 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s;
  text-align: left;
}
.button__icon,
#sb_instagram #sbi_load .sbi_load_btn__icon {
  width: 20px;
}
.button__text,
#sb_instagram #sbi_load .sbi_load_btn__text {
  flex: 1;
}

#sb_instagram #sbi_load {
  margin-top: 45px;
  box-shadow: none !important;
}

#sb_instagram #sbi_load .sbi_load_btn {
  font-size: inherit;
  box-shadow: none !important;
  border-bottom: 1px solid #fff !important;
}
#sb_instagram #sbi_load .sbi_load_btn:hover {
  border-color: var(--color_red) !important;
}

.svg-icon {
  --icon-w: 0;
  --icon-h: 0;
  --icon-color: var(--color_white);
  display: inline-block;
  width: var(--icon-w);
  height: var(--icon-h);
  fill: var(--icon-color);
  transition: fill 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s;
}
.svg-icon__instagram {
  --icon-w: 20px;
  --icon-h: 20px;
}
.svg-icon__arrow {
  --icon-w: 9px;
  --icon-h: 9px;
}

.content-title {
  font-size: 3rem;
  text-align: center;
  font-weight: 600;
}
body.home .content-title {
  padding: 50px 0 0;
}

.switch-button-block {
  display: flex;
  justify-content: center;
}

.switch-button {
  --btn-color: var(--color_white);
  --btn-bg: transparent;
  color: var(--btn-color);
  background-color: var(--btn-bg);
  outline: none;
  border-top: 1px solid var(--btn-color);
  border-right: 1px solid var(--btn-color);
  border-bottom: 1px solid var(--btn-color);
  border-left: none;
  font-weight: 300;
  padding: 0.6em 2em;
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s, color 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s, border-color 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s;
}
.switch-button:first-child {
  border-left: 1px solid var(--btn-color);
  border-radius: 2em 0 0 2em;
}
.switch-button:last-child {
  border-radius: 0 2em 2em 0;
}
.switch-button:hover:not(.switch-button--selected) {
  --btn-bg: var(--color_red);
  border-color: var(--btn-bg);
}
.switch-button--selected {
  --btn-bg: var(--color_white);
  color: var(--color_black);
  cursor: default;
}

.global-menu {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  font-size: 1.6rem;
}
.global-menu__list {
  list-style: none;
  padding: 0;
  margin: 50px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.global-menu__item {
  width: 100%;
}
.global-menu__item a {
  color: var(--color_white);
  text-decoration: none;
}
body.single .contents, body.page .contents, body.archive .contents {
  padding: 50px 0 0;
}

.sns-menu {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
  padding: 0;
}

.svg-def {
  display: none;
}

.container {
  overflow-x: hidden;
  z-index: 0;
  position: relative;
}

.global-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
}
body:not(.home) .global-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 30px var(--inner-padding_w) 0;
}
.global-header::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: fixed;
  background: var(--color_red);
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  z-index: 200;
}
.global-header--menu-open::before {
  transform: translateX(0);
}
.global-header__open-btn, .global-header__close-btn {
  position: fixed;
  top: 30px;
  right: var(--inner-padding_w);
  width: 38px;
  height: 38px;
  border: 1px solid var(--color_white);
  border-radius: 19px;
}
.global-header__open-btn::before, .global-header__open-btn::after, .global-header__close-btn::before, .global-header__close-btn::after {
  content: "";
  display: block;
  position: absolute;
}
.global-header__open-btn::before, .global-header__open-btn::after {
  left: 31.5789473684%;
  width: 36.8421052632%;
  height: 1px;
  background: var(--color_white);
}
.global-header__open-btn::before {
  top: 39.4736842105%;
}
.global-header__open-btn::after {
  top: 57.8947368421%;
}
.global-header__close-btn::before, .global-header__close-btn::after {
  width: 15px;
  height: 1px;
  background: var(--color_white);
  top: 50%;
  left: 50%;
  margin-left: -7.5px;
}
.global-header__close-btn::before {
  transform: rotate(45deg);
}
.global-header__close-btn::after {
  transform: rotate(-45deg);
}
.global-header__logo, .global-header__navi-logo {
  position: absolute;
  top: var(--kv-padding_w);
  left: var(--kv-padding_w);
  width: min(17.8571428571vw, 125px);
  margin: 0;
}
.global-header__navi-logo {
  width: 60px;
}
body:not(.home) .global-header__logo {
  position: static;
}
.global-header__navi {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: var(--color_black);
  overflow: auto;
  text-align: center;
  padding: var(--inner-padding_w);
  padding-bottom: 60px;
  transform: translateX(101%);
  transition: transform 400ms cubic-bezier(0.165, 0.84, 0.44, 1) 0ms;
  z-index: 300;
}
.global-header__navi--open {
  opacity: 1;
  display: block;
  transition-delay: 150ms;
  transform: translateX(0);
}
.global-header__title {
  font-size: 2.3rem;
  margin-top: 110px;
}
.global-header__sns {
  width: 100%;
}
.global-header__address {
  margin: 40px;
  font-size: 1.2rem;
}
.global-header__address p {
  margin: 0 5px;
}
.global-header [data-animate] {
  transform: translateX(30vw);
  transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  will-change: transform, opacity;
}
.global-header--menu-open [data-animate] {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0ms;
}
.global-header--menu-open [data-animate="0"] {
  transition-delay: 100ms;
}
.global-header--menu-open [data-animate="1"] {
  transition-delay: 150ms;
}
.global-header--menu-open [data-animate="2"] {
  transition-delay: 200ms;
}
.global-header--menu-open [data-animate="3"] {
  transition-delay: 250ms;
}
.global-header--menu-open [data-animate="4"] {
  transition-delay: 300ms;
}
.global-header--menu-open [data-animate="5"] {
  transition-delay: 350ms;
}
.global-header--menu-open [data-animate="6"] {
  transition-delay: 400ms;
}
.global-header--menu-open [data-animate="7"] {
  transition-delay: 450ms;
}
.global-header--menu-open [data-animate="8"] {
  transition-delay: 500ms;
}
.global-header--menu-open [data-animate="9"] {
  transition-delay: 550ms;
}

.global-footer__inner {
  padding: 60px var(--inner-padding_w);
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.global-footer__logo {
  width: 80px;
}
.global-footer__title {
  font-size: 2rem;
  line-height: 1.25;
}
.global-footer__title a {
  text-decoration: none;
}
.global-footer__title span {
  display: block;
}
.global-footer__address {
  display: none;
}
.global-footer__navi {
  display: none;
}
.global-footer__dealer a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.global-footer__copyright {
  font-size: 1rem;
  text-align: center;
  grid-column: 1/3;
  grid-row: 3/4;
  width: 100%;
}
.global-footer__copyright span {
  display: inline-block;
}

.key-visual {
  position: relative;
  width: 100%;
  height: 100dvh;
  max-height: 1000px;
  min-height: 600px;
  overflow: hidden;
}
.key-visual__inner {
  position: absolute;
  aspect-ratio: 16/9;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.key-visual__inner::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.key-visual__video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
}
.key-visual__title {
  font-size: clamp(0rem, 11.6279069767vw, 9rem);
  line-height: 1.1;
  position: absolute;
  top: 200px;
  left: var(--kv-padding_w);
}
.key-visual--horizontal {
  width: 100%;
  height: auto;
}

.lead {
  padding: 100px var(--inner-padding_w) 40px;
}
.lead__heading {
  font-size: 2rem;
  grid-column: 1/3;
  grid-row: 1/2;
}
.lead__name {
  font-size: 3rem;
  line-height: 1.25;
}
.lead__name > span {
  display: block;
}
.lead__message {
  line-height: 1.87;
}

.instagram-info {
  padding: 40px 0 0;
  display: flex;
  gap: 20px;
  font-size: 1.2rem;
  line-height: 2;
}
.instagram-info__focj-logo {
  width: clamp(0px, 23.2558139535vw, 100px);
}
.instagram-info__name {
  font-weight: 600;
}
.instagram-info__link {
  margin-top: 1em;
}

.instagram-feed__contents {
  margin: 40px 0;
  width: 100%;
}
.instagram-feed__more {
  display: flex;
  justify-content: center;
}

.scroll-contents {
  padding: 50px 0 70px;
  position: relative;
}

.card-contents {
  margin: 0;
  padding: 0;
  box-sizing: content-box;
  list-style: none;
  display: flex;
  align-items: stretch;
  width: 100vw;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
body.home .card-contents {
  padding: 0 15px;
}
body.home .card-contents:has(> :nth-child(1):last-child) {
  width: calc(1 * (100vw - 30px) + 0px);
}
body.home .card-contents:has(> :nth-child(2):last-child) {
  width: calc(2 * (100vw - 30px) + 15px);
}
body.home .card-contents:has(> :nth-child(3):last-child) {
  width: calc(3 * (100vw - 30px) + 30px);
}
body.home .card-contents:has(> :nth-child(4):last-child) {
  width: calc(4 * (100vw - 30px) + 45px);
}
body.home .card-contents:has(> :nth-child(5):last-child) {
  width: calc(5 * (100vw - 30px) + 60px);
}
body.home .card-contents:has(> :nth-child(6):last-child) {
  width: calc(6 * (100vw - 30px) + 75px);
}
body.home .card-contents:has(> :nth-child(7):last-child) {
  width: calc(7 * (100vw - 30px) + 90px);
}
body.home .card-contents:has(> :nth-child(8):last-child) {
  width: calc(8 * (100vw - 30px) + 105px);
}
body.home .card-contents:has(> :nth-child(9):last-child) {
  width: calc(9 * (100vw - 30px) + 120px);
}
body.home .card-contents:has(> :nth-child(10):last-child) {
  width: calc(10 * (100vw - 30px) + 135px);
}
.card-contents.card-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.card {
  width: calc(100vw - 30px);
  display: flex;
  flex-grow: 1;
}
.card-grid .card {
  width: 100%;
  margin-bottom: 15px;
}
.card__inner {
  --hover-color: var(--color_white);
  display: flex;
  flex-direction: column;
  color: var(--color_white);
  text-decoration: none;
  border-radius: 9.3023255814vw;
  overflow: hidden;
  background: var(--color_dark-gray);
  transition: transform 0.2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s;
  will-change: transform;
}
.card__image {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.card__text-block {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  padding: 30px;
}
.card__title {
  display: block;
  font-size: 1.8rem;
}
.card__subtitle {
  display: block;
  margin: 1em 0 0;
}
.card__info-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 60px 0 0;
}
.card__category {
  display: block;
  font-size: 1.2rem;
  color: var(--color_red);
  border: 1px solid var(--color_red);
  border-radius: 5px;
  line-height: 1;
  padding: 0.6em 2em;
}
.card__date {
  font-size: 1.2rem;
  margin-left: auto;
}
.card__grid-adjuster {
  display: none;
  margin-bottom: none;
}

.scroll-contents .os-scrollbar {
  --os-size: 4px;
  --os-padding-perpendicular: 0;
  --os-handle-perpendicular-size: 40px;
  --os-handle-perpendicular-size-hover: 40px;
  --os-handle-perpendicular-size-active: 40px;
  --os-padding-axis: 30px;
  --os-track-bg: var(--color_dark-gray);
  --os-track-bg-hover: var(--color_dark-gray);
  --os-track-bg-active: var(--color_dark-gray);
  --os-handle-min-size: 40px;
  --os-handle-max-size: 40px;
  --os-handle-bg: url("../img/icon_scroll_arrow.svg") no-repeat 50% 50% var(--color_red);
  --os-handle-bg-hover: url("../img/icon_scroll_arrow.svg") no-repeat 50% 50% var(--color_red);
  --os-handle-bg-active: url("../img/icon_scroll_arrow.svg") no-repeat 50% 50% var(--color_red);
  --os-handle-border-radius: 20px;
}
.scroll-contents .os-scrollbar-horizontal {
  bottom: 20px;
}
.scroll-contents .os-scrollbar-horizontal .os-scrollbar-handle {
  bottom: -18px;
}
.scroll-contents .card-contents {
  transition: opacity 0.2s linear 0s;
  will-change: opacity;
  perspective: 100;
}
.scroll-contents .swipe-help {
  display: none;
  position: absolute;
  width: 100vw;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.scroll-contents .swipe-help__inner {
  animation: 1s ease-out 0s 3 swipe-fade;
  will-change: opacity;
  opacity: 0;
  perspective: 100;
  -webkit-backface-visibility: hidden;
}
.scroll-contents .swipe-help__icon {
  width: 60px;
  position: relative;
  animation: 1s ease-out 0s 3 swipe-help;
  will-change: transform;
  transform: translateX(60px);
  perspective: 100;
  -webkit-backface-visibility: hidden;
}
.scroll-contents .scroll-help {
  position: absolute;
  bottom: 0;
  left: 59px;
  display: none;
  perspective: 100;
}
.scroll-contents .scroll-help__icon {
  width: 35px;
  position: relative;
  animation: 1.5s ease-in-out 0s 2 scroll-help;
  will-change: opacity, left;
}
.scroll-contents.show-help .card-contents {
  opacity: 0.5;
}
.scroll-contents.show-help .swipe-help {
  display: block;
}
.scroll-contents.show-help .scroll-help {
  display: none;
}

@keyframes swipe-fade {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes swipe-help {
  0% {
    transform: translateX(calc(100vw - 60px));
  }
  50% {
    transform: translateX(60px);
  }
  100% {
    transform: translateX(60px);
  }
}
@keyframes scroll-help {
  0% {
    opacity: 0;
    left: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    left: 300px;
    opacity: 1;
  }
  100% {
    opacity: 0;
    left: 300px;
  }
}
.about__inner {
  background: var(--color_dark-gray);
  padding: 14.8837209302vw var(--inner-padding_w) 84px;
  margin: 50px 0 0;
}
.about__logo {
  width: 32.5581395349vw;
  margin: 0 auto 12.5581395349vw;
}
.about__message {
  margin: 0 0 60px;
}
.about__message-text {
  display: none;
}
.about__message-text--selected {
  display: block;
}
.about__lang-switch {
  margin: 0 0 60px;
}
.about__signature {
  text-align: center;
}
.about__club-name {
  font-size: 2rem;
}
.about__president {
  margin: 20px 0;
  font-size: 1.4rem;
}
.about__president-title {
  font-size: 1rem;
}
.about__president-signature {
  width: clamp(0px, 60.4651162791vw, 260px);
  margin: 0 auto;
}

.article-list {
  margin: 40px 0 0;
  padding: 0 var(--inner-padding_w);
}
.article-list__contents {
  padding-bottom: 5px;
}

.article {
  background: var(--color_dark-gray);
  margin: 40px 0 0;
  padding: 0 var(--inner-padding_w);
}
.article__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0 30px;
}
.article__title {
  font-size: 4rem;
}
.article__subtitle {
  margin: 2em 0 0;
}
.article__info {
  display: flex;
  margin: 2em 0 0;
  gap: 1em;
}
.article__categories {
  display: flex;
  gap: 10px;
}
.article__category a {
  display: block;
  font-size: 1.2rem;
  color: var(--color_red);
  border: 1px solid var(--color_red);
  border-radius: 5px;
  line-height: 1;
  padding: 0.6em 2em;
  text-decoration: none;
}
.article__content {
  padding-top: 50px;
  padding-bottom: 50px;
}
.article__content::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  clear: both;
}
.article__content h3 {
  font-size: 3rem;
  line-height: 1.5;
  margin: 0 0 1em;
}
.article__content h4 {
  font-size: 2rem;
  line-height: 1.5;
  margin: 0 0 1em;
}
.article__content * + h3,
.article__content * + h4 {
  margin-top: 2em;
}
.article__content .wp-block-image:first-child + h3 {
  margin-top: 0;
}
.article__content h3 + h4 {
  margin-top: 0;
}
.article__content hr + h3,
.article__content hr + h4 {
  margin-top: 0;
}
.article__content p {
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: justify;
  margin-top: 1em;
}
.article__content p:first-child {
  margin-top: 0;
}
.article__content .wp-block-image:first-child + p {
  margin-top: 0;
}
.article__content hr.wp-block-separator {
  max-width: 100% !important;
  margin: 5em auto;
  border-bottom: 1px solid #333;
}
.article__content .wp-block-image {
  margin-bottom: 0;
}
.article__content .wp-block-image > img {
  max-width: 100%;
  height: auto;
}
.article__content .wp-block-image .alignright,
.article__content .wp-block-image .alignleft {
  max-width: 50%;
}
.article__content .wp-block-image .alignright img,
.article__content .wp-block-image .alignleft img {
  width: 100%;
  height: auto;
}
.article__content .wp-block-image .alignright {
  margin-left: 50px;
}
.article__content .wp-block-image .alignleft {
  margin-right: 50px;
}
.article__content .wp-block-image:first-child {
  margin-bottom: 0;
}
.article__content .wp-block-image:last-child {
  margin-bottom: 0;
}
.article__content .wp-block-image figcaption {
  color: #fff;
  font-size: 1.4rem;
  text-align: left;
}
.article__content * + .wp-block-image {
  margin-top: 6em;
}
.article__content h2 + .wp-block-image,
.article__content h3 + .wp-block-image,
.article__content h4 + .wp-block-image,
.article__content h5 + .wp-block-image,
.article__content h6 + .wp-block-image {
  margin-top: 0;
}
.article__content ul:not([class]) li,
.article__content ol:not([class]) li {
  font-size: 1.5rem;
  line-height: 2.3;
  margin: 1em 0 0;
}
.article__content ul:not([class]) li {
  position: relative;
  padding: 0 0 0 1em;
}
.article__content ul:not([class]) li::before {
  content: "・";
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.article__content ol:not([class]) {
  counter-reset: list-ol;
}
.article__content ol:not([class]) li {
  position: relative;
  padding: 0 0 0 1.5em;
}
.article__content ol:not([class]) li::before {
  counter-increment: list-ol;
  content: counter(list-ol) ".";
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.article__content .wp-block-gallery {
  margin: 5em 0 0;
}
.article__content a.link-button {
  margin: 2em 0 0;
}
.article__content .wpcf7 .wpcf7-form h3:nth-of-type(1) {
  margin-top: 0;
}
.article__content .wpcf7 .wpcf7-form dl {
  display: flex;
  flex-wrap: wrap;
}
.article__content .wpcf7 .wpcf7-form dt {
  width: 11em;
  margin: 0 0 2em;
  padding: 0.5em 1em 0.5em 0;
  box-sizing: border-box;
}
.article__content .wpcf7 .wpcf7-form dd {
  width: calc(100% - 11em);
  margin: 0 0 2em;
  padding: 0 0 0 1em;
  box-sizing: border-box;
}
.article__content .wpcf7 .wpcf7-form dd .item_name {
  display: inline-block;
  padding-bottom: 0.2em;
  font-size: 1.3rem;
}
.article__content .wpcf7 .wpcf7-form .require {
  display: inline-block;
  color: var(--color_red);
  margin-left: 0.2em;
}
.article__content .wpcf7 .wpcf7-form .wpcf7-not-valid-tip {
  color: var(--color_red);
}
.article__content .wpcf7 .wpcf7-form .item_submit {
  margin: 2em 0 0;
  display: flex;
  justify-content: center;
}
.article__content .wpcf7 .wpcf7-form .wpcf7-response-output,
.article__content .wpcf7 .wpcf7-form .wpcf7-validation-errors {
  border: 1px solid var(--color_red);
  margin-right: 0;
  margin-left: 0;
  color: var(--color_red);
}
.article__content .wpcf7 .wpcf7-form input[type=button].wpcf7c-btn-back {
  border-color: #fff !important;
  color: #fff !important;
  margin: 0 1em 0 0;
}
.article__content .wpcf7 .wpcf7-form input[type=button].wpcf7c-btn-back:hover {
  background: #fff !important;
  color: #000 !important;
}
.article__content input[type=text],
.article__content input[type=password],
.article__content input[type=number],
.article__content input[type=tel],
.article__content input[type=email] {
  outline: none;
  border: none;
  background: #333;
  padding: 0.5em;
  line-height: 1;
  width: 100%;
  font-size: 1.6rem;
  box-sizing: border-box;
  color: #fff;
  display: block;
  -webkit-appearance: none;
  border-radius: 0;
}
.article__content input[type=text]:-moz-placeholder-shown, .article__content input[type=password]:-moz-placeholder-shown, .article__content input[type=number]:-moz-placeholder-shown, .article__content input[type=tel]:-moz-placeholder-shown, .article__content input[type=email]:-moz-placeholder-shown {
  font-size: 1.6rem;
  color: #fff;
  opacity: 0.6;
}
.article__content input[type=text]:placeholder-shown,
.article__content input[type=password]:placeholder-shown,
.article__content input[type=number]:placeholder-shown,
.article__content input[type=tel]:placeholder-shown,
.article__content input[type=email]:placeholder-shown {
  font-size: 1.6rem;
  color: #fff;
  opacity: 0.6;
}
.article__content input[type=text]::-webkit-input-placeholder,
.article__content input[type=password]::-webkit-input-placeholder,
.article__content input[type=number]::-webkit-input-placeholder,
.article__content input[type=tel]::-webkit-input-placeholder,
.article__content input[type=email]::-webkit-input-placeholder {
  font-size: 1.6rem;
  color: #fff;
  opacity: 0.6;
}
.article__content input[type=text]:-moz-placeholder,
.article__content input[type=password]:-moz-placeholder,
.article__content input[type=number]:-moz-placeholder,
.article__content input[type=tel]:-moz-placeholder,
.article__content input[type=email]:-moz-placeholder {
  opacity: 1;
  font-size: 1.6rem;
  color: #fff;
  opacity: 0.6;
}
.article__content input[type=text]::-moz-placeholder,
.article__content input[type=password]::-moz-placeholder,
.article__content input[type=number]::-moz-placeholder,
.article__content input[type=tel]::-moz-placeholder,
.article__content input[type=email]::-moz-placeholder {
  opacity: 1;
  font-size: 1.6rem;
  color: #fff;
  opacity: 0.6;
}
.article__content input[type=text]:-ms-input-placeholder,
.article__content input[type=password]:-ms-input-placeholder,
.article__content input[type=number]:-ms-input-placeholder,
.article__content input[type=tel]:-ms-input-placeholder,
.article__content input[type=email]:-ms-input-placeholder {
  font-size: 1.6rem;
  color: #fff;
  opacity: 0.6;
}
.article__content input[type=text].text_short,
.article__content input[type=password].text_short,
.article__content input[type=number].text_short,
.article__content input[type=tel].text_short,
.article__content input[type=email].text_short {
  width: 30%;
  min-width: 100px;
  max-width: 100%;
}
.article__content input[type=text].text_medium,
.article__content input[type=password].text_medium,
.article__content input[type=number].text_medium,
.article__content input[type=tel].text_medium,
.article__content input[type=email].text_medium {
  width: 60%;
  min-width: 200px;
  max-width: 100%;
}
.article__content input[type=text][readonly=readonly],
.article__content input[type=password][readonly=readonly],
.article__content input[type=number][readonly=readonly],
.article__content input[type=tel][readonly=readonly],
.article__content input[type=email][readonly=readonly] {
  background: transparent;
  padding: 0.5em 0;
  cursor: default;
}
.article__content textarea {
  outline: none;
  border: none;
  background: #333;
  padding: 0.5em;
  line-height: 1.5;
  width: 100%;
  font-size: 1.6rem;
  box-sizing: border-box;
  color: #fff;
  display: block;
  -webkit-appearance: none;
}

.pagenation__inner {
  display: flex;
  gap: 30px;
  clear: both;
  padding: 30px var(--inner-padding_w) 0;
}
.pagenation__link {
  flex-basis: 50%;
}
.pagenation__link a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 1.4rem;
  gap: 20px;
}
.pagenation__link .svg-icon {
  flex-basis: 20px;
}
.pagenation__prev {
  margin: 0 0 0 auto;
  text-align: right;
  justify-self: end;
}
.pagenation__prev a {
  justify-content: end;
}
.pagenation__subtext {
  display: block;
  font-size: 1.1rem;
}
.pagenation__subtitle {
  display: block;
}
.pagenation__next .svg-icon {
  transform: rotate(180deg);
}

.lb-gallery {
  clear: both;
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0 0;
  gap: 5px;
}
.lb-gallery li {
  width: calc((100% - 15px) / 3);
  list-style: none;
}
.lb-gallery a {
  display: block;
  position: relative;
}
.lb-gallery a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: none;
  transition: background 100ms linear 0ms;
}
.lb-gallery a:hover::after {
  background: rgba(0, 0, 0, 0.4);
}
.lb-gallery img {
  width: 100%;
  height: auto;
}

.schedule-list__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px var(--inner-padding_w) 30px;
}
.schedule-list .more-schedule-info {
  display: flex;
  justify-content: center;
  margin: 30px 0 0;
}
.schedule-list .ended-event h3 {
  padding-top: 50px;
  opacity: 0.3;
}
.schedule-list__contents {
  padding: 0;
  margin: 50px 0 0;
}
.schedule-list__contents .item {
  list-style: none;
  border-bottom: 1px solid #333;
}
.schedule-list__contents .item:last-child {
  border-bottom: none;
}
.schedule-list__contents .item .box {
  display: flex;
  color: #fff;
  text-decoration: none;
  align-items: center;
  padding: 1em;
  transition: background 100ms linear 0s;
}
.schedule-list__contents .item .box.end {
  opacity: 0.3;
}
.schedule-list__contents .item .date {
  text-align: center;
  line-height: 1.5;
  width: 70px;
  padding: 0 15px 0 0;
  margin: 0 15px 0 0;
  border-right: 1px solid #333;
  flex-basis: 70px;
}
.schedule-list__contents .item .end_date {
  position: relative;
  margin: 4em 0 0;
}
.schedule-list__contents .item .end_date::before {
  content: "";
  width: 1px;
  height: 2em;
  background: #fff;
  display: block;
  position: absolute;
  top: -3em;
  left: 50%;
}
.schedule-list__contents .item .year {
  font-size: 1.4rem;
  background: #fff;
  color: #151515;
  padding: 0.2em 0.5em;
  margin: 0 0 5px;
}
.schedule-list__contents .item .month {
  font-size: 1.8rem;
}
.schedule-list__contents .item .day {
  font-size: 1.6rem;
}
.schedule-list__contents .item .event_name {
  font-size: 2.5rem;
  line-height: 1.5;
  padding: 0 15px 0 0;
}
.schedule-list__contents .item .info {
  padding-top: 0.5em;
}
.schedule-list__contents .item .note,
.schedule-list__contents .item .place {
  display: inline-block;
  background: #333;
  font-size: 1.2rem;
  padding: 0.5em 1em;
  line-height: 1;
}
.schedule-list__contents .item .more {
  background: #fff;
  font-size: 1.4rem;
  padding: 1em;
  width: 10em;
  flex-basis: 10em;
  text-align: center;
  color: #151515;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: color 100ms linear 0ms, background 100ms linear 0s;
  margin: 0 0 0 auto;
}
.schedule-list__contents .item .end .more {
  background: transparent;
  border: 1px solid #888;
  color: #fff;
}
.schedule-list__contents .item a.box:hover {
  background: rgba(255, 255, 255, 0.1);
}

.notfound {
  padding: 80px var(--inner-padding_w) 50px;
  text-align: center;
}
.notfound .content-title {
  text-align: center;
  padding: 0;
  margin: 0;
}
.notfound p {
  margin: 0;
  padding: 2em 0;
}
@media screen and (min-width: 850px){
  :root {
    --inner-padding_w: 50px;
    --kv-padding_w: 100px;
  }
  a:hover {
    color: var(--hover-color);
  }
  .--sp {
    display: none;
  }
  .--pc {
    display: block;
  }
  .button:hover,
  #sb_instagram #sbi_load .sbi_load_btn:hover {
    --btn-bg: var(--color_red);
    border-color: var(--btn-bg);
    color: var(--btn-color);
  }
  a:hover .svg-icon {
    fill: var(--hover-color);
  }
  .content-title {
    text-align: left;
    margin: 0 var(--inner-padding_w);
  }
  .global-menu {
    align-items: center;
    justify-content: end;
    flex-direction: row;
    flex-wrap: nowrap;
    font-size: clamp(1.2rem, 1.3333333333vw, 1.6rem);
    gap: 2em;
  }
  .global-menu__list {
    width: auto;
    margin: 0;
    flex-wrap: nowrap;
    gap: 2em;
  }
  .global-menu__item {
    width: auto;
  }
  body:not(.home) .global-header {
    padding-top: 50px;
  }
  .global-header::before {
    display: none;
  }
  .global-header__open-btn, .global-header__close-btn {
    display: none;
  }
  body.home .global-header__logo {
    width: 125px;
  }
  .global-header__navi {
    transition: none;
    transform: translateX(0);
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    position: absolute;
    top: 50px;
    right: 50px;
  }
  body:not(.home) .global-header__navi {
    position: static;
  }
  .global-header__navi-logo {
    display: none;
  }
  .global-header__title {
    display: none;
  }
  .global-header__sns {
    display: none;
  }
  .global-header__address {
    display: none;
  }
  .global-header__dealer {
    display: none;
  }
  .global-header [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .global-footer__logo {
    width: 100px;
    grid-column: 1/2;
    grid-row: 1/4;
    align-self: start;
  }
  .global-footer__title {
    font-size: 1.6rem;
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .global-footer__title span {
    display: inline-block;
  }
  .global-footer__address {
    display: block;
    font-size: 1.2rem;
    grid-column: 2/3;
    grid-row: 2/3;
    align-self: center;
  }
  .global-footer__navi {
    grid-column: 3/4;
    grid-row: 1/4;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    gap: 20px;
    margin: 0 0 0 20px;
  }
  .global-footer__menu {
    flex-wrap: nowrap;
    margin: 0 0 30px;
    grid-column: 1/3;
    grid-row: 1/2;
  }
  .global-footer__sns {
    margin: 0;
    justify-content: end;
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .global-footer__dealer {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .global-footer__copyright {
    font-size: 1.2rem;
    grid-column: 2/3;
    grid-row: 3/4;
    margin: 1em 0 0;
  }
  .global-footer__copyright span {
    display: inline;
  }
  .key-visual__title {
    max-width: 11em;
    right: var(--kv-padding_w);
    top: 280px;
  }
  .key-visual__title-line {
    display: inline-block;
  }
  .lead {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    row-gap: 30px;
    -moz-column-gap: 60px;
         column-gap: 60px;
    padding-bottom: 60px;
  }
  .lead__name > span {
    display: inline;
  }
  .lead__message {
    margin: 0;
  }
  .instagram-info {
    flex-direction: row-reverse;
    padding: 0;
  }
  .instagram-feed__contents {
    margin: 0 0 50px;
  }
  .scroll-contents {
    padding-bottom: 142px;
  }
  body.home .card-contents {
    padding: 0 var(--inner-padding_w);
    gap: 20px;
  }
  body.home .card-contents:has(> :nth-child(1):last-child) {
    width: 400px;
  }
  body.home .card-contents:has(> :nth-child(2):last-child) {
    width: 820px;
  }
  body.home .card-contents:has(> :nth-child(3):last-child) {
    width: 1240px;
  }
  body.home .card-contents:has(> :nth-child(4):last-child) {
    width: 1660px;
  }
  body.home .card-contents:has(> :nth-child(5):last-child) {
    width: 2080px;
  }
  body.home .card-contents:has(> :nth-child(6):last-child) {
    width: 2500px;
  }
  body.home .card-contents:has(> :nth-child(7):last-child) {
    width: 2920px;
  }
  body.home .card-contents:has(> :nth-child(8):last-child) {
    width: 3340px;
  }
  body.home .card-contents:has(> :nth-child(9):last-child) {
    width: 3760px;
  }
  body.home .card-contents:has(> :nth-child(10):last-child) {
    width: 4180px;
  }
  .card {
    width: 400px;
    flex-basis: 400px;
  }
  .card__inner {
    border-radius: 40px;
  }
  .card__inner:hover {
    transform: scale(1.05);
  }
  .card__grid-adjuster {
    display: block;
    height: 0;
    overflow: hidden;
    width: 400px;
    flex-basis: 400px;
  }
  .scroll-contents .os-scrollbar {
    --os-padding-axis: var(--inner-padding_w);
  }
  .scroll-contents .os-scrollbar-horizontal {
    bottom: 72px;
  }
  .scroll-contents.show-help .swipe-help {
    display: none;
  }
  .scroll-contents.show-help .scroll-help {
    display: block;
  }
  .about__inner {
    padding-top: 74px;
  }
  .about__logo {
    width: 140px;
    margin-bottom: 60px;
  }
  .about__message {
    display: flex;
    gap: clamp(60px, 8.3333333333vw, 120px);
    justify-content: center;
  }
  .about__message-text {
    display: block;
    width: 50%;
    max-width: 500px;
  }
  .about__lang-switch {
    display: none;
  }
  .article__inner {
    padding: 50px 0;
  }
  .lb-gallery li {
    width: calc((100% - 20px) / 5);
  }
  .schedule-list__inner {
    padding: 50px 0;
  }
}
@media screen and (min-width: 1000px){
  .global-footer__inner {
    width: 100%;
    display: grid;
    row-gap: 12px;
    grid-template-columns: 100px 1fr auto;
    grid-template-rows: auto auto auto;
    justify-content: start;
  }
  .global-footer__navi {
    justify-content: end;
  }
  .global-footer__copyright {
    text-align: left;
    margin: 0;
  }
}
@media screen and (min-width: 1160px){
  .lead__message .--pc {
    display: block;
  }
}
@media screen and (max-width: 849px){
  body.--menu-open {
    overflow: hidden;
    position: fixed;
  }
}
@media screen and (max-width: 768px){
  .article__content .wp-block-image {
    margin-bottom: 2em !important;
  }
  .article__content .wp-block-image .alignright,
  .article__content .wp-block-image .alignleft {
    max-width: 100%;
    float: none;
    margin-right: 0;
    margin-left: 0;
  }
  .schedule-list__contents .item .box {
    flex-wrap: wrap;
  }
  .schedule-list__contents .item .date {
    width: 100%;
    flex-basis: 100%;
    text-align: left;
    border-right: 0;
  }
  .schedule-list__contents .item .start_date,
  .schedule-list__contents .item .end_date {
    display: inline-block;
  }
  .schedule-list__contents .item .end_date {
    position: static;
    margin: 0;
  }
  .schedule-list__contents .item .end_date::before {
    display: inline;
    padding: 0 0.5em;
    position: static;
    background: transparent;
    content: "―";
    width: auto;
    height: auto;
    font-size: 1.4rem;
  }
  .schedule-list__contents .item .year,
  .schedule-list__contents .item .month,
  .schedule-list__contents .item .day {
    display: inline-block;
  }
  .schedule-list__contents .item .year {
    background: transparent;
    color: #fff;
    padding: 0;
    margin: 0 0.3em 0 0;
  }
  .schedule-list__contents .item .outline {
    font-size: 1.4rem;
    width: 100%;
  }
  .schedule-list__contents .item .box.has_more .outline {
    width: calc(100% - 10em);
  }
}
@media screen and (max-width: 700px){
  .key-visual__title {
    top: calc(25.7142857143vw + var(--kv-padding_w));
  }
}
@media screen and (max-width: 600px){
  .article__content h3 {
    font-size: 2.5rem;
  }
  .article__content .wpcf7 .wpcf7-form dt {
    width: 100%;
    margin: 0 0 0.5em;
  }
  .article__content .wpcf7 .wpcf7-form dd {
    width: 100%;
    padding: 0;
  }
  .schedule-list__contents .item .date {
    border-right: 0;
    margin: 0;
    padding: 0;
  }
  .schedule-list__contents .item .outline {
    width: 100% !important;
  }
  .schedule-list__contents .item .more {
    width: 100%;
    flex-basis: 100%;
    margin: 1em 0 0;
    padding: 1em 0;
  }
}
@media screen and (max-width: 430px){
  .card-contents.card-grid {
    grid-template-columns: 100%;
  }
}
