@font-face {
  font-family: 'Gotham-Black';
  font-style: normal;
  font-weight: 100;
  src: url('../font/Gotham/gotham-black-webfont.eot') format('eot'),
    url('../font/Gotham/gotham-black-webfont.otf') format('otf'),
    url('../font/Gotham/gotham-black-webfont.svg') format('svg'),
    url('../font/Gotham/gotham-black-webfont.ttf') format('ttf'),
    url('../font/Gotham/gotham-black-webfont.woff') format('woff'),
    url('../font/Gotham/gotham-black-webfont.woff2') format('woff2');
}

/* @font-face {
  font-family: "Gotham";
  font-style: normal;
  font-weight: bold;
  src: url("../fonts/Gotham/Gotham-Bold") format("otf");
} */

:root {
  color-scheme: light;
  --font-color: #121212;
  --accent-color: #6690a9;
  --fanclub-red: #f53434;

  --header-height: 60px;
  --max-content-width: 1184px;
  --content-gutter: 24px;

  --swiper-theme-color: #121212 !important;
}

:where(:focus-visible) {
  outline: none;
}

* {
  font-family: Helvetica, sans-serif, Arial;
  /* font-family: serif; */
  /* font-weight: 100; */
  /* color: #121212; */
}

main {
  background-color: #fbfbfb;
}

a.underline {
  position: relative;
  color: #121212;
  text-decoration: none;
}

a.underline:hover {
  color: #121212;
}

a.underline:hover::before {
  transform: scaleX(1);
}

a.underline::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #121212;
  transform: scaleX(0);
  transform-origin: top left;
  transition: transform 0.1s ease;
}

p.two-lines {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.content-width {
  max-width: var(--max-content-width);
  padding: 60px var(--content-gutter);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.content-width.no-padding {
  padding: 0;
}

.grid-pc4-sp1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.grid-pc4-sp2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
}

.cards .card {
  position: relative;
}

.card .card-link {
  position: absolute;
  inset: 0;
}

.card .card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.card .post-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  padding: 4px 0;
  margin-bottom: 4px;
}

.text-white {
  color: #fff;
}

body.hidden-scroll {
  overflow: hidden;
}

.plan-list {
  display: flex;
  gap: 12px;
  padding: 20px 0;
}

.btn-register {
  display: block;
  padding: 16px 12px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  width: 30%;
  background-color: #fff;
}

.btn-register.btn-free {
  text-align: center;
}

.btn-register p {
  margin: 0 !important;
  font-size: 0.8rem;
  color: #666;
}

.btn-register:hover {
  background-color: #121212;
  color: #fff;
}

.btn-register:hover h3 {
  color: #fff;
}

.btn-register:hover p {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .plan-list {
    flex-direction: column;
  }

  .btn-register {
    width: 100%;
  }
}

.button.mp-hide-pw {
  height: unset;
  padding: 0.8em 1.4em;
}

input.mepr-form-radios-input {
  width: 13px !important;
  height: 21px;
}

.btn-swipe {
  transition: ease-out 0.25s;
}

.btn-swipe.btn-more__black:hover {
  box-shadow: inset 200px 0 0 0 #121212;
  color: #fff;
}

.btn-swipe.btn-more__white:hover {
  box-shadow: inset 200px 0 0 0 #fff;
  color: #121212;
}

.pc-none {
  display: none !important;
}

.sp-none {
  display: block !important;
}

@media screen and (max-width: 1220px) {
  .pc-none {
    display: block !important;
  }

  .sp-none {
    display: none !important;
  }
}

.card-thumb {
  overflow: hidden;
  border-radius: 4px;
}

.card img {
  transition: 0.2s ease-in-out;
}

.card:hover img {
  transform: scale(1.1);
}

.card:hover .no-thumb img {
  transform: unset;
}

img {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}

.text-link {
  text-decoration: underline;
  color: #3c8fbe;
}

.text-link:hover {
  opacity: 0.7;
}

.btn-default {
  border: 1px solid #000;
  background-color: #fff;
  color: #000;
  font-size: 14px;
  padding: 8px 24px;
  margin-top: 12px;
  display: inline-block;
  text-align: center;

  @media screen and (max-width: 768px) {
    width: 100%;
  }
}

.btn-default:hover {
  background-color: #000;
  color: #fff;
}
